@chatu-ai/builder-sdk 0.8.6 → 0.8.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/client.d.ts +5 -0
  2. package/package.json +1 -1
package/dist/client.d.ts CHANGED
@@ -45,6 +45,11 @@ export interface SandboxStatus {
45
45
  xid?: string | null;
46
46
  sinceMs?: number | null;
47
47
  } | null;
48
+ /** 关闭过程中(休眠/强制关闭,Pod 尚未真正释放):此时不应唤醒,前端显示"关闭中" */
49
+ closing?: boolean;
50
+ /** 编排阶段:creating-pod|assigning|restoring|starting-devserver|ready|hibernating|releasing|terminating|hibernated|recycled|failed */
51
+ phase?: string | null;
52
+ phaseMessage?: string | null;
48
53
  }
49
54
  export interface VersionInfo {
50
55
  sha: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chatu-ai/builder-sdk",
3
- "version": "0.8.6",
3
+ "version": "0.8.7",
4
4
  "description": "ChatU Builder client SDK core: REST + streaming client, zod event schemas, seq resume",
5
5
  "license": "MIT",
6
6
  "type": "module",