@otto-code/protocol 0.6.7 → 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 +21 -0
- package/dist/agent-labels.js +66 -0
- package/dist/agent-types.d.ts +55 -0
- package/dist/agent-types.js +14 -0
- package/dist/generated/validation/ws-outbound.aot.js +37893 -31702
- package/dist/git-hosting.d.ts +2 -0
- package/dist/git-hosting.js +6 -0
- package/dist/messages.d.ts +6333 -12
- package/dist/messages.js +1760 -59
- package/dist/model-tiers.js +2 -0
- package/dist/orchestration.d.ts +172 -0
- package/dist/orchestration.js +226 -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 +1008 -2
- 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<{
|
|
@@ -2459,6 +2592,15 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2459
2592
|
}, import("zod/v4/core").$strip>>;
|
|
2460
2593
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2461
2594
|
}, import("zod/v4/core").$strip>;
|
|
2595
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2596
|
+
type: import("zod").ZodLiteral<"worktree.baseRef.set.response">;
|
|
2597
|
+
payload: import("zod").ZodObject<{
|
|
2598
|
+
requestId: import("zod").ZodString;
|
|
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>;
|
|
2462
2604
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2463
2605
|
type: import("zod").ZodLiteral<"worktree.reattach.list.response">;
|
|
2464
2606
|
payload: import("zod").ZodObject<{
|
|
@@ -2938,6 +3080,26 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2938
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>>>;
|
|
2939
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>>>;
|
|
2940
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>>>;
|
|
2941
3103
|
lastError: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2942
3104
|
title: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2943
3105
|
labels: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
@@ -3096,6 +3258,26 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3096
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>>>;
|
|
3097
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>>>;
|
|
3098
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>>>;
|
|
3099
3281
|
lastError: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3100
3282
|
title: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3101
3283
|
labels: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
@@ -3248,6 +3430,26 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3248
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>>>;
|
|
3249
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>>>;
|
|
3250
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>>>;
|
|
3251
3453
|
lastError: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3252
3454
|
title: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3253
3455
|
labels: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
@@ -3328,6 +3530,26 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3328
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>>>;
|
|
3329
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>>>;
|
|
3330
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>>>;
|
|
3331
3553
|
lastError: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3332
3554
|
title: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3333
3555
|
labels: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
@@ -3786,6 +4008,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3786
4008
|
agentId: import("zod").ZodString;
|
|
3787
4009
|
accepted: import("zod").ZodBoolean;
|
|
3788
4010
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4011
|
+
queued: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4012
|
+
queuedMessageId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3789
4013
|
}, import("zod/v4/core").$strip>;
|
|
3790
4014
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3791
4015
|
type: import("zod").ZodLiteral<"set_voice_mode_response">;
|
|
@@ -3851,6 +4075,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3851
4075
|
agents: "agents";
|
|
3852
4076
|
terminals: "terminals";
|
|
3853
4077
|
schedules: "schedules";
|
|
4078
|
+
widgets: "widgets";
|
|
3854
4079
|
workspace: "workspace";
|
|
3855
4080
|
}>>>;
|
|
3856
4081
|
}, import("zod/v4/core").$loose>;
|
|
@@ -3878,6 +4103,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3878
4103
|
agents: "agents";
|
|
3879
4104
|
terminals: "terminals";
|
|
3880
4105
|
schedules: "schedules";
|
|
4106
|
+
widgets: "widgets";
|
|
3881
4107
|
workspace: "workspace";
|
|
3882
4108
|
}>>>;
|
|
3883
4109
|
}, import("zod/v4/core").$loose>>>;
|
|
@@ -3962,6 +4188,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3962
4188
|
waiting: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
3963
4189
|
done: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
3964
4190
|
}, import("zod/v4/core").$loose>>;
|
|
4191
|
+
memoryEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
3965
4192
|
}, import("zod/v4/core").$loose>>>;
|
|
3966
4193
|
}, import("zod/v4/core").$loose>>;
|
|
3967
4194
|
agentTeams: import("zod").ZodDefault<import("zod").ZodObject<{
|
|
@@ -3991,6 +4218,18 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3991
4218
|
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3992
4219
|
savedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3993
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>>;
|
|
3994
4233
|
}, import("zod/v4/core").$loose>;
|
|
3995
4234
|
}, import("zod/v4/core").$loose>;
|
|
3996
4235
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -4008,6 +4247,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4008
4247
|
agents: "agents";
|
|
4009
4248
|
terminals: "terminals";
|
|
4010
4249
|
schedules: "schedules";
|
|
4250
|
+
widgets: "widgets";
|
|
4011
4251
|
workspace: "workspace";
|
|
4012
4252
|
}>>>;
|
|
4013
4253
|
}, import("zod/v4/core").$loose>;
|
|
@@ -4035,6 +4275,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4035
4275
|
agents: "agents";
|
|
4036
4276
|
terminals: "terminals";
|
|
4037
4277
|
schedules: "schedules";
|
|
4278
|
+
widgets: "widgets";
|
|
4038
4279
|
workspace: "workspace";
|
|
4039
4280
|
}>>>;
|
|
4040
4281
|
}, import("zod/v4/core").$loose>>>;
|
|
@@ -4119,6 +4360,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4119
4360
|
waiting: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
4120
4361
|
done: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
4121
4362
|
}, import("zod/v4/core").$loose>>;
|
|
4363
|
+
memoryEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4122
4364
|
}, import("zod/v4/core").$loose>>>;
|
|
4123
4365
|
}, import("zod/v4/core").$loose>>;
|
|
4124
4366
|
agentTeams: import("zod").ZodDefault<import("zod").ZodObject<{
|
|
@@ -4148,6 +4390,18 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4148
4390
|
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4149
4391
|
savedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4150
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>>;
|
|
4151
4405
|
}, import("zod/v4/core").$loose>;
|
|
4152
4406
|
}, import("zod/v4/core").$loose>;
|
|
4153
4407
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -4385,6 +4639,33 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4385
4639
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4386
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>>>>;
|
|
4387
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>;
|
|
4388
4669
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4389
4670
|
type: import("zod").ZodLiteral<"agent.subagent.stop.response">;
|
|
4390
4671
|
payload: import("zod").ZodObject<{
|
|
@@ -4536,6 +4817,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4536
4817
|
nodeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4537
4818
|
line: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4538
4819
|
lineEnd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4820
|
+
fixable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4821
|
+
snippet: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4539
4822
|
}, import("zod/v4/core").$strip>>;
|
|
4540
4823
|
}, import("zod/v4/core").$strip>>;
|
|
4541
4824
|
edges: import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -4598,7 +4881,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4598
4881
|
nodeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4599
4882
|
line: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4600
4883
|
lineEnd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4884
|
+
fixable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4885
|
+
snippet: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4601
4886
|
}, import("zod/v4/core").$strip>>;
|
|
4887
|
+
personalityId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4888
|
+
personalityMemoryTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4602
4889
|
}, import("zod/v4/core").$strip>>;
|
|
4603
4890
|
}, import("zod/v4/core").$strip>;
|
|
4604
4891
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -4636,6 +4923,22 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4636
4923
|
customName: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4637
4924
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4638
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>;
|
|
4639
4942
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4640
4943
|
type: import("zod").ZodLiteral<"project.remove.response">;
|
|
4641
4944
|
payload: import("zod").ZodObject<{
|
|
@@ -4754,6 +5057,26 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4754
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>>>;
|
|
4755
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>>>;
|
|
4756
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>>>;
|
|
4757
5080
|
lastError: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4758
5081
|
title: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4759
5082
|
labels: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
@@ -4799,6 +5122,17 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4799
5122
|
agentId: import("zod").ZodString;
|
|
4800
5123
|
requestId: import("zod").ZodString;
|
|
4801
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>;
|
|
4802
5136
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4803
5137
|
type: import("zod").ZodLiteral<"agent_archived">;
|
|
4804
5138
|
payload: import("zod").ZodObject<{
|
|
@@ -4833,6 +5167,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4833
5167
|
message: import("zod").ZodString;
|
|
4834
5168
|
}, import("zod/v4/core").$strip>>;
|
|
4835
5169
|
requestId: import("zod").ZodString;
|
|
5170
|
+
gitStateAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4836
5171
|
isGit: import("zod").ZodLiteral<false>;
|
|
4837
5172
|
isOttoOwnedWorktree: import("zod").ZodLiteral<false>;
|
|
4838
5173
|
repoRoot: import("zod").ZodNull;
|
|
@@ -4856,6 +5191,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4856
5191
|
message: import("zod").ZodString;
|
|
4857
5192
|
}, import("zod/v4/core").$strip>>;
|
|
4858
5193
|
requestId: import("zod").ZodString;
|
|
5194
|
+
gitStateAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4859
5195
|
isGit: import("zod").ZodLiteral<true>;
|
|
4860
5196
|
isOttoOwnedWorktree: import("zod").ZodLiteral<false>;
|
|
4861
5197
|
repoRoot: import("zod").ZodString;
|
|
@@ -4883,6 +5219,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4883
5219
|
message: import("zod").ZodString;
|
|
4884
5220
|
}, import("zod/v4/core").$strip>>;
|
|
4885
5221
|
requestId: import("zod").ZodString;
|
|
5222
|
+
gitStateAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4886
5223
|
isGit: import("zod").ZodLiteral<true>;
|
|
4887
5224
|
isOttoOwnedWorktree: import("zod").ZodLiteral<true>;
|
|
4888
5225
|
repoRoot: import("zod").ZodString;
|
|
@@ -4913,6 +5250,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4913
5250
|
message: import("zod").ZodString;
|
|
4914
5251
|
}, import("zod/v4/core").$strip>>;
|
|
4915
5252
|
requestId: import("zod").ZodString;
|
|
5253
|
+
gitStateAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4916
5254
|
isGit: import("zod").ZodLiteral<false>;
|
|
4917
5255
|
isOttoOwnedWorktree: import("zod").ZodLiteral<false>;
|
|
4918
5256
|
repoRoot: import("zod").ZodNull;
|
|
@@ -4936,6 +5274,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4936
5274
|
message: import("zod").ZodString;
|
|
4937
5275
|
}, import("zod/v4/core").$strip>>;
|
|
4938
5276
|
requestId: import("zod").ZodString;
|
|
5277
|
+
gitStateAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4939
5278
|
isGit: import("zod").ZodLiteral<true>;
|
|
4940
5279
|
isOttoOwnedWorktree: import("zod").ZodLiteral<false>;
|
|
4941
5280
|
repoRoot: import("zod").ZodString;
|
|
@@ -4963,6 +5302,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4963
5302
|
message: import("zod").ZodString;
|
|
4964
5303
|
}, import("zod/v4/core").$strip>>;
|
|
4965
5304
|
requestId: import("zod").ZodString;
|
|
5305
|
+
gitStateAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4966
5306
|
isGit: import("zod").ZodLiteral<true>;
|
|
4967
5307
|
isOttoOwnedWorktree: import("zod").ZodLiteral<true>;
|
|
4968
5308
|
repoRoot: import("zod").ZodString;
|
|
@@ -5051,6 +5391,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5051
5391
|
draftPrs: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
5052
5392
|
reviewDecisions: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
5053
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>>;
|
|
5054
5396
|
}, import("zod/v4/core").$strip>>;
|
|
5055
5397
|
}, import("zod/v4/core").$strip>>;
|
|
5056
5398
|
error: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
@@ -5064,6 +5406,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5064
5406
|
}, import("zod/v4/core").$strip>>;
|
|
5065
5407
|
requestId: import("zod").ZodString;
|
|
5066
5408
|
}, import("zod/v4/core").$strip>>;
|
|
5409
|
+
prStatusOnly: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
5067
5410
|
}, import("zod/v4/core").$strip>>;
|
|
5068
5411
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5069
5412
|
type: import("zod").ZodLiteral<"subscribe_checkout_diff_response">;
|
|
@@ -5468,8 +5811,12 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5468
5811
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5469
5812
|
}, import("zod/v4/core").$loose>>;
|
|
5470
5813
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5814
|
+
outputFields: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
5471
5815
|
}, import("zod/v4/core").$loose>>>;
|
|
5472
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>;
|
|
5473
5820
|
startedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5474
5821
|
completedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5475
5822
|
}, import("zod/v4/core").$loose>>>;
|
|
@@ -5524,8 +5871,12 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5524
5871
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5525
5872
|
}, import("zod/v4/core").$loose>>;
|
|
5526
5873
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5874
|
+
outputFields: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
5527
5875
|
}, import("zod/v4/core").$loose>>>;
|
|
5528
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>;
|
|
5529
5880
|
startedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5530
5881
|
completedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5531
5882
|
}, import("zod/v4/core").$loose>>>;
|
|
@@ -5562,6 +5913,13 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5562
5913
|
runIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
5563
5914
|
requestId: import("zod").ZodString;
|
|
5564
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>;
|
|
5565
5923
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5566
5924
|
type: import("zod").ZodLiteral<"runs.cleared.notification">;
|
|
5567
5925
|
payload: import("zod").ZodObject<{
|
|
@@ -5589,6 +5947,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5589
5947
|
role: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5590
5948
|
prompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5591
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>>;
|
|
5592
5954
|
autonomous: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5593
5955
|
loop: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5594
5956
|
times: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -5598,6 +5960,36 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5598
5960
|
max: import("zod").ZodNumber;
|
|
5599
5961
|
}, import("zod/v4/core").$loose>>;
|
|
5600
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>;
|
|
5601
5993
|
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5602
5994
|
position: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5603
5995
|
x: import("zod").ZodNumber;
|
|
@@ -5608,6 +6000,13 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5608
6000
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5609
6001
|
from: import("zod").ZodString;
|
|
5610
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>;
|
|
5611
6010
|
}, import("zod/v4/core").$loose>>>;
|
|
5612
6011
|
builtIn: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5613
6012
|
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -5637,6 +6036,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5637
6036
|
role: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5638
6037
|
prompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5639
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>>;
|
|
5640
6043
|
autonomous: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5641
6044
|
loop: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5642
6045
|
times: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -5646,6 +6049,36 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5646
6049
|
max: import("zod").ZodNumber;
|
|
5647
6050
|
}, import("zod/v4/core").$loose>>;
|
|
5648
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>;
|
|
5649
6082
|
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5650
6083
|
position: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5651
6084
|
x: import("zod").ZodNumber;
|
|
@@ -5656,6 +6089,13 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5656
6089
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5657
6090
|
from: import("zod").ZodString;
|
|
5658
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>;
|
|
5659
6099
|
}, import("zod/v4/core").$loose>>>;
|
|
5660
6100
|
builtIn: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5661
6101
|
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -5693,6 +6133,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5693
6133
|
role: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5694
6134
|
prompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5695
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>>;
|
|
5696
6140
|
autonomous: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5697
6141
|
loop: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5698
6142
|
times: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -5702,6 +6146,36 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5702
6146
|
max: import("zod").ZodNumber;
|
|
5703
6147
|
}, import("zod/v4/core").$loose>>;
|
|
5704
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>;
|
|
5705
6179
|
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5706
6180
|
position: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5707
6181
|
x: import("zod").ZodNumber;
|
|
@@ -5712,7 +6186,90 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5712
6186
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5713
6187
|
from: import("zod").ZodString;
|
|
5714
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>;
|
|
5715
6271
|
}, import("zod/v4/core").$loose>>>;
|
|
6272
|
+
snippet: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5716
6273
|
builtIn: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5717
6274
|
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5718
6275
|
updatedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -6038,6 +6595,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6038
6595
|
draftPrs: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
6039
6596
|
reviewDecisions: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
6040
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>>;
|
|
6041
6600
|
}, import("zod/v4/core").$strip>>;
|
|
6042
6601
|
}, import("zod/v4/core").$strip>>;
|
|
6043
6602
|
error: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
@@ -6270,6 +6829,34 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6270
6829
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6271
6830
|
requestId: import("zod").ZodString;
|
|
6272
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>;
|
|
6273
6860
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6274
6861
|
type: import("zod").ZodLiteral<"directory_suggestions_response">;
|
|
6275
6862
|
payload: import("zod").ZodObject<{
|
|
@@ -6762,9 +7349,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6762
7349
|
binary: "binary";
|
|
6763
7350
|
}>;
|
|
6764
7351
|
encoding: import("zod").ZodEnum<{
|
|
7352
|
+
none: "none";
|
|
6765
7353
|
"utf-8": "utf-8";
|
|
6766
7354
|
base64: "base64";
|
|
6767
|
-
none: "none";
|
|
6768
7355
|
}>;
|
|
6769
7356
|
content: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6770
7357
|
mimeType: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -6845,6 +7432,90 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6845
7432
|
}, import("zod/v4/core").$strip>], "status">;
|
|
6846
7433
|
requestId: import("zod").ZodString;
|
|
6847
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">;
|
|
7459
|
+
payload: import("zod").ZodObject<{
|
|
7460
|
+
cwd: import("zod").ZodString;
|
|
7461
|
+
path: import("zod").ZodString;
|
|
7462
|
+
result: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
7463
|
+
status: import("zod").ZodLiteral<"ok">;
|
|
7464
|
+
path: import("zod").ZodString;
|
|
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;
|
|
7478
|
+
}, import("zod/v4/core").$strip>;
|
|
7479
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7480
|
+
type: import("zod").ZodLiteral<"file.rename.response">;
|
|
7481
|
+
payload: import("zod").ZodObject<{
|
|
7482
|
+
cwd: import("zod").ZodString;
|
|
7483
|
+
path: import("zod").ZodString;
|
|
7484
|
+
newPath: import("zod").ZodString;
|
|
7485
|
+
result: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
7486
|
+
status: import("zod").ZodLiteral<"ok">;
|
|
7487
|
+
from: import("zod").ZodString;
|
|
7488
|
+
to: import("zod").ZodString;
|
|
7489
|
+
kind: import("zod").ZodEnum<{
|
|
7490
|
+
file: "file";
|
|
7491
|
+
directory: "directory";
|
|
7492
|
+
}>;
|
|
7493
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
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>>;
|
|
7513
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7514
|
+
status: import("zod").ZodLiteral<"error">;
|
|
7515
|
+
message: import("zod").ZodString;
|
|
7516
|
+
}, import("zod/v4/core").$strip>], "status">;
|
|
7517
|
+
requestId: import("zod").ZodString;
|
|
7518
|
+
}, import("zod/v4/core").$strip>;
|
|
6848
7519
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6849
7520
|
type: import("zod").ZodLiteral<"file.watch.subscribe.response">;
|
|
6850
7521
|
payload: import("zod").ZodObject<{
|
|
@@ -6980,6 +7651,282 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6980
7651
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6981
7652
|
requestId: import("zod").ZodString;
|
|
6982
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>;
|
|
6983
7930
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6984
7931
|
type: import("zod").ZodLiteral<"list_provider_models_response">;
|
|
6985
7932
|
payload: import("zod").ZodObject<{
|
|
@@ -7365,6 +8312,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7365
8312
|
nodeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7366
8313
|
line: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7367
8314
|
lineEnd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8315
|
+
fixable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
8316
|
+
snippet: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7368
8317
|
}, import("zod/v4/core").$strip>>;
|
|
7369
8318
|
}, import("zod/v4/core").$strip>>;
|
|
7370
8319
|
edges: import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -7427,7 +8376,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7427
8376
|
nodeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7428
8377
|
line: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7429
8378
|
lineEnd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8379
|
+
fixable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
8380
|
+
snippet: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7430
8381
|
}, import("zod/v4/core").$strip>>;
|
|
8382
|
+
personalityId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8383
|
+
personalityMemoryTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7431
8384
|
}, import("zod/v4/core").$strip>>;
|
|
7432
8385
|
}, import("zod/v4/core").$strip>;
|
|
7433
8386
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -7437,6 +8390,59 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7437
8390
|
ok: import("zod").ZodBoolean;
|
|
7438
8391
|
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7439
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>;
|
|
7440
8446
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7441
8447
|
type: import("zod").ZodLiteral<"stats.activity.reset.response">;
|
|
7442
8448
|
payload: import("zod").ZodObject<{
|
|
@@ -8717,10 +9723,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
8717
9723
|
payload: import("zod").ZodObject<{
|
|
8718
9724
|
requestId: import("zod").ZodString;
|
|
8719
9725
|
phase: import("zod").ZodEnum<{
|
|
9726
|
+
complete: "complete";
|
|
8720
9727
|
starting: "starting";
|
|
8721
9728
|
downloading: "downloading";
|
|
8722
9729
|
installing: "installing";
|
|
8723
|
-
complete: "complete";
|
|
8724
9730
|
}>;
|
|
8725
9731
|
}, import("zod/v4/core").$strip>;
|
|
8726
9732
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|