@otto-code/protocol 0.6.7 → 0.7.1
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 +38262 -31722
- package/dist/git-hosting.d.ts +2 -0
- package/dist/git-hosting.js +6 -0
- package/dist/messages.d.ts +7196 -430
- package/dist/messages.js +1872 -37
- 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 +1085 -15
- 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>>>;
|
|
@@ -3892,6 +4118,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3892
4118
|
}, import("zod/v4/core").$loose>>;
|
|
3893
4119
|
autoArchiveAfterMerge: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
3894
4120
|
hideMergeIntoBaseAction: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
4121
|
+
attachmentImageMaxAgeDays: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4122
|
+
attachmentImageMaxTotalMb: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
3895
4123
|
enableTerminalAgentHooks: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
3896
4124
|
appendSystemPrompt: import("zod").ZodDefault<import("zod").ZodString>;
|
|
3897
4125
|
terminalProfiles: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -3962,6 +4190,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3962
4190
|
waiting: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
3963
4191
|
done: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
3964
4192
|
}, import("zod/v4/core").$loose>>;
|
|
4193
|
+
memoryEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
3965
4194
|
}, import("zod/v4/core").$loose>>>;
|
|
3966
4195
|
}, import("zod/v4/core").$loose>>;
|
|
3967
4196
|
agentTeams: import("zod").ZodDefault<import("zod").ZodObject<{
|
|
@@ -3991,6 +4220,18 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3991
4220
|
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3992
4221
|
savedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3993
4222
|
}, import("zod/v4/core").$loose>>>;
|
|
4223
|
+
lsp: import("zod").ZodDefault<import("zod").ZodObject<{
|
|
4224
|
+
enabled: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
4225
|
+
languages: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>>;
|
|
4226
|
+
maxRunningServers: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4227
|
+
idleMinutes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4228
|
+
backgroundIdleMinutes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4229
|
+
}, import("zod/v4/core").$loose>>;
|
|
4230
|
+
dotnetSolutionManagement: import("zod").ZodDefault<import("zod").ZodObject<{
|
|
4231
|
+
enabled: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
4232
|
+
maxRunningProbes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4233
|
+
idleMinutes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4234
|
+
}, import("zod/v4/core").$loose>>;
|
|
3994
4235
|
}, import("zod/v4/core").$loose>;
|
|
3995
4236
|
}, import("zod/v4/core").$loose>;
|
|
3996
4237
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -4008,6 +4249,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4008
4249
|
agents: "agents";
|
|
4009
4250
|
terminals: "terminals";
|
|
4010
4251
|
schedules: "schedules";
|
|
4252
|
+
widgets: "widgets";
|
|
4011
4253
|
workspace: "workspace";
|
|
4012
4254
|
}>>>;
|
|
4013
4255
|
}, import("zod/v4/core").$loose>;
|
|
@@ -4035,6 +4277,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4035
4277
|
agents: "agents";
|
|
4036
4278
|
terminals: "terminals";
|
|
4037
4279
|
schedules: "schedules";
|
|
4280
|
+
widgets: "widgets";
|
|
4038
4281
|
workspace: "workspace";
|
|
4039
4282
|
}>>>;
|
|
4040
4283
|
}, import("zod/v4/core").$loose>>>;
|
|
@@ -4049,6 +4292,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4049
4292
|
}, import("zod/v4/core").$loose>>;
|
|
4050
4293
|
autoArchiveAfterMerge: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
4051
4294
|
hideMergeIntoBaseAction: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
4295
|
+
attachmentImageMaxAgeDays: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4296
|
+
attachmentImageMaxTotalMb: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4052
4297
|
enableTerminalAgentHooks: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
4053
4298
|
appendSystemPrompt: import("zod").ZodDefault<import("zod").ZodString>;
|
|
4054
4299
|
terminalProfiles: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -4119,6 +4364,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4119
4364
|
waiting: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
4120
4365
|
done: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
4121
4366
|
}, import("zod/v4/core").$loose>>;
|
|
4367
|
+
memoryEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4122
4368
|
}, import("zod/v4/core").$loose>>>;
|
|
4123
4369
|
}, import("zod/v4/core").$loose>>;
|
|
4124
4370
|
agentTeams: import("zod").ZodDefault<import("zod").ZodObject<{
|
|
@@ -4148,6 +4394,18 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4148
4394
|
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4149
4395
|
savedAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4150
4396
|
}, import("zod/v4/core").$loose>>>;
|
|
4397
|
+
lsp: import("zod").ZodDefault<import("zod").ZodObject<{
|
|
4398
|
+
enabled: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
4399
|
+
languages: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>>;
|
|
4400
|
+
maxRunningServers: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4401
|
+
idleMinutes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4402
|
+
backgroundIdleMinutes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4403
|
+
}, import("zod/v4/core").$loose>>;
|
|
4404
|
+
dotnetSolutionManagement: import("zod").ZodDefault<import("zod").ZodObject<{
|
|
4405
|
+
enabled: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
4406
|
+
maxRunningProbes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4407
|
+
idleMinutes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
4408
|
+
}, import("zod/v4/core").$loose>>;
|
|
4151
4409
|
}, import("zod/v4/core").$loose>;
|
|
4152
4410
|
}, import("zod/v4/core").$loose>;
|
|
4153
4411
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -4385,6 +4643,33 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4385
4643
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4386
4644
|
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
4645
|
}, import("zod/v4/core").$strip>;
|
|
4646
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4647
|
+
type: import("zod").ZodLiteral<"agent.queue.remove.response">;
|
|
4648
|
+
payload: import("zod").ZodObject<{
|
|
4649
|
+
requestId: import("zod").ZodString;
|
|
4650
|
+
agentId: import("zod").ZodString;
|
|
4651
|
+
removed: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
4652
|
+
id: import("zod").ZodString;
|
|
4653
|
+
text: import("zod").ZodString;
|
|
4654
|
+
}, import("zod/v4/core").$strip>>;
|
|
4655
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4656
|
+
}, import("zod/v4/core").$strip>;
|
|
4657
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4658
|
+
type: import("zod").ZodLiteral<"agent.queue.reorder.response">;
|
|
4659
|
+
payload: import("zod").ZodObject<{
|
|
4660
|
+
requestId: import("zod").ZodString;
|
|
4661
|
+
agentId: import("zod").ZodString;
|
|
4662
|
+
moved: import("zod").ZodBoolean;
|
|
4663
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4664
|
+
}, import("zod/v4/core").$strip>;
|
|
4665
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4666
|
+
type: import("zod").ZodLiteral<"agent.queue.clear.response">;
|
|
4667
|
+
payload: import("zod").ZodObject<{
|
|
4668
|
+
requestId: import("zod").ZodString;
|
|
4669
|
+
agentId: import("zod").ZodString;
|
|
4670
|
+
clearedCount: import("zod").ZodNumber;
|
|
4671
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4672
|
+
}, import("zod/v4/core").$strip>;
|
|
4388
4673
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4389
4674
|
type: import("zod").ZodLiteral<"agent.subagent.stop.response">;
|
|
4390
4675
|
payload: import("zod").ZodObject<{
|
|
@@ -4536,6 +4821,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4536
4821
|
nodeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4537
4822
|
line: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4538
4823
|
lineEnd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4824
|
+
fixable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4825
|
+
snippet: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4539
4826
|
}, import("zod/v4/core").$strip>>;
|
|
4540
4827
|
}, import("zod/v4/core").$strip>>;
|
|
4541
4828
|
edges: import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -4568,6 +4855,12 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4568
4855
|
warn: "warn";
|
|
4569
4856
|
critical: "critical";
|
|
4570
4857
|
}>;
|
|
4858
|
+
visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4859
|
+
exact: "exact";
|
|
4860
|
+
convention: "convention";
|
|
4861
|
+
unverified: "unverified";
|
|
4862
|
+
not_visible: "not_visible";
|
|
4863
|
+
}>>;
|
|
4571
4864
|
}, import("zod/v4/core").$strip>>;
|
|
4572
4865
|
fixedTotal: import("zod").ZodNumber;
|
|
4573
4866
|
conditionalTotal: import("zod").ZodNumber;
|
|
@@ -4598,7 +4891,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4598
4891
|
nodeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4599
4892
|
line: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4600
4893
|
lineEnd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4894
|
+
fixable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4895
|
+
snippet: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4601
4896
|
}, import("zod/v4/core").$strip>>;
|
|
4897
|
+
personalityId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4898
|
+
personalityMemoryTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4602
4899
|
}, import("zod/v4/core").$strip>>;
|
|
4603
4900
|
}, import("zod/v4/core").$strip>;
|
|
4604
4901
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -4636,6 +4933,22 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4636
4933
|
customName: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4637
4934
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4638
4935
|
}, import("zod/v4/core").$strip>;
|
|
4936
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4937
|
+
type: import("zod").ZodLiteral<"project.updated.notification">;
|
|
4938
|
+
payload: import("zod").ZodObject<{
|
|
4939
|
+
project: import("zod").ZodObject<{
|
|
4940
|
+
projectId: import("zod").ZodString;
|
|
4941
|
+
projectDisplayName: import("zod").ZodString;
|
|
4942
|
+
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4943
|
+
projectRootPath: import("zod").ZodString;
|
|
4944
|
+
projectKind: import("zod").ZodEnum<{
|
|
4945
|
+
git: "git";
|
|
4946
|
+
directory: "directory";
|
|
4947
|
+
non_git: "non_git";
|
|
4948
|
+
}>;
|
|
4949
|
+
}, import("zod/v4/core").$strip>;
|
|
4950
|
+
hasActiveWorkspaces: import("zod").ZodBoolean;
|
|
4951
|
+
}, import("zod/v4/core").$strip>;
|
|
4639
4952
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4640
4953
|
type: import("zod").ZodLiteral<"project.remove.response">;
|
|
4641
4954
|
payload: import("zod").ZodObject<{
|
|
@@ -4754,6 +5067,26 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4754
5067
|
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
5068
|
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
5069
|
cumulativeTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5070
|
+
cumulativeUsage: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5071
|
+
inputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5072
|
+
cachedInputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5073
|
+
cacheCreationInputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5074
|
+
outputTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5075
|
+
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5076
|
+
costCoverage: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
5077
|
+
none: "none";
|
|
5078
|
+
complete: "complete";
|
|
5079
|
+
partial: "partial";
|
|
5080
|
+
}>>;
|
|
5081
|
+
}, import("zod/v4/core").$strip>>;
|
|
5082
|
+
toolUseCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5083
|
+
currentTool: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5084
|
+
queuedMessages: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5085
|
+
id: import("zod").ZodString;
|
|
5086
|
+
preview: import("zod").ZodString;
|
|
5087
|
+
enqueuedAt: import("zod").ZodString;
|
|
5088
|
+
attachmentCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5089
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4757
5090
|
lastError: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4758
5091
|
title: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4759
5092
|
labels: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
@@ -4799,6 +5132,38 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4799
5132
|
agentId: import("zod").ZodString;
|
|
4800
5133
|
requestId: import("zod").ZodString;
|
|
4801
5134
|
}, import("zod/v4/core").$strip>;
|
|
5135
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5136
|
+
type: import("zod").ZodLiteral<"history.agents.clear_archived.response">;
|
|
5137
|
+
payload: import("zod").ZodObject<{
|
|
5138
|
+
matched: import("zod").ZodNumber;
|
|
5139
|
+
deleted: import("zod").ZodNumber;
|
|
5140
|
+
failed: import("zod").ZodNumber;
|
|
5141
|
+
agentIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
5142
|
+
dryRun: import("zod").ZodBoolean;
|
|
5143
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
5144
|
+
requestId: import("zod").ZodString;
|
|
5145
|
+
}, import("zod/v4/core").$strip>;
|
|
5146
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5147
|
+
type: import("zod").ZodLiteral<"attachments.images.get_stats.response">;
|
|
5148
|
+
payload: import("zod").ZodObject<{
|
|
5149
|
+
fileCount: import("zod").ZodNumber;
|
|
5150
|
+
totalBytes: import("zod").ZodNumber;
|
|
5151
|
+
oldestAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
5152
|
+
maxAgeDays: import("zod").ZodNumber;
|
|
5153
|
+
maxTotalMb: import("zod").ZodNumber;
|
|
5154
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
5155
|
+
requestId: import("zod").ZodString;
|
|
5156
|
+
}, import("zod/v4/core").$strip>;
|
|
5157
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5158
|
+
type: import("zod").ZodLiteral<"attachments.images.clear.response">;
|
|
5159
|
+
payload: import("zod").ZodObject<{
|
|
5160
|
+
matched: import("zod").ZodNumber;
|
|
5161
|
+
deleted: import("zod").ZodNumber;
|
|
5162
|
+
freedBytes: import("zod").ZodNumber;
|
|
5163
|
+
dryRun: import("zod").ZodBoolean;
|
|
5164
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
5165
|
+
requestId: import("zod").ZodString;
|
|
5166
|
+
}, import("zod/v4/core").$strip>;
|
|
4802
5167
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4803
5168
|
type: import("zod").ZodLiteral<"agent_archived">;
|
|
4804
5169
|
payload: import("zod").ZodObject<{
|
|
@@ -4833,6 +5198,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4833
5198
|
message: import("zod").ZodString;
|
|
4834
5199
|
}, import("zod/v4/core").$strip>>;
|
|
4835
5200
|
requestId: import("zod").ZodString;
|
|
5201
|
+
gitStateAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4836
5202
|
isGit: import("zod").ZodLiteral<false>;
|
|
4837
5203
|
isOttoOwnedWorktree: import("zod").ZodLiteral<false>;
|
|
4838
5204
|
repoRoot: import("zod").ZodNull;
|
|
@@ -4856,6 +5222,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4856
5222
|
message: import("zod").ZodString;
|
|
4857
5223
|
}, import("zod/v4/core").$strip>>;
|
|
4858
5224
|
requestId: import("zod").ZodString;
|
|
5225
|
+
gitStateAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4859
5226
|
isGit: import("zod").ZodLiteral<true>;
|
|
4860
5227
|
isOttoOwnedWorktree: import("zod").ZodLiteral<false>;
|
|
4861
5228
|
repoRoot: import("zod").ZodString;
|
|
@@ -4883,6 +5250,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4883
5250
|
message: import("zod").ZodString;
|
|
4884
5251
|
}, import("zod/v4/core").$strip>>;
|
|
4885
5252
|
requestId: import("zod").ZodString;
|
|
5253
|
+
gitStateAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4886
5254
|
isGit: import("zod").ZodLiteral<true>;
|
|
4887
5255
|
isOttoOwnedWorktree: import("zod").ZodLiteral<true>;
|
|
4888
5256
|
repoRoot: import("zod").ZodString;
|
|
@@ -4913,6 +5281,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4913
5281
|
message: import("zod").ZodString;
|
|
4914
5282
|
}, import("zod/v4/core").$strip>>;
|
|
4915
5283
|
requestId: import("zod").ZodString;
|
|
5284
|
+
gitStateAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4916
5285
|
isGit: import("zod").ZodLiteral<false>;
|
|
4917
5286
|
isOttoOwnedWorktree: import("zod").ZodLiteral<false>;
|
|
4918
5287
|
repoRoot: import("zod").ZodNull;
|
|
@@ -4936,6 +5305,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4936
5305
|
message: import("zod").ZodString;
|
|
4937
5306
|
}, import("zod/v4/core").$strip>>;
|
|
4938
5307
|
requestId: import("zod").ZodString;
|
|
5308
|
+
gitStateAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4939
5309
|
isGit: import("zod").ZodLiteral<true>;
|
|
4940
5310
|
isOttoOwnedWorktree: import("zod").ZodLiteral<false>;
|
|
4941
5311
|
repoRoot: import("zod").ZodString;
|
|
@@ -4963,6 +5333,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4963
5333
|
message: import("zod").ZodString;
|
|
4964
5334
|
}, import("zod/v4/core").$strip>>;
|
|
4965
5335
|
requestId: import("zod").ZodString;
|
|
5336
|
+
gitStateAt: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4966
5337
|
isGit: import("zod").ZodLiteral<true>;
|
|
4967
5338
|
isOttoOwnedWorktree: import("zod").ZodLiteral<true>;
|
|
4968
5339
|
repoRoot: import("zod").ZodString;
|
|
@@ -5051,6 +5422,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5051
5422
|
draftPrs: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
5052
5423
|
reviewDecisions: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
5053
5424
|
issues: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
5425
|
+
listRepositories: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
5426
|
+
createRepository: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
5054
5427
|
}, import("zod/v4/core").$strip>>;
|
|
5055
5428
|
}, import("zod/v4/core").$strip>>;
|
|
5056
5429
|
error: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
@@ -5064,6 +5437,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5064
5437
|
}, import("zod/v4/core").$strip>>;
|
|
5065
5438
|
requestId: import("zod").ZodString;
|
|
5066
5439
|
}, import("zod/v4/core").$strip>>;
|
|
5440
|
+
prStatusOnly: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
5067
5441
|
}, import("zod/v4/core").$strip>>;
|
|
5068
5442
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5069
5443
|
type: import("zod").ZodLiteral<"subscribe_checkout_diff_response">;
|
|
@@ -5468,8 +5842,12 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5468
5842
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5469
5843
|
}, import("zod/v4/core").$loose>>;
|
|
5470
5844
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5845
|
+
outputFields: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
5471
5846
|
}, import("zod/v4/core").$loose>>>;
|
|
5472
5847
|
notes: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5848
|
+
skipReason: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5849
|
+
retryAttempts: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5850
|
+
timedOut: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5473
5851
|
startedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5474
5852
|
completedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5475
5853
|
}, import("zod/v4/core").$loose>>>;
|
|
@@ -5524,8 +5902,12 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5524
5902
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5525
5903
|
}, import("zod/v4/core").$loose>>;
|
|
5526
5904
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5905
|
+
outputFields: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
5527
5906
|
}, import("zod/v4/core").$loose>>>;
|
|
5528
5907
|
notes: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5908
|
+
skipReason: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5909
|
+
retryAttempts: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5910
|
+
timedOut: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5529
5911
|
startedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5530
5912
|
completedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5531
5913
|
}, import("zod/v4/core").$loose>>>;
|
|
@@ -5562,6 +5944,13 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5562
5944
|
runIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
5563
5945
|
requestId: import("zod").ZodString;
|
|
5564
5946
|
}, import("zod/v4/core").$strip>;
|
|
5947
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5948
|
+
type: import("zod").ZodLiteral<"runs.delete.response">;
|
|
5949
|
+
payload: import("zod").ZodObject<{
|
|
5950
|
+
runId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5951
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5952
|
+
requestId: import("zod").ZodString;
|
|
5953
|
+
}, import("zod/v4/core").$strip>;
|
|
5565
5954
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5566
5955
|
type: import("zod").ZodLiteral<"runs.cleared.notification">;
|
|
5567
5956
|
payload: import("zod").ZodObject<{
|
|
@@ -5589,6 +5978,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5589
5978
|
role: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5590
5979
|
prompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5591
5980
|
promptFromInput: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5981
|
+
promptTemplate: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5982
|
+
templateId: import("zod").ZodString;
|
|
5983
|
+
variables: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
5984
|
+
}, import("zod/v4/core").$loose>>;
|
|
5592
5985
|
autonomous: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5593
5986
|
loop: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5594
5987
|
times: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -5598,6 +5991,36 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5598
5991
|
max: import("zod").ZodNumber;
|
|
5599
5992
|
}, import("zod/v4/core").$loose>>;
|
|
5600
5993
|
}, import("zod/v4/core").$loose>>;
|
|
5994
|
+
output: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5995
|
+
fields: import("zod").ZodArray<import("zod").ZodObject<{
|
|
5996
|
+
key: import("zod").ZodString;
|
|
5997
|
+
type: import("zod").ZodString;
|
|
5998
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5999
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6000
|
+
}, import("zod/v4/core").$loose>>;
|
|
6001
|
+
}, import("zod/v4/core").$loose>>;
|
|
6002
|
+
access: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6003
|
+
tools: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
6004
|
+
queryTools: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6005
|
+
name: import("zod").ZodString;
|
|
6006
|
+
description: import("zod").ZodString;
|
|
6007
|
+
kind: import("zod").ZodString;
|
|
6008
|
+
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6009
|
+
key: import("zod").ZodString;
|
|
6010
|
+
type: import("zod").ZodString;
|
|
6011
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6012
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6013
|
+
}, import("zod/v4/core").$loose>>>;
|
|
6014
|
+
command: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
6015
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6016
|
+
path: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6017
|
+
}, import("zod/v4/core").$loose>>>;
|
|
6018
|
+
retry: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6019
|
+
maxAttempts: import("zod").ZodNumber;
|
|
6020
|
+
backoffMs: import("zod").ZodNumber;
|
|
6021
|
+
multiplier: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6022
|
+
}, import("zod/v4/core").$loose>>;
|
|
6023
|
+
timeoutMs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5601
6024
|
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5602
6025
|
position: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5603
6026
|
x: import("zod").ZodNumber;
|
|
@@ -5608,6 +6031,13 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5608
6031
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5609
6032
|
from: import("zod").ZodString;
|
|
5610
6033
|
to: import("zod").ZodString;
|
|
6034
|
+
fromPort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6035
|
+
toPort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6036
|
+
when: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6037
|
+
expression: import("zod").ZodString;
|
|
6038
|
+
}, import("zod/v4/core").$loose>>;
|
|
6039
|
+
fields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
6040
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5611
6041
|
}, import("zod/v4/core").$loose>>>;
|
|
5612
6042
|
builtIn: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5613
6043
|
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -5637,6 +6067,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5637
6067
|
role: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5638
6068
|
prompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5639
6069
|
promptFromInput: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6070
|
+
promptTemplate: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6071
|
+
templateId: import("zod").ZodString;
|
|
6072
|
+
variables: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
6073
|
+
}, import("zod/v4/core").$loose>>;
|
|
5640
6074
|
autonomous: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5641
6075
|
loop: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5642
6076
|
times: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -5646,6 +6080,36 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5646
6080
|
max: import("zod").ZodNumber;
|
|
5647
6081
|
}, import("zod/v4/core").$loose>>;
|
|
5648
6082
|
}, import("zod/v4/core").$loose>>;
|
|
6083
|
+
output: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6084
|
+
fields: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6085
|
+
key: import("zod").ZodString;
|
|
6086
|
+
type: import("zod").ZodString;
|
|
6087
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6088
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6089
|
+
}, import("zod/v4/core").$loose>>;
|
|
6090
|
+
}, import("zod/v4/core").$loose>>;
|
|
6091
|
+
access: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6092
|
+
tools: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
6093
|
+
queryTools: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6094
|
+
name: import("zod").ZodString;
|
|
6095
|
+
description: import("zod").ZodString;
|
|
6096
|
+
kind: import("zod").ZodString;
|
|
6097
|
+
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6098
|
+
key: import("zod").ZodString;
|
|
6099
|
+
type: import("zod").ZodString;
|
|
6100
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6101
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6102
|
+
}, import("zod/v4/core").$loose>>>;
|
|
6103
|
+
command: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
6104
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6105
|
+
path: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6106
|
+
}, import("zod/v4/core").$loose>>>;
|
|
6107
|
+
retry: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6108
|
+
maxAttempts: import("zod").ZodNumber;
|
|
6109
|
+
backoffMs: import("zod").ZodNumber;
|
|
6110
|
+
multiplier: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6111
|
+
}, import("zod/v4/core").$loose>>;
|
|
6112
|
+
timeoutMs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5649
6113
|
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5650
6114
|
position: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5651
6115
|
x: import("zod").ZodNumber;
|
|
@@ -5656,6 +6120,13 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5656
6120
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5657
6121
|
from: import("zod").ZodString;
|
|
5658
6122
|
to: import("zod").ZodString;
|
|
6123
|
+
fromPort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6124
|
+
toPort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6125
|
+
when: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6126
|
+
expression: import("zod").ZodString;
|
|
6127
|
+
}, import("zod/v4/core").$loose>>;
|
|
6128
|
+
fields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
6129
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5659
6130
|
}, import("zod/v4/core").$loose>>>;
|
|
5660
6131
|
builtIn: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5661
6132
|
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -5693,6 +6164,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5693
6164
|
role: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5694
6165
|
prompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5695
6166
|
promptFromInput: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6167
|
+
promptTemplate: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6168
|
+
templateId: import("zod").ZodString;
|
|
6169
|
+
variables: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
6170
|
+
}, import("zod/v4/core").$loose>>;
|
|
5696
6171
|
autonomous: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5697
6172
|
loop: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5698
6173
|
times: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -5702,6 +6177,36 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5702
6177
|
max: import("zod").ZodNumber;
|
|
5703
6178
|
}, import("zod/v4/core").$loose>>;
|
|
5704
6179
|
}, import("zod/v4/core").$loose>>;
|
|
6180
|
+
output: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6181
|
+
fields: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6182
|
+
key: import("zod").ZodString;
|
|
6183
|
+
type: import("zod").ZodString;
|
|
6184
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6185
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6186
|
+
}, import("zod/v4/core").$loose>>;
|
|
6187
|
+
}, import("zod/v4/core").$loose>>;
|
|
6188
|
+
access: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6189
|
+
tools: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
6190
|
+
queryTools: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6191
|
+
name: import("zod").ZodString;
|
|
6192
|
+
description: import("zod").ZodString;
|
|
6193
|
+
kind: import("zod").ZodString;
|
|
6194
|
+
parameters: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6195
|
+
key: import("zod").ZodString;
|
|
6196
|
+
type: import("zod").ZodString;
|
|
6197
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6198
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6199
|
+
}, import("zod/v4/core").$loose>>>;
|
|
6200
|
+
command: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
6201
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6202
|
+
path: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6203
|
+
}, import("zod/v4/core").$loose>>>;
|
|
6204
|
+
retry: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6205
|
+
maxAttempts: import("zod").ZodNumber;
|
|
6206
|
+
backoffMs: import("zod").ZodNumber;
|
|
6207
|
+
multiplier: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6208
|
+
}, import("zod/v4/core").$loose>>;
|
|
6209
|
+
timeoutMs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5705
6210
|
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5706
6211
|
position: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5707
6212
|
x: import("zod").ZodNumber;
|
|
@@ -5712,7 +6217,90 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5712
6217
|
id: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5713
6218
|
from: import("zod").ZodString;
|
|
5714
6219
|
to: import("zod").ZodString;
|
|
6220
|
+
fromPort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6221
|
+
toPort: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6222
|
+
when: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6223
|
+
expression: import("zod").ZodString;
|
|
6224
|
+
}, import("zod/v4/core").$loose>>;
|
|
6225
|
+
fields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
6226
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6227
|
+
}, import("zod/v4/core").$loose>>>;
|
|
6228
|
+
builtIn: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6229
|
+
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6230
|
+
updatedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6231
|
+
}, import("zod/v4/core").$loose>>;
|
|
6232
|
+
}, import("zod/v4/core").$strip>;
|
|
6233
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6234
|
+
type: import("zod").ZodLiteral<"runs.templates.list.response">;
|
|
6235
|
+
payload: import("zod").ZodObject<{
|
|
6236
|
+
templates: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6237
|
+
id: import("zod").ZodString;
|
|
6238
|
+
name: import("zod").ZodString;
|
|
6239
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6240
|
+
content: import("zod").ZodString;
|
|
6241
|
+
variables: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6242
|
+
key: import("zod").ZodString;
|
|
6243
|
+
label: import("zod").ZodString;
|
|
6244
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6245
|
+
multiline: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6246
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6247
|
+
defaultValue: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6248
|
+
}, import("zod/v4/core").$loose>>>;
|
|
6249
|
+
snippet: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6250
|
+
builtIn: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6251
|
+
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6252
|
+
updatedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6253
|
+
}, import("zod/v4/core").$loose>>;
|
|
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.save.response">;
|
|
6258
|
+
payload: import("zod").ZodObject<{
|
|
6259
|
+
template: import("zod").ZodOptional<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
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6278
|
+
requestId: import("zod").ZodString;
|
|
6279
|
+
}, import("zod/v4/core").$strip>;
|
|
6280
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6281
|
+
type: import("zod").ZodLiteral<"runs.templates.delete.response">;
|
|
6282
|
+
payload: import("zod").ZodObject<{
|
|
6283
|
+
deleted: import("zod").ZodBoolean;
|
|
6284
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6285
|
+
requestId: import("zod").ZodString;
|
|
6286
|
+
}, import("zod/v4/core").$strip>;
|
|
6287
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6288
|
+
type: import("zod").ZodLiteral<"runs.templates.changed.notification">;
|
|
6289
|
+
payload: import("zod").ZodObject<{
|
|
6290
|
+
templates: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6291
|
+
id: import("zod").ZodString;
|
|
6292
|
+
name: import("zod").ZodString;
|
|
6293
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6294
|
+
content: import("zod").ZodString;
|
|
6295
|
+
variables: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6296
|
+
key: import("zod").ZodString;
|
|
6297
|
+
label: import("zod").ZodString;
|
|
6298
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6299
|
+
multiline: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6300
|
+
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6301
|
+
defaultValue: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5715
6302
|
}, import("zod/v4/core").$loose>>>;
|
|
6303
|
+
snippet: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5716
6304
|
builtIn: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5717
6305
|
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5718
6306
|
updatedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -6038,6 +6626,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6038
6626
|
draftPrs: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
6039
6627
|
reviewDecisions: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
6040
6628
|
issues: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
6629
|
+
listRepositories: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
6630
|
+
createRepository: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
6041
6631
|
}, import("zod/v4/core").$strip>>;
|
|
6042
6632
|
}, import("zod/v4/core").$strip>>;
|
|
6043
6633
|
error: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
@@ -6271,24 +6861,52 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6271
6861
|
requestId: import("zod").ZodString;
|
|
6272
6862
|
}, import("zod/v4/core").$strip>;
|
|
6273
6863
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6274
|
-
type: import("zod").ZodLiteral<"
|
|
6864
|
+
type: import("zod").ZodLiteral<"hosting.list_repositories.response">;
|
|
6275
6865
|
payload: import("zod").ZodObject<{
|
|
6276
|
-
directories: import("zod").ZodArray<import("zod").ZodString>;
|
|
6277
|
-
entries: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6278
|
-
path: import("zod").ZodString;
|
|
6279
|
-
kind: import("zod").ZodEnum<{
|
|
6280
|
-
file: "file";
|
|
6281
|
-
directory: "directory";
|
|
6282
|
-
}>;
|
|
6283
|
-
}, import("zod/v4/core").$strip>>>>;
|
|
6284
|
-
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6285
6866
|
requestId: import("zod").ZodString;
|
|
6867
|
+
provider: import("zod").ZodString;
|
|
6868
|
+
repositories: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6869
|
+
fullName: import("zod").ZodString;
|
|
6870
|
+
name: import("zod").ZodString;
|
|
6871
|
+
owner: import("zod").ZodString;
|
|
6872
|
+
cloneUrl: import("zod").ZodString;
|
|
6873
|
+
isPrivate: import("zod").ZodBoolean;
|
|
6874
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6875
|
+
updatedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6876
|
+
}, import("zod/v4/core").$strip>>;
|
|
6877
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6286
6878
|
}, import("zod/v4/core").$strip>;
|
|
6287
6879
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6288
|
-
type: import("zod").ZodLiteral<"
|
|
6880
|
+
type: import("zod").ZodLiteral<"hosting.list_owners.response">;
|
|
6289
6881
|
payload: import("zod").ZodObject<{
|
|
6290
|
-
|
|
6291
|
-
|
|
6882
|
+
requestId: import("zod").ZodString;
|
|
6883
|
+
provider: import("zod").ZodString;
|
|
6884
|
+
owners: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6885
|
+
id: import("zod").ZodString;
|
|
6886
|
+
label: import("zod").ZodString;
|
|
6887
|
+
kind: import("zod").ZodString;
|
|
6888
|
+
}, import("zod/v4/core").$strip>>;
|
|
6889
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6890
|
+
}, import("zod/v4/core").$strip>;
|
|
6891
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6892
|
+
type: import("zod").ZodLiteral<"directory_suggestions_response">;
|
|
6893
|
+
payload: import("zod").ZodObject<{
|
|
6894
|
+
directories: import("zod").ZodArray<import("zod").ZodString>;
|
|
6895
|
+
entries: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6896
|
+
path: import("zod").ZodString;
|
|
6897
|
+
kind: import("zod").ZodEnum<{
|
|
6898
|
+
file: "file";
|
|
6899
|
+
directory: "directory";
|
|
6900
|
+
}>;
|
|
6901
|
+
}, import("zod/v4/core").$strip>>>>;
|
|
6902
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6903
|
+
requestId: import("zod").ZodString;
|
|
6904
|
+
}, import("zod/v4/core").$strip>;
|
|
6905
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6906
|
+
type: import("zod").ZodLiteral<"otto_worktree_list_response">;
|
|
6907
|
+
payload: import("zod").ZodObject<{
|
|
6908
|
+
worktrees: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6909
|
+
worktreePath: import("zod").ZodString;
|
|
6292
6910
|
createdAt: import("zod").ZodString;
|
|
6293
6911
|
branchName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6294
6912
|
head: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -6762,9 +7380,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6762
7380
|
binary: "binary";
|
|
6763
7381
|
}>;
|
|
6764
7382
|
encoding: import("zod").ZodEnum<{
|
|
7383
|
+
none: "none";
|
|
6765
7384
|
"utf-8": "utf-8";
|
|
6766
7385
|
base64: "base64";
|
|
6767
|
-
none: "none";
|
|
6768
7386
|
}>;
|
|
6769
7387
|
content: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6770
7388
|
mimeType: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -6845,6 +7463,90 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6845
7463
|
}, import("zod/v4/core").$strip>], "status">;
|
|
6846
7464
|
requestId: import("zod").ZodString;
|
|
6847
7465
|
}, import("zod/v4/core").$strip>;
|
|
7466
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7467
|
+
type: import("zod").ZodLiteral<"file.create.response">;
|
|
7468
|
+
payload: import("zod").ZodObject<{
|
|
7469
|
+
cwd: import("zod").ZodString;
|
|
7470
|
+
path: import("zod").ZodString;
|
|
7471
|
+
result: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
7472
|
+
status: import("zod").ZodLiteral<"ok">;
|
|
7473
|
+
path: import("zod").ZodString;
|
|
7474
|
+
kind: import("zod").ZodEnum<{
|
|
7475
|
+
file: "file";
|
|
7476
|
+
directory: "directory";
|
|
7477
|
+
}>;
|
|
7478
|
+
modifiedAt: import("zod").ZodString;
|
|
7479
|
+
size: import("zod").ZodNumber;
|
|
7480
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7481
|
+
status: import("zod").ZodLiteral<"exists">;
|
|
7482
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7483
|
+
status: import("zod").ZodLiteral<"error">;
|
|
7484
|
+
message: import("zod").ZodString;
|
|
7485
|
+
}, import("zod/v4/core").$strip>], "status">;
|
|
7486
|
+
requestId: import("zod").ZodString;
|
|
7487
|
+
}, import("zod/v4/core").$strip>;
|
|
7488
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7489
|
+
type: import("zod").ZodLiteral<"file.delete.response">;
|
|
7490
|
+
payload: import("zod").ZodObject<{
|
|
7491
|
+
cwd: import("zod").ZodString;
|
|
7492
|
+
path: import("zod").ZodString;
|
|
7493
|
+
result: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
7494
|
+
status: import("zod").ZodLiteral<"ok">;
|
|
7495
|
+
path: import("zod").ZodString;
|
|
7496
|
+
kind: import("zod").ZodEnum<{
|
|
7497
|
+
file: "file";
|
|
7498
|
+
directory: "directory";
|
|
7499
|
+
}>;
|
|
7500
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7501
|
+
status: import("zod").ZodLiteral<"not_found">;
|
|
7502
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7503
|
+
status: import("zod").ZodLiteral<"not_empty">;
|
|
7504
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7505
|
+
status: import("zod").ZodLiteral<"error">;
|
|
7506
|
+
message: import("zod").ZodString;
|
|
7507
|
+
}, import("zod/v4/core").$strip>], "status">;
|
|
7508
|
+
requestId: import("zod").ZodString;
|
|
7509
|
+
}, import("zod/v4/core").$strip>;
|
|
7510
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7511
|
+
type: import("zod").ZodLiteral<"file.rename.response">;
|
|
7512
|
+
payload: import("zod").ZodObject<{
|
|
7513
|
+
cwd: import("zod").ZodString;
|
|
7514
|
+
path: import("zod").ZodString;
|
|
7515
|
+
newPath: import("zod").ZodString;
|
|
7516
|
+
result: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
7517
|
+
status: import("zod").ZodLiteral<"ok">;
|
|
7518
|
+
from: import("zod").ZodString;
|
|
7519
|
+
to: import("zod").ZodString;
|
|
7520
|
+
kind: import("zod").ZodEnum<{
|
|
7521
|
+
file: "file";
|
|
7522
|
+
directory: "directory";
|
|
7523
|
+
}>;
|
|
7524
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7525
|
+
status: import("zod").ZodLiteral<"not_found">;
|
|
7526
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7527
|
+
status: import("zod").ZodLiteral<"exists">;
|
|
7528
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7529
|
+
status: import("zod").ZodLiteral<"error">;
|
|
7530
|
+
message: import("zod").ZodString;
|
|
7531
|
+
}, import("zod/v4/core").$strip>], "status">;
|
|
7532
|
+
requestId: import("zod").ZodString;
|
|
7533
|
+
}, import("zod/v4/core").$strip>;
|
|
7534
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7535
|
+
type: import("zod").ZodLiteral<"file.refine.response">;
|
|
7536
|
+
payload: import("zod").ZodObject<{
|
|
7537
|
+
cwd: import("zod").ZodString;
|
|
7538
|
+
result: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
7539
|
+
status: import("zod").ZodLiteral<"ok">;
|
|
7540
|
+
files: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7541
|
+
id: import("zod").ZodString;
|
|
7542
|
+
content: import("zod").ZodString;
|
|
7543
|
+
}, import("zod/v4/core").$strip>>;
|
|
7544
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7545
|
+
status: import("zod").ZodLiteral<"error">;
|
|
7546
|
+
message: import("zod").ZodString;
|
|
7547
|
+
}, import("zod/v4/core").$strip>], "status">;
|
|
7548
|
+
requestId: import("zod").ZodString;
|
|
7549
|
+
}, import("zod/v4/core").$strip>;
|
|
6848
7550
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6849
7551
|
type: import("zod").ZodLiteral<"file.watch.subscribe.response">;
|
|
6850
7552
|
payload: import("zod").ZodObject<{
|
|
@@ -6980,6 +7682,282 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6980
7682
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6981
7683
|
requestId: import("zod").ZodString;
|
|
6982
7684
|
}, import("zod/v4/core").$strip>;
|
|
7685
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7686
|
+
type: import("zod").ZodLiteral<"code.definition.response">;
|
|
7687
|
+
payload: import("zod").ZodObject<{
|
|
7688
|
+
cwd: import("zod").ZodString;
|
|
7689
|
+
path: import("zod").ZodString;
|
|
7690
|
+
status: import("zod").ZodEnum<{
|
|
7691
|
+
unavailable: "unavailable";
|
|
7692
|
+
ok: "ok";
|
|
7693
|
+
indexing: "indexing";
|
|
7694
|
+
}>;
|
|
7695
|
+
locations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7696
|
+
path: import("zod").ZodString;
|
|
7697
|
+
line: import("zod").ZodNumber;
|
|
7698
|
+
column: import("zod").ZodNumber;
|
|
7699
|
+
endLine: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7700
|
+
endColumn: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7701
|
+
serverId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7702
|
+
}, import("zod/v4/core").$strip>>;
|
|
7703
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7704
|
+
requestId: import("zod").ZodString;
|
|
7705
|
+
}, import("zod/v4/core").$strip>;
|
|
7706
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7707
|
+
type: import("zod").ZodLiteral<"code.document.sync.response">;
|
|
7708
|
+
payload: import("zod").ZodObject<{
|
|
7709
|
+
cwd: import("zod").ZodString;
|
|
7710
|
+
path: import("zod").ZodString;
|
|
7711
|
+
ok: import("zod").ZodBoolean;
|
|
7712
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7713
|
+
requestId: import("zod").ZodString;
|
|
7714
|
+
}, import("zod/v4/core").$strip>;
|
|
7715
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7716
|
+
type: import("zod").ZodLiteral<"code.document.close.response">;
|
|
7717
|
+
payload: import("zod").ZodObject<{
|
|
7718
|
+
cwd: import("zod").ZodString;
|
|
7719
|
+
path: import("zod").ZodString;
|
|
7720
|
+
ok: import("zod").ZodBoolean;
|
|
7721
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7722
|
+
requestId: import("zod").ZodString;
|
|
7723
|
+
}, import("zod/v4/core").$strip>;
|
|
7724
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7725
|
+
type: import("zod").ZodLiteral<"code.hover.response">;
|
|
7726
|
+
payload: import("zod").ZodObject<{
|
|
7727
|
+
cwd: import("zod").ZodString;
|
|
7728
|
+
path: import("zod").ZodString;
|
|
7729
|
+
status: import("zod").ZodEnum<{
|
|
7730
|
+
unavailable: "unavailable";
|
|
7731
|
+
ok: "ok";
|
|
7732
|
+
indexing: "indexing";
|
|
7733
|
+
}>;
|
|
7734
|
+
markdown: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7735
|
+
range: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
7736
|
+
line: import("zod").ZodNumber;
|
|
7737
|
+
column: import("zod").ZodNumber;
|
|
7738
|
+
endLine: import("zod").ZodNumber;
|
|
7739
|
+
endColumn: import("zod").ZodNumber;
|
|
7740
|
+
}, import("zod/v4/core").$strip>>;
|
|
7741
|
+
serverId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7742
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7743
|
+
requestId: import("zod").ZodString;
|
|
7744
|
+
}, import("zod/v4/core").$strip>;
|
|
7745
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7746
|
+
type: import("zod").ZodLiteral<"code.references.response">;
|
|
7747
|
+
payload: import("zod").ZodObject<{
|
|
7748
|
+
cwd: import("zod").ZodString;
|
|
7749
|
+
path: import("zod").ZodString;
|
|
7750
|
+
status: import("zod").ZodEnum<{
|
|
7751
|
+
unavailable: "unavailable";
|
|
7752
|
+
ok: "ok";
|
|
7753
|
+
indexing: "indexing";
|
|
7754
|
+
}>;
|
|
7755
|
+
locations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7756
|
+
path: import("zod").ZodString;
|
|
7757
|
+
line: import("zod").ZodNumber;
|
|
7758
|
+
column: import("zod").ZodNumber;
|
|
7759
|
+
endLine: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7760
|
+
endColumn: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7761
|
+
serverId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7762
|
+
}, import("zod/v4/core").$strip>>;
|
|
7763
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7764
|
+
requestId: import("zod").ZodString;
|
|
7765
|
+
}, import("zod/v4/core").$strip>;
|
|
7766
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7767
|
+
type: import("zod").ZodLiteral<"code.rename.preview.response">;
|
|
7768
|
+
payload: import("zod").ZodObject<{
|
|
7769
|
+
cwd: import("zod").ZodString;
|
|
7770
|
+
path: import("zod").ZodString;
|
|
7771
|
+
newName: import("zod").ZodString;
|
|
7772
|
+
status: import("zod").ZodEnum<{
|
|
7773
|
+
unavailable: "unavailable";
|
|
7774
|
+
ok: "ok";
|
|
7775
|
+
indexing: "indexing";
|
|
7776
|
+
}>;
|
|
7777
|
+
files: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7778
|
+
path: import("zod").ZodString;
|
|
7779
|
+
edits: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7780
|
+
line: import("zod").ZodNumber;
|
|
7781
|
+
column: import("zod").ZodNumber;
|
|
7782
|
+
endLine: import("zod").ZodNumber;
|
|
7783
|
+
endColumn: import("zod").ZodNumber;
|
|
7784
|
+
newText: import("zod").ZodString;
|
|
7785
|
+
oldText: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7786
|
+
}, import("zod/v4/core").$strip>>;
|
|
7787
|
+
}, import("zod/v4/core").$strip>>;
|
|
7788
|
+
fileCount: import("zod").ZodNumber;
|
|
7789
|
+
editCount: import("zod").ZodNumber;
|
|
7790
|
+
planId: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7791
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7792
|
+
requestId: import("zod").ZodString;
|
|
7793
|
+
}, import("zod/v4/core").$strip>;
|
|
7794
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7795
|
+
type: import("zod").ZodLiteral<"code.rename.apply.response">;
|
|
7796
|
+
payload: import("zod").ZodObject<{
|
|
7797
|
+
cwd: import("zod").ZodString;
|
|
7798
|
+
path: import("zod").ZodString;
|
|
7799
|
+
newName: import("zod").ZodString;
|
|
7800
|
+
status: import("zod").ZodEnum<{
|
|
7801
|
+
ok: "ok";
|
|
7802
|
+
expired: "expired";
|
|
7803
|
+
escaped: "escaped";
|
|
7804
|
+
}>;
|
|
7805
|
+
runId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7806
|
+
files: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7807
|
+
path: import("zod").ZodString;
|
|
7808
|
+
kind: import("zod").ZodEnum<{
|
|
7809
|
+
failed: "failed";
|
|
7810
|
+
partial: "partial";
|
|
7811
|
+
applied: "applied";
|
|
7812
|
+
}>;
|
|
7813
|
+
appliedEdits: import("zod").ZodNumber;
|
|
7814
|
+
skippedEdits: import("zod").ZodNumber;
|
|
7815
|
+
reason: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7816
|
+
}, import("zod/v4/core").$strip>>;
|
|
7817
|
+
appliedFiles: import("zod").ZodNumber;
|
|
7818
|
+
appliedEdits: import("zod").ZodNumber;
|
|
7819
|
+
skippedEdits: import("zod").ZodNumber;
|
|
7820
|
+
complete: import("zod").ZodBoolean;
|
|
7821
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7822
|
+
requestId: import("zod").ZodString;
|
|
7823
|
+
}, import("zod/v4/core").$strip>;
|
|
7824
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7825
|
+
type: import("zod").ZodLiteral<"code.rename.undo.response">;
|
|
7826
|
+
payload: import("zod").ZodObject<{
|
|
7827
|
+
cwd: import("zod").ZodString;
|
|
7828
|
+
runId: import("zod").ZodString;
|
|
7829
|
+
status: import("zod").ZodEnum<{
|
|
7830
|
+
ok: "ok";
|
|
7831
|
+
expired: "expired";
|
|
7832
|
+
}>;
|
|
7833
|
+
files: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7834
|
+
path: import("zod").ZodString;
|
|
7835
|
+
kind: import("zod").ZodEnum<{
|
|
7836
|
+
failed: "failed";
|
|
7837
|
+
restored: "restored";
|
|
7838
|
+
changedSince: "changedSince";
|
|
7839
|
+
}>;
|
|
7840
|
+
reason: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7841
|
+
}, import("zod/v4/core").$strip>>;
|
|
7842
|
+
restoredFiles: import("zod").ZodNumber;
|
|
7843
|
+
complete: import("zod").ZodBoolean;
|
|
7844
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7845
|
+
requestId: import("zod").ZodString;
|
|
7846
|
+
}, import("zod/v4/core").$strip>;
|
|
7847
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7848
|
+
type: import("zod").ZodLiteral<"lsp.servers.list.response">;
|
|
7849
|
+
payload: import("zod").ZodObject<{
|
|
7850
|
+
cwd: import("zod").ZodString;
|
|
7851
|
+
languages: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7852
|
+
id: import("zod").ZodString;
|
|
7853
|
+
enabled: import("zod").ZodBoolean;
|
|
7854
|
+
installed: import("zod").ZodBoolean;
|
|
7855
|
+
running: import("zod").ZodBoolean;
|
|
7856
|
+
rung: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7857
|
+
bin: import("zod").ZodString;
|
|
7858
|
+
extensions: import("zod").ZodArray<import("zod").ZodString>;
|
|
7859
|
+
indexCost: import("zod").ZodString;
|
|
7860
|
+
}, import("zod/v4/core").$strip>>;
|
|
7861
|
+
running: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7862
|
+
rootPath: import("zod").ZodString;
|
|
7863
|
+
serverId: import("zod").ZodString;
|
|
7864
|
+
uptimeMs: import("zod").ZodNumber;
|
|
7865
|
+
lastUsedAt: import("zod").ZodNumber;
|
|
7866
|
+
}, import("zod/v4/core").$strip>>;
|
|
7867
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7868
|
+
requestId: import("zod").ZodString;
|
|
7869
|
+
}, import("zod/v4/core").$strip>;
|
|
7870
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7871
|
+
type: import("zod").ZodLiteral<"lsp.server.stop.response">;
|
|
7872
|
+
payload: import("zod").ZodObject<{
|
|
7873
|
+
rootPath: import("zod").ZodString;
|
|
7874
|
+
serverId: import("zod").ZodString;
|
|
7875
|
+
ok: import("zod").ZodBoolean;
|
|
7876
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7877
|
+
requestId: import("zod").ZodString;
|
|
7878
|
+
}, import("zod/v4/core").$strip>;
|
|
7879
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7880
|
+
type: import("zod").ZodLiteral<"code.solution.list.response">;
|
|
7881
|
+
payload: import("zod").ZodObject<{
|
|
7882
|
+
cwd: import("zod").ZodString;
|
|
7883
|
+
solutions: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7884
|
+
path: import("zod").ZodString;
|
|
7885
|
+
name: import("zod").ZodString;
|
|
7886
|
+
format: import("zod").ZodEnum<{
|
|
7887
|
+
sln: "sln";
|
|
7888
|
+
slnx: "slnx";
|
|
7889
|
+
}>;
|
|
7890
|
+
}, import("zod/v4/core").$strip>>;
|
|
7891
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7892
|
+
requestId: import("zod").ZodString;
|
|
7893
|
+
}, import("zod/v4/core").$strip>;
|
|
7894
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7895
|
+
type: import("zod").ZodLiteral<"code.solution.get_tree.response">;
|
|
7896
|
+
payload: import("zod").ZodObject<{
|
|
7897
|
+
cwd: import("zod").ZodString;
|
|
7898
|
+
solutionPath: import("zod").ZodString;
|
|
7899
|
+
name: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7900
|
+
format: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
7901
|
+
sln: "sln";
|
|
7902
|
+
slnx: "slnx";
|
|
7903
|
+
}>>;
|
|
7904
|
+
folders: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7905
|
+
path: import("zod").ZodString;
|
|
7906
|
+
name: import("zod").ZodString;
|
|
7907
|
+
parentPath: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7908
|
+
}, import("zod/v4/core").$strip>>;
|
|
7909
|
+
projects: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7910
|
+
id: import("zod").ZodString;
|
|
7911
|
+
name: import("zod").ZodString;
|
|
7912
|
+
path: import("zod").ZodString;
|
|
7913
|
+
outsideWorkspace: import("zod").ZodBoolean;
|
|
7914
|
+
folderPath: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7915
|
+
typeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7916
|
+
}, import("zod/v4/core").$strip>>;
|
|
7917
|
+
buildTypes: import("zod").ZodArray<import("zod").ZodString>;
|
|
7918
|
+
platforms: import("zod").ZodArray<import("zod").ZodString>;
|
|
7919
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7920
|
+
requestId: import("zod").ZodString;
|
|
7921
|
+
}, import("zod/v4/core").$strip>;
|
|
7922
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7923
|
+
type: import("zod").ZodLiteral<"code.solution.load_project.response">;
|
|
7924
|
+
payload: import("zod").ZodObject<{
|
|
7925
|
+
cwd: import("zod").ZodString;
|
|
7926
|
+
solutionPath: import("zod").ZodString;
|
|
7927
|
+
projectPath: import("zod").ZodString;
|
|
7928
|
+
status: import("zod").ZodEnum<{
|
|
7929
|
+
failed: "failed";
|
|
7930
|
+
unavailable: "unavailable";
|
|
7931
|
+
ok: "ok";
|
|
7932
|
+
}>;
|
|
7933
|
+
nodes: import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
7934
|
+
kind: import("zod").ZodLiteral<"directory">;
|
|
7935
|
+
id: import("zod").ZodString;
|
|
7936
|
+
parentId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7937
|
+
name: import("zod").ZodString;
|
|
7938
|
+
path: import("zod").ZodString;
|
|
7939
|
+
outsideWorkspace: import("zod").ZodBoolean;
|
|
7940
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7941
|
+
kind: import("zod").ZodLiteral<"file">;
|
|
7942
|
+
id: import("zod").ZodString;
|
|
7943
|
+
parentId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7944
|
+
name: import("zod").ZodString;
|
|
7945
|
+
path: import("zod").ZodString;
|
|
7946
|
+
outsideWorkspace: import("zod").ZodBoolean;
|
|
7947
|
+
itemType: import("zod").ZodString;
|
|
7948
|
+
isImplicit: import("zod").ZodBoolean;
|
|
7949
|
+
}, import("zod/v4/core").$strip>], "kind">>;
|
|
7950
|
+
projectReferences: import("zod").ZodArray<import("zod").ZodString>;
|
|
7951
|
+
packageReferences: import("zod").ZodArray<import("zod").ZodObject<{
|
|
7952
|
+
name: import("zod").ZodString;
|
|
7953
|
+
version: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7954
|
+
}, import("zod/v4/core").$strip>>;
|
|
7955
|
+
targetFrameworks: import("zod").ZodArray<import("zod").ZodString>;
|
|
7956
|
+
outputType: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7957
|
+
isSdkStyle: import("zod").ZodBoolean;
|
|
7958
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7959
|
+
requestId: import("zod").ZodString;
|
|
7960
|
+
}, import("zod/v4/core").$strip>;
|
|
6983
7961
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6984
7962
|
type: import("zod").ZodLiteral<"list_provider_models_response">;
|
|
6985
7963
|
payload: import("zod").ZodObject<{
|
|
@@ -7365,6 +8343,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7365
8343
|
nodeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7366
8344
|
line: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7367
8345
|
lineEnd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8346
|
+
fixable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
8347
|
+
snippet: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7368
8348
|
}, import("zod/v4/core").$strip>>;
|
|
7369
8349
|
}, import("zod/v4/core").$strip>>;
|
|
7370
8350
|
edges: import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -7397,6 +8377,12 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7397
8377
|
warn: "warn";
|
|
7398
8378
|
critical: "critical";
|
|
7399
8379
|
}>;
|
|
8380
|
+
visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
8381
|
+
exact: "exact";
|
|
8382
|
+
convention: "convention";
|
|
8383
|
+
unverified: "unverified";
|
|
8384
|
+
not_visible: "not_visible";
|
|
8385
|
+
}>>;
|
|
7400
8386
|
}, import("zod/v4/core").$strip>>;
|
|
7401
8387
|
fixedTotal: import("zod").ZodNumber;
|
|
7402
8388
|
conditionalTotal: import("zod").ZodNumber;
|
|
@@ -7427,7 +8413,38 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7427
8413
|
nodeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7428
8414
|
line: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7429
8415
|
lineEnd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8416
|
+
fixable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
8417
|
+
snippet: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8418
|
+
}, import("zod/v4/core").$strip>>;
|
|
8419
|
+
personalityId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8420
|
+
personalityMemoryTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8421
|
+
}, import("zod/v4/core").$strip>>;
|
|
8422
|
+
}, import("zod/v4/core").$strip>;
|
|
8423
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
8424
|
+
type: import("zod").ZodLiteral<"context.prompt.preview.get.response">;
|
|
8425
|
+
payload: import("zod").ZodObject<{
|
|
8426
|
+
requestId: import("zod").ZodString;
|
|
8427
|
+
preview: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
8428
|
+
sections: import("zod").ZodArray<import("zod").ZodObject<{
|
|
8429
|
+
category: import("zod").ZodEnum<{
|
|
8430
|
+
context_files: "context_files";
|
|
8431
|
+
memory_index: "memory_index";
|
|
8432
|
+
skills_roster: "skills_roster";
|
|
8433
|
+
mcp_tools: "mcp_tools";
|
|
8434
|
+
otto_injected: "otto_injected";
|
|
8435
|
+
system_prompt: "system_prompt";
|
|
8436
|
+
}>;
|
|
8437
|
+
label: import("zod").ZodString;
|
|
8438
|
+
visibility: import("zod").ZodEnum<{
|
|
8439
|
+
exact: "exact";
|
|
8440
|
+
convention: "convention";
|
|
8441
|
+
unverified: "unverified";
|
|
8442
|
+
not_visible: "not_visible";
|
|
8443
|
+
}>;
|
|
8444
|
+
text: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8445
|
+
estTokens: import("zod").ZodNumber;
|
|
7430
8446
|
}, import("zod/v4/core").$strip>>;
|
|
8447
|
+
estTokens: import("zod").ZodNumber;
|
|
7431
8448
|
}, import("zod/v4/core").$strip>>;
|
|
7432
8449
|
}, import("zod/v4/core").$strip>;
|
|
7433
8450
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -7437,6 +8454,59 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7437
8454
|
ok: import("zod").ZodBoolean;
|
|
7438
8455
|
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
7439
8456
|
}, import("zod/v4/core").$strip>;
|
|
8457
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
8458
|
+
type: import("zod").ZodLiteral<"context.findings.fix.response">;
|
|
8459
|
+
payload: import("zod").ZodObject<{
|
|
8460
|
+
requestId: import("zod").ZodString;
|
|
8461
|
+
fixedCount: import("zod").ZodNumber;
|
|
8462
|
+
failedCount: import("zod").ZodNumber;
|
|
8463
|
+
errors: import("zod").ZodArray<import("zod").ZodString>;
|
|
8464
|
+
}, import("zod/v4/core").$strip>;
|
|
8465
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
8466
|
+
type: import("zod").ZodLiteral<"personality.memory.list.response">;
|
|
8467
|
+
payload: import("zod").ZodObject<{
|
|
8468
|
+
requestId: import("zod").ZodString;
|
|
8469
|
+
personalityId: import("zod").ZodString;
|
|
8470
|
+
personalityName: import("zod").ZodString;
|
|
8471
|
+
enabled: import("zod").ZodBoolean;
|
|
8472
|
+
entries: import("zod").ZodArray<import("zod").ZodObject<{
|
|
8473
|
+
id: import("zod").ZodString;
|
|
8474
|
+
text: import("zod").ZodString;
|
|
8475
|
+
scope: import("zod").ZodString;
|
|
8476
|
+
projectRoot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8477
|
+
createdAt: import("zod").ZodString;
|
|
8478
|
+
updatedAt: import("zod").ZodString;
|
|
8479
|
+
source: import("zod").ZodString;
|
|
8480
|
+
reinforcedCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8481
|
+
transferredFrom: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8482
|
+
}, import("zod/v4/core").$loose>>;
|
|
8483
|
+
brief: import("zod").ZodString;
|
|
8484
|
+
briefTokens: import("zod").ZodNumber;
|
|
8485
|
+
briefOmittedCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8486
|
+
projectRoot: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8487
|
+
}, import("zod/v4/core").$strip>;
|
|
8488
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
8489
|
+
type: import("zod").ZodLiteral<"personality.memory.update.response">;
|
|
8490
|
+
payload: import("zod").ZodObject<{
|
|
8491
|
+
requestId: import("zod").ZodString;
|
|
8492
|
+
ok: import("zod").ZodBoolean;
|
|
8493
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8494
|
+
}, import("zod/v4/core").$strip>;
|
|
8495
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
8496
|
+
type: import("zod").ZodLiteral<"personality.memory.transfer.response">;
|
|
8497
|
+
payload: import("zod").ZodObject<{
|
|
8498
|
+
requestId: import("zod").ZodString;
|
|
8499
|
+
ok: import("zod").ZodBoolean;
|
|
8500
|
+
transferred: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8501
|
+
merged: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8502
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8503
|
+
}, import("zod/v4/core").$strip>;
|
|
8504
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
8505
|
+
type: import("zod").ZodLiteral<"personality.memory.stats.response">;
|
|
8506
|
+
payload: import("zod").ZodObject<{
|
|
8507
|
+
requestId: import("zod").ZodString;
|
|
8508
|
+
counts: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodNumber>;
|
|
8509
|
+
}, import("zod/v4/core").$strip>;
|
|
7440
8510
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7441
8511
|
type: import("zod").ZodLiteral<"stats.activity.reset.response">;
|
|
7442
8512
|
payload: import("zod").ZodObject<{
|
|
@@ -8717,10 +9787,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
8717
9787
|
payload: import("zod").ZodObject<{
|
|
8718
9788
|
requestId: import("zod").ZodString;
|
|
8719
9789
|
phase: import("zod").ZodEnum<{
|
|
9790
|
+
complete: "complete";
|
|
8720
9791
|
starting: "starting";
|
|
8721
9792
|
downloading: "downloading";
|
|
8722
9793
|
installing: "installing";
|
|
8723
|
-
complete: "complete";
|
|
8724
9794
|
}>;
|
|
8725
9795
|
}, import("zod/v4/core").$strip>;
|
|
8726
9796
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|