@chatu-ai/builder-sdk 0.8.4 → 0.8.5
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.
- package/dist/client.d.ts +4 -1
- package/package.json +1 -1
package/dist/client.d.ts
CHANGED
|
@@ -157,7 +157,7 @@ export interface SandboxMeta {
|
|
|
157
157
|
};
|
|
158
158
|
} | null;
|
|
159
159
|
}
|
|
160
|
-
/** 沙箱启动进度:step 0 调度 1 网络 2 拉镜像 3 启动容器 4
|
|
160
|
+
/** 沙箱启动进度:step 0 调度 1 网络 2 拉镜像 3 启动容器 4 配置环境 5 恢复数据 6 启动应用 7 就绪 */
|
|
161
161
|
export interface SandboxStartup {
|
|
162
162
|
ok: boolean;
|
|
163
163
|
state?: string;
|
|
@@ -165,6 +165,9 @@ export interface SandboxStartup {
|
|
|
165
165
|
phase?: string | null;
|
|
166
166
|
ready?: boolean;
|
|
167
167
|
containerState?: string | null;
|
|
168
|
+
/** 编排阶段(Pod Running 之后):assigning | restoring | starting-devserver | ready | failed */
|
|
169
|
+
orchestrationPhase?: string | null;
|
|
170
|
+
phaseMessage?: string | null;
|
|
168
171
|
startedAt?: string | null;
|
|
169
172
|
elapsedMs?: number;
|
|
170
173
|
step?: number;
|