diff --git a/packages/client/src/api/hermes/system.ts b/packages/client/src/api/hermes/system.ts index b2a9837..a106c8a 100644 --- a/packages/client/src/api/hermes/system.ts +++ b/packages/client/src/api/hermes/system.ts @@ -28,12 +28,20 @@ export interface PreviewStatus { webui_home: string action_log_path: string dev_log_path: string + active_action: string | null + active_action_started_at: string | null + last_action: string | null + last_action_completed_at: string | null + last_action_success: boolean | null + last_action_message: string + last_action_code: string action_log: string dev_log: string } export interface PreviewActionResponse extends PreviewStatus { success: boolean + accepted?: boolean message?: string code?: string } diff --git a/packages/client/src/components/hermes/settings/GithubPreviewSettings.vue b/packages/client/src/components/hermes/settings/GithubPreviewSettings.vue index dfbeb8f..dc1d75f 100644 --- a/packages/client/src/components/hermes/settings/GithubPreviewSettings.vue +++ b/packages/client/src/components/hermes/settings/GithubPreviewSettings.vue @@ -1,5 +1,5 @@