chore(types): 同步 shared-types 自動產生
All checks were successful
Type Sync Check / check-type-sync (push) Successful in 1m14s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
OG T
2026-04-17 22:12:16 +08:00
parent 604d8eea37
commit 6c10c6db86
2 changed files with 4 additions and 3 deletions

View File

@@ -1812,7 +1812,8 @@
"description": "Playbook 來源",
"enum": [
"extracted",
"manual"
"manual",
"yaml_rule"
],
"title": "PlaybookSource",
"type": "string"

View File

@@ -580,7 +580,7 @@ export type ActionType = "kubectl" | "script" | "manual" | "ssh_command";
* This interface was referenced by `AWOOOIAPITypes`'s JSON-Schema
* via the `definition` "PlaybookSource".
*/
export type PlaybookSource = "extracted" | "manual";
export type PlaybookSource = "extracted" | "manual" | "yaml_rule";
/**
* Playbook 狀態
*
@@ -655,7 +655,7 @@ export type PlaybookStatus1 = "draft" | "approved" | "deprecated";
/**
* Playbook 來源
*/
export type PlaybookSource1 = "extracted" | "manual";
export type PlaybookSource1 = "extracted" | "manual" | "yaml_rule";
/**
* 修復步驟列表
*/