From b58178d46acb06decab902d65cc01867bf884d7f Mon Sep 17 00:00:00 2001 From: OG T Date: Sun, 5 Apr 2026 22:16:03 +0800 Subject: [PATCH] =?UTF-8?q?chore(types):=20=E9=87=8D=E6=96=B0=E7=94=A2?= =?UTF-8?q?=E7=94=9F=20TypeScript=20=E5=9E=8B=E5=88=A5=20=E2=80=94=20is=5F?= =?UTF-8?q?high=5Fquality=20=E5=86=B7=E5=95=9F=E5=8B=95=E9=96=BE=E5=80=BC?= =?UTF-8?q?=E8=AA=BF=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- packages/shared-types/schemas/api-types.json | 3 ++- packages/shared-types/src/api-types.ts | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/shared-types/schemas/api-types.json b/packages/shared-types/schemas/api-types.json index 188b148f..16737849 100644 --- a/packages/shared-types/schemas/api-types.json +++ b/packages/shared-types/schemas/api-types.json @@ -1614,7 +1614,8 @@ "enum": [ "kubectl", "script", - "manual" + "manual", + "ssh_command" ], "title": "ActionType", "type": "string" diff --git a/packages/shared-types/src/api-types.ts b/packages/shared-types/src/api-types.ts index 0bcaa0f4..f9b3cc51 100644 --- a/packages/shared-types/src/api-types.ts +++ b/packages/shared-types/src/api-types.ts @@ -501,7 +501,7 @@ export type Msg = string; * This interface was referenced by `AWOOOIAPITypes`'s JSON-Schema * via the `definition` "ActionType". */ -export type ActionType = "kubectl" | "script" | "manual"; +export type ActionType = "kubectl" | "script" | "manual" | "ssh_command"; /** * Playbook 來源 *