@intentic/sandbox-contract 1.158.0 → 1.160.0
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/agent-catalog.d.ts +10 -0
- package/dist/agent-catalog.d.ts.map +1 -1
- package/dist/agent-catalog.js +14 -1
- package/dist/agent-catalog.js.map +1 -1
- package/dist/contracts/agent.contract.d.ts +74 -4
- package/dist/contracts/agent.contract.d.ts.map +1 -1
- package/dist/contracts/agent.contract.js +2 -1
- package/dist/contracts/agent.contract.js.map +1 -1
- package/dist/contracts/agents.contract.d.ts +248 -0
- package/dist/contracts/agents.contract.d.ts.map +1 -1
- package/dist/contracts/agents.contract.js +7 -2
- package/dist/contracts/agents.contract.js.map +1 -1
- package/dist/contracts/automations.contract.d.ts +7 -0
- package/dist/contracts/automations.contract.d.ts.map +1 -1
- package/dist/contracts/claude.contract.d.ts +26 -0
- package/dist/contracts/claude.contract.d.ts.map +1 -1
- package/dist/contracts/claude.contract.js +2 -1
- package/dist/contracts/claude.contract.js.map +1 -1
- package/dist/contracts/extensions.contract.d.ts +1 -0
- package/dist/contracts/extensions.contract.d.ts.map +1 -1
- package/dist/contracts/git.contract.d.ts +13 -0
- package/dist/contracts/git.contract.d.ts.map +1 -1
- package/dist/contracts/git.contract.js +2 -1
- package/dist/contracts/git.contract.js.map +1 -1
- package/dist/contracts/grok.contract.d.ts +2 -0
- package/dist/contracts/grok.contract.d.ts.map +1 -1
- package/dist/contracts/kimi.contract.d.ts +26 -0
- package/dist/contracts/kimi.contract.d.ts.map +1 -1
- package/dist/contracts/kimi.contract.js +2 -1
- package/dist/contracts/kimi.contract.js.map +1 -1
- package/dist/contracts/memory.contract.d.ts +34 -0
- package/dist/contracts/memory.contract.d.ts.map +1 -0
- package/dist/contracts/memory.contract.js +9 -0
- package/dist/contracts/memory.contract.js.map +1 -0
- package/dist/contracts/panels.contract.d.ts +1 -0
- package/dist/contracts/panels.contract.d.ts.map +1 -1
- package/dist/contracts/push.contract.d.ts +1 -1
- package/dist/contracts/push.contract.js +2 -2
- package/dist/contracts/push.contract.js.map +1 -1
- package/dist/contracts/sessions.contract.d.ts +2 -0
- package/dist/contracts/sessions.contract.d.ts.map +1 -1
- package/dist/contracts/settings.contract.d.ts +32 -0
- package/dist/contracts/settings.contract.d.ts.map +1 -1
- package/dist/contracts/settings.contract.js +2 -1
- package/dist/contracts/settings.contract.js.map +1 -1
- package/dist/contracts/system.contract.d.ts +35 -6
- package/dist/contracts/system.contract.d.ts.map +1 -1
- package/dist/contracts/system.contract.js +2 -1
- package/dist/contracts/system.contract.js.map +1 -1
- package/dist/contracts/translator.contract.d.ts +13 -3
- package/dist/contracts/translator.contract.d.ts.map +1 -1
- package/dist/contracts/translator.contract.js +1 -1
- package/dist/contracts/translator.contract.js.map +1 -1
- package/dist/contracts/workspace.contract.d.ts +43 -5
- package/dist/contracts/workspace.contract.d.ts.map +1 -1
- package/dist/contracts/workspace.contract.js +3 -1
- package/dist/contracts/workspace.contract.js.map +1 -1
- package/dist/events.d.ts +176 -2
- package/dist/events.d.ts.map +1 -1
- package/dist/events.js +16 -5
- package/dist/events.js.map +1 -1
- package/dist/hostnames.d.ts +2 -0
- package/dist/hostnames.d.ts.map +1 -1
- package/dist/hostnames.js +27 -1
- package/dist/hostnames.js.map +1 -1
- package/dist/index.d.ts +566 -19
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +11 -0
- package/dist/index.js.map +1 -1
- package/dist/model-order.d.ts +2 -0
- package/dist/model-order.d.ts.map +1 -1
- package/dist/model-order.js +3 -0
- package/dist/model-order.js.map +1 -1
- package/dist/path-refs.d.ts +5 -0
- package/dist/path-refs.d.ts.map +1 -0
- package/dist/path-refs.js +21 -0
- package/dist/path-refs.js.map +1 -0
- package/dist/quick-model.d.ts +13 -0
- package/dist/quick-model.d.ts.map +1 -0
- package/dist/quick-model.js +33 -0
- package/dist/quick-model.js.map +1 -0
- package/dist/routes.d.ts +8 -0
- package/dist/routes.d.ts.map +1 -0
- package/dist/routes.js +39 -0
- package/dist/routes.js.map +1 -0
- package/dist/schemas.d.ts +351 -10
- package/dist/schemas.d.ts.map +1 -1
- package/dist/schemas.js +143 -13
- package/dist/schemas.js.map +1 -1
- package/dist/title.d.ts +6 -0
- package/dist/title.d.ts.map +1 -0
- package/dist/title.js +149 -0
- package/dist/title.js.map +1 -0
- package/package.json +2 -2
- package/src/agent-catalog.ts +51 -1
- package/src/contracts/agent.contract.ts +14 -1
- package/src/contracts/agents.contract.ts +25 -1
- package/src/contracts/claude.contract.ts +4 -1
- package/src/contracts/git.contract.ts +6 -0
- package/src/contracts/kimi.contract.ts +13 -2
- package/src/contracts/memory.contract.ts +13 -0
- package/src/contracts/push.contract.ts +2 -2
- package/src/contracts/settings.contract.ts +5 -1
- package/src/contracts/system.contract.ts +4 -0
- package/src/contracts/translator.contract.ts +3 -2
- package/src/contracts/workspace.contract.ts +12 -0
- package/src/events.ts +89 -11
- package/src/hostnames.test.ts +22 -0
- package/src/hostnames.ts +40 -1
- package/src/index.ts +20 -0
- package/src/model-order.test.ts +73 -1
- package/src/model-order.ts +31 -0
- package/src/path-refs.test.ts +68 -0
- package/src/path-refs.ts +59 -0
- package/src/quick-model.test.ts +88 -0
- package/src/quick-model.ts +103 -0
- package/src/routes.test.ts +83 -0
- package/src/routes.ts +84 -0
- package/src/schemas.test.ts +23 -1
- package/src/schemas.ts +461 -38
- package/src/title.test.ts +130 -0
- package/src/title.ts +254 -0
package/dist/schemas.d.ts
CHANGED
|
@@ -29,6 +29,13 @@ export declare const EditorContextSchema: z.ZodObject<{
|
|
|
29
29
|
selection: z.ZodOptional<z.ZodString>;
|
|
30
30
|
}, z.core.$strip>;
|
|
31
31
|
export type EditorContext = z.infer<typeof EditorContextSchema>;
|
|
32
|
+
export declare const AgentOriginSchema: z.ZodObject<{
|
|
33
|
+
automationId: z.ZodString;
|
|
34
|
+
provider: z.ZodString;
|
|
35
|
+
channelId: z.ZodOptional<z.ZodString>;
|
|
36
|
+
author: z.ZodOptional<z.ZodString>;
|
|
37
|
+
}, z.core.$strip>;
|
|
38
|
+
export type AgentOrigin = z.infer<typeof AgentOriginSchema>;
|
|
32
39
|
export declare const PermissionModeSchema: z.ZodEnum<{
|
|
33
40
|
acceptEdits: "acceptEdits";
|
|
34
41
|
bypassPermissions: "bypassPermissions";
|
|
@@ -49,6 +56,12 @@ export declare const AgentTurnSchema: z.ZodObject<{
|
|
|
49
56
|
sessionId: z.ZodOptional<z.ZodString>;
|
|
50
57
|
conversationId: z.ZodOptional<z.ZodString>;
|
|
51
58
|
isolated: z.ZodOptional<z.ZodBoolean>;
|
|
59
|
+
origin: z.ZodOptional<z.ZodObject<{
|
|
60
|
+
automationId: z.ZodString;
|
|
61
|
+
provider: z.ZodString;
|
|
62
|
+
channelId: z.ZodOptional<z.ZodString>;
|
|
63
|
+
author: z.ZodOptional<z.ZodString>;
|
|
64
|
+
}, z.core.$strip>>;
|
|
52
65
|
history: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
53
66
|
role: z.ZodEnum<{
|
|
54
67
|
assistant: "assistant";
|
|
@@ -88,7 +101,9 @@ export declare const AgentStatusSchema: z.ZodEnum<{
|
|
|
88
101
|
conflict: "conflict";
|
|
89
102
|
error: "error";
|
|
90
103
|
idle: "idle";
|
|
104
|
+
interrupted: "interrupted";
|
|
91
105
|
landed: "landed";
|
|
106
|
+
ready: "ready";
|
|
92
107
|
running: "running";
|
|
93
108
|
}>;
|
|
94
109
|
export type AgentStatus = z.infer<typeof AgentStatusSchema>;
|
|
@@ -114,7 +129,9 @@ export declare const AgentSummarySchema: z.ZodObject<{
|
|
|
114
129
|
conflict: "conflict";
|
|
115
130
|
error: "error";
|
|
116
131
|
idle: "idle";
|
|
132
|
+
interrupted: "interrupted";
|
|
117
133
|
landed: "landed";
|
|
134
|
+
ready: "ready";
|
|
118
135
|
running: "running";
|
|
119
136
|
}>;
|
|
120
137
|
provider: z.ZodString;
|
|
@@ -123,8 +140,17 @@ export declare const AgentSummarySchema: z.ZodObject<{
|
|
|
123
140
|
native: "native";
|
|
124
141
|
}>;
|
|
125
142
|
model: z.ZodOptional<z.ZodString>;
|
|
143
|
+
effort: z.ZodOptional<z.ZodString>;
|
|
144
|
+
thinking: z.ZodOptional<z.ZodBoolean>;
|
|
126
145
|
account: z.ZodOptional<z.ZodString>;
|
|
127
146
|
branch: z.ZodOptional<z.ZodString>;
|
|
147
|
+
autoLand: z.ZodOptional<z.ZodBoolean>;
|
|
148
|
+
origin: z.ZodOptional<z.ZodObject<{
|
|
149
|
+
automationId: z.ZodString;
|
|
150
|
+
provider: z.ZodString;
|
|
151
|
+
channelId: z.ZodOptional<z.ZodString>;
|
|
152
|
+
author: z.ZodOptional<z.ZodString>;
|
|
153
|
+
}, z.core.$strip>>;
|
|
128
154
|
base: z.ZodOptional<z.ZodString>;
|
|
129
155
|
costUsd: z.ZodOptional<z.ZodNumber>;
|
|
130
156
|
inputTokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -165,7 +191,9 @@ export declare const AgentsListSchema: z.ZodObject<{
|
|
|
165
191
|
conflict: "conflict";
|
|
166
192
|
error: "error";
|
|
167
193
|
idle: "idle";
|
|
194
|
+
interrupted: "interrupted";
|
|
168
195
|
landed: "landed";
|
|
196
|
+
ready: "ready";
|
|
169
197
|
running: "running";
|
|
170
198
|
}>;
|
|
171
199
|
provider: z.ZodString;
|
|
@@ -174,8 +202,17 @@ export declare const AgentsListSchema: z.ZodObject<{
|
|
|
174
202
|
native: "native";
|
|
175
203
|
}>;
|
|
176
204
|
model: z.ZodOptional<z.ZodString>;
|
|
205
|
+
effort: z.ZodOptional<z.ZodString>;
|
|
206
|
+
thinking: z.ZodOptional<z.ZodBoolean>;
|
|
177
207
|
account: z.ZodOptional<z.ZodString>;
|
|
178
208
|
branch: z.ZodOptional<z.ZodString>;
|
|
209
|
+
autoLand: z.ZodOptional<z.ZodBoolean>;
|
|
210
|
+
origin: z.ZodOptional<z.ZodObject<{
|
|
211
|
+
automationId: z.ZodString;
|
|
212
|
+
provider: z.ZodString;
|
|
213
|
+
channelId: z.ZodOptional<z.ZodString>;
|
|
214
|
+
author: z.ZodOptional<z.ZodString>;
|
|
215
|
+
}, z.core.$strip>>;
|
|
179
216
|
base: z.ZodOptional<z.ZodString>;
|
|
180
217
|
costUsd: z.ZodOptional<z.ZodNumber>;
|
|
181
218
|
inputTokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -205,6 +242,7 @@ export declare const AgentsListSchema: z.ZodObject<{
|
|
|
205
242
|
}, z.core.$strip>>;
|
|
206
243
|
archivedAt: z.ZodOptional<z.ZodNumber>;
|
|
207
244
|
}, z.core.$strip>>;
|
|
245
|
+
rev: z.ZodNumber;
|
|
208
246
|
}, z.core.$strip>;
|
|
209
247
|
export declare const AgentIdSchema: z.ZodObject<{
|
|
210
248
|
id: z.ZodString;
|
|
@@ -225,7 +263,9 @@ export declare const AgentsMovedSchema: z.ZodObject<{
|
|
|
225
263
|
conflict: "conflict";
|
|
226
264
|
error: "error";
|
|
227
265
|
idle: "idle";
|
|
266
|
+
interrupted: "interrupted";
|
|
228
267
|
landed: "landed";
|
|
268
|
+
ready: "ready";
|
|
229
269
|
running: "running";
|
|
230
270
|
}>;
|
|
231
271
|
provider: z.ZodString;
|
|
@@ -234,8 +274,17 @@ export declare const AgentsMovedSchema: z.ZodObject<{
|
|
|
234
274
|
native: "native";
|
|
235
275
|
}>;
|
|
236
276
|
model: z.ZodOptional<z.ZodString>;
|
|
277
|
+
effort: z.ZodOptional<z.ZodString>;
|
|
278
|
+
thinking: z.ZodOptional<z.ZodBoolean>;
|
|
237
279
|
account: z.ZodOptional<z.ZodString>;
|
|
238
280
|
branch: z.ZodOptional<z.ZodString>;
|
|
281
|
+
autoLand: z.ZodOptional<z.ZodBoolean>;
|
|
282
|
+
origin: z.ZodOptional<z.ZodObject<{
|
|
283
|
+
automationId: z.ZodString;
|
|
284
|
+
provider: z.ZodString;
|
|
285
|
+
channelId: z.ZodOptional<z.ZodString>;
|
|
286
|
+
author: z.ZodOptional<z.ZodString>;
|
|
287
|
+
}, z.core.$strip>>;
|
|
239
288
|
base: z.ZodOptional<z.ZodString>;
|
|
240
289
|
costUsd: z.ZodOptional<z.ZodNumber>;
|
|
241
290
|
inputTokens: z.ZodOptional<z.ZodNumber>;
|
|
@@ -265,35 +314,128 @@ export declare const AgentsMovedSchema: z.ZodObject<{
|
|
|
265
314
|
}, z.core.$strip>>;
|
|
266
315
|
archivedAt: z.ZodOptional<z.ZodNumber>;
|
|
267
316
|
}, z.core.$strip>>;
|
|
317
|
+
rev: z.ZodNumber;
|
|
268
318
|
}, z.core.$strip>;
|
|
269
319
|
export type AgentsMoved = z.infer<typeof AgentsMovedSchema>;
|
|
320
|
+
export declare const AgentsRemovedSchema: z.ZodObject<{
|
|
321
|
+
removed: z.ZodArray<z.ZodString>;
|
|
322
|
+
}, z.core.$strip>;
|
|
323
|
+
export type AgentsRemoved = z.infer<typeof AgentsRemovedSchema>;
|
|
324
|
+
export declare const AgentSearchQuerySchema: z.ZodObject<{
|
|
325
|
+
query: z.ZodString;
|
|
326
|
+
}, z.core.$strip>;
|
|
327
|
+
export declare const AgentMatchSchema: z.ZodObject<{
|
|
328
|
+
id: z.ZodString;
|
|
329
|
+
snippet: z.ZodOptional<z.ZodString>;
|
|
330
|
+
}, z.core.$strip>;
|
|
331
|
+
export type AgentMatch = z.infer<typeof AgentMatchSchema>;
|
|
332
|
+
export declare const AgentSearchResultSchema: z.ZodObject<{
|
|
333
|
+
matches: z.ZodArray<z.ZodObject<{
|
|
334
|
+
id: z.ZodString;
|
|
335
|
+
snippet: z.ZodOptional<z.ZodString>;
|
|
336
|
+
}, z.core.$strip>>;
|
|
337
|
+
scanned: z.ZodNumber;
|
|
338
|
+
}, z.core.$strip>;
|
|
339
|
+
export type AgentSearchResult = z.infer<typeof AgentSearchResultSchema>;
|
|
270
340
|
export declare const AgentRenameSchema: z.ZodObject<{
|
|
271
341
|
id: z.ZodString;
|
|
272
342
|
title: z.ZodString;
|
|
273
343
|
}, z.core.$strip>;
|
|
344
|
+
export declare const AgentAutoLandSchema: z.ZodObject<{
|
|
345
|
+
id: z.ZodString;
|
|
346
|
+
autoLand: z.ZodNullable<z.ZodBoolean>;
|
|
347
|
+
}, z.core.$strip>;
|
|
274
348
|
export declare const AgentFileDiffQuerySchema: z.ZodObject<{
|
|
275
349
|
id: z.ZodString;
|
|
276
350
|
repo: z.ZodString;
|
|
277
351
|
path: z.ZodString;
|
|
278
352
|
}, z.core.$strip>;
|
|
353
|
+
export declare const LandConflictReasonSchema: z.ZodEnum<{
|
|
354
|
+
binary: "binary";
|
|
355
|
+
diverged: "diverged";
|
|
356
|
+
workspace: "workspace";
|
|
357
|
+
}>;
|
|
358
|
+
export type LandConflictReason = z.infer<typeof LandConflictReasonSchema>;
|
|
359
|
+
export declare const LandConflictPathSchema: z.ZodObject<{
|
|
360
|
+
path: z.ZodString;
|
|
361
|
+
reason: z.ZodEnum<{
|
|
362
|
+
binary: "binary";
|
|
363
|
+
diverged: "diverged";
|
|
364
|
+
workspace: "workspace";
|
|
365
|
+
}>;
|
|
366
|
+
}, z.core.$strip>;
|
|
367
|
+
export declare const LandConflictSchema: z.ZodObject<{
|
|
368
|
+
repo: z.ZodString;
|
|
369
|
+
paths: z.ZodArray<z.ZodObject<{
|
|
370
|
+
path: z.ZodString;
|
|
371
|
+
reason: z.ZodEnum<{
|
|
372
|
+
binary: "binary";
|
|
373
|
+
diverged: "diverged";
|
|
374
|
+
workspace: "workspace";
|
|
375
|
+
}>;
|
|
376
|
+
}, z.core.$strip>>;
|
|
377
|
+
clean: z.ZodNumber;
|
|
378
|
+
}, z.core.$strip>;
|
|
379
|
+
export type LandConflict = z.infer<typeof LandConflictSchema>;
|
|
279
380
|
export declare const LandResultSchema: z.ZodObject<{
|
|
280
381
|
landed: z.ZodBoolean;
|
|
281
382
|
conflicts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
383
|
+
repo: z.ZodString;
|
|
384
|
+
paths: z.ZodArray<z.ZodObject<{
|
|
385
|
+
path: z.ZodString;
|
|
386
|
+
reason: z.ZodEnum<{
|
|
387
|
+
binary: "binary";
|
|
388
|
+
diverged: "diverged";
|
|
389
|
+
workspace: "workspace";
|
|
390
|
+
}>;
|
|
391
|
+
}, z.core.$strip>>;
|
|
392
|
+
clean: z.ZodNumber;
|
|
393
|
+
}, z.core.$strip>>>;
|
|
394
|
+
resolving: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
282
395
|
repo: z.ZodString;
|
|
283
396
|
paths: z.ZodArray<z.ZodString>;
|
|
284
397
|
}, z.core.$strip>>>;
|
|
398
|
+
held: z.ZodOptional<z.ZodBoolean>;
|
|
285
399
|
}, z.core.$strip>;
|
|
286
400
|
export type LandResult = z.infer<typeof LandResultSchema>;
|
|
401
|
+
export declare const LandModeSchema: z.ZodEnum<{
|
|
402
|
+
check: "check";
|
|
403
|
+
measure: "measure";
|
|
404
|
+
merge: "merge";
|
|
405
|
+
}>;
|
|
406
|
+
export type LandMode = z.infer<typeof LandModeSchema>;
|
|
407
|
+
export declare const AgentLandSchema: z.ZodObject<{
|
|
408
|
+
id: z.ZodString;
|
|
409
|
+
mode: z.ZodOptional<z.ZodEnum<{
|
|
410
|
+
check: "check";
|
|
411
|
+
measure: "measure";
|
|
412
|
+
merge: "merge";
|
|
413
|
+
}>>;
|
|
414
|
+
}, z.core.$strip>;
|
|
287
415
|
export declare const KeyedProviderSchema: z.ZodEnum<{
|
|
288
416
|
codex: "codex";
|
|
289
417
|
gemini: "gemini";
|
|
290
418
|
grok: "grok";
|
|
291
419
|
}>;
|
|
292
420
|
export type KeyedProvider = z.infer<typeof KeyedProviderSchema>;
|
|
421
|
+
export declare const TranslatorAccountSchema: z.ZodObject<{
|
|
422
|
+
name: z.ZodString;
|
|
423
|
+
label: z.ZodString;
|
|
424
|
+
}, z.core.$strip>;
|
|
425
|
+
export type TranslatorAccount = z.infer<typeof TranslatorAccountSchema>;
|
|
293
426
|
export declare const TranslatorAccountsSchema: z.ZodObject<{
|
|
294
|
-
codex: z.
|
|
295
|
-
|
|
296
|
-
|
|
427
|
+
codex: z.ZodArray<z.ZodObject<{
|
|
428
|
+
name: z.ZodString;
|
|
429
|
+
label: z.ZodString;
|
|
430
|
+
}, z.core.$strip>>;
|
|
431
|
+
grok: z.ZodArray<z.ZodObject<{
|
|
432
|
+
name: z.ZodString;
|
|
433
|
+
label: z.ZodString;
|
|
434
|
+
}, z.core.$strip>>;
|
|
435
|
+
gemini: z.ZodArray<z.ZodObject<{
|
|
436
|
+
name: z.ZodString;
|
|
437
|
+
label: z.ZodString;
|
|
438
|
+
}, z.core.$strip>>;
|
|
297
439
|
}, z.core.$strip>;
|
|
298
440
|
export type TranslatorAccounts = z.infer<typeof TranslatorAccountsSchema>;
|
|
299
441
|
export declare const AgentReplySchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
@@ -337,6 +479,10 @@ export declare const SteerSchema: z.ZodObject<{
|
|
|
337
479
|
export declare const StopTurnSchema: z.ZodObject<{
|
|
338
480
|
conversationId: z.ZodString;
|
|
339
481
|
}, z.core.$strip>;
|
|
482
|
+
export declare const ResumeLimitSchema: z.ZodObject<{
|
|
483
|
+
conversationId: z.ZodString;
|
|
484
|
+
account: z.ZodOptional<z.ZodString>;
|
|
485
|
+
}, z.core.$strip>;
|
|
340
486
|
export declare const RateLimitInfoSchema: z.ZodObject<{
|
|
341
487
|
status: z.ZodEnum<{
|
|
342
488
|
allowed: "allowed";
|
|
@@ -368,6 +514,8 @@ export type AccountUsage = z.infer<typeof AccountUsageSchema>;
|
|
|
368
514
|
export declare const OauthAccountSchema: z.ZodObject<{
|
|
369
515
|
id: z.ZodString;
|
|
370
516
|
label: z.ZodString;
|
|
517
|
+
email: z.ZodOptional<z.ZodString>;
|
|
518
|
+
organization: z.ZodOptional<z.ZodString>;
|
|
371
519
|
scope: z.ZodOptional<z.ZodString>;
|
|
372
520
|
connectedAt: z.ZodNumber;
|
|
373
521
|
needsReauth: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -387,6 +535,8 @@ export declare const OauthAccountListSchema: z.ZodObject<{
|
|
|
387
535
|
accounts: z.ZodArray<z.ZodObject<{
|
|
388
536
|
id: z.ZodString;
|
|
389
537
|
label: z.ZodString;
|
|
538
|
+
email: z.ZodOptional<z.ZodString>;
|
|
539
|
+
organization: z.ZodOptional<z.ZodString>;
|
|
390
540
|
scope: z.ZodOptional<z.ZodString>;
|
|
391
541
|
connectedAt: z.ZodNumber;
|
|
392
542
|
needsReauth: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -405,6 +555,10 @@ export declare const OauthAccountListSchema: z.ZodObject<{
|
|
|
405
555
|
export declare const AccountIdSchema: z.ZodObject<{
|
|
406
556
|
id: z.ZodString;
|
|
407
557
|
}, z.core.$strip>;
|
|
558
|
+
export declare const AccountRenameSchema: z.ZodObject<{
|
|
559
|
+
id: z.ZodString;
|
|
560
|
+
label: z.ZodString;
|
|
561
|
+
}, z.core.$strip>;
|
|
408
562
|
export declare const OauthExchangeSchema: z.ZodObject<{
|
|
409
563
|
code: z.ZodString;
|
|
410
564
|
verifier: z.ZodString;
|
|
@@ -474,19 +628,39 @@ export declare const SessionSummarySchema: z.ZodObject<{
|
|
|
474
628
|
id: z.ZodString;
|
|
475
629
|
title: z.ZodString;
|
|
476
630
|
updatedAt: z.ZodNumber;
|
|
631
|
+
snippet: z.ZodOptional<z.ZodString>;
|
|
477
632
|
}, z.core.$strip>;
|
|
478
633
|
export declare const SessionsListSchema: z.ZodObject<{
|
|
479
634
|
sessions: z.ZodArray<z.ZodObject<{
|
|
480
635
|
id: z.ZodString;
|
|
481
636
|
title: z.ZodString;
|
|
482
637
|
updatedAt: z.ZodNumber;
|
|
638
|
+
snippet: z.ZodOptional<z.ZodString>;
|
|
483
639
|
}, z.core.$strip>>;
|
|
484
640
|
}, z.core.$strip>;
|
|
641
|
+
export declare const SystemPromptModeSchema: z.ZodEnum<{
|
|
642
|
+
claude: "claude";
|
|
643
|
+
custom: "custom";
|
|
644
|
+
intentic: "intentic";
|
|
645
|
+
}>;
|
|
646
|
+
export type SystemPromptMode = z.infer<typeof SystemPromptModeSchema>;
|
|
647
|
+
export declare const BuiltinPromptSchema: z.ZodObject<{
|
|
648
|
+
base: z.ZodEnum<{
|
|
649
|
+
claude: "claude";
|
|
650
|
+
intentic: "intentic";
|
|
651
|
+
}>;
|
|
652
|
+
}, z.core.$strip>;
|
|
485
653
|
export declare const SandboxSettingsSchema: z.ZodObject<{
|
|
486
654
|
stableSystemPrompt: z.ZodDefault<z.ZodBoolean>;
|
|
487
655
|
skills: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
488
656
|
hashlineEdits: z.ZodDefault<z.ZodBoolean>;
|
|
489
657
|
terseOutput: z.ZodDefault<z.ZodBoolean>;
|
|
658
|
+
systemPromptMode: z.ZodDefault<z.ZodEnum<{
|
|
659
|
+
claude: "claude";
|
|
660
|
+
custom: "custom";
|
|
661
|
+
intentic: "intentic";
|
|
662
|
+
}>>;
|
|
663
|
+
systemPrompt: z.ZodDefault<z.ZodString>;
|
|
490
664
|
iqSearch: z.ZodDefault<z.ZodBoolean>;
|
|
491
665
|
outputCleaners: z.ZodDefault<z.ZodString>;
|
|
492
666
|
outputHoldout: z.ZodDefault<z.ZodNumber>;
|
|
@@ -494,10 +668,23 @@ export declare const SandboxSettingsSchema: z.ZodObject<{
|
|
|
494
668
|
native: "native";
|
|
495
669
|
rtk: "rtk";
|
|
496
670
|
}>>;
|
|
671
|
+
quickModel: z.ZodDefault<z.ZodString>;
|
|
497
672
|
agentRetentionDays: z.ZodDefault<z.ZodNumber>;
|
|
673
|
+
autoLand: z.ZodDefault<z.ZodBoolean>;
|
|
674
|
+
autoResumeOnLimit: z.ZodDefault<z.ZodBoolean>;
|
|
498
675
|
}, z.core.$strip>;
|
|
499
676
|
export type SandboxSettings = z.infer<typeof SandboxSettingsSchema>;
|
|
677
|
+
export declare const BuiltinPromptTextSchema: z.ZodObject<{
|
|
678
|
+
text: z.ZodString;
|
|
679
|
+
version: z.ZodString;
|
|
680
|
+
}, z.core.$strip>;
|
|
681
|
+
export type BuiltinPromptText = z.infer<typeof BuiltinPromptTextSchema>;
|
|
500
682
|
export declare const CleanerSavingsSchema: z.ZodObject<{
|
|
683
|
+
source: z.ZodDefault<z.ZodEnum<{
|
|
684
|
+
native: "native";
|
|
685
|
+
rtk: "rtk";
|
|
686
|
+
}>>;
|
|
687
|
+
updatedAt: z.ZodOptional<z.ZodNumber>;
|
|
501
688
|
commands: z.ZodNumber;
|
|
502
689
|
rawTokens: z.ZodNumber;
|
|
503
690
|
emittedTokens: z.ZodNumber;
|
|
@@ -576,6 +763,16 @@ export declare const GitFileSchema: z.ZodObject<{
|
|
|
576
763
|
export declare const CommitResultSchema: z.ZodObject<{
|
|
577
764
|
committed: z.ZodBoolean;
|
|
578
765
|
}, z.core.$strip>;
|
|
766
|
+
export declare const CommitMessageDraftSchema: z.ZodObject<{
|
|
767
|
+
repos: z.ZodArray<z.ZodString>;
|
|
768
|
+
all: z.ZodOptional<z.ZodBoolean>;
|
|
769
|
+
}, z.core.$strip>;
|
|
770
|
+
export declare const CommitMessageSchema: z.ZodObject<{
|
|
771
|
+
message: z.ZodString;
|
|
772
|
+
provider: z.ZodString;
|
|
773
|
+
model: z.ZodString;
|
|
774
|
+
}, z.core.$strip>;
|
|
775
|
+
export type CommitMessageDraft = z.infer<typeof CommitMessageSchema>;
|
|
579
776
|
export declare const GitChangeSchema: z.ZodObject<{
|
|
580
777
|
path: z.ZodString;
|
|
581
778
|
status: z.ZodEnum<{
|
|
@@ -676,6 +873,7 @@ export declare const RepoChangesSchema: z.ZodObject<{
|
|
|
676
873
|
additions: z.ZodOptional<z.ZodNumber>;
|
|
677
874
|
deletions: z.ZodOptional<z.ZodNumber>;
|
|
678
875
|
}, z.core.$strip>>;
|
|
876
|
+
truncated: z.ZodOptional<z.ZodNumber>;
|
|
679
877
|
remote: z.ZodOptional<z.ZodObject<{
|
|
680
878
|
remote: z.ZodOptional<z.ZodString>;
|
|
681
879
|
branch: z.ZodOptional<z.ZodString>;
|
|
@@ -687,6 +885,11 @@ export declare const RepoChangesSchema: z.ZodObject<{
|
|
|
687
885
|
error: z.ZodOptional<z.ZodString>;
|
|
688
886
|
}, z.core.$strip>;
|
|
689
887
|
export type RepoChanges = z.infer<typeof RepoChangesSchema>;
|
|
888
|
+
export declare const OriginAgentSchema: z.ZodObject<{
|
|
889
|
+
title: z.ZodOptional<z.ZodString>;
|
|
890
|
+
provider: z.ZodString;
|
|
891
|
+
}, z.core.$strip>;
|
|
892
|
+
export type OriginAgent = z.infer<typeof OriginAgentSchema>;
|
|
690
893
|
export declare const GitChangesSchema: z.ZodObject<{
|
|
691
894
|
repos: z.ZodArray<z.ZodObject<{
|
|
692
895
|
repo: z.ZodString;
|
|
@@ -733,6 +936,7 @@ export declare const GitChangesSchema: z.ZodObject<{
|
|
|
733
936
|
additions: z.ZodOptional<z.ZodNumber>;
|
|
734
937
|
deletions: z.ZodOptional<z.ZodNumber>;
|
|
735
938
|
}, z.core.$strip>>;
|
|
939
|
+
truncated: z.ZodOptional<z.ZodNumber>;
|
|
736
940
|
remote: z.ZodOptional<z.ZodObject<{
|
|
737
941
|
remote: z.ZodOptional<z.ZodString>;
|
|
738
942
|
branch: z.ZodOptional<z.ZodString>;
|
|
@@ -743,6 +947,10 @@ export declare const GitChangesSchema: z.ZodObject<{
|
|
|
743
947
|
origins: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString>>>;
|
|
744
948
|
error: z.ZodOptional<z.ZodString>;
|
|
745
949
|
}, z.core.$strip>>;
|
|
950
|
+
originAgents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
951
|
+
title: z.ZodOptional<z.ZodString>;
|
|
952
|
+
provider: z.ZodString;
|
|
953
|
+
}, z.core.$strip>>>;
|
|
746
954
|
}, z.core.$strip>;
|
|
747
955
|
export type GitChanges = z.infer<typeof GitChangesSchema>;
|
|
748
956
|
export declare const AgentChangeSchema: z.ZodObject<{
|
|
@@ -801,6 +1009,18 @@ export declare const AgentChangesSchema: z.ZodObject<{
|
|
|
801
1009
|
landed: z.ZodBoolean;
|
|
802
1010
|
}, z.core.$strip>>;
|
|
803
1011
|
}, z.core.$strip>>;
|
|
1012
|
+
conflicts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1013
|
+
repo: z.ZodString;
|
|
1014
|
+
paths: z.ZodArray<z.ZodObject<{
|
|
1015
|
+
path: z.ZodString;
|
|
1016
|
+
reason: z.ZodEnum<{
|
|
1017
|
+
binary: "binary";
|
|
1018
|
+
diverged: "diverged";
|
|
1019
|
+
workspace: "workspace";
|
|
1020
|
+
}>;
|
|
1021
|
+
}, z.core.$strip>>;
|
|
1022
|
+
clean: z.ZodNumber;
|
|
1023
|
+
}, z.core.$strip>>>;
|
|
804
1024
|
}, z.core.$strip>;
|
|
805
1025
|
export type AgentChanges = z.infer<typeof AgentChangesSchema>;
|
|
806
1026
|
export declare const GitCommitSchema: z.ZodObject<{
|
|
@@ -980,7 +1200,6 @@ export declare const WorkspaceTreeEntrySchema: z.ZodObject<{
|
|
|
980
1200
|
file: "file";
|
|
981
1201
|
}>;
|
|
982
1202
|
size: z.ZodOptional<z.ZodNumber>;
|
|
983
|
-
truncated: z.ZodOptional<z.ZodBoolean>;
|
|
984
1203
|
ignored: z.ZodOptional<z.ZodBoolean>;
|
|
985
1204
|
children: z.ZodOptional<z.ZodArray<z.ZodObject<any, z.core.$strip>>>;
|
|
986
1205
|
}, z.core.$strip>;
|
|
@@ -995,11 +1214,10 @@ export declare const WorkspaceTreeSchema: z.ZodObject<{
|
|
|
995
1214
|
file: "file";
|
|
996
1215
|
}>;
|
|
997
1216
|
size: z.ZodOptional<z.ZodNumber>;
|
|
998
|
-
truncated: z.ZodOptional<z.ZodBoolean>;
|
|
999
1217
|
ignored: z.ZodOptional<z.ZodBoolean>;
|
|
1000
1218
|
children: z.ZodOptional<z.ZodArray<z.ZodObject<any, z.core.$strip>>>;
|
|
1001
1219
|
}, z.core.$strip>>;
|
|
1002
|
-
|
|
1220
|
+
hidden: z.ZodNumber;
|
|
1003
1221
|
}, z.core.$strip>;
|
|
1004
1222
|
export type WorkspaceTree = z.infer<typeof WorkspaceTreeSchema>;
|
|
1005
1223
|
export declare const WorkspaceChildrenQuerySchema: z.ZodObject<{
|
|
@@ -1014,11 +1232,10 @@ export declare const WorkspaceChildrenSchema: z.ZodObject<{
|
|
|
1014
1232
|
file: "file";
|
|
1015
1233
|
}>;
|
|
1016
1234
|
size: z.ZodOptional<z.ZodNumber>;
|
|
1017
|
-
truncated: z.ZodOptional<z.ZodBoolean>;
|
|
1018
1235
|
ignored: z.ZodOptional<z.ZodBoolean>;
|
|
1019
1236
|
children: z.ZodOptional<z.ZodArray<z.ZodObject<any, z.core.$strip>>>;
|
|
1020
1237
|
}, z.core.$strip>>;
|
|
1021
|
-
|
|
1238
|
+
hidden: z.ZodNumber;
|
|
1022
1239
|
}, z.core.$strip>;
|
|
1023
1240
|
export type WorkspaceChildren = z.infer<typeof WorkspaceChildrenSchema>;
|
|
1024
1241
|
export declare const WorkspaceFileQuerySchema: z.ZodObject<{
|
|
@@ -1028,6 +1245,12 @@ export declare const WorkspaceFileSchema: z.ZodObject<{
|
|
|
1028
1245
|
path: z.ZodString;
|
|
1029
1246
|
content: z.ZodString;
|
|
1030
1247
|
}, z.core.$strip>;
|
|
1248
|
+
export declare const WorkspaceResolveQuerySchema: z.ZodObject<{
|
|
1249
|
+
path: z.ZodString;
|
|
1250
|
+
}, z.core.$strip>;
|
|
1251
|
+
export declare const WorkspaceResolveSchema: z.ZodObject<{
|
|
1252
|
+
path: z.ZodOptional<z.ZodString>;
|
|
1253
|
+
}, z.core.$strip>;
|
|
1031
1254
|
export declare const WorkspaceDirSchema: z.ZodObject<{
|
|
1032
1255
|
path: z.ZodString;
|
|
1033
1256
|
}, z.core.$strip>;
|
|
@@ -1203,6 +1426,59 @@ export declare const WorkspaceSearchResultSchema: z.ZodObject<{
|
|
|
1203
1426
|
features: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1204
1427
|
}, z.core.$strip>;
|
|
1205
1428
|
export type WorkspaceSearchResult = z.infer<typeof WorkspaceSearchResultSchema>;
|
|
1429
|
+
export declare const HEALTH_LIMIT = 20;
|
|
1430
|
+
export declare const WorkspaceHealthQuerySchema: z.ZodObject<{
|
|
1431
|
+
repo: z.ZodString;
|
|
1432
|
+
since: z.ZodOptional<z.ZodString>;
|
|
1433
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
1434
|
+
}, z.core.$strip>;
|
|
1435
|
+
export declare const WorkspaceHotspotSchema: z.ZodObject<{
|
|
1436
|
+
path: z.ZodString;
|
|
1437
|
+
commits: z.ZodNumber;
|
|
1438
|
+
adds: z.ZodNumber;
|
|
1439
|
+
dels: z.ZodNumber;
|
|
1440
|
+
complexity: z.ZodNumber;
|
|
1441
|
+
score: z.ZodNumber;
|
|
1442
|
+
latestMs: z.ZodNumber;
|
|
1443
|
+
}, z.core.$strip>;
|
|
1444
|
+
export type WorkspaceHotspot = z.infer<typeof WorkspaceHotspotSchema>;
|
|
1445
|
+
export declare const WorkspaceKeyModuleSchema: z.ZodObject<{
|
|
1446
|
+
path: z.ZodString;
|
|
1447
|
+
exports: z.ZodNumber;
|
|
1448
|
+
}, z.core.$strip>;
|
|
1449
|
+
export type WorkspaceKeyModule = z.infer<typeof WorkspaceKeyModuleSchema>;
|
|
1450
|
+
export declare const WorkspaceHealthSchema: z.ZodObject<{
|
|
1451
|
+
repo: z.ZodString;
|
|
1452
|
+
totals: z.ZodObject<{
|
|
1453
|
+
files: z.ZodNumber;
|
|
1454
|
+
symbols: z.ZodNumber;
|
|
1455
|
+
complexity: z.ZodNumber;
|
|
1456
|
+
hotspots: z.ZodNumber;
|
|
1457
|
+
}, z.core.$strip>;
|
|
1458
|
+
hotspots: z.ZodArray<z.ZodObject<{
|
|
1459
|
+
path: z.ZodString;
|
|
1460
|
+
commits: z.ZodNumber;
|
|
1461
|
+
adds: z.ZodNumber;
|
|
1462
|
+
dels: z.ZodNumber;
|
|
1463
|
+
complexity: z.ZodNumber;
|
|
1464
|
+
score: z.ZodNumber;
|
|
1465
|
+
latestMs: z.ZodNumber;
|
|
1466
|
+
}, z.core.$strip>>;
|
|
1467
|
+
modules: z.ZodArray<z.ZodObject<{
|
|
1468
|
+
path: z.ZodString;
|
|
1469
|
+
exports: z.ZodNumber;
|
|
1470
|
+
}, z.core.$strip>>;
|
|
1471
|
+
freshness: z.ZodObject<{
|
|
1472
|
+
state: z.ZodEnum<{
|
|
1473
|
+
building: "building";
|
|
1474
|
+
fresh: "fresh";
|
|
1475
|
+
stale: "stale";
|
|
1476
|
+
}>;
|
|
1477
|
+
ageMs: z.ZodOptional<z.ZodNumber>;
|
|
1478
|
+
progress: z.ZodOptional<z.ZodNumber>;
|
|
1479
|
+
}, z.core.$strip>;
|
|
1480
|
+
}, z.core.$strip>;
|
|
1481
|
+
export type WorkspaceHealth = z.infer<typeof WorkspaceHealthSchema>;
|
|
1206
1482
|
export declare const ProjectSetupSchema: z.ZodObject<{
|
|
1207
1483
|
dir: z.ZodString;
|
|
1208
1484
|
ecosystem: z.ZodEnum<{
|
|
@@ -1324,7 +1600,7 @@ export declare const TemplatesListSchema: z.ZodObject<{
|
|
|
1324
1600
|
export type TemplatesList = z.infer<typeof TemplatesListSchema>;
|
|
1325
1601
|
export declare const RepoAppSchema: z.ZodObject<{
|
|
1326
1602
|
app: z.ZodString;
|
|
1327
|
-
|
|
1603
|
+
kind: z.ZodOptional<z.ZodString>;
|
|
1328
1604
|
previewUrl: z.ZodOptional<z.ZodString>;
|
|
1329
1605
|
running: z.ZodBoolean;
|
|
1330
1606
|
healthy: z.ZodBoolean;
|
|
@@ -1333,7 +1609,7 @@ export type RepoApp = z.infer<typeof RepoAppSchema>;
|
|
|
1333
1609
|
export declare const AppsListSchema: z.ZodObject<{
|
|
1334
1610
|
apps: z.ZodArray<z.ZodObject<{
|
|
1335
1611
|
app: z.ZodString;
|
|
1336
|
-
|
|
1612
|
+
kind: z.ZodOptional<z.ZodString>;
|
|
1337
1613
|
previewUrl: z.ZodOptional<z.ZodString>;
|
|
1338
1614
|
running: z.ZodBoolean;
|
|
1339
1615
|
healthy: z.ZodBoolean;
|
|
@@ -2172,6 +2448,7 @@ export declare const ExtensionSummarySchema: z.ZodObject<{
|
|
|
2172
2448
|
surface: z.ZodEnum<{
|
|
2173
2449
|
directory: "directory";
|
|
2174
2450
|
rail: "rail";
|
|
2451
|
+
sandbox: "sandbox";
|
|
2175
2452
|
}>;
|
|
2176
2453
|
}, z.core.$strip>>>;
|
|
2177
2454
|
viewers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -2289,6 +2566,7 @@ export declare const ExtensionsListSchema: z.ZodObject<{
|
|
|
2289
2566
|
surface: z.ZodEnum<{
|
|
2290
2567
|
directory: "directory";
|
|
2291
2568
|
rail: "rail";
|
|
2569
|
+
sandbox: "sandbox";
|
|
2292
2570
|
}>;
|
|
2293
2571
|
}, z.core.$strip>>>;
|
|
2294
2572
|
viewers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -2423,6 +2701,7 @@ export declare const WorkspaceEventSchema: z.ZodObject<{
|
|
|
2423
2701
|
error: "error";
|
|
2424
2702
|
idle: "idle";
|
|
2425
2703
|
landed: "landed";
|
|
2704
|
+
ready: "ready";
|
|
2426
2705
|
}>;
|
|
2427
2706
|
repos: z.ZodArray<z.ZodObject<{
|
|
2428
2707
|
repo: z.ZodString;
|
|
@@ -2493,6 +2772,13 @@ export declare const AutomationApprovalSchema: z.ZodObject<{
|
|
|
2493
2772
|
id: z.ZodString;
|
|
2494
2773
|
automationId: z.ZodString;
|
|
2495
2774
|
payload: z.ZodOptional<z.ZodString>;
|
|
2775
|
+
origin: z.ZodOptional<z.ZodObject<{
|
|
2776
|
+
automationId: z.ZodString;
|
|
2777
|
+
provider: z.ZodString;
|
|
2778
|
+
channelId: z.ZodOptional<z.ZodString>;
|
|
2779
|
+
author: z.ZodOptional<z.ZodString>;
|
|
2780
|
+
}, z.core.$strip>>;
|
|
2781
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2496
2782
|
createdAt: z.ZodNumber;
|
|
2497
2783
|
}, z.core.$strip>;
|
|
2498
2784
|
export type AutomationApproval = z.infer<typeof AutomationApprovalSchema>;
|
|
@@ -2501,6 +2787,13 @@ export declare const AutomationApprovalsListSchema: z.ZodObject<{
|
|
|
2501
2787
|
id: z.ZodString;
|
|
2502
2788
|
automationId: z.ZodString;
|
|
2503
2789
|
payload: z.ZodOptional<z.ZodString>;
|
|
2790
|
+
origin: z.ZodOptional<z.ZodObject<{
|
|
2791
|
+
automationId: z.ZodString;
|
|
2792
|
+
provider: z.ZodString;
|
|
2793
|
+
channelId: z.ZodOptional<z.ZodString>;
|
|
2794
|
+
author: z.ZodOptional<z.ZodString>;
|
|
2795
|
+
}, z.core.$strip>>;
|
|
2796
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2504
2797
|
createdAt: z.ZodNumber;
|
|
2505
2798
|
}, z.core.$strip>>;
|
|
2506
2799
|
}, z.core.$strip>;
|
|
@@ -2702,6 +2995,7 @@ export declare const PanelSummarySchema: z.ZodObject<{
|
|
|
2702
2995
|
directoryUi: z.ZodBoolean;
|
|
2703
2996
|
monorepo: z.ZodBoolean;
|
|
2704
2997
|
vitest: z.ZodBoolean;
|
|
2998
|
+
userStories: z.ZodBoolean;
|
|
2705
2999
|
}, z.core.$strip>;
|
|
2706
3000
|
export type PanelSummary = z.infer<typeof PanelSummarySchema>;
|
|
2707
3001
|
export declare const PanelsListSchema: z.ZodObject<{
|
|
@@ -2722,6 +3016,7 @@ export declare const PanelsListSchema: z.ZodObject<{
|
|
|
2722
3016
|
directoryUi: z.ZodBoolean;
|
|
2723
3017
|
monorepo: z.ZodBoolean;
|
|
2724
3018
|
vitest: z.ZodBoolean;
|
|
3019
|
+
userStories: z.ZodBoolean;
|
|
2725
3020
|
}, z.core.$strip>>;
|
|
2726
3021
|
}, z.core.$strip>;
|
|
2727
3022
|
export type PanelsList = z.infer<typeof PanelsListSchema>;
|
|
@@ -2784,6 +3079,8 @@ export declare const TerminalSessionSchema: z.ZodObject<{
|
|
|
2784
3079
|
shell: "shell";
|
|
2785
3080
|
}>;
|
|
2786
3081
|
running: z.ZodBoolean;
|
|
3082
|
+
activityAt: z.ZodNumber;
|
|
3083
|
+
exitCode: z.ZodOptional<z.ZodNumber>;
|
|
2787
3084
|
extensionId: z.ZodOptional<z.ZodString>;
|
|
2788
3085
|
processName: z.ZodOptional<z.ZodString>;
|
|
2789
3086
|
}, z.core.$strip>;
|
|
@@ -2799,6 +3096,8 @@ export declare const TerminalsListSchema: z.ZodObject<{
|
|
|
2799
3096
|
shell: "shell";
|
|
2800
3097
|
}>;
|
|
2801
3098
|
running: z.ZodBoolean;
|
|
3099
|
+
activityAt: z.ZodNumber;
|
|
3100
|
+
exitCode: z.ZodOptional<z.ZodNumber>;
|
|
2802
3101
|
extensionId: z.ZodOptional<z.ZodString>;
|
|
2803
3102
|
processName: z.ZodOptional<z.ZodString>;
|
|
2804
3103
|
}, z.core.$strip>>;
|
|
@@ -2900,6 +3199,12 @@ export declare const InfoSchema: z.ZodObject<{
|
|
|
2900
3199
|
latest: z.ZodOptional<z.ZodString>;
|
|
2901
3200
|
updateAvailable: z.ZodOptional<z.ZodBoolean>;
|
|
2902
3201
|
}, z.core.$strip>;
|
|
3202
|
+
export declare const DaemonSessionSchema: z.ZodObject<{
|
|
3203
|
+
token: z.ZodString;
|
|
3204
|
+
expiresAt: z.ZodNumber;
|
|
3205
|
+
email: z.ZodString;
|
|
3206
|
+
}, z.core.$strip>;
|
|
3207
|
+
export type DaemonSession = z.infer<typeof DaemonSessionSchema>;
|
|
2903
3208
|
export declare const HostTunnelInputSchema: z.ZodObject<{
|
|
2904
3209
|
hostName: z.ZodString;
|
|
2905
3210
|
}, z.core.$strip>;
|
|
@@ -3099,6 +3404,38 @@ export declare const LogReadSchema: z.ZodObject<{
|
|
|
3099
3404
|
truncated: z.ZodBoolean;
|
|
3100
3405
|
}, z.core.$strip>;
|
|
3101
3406
|
export type LogRead = z.infer<typeof LogReadSchema>;
|
|
3407
|
+
export declare const MemoryFileEntrySchema: z.ZodObject<{
|
|
3408
|
+
project: z.ZodString;
|
|
3409
|
+
name: z.ZodString;
|
|
3410
|
+
sizeBytes: z.ZodNumber;
|
|
3411
|
+
modifiedAt: z.ZodNumber;
|
|
3412
|
+
}, z.core.$strip>;
|
|
3413
|
+
export type MemoryFileEntry = z.infer<typeof MemoryFileEntrySchema>;
|
|
3414
|
+
export declare const MemoryListSchema: z.ZodObject<{
|
|
3415
|
+
files: z.ZodArray<z.ZodObject<{
|
|
3416
|
+
project: z.ZodString;
|
|
3417
|
+
name: z.ZodString;
|
|
3418
|
+
sizeBytes: z.ZodNumber;
|
|
3419
|
+
modifiedAt: z.ZodNumber;
|
|
3420
|
+
}, z.core.$strip>>;
|
|
3421
|
+
}, z.core.$strip>;
|
|
3422
|
+
export declare const MemoryFileQuerySchema: z.ZodObject<{
|
|
3423
|
+
project: z.ZodString;
|
|
3424
|
+
name: z.ZodString;
|
|
3425
|
+
}, z.core.$strip>;
|
|
3426
|
+
export declare const MemoryFileSchema: z.ZodObject<{
|
|
3427
|
+
project: z.ZodString;
|
|
3428
|
+
name: z.ZodString;
|
|
3429
|
+
content: z.ZodString;
|
|
3430
|
+
sizeBytes: z.ZodNumber;
|
|
3431
|
+
modifiedAt: z.ZodNumber;
|
|
3432
|
+
}, z.core.$strip>;
|
|
3433
|
+
export type MemoryFile = z.infer<typeof MemoryFileSchema>;
|
|
3434
|
+
export declare const MemoryWriteSchema: z.ZodObject<{
|
|
3435
|
+
project: z.ZodString;
|
|
3436
|
+
name: z.ZodString;
|
|
3437
|
+
content: z.ZodString;
|
|
3438
|
+
}, z.core.$strip>;
|
|
3102
3439
|
export declare const PresenceReportSchema: z.ZodObject<{
|
|
3103
3440
|
clientId: z.ZodString;
|
|
3104
3441
|
idle: z.ZodBoolean;
|
|
@@ -3133,4 +3470,8 @@ export declare const PushEndpointSchema: z.ZodObject<{
|
|
|
3133
3470
|
export declare const PushConfigQuerySchema: z.ZodObject<{
|
|
3134
3471
|
endpoint: z.ZodOptional<z.ZodString>;
|
|
3135
3472
|
}, z.core.$strip>;
|
|
3473
|
+
export declare const PushTestSchema: z.ZodObject<{
|
|
3474
|
+
delivered: z.ZodNumber;
|
|
3475
|
+
}, z.core.$strip>;
|
|
3476
|
+
export type PushTest = z.infer<typeof PushTestSchema>;
|
|
3136
3477
|
//# sourceMappingURL=schemas.d.ts.map
|