@chatu-ai/builder-sdk 0.8.2 → 0.8.3
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 -0
- package/package.json +1 -1
package/dist/client.d.ts
CHANGED
|
@@ -127,6 +127,10 @@ export interface SandboxMeta {
|
|
|
127
127
|
createdAt?: string | null;
|
|
128
128
|
lastActivity?: string | null;
|
|
129
129
|
lastAgentActivity?: string | null;
|
|
130
|
+
/** 空闲多久自动休眠(秒,按机型) */
|
|
131
|
+
idleTtlSeconds?: number;
|
|
132
|
+
/** 预计自动休眠时间(最近活跃 + TTL);生成中不会被回收,仅为预计值 */
|
|
133
|
+
hibernateAt?: string | null;
|
|
130
134
|
hasSnapshot?: boolean;
|
|
131
135
|
snapshotKey?: string | null;
|
|
132
136
|
};
|