chore(types): sync playbook enums
All checks were successful
Type Sync Check / check-type-sync (push) Successful in 1m14s

This commit is contained in:
Your Name
2026-04-30 23:10:37 +08:00
parent 6e04fe9c8a
commit 7d02365dc2
2 changed files with 6 additions and 4 deletions

View File

@@ -1812,6 +1812,7 @@
"description": "Playbook 來源",
"enum": [
"extracted",
"llm_generated",
"manual",
"yaml_rule"
],
@@ -1822,6 +1823,7 @@
"description": "Playbook 狀態",
"enum": [
"draft",
"review",
"approved",
"deprecated"
],

View File

@@ -580,14 +580,14 @@ 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" | "yaml_rule";
export type PlaybookSource = "extracted" | "llm_generated" | "manual" | "yaml_rule";
/**
* Playbook 狀態
*
* This interface was referenced by `AWOOOIAPITypes`'s JSON-Schema
* via the `definition` "PlaybookStatus".
*/
export type PlaybookStatus = "draft" | "approved" | "deprecated";
export type PlaybookStatus = "draft" | "review" | "approved" | "deprecated";
/**
* 步驟序號
*/
@@ -651,11 +651,11 @@ export type Description3 = string;
/**
* Playbook 狀態
*/
export type PlaybookStatus1 = "draft" | "approved" | "deprecated";
export type PlaybookStatus1 = "draft" | "review" | "approved" | "deprecated";
/**
* Playbook 來源
*/
export type PlaybookSource1 = "extracted" | "manual" | "yaml_rule";
export type PlaybookSource1 = "extracted" | "llm_generated" | "manual" | "yaml_rule";
/**
* 修復步驟列表
*/