@chatu-ai/builder-sdk 0.6.0 → 0.6.1
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 +5 -2
- package/package.json +1 -1
package/dist/client.d.ts
CHANGED
|
@@ -32,10 +32,13 @@ export interface BuilderClientOptions {
|
|
|
32
32
|
export interface SandboxStatus {
|
|
33
33
|
state: SandboxState;
|
|
34
34
|
previewUrl?: string;
|
|
35
|
+
/** dev server:running 且 !ready = 首屏编译中(1c 机型冷启动可能 1–2 分钟) */
|
|
35
36
|
devServer?: {
|
|
36
37
|
running: boolean;
|
|
37
|
-
|
|
38
|
-
|
|
38
|
+
ready?: boolean;
|
|
39
|
+
startingForMs?: number | null;
|
|
40
|
+
lastError?: string | null;
|
|
41
|
+
} | null;
|
|
39
42
|
}
|
|
40
43
|
export interface VersionInfo {
|
|
41
44
|
sha: string;
|