@otto-code/protocol 0.6.6 → 0.7.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-labels.d.ts +26 -0
- package/dist/agent-labels.js +82 -0
- package/dist/agent-types.d.ts +55 -0
- package/dist/agent-types.js +14 -0
- package/dist/browser-automation/capabilities.d.ts +1 -1
- package/dist/browser-automation/rpc-schemas.d.ts +1 -1
- package/dist/generated/validation/ws-outbound.aot.js +39721 -31424
- package/dist/git-hosting.d.ts +2 -0
- package/dist/git-hosting.js +6 -0
- package/dist/messages.d.ts +10543 -1185
- package/dist/messages.js +2013 -8
- package/dist/model-tiers.js +2 -0
- package/dist/orchestration.d.ts +271 -1
- package/dist/orchestration.js +434 -0
- package/dist/provider-config.d.ts +3 -1
- package/dist/provider-config.js +3 -0
- package/dist/validation/ws-outbound-schema-metadata.d.ts +1852 -216
- package/dist/widgets/bridge.d.ts +59 -0
- package/dist/widgets/bridge.js +87 -0
- package/dist/widgets/document.d.ts +18 -0
- package/dist/widgets/document.js +261 -0
- package/dist/widgets/icons.d.ts +20 -0
- package/dist/widgets/icons.js +90 -0
- package/dist/widgets/theme.d.ts +37 -0
- package/dist/widgets/theme.js +149 -0
- package/dist/widgets/types.d.ts +78 -0
- package/dist/widgets/types.js +88 -0
- package/package.json +1 -1
|
@@ -418,6 +418,26 @@ export declare const WSOutboundMessageSchema: {
|
|
|
418
418
|
runtimeInfo: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentRuntimeInfo, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentRuntimeInfo, unknown>>>;
|
|
419
419
|
lastUsage: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentUsage, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentUsage, unknown>>>;
|
|
420
420
|
cumulativeTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
421
|
+
cumulativeUsage: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
422
|
+
inputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
423
|
+
cachedInputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
424
|
+
cacheCreationInputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
425
|
+
outputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
426
|
+
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
427
|
+
costCoverage: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
428
|
+
none: "none";
|
|
429
|
+
complete: "complete";
|
|
430
|
+
partial: "partial";
|
|
431
|
+
}>>;
|
|
432
|
+
}, import("zod/v4/core").$strip>>;
|
|
433
|
+
toolUseCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
434
|
+
currentTool: import("zod").ZodOptional<import("zod").ZodString>;
|
|
435
|
+
queuedMessages: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
436
|
+
id: import("zod").ZodString;
|
|
437
|
+
preview: import("zod").ZodString;
|
|
438
|
+
enqueuedAt: import("zod").ZodString;
|
|
439
|
+
attachmentCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
440
|
+
}, import("zod/v4/core").$strip>>>;
|
|
421
441
|
lastError: import("zod").ZodOptional<import("zod").ZodString>;
|
|
422
442
|
title: import("zod").ZodNullable<import("zod").ZodString>;
|
|
423
443
|
labels: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
@@ -1178,6 +1198,26 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1178
1198
|
runtimeInfo: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentRuntimeInfo, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentRuntimeInfo, unknown>>>;
|
|
1179
1199
|
lastUsage: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentUsage, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentUsage, unknown>>>;
|
|
1180
1200
|
cumulativeTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1201
|
+
cumulativeUsage: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1202
|
+
inputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1203
|
+
cachedInputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1204
|
+
cacheCreationInputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1205
|
+
outputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1206
|
+
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1207
|
+
costCoverage: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
1208
|
+
none: "none";
|
|
1209
|
+
complete: "complete";
|
|
1210
|
+
partial: "partial";
|
|
1211
|
+
}>>;
|
|
1212
|
+
}, import("zod/v4/core").$strip>>;
|
|
1213
|
+
toolUseCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1214
|
+
currentTool: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1215
|
+
queuedMessages: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
1216
|
+
id: import("zod").ZodString;
|
|
1217
|
+
preview: import("zod").ZodString;
|
|
1218
|
+
enqueuedAt: import("zod").ZodString;
|
|
1219
|
+
attachmentCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1220
|
+
}, import("zod/v4/core").$strip>>>;
|
|
1181
1221
|
lastError: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1182
1222
|
title: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1183
1223
|
labels: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
@@ -1258,6 +1298,26 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1258
1298
|
runtimeInfo: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentRuntimeInfo, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentRuntimeInfo, unknown>>>;
|
|
1259
1299
|
lastUsage: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentUsage, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentUsage, unknown>>>;
|
|
1260
1300
|
cumulativeTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1301
|
+
cumulativeUsage: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1302
|
+
inputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1303
|
+
cachedInputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1304
|
+
cacheCreationInputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1305
|
+
outputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1306
|
+
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1307
|
+
costCoverage: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
1308
|
+
none: "none";
|
|
1309
|
+
complete: "complete";
|
|
1310
|
+
partial: "partial";
|
|
1311
|
+
}>>;
|
|
1312
|
+
}, import("zod/v4/core").$strip>>;
|
|
1313
|
+
toolUseCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1314
|
+
currentTool: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1315
|
+
queuedMessages: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
1316
|
+
id: import("zod").ZodString;
|
|
1317
|
+
preview: import("zod").ZodString;
|
|
1318
|
+
enqueuedAt: import("zod").ZodString;
|
|
1319
|
+
attachmentCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1320
|
+
}, import("zod/v4/core").$strip>>>;
|
|
1261
1321
|
lastError: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1262
1322
|
title: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1263
1323
|
labels: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
@@ -1421,6 +1481,26 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1421
1481
|
runtimeInfo: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentRuntimeInfo, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentRuntimeInfo, unknown>>>;
|
|
1422
1482
|
lastUsage: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentUsage, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentUsage, unknown>>>;
|
|
1423
1483
|
cumulativeTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1484
|
+
cumulativeUsage: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1485
|
+
inputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1486
|
+
cachedInputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1487
|
+
cacheCreationInputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1488
|
+
outputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1489
|
+
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1490
|
+
costCoverage: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
1491
|
+
none: "none";
|
|
1492
|
+
complete: "complete";
|
|
1493
|
+
partial: "partial";
|
|
1494
|
+
}>>;
|
|
1495
|
+
}, import("zod/v4/core").$strip>>;
|
|
1496
|
+
toolUseCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1497
|
+
currentTool: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1498
|
+
queuedMessages: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
1499
|
+
id: import("zod").ZodString;
|
|
1500
|
+
preview: import("zod").ZodString;
|
|
1501
|
+
enqueuedAt: import("zod").ZodString;
|
|
1502
|
+
attachmentCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1503
|
+
}, import("zod/v4/core").$strip>>>;
|
|
1424
1504
|
lastError: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1425
1505
|
title: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1426
1506
|
labels: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
@@ -1991,6 +2071,59 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1991
2071
|
directory_not_found: "directory_not_found";
|
|
1992
2072
|
}>>>>;
|
|
1993
2073
|
}, import("zod/v4/core").$strip>;
|
|
2074
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2075
|
+
type: import("zod").ZodLiteral<"project.scaffold.response">;
|
|
2076
|
+
payload: import("zod").ZodObject<{
|
|
2077
|
+
requestId: import("zod").ZodString;
|
|
2078
|
+
project: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2079
|
+
projectId: import("zod").ZodString;
|
|
2080
|
+
projectDisplayName: import("zod").ZodString;
|
|
2081
|
+
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2082
|
+
projectRootPath: import("zod").ZodString;
|
|
2083
|
+
projectKind: import("zod").ZodEnum<{
|
|
2084
|
+
git: "git";
|
|
2085
|
+
directory: "directory";
|
|
2086
|
+
non_git: "non_git";
|
|
2087
|
+
}>;
|
|
2088
|
+
}, import("zod/v4/core").$strip>>;
|
|
2089
|
+
path: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2090
|
+
remoteUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2091
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2092
|
+
errorCode: import("zod").ZodCatch<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
2093
|
+
parent_not_found: "parent_not_found";
|
|
2094
|
+
invalid_name: "invalid_name";
|
|
2095
|
+
already_exists: "already_exists";
|
|
2096
|
+
git_unavailable: "git_unavailable";
|
|
2097
|
+
git_failed: "git_failed";
|
|
2098
|
+
provider_unavailable: "provider_unavailable";
|
|
2099
|
+
remote_failed: "remote_failed";
|
|
2100
|
+
clone_failed: "clone_failed";
|
|
2101
|
+
register_failed: "register_failed";
|
|
2102
|
+
}>>>>;
|
|
2103
|
+
steps: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2104
|
+
id: import("zod").ZodString;
|
|
2105
|
+
status: import("zod").ZodEnum<{
|
|
2106
|
+
running: "running";
|
|
2107
|
+
done: "done";
|
|
2108
|
+
failed: "failed";
|
|
2109
|
+
skipped: "skipped";
|
|
2110
|
+
}>;
|
|
2111
|
+
detail: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2112
|
+
}, import("zod/v4/core").$strip>>;
|
|
2113
|
+
}, import("zod/v4/core").$strip>;
|
|
2114
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2115
|
+
type: import("zod").ZodLiteral<"project.scaffold.progress">;
|
|
2116
|
+
payload: import("zod").ZodObject<{
|
|
2117
|
+
requestId: import("zod").ZodString;
|
|
2118
|
+
step: import("zod").ZodString;
|
|
2119
|
+
status: import("zod").ZodEnum<{
|
|
2120
|
+
running: "running";
|
|
2121
|
+
done: "done";
|
|
2122
|
+
failed: "failed";
|
|
2123
|
+
skipped: "skipped";
|
|
2124
|
+
}>;
|
|
2125
|
+
detail: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2126
|
+
}, import("zod/v4/core").$strip>;
|
|
1994
2127
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1995
2128
|
type: import("zod").ZodLiteral<"open_project_response">;
|
|
1996
2129
|
payload: import("zod").ZodObject<{
|
|
@@ -2436,206 +2569,682 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2436
2569
|
workspaceId: import("zod").ZodString;
|
|
2437
2570
|
archivedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2438
2571
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2572
|
+
deletedBranch: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2439
2573
|
}, import("zod/v4/core").$strip>;
|
|
2440
2574
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2441
|
-
type: import("zod").ZodLiteral<"
|
|
2575
|
+
type: import("zod").ZodLiteral<"workspace.archive.preflight.response">;
|
|
2442
2576
|
payload: import("zod").ZodObject<{
|
|
2443
2577
|
requestId: import("zod").ZodString;
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
|
|
2453
|
-
label: import("zod").ZodString;
|
|
2454
|
-
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2455
|
-
tooltip: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2456
|
-
icon: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2457
|
-
value: import("zod").ZodBoolean;
|
|
2458
|
-
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2459
|
-
type: import("zod").ZodLiteral<"select">;
|
|
2460
|
-
id: import("zod").ZodString;
|
|
2461
|
-
label: import("zod").ZodString;
|
|
2462
|
-
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2463
|
-
tooltip: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2464
|
-
icon: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2465
|
-
value: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2466
|
-
options: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2467
|
-
id: import("zod").ZodString;
|
|
2468
|
-
label: import("zod").ZodString;
|
|
2469
|
-
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2470
|
-
isDefault: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2471
|
-
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
2472
|
-
}, import("zod/v4/core").$strip>>;
|
|
2473
|
-
}, import("zod/v4/core").$strip>], "type">>>;
|
|
2474
|
-
thinkingOptionId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2475
|
-
effectiveThinkingOptionId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2476
|
-
createdAt: import("zod").ZodString;
|
|
2477
|
-
updatedAt: import("zod").ZodString;
|
|
2478
|
-
lastUserMessageAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2479
|
-
status: import("zod").ZodEnum<{
|
|
2480
|
-
error: "error";
|
|
2481
|
-
initializing: "initializing";
|
|
2482
|
-
idle: "idle";
|
|
2483
|
-
running: "running";
|
|
2484
|
-
closed: "closed";
|
|
2578
|
+
workspaceId: import("zod").ZodString;
|
|
2579
|
+
detection: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2580
|
+
isOttoWorktree: import("zod").ZodBoolean;
|
|
2581
|
+
branchName: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2582
|
+
baseBranch: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2583
|
+
mergeState: import("zod").ZodEnum<{
|
|
2584
|
+
unknown: "unknown";
|
|
2585
|
+
merged: "merged";
|
|
2586
|
+
unmerged: "unmerged";
|
|
2485
2587
|
}>;
|
|
2486
|
-
|
|
2487
|
-
|
|
2488
|
-
|
|
2489
|
-
|
|
2490
|
-
persistence: import("zod").ZodNullable<import("zod").ZodType<import("../agent-types.js").AgentPersistenceHandle | null, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentPersistenceHandle | null, unknown>>>;
|
|
2491
|
-
runtimeInfo: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentRuntimeInfo, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentRuntimeInfo, unknown>>>;
|
|
2492
|
-
lastUsage: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentUsage, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentUsage, unknown>>>;
|
|
2493
|
-
cumulativeTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2494
|
-
lastError: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2495
|
-
title: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2496
|
-
labels: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
2497
|
-
requiresAttention: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2498
|
-
attentionReason: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
2499
|
-
finished: "finished";
|
|
2500
|
-
error: "error";
|
|
2501
|
-
permission: "permission";
|
|
2502
|
-
}>>>;
|
|
2503
|
-
attentionTimestamp: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2504
|
-
archivedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2505
|
-
providerUnavailable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2506
|
-
attend: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
2507
|
-
attended: "attended";
|
|
2508
|
-
observed: "observed";
|
|
2509
|
-
}>>;
|
|
2510
|
-
personalitySpinner: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
2511
|
-
glowA: import("zod").ZodString;
|
|
2512
|
-
glowB: import("zod").ZodString;
|
|
2513
|
-
}, import("zod/v4/core").$loose>>;
|
|
2514
|
-
personalityName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2515
|
-
personalityId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2588
|
+
unmergedCommitCount: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
2589
|
+
hasRemoteBranch: import("zod").ZodBoolean;
|
|
2590
|
+
branchCheckedOutElsewhere: import("zod").ZodBoolean;
|
|
2591
|
+
directoryWillBeRemoved: import("zod").ZodBoolean;
|
|
2516
2592
|
}, import("zod/v4/core").$strip>>;
|
|
2517
|
-
project: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2518
|
-
projectKey: import("zod").ZodString;
|
|
2519
|
-
projectName: import("zod").ZodString;
|
|
2520
|
-
workspaceName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2521
|
-
checkout: import("zod").ZodUnion<readonly [import("zod").ZodPipe<import("zod").ZodObject<{
|
|
2522
|
-
cwd: import("zod").ZodString;
|
|
2523
|
-
isGit: import("zod").ZodLiteral<false>;
|
|
2524
|
-
currentBranch: import("zod").ZodNull;
|
|
2525
|
-
remoteUrl: import("zod").ZodNull;
|
|
2526
|
-
worktreeRoot: import("zod").ZodOptional<import("zod").ZodNull>;
|
|
2527
|
-
isOttoOwnedWorktree: import("zod").ZodLiteral<false>;
|
|
2528
|
-
mainRepoRoot: import("zod").ZodNull;
|
|
2529
|
-
}, import("zod/v4/core").$strip>, import("zod").ZodTransform<{
|
|
2530
|
-
worktreeRoot: null;
|
|
2531
|
-
cwd: string;
|
|
2532
|
-
isGit: false;
|
|
2533
|
-
currentBranch: null;
|
|
2534
|
-
remoteUrl: null;
|
|
2535
|
-
isOttoOwnedWorktree: false;
|
|
2536
|
-
mainRepoRoot: null;
|
|
2537
|
-
}, {
|
|
2538
|
-
cwd: string;
|
|
2539
|
-
isGit: false;
|
|
2540
|
-
currentBranch: null;
|
|
2541
|
-
remoteUrl: null;
|
|
2542
|
-
isOttoOwnedWorktree: false;
|
|
2543
|
-
mainRepoRoot: null;
|
|
2544
|
-
worktreeRoot?: null | undefined;
|
|
2545
|
-
}>>, import("zod").ZodPipe<import("zod").ZodObject<{
|
|
2546
|
-
cwd: import("zod").ZodString;
|
|
2547
|
-
isGit: import("zod").ZodLiteral<true>;
|
|
2548
|
-
currentBranch: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2549
|
-
remoteUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2550
|
-
worktreeRoot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2551
|
-
isOttoOwnedWorktree: import("zod").ZodLiteral<false>;
|
|
2552
|
-
mainRepoRoot: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
2553
|
-
}, import("zod/v4/core").$strip>, import("zod").ZodTransform<{
|
|
2554
|
-
worktreeRoot: string;
|
|
2555
|
-
cwd: string;
|
|
2556
|
-
isGit: true;
|
|
2557
|
-
currentBranch: string | null;
|
|
2558
|
-
remoteUrl: string | null;
|
|
2559
|
-
isOttoOwnedWorktree: false;
|
|
2560
|
-
mainRepoRoot: string | null;
|
|
2561
|
-
}, {
|
|
2562
|
-
cwd: string;
|
|
2563
|
-
isGit: true;
|
|
2564
|
-
currentBranch: string | null;
|
|
2565
|
-
remoteUrl: string | null;
|
|
2566
|
-
isOttoOwnedWorktree: false;
|
|
2567
|
-
mainRepoRoot: string | null;
|
|
2568
|
-
worktreeRoot?: string | undefined;
|
|
2569
|
-
}>>, import("zod").ZodPipe<import("zod").ZodObject<{
|
|
2570
|
-
cwd: import("zod").ZodString;
|
|
2571
|
-
isGit: import("zod").ZodLiteral<true>;
|
|
2572
|
-
currentBranch: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2573
|
-
remoteUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2574
|
-
worktreeRoot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2575
|
-
isOttoOwnedWorktree: import("zod").ZodLiteral<true>;
|
|
2576
|
-
mainRepoRoot: import("zod").ZodString;
|
|
2577
|
-
}, import("zod/v4/core").$strip>, import("zod").ZodTransform<{
|
|
2578
|
-
worktreeRoot: string;
|
|
2579
|
-
cwd: string;
|
|
2580
|
-
isGit: true;
|
|
2581
|
-
currentBranch: string | null;
|
|
2582
|
-
remoteUrl: string | null;
|
|
2583
|
-
isOttoOwnedWorktree: true;
|
|
2584
|
-
mainRepoRoot: string;
|
|
2585
|
-
}, {
|
|
2586
|
-
cwd: string;
|
|
2587
|
-
isGit: true;
|
|
2588
|
-
currentBranch: string | null;
|
|
2589
|
-
remoteUrl: string | null;
|
|
2590
|
-
isOttoOwnedWorktree: true;
|
|
2591
|
-
mainRepoRoot: string;
|
|
2592
|
-
worktreeRoot?: string | undefined;
|
|
2593
|
-
}>>]>;
|
|
2594
|
-
}, import("zod/v4/core").$strip>>>;
|
|
2595
2593
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2596
2594
|
}, import("zod/v4/core").$strip>;
|
|
2597
2595
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2598
|
-
type: import("zod").ZodLiteral<"
|
|
2596
|
+
type: import("zod").ZodLiteral<"worktree.baseRef.set.response">;
|
|
2599
2597
|
payload: import("zod").ZodObject<{
|
|
2600
2598
|
requestId: import("zod").ZodString;
|
|
2601
|
-
|
|
2602
|
-
|
|
2599
|
+
workspaceId: import("zod").ZodString;
|
|
2600
|
+
baseRef: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2601
|
+
isDefault: import("zod").ZodBoolean;
|
|
2602
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2603
|
+
}, import("zod/v4/core").$strip>;
|
|
2604
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2605
|
+
type: import("zod").ZodLiteral<"worktree.reattach.list.response">;
|
|
2606
|
+
payload: import("zod").ZodObject<{
|
|
2607
|
+
requestId: import("zod").ZodString;
|
|
2608
|
+
candidates: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2609
|
+
workspaceId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2610
|
+
worktreePath: import("zod").ZodString;
|
|
2611
|
+
branchName: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2612
|
+
baseBranch: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2613
|
+
directoryOnDisk: import("zod").ZodBoolean;
|
|
2614
|
+
displayName: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2615
|
+
archivedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2616
|
+
}, import("zod/v4/core").$strip>>;
|
|
2617
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2618
|
+
}, import("zod/v4/core").$strip>;
|
|
2619
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2620
|
+
type: import("zod").ZodLiteral<"worktree.reattach.response">;
|
|
2621
|
+
payload: import("zod").ZodObject<{
|
|
2622
|
+
requestId: import("zod").ZodString;
|
|
2623
|
+
workspace: import("zod").ZodNullable<import("zod").ZodPipe<import("zod").ZodObject<{
|
|
2603
2624
|
id: import("zod").ZodString;
|
|
2604
|
-
|
|
2605
|
-
|
|
2606
|
-
|
|
2607
|
-
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
|
|
2613
|
-
|
|
2614
|
-
|
|
2615
|
-
|
|
2616
|
-
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
|
|
2620
|
-
|
|
2621
|
-
|
|
2622
|
-
|
|
2623
|
-
|
|
2624
|
-
|
|
2625
|
-
|
|
2626
|
-
|
|
2627
|
-
|
|
2628
|
-
|
|
2629
|
-
|
|
2630
|
-
|
|
2631
|
-
|
|
2632
|
-
|
|
2633
|
-
|
|
2634
|
-
|
|
2635
|
-
|
|
2636
|
-
|
|
2637
|
-
|
|
2638
|
-
|
|
2625
|
+
projectId: import("zod").ZodString;
|
|
2626
|
+
projectDisplayName: import("zod").ZodString;
|
|
2627
|
+
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2628
|
+
projectRootPath: import("zod").ZodString;
|
|
2629
|
+
workspaceDirectory: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2630
|
+
projectKind: import("zod").ZodEnum<{
|
|
2631
|
+
git: "git";
|
|
2632
|
+
directory: "directory";
|
|
2633
|
+
non_git: "non_git";
|
|
2634
|
+
}>;
|
|
2635
|
+
workspaceKind: import("zod").ZodEnum<{
|
|
2636
|
+
worktree: "worktree";
|
|
2637
|
+
checkout: "checkout";
|
|
2638
|
+
directory: "directory";
|
|
2639
|
+
local_checkout: "local_checkout";
|
|
2640
|
+
}>;
|
|
2641
|
+
name: import("zod").ZodString;
|
|
2642
|
+
title: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2643
|
+
archivingAt: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
2644
|
+
status: import("zod").ZodEnum<{
|
|
2645
|
+
running: "running";
|
|
2646
|
+
attention: "attention";
|
|
2647
|
+
needs_input: "needs_input";
|
|
2648
|
+
done: "done";
|
|
2649
|
+
failed: "failed";
|
|
2650
|
+
}>;
|
|
2651
|
+
statusEnteredAt: import("zod").ZodPipe<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>, import("zod").ZodTransform<string | null, string | null | undefined>>;
|
|
2652
|
+
activityAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2653
|
+
diffStat: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2654
|
+
additions: import("zod").ZodNumber;
|
|
2655
|
+
deletions: import("zod").ZodNumber;
|
|
2656
|
+
}, import("zod/v4/core").$strip>>>;
|
|
2657
|
+
scripts: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
2658
|
+
scriptName: import("zod").ZodString;
|
|
2659
|
+
type: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
2660
|
+
script: "script";
|
|
2661
|
+
service: "service";
|
|
2662
|
+
}>>>;
|
|
2663
|
+
hostname: import("zod").ZodString;
|
|
2664
|
+
port: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
2665
|
+
localProxyUrl: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2666
|
+
publicProxyUrl: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2667
|
+
proxyUrl: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
2668
|
+
lifecycle: import("zod").ZodEnum<{
|
|
2669
|
+
running: "running";
|
|
2670
|
+
stopped: "stopped";
|
|
2671
|
+
}>;
|
|
2672
|
+
health: import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
2673
|
+
healthy: "healthy";
|
|
2674
|
+
unhealthy: "unhealthy";
|
|
2675
|
+
}>>;
|
|
2676
|
+
exitCode: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>>;
|
|
2677
|
+
terminalId: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
2678
|
+
}, import("zod/v4/core").$strip>>>;
|
|
2679
|
+
gitRuntime: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
2680
|
+
currentBranch: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2681
|
+
remoteUrl: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2682
|
+
isOttoOwnedWorktree: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2683
|
+
isDirty: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
|
2684
|
+
aheadBehind: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2685
|
+
ahead: import("zod").ZodNumber;
|
|
2686
|
+
behind: import("zod").ZodNumber;
|
|
2687
|
+
}, import("zod/v4/core").$strip>>>;
|
|
2688
|
+
aheadOfOrigin: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2689
|
+
behindOfOrigin: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
2690
|
+
}, import("zod/v4/core").$strip>>>;
|
|
2691
|
+
githubRuntime: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
|
2692
|
+
featuresEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2693
|
+
pullRequest: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2694
|
+
number: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2695
|
+
url: import("zod").ZodString;
|
|
2696
|
+
title: import("zod").ZodString;
|
|
2697
|
+
state: import("zod").ZodString;
|
|
2698
|
+
baseRefName: import("zod").ZodString;
|
|
2699
|
+
headRefName: import("zod").ZodString;
|
|
2700
|
+
isMerged: import("zod").ZodBoolean;
|
|
2701
|
+
isDraft: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2702
|
+
mergeable: import("zod").ZodOptional<import("zod").ZodCatch<import("zod").ZodEnum<{
|
|
2703
|
+
UNKNOWN: "UNKNOWN";
|
|
2704
|
+
MERGEABLE: "MERGEABLE";
|
|
2705
|
+
CONFLICTING: "CONFLICTING";
|
|
2706
|
+
}>>>;
|
|
2707
|
+
checks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
2708
|
+
name: import("zod").ZodString;
|
|
2709
|
+
status: import("zod").ZodEnum<{
|
|
2710
|
+
success: "success";
|
|
2711
|
+
pending: "pending";
|
|
2712
|
+
skipped: "skipped";
|
|
2713
|
+
failure: "failure";
|
|
2714
|
+
cancelled: "cancelled";
|
|
2715
|
+
}>;
|
|
2716
|
+
url: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2717
|
+
workflow: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2718
|
+
duration: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2719
|
+
}, import("zod/v4/core").$strip>>>;
|
|
2720
|
+
checksStatus: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
2721
|
+
success: "success";
|
|
2722
|
+
pending: "pending";
|
|
2723
|
+
none: "none";
|
|
2724
|
+
failure: "failure";
|
|
2725
|
+
}>>;
|
|
2726
|
+
reviewDecision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
2727
|
+
pending: "pending";
|
|
2728
|
+
approved: "approved";
|
|
2729
|
+
changes_requested: "changes_requested";
|
|
2730
|
+
}>>>;
|
|
2731
|
+
repoOwner: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2732
|
+
repoName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2733
|
+
github: import("zod").ZodOptional<import("zod").ZodUnknown>;
|
|
2734
|
+
}, import("zod/v4/core").$strip>>>;
|
|
2735
|
+
error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2736
|
+
message: import("zod").ZodString;
|
|
2737
|
+
}, import("zod/v4/core").$strip>>>;
|
|
2738
|
+
refreshedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2739
|
+
}, import("zod/v4/core").$strip>>>;
|
|
2740
|
+
project: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
2741
|
+
projectKey: import("zod").ZodString;
|
|
2742
|
+
projectName: import("zod").ZodString;
|
|
2743
|
+
workspaceName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2744
|
+
checkout: import("zod").ZodUnion<readonly [import("zod").ZodPipe<import("zod").ZodObject<{
|
|
2745
|
+
cwd: import("zod").ZodString;
|
|
2746
|
+
isGit: import("zod").ZodLiteral<false>;
|
|
2747
|
+
currentBranch: import("zod").ZodNull;
|
|
2748
|
+
remoteUrl: import("zod").ZodNull;
|
|
2749
|
+
worktreeRoot: import("zod").ZodOptional<import("zod").ZodNull>;
|
|
2750
|
+
isOttoOwnedWorktree: import("zod").ZodLiteral<false>;
|
|
2751
|
+
mainRepoRoot: import("zod").ZodNull;
|
|
2752
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodTransform<{
|
|
2753
|
+
worktreeRoot: null;
|
|
2754
|
+
cwd: string;
|
|
2755
|
+
isGit: false;
|
|
2756
|
+
currentBranch: null;
|
|
2757
|
+
remoteUrl: null;
|
|
2758
|
+
isOttoOwnedWorktree: false;
|
|
2759
|
+
mainRepoRoot: null;
|
|
2760
|
+
}, {
|
|
2761
|
+
cwd: string;
|
|
2762
|
+
isGit: false;
|
|
2763
|
+
currentBranch: null;
|
|
2764
|
+
remoteUrl: null;
|
|
2765
|
+
isOttoOwnedWorktree: false;
|
|
2766
|
+
mainRepoRoot: null;
|
|
2767
|
+
worktreeRoot?: null | undefined;
|
|
2768
|
+
}>>, import("zod").ZodPipe<import("zod").ZodObject<{
|
|
2769
|
+
cwd: import("zod").ZodString;
|
|
2770
|
+
isGit: import("zod").ZodLiteral<true>;
|
|
2771
|
+
currentBranch: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2772
|
+
remoteUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2773
|
+
worktreeRoot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2774
|
+
isOttoOwnedWorktree: import("zod").ZodLiteral<false>;
|
|
2775
|
+
mainRepoRoot: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
2776
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodTransform<{
|
|
2777
|
+
worktreeRoot: string;
|
|
2778
|
+
cwd: string;
|
|
2779
|
+
isGit: true;
|
|
2780
|
+
currentBranch: string | null;
|
|
2781
|
+
remoteUrl: string | null;
|
|
2782
|
+
isOttoOwnedWorktree: false;
|
|
2783
|
+
mainRepoRoot: string | null;
|
|
2784
|
+
}, {
|
|
2785
|
+
cwd: string;
|
|
2786
|
+
isGit: true;
|
|
2787
|
+
currentBranch: string | null;
|
|
2788
|
+
remoteUrl: string | null;
|
|
2789
|
+
isOttoOwnedWorktree: false;
|
|
2790
|
+
mainRepoRoot: string | null;
|
|
2791
|
+
worktreeRoot?: string | undefined;
|
|
2792
|
+
}>>, import("zod").ZodPipe<import("zod").ZodObject<{
|
|
2793
|
+
cwd: import("zod").ZodString;
|
|
2794
|
+
isGit: import("zod").ZodLiteral<true>;
|
|
2795
|
+
currentBranch: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2796
|
+
remoteUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2797
|
+
worktreeRoot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2798
|
+
isOttoOwnedWorktree: import("zod").ZodLiteral<true>;
|
|
2799
|
+
mainRepoRoot: import("zod").ZodString;
|
|
2800
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodTransform<{
|
|
2801
|
+
worktreeRoot: string;
|
|
2802
|
+
cwd: string;
|
|
2803
|
+
isGit: true;
|
|
2804
|
+
currentBranch: string | null;
|
|
2805
|
+
remoteUrl: string | null;
|
|
2806
|
+
isOttoOwnedWorktree: true;
|
|
2807
|
+
mainRepoRoot: string;
|
|
2808
|
+
}, {
|
|
2809
|
+
cwd: string;
|
|
2810
|
+
isGit: true;
|
|
2811
|
+
currentBranch: string | null;
|
|
2812
|
+
remoteUrl: string | null;
|
|
2813
|
+
isOttoOwnedWorktree: true;
|
|
2814
|
+
mainRepoRoot: string;
|
|
2815
|
+
worktreeRoot?: string | undefined;
|
|
2816
|
+
}>>]>;
|
|
2817
|
+
}, import("zod/v4/core").$strip>>;
|
|
2818
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodTransform<{
|
|
2819
|
+
workspaceDirectory: string;
|
|
2820
|
+
id: string;
|
|
2821
|
+
projectId: string;
|
|
2822
|
+
projectDisplayName: string;
|
|
2823
|
+
projectRootPath: string;
|
|
2824
|
+
projectKind: "git" | "directory" | "non_git";
|
|
2825
|
+
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
2826
|
+
name: string;
|
|
2827
|
+
archivingAt: string | null;
|
|
2828
|
+
status: "running" | "attention" | "needs_input" | "done" | "failed";
|
|
2829
|
+
statusEnteredAt: string | null;
|
|
2830
|
+
activityAt: string | null;
|
|
2831
|
+
scripts: {
|
|
2832
|
+
scriptName: string;
|
|
2833
|
+
type: "script" | "service";
|
|
2834
|
+
hostname: string;
|
|
2835
|
+
port: number | null;
|
|
2836
|
+
proxyUrl: string | null;
|
|
2837
|
+
lifecycle: "running" | "stopped";
|
|
2838
|
+
health: "healthy" | "unhealthy" | null;
|
|
2839
|
+
exitCode: number | null;
|
|
2840
|
+
terminalId: string | null;
|
|
2841
|
+
localProxyUrl?: string | null | undefined;
|
|
2842
|
+
publicProxyUrl?: string | null | undefined;
|
|
2843
|
+
}[];
|
|
2844
|
+
projectCustomName?: string | null | undefined;
|
|
2845
|
+
title?: string | null | undefined;
|
|
2846
|
+
diffStat?: {
|
|
2847
|
+
additions: number;
|
|
2848
|
+
deletions: number;
|
|
2849
|
+
} | null | undefined;
|
|
2850
|
+
gitRuntime?: {
|
|
2851
|
+
currentBranch?: string | null | undefined;
|
|
2852
|
+
remoteUrl?: string | null | undefined;
|
|
2853
|
+
isOttoOwnedWorktree?: boolean | undefined;
|
|
2854
|
+
isDirty?: boolean | null | undefined;
|
|
2855
|
+
aheadBehind?: {
|
|
2856
|
+
ahead: number;
|
|
2857
|
+
behind: number;
|
|
2858
|
+
} | null | undefined;
|
|
2859
|
+
aheadOfOrigin?: number | null | undefined;
|
|
2860
|
+
behindOfOrigin?: number | null | undefined;
|
|
2861
|
+
} | null | undefined;
|
|
2862
|
+
githubRuntime?: {
|
|
2863
|
+
featuresEnabled?: boolean | undefined;
|
|
2864
|
+
pullRequest?: {
|
|
2865
|
+
url: string;
|
|
2866
|
+
title: string;
|
|
2867
|
+
state: string;
|
|
2868
|
+
baseRefName: string;
|
|
2869
|
+
headRefName: string;
|
|
2870
|
+
isMerged: boolean;
|
|
2871
|
+
number?: number | undefined;
|
|
2872
|
+
isDraft?: boolean | undefined;
|
|
2873
|
+
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
2874
|
+
checks?: {
|
|
2875
|
+
name: string;
|
|
2876
|
+
status: "success" | "pending" | "skipped" | "failure" | "cancelled";
|
|
2877
|
+
url: string | null;
|
|
2878
|
+
workflow?: string | undefined;
|
|
2879
|
+
duration?: string | undefined;
|
|
2880
|
+
}[] | undefined;
|
|
2881
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
2882
|
+
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
2883
|
+
repoOwner?: string | undefined;
|
|
2884
|
+
repoName?: string | undefined;
|
|
2885
|
+
github?: unknown;
|
|
2886
|
+
} | null | undefined;
|
|
2887
|
+
error?: {
|
|
2888
|
+
message: string;
|
|
2889
|
+
} | null | undefined;
|
|
2890
|
+
refreshedAt?: string | null | undefined;
|
|
2891
|
+
} | null | undefined;
|
|
2892
|
+
project?: {
|
|
2893
|
+
projectKey: string;
|
|
2894
|
+
projectName: string;
|
|
2895
|
+
checkout: {
|
|
2896
|
+
worktreeRoot: null;
|
|
2897
|
+
cwd: string;
|
|
2898
|
+
isGit: false;
|
|
2899
|
+
currentBranch: null;
|
|
2900
|
+
remoteUrl: null;
|
|
2901
|
+
isOttoOwnedWorktree: false;
|
|
2902
|
+
mainRepoRoot: null;
|
|
2903
|
+
} | {
|
|
2904
|
+
worktreeRoot: string;
|
|
2905
|
+
cwd: string;
|
|
2906
|
+
isGit: true;
|
|
2907
|
+
currentBranch: string | null;
|
|
2908
|
+
remoteUrl: string | null;
|
|
2909
|
+
isOttoOwnedWorktree: false;
|
|
2910
|
+
mainRepoRoot: string | null;
|
|
2911
|
+
} | {
|
|
2912
|
+
worktreeRoot: string;
|
|
2913
|
+
cwd: string;
|
|
2914
|
+
isGit: true;
|
|
2915
|
+
currentBranch: string | null;
|
|
2916
|
+
remoteUrl: string | null;
|
|
2917
|
+
isOttoOwnedWorktree: true;
|
|
2918
|
+
mainRepoRoot: string;
|
|
2919
|
+
};
|
|
2920
|
+
workspaceName?: string | null | undefined;
|
|
2921
|
+
} | undefined;
|
|
2922
|
+
}, {
|
|
2923
|
+
id: string;
|
|
2924
|
+
projectId: string;
|
|
2925
|
+
projectDisplayName: string;
|
|
2926
|
+
projectRootPath: string;
|
|
2927
|
+
projectKind: "git" | "directory" | "non_git";
|
|
2928
|
+
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
2929
|
+
name: string;
|
|
2930
|
+
archivingAt: string | null;
|
|
2931
|
+
status: "running" | "attention" | "needs_input" | "done" | "failed";
|
|
2932
|
+
statusEnteredAt: string | null;
|
|
2933
|
+
activityAt: string | null;
|
|
2934
|
+
scripts: {
|
|
2935
|
+
scriptName: string;
|
|
2936
|
+
type: "script" | "service";
|
|
2937
|
+
hostname: string;
|
|
2938
|
+
port: number | null;
|
|
2939
|
+
proxyUrl: string | null;
|
|
2940
|
+
lifecycle: "running" | "stopped";
|
|
2941
|
+
health: "healthy" | "unhealthy" | null;
|
|
2942
|
+
exitCode: number | null;
|
|
2943
|
+
terminalId: string | null;
|
|
2944
|
+
localProxyUrl?: string | null | undefined;
|
|
2945
|
+
publicProxyUrl?: string | null | undefined;
|
|
2946
|
+
}[];
|
|
2947
|
+
projectCustomName?: string | null | undefined;
|
|
2948
|
+
workspaceDirectory?: string | undefined;
|
|
2949
|
+
title?: string | null | undefined;
|
|
2950
|
+
diffStat?: {
|
|
2951
|
+
additions: number;
|
|
2952
|
+
deletions: number;
|
|
2953
|
+
} | null | undefined;
|
|
2954
|
+
gitRuntime?: {
|
|
2955
|
+
currentBranch?: string | null | undefined;
|
|
2956
|
+
remoteUrl?: string | null | undefined;
|
|
2957
|
+
isOttoOwnedWorktree?: boolean | undefined;
|
|
2958
|
+
isDirty?: boolean | null | undefined;
|
|
2959
|
+
aheadBehind?: {
|
|
2960
|
+
ahead: number;
|
|
2961
|
+
behind: number;
|
|
2962
|
+
} | null | undefined;
|
|
2963
|
+
aheadOfOrigin?: number | null | undefined;
|
|
2964
|
+
behindOfOrigin?: number | null | undefined;
|
|
2965
|
+
} | null | undefined;
|
|
2966
|
+
githubRuntime?: {
|
|
2967
|
+
featuresEnabled?: boolean | undefined;
|
|
2968
|
+
pullRequest?: {
|
|
2969
|
+
url: string;
|
|
2970
|
+
title: string;
|
|
2971
|
+
state: string;
|
|
2972
|
+
baseRefName: string;
|
|
2973
|
+
headRefName: string;
|
|
2974
|
+
isMerged: boolean;
|
|
2975
|
+
number?: number | undefined;
|
|
2976
|
+
isDraft?: boolean | undefined;
|
|
2977
|
+
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
2978
|
+
checks?: {
|
|
2979
|
+
name: string;
|
|
2980
|
+
status: "success" | "pending" | "skipped" | "failure" | "cancelled";
|
|
2981
|
+
url: string | null;
|
|
2982
|
+
workflow?: string | undefined;
|
|
2983
|
+
duration?: string | undefined;
|
|
2984
|
+
}[] | undefined;
|
|
2985
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
2986
|
+
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
2987
|
+
repoOwner?: string | undefined;
|
|
2988
|
+
repoName?: string | undefined;
|
|
2989
|
+
github?: unknown;
|
|
2990
|
+
} | null | undefined;
|
|
2991
|
+
error?: {
|
|
2992
|
+
message: string;
|
|
2993
|
+
} | null | undefined;
|
|
2994
|
+
refreshedAt?: string | null | undefined;
|
|
2995
|
+
} | null | undefined;
|
|
2996
|
+
project?: {
|
|
2997
|
+
projectKey: string;
|
|
2998
|
+
projectName: string;
|
|
2999
|
+
checkout: {
|
|
3000
|
+
worktreeRoot: null;
|
|
3001
|
+
cwd: string;
|
|
3002
|
+
isGit: false;
|
|
3003
|
+
currentBranch: null;
|
|
3004
|
+
remoteUrl: null;
|
|
3005
|
+
isOttoOwnedWorktree: false;
|
|
3006
|
+
mainRepoRoot: null;
|
|
3007
|
+
} | {
|
|
3008
|
+
worktreeRoot: string;
|
|
3009
|
+
cwd: string;
|
|
3010
|
+
isGit: true;
|
|
3011
|
+
currentBranch: string | null;
|
|
3012
|
+
remoteUrl: string | null;
|
|
3013
|
+
isOttoOwnedWorktree: false;
|
|
3014
|
+
mainRepoRoot: string | null;
|
|
3015
|
+
} | {
|
|
3016
|
+
worktreeRoot: string;
|
|
3017
|
+
cwd: string;
|
|
3018
|
+
isGit: true;
|
|
3019
|
+
currentBranch: string | null;
|
|
3020
|
+
remoteUrl: string | null;
|
|
3021
|
+
isOttoOwnedWorktree: true;
|
|
3022
|
+
mainRepoRoot: string;
|
|
3023
|
+
};
|
|
3024
|
+
workspaceName?: string | null | undefined;
|
|
3025
|
+
} | undefined;
|
|
3026
|
+
}>>>;
|
|
3027
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3028
|
+
}, import("zod/v4/core").$strip>;
|
|
3029
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3030
|
+
type: import("zod").ZodLiteral<"fetch_agent_response">;
|
|
3031
|
+
payload: import("zod").ZodObject<{
|
|
3032
|
+
requestId: import("zod").ZodString;
|
|
3033
|
+
agent: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
3034
|
+
id: import("zod").ZodString;
|
|
3035
|
+
provider: import("zod").ZodString;
|
|
3036
|
+
cwd: import("zod").ZodString;
|
|
3037
|
+
workspaceId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3038
|
+
model: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3039
|
+
features: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
3040
|
+
type: import("zod").ZodLiteral<"toggle">;
|
|
3041
|
+
id: import("zod").ZodString;
|
|
3042
|
+
label: import("zod").ZodString;
|
|
3043
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3044
|
+
tooltip: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3045
|
+
icon: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3046
|
+
value: import("zod").ZodBoolean;
|
|
3047
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3048
|
+
type: import("zod").ZodLiteral<"select">;
|
|
3049
|
+
id: import("zod").ZodString;
|
|
3050
|
+
label: import("zod").ZodString;
|
|
3051
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3052
|
+
tooltip: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3053
|
+
icon: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3054
|
+
value: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3055
|
+
options: import("zod").ZodArray<import("zod").ZodObject<{
|
|
3056
|
+
id: import("zod").ZodString;
|
|
3057
|
+
label: import("zod").ZodString;
|
|
3058
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3059
|
+
isDefault: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
3060
|
+
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
3061
|
+
}, import("zod/v4/core").$strip>>;
|
|
3062
|
+
}, import("zod/v4/core").$strip>], "type">>>;
|
|
3063
|
+
thinkingOptionId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3064
|
+
effectiveThinkingOptionId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3065
|
+
createdAt: import("zod").ZodString;
|
|
3066
|
+
updatedAt: import("zod").ZodString;
|
|
3067
|
+
lastUserMessageAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3068
|
+
status: import("zod").ZodEnum<{
|
|
3069
|
+
error: "error";
|
|
3070
|
+
initializing: "initializing";
|
|
3071
|
+
idle: "idle";
|
|
3072
|
+
running: "running";
|
|
3073
|
+
closed: "closed";
|
|
3074
|
+
}>;
|
|
3075
|
+
capabilities: import("zod").ZodType<import("../agent-types.js").AgentCapabilityFlags, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentCapabilityFlags, unknown>>;
|
|
3076
|
+
currentModeId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3077
|
+
availableModes: import("zod").ZodArray<import("zod").ZodType<import("../agent-types.js").AgentMode, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentMode, unknown>>>;
|
|
3078
|
+
pendingPermissions: import("zod").ZodArray<import("zod").ZodType<import("../agent-types.js").AgentPermissionRequest, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentPermissionRequest, unknown>>>;
|
|
3079
|
+
persistence: import("zod").ZodNullable<import("zod").ZodType<import("../agent-types.js").AgentPersistenceHandle | null, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentPersistenceHandle | null, unknown>>>;
|
|
3080
|
+
runtimeInfo: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentRuntimeInfo, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentRuntimeInfo, unknown>>>;
|
|
3081
|
+
lastUsage: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentUsage, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentUsage, unknown>>>;
|
|
3082
|
+
cumulativeTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3083
|
+
cumulativeUsage: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
3084
|
+
inputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3085
|
+
cachedInputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3086
|
+
cacheCreationInputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3087
|
+
outputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3088
|
+
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3089
|
+
costCoverage: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
3090
|
+
none: "none";
|
|
3091
|
+
complete: "complete";
|
|
3092
|
+
partial: "partial";
|
|
3093
|
+
}>>;
|
|
3094
|
+
}, import("zod/v4/core").$strip>>;
|
|
3095
|
+
toolUseCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3096
|
+
currentTool: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3097
|
+
queuedMessages: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
3098
|
+
id: import("zod").ZodString;
|
|
3099
|
+
preview: import("zod").ZodString;
|
|
3100
|
+
enqueuedAt: import("zod").ZodString;
|
|
3101
|
+
attachmentCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3102
|
+
}, import("zod/v4/core").$strip>>>;
|
|
3103
|
+
lastError: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3104
|
+
title: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3105
|
+
labels: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
3106
|
+
requiresAttention: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
3107
|
+
attentionReason: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
3108
|
+
finished: "finished";
|
|
3109
|
+
error: "error";
|
|
3110
|
+
permission: "permission";
|
|
3111
|
+
}>>>;
|
|
3112
|
+
attentionTimestamp: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3113
|
+
archivedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3114
|
+
providerUnavailable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
3115
|
+
attend: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
3116
|
+
attended: "attended";
|
|
3117
|
+
observed: "observed";
|
|
3118
|
+
}>>;
|
|
3119
|
+
personalitySpinner: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
3120
|
+
glowA: import("zod").ZodString;
|
|
3121
|
+
glowB: import("zod").ZodString;
|
|
3122
|
+
}, import("zod/v4/core").$loose>>;
|
|
3123
|
+
personalityName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3124
|
+
personalityId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3125
|
+
}, import("zod/v4/core").$strip>>;
|
|
3126
|
+
project: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
3127
|
+
projectKey: import("zod").ZodString;
|
|
3128
|
+
projectName: import("zod").ZodString;
|
|
3129
|
+
workspaceName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3130
|
+
checkout: import("zod").ZodUnion<readonly [import("zod").ZodPipe<import("zod").ZodObject<{
|
|
3131
|
+
cwd: import("zod").ZodString;
|
|
3132
|
+
isGit: import("zod").ZodLiteral<false>;
|
|
3133
|
+
currentBranch: import("zod").ZodNull;
|
|
3134
|
+
remoteUrl: import("zod").ZodNull;
|
|
3135
|
+
worktreeRoot: import("zod").ZodOptional<import("zod").ZodNull>;
|
|
3136
|
+
isOttoOwnedWorktree: import("zod").ZodLiteral<false>;
|
|
3137
|
+
mainRepoRoot: import("zod").ZodNull;
|
|
3138
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodTransform<{
|
|
3139
|
+
worktreeRoot: null;
|
|
3140
|
+
cwd: string;
|
|
3141
|
+
isGit: false;
|
|
3142
|
+
currentBranch: null;
|
|
3143
|
+
remoteUrl: null;
|
|
3144
|
+
isOttoOwnedWorktree: false;
|
|
3145
|
+
mainRepoRoot: null;
|
|
3146
|
+
}, {
|
|
3147
|
+
cwd: string;
|
|
3148
|
+
isGit: false;
|
|
3149
|
+
currentBranch: null;
|
|
3150
|
+
remoteUrl: null;
|
|
3151
|
+
isOttoOwnedWorktree: false;
|
|
3152
|
+
mainRepoRoot: null;
|
|
3153
|
+
worktreeRoot?: null | undefined;
|
|
3154
|
+
}>>, import("zod").ZodPipe<import("zod").ZodObject<{
|
|
3155
|
+
cwd: import("zod").ZodString;
|
|
3156
|
+
isGit: import("zod").ZodLiteral<true>;
|
|
3157
|
+
currentBranch: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3158
|
+
remoteUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3159
|
+
worktreeRoot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3160
|
+
isOttoOwnedWorktree: import("zod").ZodLiteral<false>;
|
|
3161
|
+
mainRepoRoot: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
3162
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodTransform<{
|
|
3163
|
+
worktreeRoot: string;
|
|
3164
|
+
cwd: string;
|
|
3165
|
+
isGit: true;
|
|
3166
|
+
currentBranch: string | null;
|
|
3167
|
+
remoteUrl: string | null;
|
|
3168
|
+
isOttoOwnedWorktree: false;
|
|
3169
|
+
mainRepoRoot: string | null;
|
|
3170
|
+
}, {
|
|
3171
|
+
cwd: string;
|
|
3172
|
+
isGit: true;
|
|
3173
|
+
currentBranch: string | null;
|
|
3174
|
+
remoteUrl: string | null;
|
|
3175
|
+
isOttoOwnedWorktree: false;
|
|
3176
|
+
mainRepoRoot: string | null;
|
|
3177
|
+
worktreeRoot?: string | undefined;
|
|
3178
|
+
}>>, import("zod").ZodPipe<import("zod").ZodObject<{
|
|
3179
|
+
cwd: import("zod").ZodString;
|
|
3180
|
+
isGit: import("zod").ZodLiteral<true>;
|
|
3181
|
+
currentBranch: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3182
|
+
remoteUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3183
|
+
worktreeRoot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3184
|
+
isOttoOwnedWorktree: import("zod").ZodLiteral<true>;
|
|
3185
|
+
mainRepoRoot: import("zod").ZodString;
|
|
3186
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodTransform<{
|
|
3187
|
+
worktreeRoot: string;
|
|
3188
|
+
cwd: string;
|
|
3189
|
+
isGit: true;
|
|
3190
|
+
currentBranch: string | null;
|
|
3191
|
+
remoteUrl: string | null;
|
|
3192
|
+
isOttoOwnedWorktree: true;
|
|
3193
|
+
mainRepoRoot: string;
|
|
3194
|
+
}, {
|
|
3195
|
+
cwd: string;
|
|
3196
|
+
isGit: true;
|
|
3197
|
+
currentBranch: string | null;
|
|
3198
|
+
remoteUrl: string | null;
|
|
3199
|
+
isOttoOwnedWorktree: true;
|
|
3200
|
+
mainRepoRoot: string;
|
|
3201
|
+
worktreeRoot?: string | undefined;
|
|
3202
|
+
}>>]>;
|
|
3203
|
+
}, import("zod/v4/core").$strip>>>;
|
|
3204
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3205
|
+
}, import("zod/v4/core").$strip>;
|
|
3206
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3207
|
+
type: import("zod").ZodLiteral<"fetch_agent_timeline_response">;
|
|
3208
|
+
payload: import("zod").ZodObject<{
|
|
3209
|
+
requestId: import("zod").ZodString;
|
|
3210
|
+
agentId: import("zod").ZodString;
|
|
3211
|
+
agent: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
3212
|
+
id: import("zod").ZodString;
|
|
3213
|
+
provider: import("zod").ZodString;
|
|
3214
|
+
cwd: import("zod").ZodString;
|
|
3215
|
+
workspaceId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3216
|
+
model: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3217
|
+
features: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
3218
|
+
type: import("zod").ZodLiteral<"toggle">;
|
|
3219
|
+
id: import("zod").ZodString;
|
|
3220
|
+
label: import("zod").ZodString;
|
|
3221
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3222
|
+
tooltip: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3223
|
+
icon: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3224
|
+
value: import("zod").ZodBoolean;
|
|
3225
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3226
|
+
type: import("zod").ZodLiteral<"select">;
|
|
3227
|
+
id: import("zod").ZodString;
|
|
3228
|
+
label: import("zod").ZodString;
|
|
3229
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3230
|
+
tooltip: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3231
|
+
icon: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3232
|
+
value: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3233
|
+
options: import("zod").ZodArray<import("zod").ZodObject<{
|
|
3234
|
+
id: import("zod").ZodString;
|
|
3235
|
+
label: import("zod").ZodString;
|
|
3236
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3237
|
+
isDefault: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
3238
|
+
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
3239
|
+
}, import("zod/v4/core").$strip>>;
|
|
3240
|
+
}, import("zod/v4/core").$strip>], "type">>>;
|
|
3241
|
+
thinkingOptionId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3242
|
+
effectiveThinkingOptionId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3243
|
+
createdAt: import("zod").ZodString;
|
|
3244
|
+
updatedAt: import("zod").ZodString;
|
|
3245
|
+
lastUserMessageAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3246
|
+
status: import("zod").ZodEnum<{
|
|
3247
|
+
error: "error";
|
|
2639
3248
|
initializing: "initializing";
|
|
2640
3249
|
idle: "idle";
|
|
2641
3250
|
running: "running";
|
|
@@ -2649,6 +3258,26 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2649
3258
|
runtimeInfo: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentRuntimeInfo, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentRuntimeInfo, unknown>>>;
|
|
2650
3259
|
lastUsage: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentUsage, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentUsage, unknown>>>;
|
|
2651
3260
|
cumulativeTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3261
|
+
cumulativeUsage: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
3262
|
+
inputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3263
|
+
cachedInputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3264
|
+
cacheCreationInputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3265
|
+
outputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3266
|
+
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3267
|
+
costCoverage: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
3268
|
+
none: "none";
|
|
3269
|
+
complete: "complete";
|
|
3270
|
+
partial: "partial";
|
|
3271
|
+
}>>;
|
|
3272
|
+
}, import("zod/v4/core").$strip>>;
|
|
3273
|
+
toolUseCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3274
|
+
currentTool: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3275
|
+
queuedMessages: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
3276
|
+
id: import("zod").ZodString;
|
|
3277
|
+
preview: import("zod").ZodString;
|
|
3278
|
+
enqueuedAt: import("zod").ZodString;
|
|
3279
|
+
attachmentCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3280
|
+
}, import("zod/v4/core").$strip>>>;
|
|
2652
3281
|
lastError: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2653
3282
|
title: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2654
3283
|
labels: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
@@ -2801,6 +3430,26 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2801
3430
|
runtimeInfo: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentRuntimeInfo, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentRuntimeInfo, unknown>>>;
|
|
2802
3431
|
lastUsage: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentUsage, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentUsage, unknown>>>;
|
|
2803
3432
|
cumulativeTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3433
|
+
cumulativeUsage: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
3434
|
+
inputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3435
|
+
cachedInputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3436
|
+
cacheCreationInputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3437
|
+
outputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3438
|
+
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3439
|
+
costCoverage: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
3440
|
+
none: "none";
|
|
3441
|
+
complete: "complete";
|
|
3442
|
+
partial: "partial";
|
|
3443
|
+
}>>;
|
|
3444
|
+
}, import("zod/v4/core").$strip>>;
|
|
3445
|
+
toolUseCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3446
|
+
currentTool: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3447
|
+
queuedMessages: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
3448
|
+
id: import("zod").ZodString;
|
|
3449
|
+
preview: import("zod").ZodString;
|
|
3450
|
+
enqueuedAt: import("zod").ZodString;
|
|
3451
|
+
attachmentCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3452
|
+
}, import("zod/v4/core").$strip>>>;
|
|
2804
3453
|
lastError: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2805
3454
|
title: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2806
3455
|
labels: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
@@ -2881,6 +3530,26 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2881
3530
|
runtimeInfo: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentRuntimeInfo, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentRuntimeInfo, unknown>>>;
|
|
2882
3531
|
lastUsage: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentUsage, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentUsage, unknown>>>;
|
|
2883
3532
|
cumulativeTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3533
|
+
cumulativeUsage: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
3534
|
+
inputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3535
|
+
cachedInputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3536
|
+
cacheCreationInputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3537
|
+
outputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3538
|
+
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3539
|
+
costCoverage: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
3540
|
+
none: "none";
|
|
3541
|
+
complete: "complete";
|
|
3542
|
+
partial: "partial";
|
|
3543
|
+
}>>;
|
|
3544
|
+
}, import("zod/v4/core").$strip>>;
|
|
3545
|
+
toolUseCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3546
|
+
currentTool: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3547
|
+
queuedMessages: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
3548
|
+
id: import("zod").ZodString;
|
|
3549
|
+
preview: import("zod").ZodString;
|
|
3550
|
+
enqueuedAt: import("zod").ZodString;
|
|
3551
|
+
attachmentCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3552
|
+
}, import("zod/v4/core").$strip>>>;
|
|
2884
3553
|
lastError: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2885
3554
|
title: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2886
3555
|
labels: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
@@ -3339,6 +4008,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3339
4008
|
agentId: import("zod").ZodString;
|
|
3340
4009
|
accepted: import("zod").ZodBoolean;
|
|
3341
4010
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4011
|
+
queued: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4012
|
+
queuedMessageId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3342
4013
|
}, import("zod/v4/core").$strip>;
|
|
3343
4014
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3344
4015
|
type: import("zod").ZodLiteral<"set_voice_mode_response">;
|
|
@@ -3404,6 +4075,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3404
4075
|
agents: "agents";
|
|
3405
4076
|
terminals: "terminals";
|
|
3406
4077
|
schedules: "schedules";
|
|
4078
|
+
widgets: "widgets";
|
|
3407
4079
|
workspace: "workspace";
|
|
3408
4080
|
}>>>;
|
|
3409
4081
|
}, import("zod/v4/core").$loose>;
|
|
@@ -3431,6 +4103,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3431
4103
|
agents: "agents";
|
|
3432
4104
|
terminals: "terminals";
|
|
3433
4105
|
schedules: "schedules";
|
|
4106
|
+
widgets: "widgets";
|
|
3434
4107
|
workspace: "workspace";
|
|
3435
4108
|
}>>>;
|
|
3436
4109
|
}, import("zod/v4/core").$loose>>>;
|
|
@@ -3444,6 +4117,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3444
4117
|
preferWriterPersonalities: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
3445
4118
|
}, import("zod/v4/core").$loose>>;
|
|
3446
4119
|
autoArchiveAfterMerge: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
4120
|
+
hideMergeIntoBaseAction: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
3447
4121
|
enableTerminalAgentHooks: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
3448
4122
|
appendSystemPrompt: import("zod").ZodDefault<import("zod").ZodString>;
|
|
3449
4123
|
terminalProfiles: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -3514,6 +4188,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3514
4188
|
waiting: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
3515
4189
|
done: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
3516
4190
|
}, import("zod/v4/core").$loose>>;
|
|
4191
|
+
memoryEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
3517
4192
|
}, import("zod/v4/core").$loose>>>;
|
|
3518
4193
|
}, import("zod/v4/core").$loose>>;
|
|
3519
4194
|
agentTeams: import("zod").ZodDefault<import("zod").ZodObject<{
|
|
@@ -3543,6 +4218,18 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3543
4218
|
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3544
4219
|
savedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3545
4220
|
}, import("zod/v4/core").$loose>>>;
|
|
4221
|
+
lsp: import("zod").ZodDefault<import("zod").ZodObject<{
|
|
4222
|
+
enabled: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
4223
|
+
languages: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>>;
|
|
4224
|
+
maxRunningServers: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4225
|
+
idleMinutes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4226
|
+
backgroundIdleMinutes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4227
|
+
}, import("zod/v4/core").$loose>>;
|
|
4228
|
+
dotnetSolutionManagement: import("zod").ZodDefault<import("zod").ZodObject<{
|
|
4229
|
+
enabled: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
4230
|
+
maxRunningProbes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4231
|
+
idleMinutes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4232
|
+
}, import("zod/v4/core").$loose>>;
|
|
3546
4233
|
}, import("zod/v4/core").$loose>;
|
|
3547
4234
|
}, import("zod/v4/core").$loose>;
|
|
3548
4235
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -3560,6 +4247,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3560
4247
|
agents: "agents";
|
|
3561
4248
|
terminals: "terminals";
|
|
3562
4249
|
schedules: "schedules";
|
|
4250
|
+
widgets: "widgets";
|
|
3563
4251
|
workspace: "workspace";
|
|
3564
4252
|
}>>>;
|
|
3565
4253
|
}, import("zod/v4/core").$loose>;
|
|
@@ -3587,6 +4275,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3587
4275
|
agents: "agents";
|
|
3588
4276
|
terminals: "terminals";
|
|
3589
4277
|
schedules: "schedules";
|
|
4278
|
+
widgets: "widgets";
|
|
3590
4279
|
workspace: "workspace";
|
|
3591
4280
|
}>>>;
|
|
3592
4281
|
}, import("zod/v4/core").$loose>>>;
|
|
@@ -3600,6 +4289,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3600
4289
|
preferWriterPersonalities: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
3601
4290
|
}, import("zod/v4/core").$loose>>;
|
|
3602
4291
|
autoArchiveAfterMerge: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
4292
|
+
hideMergeIntoBaseAction: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
3603
4293
|
enableTerminalAgentHooks: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
3604
4294
|
appendSystemPrompt: import("zod").ZodDefault<import("zod").ZodString>;
|
|
3605
4295
|
terminalProfiles: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -3670,6 +4360,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3670
4360
|
waiting: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
3671
4361
|
done: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
3672
4362
|
}, import("zod/v4/core").$loose>>;
|
|
4363
|
+
memoryEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
3673
4364
|
}, import("zod/v4/core").$loose>>>;
|
|
3674
4365
|
}, import("zod/v4/core").$loose>>;
|
|
3675
4366
|
agentTeams: import("zod").ZodDefault<import("zod").ZodObject<{
|
|
@@ -3699,6 +4390,18 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3699
4390
|
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3700
4391
|
savedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3701
4392
|
}, import("zod/v4/core").$loose>>>;
|
|
4393
|
+
lsp: import("zod").ZodDefault<import("zod").ZodObject<{
|
|
4394
|
+
enabled: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
4395
|
+
languages: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>>;
|
|
4396
|
+
maxRunningServers: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4397
|
+
idleMinutes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4398
|
+
backgroundIdleMinutes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4399
|
+
}, import("zod/v4/core").$loose>>;
|
|
4400
|
+
dotnetSolutionManagement: import("zod").ZodDefault<import("zod").ZodObject<{
|
|
4401
|
+
enabled: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
4402
|
+
maxRunningProbes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4403
|
+
idleMinutes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4404
|
+
}, import("zod/v4/core").$loose>>;
|
|
3702
4405
|
}, import("zod/v4/core").$loose>;
|
|
3703
4406
|
}, import("zod/v4/core").$loose>;
|
|
3704
4407
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -3746,6 +4449,19 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3746
4449
|
format: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3747
4450
|
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3748
4451
|
}, import("zod/v4/core").$loose>;
|
|
4452
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4453
|
+
type: import("zod").ZodLiteral<"speech.tts.speak.response">;
|
|
4454
|
+
payload: import("zod").ZodObject<{
|
|
4455
|
+
requestId: import("zod").ZodString;
|
|
4456
|
+
ok: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4457
|
+
canceled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4458
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4459
|
+
}, import("zod/v4/core").$loose>;
|
|
4460
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4461
|
+
type: import("zod").ZodLiteral<"speech.tts.speak.cancel.response">;
|
|
4462
|
+
payload: import("zod").ZodObject<{
|
|
4463
|
+
requestId: import("zod").ZodString;
|
|
4464
|
+
}, import("zod/v4/core").$loose>;
|
|
3749
4465
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3750
4466
|
type: import("zod").ZodLiteral<"visualizer.voiceCues.generate.response">;
|
|
3751
4467
|
payload: import("zod").ZodObject<{
|
|
@@ -3923,6 +4639,33 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3923
4639
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3924
4640
|
notice: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodType<import("../agent-types.js").AgentProviderNotice, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentProviderNotice, unknown>>>>;
|
|
3925
4641
|
}, import("zod/v4/core").$strip>;
|
|
4642
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4643
|
+
type: import("zod").ZodLiteral<"agent.queue.remove.response">;
|
|
4644
|
+
payload: import("zod").ZodObject<{
|
|
4645
|
+
requestId: import("zod").ZodString;
|
|
4646
|
+
agentId: import("zod").ZodString;
|
|
4647
|
+
removed: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
4648
|
+
id: import("zod").ZodString;
|
|
4649
|
+
text: import("zod").ZodString;
|
|
4650
|
+
}, import("zod/v4/core").$strip>>;
|
|
4651
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4652
|
+
}, import("zod/v4/core").$strip>;
|
|
4653
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4654
|
+
type: import("zod").ZodLiteral<"agent.queue.reorder.response">;
|
|
4655
|
+
payload: import("zod").ZodObject<{
|
|
4656
|
+
requestId: import("zod").ZodString;
|
|
4657
|
+
agentId: import("zod").ZodString;
|
|
4658
|
+
moved: import("zod").ZodBoolean;
|
|
4659
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4660
|
+
}, import("zod/v4/core").$strip>;
|
|
4661
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4662
|
+
type: import("zod").ZodLiteral<"agent.queue.clear.response">;
|
|
4663
|
+
payload: import("zod").ZodObject<{
|
|
4664
|
+
requestId: import("zod").ZodString;
|
|
4665
|
+
agentId: import("zod").ZodString;
|
|
4666
|
+
clearedCount: import("zod").ZodNumber;
|
|
4667
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4668
|
+
}, import("zod/v4/core").$strip>;
|
|
3926
4669
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3927
4670
|
type: import("zod").ZodLiteral<"agent.subagent.stop.response">;
|
|
3928
4671
|
payload: import("zod").ZodObject<{
|
|
@@ -4074,6 +4817,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4074
4817
|
nodeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4075
4818
|
line: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4076
4819
|
lineEnd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4820
|
+
fixable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4821
|
+
snippet: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4077
4822
|
}, import("zod/v4/core").$strip>>;
|
|
4078
4823
|
}, import("zod/v4/core").$strip>>;
|
|
4079
4824
|
edges: import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -4136,7 +4881,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4136
4881
|
nodeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4137
4882
|
line: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4138
4883
|
lineEnd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4884
|
+
fixable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4885
|
+
snippet: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4139
4886
|
}, import("zod/v4/core").$strip>>;
|
|
4887
|
+
personalityId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4888
|
+
personalityMemoryTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4140
4889
|
}, import("zod/v4/core").$strip>>;
|
|
4141
4890
|
}, import("zod/v4/core").$strip>;
|
|
4142
4891
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -4174,6 +4923,22 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4174
4923
|
customName: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4175
4924
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4176
4925
|
}, import("zod/v4/core").$strip>;
|
|
4926
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4927
|
+
type: import("zod").ZodLiteral<"project.updated.notification">;
|
|
4928
|
+
payload: import("zod").ZodObject<{
|
|
4929
|
+
project: import("zod").ZodObject<{
|
|
4930
|
+
projectId: import("zod").ZodString;
|
|
4931
|
+
projectDisplayName: import("zod").ZodString;
|
|
4932
|
+
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4933
|
+
projectRootPath: import("zod").ZodString;
|
|
4934
|
+
projectKind: import("zod").ZodEnum<{
|
|
4935
|
+
git: "git";
|
|
4936
|
+
directory: "directory";
|
|
4937
|
+
non_git: "non_git";
|
|
4938
|
+
}>;
|
|
4939
|
+
}, import("zod/v4/core").$strip>;
|
|
4940
|
+
hasActiveWorkspaces: import("zod").ZodBoolean;
|
|
4941
|
+
}, import("zod/v4/core").$strip>;
|
|
4177
4942
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4178
4943
|
type: import("zod").ZodLiteral<"project.remove.response">;
|
|
4179
4944
|
payload: import("zod").ZodObject<{
|
|
@@ -4292,6 +5057,26 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4292
5057
|
runtimeInfo: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentRuntimeInfo, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentRuntimeInfo, unknown>>>;
|
|
4293
5058
|
lastUsage: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentUsage, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentUsage, unknown>>>;
|
|
4294
5059
|
cumulativeTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5060
|
+
cumulativeUsage: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5061
|
+
inputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5062
|
+
cachedInputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5063
|
+
cacheCreationInputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5064
|
+
outputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5065
|
+
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5066
|
+
costCoverage: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
5067
|
+
none: "none";
|
|
5068
|
+
complete: "complete";
|
|
5069
|
+
partial: "partial";
|
|
5070
|
+
}>>;
|
|
5071
|
+
}, import("zod/v4/core").$strip>>;
|
|
5072
|
+
toolUseCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5073
|
+
currentTool: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5074
|
+
queuedMessages: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5075
|
+
id: import("zod").ZodString;
|
|
5076
|
+
preview: import("zod").ZodString;
|
|
5077
|
+
enqueuedAt: import("zod").ZodString;
|
|
5078
|
+
attachmentCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5079
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4295
5080
|
lastError: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4296
5081
|
title: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4297
5082
|
labels: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
@@ -4337,6 +5122,17 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4337
5122
|
agentId: import("zod").ZodString;
|
|
4338
5123
|
requestId: import("zod").ZodString;
|
|
4339
5124
|
}, import("zod/v4/core").$strip>;
|
|
5125
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5126
|
+
type: import("zod").ZodLiteral<"history.agents.clear_archived.response">;
|
|
5127
|
+
payload: import("zod").ZodObject<{
|
|
5128
|
+
matched: import("zod").ZodNumber;
|
|
5129
|
+
deleted: import("zod").ZodNumber;
|
|
5130
|
+
failed: import("zod").ZodNumber;
|
|
5131
|
+
agentIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
5132
|
+
dryRun: import("zod").ZodBoolean;
|
|
5133
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
5134
|
+
requestId: import("zod").ZodString;
|
|
5135
|
+
}, import("zod/v4/core").$strip>;
|
|
4340
5136
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4341
5137
|
type: import("zod").ZodLiteral<"agent_archived">;
|
|
4342
5138
|
payload: import("zod").ZodObject<{
|
|
@@ -4371,6 +5167,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4371
5167
|
message: import("zod").ZodString;
|
|
4372
5168
|
}, import("zod/v4/core").$strip>>;
|
|
4373
5169
|
requestId: import("zod").ZodString;
|
|
5170
|
+
gitStateAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4374
5171
|
isGit: import("zod").ZodLiteral<false>;
|
|
4375
5172
|
isOttoOwnedWorktree: import("zod").ZodLiteral<false>;
|
|
4376
5173
|
repoRoot: import("zod").ZodNull;
|
|
@@ -4394,6 +5191,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4394
5191
|
message: import("zod").ZodString;
|
|
4395
5192
|
}, import("zod/v4/core").$strip>>;
|
|
4396
5193
|
requestId: import("zod").ZodString;
|
|
5194
|
+
gitStateAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4397
5195
|
isGit: import("zod").ZodLiteral<true>;
|
|
4398
5196
|
isOttoOwnedWorktree: import("zod").ZodLiteral<false>;
|
|
4399
5197
|
repoRoot: import("zod").ZodString;
|
|
@@ -4421,6 +5219,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4421
5219
|
message: import("zod").ZodString;
|
|
4422
5220
|
}, import("zod/v4/core").$strip>>;
|
|
4423
5221
|
requestId: import("zod").ZodString;
|
|
5222
|
+
gitStateAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4424
5223
|
isGit: import("zod").ZodLiteral<true>;
|
|
4425
5224
|
isOttoOwnedWorktree: import("zod").ZodLiteral<true>;
|
|
4426
5225
|
repoRoot: import("zod").ZodString;
|
|
@@ -4451,6 +5250,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4451
5250
|
message: import("zod").ZodString;
|
|
4452
5251
|
}, import("zod/v4/core").$strip>>;
|
|
4453
5252
|
requestId: import("zod").ZodString;
|
|
5253
|
+
gitStateAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4454
5254
|
isGit: import("zod").ZodLiteral<false>;
|
|
4455
5255
|
isOttoOwnedWorktree: import("zod").ZodLiteral<false>;
|
|
4456
5256
|
repoRoot: import("zod").ZodNull;
|
|
@@ -4474,6 +5274,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4474
5274
|
message: import("zod").ZodString;
|
|
4475
5275
|
}, import("zod/v4/core").$strip>>;
|
|
4476
5276
|
requestId: import("zod").ZodString;
|
|
5277
|
+
gitStateAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4477
5278
|
isGit: import("zod").ZodLiteral<true>;
|
|
4478
5279
|
isOttoOwnedWorktree: import("zod").ZodLiteral<false>;
|
|
4479
5280
|
repoRoot: import("zod").ZodString;
|
|
@@ -4501,6 +5302,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4501
5302
|
message: import("zod").ZodString;
|
|
4502
5303
|
}, import("zod/v4/core").$strip>>;
|
|
4503
5304
|
requestId: import("zod").ZodString;
|
|
5305
|
+
gitStateAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4504
5306
|
isGit: import("zod").ZodLiteral<true>;
|
|
4505
5307
|
isOttoOwnedWorktree: import("zod").ZodLiteral<true>;
|
|
4506
5308
|
repoRoot: import("zod").ZodString;
|
|
@@ -4589,6 +5391,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4589
5391
|
draftPrs: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
4590
5392
|
reviewDecisions: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
4591
5393
|
issues: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
5394
|
+
listRepositories: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
5395
|
+
createRepository: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
4592
5396
|
}, import("zod/v4/core").$strip>>;
|
|
4593
5397
|
}, import("zod/v4/core").$strip>>;
|
|
4594
5398
|
error: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
@@ -4602,6 +5406,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4602
5406
|
}, import("zod/v4/core").$strip>>;
|
|
4603
5407
|
requestId: import("zod").ZodString;
|
|
4604
5408
|
}, import("zod/v4/core").$strip>>;
|
|
5409
|
+
prStatusOnly: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
4605
5410
|
}, import("zod/v4/core").$strip>>;
|
|
4606
5411
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4607
5412
|
type: import("zod").ZodLiteral<"subscribe_checkout_diff_response">;
|
|
@@ -4975,7 +5780,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4975
5780
|
runs: import("zod").ZodArray<import("zod").ZodObject<{
|
|
4976
5781
|
id: import("zod").ZodString;
|
|
4977
5782
|
title: import("zod").ZodString;
|
|
5783
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4978
5784
|
status: import("zod").ZodString;
|
|
5785
|
+
kind: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5786
|
+
graphId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5787
|
+
graphInputs: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
4979
5788
|
requirements: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
4980
5789
|
autopilot: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4981
5790
|
phases: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -5002,8 +5811,12 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5002
5811
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5003
5812
|
}, import("zod/v4/core").$loose>>;
|
|
5004
5813
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5814
|
+
outputFields: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
5005
5815
|
}, import("zod/v4/core").$loose>>>;
|
|
5006
5816
|
notes: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5817
|
+
skipReason: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5818
|
+
retryAttempts: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5819
|
+
timedOut: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5007
5820
|
startedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5008
5821
|
completedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5009
5822
|
}, import("zod/v4/core").$loose>>>;
|
|
@@ -5027,7 +5840,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5027
5840
|
run: import("zod").ZodObject<{
|
|
5028
5841
|
id: import("zod").ZodString;
|
|
5029
5842
|
title: import("zod").ZodString;
|
|
5843
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5030
5844
|
status: import("zod").ZodString;
|
|
5845
|
+
kind: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5846
|
+
graphId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5847
|
+
graphInputs: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
5031
5848
|
requirements: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
5032
5849
|
autopilot: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5033
5850
|
phases: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -5054,8 +5871,12 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5054
5871
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5055
5872
|
}, import("zod/v4/core").$loose>>;
|
|
5056
5873
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5874
|
+
outputFields: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
5057
5875
|
}, import("zod/v4/core").$loose>>>;
|
|
5058
5876
|
notes: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5877
|
+
skipReason: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5878
|
+
retryAttempts: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5879
|
+
timedOut: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5059
5880
|
startedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5060
5881
|
completedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5061
5882
|
}, import("zod/v4/core").$loose>>>;
|
|
@@ -5092,11 +5913,377 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5092
5913
|
runIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
5093
5914
|
requestId: import("zod").ZodString;
|
|
5094
5915
|
}, import("zod/v4/core").$strip>;
|
|
5916
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5917
|
+
type: import("zod").ZodLiteral<"runs.delete.response">;
|
|
5918
|
+
payload: import("zod").ZodObject<{
|
|
5919
|
+
runId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5920
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5921
|
+
requestId: import("zod").ZodString;
|
|
5922
|
+
}, import("zod/v4/core").$strip>;
|
|
5095
5923
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5096
5924
|
type: import("zod").ZodLiteral<"runs.cleared.notification">;
|
|
5097
5925
|
payload: import("zod").ZodObject<{
|
|
5098
5926
|
runIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
5099
5927
|
}, import("zod/v4/core").$strip>;
|
|
5928
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5929
|
+
type: import("zod").ZodLiteral<"runs.graphs.list.response">;
|
|
5930
|
+
payload: import("zod").ZodObject<{
|
|
5931
|
+
graphs: import("zod").ZodArray<import("zod").ZodObject<{
|
|
5932
|
+
id: import("zod").ZodString;
|
|
5933
|
+
name: import("zod").ZodString;
|
|
5934
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5935
|
+
inputs: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5936
|
+
key: import("zod").ZodString;
|
|
5937
|
+
label: import("zod").ZodString;
|
|
5938
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5939
|
+
multiline: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5940
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5941
|
+
defaultValue: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5942
|
+
}, import("zod/v4/core").$loose>>>;
|
|
5943
|
+
nodes: import("zod").ZodArray<import("zod").ZodObject<{
|
|
5944
|
+
id: import("zod").ZodString;
|
|
5945
|
+
kind: import("zod").ZodString;
|
|
5946
|
+
title: import("zod").ZodString;
|
|
5947
|
+
role: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5948
|
+
prompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5949
|
+
promptFromInput: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5950
|
+
promptTemplate: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5951
|
+
templateId: import("zod").ZodString;
|
|
5952
|
+
variables: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
5953
|
+
}, import("zod/v4/core").$loose>>;
|
|
5954
|
+
autonomous: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5955
|
+
loop: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5956
|
+
times: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5957
|
+
until: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5958
|
+
criteria: import("zod").ZodArray<import("zod").ZodString>;
|
|
5959
|
+
judgeRole: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5960
|
+
max: import("zod").ZodNumber;
|
|
5961
|
+
}, import("zod/v4/core").$loose>>;
|
|
5962
|
+
}, import("zod/v4/core").$loose>>;
|
|
5963
|
+
output: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5964
|
+
fields: import("zod").ZodArray<import("zod").ZodObject<{
|
|
5965
|
+
key: import("zod").ZodString;
|
|
5966
|
+
type: import("zod").ZodString;
|
|
5967
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5968
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5969
|
+
}, import("zod/v4/core").$loose>>;
|
|
5970
|
+
}, import("zod/v4/core").$loose>>;
|
|
5971
|
+
access: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5972
|
+
tools: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
5973
|
+
queryTools: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5974
|
+
name: import("zod").ZodString;
|
|
5975
|
+
description: import("zod").ZodString;
|
|
5976
|
+
kind: import("zod").ZodString;
|
|
5977
|
+
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5978
|
+
key: import("zod").ZodString;
|
|
5979
|
+
type: import("zod").ZodString;
|
|
5980
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5981
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5982
|
+
}, import("zod/v4/core").$loose>>>;
|
|
5983
|
+
command: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
5984
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5985
|
+
path: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5986
|
+
}, import("zod/v4/core").$loose>>>;
|
|
5987
|
+
retry: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5988
|
+
maxAttempts: import("zod").ZodNumber;
|
|
5989
|
+
backoffMs: import("zod").ZodNumber;
|
|
5990
|
+
multiplier: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5991
|
+
}, import("zod/v4/core").$loose>>;
|
|
5992
|
+
timeoutMs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5993
|
+
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5994
|
+
position: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5995
|
+
x: import("zod").ZodNumber;
|
|
5996
|
+
y: import("zod").ZodNumber;
|
|
5997
|
+
}, import("zod/v4/core").$loose>>;
|
|
5998
|
+
}, import("zod/v4/core").$loose>>;
|
|
5999
|
+
edges: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6000
|
+
id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6001
|
+
from: import("zod").ZodString;
|
|
6002
|
+
to: import("zod").ZodString;
|
|
6003
|
+
fromPort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6004
|
+
toPort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6005
|
+
when: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6006
|
+
expression: import("zod").ZodString;
|
|
6007
|
+
}, import("zod/v4/core").$loose>>;
|
|
6008
|
+
fields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
6009
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6010
|
+
}, import("zod/v4/core").$loose>>>;
|
|
6011
|
+
builtIn: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6012
|
+
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6013
|
+
updatedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6014
|
+
}, import("zod/v4/core").$loose>>;
|
|
6015
|
+
requestId: import("zod").ZodString;
|
|
6016
|
+
}, import("zod/v4/core").$strip>;
|
|
6017
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6018
|
+
type: import("zod").ZodLiteral<"runs.graphs.save.response">;
|
|
6019
|
+
payload: import("zod").ZodObject<{
|
|
6020
|
+
graph: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6021
|
+
id: import("zod").ZodString;
|
|
6022
|
+
name: import("zod").ZodString;
|
|
6023
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6024
|
+
inputs: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6025
|
+
key: import("zod").ZodString;
|
|
6026
|
+
label: import("zod").ZodString;
|
|
6027
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6028
|
+
multiline: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6029
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6030
|
+
defaultValue: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6031
|
+
}, import("zod/v4/core").$loose>>>;
|
|
6032
|
+
nodes: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6033
|
+
id: import("zod").ZodString;
|
|
6034
|
+
kind: import("zod").ZodString;
|
|
6035
|
+
title: import("zod").ZodString;
|
|
6036
|
+
role: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6037
|
+
prompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6038
|
+
promptFromInput: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6039
|
+
promptTemplate: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6040
|
+
templateId: import("zod").ZodString;
|
|
6041
|
+
variables: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
6042
|
+
}, import("zod/v4/core").$loose>>;
|
|
6043
|
+
autonomous: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6044
|
+
loop: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6045
|
+
times: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6046
|
+
until: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6047
|
+
criteria: import("zod").ZodArray<import("zod").ZodString>;
|
|
6048
|
+
judgeRole: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6049
|
+
max: import("zod").ZodNumber;
|
|
6050
|
+
}, import("zod/v4/core").$loose>>;
|
|
6051
|
+
}, import("zod/v4/core").$loose>>;
|
|
6052
|
+
output: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6053
|
+
fields: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6054
|
+
key: import("zod").ZodString;
|
|
6055
|
+
type: import("zod").ZodString;
|
|
6056
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6057
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6058
|
+
}, import("zod/v4/core").$loose>>;
|
|
6059
|
+
}, import("zod/v4/core").$loose>>;
|
|
6060
|
+
access: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6061
|
+
tools: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
6062
|
+
queryTools: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6063
|
+
name: import("zod").ZodString;
|
|
6064
|
+
description: import("zod").ZodString;
|
|
6065
|
+
kind: import("zod").ZodString;
|
|
6066
|
+
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6067
|
+
key: import("zod").ZodString;
|
|
6068
|
+
type: import("zod").ZodString;
|
|
6069
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6070
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6071
|
+
}, import("zod/v4/core").$loose>>>;
|
|
6072
|
+
command: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
6073
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6074
|
+
path: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6075
|
+
}, import("zod/v4/core").$loose>>>;
|
|
6076
|
+
retry: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6077
|
+
maxAttempts: import("zod").ZodNumber;
|
|
6078
|
+
backoffMs: import("zod").ZodNumber;
|
|
6079
|
+
multiplier: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6080
|
+
}, import("zod/v4/core").$loose>>;
|
|
6081
|
+
timeoutMs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6082
|
+
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6083
|
+
position: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6084
|
+
x: import("zod").ZodNumber;
|
|
6085
|
+
y: import("zod").ZodNumber;
|
|
6086
|
+
}, import("zod/v4/core").$loose>>;
|
|
6087
|
+
}, import("zod/v4/core").$loose>>;
|
|
6088
|
+
edges: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6089
|
+
id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6090
|
+
from: import("zod").ZodString;
|
|
6091
|
+
to: import("zod").ZodString;
|
|
6092
|
+
fromPort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6093
|
+
toPort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6094
|
+
when: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6095
|
+
expression: import("zod").ZodString;
|
|
6096
|
+
}, import("zod/v4/core").$loose>>;
|
|
6097
|
+
fields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
6098
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6099
|
+
}, import("zod/v4/core").$loose>>>;
|
|
6100
|
+
builtIn: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6101
|
+
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6102
|
+
updatedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6103
|
+
}, import("zod/v4/core").$loose>>;
|
|
6104
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6105
|
+
requestId: import("zod").ZodString;
|
|
6106
|
+
}, import("zod/v4/core").$strip>;
|
|
6107
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6108
|
+
type: import("zod").ZodLiteral<"runs.graphs.delete.response">;
|
|
6109
|
+
payload: import("zod").ZodObject<{
|
|
6110
|
+
deleted: import("zod").ZodBoolean;
|
|
6111
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6112
|
+
requestId: import("zod").ZodString;
|
|
6113
|
+
}, import("zod/v4/core").$strip>;
|
|
6114
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6115
|
+
type: import("zod").ZodLiteral<"runs.graphs.changed.notification">;
|
|
6116
|
+
payload: import("zod").ZodObject<{
|
|
6117
|
+
graphs: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6118
|
+
id: import("zod").ZodString;
|
|
6119
|
+
name: import("zod").ZodString;
|
|
6120
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6121
|
+
inputs: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6122
|
+
key: import("zod").ZodString;
|
|
6123
|
+
label: import("zod").ZodString;
|
|
6124
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6125
|
+
multiline: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6126
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6127
|
+
defaultValue: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6128
|
+
}, import("zod/v4/core").$loose>>>;
|
|
6129
|
+
nodes: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6130
|
+
id: import("zod").ZodString;
|
|
6131
|
+
kind: import("zod").ZodString;
|
|
6132
|
+
title: import("zod").ZodString;
|
|
6133
|
+
role: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6134
|
+
prompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6135
|
+
promptFromInput: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6136
|
+
promptTemplate: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6137
|
+
templateId: import("zod").ZodString;
|
|
6138
|
+
variables: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
6139
|
+
}, import("zod/v4/core").$loose>>;
|
|
6140
|
+
autonomous: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6141
|
+
loop: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6142
|
+
times: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6143
|
+
until: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6144
|
+
criteria: import("zod").ZodArray<import("zod").ZodString>;
|
|
6145
|
+
judgeRole: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6146
|
+
max: import("zod").ZodNumber;
|
|
6147
|
+
}, import("zod/v4/core").$loose>>;
|
|
6148
|
+
}, import("zod/v4/core").$loose>>;
|
|
6149
|
+
output: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6150
|
+
fields: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6151
|
+
key: import("zod").ZodString;
|
|
6152
|
+
type: import("zod").ZodString;
|
|
6153
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6154
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6155
|
+
}, import("zod/v4/core").$loose>>;
|
|
6156
|
+
}, import("zod/v4/core").$loose>>;
|
|
6157
|
+
access: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6158
|
+
tools: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
6159
|
+
queryTools: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6160
|
+
name: import("zod").ZodString;
|
|
6161
|
+
description: import("zod").ZodString;
|
|
6162
|
+
kind: import("zod").ZodString;
|
|
6163
|
+
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6164
|
+
key: import("zod").ZodString;
|
|
6165
|
+
type: import("zod").ZodString;
|
|
6166
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6167
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6168
|
+
}, import("zod/v4/core").$loose>>>;
|
|
6169
|
+
command: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
6170
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6171
|
+
path: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6172
|
+
}, import("zod/v4/core").$loose>>>;
|
|
6173
|
+
retry: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6174
|
+
maxAttempts: import("zod").ZodNumber;
|
|
6175
|
+
backoffMs: import("zod").ZodNumber;
|
|
6176
|
+
multiplier: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6177
|
+
}, import("zod/v4/core").$loose>>;
|
|
6178
|
+
timeoutMs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6179
|
+
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6180
|
+
position: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6181
|
+
x: import("zod").ZodNumber;
|
|
6182
|
+
y: import("zod").ZodNumber;
|
|
6183
|
+
}, import("zod/v4/core").$loose>>;
|
|
6184
|
+
}, import("zod/v4/core").$loose>>;
|
|
6185
|
+
edges: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6186
|
+
id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6187
|
+
from: import("zod").ZodString;
|
|
6188
|
+
to: import("zod").ZodString;
|
|
6189
|
+
fromPort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6190
|
+
toPort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6191
|
+
when: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6192
|
+
expression: import("zod").ZodString;
|
|
6193
|
+
}, import("zod/v4/core").$loose>>;
|
|
6194
|
+
fields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
6195
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6196
|
+
}, import("zod/v4/core").$loose>>>;
|
|
6197
|
+
builtIn: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6198
|
+
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6199
|
+
updatedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6200
|
+
}, import("zod/v4/core").$loose>>;
|
|
6201
|
+
}, import("zod/v4/core").$strip>;
|
|
6202
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6203
|
+
type: import("zod").ZodLiteral<"runs.templates.list.response">;
|
|
6204
|
+
payload: import("zod").ZodObject<{
|
|
6205
|
+
templates: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6206
|
+
id: import("zod").ZodString;
|
|
6207
|
+
name: import("zod").ZodString;
|
|
6208
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6209
|
+
content: import("zod").ZodString;
|
|
6210
|
+
variables: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6211
|
+
key: import("zod").ZodString;
|
|
6212
|
+
label: import("zod").ZodString;
|
|
6213
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6214
|
+
multiline: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6215
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6216
|
+
defaultValue: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6217
|
+
}, import("zod/v4/core").$loose>>>;
|
|
6218
|
+
snippet: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6219
|
+
builtIn: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6220
|
+
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6221
|
+
updatedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6222
|
+
}, import("zod/v4/core").$loose>>;
|
|
6223
|
+
requestId: import("zod").ZodString;
|
|
6224
|
+
}, import("zod/v4/core").$strip>;
|
|
6225
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6226
|
+
type: import("zod").ZodLiteral<"runs.templates.save.response">;
|
|
6227
|
+
payload: import("zod").ZodObject<{
|
|
6228
|
+
template: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6229
|
+
id: import("zod").ZodString;
|
|
6230
|
+
name: import("zod").ZodString;
|
|
6231
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6232
|
+
content: import("zod").ZodString;
|
|
6233
|
+
variables: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6234
|
+
key: import("zod").ZodString;
|
|
6235
|
+
label: import("zod").ZodString;
|
|
6236
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6237
|
+
multiline: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6238
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6239
|
+
defaultValue: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6240
|
+
}, import("zod/v4/core").$loose>>>;
|
|
6241
|
+
snippet: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6242
|
+
builtIn: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6243
|
+
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6244
|
+
updatedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6245
|
+
}, import("zod/v4/core").$loose>>;
|
|
6246
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6247
|
+
requestId: import("zod").ZodString;
|
|
6248
|
+
}, import("zod/v4/core").$strip>;
|
|
6249
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6250
|
+
type: import("zod").ZodLiteral<"runs.templates.delete.response">;
|
|
6251
|
+
payload: import("zod").ZodObject<{
|
|
6252
|
+
deleted: import("zod").ZodBoolean;
|
|
6253
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6254
|
+
requestId: import("zod").ZodString;
|
|
6255
|
+
}, import("zod/v4/core").$strip>;
|
|
6256
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6257
|
+
type: import("zod").ZodLiteral<"runs.templates.changed.notification">;
|
|
6258
|
+
payload: import("zod").ZodObject<{
|
|
6259
|
+
templates: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6260
|
+
id: import("zod").ZodString;
|
|
6261
|
+
name: import("zod").ZodString;
|
|
6262
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6263
|
+
content: import("zod").ZodString;
|
|
6264
|
+
variables: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6265
|
+
key: import("zod").ZodString;
|
|
6266
|
+
label: import("zod").ZodString;
|
|
6267
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6268
|
+
multiline: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6269
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6270
|
+
defaultValue: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6271
|
+
}, import("zod/v4/core").$loose>>>;
|
|
6272
|
+
snippet: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6273
|
+
builtIn: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6274
|
+
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6275
|
+
updatedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6276
|
+
}, import("zod/v4/core").$loose>>;
|
|
6277
|
+
}, import("zod/v4/core").$strip>;
|
|
6278
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6279
|
+
type: import("zod").ZodLiteral<"runs.start.response">;
|
|
6280
|
+
payload: import("zod").ZodObject<{
|
|
6281
|
+
runId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6282
|
+
agentId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6283
|
+
workspaceId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6284
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6285
|
+
requestId: import("zod").ZodString;
|
|
6286
|
+
}, import("zod/v4/core").$strip>;
|
|
5100
6287
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5101
6288
|
type: import("zod").ZodLiteral<"checkout_merge_response">;
|
|
5102
6289
|
payload: import("zod").ZodObject<{
|
|
@@ -5408,6 +6595,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5408
6595
|
draftPrs: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
5409
6596
|
reviewDecisions: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
5410
6597
|
issues: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
6598
|
+
listRepositories: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
6599
|
+
createRepository: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
5411
6600
|
}, import("zod/v4/core").$strip>>;
|
|
5412
6601
|
}, import("zod/v4/core").$strip>>;
|
|
5413
6602
|
error: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
@@ -5640,6 +6829,34 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5640
6829
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
5641
6830
|
requestId: import("zod").ZodString;
|
|
5642
6831
|
}, import("zod/v4/core").$strip>;
|
|
6832
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6833
|
+
type: import("zod").ZodLiteral<"hosting.list_repositories.response">;
|
|
6834
|
+
payload: import("zod").ZodObject<{
|
|
6835
|
+
requestId: import("zod").ZodString;
|
|
6836
|
+
provider: import("zod").ZodString;
|
|
6837
|
+
repositories: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6838
|
+
fullName: import("zod").ZodString;
|
|
6839
|
+
name: import("zod").ZodString;
|
|
6840
|
+
owner: import("zod").ZodString;
|
|
6841
|
+
cloneUrl: import("zod").ZodString;
|
|
6842
|
+
isPrivate: import("zod").ZodBoolean;
|
|
6843
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6844
|
+
updatedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6845
|
+
}, import("zod/v4/core").$strip>>;
|
|
6846
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6847
|
+
}, import("zod/v4/core").$strip>;
|
|
6848
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6849
|
+
type: import("zod").ZodLiteral<"hosting.list_owners.response">;
|
|
6850
|
+
payload: import("zod").ZodObject<{
|
|
6851
|
+
requestId: import("zod").ZodString;
|
|
6852
|
+
provider: import("zod").ZodString;
|
|
6853
|
+
owners: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6854
|
+
id: import("zod").ZodString;
|
|
6855
|
+
label: import("zod").ZodString;
|
|
6856
|
+
kind: import("zod").ZodString;
|
|
6857
|
+
}, import("zod/v4/core").$strip>>;
|
|
6858
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6859
|
+
}, import("zod/v4/core").$strip>;
|
|
5643
6860
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5644
6861
|
type: import("zod").ZodLiteral<"directory_suggestions_response">;
|
|
5645
6862
|
payload: import("zod").ZodObject<{
|
|
@@ -6132,9 +7349,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6132
7349
|
binary: "binary";
|
|
6133
7350
|
}>;
|
|
6134
7351
|
encoding: import("zod").ZodEnum<{
|
|
7352
|
+
none: "none";
|
|
6135
7353
|
"utf-8": "utf-8";
|
|
6136
7354
|
base64: "base64";
|
|
6137
|
-
none: "none";
|
|
6138
7355
|
}>;
|
|
6139
7356
|
content: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6140
7357
|
mimeType: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -6173,42 +7390,126 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6173
7390
|
requestId: import("zod").ZodString;
|
|
6174
7391
|
}, import("zod/v4/core").$strip>;
|
|
6175
7392
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6176
|
-
type: import("zod").ZodLiteral<"file.upload.response">;
|
|
7393
|
+
type: import("zod").ZodLiteral<"file.upload.response">;
|
|
7394
|
+
payload: import("zod").ZodObject<{
|
|
7395
|
+
requestId: import("zod").ZodString;
|
|
7396
|
+
file: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
7397
|
+
type: import("zod").ZodLiteral<"uploaded_file">;
|
|
7398
|
+
id: import("zod").ZodString;
|
|
7399
|
+
fileName: import("zod").ZodString;
|
|
7400
|
+
mimeType: import("zod").ZodString;
|
|
7401
|
+
size: import("zod").ZodNumber;
|
|
7402
|
+
path: import("zod").ZodString;
|
|
7403
|
+
}, import("zod/v4/core").$strip>>;
|
|
7404
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7405
|
+
}, import("zod/v4/core").$strip>;
|
|
7406
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7407
|
+
type: import("zod").ZodLiteral<"file.write.response">;
|
|
7408
|
+
payload: import("zod").ZodObject<{
|
|
7409
|
+
cwd: import("zod").ZodString;
|
|
7410
|
+
path: import("zod").ZodString;
|
|
7411
|
+
result: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
7412
|
+
status: import("zod").ZodLiteral<"ok">;
|
|
7413
|
+
modifiedAt: import("zod").ZodString;
|
|
7414
|
+
hash: import("zod").ZodString;
|
|
7415
|
+
size: import("zod").ZodNumber;
|
|
7416
|
+
eol: import("zod").ZodEnum<{
|
|
7417
|
+
lf: "lf";
|
|
7418
|
+
crlf: "crlf";
|
|
7419
|
+
}>;
|
|
7420
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7421
|
+
status: import("zod").ZodLiteral<"conflict">;
|
|
7422
|
+
modifiedAt: import("zod").ZodString;
|
|
7423
|
+
hash: import("zod").ZodString;
|
|
7424
|
+
content: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7425
|
+
eol: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
7426
|
+
lf: "lf";
|
|
7427
|
+
crlf: "crlf";
|
|
7428
|
+
}>>;
|
|
7429
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7430
|
+
status: import("zod").ZodLiteral<"error">;
|
|
7431
|
+
message: import("zod").ZodString;
|
|
7432
|
+
}, import("zod/v4/core").$strip>], "status">;
|
|
7433
|
+
requestId: import("zod").ZodString;
|
|
7434
|
+
}, import("zod/v4/core").$strip>;
|
|
7435
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7436
|
+
type: import("zod").ZodLiteral<"file.create.response">;
|
|
7437
|
+
payload: import("zod").ZodObject<{
|
|
7438
|
+
cwd: import("zod").ZodString;
|
|
7439
|
+
path: import("zod").ZodString;
|
|
7440
|
+
result: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
7441
|
+
status: import("zod").ZodLiteral<"ok">;
|
|
7442
|
+
path: import("zod").ZodString;
|
|
7443
|
+
kind: import("zod").ZodEnum<{
|
|
7444
|
+
file: "file";
|
|
7445
|
+
directory: "directory";
|
|
7446
|
+
}>;
|
|
7447
|
+
modifiedAt: import("zod").ZodString;
|
|
7448
|
+
size: import("zod").ZodNumber;
|
|
7449
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7450
|
+
status: import("zod").ZodLiteral<"exists">;
|
|
7451
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7452
|
+
status: import("zod").ZodLiteral<"error">;
|
|
7453
|
+
message: import("zod").ZodString;
|
|
7454
|
+
}, import("zod/v4/core").$strip>], "status">;
|
|
7455
|
+
requestId: import("zod").ZodString;
|
|
7456
|
+
}, import("zod/v4/core").$strip>;
|
|
7457
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7458
|
+
type: import("zod").ZodLiteral<"file.delete.response">;
|
|
6177
7459
|
payload: import("zod").ZodObject<{
|
|
6178
|
-
|
|
6179
|
-
|
|
6180
|
-
|
|
6181
|
-
|
|
6182
|
-
fileName: import("zod").ZodString;
|
|
6183
|
-
mimeType: import("zod").ZodString;
|
|
6184
|
-
size: import("zod").ZodNumber;
|
|
7460
|
+
cwd: import("zod").ZodString;
|
|
7461
|
+
path: import("zod").ZodString;
|
|
7462
|
+
result: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
7463
|
+
status: import("zod").ZodLiteral<"ok">;
|
|
6185
7464
|
path: import("zod").ZodString;
|
|
6186
|
-
|
|
6187
|
-
|
|
7465
|
+
kind: import("zod").ZodEnum<{
|
|
7466
|
+
file: "file";
|
|
7467
|
+
directory: "directory";
|
|
7468
|
+
}>;
|
|
7469
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7470
|
+
status: import("zod").ZodLiteral<"not_found">;
|
|
7471
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7472
|
+
status: import("zod").ZodLiteral<"not_empty">;
|
|
7473
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7474
|
+
status: import("zod").ZodLiteral<"error">;
|
|
7475
|
+
message: import("zod").ZodString;
|
|
7476
|
+
}, import("zod/v4/core").$strip>], "status">;
|
|
7477
|
+
requestId: import("zod").ZodString;
|
|
6188
7478
|
}, import("zod/v4/core").$strip>;
|
|
6189
7479
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6190
|
-
type: import("zod").ZodLiteral<"file.
|
|
7480
|
+
type: import("zod").ZodLiteral<"file.rename.response">;
|
|
6191
7481
|
payload: import("zod").ZodObject<{
|
|
6192
7482
|
cwd: import("zod").ZodString;
|
|
6193
7483
|
path: import("zod").ZodString;
|
|
7484
|
+
newPath: import("zod").ZodString;
|
|
6194
7485
|
result: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
6195
7486
|
status: import("zod").ZodLiteral<"ok">;
|
|
6196
|
-
|
|
6197
|
-
|
|
6198
|
-
|
|
6199
|
-
|
|
6200
|
-
|
|
6201
|
-
crlf: "crlf";
|
|
7487
|
+
from: import("zod").ZodString;
|
|
7488
|
+
to: import("zod").ZodString;
|
|
7489
|
+
kind: import("zod").ZodEnum<{
|
|
7490
|
+
file: "file";
|
|
7491
|
+
directory: "directory";
|
|
6202
7492
|
}>;
|
|
6203
7493
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6204
|
-
status: import("zod").ZodLiteral<"
|
|
6205
|
-
|
|
6206
|
-
|
|
6207
|
-
|
|
6208
|
-
|
|
6209
|
-
|
|
6210
|
-
|
|
6211
|
-
|
|
7494
|
+
status: import("zod").ZodLiteral<"not_found">;
|
|
7495
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7496
|
+
status: import("zod").ZodLiteral<"exists">;
|
|
7497
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7498
|
+
status: import("zod").ZodLiteral<"error">;
|
|
7499
|
+
message: import("zod").ZodString;
|
|
7500
|
+
}, import("zod/v4/core").$strip>], "status">;
|
|
7501
|
+
requestId: import("zod").ZodString;
|
|
7502
|
+
}, import("zod/v4/core").$strip>;
|
|
7503
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7504
|
+
type: import("zod").ZodLiteral<"file.refine.response">;
|
|
7505
|
+
payload: import("zod").ZodObject<{
|
|
7506
|
+
cwd: import("zod").ZodString;
|
|
7507
|
+
result: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
7508
|
+
status: import("zod").ZodLiteral<"ok">;
|
|
7509
|
+
files: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7510
|
+
id: import("zod").ZodString;
|
|
7511
|
+
content: import("zod").ZodString;
|
|
7512
|
+
}, import("zod/v4/core").$strip>>;
|
|
6212
7513
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6213
7514
|
status: import("zod").ZodLiteral<"error">;
|
|
6214
7515
|
message: import("zod").ZodString;
|
|
@@ -6239,8 +7540,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6239
7540
|
cwd: import("zod").ZodString;
|
|
6240
7541
|
path: import("zod").ZodString;
|
|
6241
7542
|
change: import("zod").ZodEnum<{
|
|
6242
|
-
changed: "changed";
|
|
6243
7543
|
deleted: "deleted";
|
|
7544
|
+
changed: "changed";
|
|
6244
7545
|
recreated: "recreated";
|
|
6245
7546
|
}>;
|
|
6246
7547
|
modifiedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -6350,6 +7651,282 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6350
7651
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6351
7652
|
requestId: import("zod").ZodString;
|
|
6352
7653
|
}, import("zod/v4/core").$strip>;
|
|
7654
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7655
|
+
type: import("zod").ZodLiteral<"code.definition.response">;
|
|
7656
|
+
payload: import("zod").ZodObject<{
|
|
7657
|
+
cwd: import("zod").ZodString;
|
|
7658
|
+
path: import("zod").ZodString;
|
|
7659
|
+
status: import("zod").ZodEnum<{
|
|
7660
|
+
unavailable: "unavailable";
|
|
7661
|
+
ok: "ok";
|
|
7662
|
+
indexing: "indexing";
|
|
7663
|
+
}>;
|
|
7664
|
+
locations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7665
|
+
path: import("zod").ZodString;
|
|
7666
|
+
line: import("zod").ZodNumber;
|
|
7667
|
+
column: import("zod").ZodNumber;
|
|
7668
|
+
endLine: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7669
|
+
endColumn: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7670
|
+
serverId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7671
|
+
}, import("zod/v4/core").$strip>>;
|
|
7672
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7673
|
+
requestId: import("zod").ZodString;
|
|
7674
|
+
}, import("zod/v4/core").$strip>;
|
|
7675
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7676
|
+
type: import("zod").ZodLiteral<"code.document.sync.response">;
|
|
7677
|
+
payload: import("zod").ZodObject<{
|
|
7678
|
+
cwd: import("zod").ZodString;
|
|
7679
|
+
path: import("zod").ZodString;
|
|
7680
|
+
ok: import("zod").ZodBoolean;
|
|
7681
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7682
|
+
requestId: import("zod").ZodString;
|
|
7683
|
+
}, import("zod/v4/core").$strip>;
|
|
7684
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7685
|
+
type: import("zod").ZodLiteral<"code.document.close.response">;
|
|
7686
|
+
payload: import("zod").ZodObject<{
|
|
7687
|
+
cwd: import("zod").ZodString;
|
|
7688
|
+
path: import("zod").ZodString;
|
|
7689
|
+
ok: import("zod").ZodBoolean;
|
|
7690
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7691
|
+
requestId: import("zod").ZodString;
|
|
7692
|
+
}, import("zod/v4/core").$strip>;
|
|
7693
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7694
|
+
type: import("zod").ZodLiteral<"code.hover.response">;
|
|
7695
|
+
payload: import("zod").ZodObject<{
|
|
7696
|
+
cwd: import("zod").ZodString;
|
|
7697
|
+
path: import("zod").ZodString;
|
|
7698
|
+
status: import("zod").ZodEnum<{
|
|
7699
|
+
unavailable: "unavailable";
|
|
7700
|
+
ok: "ok";
|
|
7701
|
+
indexing: "indexing";
|
|
7702
|
+
}>;
|
|
7703
|
+
markdown: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7704
|
+
range: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
7705
|
+
line: import("zod").ZodNumber;
|
|
7706
|
+
column: import("zod").ZodNumber;
|
|
7707
|
+
endLine: import("zod").ZodNumber;
|
|
7708
|
+
endColumn: import("zod").ZodNumber;
|
|
7709
|
+
}, import("zod/v4/core").$strip>>;
|
|
7710
|
+
serverId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7711
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7712
|
+
requestId: import("zod").ZodString;
|
|
7713
|
+
}, import("zod/v4/core").$strip>;
|
|
7714
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7715
|
+
type: import("zod").ZodLiteral<"code.references.response">;
|
|
7716
|
+
payload: import("zod").ZodObject<{
|
|
7717
|
+
cwd: import("zod").ZodString;
|
|
7718
|
+
path: import("zod").ZodString;
|
|
7719
|
+
status: import("zod").ZodEnum<{
|
|
7720
|
+
unavailable: "unavailable";
|
|
7721
|
+
ok: "ok";
|
|
7722
|
+
indexing: "indexing";
|
|
7723
|
+
}>;
|
|
7724
|
+
locations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7725
|
+
path: import("zod").ZodString;
|
|
7726
|
+
line: import("zod").ZodNumber;
|
|
7727
|
+
column: import("zod").ZodNumber;
|
|
7728
|
+
endLine: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7729
|
+
endColumn: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7730
|
+
serverId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7731
|
+
}, import("zod/v4/core").$strip>>;
|
|
7732
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7733
|
+
requestId: import("zod").ZodString;
|
|
7734
|
+
}, import("zod/v4/core").$strip>;
|
|
7735
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7736
|
+
type: import("zod").ZodLiteral<"code.rename.preview.response">;
|
|
7737
|
+
payload: import("zod").ZodObject<{
|
|
7738
|
+
cwd: import("zod").ZodString;
|
|
7739
|
+
path: import("zod").ZodString;
|
|
7740
|
+
newName: import("zod").ZodString;
|
|
7741
|
+
status: import("zod").ZodEnum<{
|
|
7742
|
+
unavailable: "unavailable";
|
|
7743
|
+
ok: "ok";
|
|
7744
|
+
indexing: "indexing";
|
|
7745
|
+
}>;
|
|
7746
|
+
files: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7747
|
+
path: import("zod").ZodString;
|
|
7748
|
+
edits: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7749
|
+
line: import("zod").ZodNumber;
|
|
7750
|
+
column: import("zod").ZodNumber;
|
|
7751
|
+
endLine: import("zod").ZodNumber;
|
|
7752
|
+
endColumn: import("zod").ZodNumber;
|
|
7753
|
+
newText: import("zod").ZodString;
|
|
7754
|
+
oldText: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7755
|
+
}, import("zod/v4/core").$strip>>;
|
|
7756
|
+
}, import("zod/v4/core").$strip>>;
|
|
7757
|
+
fileCount: import("zod").ZodNumber;
|
|
7758
|
+
editCount: import("zod").ZodNumber;
|
|
7759
|
+
planId: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7760
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7761
|
+
requestId: import("zod").ZodString;
|
|
7762
|
+
}, import("zod/v4/core").$strip>;
|
|
7763
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7764
|
+
type: import("zod").ZodLiteral<"code.rename.apply.response">;
|
|
7765
|
+
payload: import("zod").ZodObject<{
|
|
7766
|
+
cwd: import("zod").ZodString;
|
|
7767
|
+
path: import("zod").ZodString;
|
|
7768
|
+
newName: import("zod").ZodString;
|
|
7769
|
+
status: import("zod").ZodEnum<{
|
|
7770
|
+
ok: "ok";
|
|
7771
|
+
expired: "expired";
|
|
7772
|
+
escaped: "escaped";
|
|
7773
|
+
}>;
|
|
7774
|
+
runId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7775
|
+
files: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7776
|
+
path: import("zod").ZodString;
|
|
7777
|
+
kind: import("zod").ZodEnum<{
|
|
7778
|
+
failed: "failed";
|
|
7779
|
+
partial: "partial";
|
|
7780
|
+
applied: "applied";
|
|
7781
|
+
}>;
|
|
7782
|
+
appliedEdits: import("zod").ZodNumber;
|
|
7783
|
+
skippedEdits: import("zod").ZodNumber;
|
|
7784
|
+
reason: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7785
|
+
}, import("zod/v4/core").$strip>>;
|
|
7786
|
+
appliedFiles: import("zod").ZodNumber;
|
|
7787
|
+
appliedEdits: import("zod").ZodNumber;
|
|
7788
|
+
skippedEdits: import("zod").ZodNumber;
|
|
7789
|
+
complete: import("zod").ZodBoolean;
|
|
7790
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7791
|
+
requestId: import("zod").ZodString;
|
|
7792
|
+
}, import("zod/v4/core").$strip>;
|
|
7793
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7794
|
+
type: import("zod").ZodLiteral<"code.rename.undo.response">;
|
|
7795
|
+
payload: import("zod").ZodObject<{
|
|
7796
|
+
cwd: import("zod").ZodString;
|
|
7797
|
+
runId: import("zod").ZodString;
|
|
7798
|
+
status: import("zod").ZodEnum<{
|
|
7799
|
+
ok: "ok";
|
|
7800
|
+
expired: "expired";
|
|
7801
|
+
}>;
|
|
7802
|
+
files: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7803
|
+
path: import("zod").ZodString;
|
|
7804
|
+
kind: import("zod").ZodEnum<{
|
|
7805
|
+
failed: "failed";
|
|
7806
|
+
restored: "restored";
|
|
7807
|
+
changedSince: "changedSince";
|
|
7808
|
+
}>;
|
|
7809
|
+
reason: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7810
|
+
}, import("zod/v4/core").$strip>>;
|
|
7811
|
+
restoredFiles: import("zod").ZodNumber;
|
|
7812
|
+
complete: import("zod").ZodBoolean;
|
|
7813
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7814
|
+
requestId: import("zod").ZodString;
|
|
7815
|
+
}, import("zod/v4/core").$strip>;
|
|
7816
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7817
|
+
type: import("zod").ZodLiteral<"lsp.servers.list.response">;
|
|
7818
|
+
payload: import("zod").ZodObject<{
|
|
7819
|
+
cwd: import("zod").ZodString;
|
|
7820
|
+
languages: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7821
|
+
id: import("zod").ZodString;
|
|
7822
|
+
enabled: import("zod").ZodBoolean;
|
|
7823
|
+
installed: import("zod").ZodBoolean;
|
|
7824
|
+
running: import("zod").ZodBoolean;
|
|
7825
|
+
rung: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7826
|
+
bin: import("zod").ZodString;
|
|
7827
|
+
extensions: import("zod").ZodArray<import("zod").ZodString>;
|
|
7828
|
+
indexCost: import("zod").ZodString;
|
|
7829
|
+
}, import("zod/v4/core").$strip>>;
|
|
7830
|
+
running: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7831
|
+
rootPath: import("zod").ZodString;
|
|
7832
|
+
serverId: import("zod").ZodString;
|
|
7833
|
+
uptimeMs: import("zod").ZodNumber;
|
|
7834
|
+
lastUsedAt: import("zod").ZodNumber;
|
|
7835
|
+
}, import("zod/v4/core").$strip>>;
|
|
7836
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7837
|
+
requestId: import("zod").ZodString;
|
|
7838
|
+
}, import("zod/v4/core").$strip>;
|
|
7839
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7840
|
+
type: import("zod").ZodLiteral<"lsp.server.stop.response">;
|
|
7841
|
+
payload: import("zod").ZodObject<{
|
|
7842
|
+
rootPath: import("zod").ZodString;
|
|
7843
|
+
serverId: import("zod").ZodString;
|
|
7844
|
+
ok: import("zod").ZodBoolean;
|
|
7845
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7846
|
+
requestId: import("zod").ZodString;
|
|
7847
|
+
}, import("zod/v4/core").$strip>;
|
|
7848
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7849
|
+
type: import("zod").ZodLiteral<"code.solution.list.response">;
|
|
7850
|
+
payload: import("zod").ZodObject<{
|
|
7851
|
+
cwd: import("zod").ZodString;
|
|
7852
|
+
solutions: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7853
|
+
path: import("zod").ZodString;
|
|
7854
|
+
name: import("zod").ZodString;
|
|
7855
|
+
format: import("zod").ZodEnum<{
|
|
7856
|
+
sln: "sln";
|
|
7857
|
+
slnx: "slnx";
|
|
7858
|
+
}>;
|
|
7859
|
+
}, import("zod/v4/core").$strip>>;
|
|
7860
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7861
|
+
requestId: import("zod").ZodString;
|
|
7862
|
+
}, import("zod/v4/core").$strip>;
|
|
7863
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7864
|
+
type: import("zod").ZodLiteral<"code.solution.get_tree.response">;
|
|
7865
|
+
payload: import("zod").ZodObject<{
|
|
7866
|
+
cwd: import("zod").ZodString;
|
|
7867
|
+
solutionPath: import("zod").ZodString;
|
|
7868
|
+
name: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7869
|
+
format: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
7870
|
+
sln: "sln";
|
|
7871
|
+
slnx: "slnx";
|
|
7872
|
+
}>>;
|
|
7873
|
+
folders: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7874
|
+
path: import("zod").ZodString;
|
|
7875
|
+
name: import("zod").ZodString;
|
|
7876
|
+
parentPath: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7877
|
+
}, import("zod/v4/core").$strip>>;
|
|
7878
|
+
projects: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7879
|
+
id: import("zod").ZodString;
|
|
7880
|
+
name: import("zod").ZodString;
|
|
7881
|
+
path: import("zod").ZodString;
|
|
7882
|
+
outsideWorkspace: import("zod").ZodBoolean;
|
|
7883
|
+
folderPath: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7884
|
+
typeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7885
|
+
}, import("zod/v4/core").$strip>>;
|
|
7886
|
+
buildTypes: import("zod").ZodArray<import("zod").ZodString>;
|
|
7887
|
+
platforms: import("zod").ZodArray<import("zod").ZodString>;
|
|
7888
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7889
|
+
requestId: import("zod").ZodString;
|
|
7890
|
+
}, import("zod/v4/core").$strip>;
|
|
7891
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7892
|
+
type: import("zod").ZodLiteral<"code.solution.load_project.response">;
|
|
7893
|
+
payload: import("zod").ZodObject<{
|
|
7894
|
+
cwd: import("zod").ZodString;
|
|
7895
|
+
solutionPath: import("zod").ZodString;
|
|
7896
|
+
projectPath: import("zod").ZodString;
|
|
7897
|
+
status: import("zod").ZodEnum<{
|
|
7898
|
+
failed: "failed";
|
|
7899
|
+
unavailable: "unavailable";
|
|
7900
|
+
ok: "ok";
|
|
7901
|
+
}>;
|
|
7902
|
+
nodes: import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
7903
|
+
kind: import("zod").ZodLiteral<"directory">;
|
|
7904
|
+
id: import("zod").ZodString;
|
|
7905
|
+
parentId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7906
|
+
name: import("zod").ZodString;
|
|
7907
|
+
path: import("zod").ZodString;
|
|
7908
|
+
outsideWorkspace: import("zod").ZodBoolean;
|
|
7909
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7910
|
+
kind: import("zod").ZodLiteral<"file">;
|
|
7911
|
+
id: import("zod").ZodString;
|
|
7912
|
+
parentId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7913
|
+
name: import("zod").ZodString;
|
|
7914
|
+
path: import("zod").ZodString;
|
|
7915
|
+
outsideWorkspace: import("zod").ZodBoolean;
|
|
7916
|
+
itemType: import("zod").ZodString;
|
|
7917
|
+
isImplicit: import("zod").ZodBoolean;
|
|
7918
|
+
}, import("zod/v4/core").$strip>], "kind">>;
|
|
7919
|
+
projectReferences: import("zod").ZodArray<import("zod").ZodString>;
|
|
7920
|
+
packageReferences: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7921
|
+
name: import("zod").ZodString;
|
|
7922
|
+
version: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7923
|
+
}, import("zod/v4/core").$strip>>;
|
|
7924
|
+
targetFrameworks: import("zod").ZodArray<import("zod").ZodString>;
|
|
7925
|
+
outputType: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7926
|
+
isSdkStyle: import("zod").ZodBoolean;
|
|
7927
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7928
|
+
requestId: import("zod").ZodString;
|
|
7929
|
+
}, import("zod/v4/core").$strip>;
|
|
6353
7930
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6354
7931
|
type: import("zod").ZodLiteral<"list_provider_models_response">;
|
|
6355
7932
|
payload: import("zod").ZodObject<{
|
|
@@ -6735,6 +8312,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6735
8312
|
nodeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6736
8313
|
line: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6737
8314
|
lineEnd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8315
|
+
fixable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
8316
|
+
snippet: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6738
8317
|
}, import("zod/v4/core").$strip>>;
|
|
6739
8318
|
}, import("zod/v4/core").$strip>>;
|
|
6740
8319
|
edges: import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -6797,7 +8376,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6797
8376
|
nodeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6798
8377
|
line: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6799
8378
|
lineEnd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8379
|
+
fixable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
8380
|
+
snippet: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6800
8381
|
}, import("zod/v4/core").$strip>>;
|
|
8382
|
+
personalityId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8383
|
+
personalityMemoryTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6801
8384
|
}, import("zod/v4/core").$strip>>;
|
|
6802
8385
|
}, import("zod/v4/core").$strip>;
|
|
6803
8386
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -6807,6 +8390,59 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6807
8390
|
ok: import("zod").ZodBoolean;
|
|
6808
8391
|
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6809
8392
|
}, import("zod/v4/core").$strip>;
|
|
8393
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
8394
|
+
type: import("zod").ZodLiteral<"context.findings.fix.response">;
|
|
8395
|
+
payload: import("zod").ZodObject<{
|
|
8396
|
+
requestId: import("zod").ZodString;
|
|
8397
|
+
fixedCount: import("zod").ZodNumber;
|
|
8398
|
+
failedCount: import("zod").ZodNumber;
|
|
8399
|
+
errors: import("zod").ZodArray<import("zod").ZodString>;
|
|
8400
|
+
}, import("zod/v4/core").$strip>;
|
|
8401
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
8402
|
+
type: import("zod").ZodLiteral<"personality.memory.list.response">;
|
|
8403
|
+
payload: import("zod").ZodObject<{
|
|
8404
|
+
requestId: import("zod").ZodString;
|
|
8405
|
+
personalityId: import("zod").ZodString;
|
|
8406
|
+
personalityName: import("zod").ZodString;
|
|
8407
|
+
enabled: import("zod").ZodBoolean;
|
|
8408
|
+
entries: import("zod").ZodArray<import("zod").ZodObject<{
|
|
8409
|
+
id: import("zod").ZodString;
|
|
8410
|
+
text: import("zod").ZodString;
|
|
8411
|
+
scope: import("zod").ZodString;
|
|
8412
|
+
projectRoot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8413
|
+
createdAt: import("zod").ZodString;
|
|
8414
|
+
updatedAt: import("zod").ZodString;
|
|
8415
|
+
source: import("zod").ZodString;
|
|
8416
|
+
reinforcedCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8417
|
+
transferredFrom: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8418
|
+
}, import("zod/v4/core").$loose>>;
|
|
8419
|
+
brief: import("zod").ZodString;
|
|
8420
|
+
briefTokens: import("zod").ZodNumber;
|
|
8421
|
+
briefOmittedCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8422
|
+
projectRoot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8423
|
+
}, import("zod/v4/core").$strip>;
|
|
8424
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
8425
|
+
type: import("zod").ZodLiteral<"personality.memory.update.response">;
|
|
8426
|
+
payload: import("zod").ZodObject<{
|
|
8427
|
+
requestId: import("zod").ZodString;
|
|
8428
|
+
ok: import("zod").ZodBoolean;
|
|
8429
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8430
|
+
}, import("zod/v4/core").$strip>;
|
|
8431
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
8432
|
+
type: import("zod").ZodLiteral<"personality.memory.transfer.response">;
|
|
8433
|
+
payload: import("zod").ZodObject<{
|
|
8434
|
+
requestId: import("zod").ZodString;
|
|
8435
|
+
ok: import("zod").ZodBoolean;
|
|
8436
|
+
transferred: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8437
|
+
merged: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8438
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8439
|
+
}, import("zod/v4/core").$strip>;
|
|
8440
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
8441
|
+
type: import("zod").ZodLiteral<"personality.memory.stats.response">;
|
|
8442
|
+
payload: import("zod").ZodObject<{
|
|
8443
|
+
requestId: import("zod").ZodString;
|
|
8444
|
+
counts: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodNumber>;
|
|
8445
|
+
}, import("zod/v4/core").$strip>;
|
|
6810
8446
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6811
8447
|
type: import("zod").ZodLiteral<"stats.activity.reset.response">;
|
|
6812
8448
|
payload: import("zod").ZodObject<{
|
|
@@ -8087,10 +9723,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
8087
9723
|
payload: import("zod").ZodObject<{
|
|
8088
9724
|
requestId: import("zod").ZodString;
|
|
8089
9725
|
phase: import("zod").ZodEnum<{
|
|
9726
|
+
complete: "complete";
|
|
8090
9727
|
starting: "starting";
|
|
8091
9728
|
downloading: "downloading";
|
|
8092
9729
|
installing: "installing";
|
|
8093
|
-
complete: "complete";
|
|
8094
9730
|
}>;
|
|
8095
9731
|
}, import("zod/v4/core").$strip>;
|
|
8096
9732
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|