From 7e0536b5b393042f292841d127f632edc0bee835 Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Wed, 8 Apr 2026 20:29:33 +0200 Subject: [PATCH] feat: update Deployment interface with replicas, stages, new statuses Co-Authored-By: Claude Sonnet 4.6 --- ui/src/api/queries/admin/apps.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ui/src/api/queries/admin/apps.ts b/ui/src/api/queries/admin/apps.ts index 6f71803c..792dd170 100644 --- a/ui/src/api/queries/admin/apps.ts +++ b/ui/src/api/queries/admin/apps.ts @@ -28,7 +28,11 @@ export interface Deployment { appId: string; appVersionId: string; environmentId: string; - status: 'STARTING' | 'RUNNING' | 'FAILED' | 'STOPPED'; + status: 'STOPPED' | 'STARTING' | 'RUNNING' | 'DEGRADED' | 'STOPPING' | 'FAILED'; + targetState: string; + deploymentStrategy: string; + replicaStates: { index: number; containerId: string; containerName: string; status: string; oomKilled?: boolean }[]; + deployStage: string | null; containerId: string | null; containerName: string | null; errorMessage: string | null;