@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.
Files changed (2) hide show
  1. package/dist/client.d.ts +4 -0
  2. 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
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chatu-ai/builder-sdk",
3
- "version": "0.8.2",
3
+ "version": "0.8.3",
4
4
  "description": "ChatU Builder client SDK core: REST + streaming client, zod event schemas, seq resume",
5
5
  "license": "MIT",
6
6
  "type": "module",