From ae532de920082a22bbf2719efe044ef2b7f6c126 Mon Sep 17 00:00:00 2001 From: Umar Adilov <99314948+adilovcode@users.noreply.github.com> Date: Wed, 14 Jan 2026 19:46:34 +0500 Subject: [PATCH] Added new status for app --- .opencode/plugin/build.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.opencode/plugin/build.ts b/.opencode/plugin/build.ts index 21e20c5..440a224 100644 --- a/.opencode/plugin/build.ts +++ b/.opencode/plugin/build.ts @@ -9,6 +9,7 @@ enum AppStatus { PROVISIONING = "PROVISIONING", RUNNING = "RUNNING", FAILED = "FAILED", + BUSY = "BUSY", TERMINATED = "TERMINATED", } @@ -159,7 +160,7 @@ export const BuildPlugin: Plugin = async ({ client, $ }) => { }, "chat.message": async () => { - await updateAppStatus(AppStatus.PROVISIONING); + await updateAppStatus(AppStatus.BUSY); }, }; };