@otto-code/protocol 0.5.1 → 0.5.4
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-attention-notification.js +60 -12
- package/dist/agent-personalities.d.ts +36 -0
- package/dist/agent-personalities.js +104 -0
- package/dist/agent-teams.d.ts +49 -0
- package/dist/agent-teams.js +99 -0
- package/dist/agent-types.d.ts +41 -0
- package/dist/artifacts/rpc-schemas.d.ts +8 -8
- package/dist/artifacts/types.d.ts +7 -7
- package/dist/browser-automation/rpc-schemas.d.ts +3 -3
- package/dist/default-personalities.d.ts +2 -1
- package/dist/default-personalities.js +35 -11
- package/dist/generated/validation/ws-outbound.aot.js +13487 -10996
- package/dist/judge-verdict.d.ts +30 -0
- package/dist/judge-verdict.js +61 -0
- package/dist/loop/rpc-schemas.d.ts +19 -19
- package/dist/messages.d.ts +1886 -350
- package/dist/messages.js +298 -3
- package/dist/model-tiers.d.ts +34 -0
- package/dist/model-tiers.js +92 -0
- package/dist/orchestration.d.ts +152 -0
- package/dist/orchestration.js +199 -0
- package/dist/provider-manifest.d.ts +10 -0
- package/dist/provider-manifest.js +28 -0
- package/dist/schedule/rpc-schemas.d.ts +27 -26
- package/dist/schedule/rpc-schemas.js +3 -0
- package/dist/schedule/types.d.ts +9 -9
- package/dist/validation/ws-outbound-schema-metadata.d.ts +382 -93
- package/package.json +1 -1
|
@@ -319,8 +319,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
319
319
|
starred: import("zod").ZodBoolean;
|
|
320
320
|
status: import("zod").ZodEnum<{
|
|
321
321
|
error: "error";
|
|
322
|
-
generating: "generating";
|
|
323
322
|
ready: "ready";
|
|
323
|
+
generating: "generating";
|
|
324
324
|
}>;
|
|
325
325
|
createdAt: import("zod").ZodString;
|
|
326
326
|
updatedAt: import("zod").ZodString;
|
|
@@ -389,6 +389,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
389
389
|
persistence: import("zod").ZodNullable<import("zod").ZodType<import("../agent-types.js").AgentPersistenceHandle | null, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentPersistenceHandle | null, unknown>>>;
|
|
390
390
|
runtimeInfo: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentRuntimeInfo, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentRuntimeInfo, unknown>>>;
|
|
391
391
|
lastUsage: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentUsage, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentUsage, unknown>>>;
|
|
392
|
+
cumulativeTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
392
393
|
lastError: import("zod").ZodOptional<import("zod").ZodString>;
|
|
393
394
|
title: import("zod").ZodNullable<import("zod").ZodString>;
|
|
394
395
|
labels: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
@@ -523,8 +524,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
523
524
|
running: "running";
|
|
524
525
|
attention: "attention";
|
|
525
526
|
needs_input: "needs_input";
|
|
526
|
-
failed: "failed";
|
|
527
527
|
done: "done";
|
|
528
|
+
failed: "failed";
|
|
528
529
|
}>;
|
|
529
530
|
statusEnteredAt: import("zod").ZodPipe<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>, import("zod").ZodTransform<string | null, string | null | undefined>>;
|
|
530
531
|
activityAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -586,9 +587,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
586
587
|
name: import("zod").ZodString;
|
|
587
588
|
status: import("zod").ZodEnum<{
|
|
588
589
|
success: "success";
|
|
589
|
-
failure: "failure";
|
|
590
590
|
pending: "pending";
|
|
591
591
|
skipped: "skipped";
|
|
592
|
+
failure: "failure";
|
|
592
593
|
cancelled: "cancelled";
|
|
593
594
|
}>;
|
|
594
595
|
url: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -597,9 +598,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
597
598
|
}, import("zod/v4/core").$strip>>>;
|
|
598
599
|
checksStatus: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
599
600
|
success: "success";
|
|
601
|
+
pending: "pending";
|
|
600
602
|
none: "none";
|
|
601
603
|
failure: "failure";
|
|
602
|
-
pending: "pending";
|
|
603
604
|
}>>;
|
|
604
605
|
reviewDecision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
605
606
|
pending: "pending";
|
|
@@ -703,7 +704,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
703
704
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
704
705
|
name: string;
|
|
705
706
|
archivingAt: string | null;
|
|
706
|
-
status: "running" | "attention" | "needs_input" | "
|
|
707
|
+
status: "running" | "attention" | "needs_input" | "done" | "failed";
|
|
707
708
|
statusEnteredAt: string | null;
|
|
708
709
|
activityAt: string | null;
|
|
709
710
|
scripts: {
|
|
@@ -751,12 +752,12 @@ export declare const WSOutboundMessageSchema: {
|
|
|
751
752
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
752
753
|
checks?: {
|
|
753
754
|
name: string;
|
|
754
|
-
status: "success" | "
|
|
755
|
+
status: "success" | "pending" | "skipped" | "failure" | "cancelled";
|
|
755
756
|
url: string | null;
|
|
756
757
|
workflow?: string | undefined;
|
|
757
758
|
duration?: string | undefined;
|
|
758
759
|
}[] | undefined;
|
|
759
|
-
checksStatus?: "success" | "
|
|
760
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
760
761
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
761
762
|
repoOwner?: string | undefined;
|
|
762
763
|
repoName?: string | undefined;
|
|
@@ -806,7 +807,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
806
807
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
807
808
|
name: string;
|
|
808
809
|
archivingAt: string | null;
|
|
809
|
-
status: "running" | "attention" | "needs_input" | "
|
|
810
|
+
status: "running" | "attention" | "needs_input" | "done" | "failed";
|
|
810
811
|
statusEnteredAt: string | null;
|
|
811
812
|
activityAt: string | null;
|
|
812
813
|
scripts: {
|
|
@@ -855,12 +856,12 @@ export declare const WSOutboundMessageSchema: {
|
|
|
855
856
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
856
857
|
checks?: {
|
|
857
858
|
name: string;
|
|
858
|
-
status: "success" | "
|
|
859
|
+
status: "success" | "pending" | "skipped" | "failure" | "cancelled";
|
|
859
860
|
url: string | null;
|
|
860
861
|
workflow?: string | undefined;
|
|
861
862
|
duration?: string | undefined;
|
|
862
863
|
}[] | undefined;
|
|
863
|
-
checksStatus?: "success" | "
|
|
864
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
864
865
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
865
866
|
repoOwner?: string | undefined;
|
|
866
867
|
repoName?: string | undefined;
|
|
@@ -1130,6 +1131,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1130
1131
|
persistence: import("zod").ZodNullable<import("zod").ZodType<import("../agent-types.js").AgentPersistenceHandle | null, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentPersistenceHandle | null, unknown>>>;
|
|
1131
1132
|
runtimeInfo: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentRuntimeInfo, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentRuntimeInfo, unknown>>>;
|
|
1132
1133
|
lastUsage: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentUsage, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentUsage, unknown>>>;
|
|
1134
|
+
cumulativeTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1133
1135
|
lastError: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1134
1136
|
title: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1135
1137
|
labels: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
@@ -1209,6 +1211,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1209
1211
|
persistence: import("zod").ZodNullable<import("zod").ZodType<import("../agent-types.js").AgentPersistenceHandle | null, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentPersistenceHandle | null, unknown>>>;
|
|
1210
1212
|
runtimeInfo: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentRuntimeInfo, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentRuntimeInfo, unknown>>>;
|
|
1211
1213
|
lastUsage: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentUsage, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentUsage, unknown>>>;
|
|
1214
|
+
cumulativeTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1212
1215
|
lastError: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1213
1216
|
title: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1214
1217
|
labels: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
@@ -1371,6 +1374,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1371
1374
|
persistence: import("zod").ZodNullable<import("zod").ZodType<import("../agent-types.js").AgentPersistenceHandle | null, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentPersistenceHandle | null, unknown>>>;
|
|
1372
1375
|
runtimeInfo: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentRuntimeInfo, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentRuntimeInfo, unknown>>>;
|
|
1373
1376
|
lastUsage: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentUsage, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentUsage, unknown>>>;
|
|
1377
|
+
cumulativeTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1374
1378
|
lastError: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1375
1379
|
title: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1376
1380
|
labels: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
@@ -1525,8 +1529,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1525
1529
|
running: "running";
|
|
1526
1530
|
attention: "attention";
|
|
1527
1531
|
needs_input: "needs_input";
|
|
1528
|
-
failed: "failed";
|
|
1529
1532
|
done: "done";
|
|
1533
|
+
failed: "failed";
|
|
1530
1534
|
}>;
|
|
1531
1535
|
statusEnteredAt: import("zod").ZodPipe<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>, import("zod").ZodTransform<string | null, string | null | undefined>>;
|
|
1532
1536
|
activityAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -1588,9 +1592,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1588
1592
|
name: import("zod").ZodString;
|
|
1589
1593
|
status: import("zod").ZodEnum<{
|
|
1590
1594
|
success: "success";
|
|
1591
|
-
failure: "failure";
|
|
1592
1595
|
pending: "pending";
|
|
1593
1596
|
skipped: "skipped";
|
|
1597
|
+
failure: "failure";
|
|
1594
1598
|
cancelled: "cancelled";
|
|
1595
1599
|
}>;
|
|
1596
1600
|
url: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -1599,9 +1603,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1599
1603
|
}, import("zod/v4/core").$strip>>>;
|
|
1600
1604
|
checksStatus: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
1601
1605
|
success: "success";
|
|
1606
|
+
pending: "pending";
|
|
1602
1607
|
none: "none";
|
|
1603
1608
|
failure: "failure";
|
|
1604
|
-
pending: "pending";
|
|
1605
1609
|
}>>;
|
|
1606
1610
|
reviewDecision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
1607
1611
|
pending: "pending";
|
|
@@ -1705,7 +1709,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1705
1709
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
1706
1710
|
name: string;
|
|
1707
1711
|
archivingAt: string | null;
|
|
1708
|
-
status: "running" | "attention" | "needs_input" | "
|
|
1712
|
+
status: "running" | "attention" | "needs_input" | "done" | "failed";
|
|
1709
1713
|
statusEnteredAt: string | null;
|
|
1710
1714
|
activityAt: string | null;
|
|
1711
1715
|
scripts: {
|
|
@@ -1753,12 +1757,12 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1753
1757
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
1754
1758
|
checks?: {
|
|
1755
1759
|
name: string;
|
|
1756
|
-
status: "success" | "
|
|
1760
|
+
status: "success" | "pending" | "skipped" | "failure" | "cancelled";
|
|
1757
1761
|
url: string | null;
|
|
1758
1762
|
workflow?: string | undefined;
|
|
1759
1763
|
duration?: string | undefined;
|
|
1760
1764
|
}[] | undefined;
|
|
1761
|
-
checksStatus?: "success" | "
|
|
1765
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
1762
1766
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
1763
1767
|
repoOwner?: string | undefined;
|
|
1764
1768
|
repoName?: string | undefined;
|
|
@@ -1808,7 +1812,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1808
1812
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
1809
1813
|
name: string;
|
|
1810
1814
|
archivingAt: string | null;
|
|
1811
|
-
status: "running" | "attention" | "needs_input" | "
|
|
1815
|
+
status: "running" | "attention" | "needs_input" | "done" | "failed";
|
|
1812
1816
|
statusEnteredAt: string | null;
|
|
1813
1817
|
activityAt: string | null;
|
|
1814
1818
|
scripts: {
|
|
@@ -1857,12 +1861,12 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1857
1861
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
1858
1862
|
checks?: {
|
|
1859
1863
|
name: string;
|
|
1860
|
-
status: "success" | "
|
|
1864
|
+
status: "success" | "pending" | "skipped" | "failure" | "cancelled";
|
|
1861
1865
|
url: string | null;
|
|
1862
1866
|
workflow?: string | undefined;
|
|
1863
1867
|
duration?: string | undefined;
|
|
1864
1868
|
}[] | undefined;
|
|
1865
|
-
checksStatus?: "success" | "
|
|
1869
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
1866
1870
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
1867
1871
|
repoOwner?: string | undefined;
|
|
1868
1872
|
repoName?: string | undefined;
|
|
@@ -1970,8 +1974,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1970
1974
|
running: "running";
|
|
1971
1975
|
attention: "attention";
|
|
1972
1976
|
needs_input: "needs_input";
|
|
1973
|
-
failed: "failed";
|
|
1974
1977
|
done: "done";
|
|
1978
|
+
failed: "failed";
|
|
1975
1979
|
}>;
|
|
1976
1980
|
statusEnteredAt: import("zod").ZodPipe<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>, import("zod").ZodTransform<string | null, string | null | undefined>>;
|
|
1977
1981
|
activityAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -2033,9 +2037,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2033
2037
|
name: import("zod").ZodString;
|
|
2034
2038
|
status: import("zod").ZodEnum<{
|
|
2035
2039
|
success: "success";
|
|
2036
|
-
failure: "failure";
|
|
2037
2040
|
pending: "pending";
|
|
2038
2041
|
skipped: "skipped";
|
|
2042
|
+
failure: "failure";
|
|
2039
2043
|
cancelled: "cancelled";
|
|
2040
2044
|
}>;
|
|
2041
2045
|
url: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -2044,9 +2048,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2044
2048
|
}, import("zod/v4/core").$strip>>>;
|
|
2045
2049
|
checksStatus: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
2046
2050
|
success: "success";
|
|
2051
|
+
pending: "pending";
|
|
2047
2052
|
none: "none";
|
|
2048
2053
|
failure: "failure";
|
|
2049
|
-
pending: "pending";
|
|
2050
2054
|
}>>;
|
|
2051
2055
|
reviewDecision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
2052
2056
|
pending: "pending";
|
|
@@ -2150,7 +2154,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2150
2154
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
2151
2155
|
name: string;
|
|
2152
2156
|
archivingAt: string | null;
|
|
2153
|
-
status: "running" | "attention" | "needs_input" | "
|
|
2157
|
+
status: "running" | "attention" | "needs_input" | "done" | "failed";
|
|
2154
2158
|
statusEnteredAt: string | null;
|
|
2155
2159
|
activityAt: string | null;
|
|
2156
2160
|
scripts: {
|
|
@@ -2198,12 +2202,12 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2198
2202
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
2199
2203
|
checks?: {
|
|
2200
2204
|
name: string;
|
|
2201
|
-
status: "success" | "
|
|
2205
|
+
status: "success" | "pending" | "skipped" | "failure" | "cancelled";
|
|
2202
2206
|
url: string | null;
|
|
2203
2207
|
workflow?: string | undefined;
|
|
2204
2208
|
duration?: string | undefined;
|
|
2205
2209
|
}[] | undefined;
|
|
2206
|
-
checksStatus?: "success" | "
|
|
2210
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
2207
2211
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
2208
2212
|
repoOwner?: string | undefined;
|
|
2209
2213
|
repoName?: string | undefined;
|
|
@@ -2253,7 +2257,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2253
2257
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
2254
2258
|
name: string;
|
|
2255
2259
|
archivingAt: string | null;
|
|
2256
|
-
status: "running" | "attention" | "needs_input" | "
|
|
2260
|
+
status: "running" | "attention" | "needs_input" | "done" | "failed";
|
|
2257
2261
|
statusEnteredAt: string | null;
|
|
2258
2262
|
activityAt: string | null;
|
|
2259
2263
|
scripts: {
|
|
@@ -2302,12 +2306,12 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2302
2306
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
2303
2307
|
checks?: {
|
|
2304
2308
|
name: string;
|
|
2305
|
-
status: "success" | "
|
|
2309
|
+
status: "success" | "pending" | "skipped" | "failure" | "cancelled";
|
|
2306
2310
|
url: string | null;
|
|
2307
2311
|
workflow?: string | undefined;
|
|
2308
2312
|
duration?: string | undefined;
|
|
2309
2313
|
}[] | undefined;
|
|
2310
|
-
checksStatus?: "success" | "
|
|
2314
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
2311
2315
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
2312
2316
|
repoOwner?: string | undefined;
|
|
2313
2317
|
repoName?: string | undefined;
|
|
@@ -2440,6 +2444,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2440
2444
|
persistence: import("zod").ZodNullable<import("zod").ZodType<import("../agent-types.js").AgentPersistenceHandle | null, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentPersistenceHandle | null, unknown>>>;
|
|
2441
2445
|
runtimeInfo: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentRuntimeInfo, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentRuntimeInfo, unknown>>>;
|
|
2442
2446
|
lastUsage: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentUsage, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentUsage, unknown>>>;
|
|
2447
|
+
cumulativeTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2443
2448
|
lastError: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2444
2449
|
title: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2445
2450
|
labels: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
@@ -2597,6 +2602,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2597
2602
|
persistence: import("zod").ZodNullable<import("zod").ZodType<import("../agent-types.js").AgentPersistenceHandle | null, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentPersistenceHandle | null, unknown>>>;
|
|
2598
2603
|
runtimeInfo: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentRuntimeInfo, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentRuntimeInfo, unknown>>>;
|
|
2599
2604
|
lastUsage: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentUsage, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentUsage, unknown>>>;
|
|
2605
|
+
cumulativeTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2600
2606
|
lastError: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2601
2607
|
title: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2602
2608
|
labels: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
@@ -2748,6 +2754,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2748
2754
|
persistence: import("zod").ZodNullable<import("zod").ZodType<import("../agent-types.js").AgentPersistenceHandle | null, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentPersistenceHandle | null, unknown>>>;
|
|
2749
2755
|
runtimeInfo: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentRuntimeInfo, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentRuntimeInfo, unknown>>>;
|
|
2750
2756
|
lastUsage: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentUsage, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentUsage, unknown>>>;
|
|
2757
|
+
cumulativeTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2751
2758
|
lastError: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2752
2759
|
title: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2753
2760
|
labels: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
@@ -2771,6 +2778,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2771
2778
|
personalityName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2772
2779
|
personalityId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2773
2780
|
}, import("zod/v4/core").$strip>>;
|
|
2781
|
+
cancelled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2774
2782
|
}, import("zod/v4/core").$strip>;
|
|
2775
2783
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2776
2784
|
type: import("zod").ZodLiteral<"clear_agent_attention_response">;
|
|
@@ -2826,6 +2834,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2826
2834
|
persistence: import("zod").ZodNullable<import("zod").ZodType<import("../agent-types.js").AgentPersistenceHandle | null, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentPersistenceHandle | null, unknown>>>;
|
|
2827
2835
|
runtimeInfo: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentRuntimeInfo, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentRuntimeInfo, unknown>>>;
|
|
2828
2836
|
lastUsage: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentUsage, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentUsage, unknown>>>;
|
|
2837
|
+
cumulativeTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2829
2838
|
lastError: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2830
2839
|
title: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2831
2840
|
labels: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
@@ -2878,8 +2887,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2878
2887
|
running: "running";
|
|
2879
2888
|
attention: "attention";
|
|
2880
2889
|
needs_input: "needs_input";
|
|
2881
|
-
failed: "failed";
|
|
2882
2890
|
done: "done";
|
|
2891
|
+
failed: "failed";
|
|
2883
2892
|
}>;
|
|
2884
2893
|
statusEnteredAt: import("zod").ZodPipe<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>, import("zod").ZodTransform<string | null, string | null | undefined>>;
|
|
2885
2894
|
activityAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -2941,9 +2950,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2941
2950
|
name: import("zod").ZodString;
|
|
2942
2951
|
status: import("zod").ZodEnum<{
|
|
2943
2952
|
success: "success";
|
|
2944
|
-
failure: "failure";
|
|
2945
2953
|
pending: "pending";
|
|
2946
2954
|
skipped: "skipped";
|
|
2955
|
+
failure: "failure";
|
|
2947
2956
|
cancelled: "cancelled";
|
|
2948
2957
|
}>;
|
|
2949
2958
|
url: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -2952,9 +2961,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2952
2961
|
}, import("zod/v4/core").$strip>>>;
|
|
2953
2962
|
checksStatus: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
2954
2963
|
success: "success";
|
|
2964
|
+
pending: "pending";
|
|
2955
2965
|
none: "none";
|
|
2956
2966
|
failure: "failure";
|
|
2957
|
-
pending: "pending";
|
|
2958
2967
|
}>>;
|
|
2959
2968
|
reviewDecision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
2960
2969
|
pending: "pending";
|
|
@@ -3058,7 +3067,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3058
3067
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
3059
3068
|
name: string;
|
|
3060
3069
|
archivingAt: string | null;
|
|
3061
|
-
status: "running" | "attention" | "needs_input" | "
|
|
3070
|
+
status: "running" | "attention" | "needs_input" | "done" | "failed";
|
|
3062
3071
|
statusEnteredAt: string | null;
|
|
3063
3072
|
activityAt: string | null;
|
|
3064
3073
|
scripts: {
|
|
@@ -3106,12 +3115,12 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3106
3115
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
3107
3116
|
checks?: {
|
|
3108
3117
|
name: string;
|
|
3109
|
-
status: "success" | "
|
|
3118
|
+
status: "success" | "pending" | "skipped" | "failure" | "cancelled";
|
|
3110
3119
|
url: string | null;
|
|
3111
3120
|
workflow?: string | undefined;
|
|
3112
3121
|
duration?: string | undefined;
|
|
3113
3122
|
}[] | undefined;
|
|
3114
|
-
checksStatus?: "success" | "
|
|
3123
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
3115
3124
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
3116
3125
|
repoOwner?: string | undefined;
|
|
3117
3126
|
repoName?: string | undefined;
|
|
@@ -3161,7 +3170,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3161
3170
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
3162
3171
|
name: string;
|
|
3163
3172
|
archivingAt: string | null;
|
|
3164
|
-
status: "running" | "attention" | "needs_input" | "
|
|
3173
|
+
status: "running" | "attention" | "needs_input" | "done" | "failed";
|
|
3165
3174
|
statusEnteredAt: string | null;
|
|
3166
3175
|
activityAt: string | null;
|
|
3167
3176
|
scripts: {
|
|
@@ -3210,12 +3219,12 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3210
3219
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
3211
3220
|
checks?: {
|
|
3212
3221
|
name: string;
|
|
3213
|
-
status: "success" | "
|
|
3222
|
+
status: "success" | "pending" | "skipped" | "failure" | "cancelled";
|
|
3214
3223
|
url: string | null;
|
|
3215
3224
|
workflow?: string | undefined;
|
|
3216
3225
|
duration?: string | undefined;
|
|
3217
3226
|
}[] | undefined;
|
|
3218
|
-
checksStatus?: "success" | "
|
|
3227
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
3219
3228
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
3220
3229
|
repoOwner?: string | undefined;
|
|
3221
3230
|
repoName?: string | undefined;
|
|
@@ -3438,6 +3447,24 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3438
3447
|
}, import("zod/v4/core").$loose>>;
|
|
3439
3448
|
}, import("zod/v4/core").$loose>>>;
|
|
3440
3449
|
}, import("zod/v4/core").$loose>>;
|
|
3450
|
+
agentTeams: import("zod").ZodDefault<import("zod").ZodObject<{
|
|
3451
|
+
teams: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
3452
|
+
id: import("zod").ZodString;
|
|
3453
|
+
name: import("zod").ZodString;
|
|
3454
|
+
avatar: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
3455
|
+
color: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3456
|
+
imageId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3457
|
+
}, import("zod/v4/core").$loose>>;
|
|
3458
|
+
teamPrompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3459
|
+
memberIds: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
3460
|
+
}, import("zod/v4/core").$loose>>>;
|
|
3461
|
+
activeTeamId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3462
|
+
}, import("zod/v4/core").$loose>>;
|
|
3463
|
+
modelTierOverrides: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
3464
|
+
provider: import("zod").ZodString;
|
|
3465
|
+
modelId: import("zod").ZodString;
|
|
3466
|
+
tier: import("zod").ZodType<import("../agent-types.js").ModelTier, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").ModelTier, unknown>>;
|
|
3467
|
+
}, import("zod/v4/core").$loose>>>;
|
|
3441
3468
|
}, import("zod/v4/core").$loose>;
|
|
3442
3469
|
}, import("zod/v4/core").$loose>;
|
|
3443
3470
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -3544,6 +3571,24 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3544
3571
|
}, import("zod/v4/core").$loose>>;
|
|
3545
3572
|
}, import("zod/v4/core").$loose>>>;
|
|
3546
3573
|
}, import("zod/v4/core").$loose>>;
|
|
3574
|
+
agentTeams: import("zod").ZodDefault<import("zod").ZodObject<{
|
|
3575
|
+
teams: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
3576
|
+
id: import("zod").ZodString;
|
|
3577
|
+
name: import("zod").ZodString;
|
|
3578
|
+
avatar: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
3579
|
+
color: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3580
|
+
imageId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3581
|
+
}, import("zod/v4/core").$loose>>;
|
|
3582
|
+
teamPrompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3583
|
+
memberIds: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
3584
|
+
}, import("zod/v4/core").$loose>>>;
|
|
3585
|
+
activeTeamId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3586
|
+
}, import("zod/v4/core").$loose>>;
|
|
3587
|
+
modelTierOverrides: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
3588
|
+
provider: import("zod").ZodString;
|
|
3589
|
+
modelId: import("zod").ZodString;
|
|
3590
|
+
tier: import("zod").ZodType<import("../agent-types.js").ModelTier, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").ModelTier, unknown>>;
|
|
3591
|
+
}, import("zod/v4/core").$loose>>>;
|
|
3547
3592
|
}, import("zod/v4/core").$loose>;
|
|
3548
3593
|
}, import("zod/v4/core").$loose>;
|
|
3549
3594
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -3765,6 +3810,46 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3765
3810
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3766
3811
|
notice: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodType<import("../agent-types.js").AgentProviderNotice, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentProviderNotice, unknown>>>>;
|
|
3767
3812
|
}, import("zod/v4/core").$strip>;
|
|
3813
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3814
|
+
type: import("zod").ZodLiteral<"agent.background_task.stop.response">;
|
|
3815
|
+
payload: import("zod").ZodObject<{
|
|
3816
|
+
requestId: import("zod").ZodString;
|
|
3817
|
+
agentId: import("zod").ZodString;
|
|
3818
|
+
accepted: import("zod").ZodBoolean;
|
|
3819
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3820
|
+
notice: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodType<import("../agent-types.js").AgentProviderNotice, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentProviderNotice, unknown>>>>;
|
|
3821
|
+
}, import("zod/v4/core").$strip>;
|
|
3822
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3823
|
+
type: import("zod").ZodLiteral<"agent.background_task.clear.response">;
|
|
3824
|
+
payload: import("zod").ZodObject<{
|
|
3825
|
+
requestId: import("zod").ZodString;
|
|
3826
|
+
agentId: import("zod").ZodString;
|
|
3827
|
+
accepted: import("zod").ZodBoolean;
|
|
3828
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3829
|
+
notice: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodType<import("../agent-types.js").AgentProviderNotice, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentProviderNotice, unknown>>>>;
|
|
3830
|
+
}, import("zod/v4/core").$strip>;
|
|
3831
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3832
|
+
type: import("zod").ZodLiteral<"background_shell_tasks_changed">;
|
|
3833
|
+
payload: import("zod").ZodObject<{
|
|
3834
|
+
parentAgentId: import("zod").ZodString;
|
|
3835
|
+
tasks: import("zod").ZodArray<import("zod").ZodObject<{
|
|
3836
|
+
id: import("zod").ZodString;
|
|
3837
|
+
parentAgentId: import("zod").ZodString;
|
|
3838
|
+
provider: import("zod").ZodString;
|
|
3839
|
+
command: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3840
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3841
|
+
status: import("zod").ZodEnum<{
|
|
3842
|
+
error: "error";
|
|
3843
|
+
idle: "idle";
|
|
3844
|
+
running: "running";
|
|
3845
|
+
closed: "closed";
|
|
3846
|
+
}>;
|
|
3847
|
+
requiresAttention: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
3848
|
+
createdAt: import("zod").ZodString;
|
|
3849
|
+
updatedAt: import("zod").ZodString;
|
|
3850
|
+
archivedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3851
|
+
}, import("zod/v4/core").$strip>>;
|
|
3852
|
+
}, import("zod/v4/core").$strip>;
|
|
3768
3853
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3769
3854
|
type: import("zod").ZodLiteral<"agent.personality.set.response">;
|
|
3770
3855
|
payload: import("zod").ZodObject<{
|
|
@@ -3877,6 +3962,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3877
3962
|
persistence: import("zod").ZodNullable<import("zod").ZodType<import("../agent-types.js").AgentPersistenceHandle | null, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentPersistenceHandle | null, unknown>>>;
|
|
3878
3963
|
runtimeInfo: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentRuntimeInfo, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentRuntimeInfo, unknown>>>;
|
|
3879
3964
|
lastUsage: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentUsage, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentUsage, unknown>>>;
|
|
3965
|
+
cumulativeTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3880
3966
|
lastError: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3881
3967
|
title: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3882
3968
|
labels: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>;
|
|
@@ -4398,6 +4484,134 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4398
4484
|
text: import("zod").ZodString;
|
|
4399
4485
|
}, import("zod/v4/core").$strip>>;
|
|
4400
4486
|
}, import("zod/v4/core").$strip>;
|
|
4487
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4488
|
+
type: import("zod").ZodLiteral<"runs.get_snapshot.response">;
|
|
4489
|
+
payload: import("zod").ZodObject<{
|
|
4490
|
+
runs: import("zod").ZodArray<import("zod").ZodObject<{
|
|
4491
|
+
id: import("zod").ZodString;
|
|
4492
|
+
title: import("zod").ZodString;
|
|
4493
|
+
status: import("zod").ZodString;
|
|
4494
|
+
requirements: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
4495
|
+
autopilot: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4496
|
+
phases: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4497
|
+
id: import("zod").ZodString;
|
|
4498
|
+
type: import("zod").ZodString;
|
|
4499
|
+
title: import("zod").ZodString;
|
|
4500
|
+
task: import("zod").ZodString;
|
|
4501
|
+
status: import("zod").ZodString;
|
|
4502
|
+
assigneeRole: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4503
|
+
dependsOn: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
4504
|
+
fanOut: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4505
|
+
keepBest: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4506
|
+
candidates: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4507
|
+
agentId: import("zod").ZodString;
|
|
4508
|
+
personalityId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4509
|
+
verdict: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
4510
|
+
verdict: import("zod").ZodString;
|
|
4511
|
+
score: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4512
|
+
criteria: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4513
|
+
name: import("zod").ZodString;
|
|
4514
|
+
met: import("zod").ZodBoolean;
|
|
4515
|
+
evidence: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4516
|
+
}, import("zod/v4/core").$loose>>>;
|
|
4517
|
+
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4518
|
+
}, import("zod/v4/core").$loose>>;
|
|
4519
|
+
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4520
|
+
}, import("zod/v4/core").$loose>>>;
|
|
4521
|
+
notes: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4522
|
+
startedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4523
|
+
completedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4524
|
+
}, import("zod/v4/core").$loose>>>;
|
|
4525
|
+
conductorAgentId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4526
|
+
cwd: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4527
|
+
workspaceId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4528
|
+
teamId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4529
|
+
teamName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4530
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4531
|
+
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4532
|
+
summaryStatus: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4533
|
+
agentCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4534
|
+
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4535
|
+
updatedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4536
|
+
}, import("zod/v4/core").$loose>>;
|
|
4537
|
+
requestId: import("zod").ZodString;
|
|
4538
|
+
}, import("zod/v4/core").$strip>;
|
|
4539
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4540
|
+
type: import("zod").ZodLiteral<"runs.updated.notification">;
|
|
4541
|
+
payload: import("zod").ZodObject<{
|
|
4542
|
+
run: import("zod").ZodObject<{
|
|
4543
|
+
id: import("zod").ZodString;
|
|
4544
|
+
title: import("zod").ZodString;
|
|
4545
|
+
status: import("zod").ZodString;
|
|
4546
|
+
requirements: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
4547
|
+
autopilot: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4548
|
+
phases: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4549
|
+
id: import("zod").ZodString;
|
|
4550
|
+
type: import("zod").ZodString;
|
|
4551
|
+
title: import("zod").ZodString;
|
|
4552
|
+
task: import("zod").ZodString;
|
|
4553
|
+
status: import("zod").ZodString;
|
|
4554
|
+
assigneeRole: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4555
|
+
dependsOn: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
4556
|
+
fanOut: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4557
|
+
keepBest: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4558
|
+
candidates: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4559
|
+
agentId: import("zod").ZodString;
|
|
4560
|
+
personalityId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4561
|
+
verdict: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
4562
|
+
verdict: import("zod").ZodString;
|
|
4563
|
+
score: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4564
|
+
criteria: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
4565
|
+
name: import("zod").ZodString;
|
|
4566
|
+
met: import("zod").ZodBoolean;
|
|
4567
|
+
evidence: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4568
|
+
}, import("zod/v4/core").$loose>>>;
|
|
4569
|
+
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4570
|
+
}, import("zod/v4/core").$loose>>;
|
|
4571
|
+
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4572
|
+
}, import("zod/v4/core").$loose>>>;
|
|
4573
|
+
notes: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4574
|
+
startedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4575
|
+
completedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4576
|
+
}, import("zod/v4/core").$loose>>>;
|
|
4577
|
+
conductorAgentId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4578
|
+
cwd: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4579
|
+
workspaceId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4580
|
+
teamId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4581
|
+
teamName: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4582
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4583
|
+
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4584
|
+
summaryStatus: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4585
|
+
agentCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4586
|
+
createdAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4587
|
+
updatedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4588
|
+
}, import("zod/v4/core").$loose>;
|
|
4589
|
+
}, import("zod/v4/core").$strip>;
|
|
4590
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4591
|
+
type: import("zod").ZodLiteral<"runs.gate_respond.response">;
|
|
4592
|
+
payload: import("zod").ZodObject<{
|
|
4593
|
+
runId: import("zod").ZodString;
|
|
4594
|
+
accepted: import("zod").ZodBoolean;
|
|
4595
|
+
requestId: import("zod").ZodString;
|
|
4596
|
+
}, import("zod/v4/core").$strip>;
|
|
4597
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4598
|
+
type: import("zod").ZodLiteral<"runs.cancel.response">;
|
|
4599
|
+
payload: import("zod").ZodObject<{
|
|
4600
|
+
runId: import("zod").ZodString;
|
|
4601
|
+
canceled: import("zod").ZodBoolean;
|
|
4602
|
+
requestId: import("zod").ZodString;
|
|
4603
|
+
}, import("zod/v4/core").$strip>;
|
|
4604
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4605
|
+
type: import("zod").ZodLiteral<"runs.clear.response">;
|
|
4606
|
+
payload: import("zod").ZodObject<{
|
|
4607
|
+
runIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
4608
|
+
requestId: import("zod").ZodString;
|
|
4609
|
+
}, import("zod/v4/core").$strip>;
|
|
4610
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4611
|
+
type: import("zod").ZodLiteral<"runs.cleared.notification">;
|
|
4612
|
+
payload: import("zod").ZodObject<{
|
|
4613
|
+
runIds: import("zod").ZodArray<import("zod").ZodString>;
|
|
4614
|
+
}, import("zod/v4/core").$strip>;
|
|
4401
4615
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4402
4616
|
type: import("zod").ZodLiteral<"checkout_merge_response">;
|
|
4403
4617
|
payload: import("zod").ZodObject<{
|
|
@@ -5018,8 +5232,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5018
5232
|
running: "running";
|
|
5019
5233
|
attention: "attention";
|
|
5020
5234
|
needs_input: "needs_input";
|
|
5021
|
-
failed: "failed";
|
|
5022
5235
|
done: "done";
|
|
5236
|
+
failed: "failed";
|
|
5023
5237
|
}>;
|
|
5024
5238
|
statusEnteredAt: import("zod").ZodPipe<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>, import("zod").ZodTransform<string | null, string | null | undefined>>;
|
|
5025
5239
|
activityAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -5081,9 +5295,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5081
5295
|
name: import("zod").ZodString;
|
|
5082
5296
|
status: import("zod").ZodEnum<{
|
|
5083
5297
|
success: "success";
|
|
5084
|
-
failure: "failure";
|
|
5085
5298
|
pending: "pending";
|
|
5086
5299
|
skipped: "skipped";
|
|
5300
|
+
failure: "failure";
|
|
5087
5301
|
cancelled: "cancelled";
|
|
5088
5302
|
}>;
|
|
5089
5303
|
url: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -5092,9 +5306,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5092
5306
|
}, import("zod/v4/core").$strip>>>;
|
|
5093
5307
|
checksStatus: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
5094
5308
|
success: "success";
|
|
5309
|
+
pending: "pending";
|
|
5095
5310
|
none: "none";
|
|
5096
5311
|
failure: "failure";
|
|
5097
|
-
pending: "pending";
|
|
5098
5312
|
}>>;
|
|
5099
5313
|
reviewDecision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
5100
5314
|
pending: "pending";
|
|
@@ -5198,7 +5412,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5198
5412
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
5199
5413
|
name: string;
|
|
5200
5414
|
archivingAt: string | null;
|
|
5201
|
-
status: "running" | "attention" | "needs_input" | "
|
|
5415
|
+
status: "running" | "attention" | "needs_input" | "done" | "failed";
|
|
5202
5416
|
statusEnteredAt: string | null;
|
|
5203
5417
|
activityAt: string | null;
|
|
5204
5418
|
scripts: {
|
|
@@ -5246,12 +5460,12 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5246
5460
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
5247
5461
|
checks?: {
|
|
5248
5462
|
name: string;
|
|
5249
|
-
status: "success" | "
|
|
5463
|
+
status: "success" | "pending" | "skipped" | "failure" | "cancelled";
|
|
5250
5464
|
url: string | null;
|
|
5251
5465
|
workflow?: string | undefined;
|
|
5252
5466
|
duration?: string | undefined;
|
|
5253
5467
|
}[] | undefined;
|
|
5254
|
-
checksStatus?: "success" | "
|
|
5468
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
5255
5469
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
5256
5470
|
repoOwner?: string | undefined;
|
|
5257
5471
|
repoName?: string | undefined;
|
|
@@ -5301,7 +5515,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5301
5515
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
5302
5516
|
name: string;
|
|
5303
5517
|
archivingAt: string | null;
|
|
5304
|
-
status: "running" | "attention" | "needs_input" | "
|
|
5518
|
+
status: "running" | "attention" | "needs_input" | "done" | "failed";
|
|
5305
5519
|
statusEnteredAt: string | null;
|
|
5306
5520
|
activityAt: string | null;
|
|
5307
5521
|
scripts: {
|
|
@@ -5350,12 +5564,12 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5350
5564
|
mergeable?: "UNKNOWN" | "MERGEABLE" | "CONFLICTING" | undefined;
|
|
5351
5565
|
checks?: {
|
|
5352
5566
|
name: string;
|
|
5353
|
-
status: "success" | "
|
|
5567
|
+
status: "success" | "pending" | "skipped" | "failure" | "cancelled";
|
|
5354
5568
|
url: string | null;
|
|
5355
5569
|
workflow?: string | undefined;
|
|
5356
5570
|
duration?: string | undefined;
|
|
5357
5571
|
}[] | undefined;
|
|
5358
|
-
checksStatus?: "success" | "
|
|
5572
|
+
checksStatus?: "success" | "pending" | "none" | "failure" | undefined;
|
|
5359
5573
|
reviewDecision?: "pending" | "approved" | "changes_requested" | null | undefined;
|
|
5360
5574
|
repoOwner?: string | undefined;
|
|
5361
5575
|
repoName?: string | undefined;
|
|
@@ -5827,6 +6041,81 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5827
6041
|
error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5828
6042
|
}, import("zod/v4/core").$strip>>;
|
|
5829
6043
|
}, import("zod/v4/core").$strip>;
|
|
6044
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6045
|
+
type: import("zod").ZodLiteral<"stats.activity.get.response">;
|
|
6046
|
+
payload: import("zod").ZodObject<{
|
|
6047
|
+
requestId: import("zod").ZodString;
|
|
6048
|
+
today: import("zod").ZodObject<{
|
|
6049
|
+
messagesSent: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6050
|
+
messagesReceived: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6051
|
+
tokensSent: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6052
|
+
tokensReceived: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6053
|
+
agentsCreated: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6054
|
+
runsOrchestrated: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6055
|
+
subagentsInvoked: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6056
|
+
backgroundTasksInvoked: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6057
|
+
thoughts: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6058
|
+
toolsCalled: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6059
|
+
artifactsCreated: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6060
|
+
schedulesExecuted: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6061
|
+
}, import("zod/v4/core").$strip>;
|
|
6062
|
+
yesterday: import("zod").ZodObject<{
|
|
6063
|
+
messagesSent: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6064
|
+
messagesReceived: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6065
|
+
tokensSent: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6066
|
+
tokensReceived: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6067
|
+
agentsCreated: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6068
|
+
runsOrchestrated: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6069
|
+
subagentsInvoked: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6070
|
+
backgroundTasksInvoked: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6071
|
+
thoughts: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6072
|
+
toolsCalled: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6073
|
+
artifactsCreated: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6074
|
+
schedulesExecuted: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6075
|
+
}, import("zod/v4/core").$strip>;
|
|
6076
|
+
last7Days: import("zod").ZodObject<{
|
|
6077
|
+
messagesSent: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6078
|
+
messagesReceived: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6079
|
+
tokensSent: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6080
|
+
tokensReceived: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6081
|
+
agentsCreated: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6082
|
+
runsOrchestrated: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6083
|
+
subagentsInvoked: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6084
|
+
backgroundTasksInvoked: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6085
|
+
thoughts: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6086
|
+
toolsCalled: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6087
|
+
artifactsCreated: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6088
|
+
schedulesExecuted: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6089
|
+
}, import("zod/v4/core").$strip>;
|
|
6090
|
+
last30Days: import("zod").ZodObject<{
|
|
6091
|
+
messagesSent: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6092
|
+
messagesReceived: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6093
|
+
tokensSent: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6094
|
+
tokensReceived: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6095
|
+
agentsCreated: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6096
|
+
runsOrchestrated: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6097
|
+
subagentsInvoked: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6098
|
+
backgroundTasksInvoked: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6099
|
+
thoughts: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6100
|
+
toolsCalled: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6101
|
+
artifactsCreated: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6102
|
+
schedulesExecuted: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6103
|
+
}, import("zod/v4/core").$strip>;
|
|
6104
|
+
allTime: import("zod").ZodObject<{
|
|
6105
|
+
messagesSent: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6106
|
+
messagesReceived: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6107
|
+
tokensSent: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6108
|
+
tokensReceived: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6109
|
+
agentsCreated: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6110
|
+
runsOrchestrated: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6111
|
+
subagentsInvoked: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6112
|
+
backgroundTasksInvoked: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6113
|
+
thoughts: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6114
|
+
toolsCalled: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6115
|
+
artifactsCreated: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6116
|
+
schedulesExecuted: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6117
|
+
}, import("zod/v4/core").$strip>;
|
|
6118
|
+
}, import("zod/v4/core").$strip>;
|
|
5830
6119
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5831
6120
|
type: import("zod").ZodLiteral<"agent.context.get_usage.response">;
|
|
5832
6121
|
payload: import("zod").ZodObject<{
|
|
@@ -6095,13 +6384,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6095
6384
|
payload: import("zod").ZodObject<{
|
|
6096
6385
|
requestId: import("zod").ZodString;
|
|
6097
6386
|
schedule: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
6387
|
+
prompt: import("zod").ZodString;
|
|
6098
6388
|
name: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6389
|
+
id: import("zod").ZodString;
|
|
6099
6390
|
status: import("zod").ZodEnum<{
|
|
6391
|
+
paused: "paused";
|
|
6100
6392
|
completed: "completed";
|
|
6101
6393
|
active: "active";
|
|
6102
|
-
paused: "paused";
|
|
6103
6394
|
}>;
|
|
6104
|
-
id: import("zod").ZodString;
|
|
6105
6395
|
createdAt: import("zod").ZodString;
|
|
6106
6396
|
updatedAt: import("zod").ZodString;
|
|
6107
6397
|
cadence: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
@@ -6143,12 +6433,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6143
6433
|
mcpServers: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
6144
6434
|
}, import("zod/v4/core").$strip>;
|
|
6145
6435
|
}, import("zod/v4/core").$strip>], "type">;
|
|
6146
|
-
prompt: import("zod").ZodString;
|
|
6147
6436
|
nextRunAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6148
6437
|
lastRunAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6149
6438
|
lastRunStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
6150
|
-
succeeded: "succeeded";
|
|
6151
6439
|
failed: "failed";
|
|
6440
|
+
succeeded: "succeeded";
|
|
6152
6441
|
}>>>;
|
|
6153
6442
|
lastRunError: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6154
6443
|
pausedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -6162,13 +6451,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6162
6451
|
payload: import("zod").ZodObject<{
|
|
6163
6452
|
requestId: import("zod").ZodString;
|
|
6164
6453
|
schedules: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6454
|
+
prompt: import("zod").ZodString;
|
|
6165
6455
|
name: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6456
|
+
id: import("zod").ZodString;
|
|
6166
6457
|
status: import("zod").ZodEnum<{
|
|
6458
|
+
paused: "paused";
|
|
6167
6459
|
completed: "completed";
|
|
6168
6460
|
active: "active";
|
|
6169
|
-
paused: "paused";
|
|
6170
6461
|
}>;
|
|
6171
|
-
id: import("zod").ZodString;
|
|
6172
6462
|
createdAt: import("zod").ZodString;
|
|
6173
6463
|
updatedAt: import("zod").ZodString;
|
|
6174
6464
|
cadence: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
@@ -6210,12 +6500,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6210
6500
|
mcpServers: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
6211
6501
|
}, import("zod/v4/core").$strip>;
|
|
6212
6502
|
}, import("zod/v4/core").$strip>], "type">;
|
|
6213
|
-
prompt: import("zod").ZodString;
|
|
6214
6503
|
nextRunAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6215
6504
|
lastRunAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6216
6505
|
lastRunStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
6217
|
-
succeeded: "succeeded";
|
|
6218
6506
|
failed: "failed";
|
|
6507
|
+
succeeded: "succeeded";
|
|
6219
6508
|
}>>>;
|
|
6220
6509
|
lastRunError: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6221
6510
|
pausedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -6272,17 +6561,17 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6272
6561
|
}, import("zod/v4/core").$strip>;
|
|
6273
6562
|
}, import("zod/v4/core").$strip>], "type">;
|
|
6274
6563
|
status: import("zod").ZodEnum<{
|
|
6564
|
+
paused: "paused";
|
|
6275
6565
|
completed: "completed";
|
|
6276
6566
|
active: "active";
|
|
6277
|
-
paused: "paused";
|
|
6278
6567
|
}>;
|
|
6279
6568
|
createdAt: import("zod").ZodString;
|
|
6280
6569
|
updatedAt: import("zod").ZodString;
|
|
6281
6570
|
nextRunAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6282
6571
|
lastRunAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6283
6572
|
lastRunStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
6284
|
-
succeeded: "succeeded";
|
|
6285
6573
|
failed: "failed";
|
|
6574
|
+
succeeded: "succeeded";
|
|
6286
6575
|
}>>>;
|
|
6287
6576
|
lastRunError: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6288
6577
|
pausedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -6295,8 +6584,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6295
6584
|
endedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6296
6585
|
status: import("zod").ZodEnum<{
|
|
6297
6586
|
running: "running";
|
|
6298
|
-
succeeded: "succeeded";
|
|
6299
6587
|
failed: "failed";
|
|
6588
|
+
succeeded: "succeeded";
|
|
6300
6589
|
}>;
|
|
6301
6590
|
agentId: import("zod").ZodNullable<import("zod").ZodGUID>;
|
|
6302
6591
|
workspaceId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -6317,8 +6606,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6317
6606
|
endedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6318
6607
|
status: import("zod").ZodEnum<{
|
|
6319
6608
|
running: "running";
|
|
6320
|
-
succeeded: "succeeded";
|
|
6321
6609
|
failed: "failed";
|
|
6610
|
+
succeeded: "succeeded";
|
|
6322
6611
|
}>;
|
|
6323
6612
|
agentId: import("zod").ZodNullable<import("zod").ZodGUID>;
|
|
6324
6613
|
workspaceId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -6332,13 +6621,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6332
6621
|
payload: import("zod").ZodObject<{
|
|
6333
6622
|
requestId: import("zod").ZodString;
|
|
6334
6623
|
schedule: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
6624
|
+
prompt: import("zod").ZodString;
|
|
6335
6625
|
name: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6626
|
+
id: import("zod").ZodString;
|
|
6336
6627
|
status: import("zod").ZodEnum<{
|
|
6628
|
+
paused: "paused";
|
|
6337
6629
|
completed: "completed";
|
|
6338
6630
|
active: "active";
|
|
6339
|
-
paused: "paused";
|
|
6340
6631
|
}>;
|
|
6341
|
-
id: import("zod").ZodString;
|
|
6342
6632
|
createdAt: import("zod").ZodString;
|
|
6343
6633
|
updatedAt: import("zod").ZodString;
|
|
6344
6634
|
cadence: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
@@ -6380,12 +6670,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6380
6670
|
mcpServers: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
6381
6671
|
}, import("zod/v4/core").$strip>;
|
|
6382
6672
|
}, import("zod/v4/core").$strip>], "type">;
|
|
6383
|
-
prompt: import("zod").ZodString;
|
|
6384
6673
|
nextRunAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6385
6674
|
lastRunAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6386
6675
|
lastRunStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
6387
|
-
succeeded: "succeeded";
|
|
6388
6676
|
failed: "failed";
|
|
6677
|
+
succeeded: "succeeded";
|
|
6389
6678
|
}>>>;
|
|
6390
6679
|
lastRunError: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6391
6680
|
pausedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -6399,13 +6688,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6399
6688
|
payload: import("zod").ZodObject<{
|
|
6400
6689
|
requestId: import("zod").ZodString;
|
|
6401
6690
|
schedule: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
6691
|
+
prompt: import("zod").ZodString;
|
|
6402
6692
|
name: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6693
|
+
id: import("zod").ZodString;
|
|
6403
6694
|
status: import("zod").ZodEnum<{
|
|
6695
|
+
paused: "paused";
|
|
6404
6696
|
completed: "completed";
|
|
6405
6697
|
active: "active";
|
|
6406
|
-
paused: "paused";
|
|
6407
6698
|
}>;
|
|
6408
|
-
id: import("zod").ZodString;
|
|
6409
6699
|
createdAt: import("zod").ZodString;
|
|
6410
6700
|
updatedAt: import("zod").ZodString;
|
|
6411
6701
|
cadence: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
@@ -6447,12 +6737,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6447
6737
|
mcpServers: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
6448
6738
|
}, import("zod/v4/core").$strip>;
|
|
6449
6739
|
}, import("zod/v4/core").$strip>], "type">;
|
|
6450
|
-
prompt: import("zod").ZodString;
|
|
6451
6740
|
nextRunAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6452
6741
|
lastRunAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6453
6742
|
lastRunStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
6454
|
-
succeeded: "succeeded";
|
|
6455
6743
|
failed: "failed";
|
|
6744
|
+
succeeded: "succeeded";
|
|
6456
6745
|
}>>>;
|
|
6457
6746
|
lastRunError: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6458
6747
|
pausedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -6516,17 +6805,17 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6516
6805
|
}, import("zod/v4/core").$strip>;
|
|
6517
6806
|
}, import("zod/v4/core").$strip>], "type">;
|
|
6518
6807
|
status: import("zod").ZodEnum<{
|
|
6808
|
+
paused: "paused";
|
|
6519
6809
|
completed: "completed";
|
|
6520
6810
|
active: "active";
|
|
6521
|
-
paused: "paused";
|
|
6522
6811
|
}>;
|
|
6523
6812
|
createdAt: import("zod").ZodString;
|
|
6524
6813
|
updatedAt: import("zod").ZodString;
|
|
6525
6814
|
nextRunAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6526
6815
|
lastRunAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6527
6816
|
lastRunStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
6528
|
-
succeeded: "succeeded";
|
|
6529
6817
|
failed: "failed";
|
|
6818
|
+
succeeded: "succeeded";
|
|
6530
6819
|
}>>>;
|
|
6531
6820
|
lastRunError: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6532
6821
|
pausedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -6539,8 +6828,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6539
6828
|
endedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6540
6829
|
status: import("zod").ZodEnum<{
|
|
6541
6830
|
running: "running";
|
|
6542
|
-
succeeded: "succeeded";
|
|
6543
6831
|
failed: "failed";
|
|
6832
|
+
succeeded: "succeeded";
|
|
6544
6833
|
}>;
|
|
6545
6834
|
agentId: import("zod").ZodNullable<import("zod").ZodGUID>;
|
|
6546
6835
|
workspaceId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -6598,17 +6887,17 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6598
6887
|
}, import("zod/v4/core").$strip>;
|
|
6599
6888
|
}, import("zod/v4/core").$strip>], "type">;
|
|
6600
6889
|
status: import("zod").ZodEnum<{
|
|
6890
|
+
paused: "paused";
|
|
6601
6891
|
completed: "completed";
|
|
6602
6892
|
active: "active";
|
|
6603
|
-
paused: "paused";
|
|
6604
6893
|
}>;
|
|
6605
6894
|
createdAt: import("zod").ZodString;
|
|
6606
6895
|
updatedAt: import("zod").ZodString;
|
|
6607
6896
|
nextRunAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6608
6897
|
lastRunAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6609
6898
|
lastRunStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
6610
|
-
succeeded: "succeeded";
|
|
6611
6899
|
failed: "failed";
|
|
6900
|
+
succeeded: "succeeded";
|
|
6612
6901
|
}>>>;
|
|
6613
6902
|
lastRunError: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6614
6903
|
pausedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -6621,8 +6910,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6621
6910
|
endedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6622
6911
|
status: import("zod").ZodEnum<{
|
|
6623
6912
|
running: "running";
|
|
6624
|
-
succeeded: "succeeded";
|
|
6625
6913
|
failed: "failed";
|
|
6914
|
+
succeeded: "succeeded";
|
|
6626
6915
|
}>;
|
|
6627
6916
|
agentId: import("zod").ZodNullable<import("zod").ZodGUID>;
|
|
6628
6917
|
workspaceId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -6657,8 +6946,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6657
6946
|
maxTimeMs: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
6658
6947
|
status: import("zod").ZodEnum<{
|
|
6659
6948
|
running: "running";
|
|
6660
|
-
succeeded: "succeeded";
|
|
6661
6949
|
failed: "failed";
|
|
6950
|
+
succeeded: "succeeded";
|
|
6662
6951
|
stopped: "stopped";
|
|
6663
6952
|
}>;
|
|
6664
6953
|
createdAt: import("zod").ZodString;
|
|
@@ -6674,14 +6963,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6674
6963
|
verifierAgentId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6675
6964
|
status: import("zod").ZodEnum<{
|
|
6676
6965
|
running: "running";
|
|
6677
|
-
succeeded: "succeeded";
|
|
6678
6966
|
failed: "failed";
|
|
6967
|
+
succeeded: "succeeded";
|
|
6679
6968
|
stopped: "stopped";
|
|
6680
6969
|
}>;
|
|
6681
6970
|
workerOutcome: import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
6682
6971
|
failed: "failed";
|
|
6683
|
-
completed: "completed";
|
|
6684
6972
|
canceled: "canceled";
|
|
6973
|
+
completed: "completed";
|
|
6685
6974
|
}>>;
|
|
6686
6975
|
failureReason: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6687
6976
|
verifyChecks: import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -6733,8 +7022,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6733
7022
|
name: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6734
7023
|
status: import("zod").ZodEnum<{
|
|
6735
7024
|
running: "running";
|
|
6736
|
-
succeeded: "succeeded";
|
|
6737
7025
|
failed: "failed";
|
|
7026
|
+
succeeded: "succeeded";
|
|
6738
7027
|
stopped: "stopped";
|
|
6739
7028
|
}>;
|
|
6740
7029
|
cwd: import("zod").ZodString;
|
|
@@ -6769,8 +7058,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6769
7058
|
maxTimeMs: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
6770
7059
|
status: import("zod").ZodEnum<{
|
|
6771
7060
|
running: "running";
|
|
6772
|
-
succeeded: "succeeded";
|
|
6773
7061
|
failed: "failed";
|
|
7062
|
+
succeeded: "succeeded";
|
|
6774
7063
|
stopped: "stopped";
|
|
6775
7064
|
}>;
|
|
6776
7065
|
createdAt: import("zod").ZodString;
|
|
@@ -6786,14 +7075,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6786
7075
|
verifierAgentId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6787
7076
|
status: import("zod").ZodEnum<{
|
|
6788
7077
|
running: "running";
|
|
6789
|
-
succeeded: "succeeded";
|
|
6790
7078
|
failed: "failed";
|
|
7079
|
+
succeeded: "succeeded";
|
|
6791
7080
|
stopped: "stopped";
|
|
6792
7081
|
}>;
|
|
6793
7082
|
workerOutcome: import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
6794
7083
|
failed: "failed";
|
|
6795
|
-
completed: "completed";
|
|
6796
7084
|
canceled: "canceled";
|
|
7085
|
+
completed: "completed";
|
|
6797
7086
|
}>>;
|
|
6798
7087
|
failureReason: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6799
7088
|
verifyChecks: import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -6861,8 +7150,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6861
7150
|
maxTimeMs: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
6862
7151
|
status: import("zod").ZodEnum<{
|
|
6863
7152
|
running: "running";
|
|
6864
|
-
succeeded: "succeeded";
|
|
6865
7153
|
failed: "failed";
|
|
7154
|
+
succeeded: "succeeded";
|
|
6866
7155
|
stopped: "stopped";
|
|
6867
7156
|
}>;
|
|
6868
7157
|
createdAt: import("zod").ZodString;
|
|
@@ -6878,14 +7167,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6878
7167
|
verifierAgentId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6879
7168
|
status: import("zod").ZodEnum<{
|
|
6880
7169
|
running: "running";
|
|
6881
|
-
succeeded: "succeeded";
|
|
6882
7170
|
failed: "failed";
|
|
7171
|
+
succeeded: "succeeded";
|
|
6883
7172
|
stopped: "stopped";
|
|
6884
7173
|
}>;
|
|
6885
7174
|
workerOutcome: import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
6886
7175
|
failed: "failed";
|
|
6887
|
-
completed: "completed";
|
|
6888
7176
|
canceled: "canceled";
|
|
7177
|
+
completed: "completed";
|
|
6889
7178
|
}>>;
|
|
6890
7179
|
failureReason: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6891
7180
|
verifyChecks: import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -6970,8 +7259,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6970
7259
|
maxTimeMs: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
6971
7260
|
status: import("zod").ZodEnum<{
|
|
6972
7261
|
running: "running";
|
|
6973
|
-
succeeded: "succeeded";
|
|
6974
7262
|
failed: "failed";
|
|
7263
|
+
succeeded: "succeeded";
|
|
6975
7264
|
stopped: "stopped";
|
|
6976
7265
|
}>;
|
|
6977
7266
|
createdAt: import("zod").ZodString;
|
|
@@ -6987,14 +7276,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6987
7276
|
verifierAgentId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6988
7277
|
status: import("zod").ZodEnum<{
|
|
6989
7278
|
running: "running";
|
|
6990
|
-
succeeded: "succeeded";
|
|
6991
7279
|
failed: "failed";
|
|
7280
|
+
succeeded: "succeeded";
|
|
6992
7281
|
stopped: "stopped";
|
|
6993
7282
|
}>;
|
|
6994
7283
|
workerOutcome: import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
6995
7284
|
failed: "failed";
|
|
6996
|
-
completed: "completed";
|
|
6997
7285
|
canceled: "canceled";
|
|
7286
|
+
completed: "completed";
|
|
6998
7287
|
}>>;
|
|
6999
7288
|
failureReason: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7000
7289
|
verifyChecks: import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -7072,8 +7361,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7072
7361
|
starred: import("zod").ZodBoolean;
|
|
7073
7362
|
status: import("zod").ZodEnum<{
|
|
7074
7363
|
error: "error";
|
|
7075
|
-
generating: "generating";
|
|
7076
7364
|
ready: "ready";
|
|
7365
|
+
generating: "generating";
|
|
7077
7366
|
}>;
|
|
7078
7367
|
createdAt: import("zod").ZodString;
|
|
7079
7368
|
updatedAt: import("zod").ZodString;
|
|
@@ -7107,8 +7396,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7107
7396
|
starred: import("zod").ZodBoolean;
|
|
7108
7397
|
status: import("zod").ZodEnum<{
|
|
7109
7398
|
error: "error";
|
|
7110
|
-
generating: "generating";
|
|
7111
7399
|
ready: "ready";
|
|
7400
|
+
generating: "generating";
|
|
7112
7401
|
}>;
|
|
7113
7402
|
createdAt: import("zod").ZodString;
|
|
7114
7403
|
updatedAt: import("zod").ZodString;
|
|
@@ -7142,8 +7431,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7142
7431
|
starred: import("zod").ZodBoolean;
|
|
7143
7432
|
status: import("zod").ZodEnum<{
|
|
7144
7433
|
error: "error";
|
|
7145
|
-
generating: "generating";
|
|
7146
7434
|
ready: "ready";
|
|
7435
|
+
generating: "generating";
|
|
7147
7436
|
}>;
|
|
7148
7437
|
createdAt: import("zod").ZodString;
|
|
7149
7438
|
updatedAt: import("zod").ZodString;
|
|
@@ -7177,8 +7466,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7177
7466
|
starred: import("zod").ZodBoolean;
|
|
7178
7467
|
status: import("zod").ZodEnum<{
|
|
7179
7468
|
error: "error";
|
|
7180
|
-
generating: "generating";
|
|
7181
7469
|
ready: "ready";
|
|
7470
|
+
generating: "generating";
|
|
7182
7471
|
}>;
|
|
7183
7472
|
createdAt: import("zod").ZodString;
|
|
7184
7473
|
updatedAt: import("zod").ZodString;
|
|
@@ -7212,8 +7501,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7212
7501
|
starred: import("zod").ZodBoolean;
|
|
7213
7502
|
status: import("zod").ZodEnum<{
|
|
7214
7503
|
error: "error";
|
|
7215
|
-
generating: "generating";
|
|
7216
7504
|
ready: "ready";
|
|
7505
|
+
generating: "generating";
|
|
7217
7506
|
}>;
|
|
7218
7507
|
createdAt: import("zod").ZodString;
|
|
7219
7508
|
updatedAt: import("zod").ZodString;
|
|
@@ -7254,8 +7543,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7254
7543
|
starred: import("zod").ZodBoolean;
|
|
7255
7544
|
status: import("zod").ZodEnum<{
|
|
7256
7545
|
error: "error";
|
|
7257
|
-
generating: "generating";
|
|
7258
7546
|
ready: "ready";
|
|
7547
|
+
generating: "generating";
|
|
7259
7548
|
}>;
|
|
7260
7549
|
createdAt: import("zod").ZodString;
|
|
7261
7550
|
updatedAt: import("zod").ZodString;
|
|
@@ -7297,8 +7586,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7297
7586
|
starred: import("zod").ZodBoolean;
|
|
7298
7587
|
status: import("zod").ZodEnum<{
|
|
7299
7588
|
error: "error";
|
|
7300
|
-
generating: "generating";
|
|
7301
7589
|
ready: "ready";
|
|
7590
|
+
generating: "generating";
|
|
7302
7591
|
}>;
|
|
7303
7592
|
createdAt: import("zod").ZodString;
|
|
7304
7593
|
updatedAt: import("zod").ZodString;
|
|
@@ -7329,8 +7618,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7329
7618
|
starred: import("zod").ZodBoolean;
|
|
7330
7619
|
status: import("zod").ZodEnum<{
|
|
7331
7620
|
error: "error";
|
|
7332
|
-
generating: "generating";
|
|
7333
7621
|
ready: "ready";
|
|
7622
|
+
generating: "generating";
|
|
7334
7623
|
}>;
|
|
7335
7624
|
createdAt: import("zod").ZodString;
|
|
7336
7625
|
updatedAt: import("zod").ZodString;
|