@otto-code/protocol 0.8.9 → 0.8.12
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-queue.d.ts +87 -0
- package/dist/agent-queue.js +106 -0
- package/dist/brain.d.ts +2321 -0
- package/dist/brain.js +1082 -0
- package/dist/client-capabilities.d.ts +2 -0
- package/dist/client-capabilities.js +10 -0
- package/dist/code-intelligence.d.ts +917 -0
- package/dist/code-intelligence.js +699 -0
- package/dist/communications.d.ts +1106 -0
- package/dist/communications.js +384 -0
- package/dist/context.d.ts +787 -0
- package/dist/context.js +295 -0
- package/dist/daemon-config.d.ts +377 -0
- package/dist/daemon-config.js +395 -0
- package/dist/file-operations.d.ts +380 -0
- package/dist/file-operations.js +282 -0
- package/dist/generated/validation/ws-outbound.aot.js +54927 -48878
- package/dist/git-hosting.d.ts +117 -0
- package/dist/git-hosting.js +109 -0
- package/dist/git-operations.d.ts +255 -0
- package/dist/git-operations.js +221 -0
- package/dist/integration-authorization.d.ts +195 -0
- package/dist/integration-authorization.js +125 -0
- package/dist/kanban.d.ts +341 -0
- package/dist/kanban.js +273 -0
- package/dist/loop/rpc-schemas.d.ts +6 -6
- package/dist/meetings.d.ts +95 -0
- package/dist/meetings.js +57 -0
- package/dist/messages.d.ts +21054 -24042
- package/dist/messages.js +4355 -8731
- package/dist/orchestration.d.ts +726 -0
- package/dist/orchestration.js +232 -0
- package/dist/personality-schemas.d.ts +221 -0
- package/dist/personality-schemas.js +340 -0
- package/dist/preview.d.ts +140 -0
- package/dist/preview.js +98 -0
- package/dist/project-knowledge.d.ts +740 -0
- package/dist/project-knowledge.js +229 -0
- package/dist/project-links.d.ts +102 -0
- package/dist/project-links.js +62 -0
- package/dist/provider-config.d.ts +87 -2
- package/dist/provider-config.js +110 -0
- package/dist/refine.d.ts +93 -0
- package/dist/refine.js +78 -0
- package/dist/schedule/rpc-schemas.d.ts +47 -47
- package/dist/schedule/types.d.ts +13 -13
- package/dist/speech.d.ts +180 -0
- package/dist/speech.js +177 -0
- package/dist/storage.d.ts +79 -0
- package/dist/storage.js +107 -0
- package/dist/suggested-tasks.d.ts +106 -0
- package/dist/suggested-tasks.js +81 -0
- package/dist/terminal-compatibility.d.ts +55 -0
- package/dist/terminal-compatibility.js +35 -0
- package/dist/usage-stats.d.ts +255 -0
- package/dist/usage-stats.js +162 -0
- package/dist/validation/ws-outbound-schema-metadata.d.ts +1404 -274
- package/dist/worktree-ops.d.ts +81 -0
- package/dist/worktree-ops.js +88 -0
- package/package.json +1 -1
|
@@ -68,8 +68,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
68
68
|
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
69
69
|
costCoverage: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
70
70
|
none: "none";
|
|
71
|
-
complete: "complete";
|
|
72
71
|
partial: "partial";
|
|
72
|
+
complete: "complete";
|
|
73
73
|
}>>;
|
|
74
74
|
}, import("zod/v4/core").$strip>>;
|
|
75
75
|
toolUseCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -188,8 +188,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
188
188
|
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
189
189
|
costCoverage: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
190
190
|
none: "none";
|
|
191
|
-
complete: "complete";
|
|
192
191
|
partial: "partial";
|
|
192
|
+
complete: "complete";
|
|
193
193
|
}>>;
|
|
194
194
|
}, import("zod/v4/core").$strip>>;
|
|
195
195
|
toolUseCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -303,8 +303,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
303
303
|
info: import("zod").ZodObject<{
|
|
304
304
|
status: import("zod").ZodEnum<{
|
|
305
305
|
warning: "warning";
|
|
306
|
-
allowed: "allowed";
|
|
307
306
|
rejected: "rejected";
|
|
307
|
+
allowed: "allowed";
|
|
308
308
|
}>;
|
|
309
309
|
utilizationPercent: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
310
310
|
limitType: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -737,8 +737,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
737
737
|
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
738
738
|
costCoverage: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
739
739
|
none: "none";
|
|
740
|
-
complete: "complete";
|
|
741
740
|
partial: "partial";
|
|
741
|
+
complete: "complete";
|
|
742
742
|
}>>;
|
|
743
743
|
}, import("zod/v4/core").$strip>>;
|
|
744
744
|
toolUseCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -869,17 +869,24 @@ export declare const WSOutboundMessageSchema: {
|
|
|
869
869
|
projectId: import("zod").ZodString;
|
|
870
870
|
projectDisplayName: import("zod").ZodString;
|
|
871
871
|
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
872
|
+
projectKanban: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
873
|
+
adapter: import("zod").ZodEnum<{
|
|
874
|
+
github: "github";
|
|
875
|
+
jira: "jira";
|
|
876
|
+
}>;
|
|
877
|
+
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
878
|
+
}, import("zod/v4/core").$loose>>>;
|
|
872
879
|
projectRootPath: import("zod").ZodString;
|
|
873
880
|
workspaceDirectory: import("zod").ZodOptional<import("zod").ZodString>;
|
|
874
881
|
projectKind: import("zod").ZodEnum<{
|
|
875
|
-
git: "git";
|
|
876
882
|
directory: "directory";
|
|
883
|
+
git: "git";
|
|
877
884
|
non_git: "non_git";
|
|
878
885
|
}>;
|
|
879
886
|
workspaceKind: import("zod").ZodEnum<{
|
|
880
887
|
worktree: "worktree";
|
|
881
|
-
checkout: "checkout";
|
|
882
888
|
directory: "directory";
|
|
889
|
+
checkout: "checkout";
|
|
883
890
|
local_checkout: "local_checkout";
|
|
884
891
|
}>;
|
|
885
892
|
name: import("zod").ZodString;
|
|
@@ -888,10 +895,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
888
895
|
archivingAt: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
889
896
|
status: import("zod").ZodEnum<{
|
|
890
897
|
running: "running";
|
|
891
|
-
attention: "attention";
|
|
892
|
-
needs_input: "needs_input";
|
|
893
898
|
done: "done";
|
|
894
899
|
failed: "failed";
|
|
900
|
+
attention: "attention";
|
|
901
|
+
needs_input: "needs_input";
|
|
895
902
|
}>;
|
|
896
903
|
statusEnteredAt: import("zod").ZodPipe<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>, import("zod").ZodTransform<string | null, string | null | undefined>>;
|
|
897
904
|
activityAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -976,8 +983,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
976
983
|
}, import("zod/v4/core").$strip>>>;
|
|
977
984
|
checksStatus: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
978
985
|
success: "success";
|
|
979
|
-
pending: "pending";
|
|
980
986
|
none: "none";
|
|
987
|
+
pending: "pending";
|
|
981
988
|
failure: "failure";
|
|
982
989
|
}>>;
|
|
983
990
|
reviewDecision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
@@ -1079,11 +1086,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1079
1086
|
projectId: string;
|
|
1080
1087
|
projectDisplayName: string;
|
|
1081
1088
|
projectRootPath: string;
|
|
1082
|
-
projectKind: "
|
|
1083
|
-
workspaceKind: "worktree" | "
|
|
1089
|
+
projectKind: "directory" | "git" | "non_git";
|
|
1090
|
+
workspaceKind: "worktree" | "directory" | "checkout" | "local_checkout";
|
|
1084
1091
|
name: string;
|
|
1085
1092
|
archivingAt: string | null;
|
|
1086
|
-
status: "running" | "
|
|
1093
|
+
status: "running" | "done" | "failed" | "attention" | "needs_input";
|
|
1087
1094
|
statusEnteredAt: string | null;
|
|
1088
1095
|
activityAt: string | null;
|
|
1089
1096
|
scripts: {
|
|
@@ -1107,6 +1114,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1107
1114
|
publicProxyUrl?: string | null | undefined;
|
|
1108
1115
|
}[];
|
|
1109
1116
|
projectCustomName?: string | null | undefined;
|
|
1117
|
+
projectKanban?: {
|
|
1118
|
+
[x: string]: unknown;
|
|
1119
|
+
adapter: "github" | "jira";
|
|
1120
|
+
boardId?: string | null | undefined;
|
|
1121
|
+
} | null | undefined;
|
|
1110
1122
|
title?: string | null | undefined;
|
|
1111
1123
|
pinnedAt?: string | null | undefined;
|
|
1112
1124
|
diffStat?: {
|
|
@@ -1149,7 +1161,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1149
1161
|
workflow?: string | undefined;
|
|
1150
1162
|
duration?: string | undefined;
|
|
1151
1163
|
}[] | undefined;
|
|
1152
|
-
checksStatus?: "success" | "
|
|
1164
|
+
checksStatus?: "success" | "none" | "pending" | "failure" | undefined;
|
|
1153
1165
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
1154
1166
|
repoOwner?: string | undefined;
|
|
1155
1167
|
repoName?: string | undefined;
|
|
@@ -1196,11 +1208,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1196
1208
|
projectId: string;
|
|
1197
1209
|
projectDisplayName: string;
|
|
1198
1210
|
projectRootPath: string;
|
|
1199
|
-
projectKind: "
|
|
1200
|
-
workspaceKind: "worktree" | "
|
|
1211
|
+
projectKind: "directory" | "git" | "non_git";
|
|
1212
|
+
workspaceKind: "worktree" | "directory" | "checkout" | "local_checkout";
|
|
1201
1213
|
name: string;
|
|
1202
1214
|
archivingAt: string | null;
|
|
1203
|
-
status: "running" | "
|
|
1215
|
+
status: "running" | "done" | "failed" | "attention" | "needs_input";
|
|
1204
1216
|
statusEnteredAt: string | null;
|
|
1205
1217
|
activityAt: string | null;
|
|
1206
1218
|
scripts: {
|
|
@@ -1224,6 +1236,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1224
1236
|
publicProxyUrl?: string | null | undefined;
|
|
1225
1237
|
}[];
|
|
1226
1238
|
projectCustomName?: string | null | undefined;
|
|
1239
|
+
projectKanban?: {
|
|
1240
|
+
[x: string]: unknown;
|
|
1241
|
+
adapter: "github" | "jira";
|
|
1242
|
+
boardId?: string | null | undefined;
|
|
1243
|
+
} | null | undefined;
|
|
1227
1244
|
workspaceDirectory?: string | undefined;
|
|
1228
1245
|
title?: string | null | undefined;
|
|
1229
1246
|
pinnedAt?: string | null | undefined;
|
|
@@ -1267,7 +1284,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1267
1284
|
workflow?: string | undefined;
|
|
1268
1285
|
duration?: string | undefined;
|
|
1269
1286
|
}[] | undefined;
|
|
1270
|
-
checksStatus?: "success" | "
|
|
1287
|
+
checksStatus?: "success" | "none" | "pending" | "failure" | undefined;
|
|
1271
1288
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
1272
1289
|
repoOwner?: string | undefined;
|
|
1273
1290
|
repoName?: string | undefined;
|
|
@@ -1318,10 +1335,17 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1318
1335
|
projectKey: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1319
1336
|
projectDisplayName: import("zod").ZodString;
|
|
1320
1337
|
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1338
|
+
projectKanban: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
1339
|
+
adapter: import("zod").ZodEnum<{
|
|
1340
|
+
github: "github";
|
|
1341
|
+
jira: "jira";
|
|
1342
|
+
}>;
|
|
1343
|
+
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1344
|
+
}, import("zod/v4/core").$loose>>>;
|
|
1321
1345
|
projectRootPath: import("zod").ZodString;
|
|
1322
1346
|
projectKind: import("zod").ZodEnum<{
|
|
1323
|
-
git: "git";
|
|
1324
1347
|
directory: "directory";
|
|
1348
|
+
git: "git";
|
|
1325
1349
|
non_git: "non_git";
|
|
1326
1350
|
}>;
|
|
1327
1351
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -1336,10 +1360,17 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1336
1360
|
projectKey: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1337
1361
|
projectDisplayName: import("zod").ZodString;
|
|
1338
1362
|
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1363
|
+
projectKanban: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
1364
|
+
adapter: import("zod").ZodEnum<{
|
|
1365
|
+
github: "github";
|
|
1366
|
+
jira: "jira";
|
|
1367
|
+
}>;
|
|
1368
|
+
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1369
|
+
}, import("zod/v4/core").$loose>>>;
|
|
1339
1370
|
projectRootPath: import("zod").ZodString;
|
|
1340
1371
|
projectKind: import("zod").ZodEnum<{
|
|
1341
|
-
git: "git";
|
|
1342
1372
|
directory: "directory";
|
|
1373
|
+
git: "git";
|
|
1343
1374
|
non_git: "non_git";
|
|
1344
1375
|
}>;
|
|
1345
1376
|
}, import("zod/v4/core").$strip>;
|
|
@@ -1356,10 +1387,17 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1356
1387
|
projectKey: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1357
1388
|
projectDisplayName: import("zod").ZodString;
|
|
1358
1389
|
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1390
|
+
projectKanban: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
1391
|
+
adapter: import("zod").ZodEnum<{
|
|
1392
|
+
github: "github";
|
|
1393
|
+
jira: "jira";
|
|
1394
|
+
}>;
|
|
1395
|
+
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1396
|
+
}, import("zod/v4/core").$loose>>>;
|
|
1359
1397
|
projectRootPath: import("zod").ZodString;
|
|
1360
1398
|
projectKind: import("zod").ZodEnum<{
|
|
1361
|
-
git: "git";
|
|
1362
1399
|
directory: "directory";
|
|
1400
|
+
git: "git";
|
|
1363
1401
|
non_git: "non_git";
|
|
1364
1402
|
}>;
|
|
1365
1403
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -1410,8 +1448,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1410
1448
|
workspaceId: import("zod").ZodString;
|
|
1411
1449
|
status: import("zod").ZodEnum<{
|
|
1412
1450
|
running: "running";
|
|
1413
|
-
failed: "failed";
|
|
1414
1451
|
completed: "completed";
|
|
1452
|
+
failed: "failed";
|
|
1415
1453
|
}>;
|
|
1416
1454
|
detail: import("zod").ZodObject<{
|
|
1417
1455
|
type: import("zod").ZodLiteral<"worktree_setup">;
|
|
@@ -1425,8 +1463,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1425
1463
|
log: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1426
1464
|
status: import("zod").ZodEnum<{
|
|
1427
1465
|
running: "running";
|
|
1428
|
-
failed: "failed";
|
|
1429
1466
|
completed: "completed";
|
|
1467
|
+
failed: "failed";
|
|
1430
1468
|
}>;
|
|
1431
1469
|
exitCode: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
1432
1470
|
durationMs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -1443,8 +1481,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1443
1481
|
snapshot: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
1444
1482
|
status: import("zod").ZodEnum<{
|
|
1445
1483
|
running: "running";
|
|
1446
|
-
failed: "failed";
|
|
1447
1484
|
completed: "completed";
|
|
1485
|
+
failed: "failed";
|
|
1448
1486
|
}>;
|
|
1449
1487
|
detail: import("zod").ZodObject<{
|
|
1450
1488
|
type: import("zod").ZodLiteral<"worktree_setup">;
|
|
@@ -1458,8 +1496,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1458
1496
|
log: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1459
1497
|
status: import("zod").ZodEnum<{
|
|
1460
1498
|
running: "running";
|
|
1461
|
-
failed: "failed";
|
|
1462
1499
|
completed: "completed";
|
|
1500
|
+
failed: "failed";
|
|
1463
1501
|
}>;
|
|
1464
1502
|
exitCode: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
1465
1503
|
durationMs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -1541,8 +1579,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1541
1579
|
info: import("zod").ZodObject<{
|
|
1542
1580
|
status: import("zod").ZodEnum<{
|
|
1543
1581
|
warning: "warning";
|
|
1544
|
-
allowed: "allowed";
|
|
1545
1582
|
rejected: "rejected";
|
|
1583
|
+
allowed: "allowed";
|
|
1546
1584
|
}>;
|
|
1547
1585
|
utilizationPercent: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1548
1586
|
limitType: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -1618,8 +1656,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1618
1656
|
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1619
1657
|
costCoverage: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
1620
1658
|
none: "none";
|
|
1621
|
-
complete: "complete";
|
|
1622
1659
|
partial: "partial";
|
|
1660
|
+
complete: "complete";
|
|
1623
1661
|
}>>;
|
|
1624
1662
|
}, import("zod/v4/core").$strip>>;
|
|
1625
1663
|
toolUseCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -1725,8 +1763,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1725
1763
|
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1726
1764
|
costCoverage: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
1727
1765
|
none: "none";
|
|
1728
|
-
complete: "complete";
|
|
1729
1766
|
partial: "partial";
|
|
1767
|
+
complete: "complete";
|
|
1730
1768
|
}>>;
|
|
1731
1769
|
}, import("zod/v4/core").$strip>>;
|
|
1732
1770
|
toolUseCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -1915,8 +1953,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1915
1953
|
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1916
1954
|
costCoverage: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
1917
1955
|
none: "none";
|
|
1918
|
-
complete: "complete";
|
|
1919
1956
|
partial: "partial";
|
|
1957
|
+
complete: "complete";
|
|
1920
1958
|
}>>;
|
|
1921
1959
|
}, import("zod/v4/core").$strip>>;
|
|
1922
1960
|
toolUseCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -2067,17 +2105,24 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2067
2105
|
projectId: import("zod").ZodString;
|
|
2068
2106
|
projectDisplayName: import("zod").ZodString;
|
|
2069
2107
|
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2108
|
+
projectKanban: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2109
|
+
adapter: import("zod").ZodEnum<{
|
|
2110
|
+
github: "github";
|
|
2111
|
+
jira: "jira";
|
|
2112
|
+
}>;
|
|
2113
|
+
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2114
|
+
}, import("zod/v4/core").$loose>>>;
|
|
2070
2115
|
projectRootPath: import("zod").ZodString;
|
|
2071
2116
|
workspaceDirectory: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2072
2117
|
projectKind: import("zod").ZodEnum<{
|
|
2073
|
-
git: "git";
|
|
2074
2118
|
directory: "directory";
|
|
2119
|
+
git: "git";
|
|
2075
2120
|
non_git: "non_git";
|
|
2076
2121
|
}>;
|
|
2077
2122
|
workspaceKind: import("zod").ZodEnum<{
|
|
2078
2123
|
worktree: "worktree";
|
|
2079
|
-
checkout: "checkout";
|
|
2080
2124
|
directory: "directory";
|
|
2125
|
+
checkout: "checkout";
|
|
2081
2126
|
local_checkout: "local_checkout";
|
|
2082
2127
|
}>;
|
|
2083
2128
|
name: import("zod").ZodString;
|
|
@@ -2086,10 +2131,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2086
2131
|
archivingAt: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
2087
2132
|
status: import("zod").ZodEnum<{
|
|
2088
2133
|
running: "running";
|
|
2089
|
-
attention: "attention";
|
|
2090
|
-
needs_input: "needs_input";
|
|
2091
2134
|
done: "done";
|
|
2092
2135
|
failed: "failed";
|
|
2136
|
+
attention: "attention";
|
|
2137
|
+
needs_input: "needs_input";
|
|
2093
2138
|
}>;
|
|
2094
2139
|
statusEnteredAt: import("zod").ZodPipe<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>, import("zod").ZodTransform<string | null, string | null | undefined>>;
|
|
2095
2140
|
activityAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -2174,8 +2219,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2174
2219
|
}, import("zod/v4/core").$strip>>>;
|
|
2175
2220
|
checksStatus: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
2176
2221
|
success: "success";
|
|
2177
|
-
pending: "pending";
|
|
2178
2222
|
none: "none";
|
|
2223
|
+
pending: "pending";
|
|
2179
2224
|
failure: "failure";
|
|
2180
2225
|
}>>;
|
|
2181
2226
|
reviewDecision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
@@ -2277,11 +2322,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2277
2322
|
projectId: string;
|
|
2278
2323
|
projectDisplayName: string;
|
|
2279
2324
|
projectRootPath: string;
|
|
2280
|
-
projectKind: "
|
|
2281
|
-
workspaceKind: "worktree" | "
|
|
2325
|
+
projectKind: "directory" | "git" | "non_git";
|
|
2326
|
+
workspaceKind: "worktree" | "directory" | "checkout" | "local_checkout";
|
|
2282
2327
|
name: string;
|
|
2283
2328
|
archivingAt: string | null;
|
|
2284
|
-
status: "running" | "
|
|
2329
|
+
status: "running" | "done" | "failed" | "attention" | "needs_input";
|
|
2285
2330
|
statusEnteredAt: string | null;
|
|
2286
2331
|
activityAt: string | null;
|
|
2287
2332
|
scripts: {
|
|
@@ -2305,6 +2350,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2305
2350
|
publicProxyUrl?: string | null | undefined;
|
|
2306
2351
|
}[];
|
|
2307
2352
|
projectCustomName?: string | null | undefined;
|
|
2353
|
+
projectKanban?: {
|
|
2354
|
+
[x: string]: unknown;
|
|
2355
|
+
adapter: "github" | "jira";
|
|
2356
|
+
boardId?: string | null | undefined;
|
|
2357
|
+
} | null | undefined;
|
|
2308
2358
|
title?: string | null | undefined;
|
|
2309
2359
|
pinnedAt?: string | null | undefined;
|
|
2310
2360
|
diffStat?: {
|
|
@@ -2347,7 +2397,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2347
2397
|
workflow?: string | undefined;
|
|
2348
2398
|
duration?: string | undefined;
|
|
2349
2399
|
}[] | undefined;
|
|
2350
|
-
checksStatus?: "success" | "
|
|
2400
|
+
checksStatus?: "success" | "none" | "pending" | "failure" | undefined;
|
|
2351
2401
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
2352
2402
|
repoOwner?: string | undefined;
|
|
2353
2403
|
repoName?: string | undefined;
|
|
@@ -2394,11 +2444,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2394
2444
|
projectId: string;
|
|
2395
2445
|
projectDisplayName: string;
|
|
2396
2446
|
projectRootPath: string;
|
|
2397
|
-
projectKind: "
|
|
2398
|
-
workspaceKind: "worktree" | "
|
|
2447
|
+
projectKind: "directory" | "git" | "non_git";
|
|
2448
|
+
workspaceKind: "worktree" | "directory" | "checkout" | "local_checkout";
|
|
2399
2449
|
name: string;
|
|
2400
2450
|
archivingAt: string | null;
|
|
2401
|
-
status: "running" | "
|
|
2451
|
+
status: "running" | "done" | "failed" | "attention" | "needs_input";
|
|
2402
2452
|
statusEnteredAt: string | null;
|
|
2403
2453
|
activityAt: string | null;
|
|
2404
2454
|
scripts: {
|
|
@@ -2422,6 +2472,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2422
2472
|
publicProxyUrl?: string | null | undefined;
|
|
2423
2473
|
}[];
|
|
2424
2474
|
projectCustomName?: string | null | undefined;
|
|
2475
|
+
projectKanban?: {
|
|
2476
|
+
[x: string]: unknown;
|
|
2477
|
+
adapter: "github" | "jira";
|
|
2478
|
+
boardId?: string | null | undefined;
|
|
2479
|
+
} | null | undefined;
|
|
2425
2480
|
workspaceDirectory?: string | undefined;
|
|
2426
2481
|
title?: string | null | undefined;
|
|
2427
2482
|
pinnedAt?: string | null | undefined;
|
|
@@ -2465,7 +2520,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2465
2520
|
workflow?: string | undefined;
|
|
2466
2521
|
duration?: string | undefined;
|
|
2467
2522
|
}[] | undefined;
|
|
2468
|
-
checksStatus?: "success" | "
|
|
2523
|
+
checksStatus?: "success" | "none" | "pending" | "failure" | undefined;
|
|
2469
2524
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
2470
2525
|
repoOwner?: string | undefined;
|
|
2471
2526
|
repoName?: string | undefined;
|
|
@@ -2513,10 +2568,17 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2513
2568
|
projectKey: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2514
2569
|
projectDisplayName: import("zod").ZodString;
|
|
2515
2570
|
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2571
|
+
projectKanban: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2572
|
+
adapter: import("zod").ZodEnum<{
|
|
2573
|
+
github: "github";
|
|
2574
|
+
jira: "jira";
|
|
2575
|
+
}>;
|
|
2576
|
+
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2577
|
+
}, import("zod/v4/core").$loose>>>;
|
|
2516
2578
|
projectRootPath: import("zod").ZodString;
|
|
2517
2579
|
projectKind: import("zod").ZodEnum<{
|
|
2518
|
-
git: "git";
|
|
2519
2580
|
directory: "directory";
|
|
2581
|
+
git: "git";
|
|
2520
2582
|
non_git: "non_git";
|
|
2521
2583
|
}>;
|
|
2522
2584
|
}, import("zod/v4/core").$strip>>>>;
|
|
@@ -2535,10 +2597,17 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2535
2597
|
projectKey: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2536
2598
|
projectDisplayName: import("zod").ZodString;
|
|
2537
2599
|
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2600
|
+
projectKanban: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2601
|
+
adapter: import("zod").ZodEnum<{
|
|
2602
|
+
github: "github";
|
|
2603
|
+
jira: "jira";
|
|
2604
|
+
}>;
|
|
2605
|
+
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2606
|
+
}, import("zod/v4/core").$loose>>>;
|
|
2538
2607
|
projectRootPath: import("zod").ZodString;
|
|
2539
2608
|
projectKind: import("zod").ZodEnum<{
|
|
2540
|
-
git: "git";
|
|
2541
2609
|
directory: "directory";
|
|
2610
|
+
git: "git";
|
|
2542
2611
|
non_git: "non_git";
|
|
2543
2612
|
}>;
|
|
2544
2613
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -2556,10 +2625,17 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2556
2625
|
projectKey: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2557
2626
|
projectDisplayName: import("zod").ZodString;
|
|
2558
2627
|
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2628
|
+
projectKanban: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2629
|
+
adapter: import("zod").ZodEnum<{
|
|
2630
|
+
github: "github";
|
|
2631
|
+
jira: "jira";
|
|
2632
|
+
}>;
|
|
2633
|
+
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2634
|
+
}, import("zod/v4/core").$loose>>>;
|
|
2559
2635
|
projectRootPath: import("zod").ZodString;
|
|
2560
2636
|
projectKind: import("zod").ZodEnum<{
|
|
2561
|
-
git: "git";
|
|
2562
2637
|
directory: "directory";
|
|
2638
|
+
git: "git";
|
|
2563
2639
|
non_git: "non_git";
|
|
2564
2640
|
}>;
|
|
2565
2641
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -2567,11 +2643,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2567
2643
|
remoteUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2568
2644
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2569
2645
|
errorCode: import("zod").ZodCatch<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
2646
|
+
git_failed: "git_failed";
|
|
2570
2647
|
parent_not_found: "parent_not_found";
|
|
2571
2648
|
invalid_name: "invalid_name";
|
|
2572
2649
|
already_exists: "already_exists";
|
|
2573
2650
|
git_unavailable: "git_unavailable";
|
|
2574
|
-
git_failed: "git_failed";
|
|
2575
2651
|
provider_unavailable: "provider_unavailable";
|
|
2576
2652
|
remote_failed: "remote_failed";
|
|
2577
2653
|
clone_failed: "clone_failed";
|
|
@@ -2611,10 +2687,17 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2611
2687
|
projectKey: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2612
2688
|
projectDisplayName: import("zod").ZodString;
|
|
2613
2689
|
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2690
|
+
projectKanban: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2691
|
+
adapter: import("zod").ZodEnum<{
|
|
2692
|
+
github: "github";
|
|
2693
|
+
jira: "jira";
|
|
2694
|
+
}>;
|
|
2695
|
+
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2696
|
+
}, import("zod/v4/core").$loose>>>;
|
|
2614
2697
|
projectRootPath: import("zod").ZodString;
|
|
2615
2698
|
projectKind: import("zod").ZodEnum<{
|
|
2616
|
-
git: "git";
|
|
2617
2699
|
directory: "directory";
|
|
2700
|
+
git: "git";
|
|
2618
2701
|
non_git: "non_git";
|
|
2619
2702
|
}>;
|
|
2620
2703
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -2630,17 +2713,24 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2630
2713
|
projectId: import("zod").ZodString;
|
|
2631
2714
|
projectDisplayName: import("zod").ZodString;
|
|
2632
2715
|
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2716
|
+
projectKanban: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2717
|
+
adapter: import("zod").ZodEnum<{
|
|
2718
|
+
github: "github";
|
|
2719
|
+
jira: "jira";
|
|
2720
|
+
}>;
|
|
2721
|
+
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2722
|
+
}, import("zod/v4/core").$loose>>>;
|
|
2633
2723
|
projectRootPath: import("zod").ZodString;
|
|
2634
2724
|
workspaceDirectory: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2635
2725
|
projectKind: import("zod").ZodEnum<{
|
|
2636
|
-
git: "git";
|
|
2637
2726
|
directory: "directory";
|
|
2727
|
+
git: "git";
|
|
2638
2728
|
non_git: "non_git";
|
|
2639
2729
|
}>;
|
|
2640
2730
|
workspaceKind: import("zod").ZodEnum<{
|
|
2641
2731
|
worktree: "worktree";
|
|
2642
|
-
checkout: "checkout";
|
|
2643
2732
|
directory: "directory";
|
|
2733
|
+
checkout: "checkout";
|
|
2644
2734
|
local_checkout: "local_checkout";
|
|
2645
2735
|
}>;
|
|
2646
2736
|
name: import("zod").ZodString;
|
|
@@ -2649,10 +2739,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2649
2739
|
archivingAt: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
2650
2740
|
status: import("zod").ZodEnum<{
|
|
2651
2741
|
running: "running";
|
|
2652
|
-
attention: "attention";
|
|
2653
|
-
needs_input: "needs_input";
|
|
2654
2742
|
done: "done";
|
|
2655
2743
|
failed: "failed";
|
|
2744
|
+
attention: "attention";
|
|
2745
|
+
needs_input: "needs_input";
|
|
2656
2746
|
}>;
|
|
2657
2747
|
statusEnteredAt: import("zod").ZodPipe<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>, import("zod").ZodTransform<string | null, string | null | undefined>>;
|
|
2658
2748
|
activityAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -2737,8 +2827,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2737
2827
|
}, import("zod/v4/core").$strip>>>;
|
|
2738
2828
|
checksStatus: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
2739
2829
|
success: "success";
|
|
2740
|
-
pending: "pending";
|
|
2741
2830
|
none: "none";
|
|
2831
|
+
pending: "pending";
|
|
2742
2832
|
failure: "failure";
|
|
2743
2833
|
}>>;
|
|
2744
2834
|
reviewDecision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
@@ -2840,11 +2930,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2840
2930
|
projectId: string;
|
|
2841
2931
|
projectDisplayName: string;
|
|
2842
2932
|
projectRootPath: string;
|
|
2843
|
-
projectKind: "
|
|
2844
|
-
workspaceKind: "worktree" | "
|
|
2933
|
+
projectKind: "directory" | "git" | "non_git";
|
|
2934
|
+
workspaceKind: "worktree" | "directory" | "checkout" | "local_checkout";
|
|
2845
2935
|
name: string;
|
|
2846
2936
|
archivingAt: string | null;
|
|
2847
|
-
status: "running" | "
|
|
2937
|
+
status: "running" | "done" | "failed" | "attention" | "needs_input";
|
|
2848
2938
|
statusEnteredAt: string | null;
|
|
2849
2939
|
activityAt: string | null;
|
|
2850
2940
|
scripts: {
|
|
@@ -2868,6 +2958,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2868
2958
|
publicProxyUrl?: string | null | undefined;
|
|
2869
2959
|
}[];
|
|
2870
2960
|
projectCustomName?: string | null | undefined;
|
|
2961
|
+
projectKanban?: {
|
|
2962
|
+
[x: string]: unknown;
|
|
2963
|
+
adapter: "github" | "jira";
|
|
2964
|
+
boardId?: string | null | undefined;
|
|
2965
|
+
} | null | undefined;
|
|
2871
2966
|
title?: string | null | undefined;
|
|
2872
2967
|
pinnedAt?: string | null | undefined;
|
|
2873
2968
|
diffStat?: {
|
|
@@ -2910,7 +3005,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2910
3005
|
workflow?: string | undefined;
|
|
2911
3006
|
duration?: string | undefined;
|
|
2912
3007
|
}[] | undefined;
|
|
2913
|
-
checksStatus?: "success" | "
|
|
3008
|
+
checksStatus?: "success" | "none" | "pending" | "failure" | undefined;
|
|
2914
3009
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
2915
3010
|
repoOwner?: string | undefined;
|
|
2916
3011
|
repoName?: string | undefined;
|
|
@@ -2957,11 +3052,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2957
3052
|
projectId: string;
|
|
2958
3053
|
projectDisplayName: string;
|
|
2959
3054
|
projectRootPath: string;
|
|
2960
|
-
projectKind: "
|
|
2961
|
-
workspaceKind: "worktree" | "
|
|
3055
|
+
projectKind: "directory" | "git" | "non_git";
|
|
3056
|
+
workspaceKind: "worktree" | "directory" | "checkout" | "local_checkout";
|
|
2962
3057
|
name: string;
|
|
2963
3058
|
archivingAt: string | null;
|
|
2964
|
-
status: "running" | "
|
|
3059
|
+
status: "running" | "done" | "failed" | "attention" | "needs_input";
|
|
2965
3060
|
statusEnteredAt: string | null;
|
|
2966
3061
|
activityAt: string | null;
|
|
2967
3062
|
scripts: {
|
|
@@ -2985,6 +3080,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2985
3080
|
publicProxyUrl?: string | null | undefined;
|
|
2986
3081
|
}[];
|
|
2987
3082
|
projectCustomName?: string | null | undefined;
|
|
3083
|
+
projectKanban?: {
|
|
3084
|
+
[x: string]: unknown;
|
|
3085
|
+
adapter: "github" | "jira";
|
|
3086
|
+
boardId?: string | null | undefined;
|
|
3087
|
+
} | null | undefined;
|
|
2988
3088
|
workspaceDirectory?: string | undefined;
|
|
2989
3089
|
title?: string | null | undefined;
|
|
2990
3090
|
pinnedAt?: string | null | undefined;
|
|
@@ -3028,7 +3128,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3028
3128
|
workflow?: string | undefined;
|
|
3029
3129
|
duration?: string | undefined;
|
|
3030
3130
|
}[] | undefined;
|
|
3031
|
-
checksStatus?: "success" | "
|
|
3131
|
+
checksStatus?: "success" | "none" | "pending" | "failure" | undefined;
|
|
3032
3132
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
3033
3133
|
repoOwner?: string | undefined;
|
|
3034
3134
|
repoName?: string | undefined;
|
|
@@ -3163,10 +3263,17 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3163
3263
|
projectKey: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3164
3264
|
projectDisplayName: import("zod").ZodString;
|
|
3165
3265
|
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3266
|
+
projectKanban: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
3267
|
+
adapter: import("zod").ZodEnum<{
|
|
3268
|
+
github: "github";
|
|
3269
|
+
jira: "jira";
|
|
3270
|
+
}>;
|
|
3271
|
+
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3272
|
+
}, import("zod/v4/core").$loose>>>;
|
|
3166
3273
|
projectRootPath: import("zod").ZodString;
|
|
3167
3274
|
projectKind: import("zod").ZodEnum<{
|
|
3168
|
-
git: "git";
|
|
3169
3275
|
directory: "directory";
|
|
3276
|
+
git: "git";
|
|
3170
3277
|
non_git: "non_git";
|
|
3171
3278
|
}>;
|
|
3172
3279
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -3464,17 +3571,24 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3464
3571
|
projectId: import("zod").ZodString;
|
|
3465
3572
|
projectDisplayName: import("zod").ZodString;
|
|
3466
3573
|
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3574
|
+
projectKanban: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
3575
|
+
adapter: import("zod").ZodEnum<{
|
|
3576
|
+
github: "github";
|
|
3577
|
+
jira: "jira";
|
|
3578
|
+
}>;
|
|
3579
|
+
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3580
|
+
}, import("zod/v4/core").$loose>>>;
|
|
3467
3581
|
projectRootPath: import("zod").ZodString;
|
|
3468
3582
|
workspaceDirectory: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3469
3583
|
projectKind: import("zod").ZodEnum<{
|
|
3470
|
-
git: "git";
|
|
3471
3584
|
directory: "directory";
|
|
3585
|
+
git: "git";
|
|
3472
3586
|
non_git: "non_git";
|
|
3473
3587
|
}>;
|
|
3474
3588
|
workspaceKind: import("zod").ZodEnum<{
|
|
3475
3589
|
worktree: "worktree";
|
|
3476
|
-
checkout: "checkout";
|
|
3477
3590
|
directory: "directory";
|
|
3591
|
+
checkout: "checkout";
|
|
3478
3592
|
local_checkout: "local_checkout";
|
|
3479
3593
|
}>;
|
|
3480
3594
|
name: import("zod").ZodString;
|
|
@@ -3483,10 +3597,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3483
3597
|
archivingAt: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
3484
3598
|
status: import("zod").ZodEnum<{
|
|
3485
3599
|
running: "running";
|
|
3486
|
-
attention: "attention";
|
|
3487
|
-
needs_input: "needs_input";
|
|
3488
3600
|
done: "done";
|
|
3489
3601
|
failed: "failed";
|
|
3602
|
+
attention: "attention";
|
|
3603
|
+
needs_input: "needs_input";
|
|
3490
3604
|
}>;
|
|
3491
3605
|
statusEnteredAt: import("zod").ZodPipe<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>, import("zod").ZodTransform<string | null, string | null | undefined>>;
|
|
3492
3606
|
activityAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -3571,8 +3685,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3571
3685
|
}, import("zod/v4/core").$strip>>>;
|
|
3572
3686
|
checksStatus: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
3573
3687
|
success: "success";
|
|
3574
|
-
pending: "pending";
|
|
3575
3688
|
none: "none";
|
|
3689
|
+
pending: "pending";
|
|
3576
3690
|
failure: "failure";
|
|
3577
3691
|
}>>;
|
|
3578
3692
|
reviewDecision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
@@ -3674,11 +3788,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3674
3788
|
projectId: string;
|
|
3675
3789
|
projectDisplayName: string;
|
|
3676
3790
|
projectRootPath: string;
|
|
3677
|
-
projectKind: "
|
|
3678
|
-
workspaceKind: "worktree" | "
|
|
3791
|
+
projectKind: "directory" | "git" | "non_git";
|
|
3792
|
+
workspaceKind: "worktree" | "directory" | "checkout" | "local_checkout";
|
|
3679
3793
|
name: string;
|
|
3680
3794
|
archivingAt: string | null;
|
|
3681
|
-
status: "running" | "
|
|
3795
|
+
status: "running" | "done" | "failed" | "attention" | "needs_input";
|
|
3682
3796
|
statusEnteredAt: string | null;
|
|
3683
3797
|
activityAt: string | null;
|
|
3684
3798
|
scripts: {
|
|
@@ -3702,6 +3816,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3702
3816
|
publicProxyUrl?: string | null | undefined;
|
|
3703
3817
|
}[];
|
|
3704
3818
|
projectCustomName?: string | null | undefined;
|
|
3819
|
+
projectKanban?: {
|
|
3820
|
+
[x: string]: unknown;
|
|
3821
|
+
adapter: "github" | "jira";
|
|
3822
|
+
boardId?: string | null | undefined;
|
|
3823
|
+
} | null | undefined;
|
|
3705
3824
|
title?: string | null | undefined;
|
|
3706
3825
|
pinnedAt?: string | null | undefined;
|
|
3707
3826
|
diffStat?: {
|
|
@@ -3744,7 +3863,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3744
3863
|
workflow?: string | undefined;
|
|
3745
3864
|
duration?: string | undefined;
|
|
3746
3865
|
}[] | undefined;
|
|
3747
|
-
checksStatus?: "success" | "
|
|
3866
|
+
checksStatus?: "success" | "none" | "pending" | "failure" | undefined;
|
|
3748
3867
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
3749
3868
|
repoOwner?: string | undefined;
|
|
3750
3869
|
repoName?: string | undefined;
|
|
@@ -3791,11 +3910,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3791
3910
|
projectId: string;
|
|
3792
3911
|
projectDisplayName: string;
|
|
3793
3912
|
projectRootPath: string;
|
|
3794
|
-
projectKind: "
|
|
3795
|
-
workspaceKind: "worktree" | "
|
|
3913
|
+
projectKind: "directory" | "git" | "non_git";
|
|
3914
|
+
workspaceKind: "worktree" | "directory" | "checkout" | "local_checkout";
|
|
3796
3915
|
name: string;
|
|
3797
3916
|
archivingAt: string | null;
|
|
3798
|
-
status: "running" | "
|
|
3917
|
+
status: "running" | "done" | "failed" | "attention" | "needs_input";
|
|
3799
3918
|
statusEnteredAt: string | null;
|
|
3800
3919
|
activityAt: string | null;
|
|
3801
3920
|
scripts: {
|
|
@@ -3819,6 +3938,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3819
3938
|
publicProxyUrl?: string | null | undefined;
|
|
3820
3939
|
}[];
|
|
3821
3940
|
projectCustomName?: string | null | undefined;
|
|
3941
|
+
projectKanban?: {
|
|
3942
|
+
[x: string]: unknown;
|
|
3943
|
+
adapter: "github" | "jira";
|
|
3944
|
+
boardId?: string | null | undefined;
|
|
3945
|
+
} | null | undefined;
|
|
3822
3946
|
workspaceDirectory?: string | undefined;
|
|
3823
3947
|
title?: string | null | undefined;
|
|
3824
3948
|
pinnedAt?: string | null | undefined;
|
|
@@ -3862,7 +3986,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3862
3986
|
workflow?: string | undefined;
|
|
3863
3987
|
duration?: string | undefined;
|
|
3864
3988
|
}[] | undefined;
|
|
3865
|
-
checksStatus?: "success" | "
|
|
3989
|
+
checksStatus?: "success" | "none" | "pending" | "failure" | undefined;
|
|
3866
3990
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
3867
3991
|
repoOwner?: string | undefined;
|
|
3868
3992
|
repoName?: string | undefined;
|
|
@@ -3970,8 +4094,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3970
4094
|
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3971
4095
|
costCoverage: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
3972
4096
|
none: "none";
|
|
3973
|
-
complete: "complete";
|
|
3974
4097
|
partial: "partial";
|
|
4098
|
+
complete: "complete";
|
|
3975
4099
|
}>>;
|
|
3976
4100
|
}, import("zod/v4/core").$strip>>;
|
|
3977
4101
|
toolUseCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -4155,8 +4279,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4155
4279
|
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4156
4280
|
costCoverage: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4157
4281
|
none: "none";
|
|
4158
|
-
complete: "complete";
|
|
4159
4282
|
partial: "partial";
|
|
4283
|
+
complete: "complete";
|
|
4160
4284
|
}>>;
|
|
4161
4285
|
}, import("zod/v4/core").$strip>>;
|
|
4162
4286
|
toolUseCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -4255,9 +4379,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4255
4379
|
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4256
4380
|
status: import("zod").ZodEnum<{
|
|
4257
4381
|
running: "running";
|
|
4382
|
+
completed: "completed";
|
|
4258
4383
|
failed: "failed";
|
|
4259
4384
|
canceled: "canceled";
|
|
4260
|
-
completed: "completed";
|
|
4261
4385
|
}>;
|
|
4262
4386
|
createdAt: import("zod").ZodString;
|
|
4263
4387
|
updatedAt: import("zod").ZodString;
|
|
@@ -4308,9 +4432,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4308
4432
|
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4309
4433
|
status: import("zod").ZodEnum<{
|
|
4310
4434
|
running: "running";
|
|
4435
|
+
completed: "completed";
|
|
4311
4436
|
failed: "failed";
|
|
4312
4437
|
canceled: "canceled";
|
|
4313
|
-
completed: "completed";
|
|
4314
4438
|
}>;
|
|
4315
4439
|
createdAt: import("zod").ZodString;
|
|
4316
4440
|
updatedAt: import("zod").ZodString;
|
|
@@ -4459,8 +4583,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4459
4583
|
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4460
4584
|
costCoverage: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4461
4585
|
none: "none";
|
|
4462
|
-
complete: "complete";
|
|
4463
4586
|
partial: "partial";
|
|
4587
|
+
complete: "complete";
|
|
4464
4588
|
}>>;
|
|
4465
4589
|
}, import("zod/v4/core").$strip>>;
|
|
4466
4590
|
toolUseCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -4567,8 +4691,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4567
4691
|
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4568
4692
|
costCoverage: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4569
4693
|
none: "none";
|
|
4570
|
-
complete: "complete";
|
|
4571
4694
|
partial: "partial";
|
|
4695
|
+
complete: "complete";
|
|
4572
4696
|
}>>;
|
|
4573
4697
|
}, import("zod/v4/core").$strip>>;
|
|
4574
4698
|
toolUseCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -4617,17 +4741,24 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4617
4741
|
projectId: import("zod").ZodString;
|
|
4618
4742
|
projectDisplayName: import("zod").ZodString;
|
|
4619
4743
|
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4744
|
+
projectKanban: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
4745
|
+
adapter: import("zod").ZodEnum<{
|
|
4746
|
+
github: "github";
|
|
4747
|
+
jira: "jira";
|
|
4748
|
+
}>;
|
|
4749
|
+
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4750
|
+
}, import("zod/v4/core").$loose>>>;
|
|
4620
4751
|
projectRootPath: import("zod").ZodString;
|
|
4621
4752
|
workspaceDirectory: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4622
4753
|
projectKind: import("zod").ZodEnum<{
|
|
4623
|
-
git: "git";
|
|
4624
4754
|
directory: "directory";
|
|
4755
|
+
git: "git";
|
|
4625
4756
|
non_git: "non_git";
|
|
4626
4757
|
}>;
|
|
4627
4758
|
workspaceKind: import("zod").ZodEnum<{
|
|
4628
4759
|
worktree: "worktree";
|
|
4629
|
-
checkout: "checkout";
|
|
4630
4760
|
directory: "directory";
|
|
4761
|
+
checkout: "checkout";
|
|
4631
4762
|
local_checkout: "local_checkout";
|
|
4632
4763
|
}>;
|
|
4633
4764
|
name: import("zod").ZodString;
|
|
@@ -4636,10 +4767,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4636
4767
|
archivingAt: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
4637
4768
|
status: import("zod").ZodEnum<{
|
|
4638
4769
|
running: "running";
|
|
4639
|
-
attention: "attention";
|
|
4640
|
-
needs_input: "needs_input";
|
|
4641
4770
|
done: "done";
|
|
4642
4771
|
failed: "failed";
|
|
4772
|
+
attention: "attention";
|
|
4773
|
+
needs_input: "needs_input";
|
|
4643
4774
|
}>;
|
|
4644
4775
|
statusEnteredAt: import("zod").ZodPipe<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>, import("zod").ZodTransform<string | null, string | null | undefined>>;
|
|
4645
4776
|
activityAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -4724,8 +4855,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4724
4855
|
}, import("zod/v4/core").$strip>>>;
|
|
4725
4856
|
checksStatus: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4726
4857
|
success: "success";
|
|
4727
|
-
pending: "pending";
|
|
4728
4858
|
none: "none";
|
|
4859
|
+
pending: "pending";
|
|
4729
4860
|
failure: "failure";
|
|
4730
4861
|
}>>;
|
|
4731
4862
|
reviewDecision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
@@ -4827,11 +4958,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4827
4958
|
projectId: string;
|
|
4828
4959
|
projectDisplayName: string;
|
|
4829
4960
|
projectRootPath: string;
|
|
4830
|
-
projectKind: "
|
|
4831
|
-
workspaceKind: "worktree" | "
|
|
4961
|
+
projectKind: "directory" | "git" | "non_git";
|
|
4962
|
+
workspaceKind: "worktree" | "directory" | "checkout" | "local_checkout";
|
|
4832
4963
|
name: string;
|
|
4833
4964
|
archivingAt: string | null;
|
|
4834
|
-
status: "running" | "
|
|
4965
|
+
status: "running" | "done" | "failed" | "attention" | "needs_input";
|
|
4835
4966
|
statusEnteredAt: string | null;
|
|
4836
4967
|
activityAt: string | null;
|
|
4837
4968
|
scripts: {
|
|
@@ -4855,6 +4986,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4855
4986
|
publicProxyUrl?: string | null | undefined;
|
|
4856
4987
|
}[];
|
|
4857
4988
|
projectCustomName?: string | null | undefined;
|
|
4989
|
+
projectKanban?: {
|
|
4990
|
+
[x: string]: unknown;
|
|
4991
|
+
adapter: "github" | "jira";
|
|
4992
|
+
boardId?: string | null | undefined;
|
|
4993
|
+
} | null | undefined;
|
|
4858
4994
|
title?: string | null | undefined;
|
|
4859
4995
|
pinnedAt?: string | null | undefined;
|
|
4860
4996
|
diffStat?: {
|
|
@@ -4897,7 +5033,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4897
5033
|
workflow?: string | undefined;
|
|
4898
5034
|
duration?: string | undefined;
|
|
4899
5035
|
}[] | undefined;
|
|
4900
|
-
checksStatus?: "success" | "
|
|
5036
|
+
checksStatus?: "success" | "none" | "pending" | "failure" | undefined;
|
|
4901
5037
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
4902
5038
|
repoOwner?: string | undefined;
|
|
4903
5039
|
repoName?: string | undefined;
|
|
@@ -4944,11 +5080,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4944
5080
|
projectId: string;
|
|
4945
5081
|
projectDisplayName: string;
|
|
4946
5082
|
projectRootPath: string;
|
|
4947
|
-
projectKind: "
|
|
4948
|
-
workspaceKind: "worktree" | "
|
|
5083
|
+
projectKind: "directory" | "git" | "non_git";
|
|
5084
|
+
workspaceKind: "worktree" | "directory" | "checkout" | "local_checkout";
|
|
4949
5085
|
name: string;
|
|
4950
5086
|
archivingAt: string | null;
|
|
4951
|
-
status: "running" | "
|
|
5087
|
+
status: "running" | "done" | "failed" | "attention" | "needs_input";
|
|
4952
5088
|
statusEnteredAt: string | null;
|
|
4953
5089
|
activityAt: string | null;
|
|
4954
5090
|
scripts: {
|
|
@@ -4972,6 +5108,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4972
5108
|
publicProxyUrl?: string | null | undefined;
|
|
4973
5109
|
}[];
|
|
4974
5110
|
projectCustomName?: string | null | undefined;
|
|
5111
|
+
projectKanban?: {
|
|
5112
|
+
[x: string]: unknown;
|
|
5113
|
+
adapter: "github" | "jira";
|
|
5114
|
+
boardId?: string | null | undefined;
|
|
5115
|
+
} | null | undefined;
|
|
4975
5116
|
workspaceDirectory?: string | undefined;
|
|
4976
5117
|
title?: string | null | undefined;
|
|
4977
5118
|
pinnedAt?: string | null | undefined;
|
|
@@ -5015,7 +5156,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5015
5156
|
workflow?: string | undefined;
|
|
5016
5157
|
duration?: string | undefined;
|
|
5017
5158
|
}[] | undefined;
|
|
5018
|
-
checksStatus?: "success" | "
|
|
5159
|
+
checksStatus?: "success" | "none" | "pending" | "failure" | undefined;
|
|
5019
5160
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
5020
5161
|
repoOwner?: string | undefined;
|
|
5021
5162
|
repoName?: string | undefined;
|
|
@@ -5137,9 +5278,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5137
5278
|
requestId: import("zod").ZodString;
|
|
5138
5279
|
status: import("zod").ZodObject<{
|
|
5139
5280
|
state: import("zod").ZodEnum<{
|
|
5281
|
+
connecting: "connecting";
|
|
5140
5282
|
connected: "connected";
|
|
5141
5283
|
not_connected: "not_connected";
|
|
5142
|
-
connecting: "connecting";
|
|
5143
5284
|
reconnecting: "reconnecting";
|
|
5144
5285
|
disconnecting: "disconnecting";
|
|
5145
5286
|
revoked: "revoked";
|
|
@@ -5157,9 +5298,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5157
5298
|
requestId: import("zod").ZodString;
|
|
5158
5299
|
status: import("zod").ZodObject<{
|
|
5159
5300
|
state: import("zod").ZodEnum<{
|
|
5301
|
+
connecting: "connecting";
|
|
5160
5302
|
connected: "connected";
|
|
5161
5303
|
not_connected: "not_connected";
|
|
5162
|
-
connecting: "connecting";
|
|
5163
5304
|
reconnecting: "reconnecting";
|
|
5164
5305
|
disconnecting: "disconnecting";
|
|
5165
5306
|
revoked: "revoked";
|
|
@@ -5177,9 +5318,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5177
5318
|
requestId: import("zod").ZodString;
|
|
5178
5319
|
status: import("zod").ZodObject<{
|
|
5179
5320
|
state: import("zod").ZodEnum<{
|
|
5321
|
+
connecting: "connecting";
|
|
5180
5322
|
connected: "connected";
|
|
5181
5323
|
not_connected: "not_connected";
|
|
5182
|
-
connecting: "connecting";
|
|
5183
5324
|
reconnecting: "reconnecting";
|
|
5184
5325
|
disconnecting: "disconnecting";
|
|
5185
5326
|
revoked: "revoked";
|
|
@@ -5206,13 +5347,13 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5206
5347
|
mcp: import("zod").ZodObject<{
|
|
5207
5348
|
injectIntoAgents: import("zod").ZodBoolean;
|
|
5208
5349
|
toolGroups: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
5209
|
-
artifacts: "artifacts";
|
|
5210
5350
|
preview: "preview";
|
|
5211
5351
|
browser: "browser";
|
|
5212
5352
|
web: "web";
|
|
5213
5353
|
agents: "agents";
|
|
5214
5354
|
terminals: "terminals";
|
|
5215
5355
|
schedules: "schedules";
|
|
5356
|
+
artifacts: "artifacts";
|
|
5216
5357
|
widgets: "widgets";
|
|
5217
5358
|
workspace: "workspace";
|
|
5218
5359
|
}>>>;
|
|
@@ -5226,6 +5367,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5226
5367
|
notifyOnFinishDefault: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5227
5368
|
todoNudge: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5228
5369
|
todoReconcileOnIdle: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5370
|
+
stallGuardThreshold: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5229
5371
|
}, import("zod/v4/core").$loose>>;
|
|
5230
5372
|
providers: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
5231
5373
|
enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -5236,13 +5378,13 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5236
5378
|
isDefault: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5237
5379
|
}, import("zod/v4/core").$loose>>>;
|
|
5238
5380
|
ottoToolGroups: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
5239
|
-
artifacts: "artifacts";
|
|
5240
5381
|
preview: "preview";
|
|
5241
5382
|
browser: "browser";
|
|
5242
5383
|
web: "web";
|
|
5243
5384
|
agents: "agents";
|
|
5244
5385
|
terminals: "terminals";
|
|
5245
5386
|
schedules: "schedules";
|
|
5387
|
+
artifacts: "artifacts";
|
|
5246
5388
|
widgets: "widgets";
|
|
5247
5389
|
workspace: "workspace";
|
|
5248
5390
|
}>>>;
|
|
@@ -5257,6 +5399,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5257
5399
|
preferWriterPersonalities: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5258
5400
|
}, import("zod/v4/core").$loose>>;
|
|
5259
5401
|
autoArchiveAfterMerge: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5402
|
+
gitFetch: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5403
|
+
enabled: import("zod").ZodBoolean;
|
|
5404
|
+
intervalSeconds: import("zod").ZodUnion<readonly [import("zod").ZodLiteral<60>, import("zod").ZodLiteral<180>, import("zod").ZodLiteral<300>, import("zod").ZodLiteral<600>, import("zod").ZodLiteral<900>, import("zod").ZodLiteral<1800>, import("zod").ZodLiteral<3600>]>;
|
|
5405
|
+
}, import("zod/v4/core").$strip>>;
|
|
5260
5406
|
hideMergeIntoBaseAction: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5261
5407
|
attachmentImageMaxAgeDays: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5262
5408
|
attachmentImageMaxTotalMb: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
@@ -5312,6 +5458,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5312
5458
|
email: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5313
5459
|
apiToken: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5314
5460
|
}, import("zod/v4/core").$loose>>;
|
|
5461
|
+
atlassian: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5462
|
+
email: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5463
|
+
apiToken: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5464
|
+
jiraSiteUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5465
|
+
}, import("zod/v4/core").$loose>>;
|
|
5315
5466
|
}, import("zod/v4/core").$loose>>;
|
|
5316
5467
|
}, import("zod/v4/core").$loose>>;
|
|
5317
5468
|
agentPersonalities: import("zod").ZodDefault<import("zod").ZodObject<{
|
|
@@ -5373,6 +5524,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5373
5524
|
lsp: import("zod").ZodDefault<import("zod").ZodObject<{
|
|
5374
5525
|
enabled: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5375
5526
|
languages: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>>;
|
|
5527
|
+
csharpProjectScope: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
5528
|
+
solution: "solution";
|
|
5529
|
+
allProjects: "allProjects";
|
|
5530
|
+
}>>;
|
|
5376
5531
|
maxRunningServers: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5377
5532
|
idleMinutes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5378
5533
|
backgroundIdleMinutes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
@@ -5408,6 +5563,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5408
5563
|
lmstudio: "lmstudio";
|
|
5409
5564
|
}>>;
|
|
5410
5565
|
path: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5566
|
+
logVerbosity: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5411
5567
|
}, import("zod/v4/core").$strip>>;
|
|
5412
5568
|
lockModel: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5413
5569
|
allowRemoteConfig: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
@@ -5475,6 +5631,16 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5475
5631
|
}, import("zod/v4/core").$strip>>>;
|
|
5476
5632
|
order: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5477
5633
|
}, import("zod/v4/core").$strip>>>;
|
|
5634
|
+
kanban: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5635
|
+
providers: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5636
|
+
github: import("zod").ZodObject<{
|
|
5637
|
+
token: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5638
|
+
}, import("zod/v4/core").$loose>;
|
|
5639
|
+
jira: import("zod").ZodObject<{
|
|
5640
|
+
token: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5641
|
+
}, import("zod/v4/core").$loose>;
|
|
5642
|
+
}, import("zod/v4/core").$loose>>;
|
|
5643
|
+
}, import("zod/v4/core").$loose>>;
|
|
5478
5644
|
}, import("zod/v4/core").$loose>;
|
|
5479
5645
|
}, import("zod/v4/core").$loose>;
|
|
5480
5646
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -5485,13 +5651,13 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5485
5651
|
mcp: import("zod").ZodObject<{
|
|
5486
5652
|
injectIntoAgents: import("zod").ZodBoolean;
|
|
5487
5653
|
toolGroups: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
5488
|
-
artifacts: "artifacts";
|
|
5489
5654
|
preview: "preview";
|
|
5490
5655
|
browser: "browser";
|
|
5491
5656
|
web: "web";
|
|
5492
5657
|
agents: "agents";
|
|
5493
5658
|
terminals: "terminals";
|
|
5494
5659
|
schedules: "schedules";
|
|
5660
|
+
artifacts: "artifacts";
|
|
5495
5661
|
widgets: "widgets";
|
|
5496
5662
|
workspace: "workspace";
|
|
5497
5663
|
}>>>;
|
|
@@ -5505,6 +5671,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5505
5671
|
notifyOnFinishDefault: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5506
5672
|
todoNudge: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5507
5673
|
todoReconcileOnIdle: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5674
|
+
stallGuardThreshold: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5508
5675
|
}, import("zod/v4/core").$loose>>;
|
|
5509
5676
|
providers: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
5510
5677
|
enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -5515,13 +5682,13 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5515
5682
|
isDefault: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5516
5683
|
}, import("zod/v4/core").$loose>>>;
|
|
5517
5684
|
ottoToolGroups: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
5518
|
-
artifacts: "artifacts";
|
|
5519
5685
|
preview: "preview";
|
|
5520
5686
|
browser: "browser";
|
|
5521
5687
|
web: "web";
|
|
5522
5688
|
agents: "agents";
|
|
5523
5689
|
terminals: "terminals";
|
|
5524
5690
|
schedules: "schedules";
|
|
5691
|
+
artifacts: "artifacts";
|
|
5525
5692
|
widgets: "widgets";
|
|
5526
5693
|
workspace: "workspace";
|
|
5527
5694
|
}>>>;
|
|
@@ -5536,6 +5703,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5536
5703
|
preferWriterPersonalities: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5537
5704
|
}, import("zod/v4/core").$loose>>;
|
|
5538
5705
|
autoArchiveAfterMerge: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5706
|
+
gitFetch: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5707
|
+
enabled: import("zod").ZodBoolean;
|
|
5708
|
+
intervalSeconds: import("zod").ZodUnion<readonly [import("zod").ZodLiteral<60>, import("zod").ZodLiteral<180>, import("zod").ZodLiteral<300>, import("zod").ZodLiteral<600>, import("zod").ZodLiteral<900>, import("zod").ZodLiteral<1800>, import("zod").ZodLiteral<3600>]>;
|
|
5709
|
+
}, import("zod/v4/core").$strip>>;
|
|
5539
5710
|
hideMergeIntoBaseAction: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5540
5711
|
attachmentImageMaxAgeDays: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5541
5712
|
attachmentImageMaxTotalMb: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
@@ -5591,6 +5762,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5591
5762
|
email: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5592
5763
|
apiToken: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5593
5764
|
}, import("zod/v4/core").$loose>>;
|
|
5765
|
+
atlassian: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5766
|
+
email: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5767
|
+
apiToken: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5768
|
+
jiraSiteUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5769
|
+
}, import("zod/v4/core").$loose>>;
|
|
5594
5770
|
}, import("zod/v4/core").$loose>>;
|
|
5595
5771
|
}, import("zod/v4/core").$loose>>;
|
|
5596
5772
|
agentPersonalities: import("zod").ZodDefault<import("zod").ZodObject<{
|
|
@@ -5652,6 +5828,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5652
5828
|
lsp: import("zod").ZodDefault<import("zod").ZodObject<{
|
|
5653
5829
|
enabled: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5654
5830
|
languages: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>>;
|
|
5831
|
+
csharpProjectScope: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
5832
|
+
solution: "solution";
|
|
5833
|
+
allProjects: "allProjects";
|
|
5834
|
+
}>>;
|
|
5655
5835
|
maxRunningServers: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5656
5836
|
idleMinutes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5657
5837
|
backgroundIdleMinutes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
@@ -5687,6 +5867,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5687
5867
|
lmstudio: "lmstudio";
|
|
5688
5868
|
}>>;
|
|
5689
5869
|
path: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5870
|
+
logVerbosity: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5690
5871
|
}, import("zod/v4/core").$strip>>;
|
|
5691
5872
|
lockModel: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5692
5873
|
allowRemoteConfig: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
@@ -5754,6 +5935,16 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5754
5935
|
}, import("zod/v4/core").$strip>>>;
|
|
5755
5936
|
order: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5756
5937
|
}, import("zod/v4/core").$strip>>>;
|
|
5938
|
+
kanban: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5939
|
+
providers: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5940
|
+
github: import("zod").ZodObject<{
|
|
5941
|
+
token: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5942
|
+
}, import("zod/v4/core").$loose>;
|
|
5943
|
+
jira: import("zod").ZodObject<{
|
|
5944
|
+
token: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5945
|
+
}, import("zod/v4/core").$loose>;
|
|
5946
|
+
}, import("zod/v4/core").$loose>>;
|
|
5947
|
+
}, import("zod/v4/core").$loose>>;
|
|
5757
5948
|
}, import("zod/v4/core").$loose>;
|
|
5758
5949
|
}, import("zod/v4/core").$loose>;
|
|
5759
5950
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -5799,54 +5990,729 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5799
5990
|
error: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5800
5991
|
}, import("zod/v4/core").$strip>;
|
|
5801
5992
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5802
|
-
type: import("zod").ZodLiteral<"
|
|
5993
|
+
type: import("zod").ZodLiteral<"communications.get_overview.response">;
|
|
5803
5994
|
payload: import("zod").ZodObject<{
|
|
5804
|
-
|
|
5805
|
-
|
|
5806
|
-
|
|
5807
|
-
|
|
5808
|
-
|
|
5809
|
-
|
|
5995
|
+
overview: import("zod").ZodObject<{
|
|
5996
|
+
providers: import("zod").ZodArray<import("zod").ZodObject<{
|
|
5997
|
+
providerId: import("zod").ZodString;
|
|
5998
|
+
label: import("zod").ZodString;
|
|
5999
|
+
connectionState: import("zod").ZodEnum<{
|
|
6000
|
+
error: "error";
|
|
6001
|
+
disconnected: "disconnected";
|
|
6002
|
+
connecting: "connecting";
|
|
6003
|
+
connected: "connected";
|
|
6004
|
+
reauth_required: "reauth_required";
|
|
6005
|
+
}>;
|
|
6006
|
+
accountLabel: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6007
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6008
|
+
enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5810
6009
|
}, import("zod/v4/core").$strip>>;
|
|
5811
|
-
|
|
5812
|
-
|
|
5813
|
-
|
|
5814
|
-
|
|
6010
|
+
conversations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6011
|
+
providerId: import("zod").ZodString;
|
|
6012
|
+
conversationId: import("zod").ZodString;
|
|
6013
|
+
kind: import("zod").ZodEnum<{
|
|
6014
|
+
unknown: "unknown";
|
|
6015
|
+
direct: "direct";
|
|
6016
|
+
group: "group";
|
|
6017
|
+
channel: "channel";
|
|
6018
|
+
}>;
|
|
6019
|
+
title: import("zod").ZodString;
|
|
6020
|
+
preview: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6021
|
+
updatedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6022
|
+
unreadCount: import("zod").ZodNumber;
|
|
6023
|
+
favorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6024
|
+
canFavorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5815
6025
|
}, import("zod/v4/core").$strip>>;
|
|
5816
|
-
|
|
5817
|
-
|
|
5818
|
-
|
|
5819
|
-
|
|
5820
|
-
|
|
6026
|
+
unreadCount: import("zod").ZodNumber;
|
|
6027
|
+
}, import("zod/v4/core").$strip>;
|
|
6028
|
+
requestId: import("zod").ZodString;
|
|
6029
|
+
}, import("zod/v4/core").$strip>;
|
|
6030
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6031
|
+
type: import("zod").ZodLiteral<"communications.inbox.get_home.response">;
|
|
6032
|
+
payload: import("zod").ZodObject<{
|
|
6033
|
+
home: import("zod").ZodObject<{
|
|
6034
|
+
provider: import("zod").ZodObject<{
|
|
6035
|
+
providerId: import("zod").ZodString;
|
|
6036
|
+
label: import("zod").ZodString;
|
|
6037
|
+
connectionState: import("zod").ZodEnum<{
|
|
6038
|
+
error: "error";
|
|
6039
|
+
disconnected: "disconnected";
|
|
6040
|
+
connecting: "connecting";
|
|
6041
|
+
connected: "connected";
|
|
6042
|
+
reauth_required: "reauth_required";
|
|
6043
|
+
}>;
|
|
6044
|
+
accountLabel: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6045
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6046
|
+
enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6047
|
+
}, import("zod/v4/core").$strip>;
|
|
6048
|
+
sections: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6049
|
+
id: import("zod").ZodString;
|
|
6050
|
+
label: import("zod").ZodString;
|
|
6051
|
+
conversations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6052
|
+
providerId: import("zod").ZodString;
|
|
6053
|
+
conversationId: import("zod").ZodString;
|
|
6054
|
+
kind: import("zod").ZodEnum<{
|
|
6055
|
+
unknown: "unknown";
|
|
6056
|
+
direct: "direct";
|
|
6057
|
+
group: "group";
|
|
6058
|
+
channel: "channel";
|
|
6059
|
+
}>;
|
|
6060
|
+
title: import("zod").ZodString;
|
|
6061
|
+
preview: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6062
|
+
updatedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6063
|
+
unreadCount: import("zod").ZodNumber;
|
|
6064
|
+
favorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6065
|
+
canFavorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5821
6066
|
}, import("zod/v4/core").$strip>>;
|
|
5822
|
-
|
|
5823
|
-
|
|
5824
|
-
|
|
5825
|
-
|
|
5826
|
-
|
|
5827
|
-
|
|
6067
|
+
collections: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6068
|
+
providerId: import("zod").ZodString;
|
|
6069
|
+
collectionId: import("zod").ZodString;
|
|
6070
|
+
kind: import("zod").ZodEnum<{
|
|
6071
|
+
unknown: "unknown";
|
|
6072
|
+
space: "space";
|
|
6073
|
+
folder: "folder";
|
|
6074
|
+
}>;
|
|
6075
|
+
title: import("zod").ZodString;
|
|
6076
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
5828
6077
|
}, import("zod/v4/core").$strip>>;
|
|
5829
|
-
}, import("zod/v4/core").$strip
|
|
5830
|
-
|
|
5831
|
-
|
|
5832
|
-
|
|
5833
|
-
|
|
5834
|
-
|
|
5835
|
-
|
|
6078
|
+
}, import("zod/v4/core").$strip>>;
|
|
6079
|
+
notifications: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6080
|
+
notificationId: import("zod").ZodString;
|
|
6081
|
+
conversation: import("zod").ZodObject<{
|
|
6082
|
+
providerId: import("zod").ZodString;
|
|
6083
|
+
conversationId: import("zod").ZodString;
|
|
6084
|
+
kind: import("zod").ZodEnum<{
|
|
6085
|
+
unknown: "unknown";
|
|
6086
|
+
direct: "direct";
|
|
6087
|
+
group: "group";
|
|
6088
|
+
channel: "channel";
|
|
6089
|
+
}>;
|
|
6090
|
+
title: import("zod").ZodString;
|
|
6091
|
+
preview: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6092
|
+
updatedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6093
|
+
unreadCount: import("zod").ZodNumber;
|
|
6094
|
+
favorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6095
|
+
canFavorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6096
|
+
}, import("zod/v4/core").$strip>;
|
|
6097
|
+
}, import("zod/v4/core").$strip>>>;
|
|
5836
6098
|
}, import("zod/v4/core").$strip>;
|
|
5837
|
-
|
|
6099
|
+
requestId: import("zod").ZodString;
|
|
6100
|
+
}, import("zod/v4/core").$strip>;
|
|
5838
6101
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5839
|
-
type: import("zod").ZodLiteral<"
|
|
6102
|
+
type: import("zod").ZodLiteral<"communications.inbox.search.response">;
|
|
5840
6103
|
payload: import("zod").ZodObject<{
|
|
6104
|
+
results: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6105
|
+
providerId: import("zod").ZodString;
|
|
6106
|
+
category: import("zod").ZodEnum<{
|
|
6107
|
+
conversation: "conversation";
|
|
6108
|
+
person: "person";
|
|
6109
|
+
}>;
|
|
6110
|
+
conversation: import("zod").ZodObject<{
|
|
6111
|
+
providerId: import("zod").ZodString;
|
|
6112
|
+
conversationId: import("zod").ZodString;
|
|
6113
|
+
kind: import("zod").ZodEnum<{
|
|
6114
|
+
unknown: "unknown";
|
|
6115
|
+
direct: "direct";
|
|
6116
|
+
group: "group";
|
|
6117
|
+
channel: "channel";
|
|
6118
|
+
}>;
|
|
6119
|
+
title: import("zod").ZodString;
|
|
6120
|
+
preview: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6121
|
+
updatedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6122
|
+
unreadCount: import("zod").ZodNumber;
|
|
6123
|
+
favorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6124
|
+
canFavorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6125
|
+
}, import("zod/v4/core").$strip>;
|
|
6126
|
+
detail: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6127
|
+
presenceStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
6128
|
+
unknown: "unknown";
|
|
6129
|
+
available: "available";
|
|
6130
|
+
busy: "busy";
|
|
6131
|
+
do_not_disturb: "do_not_disturb";
|
|
6132
|
+
away: "away";
|
|
6133
|
+
out_of_office: "out_of_office";
|
|
6134
|
+
}>>>;
|
|
6135
|
+
presenceLabel: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6136
|
+
}, import("zod/v4/core").$strip>>;
|
|
5841
6137
|
requestId: import("zod").ZodString;
|
|
5842
|
-
|
|
5843
|
-
format: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5844
|
-
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5845
|
-
}, import("zod/v4/core").$loose>;
|
|
6138
|
+
}, import("zod/v4/core").$strip>;
|
|
5846
6139
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5847
|
-
type: import("zod").ZodLiteral<"
|
|
6140
|
+
type: import("zod").ZodLiteral<"communications.inbox.set_favorite.response">;
|
|
5848
6141
|
payload: import("zod").ZodObject<{
|
|
5849
|
-
|
|
6142
|
+
home: import("zod").ZodObject<{
|
|
6143
|
+
provider: import("zod").ZodObject<{
|
|
6144
|
+
providerId: import("zod").ZodString;
|
|
6145
|
+
label: import("zod").ZodString;
|
|
6146
|
+
connectionState: import("zod").ZodEnum<{
|
|
6147
|
+
error: "error";
|
|
6148
|
+
disconnected: "disconnected";
|
|
6149
|
+
connecting: "connecting";
|
|
6150
|
+
connected: "connected";
|
|
6151
|
+
reauth_required: "reauth_required";
|
|
6152
|
+
}>;
|
|
6153
|
+
accountLabel: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6154
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6155
|
+
enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6156
|
+
}, import("zod/v4/core").$strip>;
|
|
6157
|
+
sections: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6158
|
+
id: import("zod").ZodString;
|
|
6159
|
+
label: import("zod").ZodString;
|
|
6160
|
+
conversations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6161
|
+
providerId: import("zod").ZodString;
|
|
6162
|
+
conversationId: import("zod").ZodString;
|
|
6163
|
+
kind: import("zod").ZodEnum<{
|
|
6164
|
+
unknown: "unknown";
|
|
6165
|
+
direct: "direct";
|
|
6166
|
+
group: "group";
|
|
6167
|
+
channel: "channel";
|
|
6168
|
+
}>;
|
|
6169
|
+
title: import("zod").ZodString;
|
|
6170
|
+
preview: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6171
|
+
updatedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6172
|
+
unreadCount: import("zod").ZodNumber;
|
|
6173
|
+
favorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6174
|
+
canFavorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6175
|
+
}, import("zod/v4/core").$strip>>;
|
|
6176
|
+
collections: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6177
|
+
providerId: import("zod").ZodString;
|
|
6178
|
+
collectionId: import("zod").ZodString;
|
|
6179
|
+
kind: import("zod").ZodEnum<{
|
|
6180
|
+
unknown: "unknown";
|
|
6181
|
+
space: "space";
|
|
6182
|
+
folder: "folder";
|
|
6183
|
+
}>;
|
|
6184
|
+
title: import("zod").ZodString;
|
|
6185
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6186
|
+
}, import("zod/v4/core").$strip>>;
|
|
6187
|
+
}, import("zod/v4/core").$strip>>;
|
|
6188
|
+
notifications: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6189
|
+
notificationId: import("zod").ZodString;
|
|
6190
|
+
conversation: import("zod").ZodObject<{
|
|
6191
|
+
providerId: import("zod").ZodString;
|
|
6192
|
+
conversationId: import("zod").ZodString;
|
|
6193
|
+
kind: import("zod").ZodEnum<{
|
|
6194
|
+
unknown: "unknown";
|
|
6195
|
+
direct: "direct";
|
|
6196
|
+
group: "group";
|
|
6197
|
+
channel: "channel";
|
|
6198
|
+
}>;
|
|
6199
|
+
title: import("zod").ZodString;
|
|
6200
|
+
preview: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6201
|
+
updatedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6202
|
+
unreadCount: import("zod").ZodNumber;
|
|
6203
|
+
favorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6204
|
+
canFavorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6205
|
+
}, import("zod/v4/core").$strip>;
|
|
6206
|
+
}, import("zod/v4/core").$strip>>>;
|
|
6207
|
+
}, import("zod/v4/core").$strip>;
|
|
6208
|
+
requestId: import("zod").ZodString;
|
|
6209
|
+
}, import("zod/v4/core").$strip>;
|
|
6210
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6211
|
+
type: import("zod").ZodLiteral<"communications.inbox.notifications.acknowledge.response">;
|
|
6212
|
+
payload: import("zod").ZodObject<{
|
|
6213
|
+
home: import("zod").ZodObject<{
|
|
6214
|
+
provider: import("zod").ZodObject<{
|
|
6215
|
+
providerId: import("zod").ZodString;
|
|
6216
|
+
label: import("zod").ZodString;
|
|
6217
|
+
connectionState: import("zod").ZodEnum<{
|
|
6218
|
+
error: "error";
|
|
6219
|
+
disconnected: "disconnected";
|
|
6220
|
+
connecting: "connecting";
|
|
6221
|
+
connected: "connected";
|
|
6222
|
+
reauth_required: "reauth_required";
|
|
6223
|
+
}>;
|
|
6224
|
+
accountLabel: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6225
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6226
|
+
enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6227
|
+
}, import("zod/v4/core").$strip>;
|
|
6228
|
+
sections: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6229
|
+
id: import("zod").ZodString;
|
|
6230
|
+
label: import("zod").ZodString;
|
|
6231
|
+
conversations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6232
|
+
providerId: import("zod").ZodString;
|
|
6233
|
+
conversationId: import("zod").ZodString;
|
|
6234
|
+
kind: import("zod").ZodEnum<{
|
|
6235
|
+
unknown: "unknown";
|
|
6236
|
+
direct: "direct";
|
|
6237
|
+
group: "group";
|
|
6238
|
+
channel: "channel";
|
|
6239
|
+
}>;
|
|
6240
|
+
title: import("zod").ZodString;
|
|
6241
|
+
preview: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6242
|
+
updatedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6243
|
+
unreadCount: import("zod").ZodNumber;
|
|
6244
|
+
favorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6245
|
+
canFavorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6246
|
+
}, import("zod/v4/core").$strip>>;
|
|
6247
|
+
collections: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6248
|
+
providerId: import("zod").ZodString;
|
|
6249
|
+
collectionId: import("zod").ZodString;
|
|
6250
|
+
kind: import("zod").ZodEnum<{
|
|
6251
|
+
unknown: "unknown";
|
|
6252
|
+
space: "space";
|
|
6253
|
+
folder: "folder";
|
|
6254
|
+
}>;
|
|
6255
|
+
title: import("zod").ZodString;
|
|
6256
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6257
|
+
}, import("zod/v4/core").$strip>>;
|
|
6258
|
+
}, import("zod/v4/core").$strip>>;
|
|
6259
|
+
notifications: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6260
|
+
notificationId: import("zod").ZodString;
|
|
6261
|
+
conversation: import("zod").ZodObject<{
|
|
6262
|
+
providerId: import("zod").ZodString;
|
|
6263
|
+
conversationId: import("zod").ZodString;
|
|
6264
|
+
kind: import("zod").ZodEnum<{
|
|
6265
|
+
unknown: "unknown";
|
|
6266
|
+
direct: "direct";
|
|
6267
|
+
group: "group";
|
|
6268
|
+
channel: "channel";
|
|
6269
|
+
}>;
|
|
6270
|
+
title: import("zod").ZodString;
|
|
6271
|
+
preview: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6272
|
+
updatedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6273
|
+
unreadCount: import("zod").ZodNumber;
|
|
6274
|
+
favorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6275
|
+
canFavorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6276
|
+
}, import("zod/v4/core").$strip>;
|
|
6277
|
+
}, import("zod/v4/core").$strip>>>;
|
|
6278
|
+
}, import("zod/v4/core").$strip>;
|
|
6279
|
+
requestId: import("zod").ZodString;
|
|
6280
|
+
}, import("zod/v4/core").$strip>;
|
|
6281
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6282
|
+
type: import("zod").ZodLiteral<"communications.inbox.get_presence.response">;
|
|
6283
|
+
payload: import("zod").ZodObject<{
|
|
6284
|
+
presence: import("zod").ZodObject<{
|
|
6285
|
+
providerId: import("zod").ZodString;
|
|
6286
|
+
status: import("zod").ZodEnum<{
|
|
6287
|
+
unknown: "unknown";
|
|
6288
|
+
available: "available";
|
|
6289
|
+
busy: "busy";
|
|
6290
|
+
do_not_disturb: "do_not_disturb";
|
|
6291
|
+
away: "away";
|
|
6292
|
+
out_of_office: "out_of_office";
|
|
6293
|
+
}>;
|
|
6294
|
+
observedStatusLabel: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6295
|
+
canSetStatus: import("zod").ZodBoolean;
|
|
6296
|
+
enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6297
|
+
statusChangeAvailableAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6298
|
+
statusChangeAvailableInMs: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
6299
|
+
pendingStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
6300
|
+
unknown: "unknown";
|
|
6301
|
+
available: "available";
|
|
6302
|
+
busy: "busy";
|
|
6303
|
+
do_not_disturb: "do_not_disturb";
|
|
6304
|
+
away: "away";
|
|
6305
|
+
out_of_office: "out_of_office";
|
|
6306
|
+
}>>>;
|
|
6307
|
+
statusChangeError: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6308
|
+
}, import("zod/v4/core").$strip>;
|
|
6309
|
+
requestId: import("zod").ZodString;
|
|
6310
|
+
}, import("zod/v4/core").$strip>;
|
|
6311
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6312
|
+
type: import("zod").ZodLiteral<"communications.inbox.presence.changed.notification">;
|
|
6313
|
+
payload: import("zod").ZodObject<{
|
|
6314
|
+
presence: import("zod").ZodObject<{
|
|
6315
|
+
providerId: import("zod").ZodString;
|
|
6316
|
+
status: import("zod").ZodEnum<{
|
|
6317
|
+
unknown: "unknown";
|
|
6318
|
+
available: "available";
|
|
6319
|
+
busy: "busy";
|
|
6320
|
+
do_not_disturb: "do_not_disturb";
|
|
6321
|
+
away: "away";
|
|
6322
|
+
out_of_office: "out_of_office";
|
|
6323
|
+
}>;
|
|
6324
|
+
observedStatusLabel: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6325
|
+
canSetStatus: import("zod").ZodBoolean;
|
|
6326
|
+
enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6327
|
+
statusChangeAvailableAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6328
|
+
statusChangeAvailableInMs: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
6329
|
+
pendingStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
6330
|
+
unknown: "unknown";
|
|
6331
|
+
available: "available";
|
|
6332
|
+
busy: "busy";
|
|
6333
|
+
do_not_disturb: "do_not_disturb";
|
|
6334
|
+
away: "away";
|
|
6335
|
+
out_of_office: "out_of_office";
|
|
6336
|
+
}>>>;
|
|
6337
|
+
statusChangeError: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6338
|
+
}, import("zod/v4/core").$strip>;
|
|
6339
|
+
}, import("zod/v4/core").$strip>;
|
|
6340
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6341
|
+
type: import("zod").ZodLiteral<"communications.inbox.set_presence.response">;
|
|
6342
|
+
payload: import("zod").ZodObject<{
|
|
6343
|
+
presence: import("zod").ZodObject<{
|
|
6344
|
+
providerId: import("zod").ZodString;
|
|
6345
|
+
status: import("zod").ZodEnum<{
|
|
6346
|
+
unknown: "unknown";
|
|
6347
|
+
available: "available";
|
|
6348
|
+
busy: "busy";
|
|
6349
|
+
do_not_disturb: "do_not_disturb";
|
|
6350
|
+
away: "away";
|
|
6351
|
+
out_of_office: "out_of_office";
|
|
6352
|
+
}>;
|
|
6353
|
+
observedStatusLabel: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6354
|
+
canSetStatus: import("zod").ZodBoolean;
|
|
6355
|
+
enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6356
|
+
statusChangeAvailableAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6357
|
+
statusChangeAvailableInMs: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
6358
|
+
pendingStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
6359
|
+
unknown: "unknown";
|
|
6360
|
+
available: "available";
|
|
6361
|
+
busy: "busy";
|
|
6362
|
+
do_not_disturb: "do_not_disturb";
|
|
6363
|
+
away: "away";
|
|
6364
|
+
out_of_office: "out_of_office";
|
|
6365
|
+
}>>>;
|
|
6366
|
+
statusChangeError: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6367
|
+
}, import("zod/v4/core").$strip>;
|
|
6368
|
+
requestId: import("zod").ZodString;
|
|
6369
|
+
}, import("zod/v4/core").$strip>;
|
|
6370
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6371
|
+
type: import("zod").ZodLiteral<"communications.inbox.set_enabled.response">;
|
|
6372
|
+
payload: import("zod").ZodObject<{
|
|
6373
|
+
presence: import("zod").ZodObject<{
|
|
6374
|
+
providerId: import("zod").ZodString;
|
|
6375
|
+
status: import("zod").ZodEnum<{
|
|
6376
|
+
unknown: "unknown";
|
|
6377
|
+
available: "available";
|
|
6378
|
+
busy: "busy";
|
|
6379
|
+
do_not_disturb: "do_not_disturb";
|
|
6380
|
+
away: "away";
|
|
6381
|
+
out_of_office: "out_of_office";
|
|
6382
|
+
}>;
|
|
6383
|
+
observedStatusLabel: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6384
|
+
canSetStatus: import("zod").ZodBoolean;
|
|
6385
|
+
enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6386
|
+
statusChangeAvailableAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6387
|
+
statusChangeAvailableInMs: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
6388
|
+
pendingStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
6389
|
+
unknown: "unknown";
|
|
6390
|
+
available: "available";
|
|
6391
|
+
busy: "busy";
|
|
6392
|
+
do_not_disturb: "do_not_disturb";
|
|
6393
|
+
away: "away";
|
|
6394
|
+
out_of_office: "out_of_office";
|
|
6395
|
+
}>>>;
|
|
6396
|
+
statusChangeError: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6397
|
+
}, import("zod/v4/core").$strip>;
|
|
6398
|
+
requestId: import("zod").ZodString;
|
|
6399
|
+
}, import("zod/v4/core").$strip>;
|
|
6400
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6401
|
+
type: import("zod").ZodLiteral<"communications.inbox.get_messages.response">;
|
|
6402
|
+
payload: import("zod").ZodObject<{
|
|
6403
|
+
messages: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6404
|
+
providerId: import("zod").ZodString;
|
|
6405
|
+
conversationId: import("zod").ZodString;
|
|
6406
|
+
messageId: import("zod").ZodString;
|
|
6407
|
+
senderId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6408
|
+
text: import("zod").ZodString;
|
|
6409
|
+
sentAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6410
|
+
senderDisplayName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6411
|
+
isFromCurrentUser: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6412
|
+
parentMessageId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6413
|
+
replyCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6414
|
+
reactions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6415
|
+
emoji: import("zod").ZodString;
|
|
6416
|
+
count: import("zod").ZodNumber;
|
|
6417
|
+
reactedByCurrentUser: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6418
|
+
}, import("zod/v4/core").$strip>>>;
|
|
6419
|
+
}, import("zod/v4/core").$strip>>;
|
|
6420
|
+
requestId: import("zod").ZodString;
|
|
6421
|
+
}, import("zod/v4/core").$strip>;
|
|
6422
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6423
|
+
type: import("zod").ZodLiteral<"communications.inbox.send_message.response">;
|
|
6424
|
+
payload: import("zod").ZodObject<{
|
|
6425
|
+
message: import("zod").ZodObject<{
|
|
6426
|
+
providerId: import("zod").ZodString;
|
|
6427
|
+
conversationId: import("zod").ZodString;
|
|
6428
|
+
messageId: import("zod").ZodString;
|
|
6429
|
+
senderId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6430
|
+
text: import("zod").ZodString;
|
|
6431
|
+
sentAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6432
|
+
senderDisplayName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6433
|
+
isFromCurrentUser: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6434
|
+
parentMessageId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6435
|
+
replyCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6436
|
+
reactions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6437
|
+
emoji: import("zod").ZodString;
|
|
6438
|
+
count: import("zod").ZodNumber;
|
|
6439
|
+
reactedByCurrentUser: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6440
|
+
}, import("zod/v4/core").$strip>>>;
|
|
6441
|
+
}, import("zod/v4/core").$strip>;
|
|
6442
|
+
requestId: import("zod").ZodString;
|
|
6443
|
+
}, import("zod/v4/core").$strip>;
|
|
6444
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6445
|
+
type: import("zod").ZodLiteral<"communications.room.get.response">;
|
|
6446
|
+
payload: import("zod").ZodObject<{
|
|
6447
|
+
room: import("zod").ZodObject<{
|
|
6448
|
+
conversation: import("zod").ZodObject<{
|
|
6449
|
+
providerId: import("zod").ZodString;
|
|
6450
|
+
conversationId: import("zod").ZodString;
|
|
6451
|
+
kind: import("zod").ZodEnum<{
|
|
6452
|
+
unknown: "unknown";
|
|
6453
|
+
direct: "direct";
|
|
6454
|
+
group: "group";
|
|
6455
|
+
channel: "channel";
|
|
6456
|
+
}>;
|
|
6457
|
+
title: import("zod").ZodString;
|
|
6458
|
+
preview: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6459
|
+
updatedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6460
|
+
unreadCount: import("zod").ZodNumber;
|
|
6461
|
+
favorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6462
|
+
canFavorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6463
|
+
}, import("zod/v4/core").$strip>;
|
|
6464
|
+
messages: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6465
|
+
providerId: import("zod").ZodString;
|
|
6466
|
+
conversationId: import("zod").ZodString;
|
|
6467
|
+
messageId: import("zod").ZodString;
|
|
6468
|
+
senderId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6469
|
+
text: import("zod").ZodString;
|
|
6470
|
+
sentAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6471
|
+
senderDisplayName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6472
|
+
isFromCurrentUser: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6473
|
+
parentMessageId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6474
|
+
replyCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6475
|
+
reactions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6476
|
+
emoji: import("zod").ZodString;
|
|
6477
|
+
count: import("zod").ZodNumber;
|
|
6478
|
+
reactedByCurrentUser: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6479
|
+
}, import("zod/v4/core").$strip>>>;
|
|
6480
|
+
}, import("zod/v4/core").$strip>>;
|
|
6481
|
+
capabilities: import("zod").ZodObject<{
|
|
6482
|
+
canCompose: import("zod").ZodBoolean;
|
|
6483
|
+
canReply: import("zod").ZodBoolean;
|
|
6484
|
+
canRetrieveThreads: import("zod").ZodBoolean;
|
|
6485
|
+
canReact: import("zod").ZodBoolean;
|
|
6486
|
+
canMarkRead: import("zod").ZodBoolean;
|
|
6487
|
+
unavailableReason: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6488
|
+
}, import("zod/v4/core").$strip>;
|
|
6489
|
+
}, import("zod/v4/core").$strip>;
|
|
6490
|
+
requestId: import("zod").ZodString;
|
|
6491
|
+
}, import("zod/v4/core").$strip>;
|
|
6492
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6493
|
+
type: import("zod").ZodLiteral<"communications.room.thread.get.response">;
|
|
6494
|
+
payload: import("zod").ZodObject<{
|
|
6495
|
+
messages: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6496
|
+
providerId: import("zod").ZodString;
|
|
6497
|
+
conversationId: import("zod").ZodString;
|
|
6498
|
+
messageId: import("zod").ZodString;
|
|
6499
|
+
senderId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6500
|
+
text: import("zod").ZodString;
|
|
6501
|
+
sentAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6502
|
+
senderDisplayName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6503
|
+
isFromCurrentUser: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6504
|
+
parentMessageId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6505
|
+
replyCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6506
|
+
reactions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6507
|
+
emoji: import("zod").ZodString;
|
|
6508
|
+
count: import("zod").ZodNumber;
|
|
6509
|
+
reactedByCurrentUser: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6510
|
+
}, import("zod/v4/core").$strip>>>;
|
|
6511
|
+
}, import("zod/v4/core").$strip>>;
|
|
6512
|
+
requestId: import("zod").ZodString;
|
|
6513
|
+
}, import("zod/v4/core").$strip>;
|
|
6514
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6515
|
+
type: import("zod").ZodLiteral<"communications.room.message.send.response">;
|
|
6516
|
+
payload: import("zod").ZodObject<{
|
|
6517
|
+
message: import("zod").ZodObject<{
|
|
6518
|
+
providerId: import("zod").ZodString;
|
|
6519
|
+
conversationId: import("zod").ZodString;
|
|
6520
|
+
messageId: import("zod").ZodString;
|
|
6521
|
+
senderId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6522
|
+
text: import("zod").ZodString;
|
|
6523
|
+
sentAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6524
|
+
senderDisplayName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6525
|
+
isFromCurrentUser: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6526
|
+
parentMessageId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6527
|
+
replyCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6528
|
+
reactions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6529
|
+
emoji: import("zod").ZodString;
|
|
6530
|
+
count: import("zod").ZodNumber;
|
|
6531
|
+
reactedByCurrentUser: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6532
|
+
}, import("zod/v4/core").$strip>>>;
|
|
6533
|
+
}, import("zod/v4/core").$strip>;
|
|
6534
|
+
requestId: import("zod").ZodString;
|
|
6535
|
+
}, import("zod/v4/core").$strip>;
|
|
6536
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6537
|
+
type: import("zod").ZodLiteral<"communications.room.reaction.set.response">;
|
|
6538
|
+
payload: import("zod").ZodObject<{
|
|
6539
|
+
message: import("zod").ZodObject<{
|
|
6540
|
+
providerId: import("zod").ZodString;
|
|
6541
|
+
conversationId: import("zod").ZodString;
|
|
6542
|
+
messageId: import("zod").ZodString;
|
|
6543
|
+
senderId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6544
|
+
text: import("zod").ZodString;
|
|
6545
|
+
sentAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6546
|
+
senderDisplayName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6547
|
+
isFromCurrentUser: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6548
|
+
parentMessageId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6549
|
+
replyCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6550
|
+
reactions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6551
|
+
emoji: import("zod").ZodString;
|
|
6552
|
+
count: import("zod").ZodNumber;
|
|
6553
|
+
reactedByCurrentUser: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6554
|
+
}, import("zod/v4/core").$strip>>>;
|
|
6555
|
+
}, import("zod/v4/core").$strip>;
|
|
6556
|
+
requestId: import("zod").ZodString;
|
|
6557
|
+
}, import("zod/v4/core").$strip>;
|
|
6558
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6559
|
+
type: import("zod").ZodLiteral<"meetings.transcripts.list.response">;
|
|
6560
|
+
payload: import("zod").ZodObject<{
|
|
6561
|
+
requestId: import("zod").ZodString;
|
|
6562
|
+
records: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6563
|
+
id: import("zod").ZodString;
|
|
6564
|
+
provider: import("zod").ZodString;
|
|
6565
|
+
title: import("zod").ZodString;
|
|
6566
|
+
content: import("zod").ZodString;
|
|
6567
|
+
occurredAt: import("zod").ZodString;
|
|
6568
|
+
createdAt: import("zod").ZodString;
|
|
6569
|
+
updatedAt: import("zod").ZodString;
|
|
6570
|
+
}, import("zod/v4/core").$strip>>;
|
|
6571
|
+
}, import("zod/v4/core").$strip>;
|
|
6572
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6573
|
+
type: import("zod").ZodLiteral<"meetings.transcripts.create.response">;
|
|
6574
|
+
payload: import("zod").ZodObject<{
|
|
6575
|
+
requestId: import("zod").ZodString;
|
|
6576
|
+
record: import("zod").ZodObject<{
|
|
6577
|
+
id: import("zod").ZodString;
|
|
6578
|
+
provider: import("zod").ZodString;
|
|
6579
|
+
title: import("zod").ZodString;
|
|
6580
|
+
content: import("zod").ZodString;
|
|
6581
|
+
occurredAt: import("zod").ZodString;
|
|
6582
|
+
createdAt: import("zod").ZodString;
|
|
6583
|
+
updatedAt: import("zod").ZodString;
|
|
6584
|
+
}, import("zod/v4/core").$strip>;
|
|
6585
|
+
}, import("zod/v4/core").$strip>;
|
|
6586
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6587
|
+
type: import("zod").ZodLiteral<"meetings.transcripts.update.response">;
|
|
6588
|
+
payload: import("zod").ZodObject<{
|
|
6589
|
+
requestId: import("zod").ZodString;
|
|
6590
|
+
record: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
6591
|
+
id: import("zod").ZodString;
|
|
6592
|
+
provider: import("zod").ZodString;
|
|
6593
|
+
title: import("zod").ZodString;
|
|
6594
|
+
content: import("zod").ZodString;
|
|
6595
|
+
occurredAt: import("zod").ZodString;
|
|
6596
|
+
createdAt: import("zod").ZodString;
|
|
6597
|
+
updatedAt: import("zod").ZodString;
|
|
6598
|
+
}, import("zod/v4/core").$strip>>;
|
|
6599
|
+
}, import("zod/v4/core").$strip>;
|
|
6600
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6601
|
+
type: import("zod").ZodLiteral<"meetings.transcripts.delete.response">;
|
|
6602
|
+
payload: import("zod").ZodObject<{
|
|
6603
|
+
requestId: import("zod").ZodString;
|
|
6604
|
+
deleted: import("zod").ZodBoolean;
|
|
6605
|
+
}, import("zod/v4/core").$strip>;
|
|
6606
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6607
|
+
type: import("zod").ZodLiteral<"integrations.authorization.get_overview.response">;
|
|
6608
|
+
payload: import("zod").ZodObject<{
|
|
6609
|
+
overview: import("zod").ZodObject<{
|
|
6610
|
+
vault: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
6611
|
+
status: import("zod").ZodLiteral<"available">;
|
|
6612
|
+
backend: import("zod").ZodString;
|
|
6613
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6614
|
+
status: import("zod").ZodLiteral<"unavailable">;
|
|
6615
|
+
reason: import("zod").ZodString;
|
|
6616
|
+
}, import("zod/v4/core").$strip>], "status">;
|
|
6617
|
+
connections: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6618
|
+
integrationId: import("zod").ZodString;
|
|
6619
|
+
connectionId: import("zod").ZodString;
|
|
6620
|
+
method: import("zod").ZodString;
|
|
6621
|
+
state: import("zod").ZodEnum<{
|
|
6622
|
+
error: "error";
|
|
6623
|
+
disconnected: "disconnected";
|
|
6624
|
+
connected: "connected";
|
|
6625
|
+
reauth_required: "reauth_required";
|
|
6626
|
+
authorizing: "authorizing";
|
|
6627
|
+
}>;
|
|
6628
|
+
accountLabel: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6629
|
+
grantedScopes: import("zod").ZodArray<import("zod").ZodString>;
|
|
6630
|
+
updatedAt: import("zod").ZodString;
|
|
6631
|
+
errorCode: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6632
|
+
enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6633
|
+
}, import("zod/v4/core").$strip>>;
|
|
6634
|
+
}, import("zod/v4/core").$strip>;
|
|
6635
|
+
requestId: import("zod").ZodString;
|
|
6636
|
+
}, import("zod/v4/core").$strip>;
|
|
6637
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6638
|
+
type: import("zod").ZodLiteral<"integrations.authorization.get_methods.response">;
|
|
6639
|
+
payload: import("zod").ZodObject<{
|
|
6640
|
+
methods: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6641
|
+
integrationId: import("zod").ZodString;
|
|
6642
|
+
method: import("zod").ZodString;
|
|
6643
|
+
label: import("zod").ZodString;
|
|
6644
|
+
description: import("zod").ZodString;
|
|
6645
|
+
recommended: import("zod").ZodBoolean;
|
|
6646
|
+
availability: import("zod").ZodEnum<{
|
|
6647
|
+
available: "available";
|
|
6648
|
+
planned: "planned";
|
|
6649
|
+
}>;
|
|
6650
|
+
}, import("zod/v4/core").$strip>>;
|
|
6651
|
+
requestId: import("zod").ZodString;
|
|
6652
|
+
}, import("zod/v4/core").$strip>;
|
|
6653
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6654
|
+
type: import("zod").ZodLiteral<"integrations.authorization.start_browser.response">;
|
|
6655
|
+
payload: import("zod").ZodObject<{
|
|
6656
|
+
authorizationUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6657
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6658
|
+
requestId: import("zod").ZodString;
|
|
6659
|
+
}, import("zod/v4/core").$strip>;
|
|
6660
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6661
|
+
type: import("zod").ZodLiteral<"integrations.zoom.start_authorization.response">;
|
|
6662
|
+
payload: import("zod").ZodObject<{
|
|
6663
|
+
authorizationUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6664
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6665
|
+
requestId: import("zod").ZodString;
|
|
6666
|
+
}, import("zod/v4/core").$strip>;
|
|
6667
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6668
|
+
type: import("zod").ZodLiteral<"speech.settings.get_options.response">;
|
|
6669
|
+
payload: import("zod").ZodObject<{
|
|
6670
|
+
requestId: import("zod").ZodString;
|
|
6671
|
+
options: import("zod").ZodObject<{
|
|
6672
|
+
sttEngines: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6673
|
+
id: import("zod").ZodString;
|
|
6674
|
+
available: import("zod").ZodBoolean;
|
|
6675
|
+
reason: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6676
|
+
}, import("zod/v4/core").$strip>>;
|
|
6677
|
+
ttsEngines: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6678
|
+
id: import("zod").ZodString;
|
|
6679
|
+
available: import("zod").ZodBoolean;
|
|
6680
|
+
reason: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6681
|
+
}, import("zod/v4/core").$strip>>;
|
|
6682
|
+
local: import("zod").ZodObject<{
|
|
6683
|
+
sttModels: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6684
|
+
id: import("zod").ZodString;
|
|
6685
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6686
|
+
description: import("zod").ZodString;
|
|
6687
|
+
}, import("zod/v4/core").$strip>>;
|
|
6688
|
+
ttsModels: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6689
|
+
id: import("zod").ZodString;
|
|
6690
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6691
|
+
description: import("zod").ZodString;
|
|
6692
|
+
voices: import("zod").ZodArray<import("zod").ZodString>;
|
|
6693
|
+
defaultVoice: import("zod").ZodString;
|
|
6694
|
+
}, import("zod/v4/core").$strip>>;
|
|
6695
|
+
}, import("zod/v4/core").$strip>;
|
|
6696
|
+
openai: import("zod").ZodObject<{
|
|
6697
|
+
configured: import("zod").ZodBoolean;
|
|
6698
|
+
sttModels: import("zod").ZodArray<import("zod").ZodString>;
|
|
6699
|
+
ttsModels: import("zod").ZodArray<import("zod").ZodString>;
|
|
6700
|
+
ttsVoices: import("zod").ZodArray<import("zod").ZodString>;
|
|
6701
|
+
}, import("zod/v4/core").$strip>;
|
|
6702
|
+
}, import("zod/v4/core").$strip>;
|
|
6703
|
+
}, import("zod/v4/core").$loose>;
|
|
6704
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6705
|
+
type: import("zod").ZodLiteral<"speech.tts.preview.response">;
|
|
6706
|
+
payload: import("zod").ZodObject<{
|
|
6707
|
+
requestId: import("zod").ZodString;
|
|
6708
|
+
audio: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6709
|
+
format: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6710
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6711
|
+
}, import("zod/v4/core").$loose>;
|
|
6712
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6713
|
+
type: import("zod").ZodLiteral<"speech.tts.speak.response">;
|
|
6714
|
+
payload: import("zod").ZodObject<{
|
|
6715
|
+
requestId: import("zod").ZodString;
|
|
5850
6716
|
ok: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5851
6717
|
canceled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5852
6718
|
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -6165,8 +7031,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6165
7031
|
cwd: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6166
7032
|
state: import("zod").ZodEnum<{
|
|
6167
7033
|
pending: "pending";
|
|
6168
|
-
dismissed: "dismissed";
|
|
6169
7034
|
started: "started";
|
|
7035
|
+
dismissed: "dismissed";
|
|
6170
7036
|
}>;
|
|
6171
7037
|
createdAt: import("zod").ZodString;
|
|
6172
7038
|
updatedAt: import("zod").ZodString;
|
|
@@ -6265,8 +7131,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6265
7131
|
sharePercent: import("zod").ZodNumber;
|
|
6266
7132
|
severity: import("zod").ZodEnum<{
|
|
6267
7133
|
ok: "ok";
|
|
6268
|
-
notice: "notice";
|
|
6269
7134
|
warn: "warn";
|
|
7135
|
+
notice: "notice";
|
|
6270
7136
|
critical: "critical";
|
|
6271
7137
|
}>;
|
|
6272
7138
|
visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -6282,8 +7148,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6282
7148
|
workingRoom: import("zod").ZodNumber;
|
|
6283
7149
|
aggregateSeverity: import("zod").ZodEnum<{
|
|
6284
7150
|
ok: "ok";
|
|
6285
|
-
notice: "notice";
|
|
6286
7151
|
warn: "warn";
|
|
7152
|
+
notice: "notice";
|
|
6287
7153
|
critical: "critical";
|
|
6288
7154
|
}>;
|
|
6289
7155
|
findings: import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -6348,6 +7214,21 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6348
7214
|
customName: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6349
7215
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6350
7216
|
}, import("zod/v4/core").$strip>;
|
|
7217
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7218
|
+
type: import("zod").ZodLiteral<"kanban.project.target.set.response">;
|
|
7219
|
+
payload: import("zod").ZodObject<{
|
|
7220
|
+
requestId: import("zod").ZodString;
|
|
7221
|
+
projectId: import("zod").ZodString;
|
|
7222
|
+
accepted: import("zod").ZodBoolean;
|
|
7223
|
+
target: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
7224
|
+
adapter: import("zod").ZodEnum<{
|
|
7225
|
+
github: "github";
|
|
7226
|
+
jira: "jira";
|
|
7227
|
+
}>;
|
|
7228
|
+
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7229
|
+
}, import("zod/v4/core").$loose>>;
|
|
7230
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7231
|
+
}, import("zod/v4/core").$strip>;
|
|
6351
7232
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6352
7233
|
type: import("zod").ZodLiteral<"project.updated.notification">;
|
|
6353
7234
|
payload: import("zod").ZodObject<{
|
|
@@ -6356,10 +7237,17 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6356
7237
|
projectKey: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6357
7238
|
projectDisplayName: import("zod").ZodString;
|
|
6358
7239
|
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7240
|
+
projectKanban: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
7241
|
+
adapter: import("zod").ZodEnum<{
|
|
7242
|
+
github: "github";
|
|
7243
|
+
jira: "jira";
|
|
7244
|
+
}>;
|
|
7245
|
+
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7246
|
+
}, import("zod/v4/core").$loose>>>;
|
|
6359
7247
|
projectRootPath: import("zod").ZodString;
|
|
6360
7248
|
projectKind: import("zod").ZodEnum<{
|
|
6361
|
-
git: "git";
|
|
6362
7249
|
directory: "directory";
|
|
7250
|
+
git: "git";
|
|
6363
7251
|
non_git: "non_git";
|
|
6364
7252
|
}>;
|
|
6365
7253
|
}, import("zod/v4/core").$strip>;
|
|
@@ -6526,8 +7414,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6526
7414
|
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6527
7415
|
costCoverage: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
6528
7416
|
none: "none";
|
|
6529
|
-
complete: "complete";
|
|
6530
7417
|
partial: "partial";
|
|
7418
|
+
complete: "complete";
|
|
6531
7419
|
}>>;
|
|
6532
7420
|
}, import("zod/v4/core").$strip>>;
|
|
6533
7421
|
toolUseCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -6662,6 +7550,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6662
7550
|
resources: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6663
7551
|
inventory: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6664
7552
|
events: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7553
|
+
logEvents: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6665
7554
|
liveInference: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6666
7555
|
writable: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6667
7556
|
jobs: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
@@ -6737,6 +7626,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6737
7626
|
resources: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6738
7627
|
inventory: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6739
7628
|
events: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7629
|
+
logEvents: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6740
7630
|
liveInference: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6741
7631
|
writable: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6742
7632
|
jobs: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
@@ -6812,6 +7702,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6812
7702
|
resources: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6813
7703
|
inventory: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6814
7704
|
events: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7705
|
+
logEvents: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6815
7706
|
liveInference: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6816
7707
|
writable: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6817
7708
|
jobs: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
@@ -6887,6 +7778,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6887
7778
|
resources: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6888
7779
|
inventory: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6889
7780
|
events: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7781
|
+
logEvents: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6890
7782
|
liveInference: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6891
7783
|
writable: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6892
7784
|
jobs: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
@@ -6951,9 +7843,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6951
7843
|
value: import("zod").ZodString;
|
|
6952
7844
|
label: import("zod").ZodString;
|
|
6953
7845
|
kind: import("zod").ZodEnum<{
|
|
6954
|
-
all: "all";
|
|
6955
7846
|
tailscale: "tailscale";
|
|
6956
7847
|
loopback: "loopback";
|
|
7848
|
+
all: "all";
|
|
6957
7849
|
lan: "lan";
|
|
6958
7850
|
}>;
|
|
6959
7851
|
}, import("zod/v4/core").$loose>>>;
|
|
@@ -7012,6 +7904,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7012
7904
|
id: import("zod").ZodString;
|
|
7013
7905
|
name: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7014
7906
|
family: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7907
|
+
favorite: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7015
7908
|
installed: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7016
7909
|
publisher: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7017
7910
|
repo: import("zod").ZodDefault<import("zod").ZodString>;
|
|
@@ -7076,6 +7969,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7076
7969
|
canceled: "canceled";
|
|
7077
7970
|
succeeded: "succeeded";
|
|
7078
7971
|
}>>;
|
|
7972
|
+
queuePosition: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7079
7973
|
percent: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7080
7974
|
message: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7081
7975
|
error: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -7106,6 +8000,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7106
8000
|
canceled: "canceled";
|
|
7107
8001
|
succeeded: "succeeded";
|
|
7108
8002
|
}>>;
|
|
8003
|
+
queuePosition: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7109
8004
|
percent: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7110
8005
|
message: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7111
8006
|
error: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -7136,6 +8031,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7136
8031
|
canceled: "canceled";
|
|
7137
8032
|
succeeded: "succeeded";
|
|
7138
8033
|
}>>;
|
|
8034
|
+
queuePosition: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7139
8035
|
percent: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7140
8036
|
message: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7141
8037
|
error: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -7166,6 +8062,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7166
8062
|
canceled: "canceled";
|
|
7167
8063
|
succeeded: "succeeded";
|
|
7168
8064
|
}>>;
|
|
8065
|
+
queuePosition: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7169
8066
|
percent: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7170
8067
|
message: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7171
8068
|
error: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -7196,6 +8093,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7196
8093
|
canceled: "canceled";
|
|
7197
8094
|
succeeded: "succeeded";
|
|
7198
8095
|
}>>;
|
|
8096
|
+
queuePosition: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7199
8097
|
percent: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7200
8098
|
message: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7201
8099
|
error: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -7226,6 +8124,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7226
8124
|
canceled: "canceled";
|
|
7227
8125
|
succeeded: "succeeded";
|
|
7228
8126
|
}>>;
|
|
8127
|
+
queuePosition: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7229
8128
|
percent: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7230
8129
|
message: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7231
8130
|
error: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -7256,6 +8155,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7256
8155
|
canceled: "canceled";
|
|
7257
8156
|
succeeded: "succeeded";
|
|
7258
8157
|
}>>;
|
|
8158
|
+
queuePosition: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7259
8159
|
percent: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7260
8160
|
message: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7261
8161
|
error: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -7286,6 +8186,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7286
8186
|
canceled: "canceled";
|
|
7287
8187
|
succeeded: "succeeded";
|
|
7288
8188
|
}>>;
|
|
8189
|
+
queuePosition: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7289
8190
|
percent: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7290
8191
|
message: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7291
8192
|
error: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -7350,6 +8251,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7350
8251
|
canceled: "canceled";
|
|
7351
8252
|
succeeded: "succeeded";
|
|
7352
8253
|
}>>;
|
|
8254
|
+
queuePosition: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7353
8255
|
percent: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7354
8256
|
message: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7355
8257
|
error: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -7403,7 +8305,15 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7403
8305
|
vision: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7404
8306
|
enabledComponents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
7405
8307
|
reasoningBudget: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
8308
|
+
preserveReasoning: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
|
8309
|
+
temperature: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8310
|
+
topP: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8311
|
+
topK: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8312
|
+
minP: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8313
|
+
presencePenalty: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8314
|
+
repeatPenalty: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7406
8315
|
parallelSlots: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
8316
|
+
cachedChats: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7407
8317
|
contextMultiplier: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7408
8318
|
calibrationRequired: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7409
8319
|
hostingProfileId: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -7476,7 +8386,15 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7476
8386
|
vision: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7477
8387
|
enabledComponents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
7478
8388
|
reasoningBudget: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
8389
|
+
preserveReasoning: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
|
8390
|
+
temperature: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8391
|
+
topP: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8392
|
+
topK: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8393
|
+
minP: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8394
|
+
presencePenalty: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8395
|
+
repeatPenalty: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7479
8396
|
parallelSlots: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
8397
|
+
cachedChats: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7480
8398
|
contextMultiplier: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7481
8399
|
calibrationRequired: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7482
8400
|
hostingProfileId: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -7490,11 +8408,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7490
8408
|
key: import("zod").ZodString;
|
|
7491
8409
|
label: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7492
8410
|
kind: import("zod").ZodDefault<import("zod").ZodString>;
|
|
8411
|
+
description: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7493
8412
|
step: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7494
8413
|
min: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7495
8414
|
max: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
8415
|
+
precision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7496
8416
|
options: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>>>;
|
|
7497
8417
|
optionLabels: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString>>;
|
|
8418
|
+
optionValues: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber, import("zod").ZodBoolean, import("zod").ZodNull]>>>;
|
|
7498
8419
|
available: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7499
8420
|
unavailableReason: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7500
8421
|
}, import("zod/v4/core").$loose>>>;
|
|
@@ -7536,7 +8457,15 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7536
8457
|
vision: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7537
8458
|
enabledComponents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
7538
8459
|
reasoningBudget: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
8460
|
+
preserveReasoning: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
|
8461
|
+
temperature: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8462
|
+
topP: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8463
|
+
topK: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8464
|
+
minP: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8465
|
+
presencePenalty: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8466
|
+
repeatPenalty: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7539
8467
|
parallelSlots: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
8468
|
+
cachedChats: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7540
8469
|
contextMultiplier: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7541
8470
|
calibrationRequired: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7542
8471
|
hostingProfileId: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -7550,11 +8479,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7550
8479
|
key: import("zod").ZodString;
|
|
7551
8480
|
label: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7552
8481
|
kind: import("zod").ZodDefault<import("zod").ZodString>;
|
|
8482
|
+
description: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7553
8483
|
step: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7554
8484
|
min: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7555
8485
|
max: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
8486
|
+
precision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7556
8487
|
options: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>>>;
|
|
7557
8488
|
optionLabels: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString>>;
|
|
8489
|
+
optionValues: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber, import("zod").ZodBoolean, import("zod").ZodNull]>>>;
|
|
7558
8490
|
available: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7559
8491
|
unavailableReason: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7560
8492
|
}, import("zod/v4/core").$loose>>>;
|
|
@@ -7617,7 +8549,15 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7617
8549
|
vision: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7618
8550
|
enabledComponents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
7619
8551
|
reasoningBudget: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
8552
|
+
preserveReasoning: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
|
8553
|
+
temperature: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8554
|
+
topP: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8555
|
+
topK: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8556
|
+
minP: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8557
|
+
presencePenalty: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8558
|
+
repeatPenalty: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7620
8559
|
parallelSlots: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
8560
|
+
cachedChats: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7621
8561
|
contextMultiplier: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7622
8562
|
calibrationRequired: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7623
8563
|
hostingProfileId: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -7688,6 +8628,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7688
8628
|
resources: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7689
8629
|
inventory: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7690
8630
|
events: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
8631
|
+
logEvents: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7691
8632
|
liveInference: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7692
8633
|
writable: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7693
8634
|
jobs: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
@@ -7738,7 +8679,15 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7738
8679
|
vision: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7739
8680
|
enabledComponents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
7740
8681
|
reasoningBudget: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
8682
|
+
preserveReasoning: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
|
8683
|
+
temperature: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8684
|
+
topP: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8685
|
+
topK: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8686
|
+
minP: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8687
|
+
presencePenalty: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8688
|
+
repeatPenalty: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7741
8689
|
parallelSlots: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
8690
|
+
cachedChats: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7742
8691
|
contextMultiplier: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7743
8692
|
calibrationRequired: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7744
8693
|
hostingProfileId: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -7782,6 +8731,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7782
8731
|
resources: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7783
8732
|
inventory: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7784
8733
|
events: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
8734
|
+
logEvents: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7785
8735
|
liveInference: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7786
8736
|
writable: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7787
8737
|
jobs: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
@@ -7868,6 +8818,12 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7868
8818
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7869
8819
|
requestId: import("zod").ZodString;
|
|
7870
8820
|
}, import("zod/v4/core").$strip>;
|
|
8821
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
8822
|
+
type: import("zod").ZodLiteral<"brain.logs.watch.response">;
|
|
8823
|
+
payload: import("zod").ZodObject<{
|
|
8824
|
+
watching: import("zod").ZodBoolean;
|
|
8825
|
+
requestId: import("zod").ZodString;
|
|
8826
|
+
}, import("zod/v4/core").$strip>;
|
|
7871
8827
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7872
8828
|
type: import("zod").ZodLiteral<"agent_archived">;
|
|
7873
8829
|
payload: import("zod").ZodObject<{
|
|
@@ -9154,6 +10110,22 @@ export declare const WSOutboundMessageSchema: {
|
|
|
9154
10110
|
}, import("zod/v4/core").$strip>>;
|
|
9155
10111
|
requestId: import("zod").ZodString;
|
|
9156
10112
|
}, import("zod/v4/core").$strip>;
|
|
10113
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
10114
|
+
type: import("zod").ZodLiteral<"checkout.git.fetch.response">;
|
|
10115
|
+
payload: import("zod").ZodObject<{
|
|
10116
|
+
cwd: import("zod").ZodString;
|
|
10117
|
+
success: import("zod").ZodBoolean;
|
|
10118
|
+
error: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
10119
|
+
code: import("zod").ZodEnum<{
|
|
10120
|
+
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
10121
|
+
NOT_ALLOWED: "NOT_ALLOWED";
|
|
10122
|
+
MERGE_CONFLICT: "MERGE_CONFLICT";
|
|
10123
|
+
UNKNOWN: "UNKNOWN";
|
|
10124
|
+
}>;
|
|
10125
|
+
message: import("zod").ZodString;
|
|
10126
|
+
}, import("zod/v4/core").$strip>>;
|
|
10127
|
+
requestId: import("zod").ZodString;
|
|
10128
|
+
}, import("zod/v4/core").$strip>;
|
|
9157
10129
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
9158
10130
|
type: import("zod").ZodLiteral<"checkout_pr_create_response">;
|
|
9159
10131
|
payload: import("zod").ZodObject<{
|
|
@@ -9726,28 +10698,160 @@ export declare const WSOutboundMessageSchema: {
|
|
|
9726
10698
|
}, import("zod/v4/core").$strip>>;
|
|
9727
10699
|
requestId: import("zod").ZodString;
|
|
9728
10700
|
}, import("zod/v4/core").$strip>;
|
|
9729
|
-
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
9730
|
-
type: import("zod").ZodLiteral<"stash_list_response">;
|
|
10701
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
10702
|
+
type: import("zod").ZodLiteral<"stash_list_response">;
|
|
10703
|
+
payload: import("zod").ZodObject<{
|
|
10704
|
+
cwd: import("zod").ZodString;
|
|
10705
|
+
entries: import("zod").ZodArray<import("zod").ZodObject<{
|
|
10706
|
+
index: import("zod").ZodNumber;
|
|
10707
|
+
message: import("zod").ZodString;
|
|
10708
|
+
branch: import("zod").ZodNullable<import("zod").ZodString>;
|
|
10709
|
+
isOtto: import("zod").ZodBoolean;
|
|
10710
|
+
}, import("zod/v4/core").$strip>>;
|
|
10711
|
+
error: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
10712
|
+
code: import("zod").ZodEnum<{
|
|
10713
|
+
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
10714
|
+
NOT_ALLOWED: "NOT_ALLOWED";
|
|
10715
|
+
MERGE_CONFLICT: "MERGE_CONFLICT";
|
|
10716
|
+
UNKNOWN: "UNKNOWN";
|
|
10717
|
+
}>;
|
|
10718
|
+
message: import("zod").ZodString;
|
|
10719
|
+
}, import("zod/v4/core").$strip>>;
|
|
10720
|
+
requestId: import("zod").ZodString;
|
|
10721
|
+
}, import("zod/v4/core").$strip>;
|
|
10722
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
10723
|
+
type: import("zod").ZodLiteral<"kanban.boards.list.response">;
|
|
10724
|
+
payload: import("zod").ZodObject<{
|
|
10725
|
+
providerId: import("zod").ZodString;
|
|
10726
|
+
boards: import("zod").ZodArray<import("zod").ZodObject<{
|
|
10727
|
+
providerId: import("zod").ZodString;
|
|
10728
|
+
boardId: import("zod").ZodString;
|
|
10729
|
+
title: import("zod").ZodString;
|
|
10730
|
+
}, import("zod/v4/core").$strict>>;
|
|
10731
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
10732
|
+
remediation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
10733
|
+
reason: import("zod").ZodString;
|
|
10734
|
+
missingScopes: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
10735
|
+
steps: import("zod").ZodArray<import("zod").ZodObject<{
|
|
10736
|
+
command: import("zod").ZodString;
|
|
10737
|
+
args: import("zod").ZodArray<import("zod").ZodString>;
|
|
10738
|
+
display: import("zod").ZodString;
|
|
10739
|
+
}, import("zod/v4/core").$strict>>;
|
|
10740
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10741
|
+
}, import("zod/v4/core").$strict>>>;
|
|
10742
|
+
requestId: import("zod").ZodString;
|
|
10743
|
+
}, import("zod/v4/core").$strip>;
|
|
10744
|
+
}, import("zod/v4/core").$strict>, import("zod").ZodObject<{
|
|
10745
|
+
type: import("zod").ZodLiteral<"kanban.board.get.response">;
|
|
10746
|
+
payload: import("zod").ZodObject<{
|
|
10747
|
+
providerId: import("zod").ZodString;
|
|
10748
|
+
board: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
10749
|
+
id: import("zod").ZodString;
|
|
10750
|
+
title: import("zod").ZodString;
|
|
10751
|
+
columns: import("zod").ZodArray<import("zod").ZodObject<{
|
|
10752
|
+
id: import("zod").ZodString;
|
|
10753
|
+
name: import("zod").ZodString;
|
|
10754
|
+
cards: import("zod").ZodArray<import("zod").ZodObject<{
|
|
10755
|
+
id: import("zod").ZodString;
|
|
10756
|
+
title: import("zod").ZodString;
|
|
10757
|
+
body: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10758
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10759
|
+
status: import("zod").ZodString;
|
|
10760
|
+
assignees: import("zod").ZodArray<import("zod").ZodString>;
|
|
10761
|
+
rawProviderId: import("zod").ZodString;
|
|
10762
|
+
}, import("zod/v4/core").$strict>>;
|
|
10763
|
+
}, import("zod/v4/core").$strict>>;
|
|
10764
|
+
}, import("zod/v4/core").$strict>>;
|
|
10765
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
10766
|
+
remediation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
10767
|
+
reason: import("zod").ZodString;
|
|
10768
|
+
missingScopes: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
10769
|
+
steps: import("zod").ZodArray<import("zod").ZodObject<{
|
|
10770
|
+
command: import("zod").ZodString;
|
|
10771
|
+
args: import("zod").ZodArray<import("zod").ZodString>;
|
|
10772
|
+
display: import("zod").ZodString;
|
|
10773
|
+
}, import("zod/v4/core").$strict>>;
|
|
10774
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10775
|
+
}, import("zod/v4/core").$strict>>>;
|
|
10776
|
+
requestId: import("zod").ZodString;
|
|
10777
|
+
}, import("zod/v4/core").$strip>;
|
|
10778
|
+
}, import("zod/v4/core").$strict>, import("zod").ZodObject<{
|
|
10779
|
+
type: import("zod").ZodLiteral<"kanban.card.move.response">;
|
|
10780
|
+
payload: import("zod").ZodObject<{
|
|
10781
|
+
providerId: import("zod").ZodString;
|
|
10782
|
+
boardId: import("zod").ZodString;
|
|
10783
|
+
cardId: import("zod").ZodString;
|
|
10784
|
+
targetColumnId: import("zod").ZodString;
|
|
10785
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
10786
|
+
remediation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
10787
|
+
reason: import("zod").ZodString;
|
|
10788
|
+
missingScopes: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
10789
|
+
steps: import("zod").ZodArray<import("zod").ZodObject<{
|
|
10790
|
+
command: import("zod").ZodString;
|
|
10791
|
+
args: import("zod").ZodArray<import("zod").ZodString>;
|
|
10792
|
+
display: import("zod").ZodString;
|
|
10793
|
+
}, import("zod/v4/core").$strict>>;
|
|
10794
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10795
|
+
}, import("zod/v4/core").$strict>>>;
|
|
10796
|
+
requestId: import("zod").ZodString;
|
|
10797
|
+
}, import("zod/v4/core").$strip>;
|
|
10798
|
+
}, import("zod/v4/core").$strict>, import("zod").ZodObject<{
|
|
10799
|
+
type: import("zod").ZodLiteral<"kanban.card.create.response">;
|
|
10800
|
+
payload: import("zod").ZodObject<{
|
|
10801
|
+
providerId: import("zod").ZodString;
|
|
10802
|
+
boardId: import("zod").ZodString;
|
|
10803
|
+
columnId: import("zod").ZodString;
|
|
10804
|
+
card: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
10805
|
+
id: import("zod").ZodString;
|
|
10806
|
+
title: import("zod").ZodString;
|
|
10807
|
+
body: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10808
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10809
|
+
status: import("zod").ZodString;
|
|
10810
|
+
assignees: import("zod").ZodArray<import("zod").ZodString>;
|
|
10811
|
+
rawProviderId: import("zod").ZodString;
|
|
10812
|
+
}, import("zod/v4/core").$strict>>;
|
|
10813
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
10814
|
+
remediation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
10815
|
+
reason: import("zod").ZodString;
|
|
10816
|
+
missingScopes: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
10817
|
+
steps: import("zod").ZodArray<import("zod").ZodObject<{
|
|
10818
|
+
command: import("zod").ZodString;
|
|
10819
|
+
args: import("zod").ZodArray<import("zod").ZodString>;
|
|
10820
|
+
display: import("zod").ZodString;
|
|
10821
|
+
}, import("zod/v4/core").$strict>>;
|
|
10822
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10823
|
+
}, import("zod/v4/core").$strict>>>;
|
|
10824
|
+
requestId: import("zod").ZodString;
|
|
10825
|
+
}, import("zod/v4/core").$strip>;
|
|
10826
|
+
}, import("zod/v4/core").$strict>, import("zod").ZodObject<{
|
|
10827
|
+
type: import("zod").ZodLiteral<"kanban.task.link.response">;
|
|
9731
10828
|
payload: import("zod").ZodObject<{
|
|
9732
|
-
|
|
9733
|
-
|
|
9734
|
-
|
|
9735
|
-
|
|
9736
|
-
|
|
9737
|
-
|
|
9738
|
-
|
|
9739
|
-
|
|
9740
|
-
|
|
9741
|
-
|
|
9742
|
-
|
|
9743
|
-
|
|
9744
|
-
|
|
9745
|
-
|
|
9746
|
-
|
|
9747
|
-
|
|
10829
|
+
providerId: import("zod").ZodString;
|
|
10830
|
+
boardId: import("zod").ZodString;
|
|
10831
|
+
columnId: import("zod").ZodString;
|
|
10832
|
+
card: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
10833
|
+
id: import("zod").ZodString;
|
|
10834
|
+
title: import("zod").ZodString;
|
|
10835
|
+
body: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10836
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10837
|
+
status: import("zod").ZodString;
|
|
10838
|
+
assignees: import("zod").ZodArray<import("zod").ZodString>;
|
|
10839
|
+
rawProviderId: import("zod").ZodString;
|
|
10840
|
+
}, import("zod/v4/core").$strict>>;
|
|
10841
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
10842
|
+
remediation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
10843
|
+
reason: import("zod").ZodString;
|
|
10844
|
+
missingScopes: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
10845
|
+
steps: import("zod").ZodArray<import("zod").ZodObject<{
|
|
10846
|
+
command: import("zod").ZodString;
|
|
10847
|
+
args: import("zod").ZodArray<import("zod").ZodString>;
|
|
10848
|
+
display: import("zod").ZodString;
|
|
10849
|
+
}, import("zod/v4/core").$strict>>;
|
|
10850
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
10851
|
+
}, import("zod/v4/core").$strict>>>;
|
|
9748
10852
|
requestId: import("zod").ZodString;
|
|
9749
10853
|
}, import("zod/v4/core").$strip>;
|
|
9750
|
-
}, import("zod/v4/core").$
|
|
10854
|
+
}, import("zod/v4/core").$strict>, import("zod").ZodObject<{
|
|
9751
10855
|
type: import("zod").ZodLiteral<"validate_branch_response">;
|
|
9752
10856
|
payload: import("zod").ZodObject<{
|
|
9753
10857
|
exists: import("zod").ZodBoolean;
|
|
@@ -9907,17 +11011,24 @@ export declare const WSOutboundMessageSchema: {
|
|
|
9907
11011
|
projectId: import("zod").ZodString;
|
|
9908
11012
|
projectDisplayName: import("zod").ZodString;
|
|
9909
11013
|
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
11014
|
+
projectKanban: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
11015
|
+
adapter: import("zod").ZodEnum<{
|
|
11016
|
+
github: "github";
|
|
11017
|
+
jira: "jira";
|
|
11018
|
+
}>;
|
|
11019
|
+
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
11020
|
+
}, import("zod/v4/core").$loose>>>;
|
|
9910
11021
|
projectRootPath: import("zod").ZodString;
|
|
9911
11022
|
workspaceDirectory: import("zod").ZodOptional<import("zod").ZodString>;
|
|
9912
11023
|
projectKind: import("zod").ZodEnum<{
|
|
9913
|
-
git: "git";
|
|
9914
11024
|
directory: "directory";
|
|
11025
|
+
git: "git";
|
|
9915
11026
|
non_git: "non_git";
|
|
9916
11027
|
}>;
|
|
9917
11028
|
workspaceKind: import("zod").ZodEnum<{
|
|
9918
11029
|
worktree: "worktree";
|
|
9919
|
-
checkout: "checkout";
|
|
9920
11030
|
directory: "directory";
|
|
11031
|
+
checkout: "checkout";
|
|
9921
11032
|
local_checkout: "local_checkout";
|
|
9922
11033
|
}>;
|
|
9923
11034
|
name: import("zod").ZodString;
|
|
@@ -9926,10 +11037,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
9926
11037
|
archivingAt: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
9927
11038
|
status: import("zod").ZodEnum<{
|
|
9928
11039
|
running: "running";
|
|
9929
|
-
attention: "attention";
|
|
9930
|
-
needs_input: "needs_input";
|
|
9931
11040
|
done: "done";
|
|
9932
11041
|
failed: "failed";
|
|
11042
|
+
attention: "attention";
|
|
11043
|
+
needs_input: "needs_input";
|
|
9933
11044
|
}>;
|
|
9934
11045
|
statusEnteredAt: import("zod").ZodPipe<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>, import("zod").ZodTransform<string | null, string | null | undefined>>;
|
|
9935
11046
|
activityAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -10014,8 +11125,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10014
11125
|
}, import("zod/v4/core").$strip>>>;
|
|
10015
11126
|
checksStatus: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
10016
11127
|
success: "success";
|
|
10017
|
-
pending: "pending";
|
|
10018
11128
|
none: "none";
|
|
11129
|
+
pending: "pending";
|
|
10019
11130
|
failure: "failure";
|
|
10020
11131
|
}>>;
|
|
10021
11132
|
reviewDecision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
@@ -10117,11 +11228,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10117
11228
|
projectId: string;
|
|
10118
11229
|
projectDisplayName: string;
|
|
10119
11230
|
projectRootPath: string;
|
|
10120
|
-
projectKind: "
|
|
10121
|
-
workspaceKind: "worktree" | "
|
|
11231
|
+
projectKind: "directory" | "git" | "non_git";
|
|
11232
|
+
workspaceKind: "worktree" | "directory" | "checkout" | "local_checkout";
|
|
10122
11233
|
name: string;
|
|
10123
11234
|
archivingAt: string | null;
|
|
10124
|
-
status: "running" | "
|
|
11235
|
+
status: "running" | "done" | "failed" | "attention" | "needs_input";
|
|
10125
11236
|
statusEnteredAt: string | null;
|
|
10126
11237
|
activityAt: string | null;
|
|
10127
11238
|
scripts: {
|
|
@@ -10145,6 +11256,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10145
11256
|
publicProxyUrl?: string | null | undefined;
|
|
10146
11257
|
}[];
|
|
10147
11258
|
projectCustomName?: string | null | undefined;
|
|
11259
|
+
projectKanban?: {
|
|
11260
|
+
[x: string]: unknown;
|
|
11261
|
+
adapter: "github" | "jira";
|
|
11262
|
+
boardId?: string | null | undefined;
|
|
11263
|
+
} | null | undefined;
|
|
10148
11264
|
title?: string | null | undefined;
|
|
10149
11265
|
pinnedAt?: string | null | undefined;
|
|
10150
11266
|
diffStat?: {
|
|
@@ -10187,7 +11303,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10187
11303
|
workflow?: string | undefined;
|
|
10188
11304
|
duration?: string | undefined;
|
|
10189
11305
|
}[] | undefined;
|
|
10190
|
-
checksStatus?: "success" | "
|
|
11306
|
+
checksStatus?: "success" | "none" | "pending" | "failure" | undefined;
|
|
10191
11307
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
10192
11308
|
repoOwner?: string | undefined;
|
|
10193
11309
|
repoName?: string | undefined;
|
|
@@ -10234,11 +11350,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10234
11350
|
projectId: string;
|
|
10235
11351
|
projectDisplayName: string;
|
|
10236
11352
|
projectRootPath: string;
|
|
10237
|
-
projectKind: "
|
|
10238
|
-
workspaceKind: "worktree" | "
|
|
11353
|
+
projectKind: "directory" | "git" | "non_git";
|
|
11354
|
+
workspaceKind: "worktree" | "directory" | "checkout" | "local_checkout";
|
|
10239
11355
|
name: string;
|
|
10240
11356
|
archivingAt: string | null;
|
|
10241
|
-
status: "running" | "
|
|
11357
|
+
status: "running" | "done" | "failed" | "attention" | "needs_input";
|
|
10242
11358
|
statusEnteredAt: string | null;
|
|
10243
11359
|
activityAt: string | null;
|
|
10244
11360
|
scripts: {
|
|
@@ -10262,6 +11378,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10262
11378
|
publicProxyUrl?: string | null | undefined;
|
|
10263
11379
|
}[];
|
|
10264
11380
|
projectCustomName?: string | null | undefined;
|
|
11381
|
+
projectKanban?: {
|
|
11382
|
+
[x: string]: unknown;
|
|
11383
|
+
adapter: "github" | "jira";
|
|
11384
|
+
boardId?: string | null | undefined;
|
|
11385
|
+
} | null | undefined;
|
|
10265
11386
|
workspaceDirectory?: string | undefined;
|
|
10266
11387
|
title?: string | null | undefined;
|
|
10267
11388
|
pinnedAt?: string | null | undefined;
|
|
@@ -10305,7 +11426,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10305
11426
|
workflow?: string | undefined;
|
|
10306
11427
|
duration?: string | undefined;
|
|
10307
11428
|
}[] | undefined;
|
|
10308
|
-
checksStatus?: "success" | "
|
|
11429
|
+
checksStatus?: "success" | "none" | "pending" | "failure" | undefined;
|
|
10309
11430
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
10310
11431
|
repoOwner?: string | undefined;
|
|
10311
11432
|
repoName?: string | undefined;
|
|
@@ -10793,8 +11914,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10793
11914
|
cwd: import("zod").ZodString;
|
|
10794
11915
|
path: import("zod").ZodString;
|
|
10795
11916
|
status: import("zod").ZodEnum<{
|
|
10796
|
-
unavailable: "unavailable";
|
|
10797
11917
|
ok: "ok";
|
|
11918
|
+
unavailable: "unavailable";
|
|
10798
11919
|
indexing: "indexing";
|
|
10799
11920
|
}>;
|
|
10800
11921
|
locations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -10832,8 +11953,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10832
11953
|
cwd: import("zod").ZodString;
|
|
10833
11954
|
path: import("zod").ZodString;
|
|
10834
11955
|
status: import("zod").ZodEnum<{
|
|
10835
|
-
unavailable: "unavailable";
|
|
10836
11956
|
ok: "ok";
|
|
11957
|
+
unavailable: "unavailable";
|
|
10837
11958
|
indexing: "indexing";
|
|
10838
11959
|
}>;
|
|
10839
11960
|
markdown: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -10853,8 +11974,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10853
11974
|
cwd: import("zod").ZodString;
|
|
10854
11975
|
path: import("zod").ZodString;
|
|
10855
11976
|
status: import("zod").ZodEnum<{
|
|
10856
|
-
unavailable: "unavailable";
|
|
10857
11977
|
ok: "ok";
|
|
11978
|
+
unavailable: "unavailable";
|
|
10858
11979
|
indexing: "indexing";
|
|
10859
11980
|
}>;
|
|
10860
11981
|
locations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -10875,8 +11996,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10875
11996
|
path: import("zod").ZodString;
|
|
10876
11997
|
newName: import("zod").ZodString;
|
|
10877
11998
|
status: import("zod").ZodEnum<{
|
|
10878
|
-
unavailable: "unavailable";
|
|
10879
11999
|
ok: "ok";
|
|
12000
|
+
unavailable: "unavailable";
|
|
10880
12001
|
indexing: "indexing";
|
|
10881
12002
|
}>;
|
|
10882
12003
|
files: import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -10964,6 +12085,15 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10964
12085
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
10965
12086
|
extensions: import("zod").ZodArray<import("zod").ZodString>;
|
|
10966
12087
|
indexCost: import("zod").ZodString;
|
|
12088
|
+
install: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
12089
|
+
steps: import("zod").ZodArray<import("zod").ZodObject<{
|
|
12090
|
+
command: import("zod").ZodString;
|
|
12091
|
+
args: import("zod").ZodArray<import("zod").ZodString>;
|
|
12092
|
+
display: import("zod").ZodString;
|
|
12093
|
+
note: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12094
|
+
}, import("zod/v4/core").$strip>>;
|
|
12095
|
+
url: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12096
|
+
}, import("zod/v4/core").$strip>>>;
|
|
10967
12097
|
}, import("zod/v4/core").$strip>>;
|
|
10968
12098
|
running: import("zod").ZodArray<import("zod").ZodObject<{
|
|
10969
12099
|
rootPath: import("zod").ZodString;
|
|
@@ -11033,9 +12163,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11033
12163
|
solutionPath: import("zod").ZodString;
|
|
11034
12164
|
projectPath: import("zod").ZodString;
|
|
11035
12165
|
status: import("zod").ZodEnum<{
|
|
11036
|
-
failed: "failed";
|
|
11037
|
-
unavailable: "unavailable";
|
|
11038
12166
|
ok: "ok";
|
|
12167
|
+
unavailable: "unavailable";
|
|
12168
|
+
failed: "failed";
|
|
11039
12169
|
}>;
|
|
11040
12170
|
nodes: import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
11041
12171
|
kind: import("zod").ZodLiteral<"directory">;
|
|
@@ -11212,9 +12342,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11212
12342
|
shortfallPct: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
11213
12343
|
tone: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11214
12344
|
default: "default";
|
|
12345
|
+
ok: "ok";
|
|
11215
12346
|
warning: "warning";
|
|
11216
12347
|
danger: "danger";
|
|
11217
|
-
ok: "ok";
|
|
11218
12348
|
}>>;
|
|
11219
12349
|
}, import("zod/v4/core").$strip>>;
|
|
11220
12350
|
balances: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -11232,9 +12362,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11232
12362
|
resetsAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
11233
12363
|
tone: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11234
12364
|
default: "default";
|
|
12365
|
+
ok: "ok";
|
|
11235
12366
|
warning: "warning";
|
|
11236
12367
|
danger: "danger";
|
|
11237
|
-
ok: "ok";
|
|
11238
12368
|
}>>;
|
|
11239
12369
|
}, import("zod/v4/core").$strip>>>;
|
|
11240
12370
|
details: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -11243,9 +12373,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11243
12373
|
value: import("zod").ZodString;
|
|
11244
12374
|
tone: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11245
12375
|
default: "default";
|
|
12376
|
+
ok: "ok";
|
|
11246
12377
|
warning: "warning";
|
|
11247
12378
|
danger: "danger";
|
|
11248
|
-
ok: "ok";
|
|
11249
12379
|
}>>;
|
|
11250
12380
|
}, import("zod/v4/core").$strip>>>;
|
|
11251
12381
|
error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -11489,8 +12619,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11489
12619
|
sharePercent: import("zod").ZodNumber;
|
|
11490
12620
|
severity: import("zod").ZodEnum<{
|
|
11491
12621
|
ok: "ok";
|
|
11492
|
-
notice: "notice";
|
|
11493
12622
|
warn: "warn";
|
|
12623
|
+
notice: "notice";
|
|
11494
12624
|
critical: "critical";
|
|
11495
12625
|
}>;
|
|
11496
12626
|
visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -11506,8 +12636,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11506
12636
|
workingRoom: import("zod").ZodNumber;
|
|
11507
12637
|
aggregateSeverity: import("zod").ZodEnum<{
|
|
11508
12638
|
ok: "ok";
|
|
11509
|
-
notice: "notice";
|
|
11510
12639
|
warn: "warn";
|
|
12640
|
+
notice: "notice";
|
|
11511
12641
|
critical: "critical";
|
|
11512
12642
|
}>;
|
|
11513
12643
|
findings: import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -11585,17 +12715,17 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11585
12715
|
evidence: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11586
12716
|
tags: import("zod").ZodArray<import("zod").ZodString>;
|
|
11587
12717
|
status: import("zod").ZodEnum<{
|
|
12718
|
+
superseded: "superseded";
|
|
11588
12719
|
proposed: "proposed";
|
|
11589
12720
|
confirmed: "confirmed";
|
|
11590
|
-
superseded: "superseded";
|
|
11591
12721
|
}>;
|
|
11592
12722
|
deliveryStatus: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11593
|
-
blocked: "blocked";
|
|
11594
|
-
complete: "complete";
|
|
11595
|
-
partial: "partial";
|
|
11596
12723
|
reference: "reference";
|
|
11597
12724
|
charter: "charter";
|
|
11598
12725
|
in_build: "in_build";
|
|
12726
|
+
partial: "partial";
|
|
12727
|
+
blocked: "blocked";
|
|
12728
|
+
complete: "complete";
|
|
11599
12729
|
deferred: "deferred";
|
|
11600
12730
|
cancelled: "cancelled";
|
|
11601
12731
|
}>>;
|
|
@@ -11606,9 +12736,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11606
12736
|
}, import("zod/v4/core").$strip>>;
|
|
11607
12737
|
referenceDisposition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11608
12738
|
read: "read";
|
|
11609
|
-
rejected: "rejected";
|
|
11610
12739
|
unevaluated: "unevaluated";
|
|
11611
12740
|
adopted: "adopted";
|
|
12741
|
+
rejected: "rejected";
|
|
11612
12742
|
dependency: "dependency";
|
|
11613
12743
|
}>>;
|
|
11614
12744
|
sourceUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -11638,8 +12768,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11638
12768
|
recordId: import("zod").ZodString;
|
|
11639
12769
|
relatedRecordId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11640
12770
|
tagOverlap: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11641
|
-
complete: "complete";
|
|
11642
12771
|
partial: "partial";
|
|
12772
|
+
complete: "complete";
|
|
11643
12773
|
}>>;
|
|
11644
12774
|
sharedTags: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
11645
12775
|
message: import("zod").ZodString;
|
|
@@ -11670,17 +12800,17 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11670
12800
|
evidence: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11671
12801
|
tags: import("zod").ZodArray<import("zod").ZodString>;
|
|
11672
12802
|
status: import("zod").ZodEnum<{
|
|
12803
|
+
superseded: "superseded";
|
|
11673
12804
|
proposed: "proposed";
|
|
11674
12805
|
confirmed: "confirmed";
|
|
11675
|
-
superseded: "superseded";
|
|
11676
12806
|
}>;
|
|
11677
12807
|
deliveryStatus: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11678
|
-
blocked: "blocked";
|
|
11679
|
-
complete: "complete";
|
|
11680
|
-
partial: "partial";
|
|
11681
12808
|
reference: "reference";
|
|
11682
12809
|
charter: "charter";
|
|
11683
12810
|
in_build: "in_build";
|
|
12811
|
+
partial: "partial";
|
|
12812
|
+
blocked: "blocked";
|
|
12813
|
+
complete: "complete";
|
|
11684
12814
|
deferred: "deferred";
|
|
11685
12815
|
cancelled: "cancelled";
|
|
11686
12816
|
}>>;
|
|
@@ -11691,9 +12821,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11691
12821
|
}, import("zod/v4/core").$strip>>;
|
|
11692
12822
|
referenceDisposition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11693
12823
|
read: "read";
|
|
11694
|
-
rejected: "rejected";
|
|
11695
12824
|
unevaluated: "unevaluated";
|
|
11696
12825
|
adopted: "adopted";
|
|
12826
|
+
rejected: "rejected";
|
|
11697
12827
|
dependency: "dependency";
|
|
11698
12828
|
}>>;
|
|
11699
12829
|
sourceUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -11730,17 +12860,17 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11730
12860
|
evidence: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11731
12861
|
tags: import("zod").ZodArray<import("zod").ZodString>;
|
|
11732
12862
|
status: import("zod").ZodEnum<{
|
|
12863
|
+
superseded: "superseded";
|
|
11733
12864
|
proposed: "proposed";
|
|
11734
12865
|
confirmed: "confirmed";
|
|
11735
|
-
superseded: "superseded";
|
|
11736
12866
|
}>;
|
|
11737
12867
|
deliveryStatus: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11738
|
-
blocked: "blocked";
|
|
11739
|
-
complete: "complete";
|
|
11740
|
-
partial: "partial";
|
|
11741
12868
|
reference: "reference";
|
|
11742
12869
|
charter: "charter";
|
|
11743
12870
|
in_build: "in_build";
|
|
12871
|
+
partial: "partial";
|
|
12872
|
+
blocked: "blocked";
|
|
12873
|
+
complete: "complete";
|
|
11744
12874
|
deferred: "deferred";
|
|
11745
12875
|
cancelled: "cancelled";
|
|
11746
12876
|
}>>;
|
|
@@ -11751,9 +12881,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11751
12881
|
}, import("zod/v4/core").$strip>>;
|
|
11752
12882
|
referenceDisposition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11753
12883
|
read: "read";
|
|
11754
|
-
rejected: "rejected";
|
|
11755
12884
|
unevaluated: "unevaluated";
|
|
11756
12885
|
adopted: "adopted";
|
|
12886
|
+
rejected: "rejected";
|
|
11757
12887
|
dependency: "dependency";
|
|
11758
12888
|
}>>;
|
|
11759
12889
|
sourceUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -11790,17 +12920,17 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11790
12920
|
evidence: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11791
12921
|
tags: import("zod").ZodArray<import("zod").ZodString>;
|
|
11792
12922
|
status: import("zod").ZodEnum<{
|
|
12923
|
+
superseded: "superseded";
|
|
11793
12924
|
proposed: "proposed";
|
|
11794
12925
|
confirmed: "confirmed";
|
|
11795
|
-
superseded: "superseded";
|
|
11796
12926
|
}>;
|
|
11797
12927
|
deliveryStatus: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11798
|
-
blocked: "blocked";
|
|
11799
|
-
complete: "complete";
|
|
11800
|
-
partial: "partial";
|
|
11801
12928
|
reference: "reference";
|
|
11802
12929
|
charter: "charter";
|
|
11803
12930
|
in_build: "in_build";
|
|
12931
|
+
partial: "partial";
|
|
12932
|
+
blocked: "blocked";
|
|
12933
|
+
complete: "complete";
|
|
11804
12934
|
deferred: "deferred";
|
|
11805
12935
|
cancelled: "cancelled";
|
|
11806
12936
|
}>>;
|
|
@@ -11811,9 +12941,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11811
12941
|
}, import("zod/v4/core").$strip>>;
|
|
11812
12942
|
referenceDisposition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11813
12943
|
read: "read";
|
|
11814
|
-
rejected: "rejected";
|
|
11815
12944
|
unevaluated: "unevaluated";
|
|
11816
12945
|
adopted: "adopted";
|
|
12946
|
+
rejected: "rejected";
|
|
11817
12947
|
dependency: "dependency";
|
|
11818
12948
|
}>>;
|
|
11819
12949
|
sourceUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -11851,17 +12981,17 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11851
12981
|
evidence: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11852
12982
|
tags: import("zod").ZodArray<import("zod").ZodString>;
|
|
11853
12983
|
status: import("zod").ZodEnum<{
|
|
12984
|
+
superseded: "superseded";
|
|
11854
12985
|
proposed: "proposed";
|
|
11855
12986
|
confirmed: "confirmed";
|
|
11856
|
-
superseded: "superseded";
|
|
11857
12987
|
}>;
|
|
11858
12988
|
deliveryStatus: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11859
|
-
blocked: "blocked";
|
|
11860
|
-
complete: "complete";
|
|
11861
|
-
partial: "partial";
|
|
11862
12989
|
reference: "reference";
|
|
11863
12990
|
charter: "charter";
|
|
11864
12991
|
in_build: "in_build";
|
|
12992
|
+
partial: "partial";
|
|
12993
|
+
blocked: "blocked";
|
|
12994
|
+
complete: "complete";
|
|
11865
12995
|
deferred: "deferred";
|
|
11866
12996
|
cancelled: "cancelled";
|
|
11867
12997
|
}>>;
|
|
@@ -11872,9 +13002,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11872
13002
|
}, import("zod/v4/core").$strip>>;
|
|
11873
13003
|
referenceDisposition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11874
13004
|
read: "read";
|
|
11875
|
-
rejected: "rejected";
|
|
11876
13005
|
unevaluated: "unevaluated";
|
|
11877
13006
|
adopted: "adopted";
|
|
13007
|
+
rejected: "rejected";
|
|
11878
13008
|
dependency: "dependency";
|
|
11879
13009
|
}>>;
|
|
11880
13010
|
sourceUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -11911,17 +13041,17 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11911
13041
|
evidence: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11912
13042
|
tags: import("zod").ZodArray<import("zod").ZodString>;
|
|
11913
13043
|
status: import("zod").ZodEnum<{
|
|
13044
|
+
superseded: "superseded";
|
|
11914
13045
|
proposed: "proposed";
|
|
11915
13046
|
confirmed: "confirmed";
|
|
11916
|
-
superseded: "superseded";
|
|
11917
13047
|
}>;
|
|
11918
13048
|
deliveryStatus: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11919
|
-
blocked: "blocked";
|
|
11920
|
-
complete: "complete";
|
|
11921
|
-
partial: "partial";
|
|
11922
13049
|
reference: "reference";
|
|
11923
13050
|
charter: "charter";
|
|
11924
13051
|
in_build: "in_build";
|
|
13052
|
+
partial: "partial";
|
|
13053
|
+
blocked: "blocked";
|
|
13054
|
+
complete: "complete";
|
|
11925
13055
|
deferred: "deferred";
|
|
11926
13056
|
cancelled: "cancelled";
|
|
11927
13057
|
}>>;
|
|
@@ -11932,9 +13062,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11932
13062
|
}, import("zod/v4/core").$strip>>;
|
|
11933
13063
|
referenceDisposition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11934
13064
|
read: "read";
|
|
11935
|
-
rejected: "rejected";
|
|
11936
13065
|
unevaluated: "unevaluated";
|
|
11937
13066
|
adopted: "adopted";
|
|
13067
|
+
rejected: "rejected";
|
|
11938
13068
|
dependency: "dependency";
|
|
11939
13069
|
}>>;
|
|
11940
13070
|
sourceUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -11972,17 +13102,17 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11972
13102
|
evidence: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11973
13103
|
tags: import("zod").ZodArray<import("zod").ZodString>;
|
|
11974
13104
|
status: import("zod").ZodEnum<{
|
|
13105
|
+
superseded: "superseded";
|
|
11975
13106
|
proposed: "proposed";
|
|
11976
13107
|
confirmed: "confirmed";
|
|
11977
|
-
superseded: "superseded";
|
|
11978
13108
|
}>;
|
|
11979
13109
|
deliveryStatus: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11980
|
-
blocked: "blocked";
|
|
11981
|
-
complete: "complete";
|
|
11982
|
-
partial: "partial";
|
|
11983
13110
|
reference: "reference";
|
|
11984
13111
|
charter: "charter";
|
|
11985
13112
|
in_build: "in_build";
|
|
13113
|
+
partial: "partial";
|
|
13114
|
+
blocked: "blocked";
|
|
13115
|
+
complete: "complete";
|
|
11986
13116
|
deferred: "deferred";
|
|
11987
13117
|
cancelled: "cancelled";
|
|
11988
13118
|
}>>;
|
|
@@ -11993,9 +13123,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11993
13123
|
}, import("zod/v4/core").$strip>>;
|
|
11994
13124
|
referenceDisposition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11995
13125
|
read: "read";
|
|
11996
|
-
rejected: "rejected";
|
|
11997
13126
|
unevaluated: "unevaluated";
|
|
11998
13127
|
adopted: "adopted";
|
|
13128
|
+
rejected: "rejected";
|
|
11999
13129
|
dependency: "dependency";
|
|
12000
13130
|
}>>;
|
|
12001
13131
|
sourceUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -12285,9 +13415,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
12285
13415
|
id: import("zod").ZodString;
|
|
12286
13416
|
label: import("zod").ZodString;
|
|
12287
13417
|
status: import("zod").ZodEnum<{
|
|
13418
|
+
unknown: "unknown";
|
|
12288
13419
|
pass: "pass";
|
|
12289
13420
|
fail: "fail";
|
|
12290
|
-
unknown: "unknown";
|
|
12291
13421
|
warn: "warn";
|
|
12292
13422
|
}>;
|
|
12293
13423
|
detail: import("zod").ZodString;
|
|
@@ -12428,22 +13558,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
12428
13558
|
prompt: import("zod").ZodString;
|
|
12429
13559
|
name: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12430
13560
|
id: import("zod").ZodString;
|
|
13561
|
+
createdAt: import("zod").ZodString;
|
|
13562
|
+
updatedAt: import("zod").ZodString;
|
|
12431
13563
|
status: import("zod").ZodEnum<{
|
|
12432
|
-
paused: "paused";
|
|
12433
13564
|
completed: "completed";
|
|
12434
13565
|
active: "active";
|
|
13566
|
+
paused: "paused";
|
|
12435
13567
|
}>;
|
|
12436
|
-
createdAt: import("zod").ZodString;
|
|
12437
|
-
updatedAt: import("zod").ZodString;
|
|
12438
13568
|
expiresAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12439
|
-
cadence: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
12440
|
-
type: import("zod").ZodLiteral<"every">;
|
|
12441
|
-
everyMs: import("zod").ZodNumber;
|
|
12442
|
-
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
12443
|
-
type: import("zod").ZodLiteral<"cron">;
|
|
12444
|
-
expression: import("zod").ZodString;
|
|
12445
|
-
timezone: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12446
|
-
}, import("zod/v4/core").$strip>], "type">;
|
|
12447
13569
|
target: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
12448
13570
|
type: import("zod").ZodLiteral<"agent">;
|
|
12449
13571
|
agentId: import("zod").ZodGUID;
|
|
@@ -12475,6 +13597,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
12475
13597
|
mcpServers: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
12476
13598
|
}, import("zod/v4/core").$strip>;
|
|
12477
13599
|
}, import("zod/v4/core").$strip>], "type">;
|
|
13600
|
+
cadence: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
13601
|
+
type: import("zod").ZodLiteral<"every">;
|
|
13602
|
+
everyMs: import("zod").ZodNumber;
|
|
13603
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
13604
|
+
type: import("zod").ZodLiteral<"cron">;
|
|
13605
|
+
expression: import("zod").ZodString;
|
|
13606
|
+
timezone: import("zod").ZodOptional<import("zod").ZodString>;
|
|
13607
|
+
}, import("zod/v4/core").$strip>], "type">;
|
|
12478
13608
|
nextRunAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12479
13609
|
lastRunAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12480
13610
|
lastRunStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
@@ -12498,22 +13628,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
12498
13628
|
prompt: import("zod").ZodString;
|
|
12499
13629
|
name: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12500
13630
|
id: import("zod").ZodString;
|
|
13631
|
+
createdAt: import("zod").ZodString;
|
|
13632
|
+
updatedAt: import("zod").ZodString;
|
|
12501
13633
|
status: import("zod").ZodEnum<{
|
|
12502
|
-
paused: "paused";
|
|
12503
13634
|
completed: "completed";
|
|
12504
13635
|
active: "active";
|
|
13636
|
+
paused: "paused";
|
|
12505
13637
|
}>;
|
|
12506
|
-
createdAt: import("zod").ZodString;
|
|
12507
|
-
updatedAt: import("zod").ZodString;
|
|
12508
13638
|
expiresAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12509
|
-
cadence: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
12510
|
-
type: import("zod").ZodLiteral<"every">;
|
|
12511
|
-
everyMs: import("zod").ZodNumber;
|
|
12512
|
-
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
12513
|
-
type: import("zod").ZodLiteral<"cron">;
|
|
12514
|
-
expression: import("zod").ZodString;
|
|
12515
|
-
timezone: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12516
|
-
}, import("zod/v4/core").$strip>], "type">;
|
|
12517
13639
|
target: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
12518
13640
|
type: import("zod").ZodLiteral<"agent">;
|
|
12519
13641
|
agentId: import("zod").ZodGUID;
|
|
@@ -12545,6 +13667,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
12545
13667
|
mcpServers: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
12546
13668
|
}, import("zod/v4/core").$strip>;
|
|
12547
13669
|
}, import("zod/v4/core").$strip>], "type">;
|
|
13670
|
+
cadence: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
13671
|
+
type: import("zod").ZodLiteral<"every">;
|
|
13672
|
+
everyMs: import("zod").ZodNumber;
|
|
13673
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
13674
|
+
type: import("zod").ZodLiteral<"cron">;
|
|
13675
|
+
expression: import("zod").ZodString;
|
|
13676
|
+
timezone: import("zod").ZodOptional<import("zod").ZodString>;
|
|
13677
|
+
}, import("zod/v4/core").$strip>], "type">;
|
|
12548
13678
|
nextRunAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12549
13679
|
lastRunAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12550
13680
|
lastRunStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
@@ -12608,9 +13738,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
12608
13738
|
}, import("zod/v4/core").$strip>;
|
|
12609
13739
|
}, import("zod/v4/core").$strip>], "type">;
|
|
12610
13740
|
status: import("zod").ZodEnum<{
|
|
12611
|
-
paused: "paused";
|
|
12612
13741
|
completed: "completed";
|
|
12613
13742
|
active: "active";
|
|
13743
|
+
paused: "paused";
|
|
12614
13744
|
}>;
|
|
12615
13745
|
createdAt: import("zod").ZodString;
|
|
12616
13746
|
updatedAt: import("zod").ZodString;
|
|
@@ -12680,22 +13810,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
12680
13810
|
prompt: import("zod").ZodString;
|
|
12681
13811
|
name: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12682
13812
|
id: import("zod").ZodString;
|
|
13813
|
+
createdAt: import("zod").ZodString;
|
|
13814
|
+
updatedAt: import("zod").ZodString;
|
|
12683
13815
|
status: import("zod").ZodEnum<{
|
|
12684
|
-
paused: "paused";
|
|
12685
13816
|
completed: "completed";
|
|
12686
13817
|
active: "active";
|
|
13818
|
+
paused: "paused";
|
|
12687
13819
|
}>;
|
|
12688
|
-
createdAt: import("zod").ZodString;
|
|
12689
|
-
updatedAt: import("zod").ZodString;
|
|
12690
13820
|
expiresAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12691
|
-
cadence: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
12692
|
-
type: import("zod").ZodLiteral<"every">;
|
|
12693
|
-
everyMs: import("zod").ZodNumber;
|
|
12694
|
-
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
12695
|
-
type: import("zod").ZodLiteral<"cron">;
|
|
12696
|
-
expression: import("zod").ZodString;
|
|
12697
|
-
timezone: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12698
|
-
}, import("zod/v4/core").$strip>], "type">;
|
|
12699
13821
|
target: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
12700
13822
|
type: import("zod").ZodLiteral<"agent">;
|
|
12701
13823
|
agentId: import("zod").ZodGUID;
|
|
@@ -12727,6 +13849,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
12727
13849
|
mcpServers: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
12728
13850
|
}, import("zod/v4/core").$strip>;
|
|
12729
13851
|
}, import("zod/v4/core").$strip>], "type">;
|
|
13852
|
+
cadence: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
13853
|
+
type: import("zod").ZodLiteral<"every">;
|
|
13854
|
+
everyMs: import("zod").ZodNumber;
|
|
13855
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
13856
|
+
type: import("zod").ZodLiteral<"cron">;
|
|
13857
|
+
expression: import("zod").ZodString;
|
|
13858
|
+
timezone: import("zod").ZodOptional<import("zod").ZodString>;
|
|
13859
|
+
}, import("zod/v4/core").$strip>], "type">;
|
|
12730
13860
|
nextRunAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12731
13861
|
lastRunAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12732
13862
|
lastRunStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
@@ -12750,22 +13880,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
12750
13880
|
prompt: import("zod").ZodString;
|
|
12751
13881
|
name: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12752
13882
|
id: import("zod").ZodString;
|
|
13883
|
+
createdAt: import("zod").ZodString;
|
|
13884
|
+
updatedAt: import("zod").ZodString;
|
|
12753
13885
|
status: import("zod").ZodEnum<{
|
|
12754
|
-
paused: "paused";
|
|
12755
13886
|
completed: "completed";
|
|
12756
13887
|
active: "active";
|
|
13888
|
+
paused: "paused";
|
|
12757
13889
|
}>;
|
|
12758
|
-
createdAt: import("zod").ZodString;
|
|
12759
|
-
updatedAt: import("zod").ZodString;
|
|
12760
13890
|
expiresAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12761
|
-
cadence: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
12762
|
-
type: import("zod").ZodLiteral<"every">;
|
|
12763
|
-
everyMs: import("zod").ZodNumber;
|
|
12764
|
-
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
12765
|
-
type: import("zod").ZodLiteral<"cron">;
|
|
12766
|
-
expression: import("zod").ZodString;
|
|
12767
|
-
timezone: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12768
|
-
}, import("zod/v4/core").$strip>], "type">;
|
|
12769
13891
|
target: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
12770
13892
|
type: import("zod").ZodLiteral<"agent">;
|
|
12771
13893
|
agentId: import("zod").ZodGUID;
|
|
@@ -12797,6 +13919,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
12797
13919
|
mcpServers: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
12798
13920
|
}, import("zod/v4/core").$strip>;
|
|
12799
13921
|
}, import("zod/v4/core").$strip>], "type">;
|
|
13922
|
+
cadence: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
13923
|
+
type: import("zod").ZodLiteral<"every">;
|
|
13924
|
+
everyMs: import("zod").ZodNumber;
|
|
13925
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
13926
|
+
type: import("zod").ZodLiteral<"cron">;
|
|
13927
|
+
expression: import("zod").ZodString;
|
|
13928
|
+
timezone: import("zod").ZodOptional<import("zod").ZodString>;
|
|
13929
|
+
}, import("zod/v4/core").$strip>], "type">;
|
|
12800
13930
|
nextRunAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12801
13931
|
lastRunAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12802
13932
|
lastRunStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
@@ -12867,9 +13997,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
12867
13997
|
}, import("zod/v4/core").$strip>;
|
|
12868
13998
|
}, import("zod/v4/core").$strip>], "type">;
|
|
12869
13999
|
status: import("zod").ZodEnum<{
|
|
12870
|
-
paused: "paused";
|
|
12871
14000
|
completed: "completed";
|
|
12872
14001
|
active: "active";
|
|
14002
|
+
paused: "paused";
|
|
12873
14003
|
}>;
|
|
12874
14004
|
createdAt: import("zod").ZodString;
|
|
12875
14005
|
updatedAt: import("zod").ZodString;
|
|
@@ -12955,9 +14085,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
12955
14085
|
}, import("zod/v4/core").$strip>;
|
|
12956
14086
|
}, import("zod/v4/core").$strip>], "type">;
|
|
12957
14087
|
status: import("zod").ZodEnum<{
|
|
12958
|
-
paused: "paused";
|
|
12959
14088
|
completed: "completed";
|
|
12960
14089
|
active: "active";
|
|
14090
|
+
paused: "paused";
|
|
12961
14091
|
}>;
|
|
12962
14092
|
createdAt: import("zod").ZodString;
|
|
12963
14093
|
updatedAt: import("zod").ZodString;
|
|
@@ -13042,9 +14172,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
13042
14172
|
stopped: "stopped";
|
|
13043
14173
|
}>;
|
|
13044
14174
|
workerOutcome: import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
14175
|
+
completed: "completed";
|
|
13045
14176
|
failed: "failed";
|
|
13046
14177
|
canceled: "canceled";
|
|
13047
|
-
completed: "completed";
|
|
13048
14178
|
}>>;
|
|
13049
14179
|
failureReason: import("zod").ZodNullable<import("zod").ZodString>;
|
|
13050
14180
|
verifyChecks: import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -13154,9 +14284,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
13154
14284
|
stopped: "stopped";
|
|
13155
14285
|
}>;
|
|
13156
14286
|
workerOutcome: import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
14287
|
+
completed: "completed";
|
|
13157
14288
|
failed: "failed";
|
|
13158
14289
|
canceled: "canceled";
|
|
13159
|
-
completed: "completed";
|
|
13160
14290
|
}>>;
|
|
13161
14291
|
failureReason: import("zod").ZodNullable<import("zod").ZodString>;
|
|
13162
14292
|
verifyChecks: import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -13246,9 +14376,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
13246
14376
|
stopped: "stopped";
|
|
13247
14377
|
}>;
|
|
13248
14378
|
workerOutcome: import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
14379
|
+
completed: "completed";
|
|
13249
14380
|
failed: "failed";
|
|
13250
14381
|
canceled: "canceled";
|
|
13251
|
-
completed: "completed";
|
|
13252
14382
|
}>>;
|
|
13253
14383
|
failureReason: import("zod").ZodNullable<import("zod").ZodString>;
|
|
13254
14384
|
verifyChecks: import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -13355,9 +14485,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
13355
14485
|
stopped: "stopped";
|
|
13356
14486
|
}>;
|
|
13357
14487
|
workerOutcome: import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
14488
|
+
completed: "completed";
|
|
13358
14489
|
failed: "failed";
|
|
13359
14490
|
canceled: "canceled";
|
|
13360
|
-
completed: "completed";
|
|
13361
14491
|
}>>;
|
|
13362
14492
|
failureReason: import("zod").ZodNullable<import("zod").ZodString>;
|
|
13363
14493
|
verifyChecks: import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -13405,8 +14535,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
13405
14535
|
payload: import("zod").ZodObject<{
|
|
13406
14536
|
requestId: import("zod").ZodString;
|
|
13407
14537
|
phase: import("zod").ZodEnum<{
|
|
13408
|
-
starting: "starting";
|
|
13409
14538
|
complete: "complete";
|
|
14539
|
+
starting: "starting";
|
|
13410
14540
|
downloading: "downloading";
|
|
13411
14541
|
installing: "installing";
|
|
13412
14542
|
}>;
|