@otto-code/protocol 0.8.10 → 0.8.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/agent-labels.d.ts +3 -0
- package/dist/agent-labels.js +10 -0
- package/dist/agent-personalities.d.ts +4 -3
- package/dist/agent-personalities.js +13 -20
- package/dist/agent-queue.d.ts +87 -0
- package/dist/agent-queue.js +106 -0
- package/dist/agent-types.d.ts +24 -4
- package/dist/binary-frames/terminal.d.ts +4 -0
- package/dist/binary-frames/terminal.js +1 -0
- package/dist/brain.d.ts +2412 -0
- package/dist/brain.js +1100 -0
- package/dist/chat/rpc-schemas.js +1 -0
- package/dist/chat/types.js +1 -0
- package/dist/client-capabilities.d.ts +3 -0
- package/dist/client-capabilities.js +14 -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 +383 -0
- package/dist/daemon-config.js +401 -0
- package/dist/file-operations.d.ts +380 -0
- package/dist/file-operations.js +282 -0
- package/dist/generated/validation/ws-outbound.aot.js +67260 -57392
- 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/loop/rpc-schemas.js +1 -0
- package/dist/meetings.d.ts +95 -0
- package/dist/meetings.js +57 -0
- package/dist/messages.d.ts +11175 -11039
- package/dist/messages.js +4756 -8700
- 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/provider-manifest.js +7 -0
- package/dist/provider-snapshot-codec.d.ts +18 -0
- package/dist/provider-snapshot-codec.js +71 -0
- package/dist/refine.d.ts +93 -0
- package/dist/refine.js +78 -0
- package/dist/schedule/rpc-schemas.d.ts +55 -111
- package/dist/schedule/types.d.ts +16 -37
- package/dist/schedule/types.js +1 -11
- package/dist/search/text-match.d.ts +55 -0
- package/dist/search/text-match.js +262 -0
- 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/terminal-input-mode.d.ts +4 -0
- package/dist/terminal-input-mode.js +35 -6
- package/dist/terminal-key-input.js +15 -6
- package/dist/terminal-profiles.d.ts +35 -0
- package/dist/terminal-profiles.js +246 -4
- package/dist/tool-call-display.d.ts +2 -2
- package/dist/tool-call-display.js +6 -6
- package/dist/usage-stats.d.ts +255 -0
- package/dist/usage-stats.js +162 -0
- package/dist/validation/ws-outbound-schema-metadata.d.ts +1906 -266
- package/dist/worktree-ops.d.ts +81 -0
- package/dist/worktree-ops.js +88 -0
- package/package.json +1 -1
|
@@ -52,6 +52,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
52
52
|
running: "running";
|
|
53
53
|
closed: "closed";
|
|
54
54
|
}>;
|
|
55
|
+
activeTurn: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
56
|
+
turnId: import("zod").ZodString;
|
|
57
|
+
startedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
58
|
+
}, import("zod/v4/core").$strip>>>;
|
|
55
59
|
capabilities: import("zod").ZodType<import("../agent-types.js").AgentCapabilityFlags, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentCapabilityFlags, unknown>>;
|
|
56
60
|
currentModeId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
57
61
|
availableModes: import("zod").ZodArray<import("zod").ZodType<import("../agent-types.js").AgentMode, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentMode, unknown>>>;
|
|
@@ -68,8 +72,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
68
72
|
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
69
73
|
costCoverage: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
70
74
|
none: "none";
|
|
71
|
-
complete: "complete";
|
|
72
75
|
partial: "partial";
|
|
76
|
+
complete: "complete";
|
|
73
77
|
}>>;
|
|
74
78
|
}, import("zod/v4/core").$strip>>;
|
|
75
79
|
toolUseCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -110,6 +114,33 @@ export declare const WSOutboundMessageSchema: {
|
|
|
110
114
|
personalityId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
111
115
|
}, import("zod/v4/core").$strip>>;
|
|
112
116
|
success: import("zod").ZodBoolean;
|
|
117
|
+
toolPolicyApplied: import("zod").ZodOptional<import("zod").ZodLiteral<true>>;
|
|
118
|
+
error: import("zod").ZodNullable<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
119
|
+
code: import("zod").ZodLiteral<"provider_options_invalid">;
|
|
120
|
+
provider: import("zod").ZodString;
|
|
121
|
+
issues: import("zod").ZodArray<import("zod").ZodObject<{
|
|
122
|
+
path: import("zod").ZodArray<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>>;
|
|
123
|
+
message: import("zod").ZodString;
|
|
124
|
+
}, import("zod/v4/core").$strip>>;
|
|
125
|
+
message: import("zod").ZodString;
|
|
126
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
127
|
+
code: import("zod").ZodLiteral<"tool_policy_unsupported">;
|
|
128
|
+
provider: import("zod").ZodString;
|
|
129
|
+
message: import("zod").ZodString;
|
|
130
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
131
|
+
code: import("zod").ZodLiteral<"create_failed">;
|
|
132
|
+
message: import("zod").ZodString;
|
|
133
|
+
}, import("zod/v4/core").$strip>], "code">>;
|
|
134
|
+
}, import("zod/v4/core").$strip>;
|
|
135
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
136
|
+
type: import("zod").ZodLiteral<"hub.execution.agent.validate.response">;
|
|
137
|
+
payload: import("zod").ZodObject<{
|
|
138
|
+
requestId: import("zod").ZodString;
|
|
139
|
+
valid: import("zod").ZodBoolean;
|
|
140
|
+
issues: import("zod").ZodArray<import("zod").ZodObject<{
|
|
141
|
+
path: import("zod").ZodArray<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>>;
|
|
142
|
+
message: import("zod").ZodString;
|
|
143
|
+
}, import("zod/v4/core").$strip>>;
|
|
113
144
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
114
145
|
}, import("zod/v4/core").$strip>;
|
|
115
146
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -172,6 +203,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
172
203
|
running: "running";
|
|
173
204
|
closed: "closed";
|
|
174
205
|
}>;
|
|
206
|
+
activeTurn: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
207
|
+
turnId: import("zod").ZodString;
|
|
208
|
+
startedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
209
|
+
}, import("zod/v4/core").$strip>>>;
|
|
175
210
|
capabilities: import("zod").ZodType<import("../agent-types.js").AgentCapabilityFlags, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentCapabilityFlags, unknown>>;
|
|
176
211
|
currentModeId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
177
212
|
availableModes: import("zod").ZodArray<import("zod").ZodType<import("../agent-types.js").AgentMode, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentMode, unknown>>>;
|
|
@@ -188,8 +223,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
188
223
|
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
189
224
|
costCoverage: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
190
225
|
none: "none";
|
|
191
|
-
complete: "complete";
|
|
192
226
|
partial: "partial";
|
|
227
|
+
complete: "complete";
|
|
193
228
|
}>>;
|
|
194
229
|
}, import("zod/v4/core").$strip>>;
|
|
195
230
|
toolUseCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -242,19 +277,23 @@ export declare const WSOutboundMessageSchema: {
|
|
|
242
277
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
243
278
|
type: import("zod").ZodLiteral<"turn_started">;
|
|
244
279
|
provider: import("zod").ZodString;
|
|
280
|
+
turnId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
245
281
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
246
282
|
type: import("zod").ZodLiteral<"turn_completed">;
|
|
247
283
|
provider: import("zod").ZodString;
|
|
284
|
+
turnId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
248
285
|
usage: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentUsage, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentUsage, unknown>>>;
|
|
249
286
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
250
287
|
type: import("zod").ZodLiteral<"turn_failed">;
|
|
251
288
|
provider: import("zod").ZodString;
|
|
289
|
+
turnId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
252
290
|
error: import("zod").ZodString;
|
|
253
291
|
code: import("zod").ZodOptional<import("zod").ZodString>;
|
|
254
292
|
diagnostic: import("zod").ZodOptional<import("zod").ZodString>;
|
|
255
293
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
256
294
|
type: import("zod").ZodLiteral<"turn_canceled">;
|
|
257
295
|
provider: import("zod").ZodString;
|
|
296
|
+
turnId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
258
297
|
reason: import("zod").ZodString;
|
|
259
298
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
260
299
|
type: import("zod").ZodLiteral<"timeline">;
|
|
@@ -303,8 +342,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
303
342
|
info: import("zod").ZodObject<{
|
|
304
343
|
status: import("zod").ZodEnum<{
|
|
305
344
|
warning: "warning";
|
|
306
|
-
allowed: "allowed";
|
|
307
345
|
rejected: "rejected";
|
|
346
|
+
allowed: "allowed";
|
|
308
347
|
}>;
|
|
309
348
|
utilizationPercent: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
310
349
|
limitType: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -619,6 +658,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
619
658
|
serverReceivedAt: import("zod").ZodNumber;
|
|
620
659
|
serverSentAt: import("zod").ZodNumber;
|
|
621
660
|
}, import("zod/v4/core").$strip>;
|
|
661
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
662
|
+
type: import("zod").ZodLiteral<"push.unregister.response">;
|
|
663
|
+
payload: import("zod").ZodObject<{
|
|
664
|
+
requestId: import("zod").ZodString;
|
|
665
|
+
}, import("zod/v4/core").$strip>;
|
|
622
666
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
623
667
|
type: import("zod").ZodLiteral<"rpc_error">;
|
|
624
668
|
payload: import("zod").ZodObject<{
|
|
@@ -721,6 +765,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
721
765
|
running: "running";
|
|
722
766
|
closed: "closed";
|
|
723
767
|
}>;
|
|
768
|
+
activeTurn: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
769
|
+
turnId: import("zod").ZodString;
|
|
770
|
+
startedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
771
|
+
}, import("zod/v4/core").$strip>>>;
|
|
724
772
|
capabilities: import("zod").ZodType<import("../agent-types.js").AgentCapabilityFlags, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentCapabilityFlags, unknown>>;
|
|
725
773
|
currentModeId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
726
774
|
availableModes: import("zod").ZodArray<import("zod").ZodType<import("../agent-types.js").AgentMode, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentMode, unknown>>>;
|
|
@@ -737,8 +785,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
737
785
|
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
738
786
|
costCoverage: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
739
787
|
none: "none";
|
|
740
|
-
complete: "complete";
|
|
741
788
|
partial: "partial";
|
|
789
|
+
complete: "complete";
|
|
742
790
|
}>>;
|
|
743
791
|
}, import("zod/v4/core").$strip>>;
|
|
744
792
|
toolUseCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -869,17 +917,26 @@ export declare const WSOutboundMessageSchema: {
|
|
|
869
917
|
projectId: import("zod").ZodString;
|
|
870
918
|
projectDisplayName: import("zod").ZodString;
|
|
871
919
|
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
920
|
+
projectKanban: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
921
|
+
adapter: import("zod").ZodEnum<{
|
|
922
|
+
github: "github";
|
|
923
|
+
jira: "jira";
|
|
924
|
+
}>;
|
|
925
|
+
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
926
|
+
}, import("zod/v4/core").$loose>>>;
|
|
927
|
+
projectCustomIconRevision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
872
928
|
projectRootPath: import("zod").ZodString;
|
|
873
929
|
workspaceDirectory: import("zod").ZodOptional<import("zod").ZodString>;
|
|
930
|
+
worktreeSlug: import("zod").ZodOptional<import("zod").ZodString>;
|
|
874
931
|
projectKind: import("zod").ZodEnum<{
|
|
875
|
-
git: "git";
|
|
876
932
|
directory: "directory";
|
|
933
|
+
git: "git";
|
|
877
934
|
non_git: "non_git";
|
|
878
935
|
}>;
|
|
879
936
|
workspaceKind: import("zod").ZodEnum<{
|
|
880
937
|
worktree: "worktree";
|
|
881
|
-
checkout: "checkout";
|
|
882
938
|
directory: "directory";
|
|
939
|
+
checkout: "checkout";
|
|
883
940
|
local_checkout: "local_checkout";
|
|
884
941
|
}>;
|
|
885
942
|
name: import("zod").ZodString;
|
|
@@ -888,10 +945,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
888
945
|
archivingAt: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
889
946
|
status: import("zod").ZodEnum<{
|
|
890
947
|
running: "running";
|
|
891
|
-
attention: "attention";
|
|
892
|
-
needs_input: "needs_input";
|
|
893
948
|
done: "done";
|
|
894
949
|
failed: "failed";
|
|
950
|
+
attention: "attention";
|
|
951
|
+
needs_input: "needs_input";
|
|
895
952
|
}>;
|
|
896
953
|
statusEnteredAt: import("zod").ZodPipe<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>, import("zod").ZodTransform<string | null, string | null | undefined>>;
|
|
897
954
|
activityAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -1079,11 +1136,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1079
1136
|
projectId: string;
|
|
1080
1137
|
projectDisplayName: string;
|
|
1081
1138
|
projectRootPath: string;
|
|
1082
|
-
projectKind: "
|
|
1083
|
-
workspaceKind: "worktree" | "
|
|
1139
|
+
projectKind: "directory" | "git" | "non_git";
|
|
1140
|
+
workspaceKind: "worktree" | "directory" | "checkout" | "local_checkout";
|
|
1084
1141
|
name: string;
|
|
1085
1142
|
archivingAt: string | null;
|
|
1086
|
-
status: "running" | "
|
|
1143
|
+
status: "running" | "done" | "failed" | "attention" | "needs_input";
|
|
1087
1144
|
statusEnteredAt: string | null;
|
|
1088
1145
|
activityAt: string | null;
|
|
1089
1146
|
scripts: {
|
|
@@ -1107,6 +1164,13 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1107
1164
|
publicProxyUrl?: string | null | undefined;
|
|
1108
1165
|
}[];
|
|
1109
1166
|
projectCustomName?: string | null | undefined;
|
|
1167
|
+
projectKanban?: {
|
|
1168
|
+
[x: string]: unknown;
|
|
1169
|
+
adapter: "github" | "jira";
|
|
1170
|
+
boardId?: string | null | undefined;
|
|
1171
|
+
} | null | undefined;
|
|
1172
|
+
projectCustomIconRevision?: string | null | undefined;
|
|
1173
|
+
worktreeSlug?: string | undefined;
|
|
1110
1174
|
title?: string | null | undefined;
|
|
1111
1175
|
pinnedAt?: string | null | undefined;
|
|
1112
1176
|
diffStat?: {
|
|
@@ -1196,11 +1260,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1196
1260
|
projectId: string;
|
|
1197
1261
|
projectDisplayName: string;
|
|
1198
1262
|
projectRootPath: string;
|
|
1199
|
-
projectKind: "
|
|
1200
|
-
workspaceKind: "worktree" | "
|
|
1263
|
+
projectKind: "directory" | "git" | "non_git";
|
|
1264
|
+
workspaceKind: "worktree" | "directory" | "checkout" | "local_checkout";
|
|
1201
1265
|
name: string;
|
|
1202
1266
|
archivingAt: string | null;
|
|
1203
|
-
status: "running" | "
|
|
1267
|
+
status: "running" | "done" | "failed" | "attention" | "needs_input";
|
|
1204
1268
|
statusEnteredAt: string | null;
|
|
1205
1269
|
activityAt: string | null;
|
|
1206
1270
|
scripts: {
|
|
@@ -1224,7 +1288,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1224
1288
|
publicProxyUrl?: string | null | undefined;
|
|
1225
1289
|
}[];
|
|
1226
1290
|
projectCustomName?: string | null | undefined;
|
|
1291
|
+
projectKanban?: {
|
|
1292
|
+
[x: string]: unknown;
|
|
1293
|
+
adapter: "github" | "jira";
|
|
1294
|
+
boardId?: string | null | undefined;
|
|
1295
|
+
} | null | undefined;
|
|
1296
|
+
projectCustomIconRevision?: string | null | undefined;
|
|
1227
1297
|
workspaceDirectory?: string | undefined;
|
|
1298
|
+
worktreeSlug?: string | undefined;
|
|
1228
1299
|
title?: string | null | undefined;
|
|
1229
1300
|
pinnedAt?: string | null | undefined;
|
|
1230
1301
|
diffStat?: {
|
|
@@ -1318,10 +1389,18 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1318
1389
|
projectKey: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1319
1390
|
projectDisplayName: import("zod").ZodString;
|
|
1320
1391
|
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1392
|
+
projectKanban: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
1393
|
+
adapter: import("zod").ZodEnum<{
|
|
1394
|
+
github: "github";
|
|
1395
|
+
jira: "jira";
|
|
1396
|
+
}>;
|
|
1397
|
+
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1398
|
+
}, import("zod/v4/core").$loose>>>;
|
|
1399
|
+
projectCustomIconRevision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1321
1400
|
projectRootPath: import("zod").ZodString;
|
|
1322
1401
|
projectKind: import("zod").ZodEnum<{
|
|
1323
|
-
git: "git";
|
|
1324
1402
|
directory: "directory";
|
|
1403
|
+
git: "git";
|
|
1325
1404
|
non_git: "non_git";
|
|
1326
1405
|
}>;
|
|
1327
1406
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -1336,10 +1415,18 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1336
1415
|
projectKey: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1337
1416
|
projectDisplayName: import("zod").ZodString;
|
|
1338
1417
|
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1418
|
+
projectKanban: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
1419
|
+
adapter: import("zod").ZodEnum<{
|
|
1420
|
+
github: "github";
|
|
1421
|
+
jira: "jira";
|
|
1422
|
+
}>;
|
|
1423
|
+
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1424
|
+
}, import("zod/v4/core").$loose>>>;
|
|
1425
|
+
projectCustomIconRevision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1339
1426
|
projectRootPath: import("zod").ZodString;
|
|
1340
1427
|
projectKind: import("zod").ZodEnum<{
|
|
1341
|
-
git: "git";
|
|
1342
1428
|
directory: "directory";
|
|
1429
|
+
git: "git";
|
|
1343
1430
|
non_git: "non_git";
|
|
1344
1431
|
}>;
|
|
1345
1432
|
}, import("zod/v4/core").$strip>;
|
|
@@ -1356,10 +1443,18 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1356
1443
|
projectKey: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1357
1444
|
projectDisplayName: import("zod").ZodString;
|
|
1358
1445
|
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1446
|
+
projectKanban: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
1447
|
+
adapter: import("zod").ZodEnum<{
|
|
1448
|
+
github: "github";
|
|
1449
|
+
jira: "jira";
|
|
1450
|
+
}>;
|
|
1451
|
+
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1452
|
+
}, import("zod/v4/core").$loose>>>;
|
|
1453
|
+
projectCustomIconRevision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1359
1454
|
projectRootPath: import("zod").ZodString;
|
|
1360
1455
|
projectKind: import("zod").ZodEnum<{
|
|
1361
|
-
git: "git";
|
|
1362
1456
|
directory: "directory";
|
|
1457
|
+
git: "git";
|
|
1363
1458
|
non_git: "non_git";
|
|
1364
1459
|
}>;
|
|
1365
1460
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -1410,8 +1505,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1410
1505
|
workspaceId: import("zod").ZodString;
|
|
1411
1506
|
status: import("zod").ZodEnum<{
|
|
1412
1507
|
running: "running";
|
|
1413
|
-
failed: "failed";
|
|
1414
1508
|
completed: "completed";
|
|
1509
|
+
failed: "failed";
|
|
1415
1510
|
}>;
|
|
1416
1511
|
detail: import("zod").ZodObject<{
|
|
1417
1512
|
type: import("zod").ZodLiteral<"worktree_setup">;
|
|
@@ -1425,8 +1520,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1425
1520
|
log: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1426
1521
|
status: import("zod").ZodEnum<{
|
|
1427
1522
|
running: "running";
|
|
1428
|
-
failed: "failed";
|
|
1429
1523
|
completed: "completed";
|
|
1524
|
+
failed: "failed";
|
|
1430
1525
|
}>;
|
|
1431
1526
|
exitCode: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
1432
1527
|
durationMs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -1443,8 +1538,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1443
1538
|
snapshot: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
1444
1539
|
status: import("zod").ZodEnum<{
|
|
1445
1540
|
running: "running";
|
|
1446
|
-
failed: "failed";
|
|
1447
1541
|
completed: "completed";
|
|
1542
|
+
failed: "failed";
|
|
1448
1543
|
}>;
|
|
1449
1544
|
detail: import("zod").ZodObject<{
|
|
1450
1545
|
type: import("zod").ZodLiteral<"worktree_setup">;
|
|
@@ -1458,8 +1553,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1458
1553
|
log: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
1459
1554
|
status: import("zod").ZodEnum<{
|
|
1460
1555
|
running: "running";
|
|
1461
|
-
failed: "failed";
|
|
1462
1556
|
completed: "completed";
|
|
1557
|
+
failed: "failed";
|
|
1463
1558
|
}>;
|
|
1464
1559
|
exitCode: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
1465
1560
|
durationMs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -1480,19 +1575,23 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1480
1575
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1481
1576
|
type: import("zod").ZodLiteral<"turn_started">;
|
|
1482
1577
|
provider: import("zod").ZodString;
|
|
1578
|
+
turnId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1483
1579
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1484
1580
|
type: import("zod").ZodLiteral<"turn_completed">;
|
|
1485
1581
|
provider: import("zod").ZodString;
|
|
1582
|
+
turnId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1486
1583
|
usage: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").AgentUsage, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentUsage, unknown>>>;
|
|
1487
1584
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1488
1585
|
type: import("zod").ZodLiteral<"turn_failed">;
|
|
1489
1586
|
provider: import("zod").ZodString;
|
|
1587
|
+
turnId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1490
1588
|
error: import("zod").ZodString;
|
|
1491
1589
|
code: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1492
1590
|
diagnostic: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1493
1591
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1494
1592
|
type: import("zod").ZodLiteral<"turn_canceled">;
|
|
1495
1593
|
provider: import("zod").ZodString;
|
|
1594
|
+
turnId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1496
1595
|
reason: import("zod").ZodString;
|
|
1497
1596
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1498
1597
|
type: import("zod").ZodLiteral<"timeline">;
|
|
@@ -1541,8 +1640,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1541
1640
|
info: import("zod").ZodObject<{
|
|
1542
1641
|
status: import("zod").ZodEnum<{
|
|
1543
1642
|
warning: "warning";
|
|
1544
|
-
allowed: "allowed";
|
|
1545
1643
|
rejected: "rejected";
|
|
1644
|
+
allowed: "allowed";
|
|
1546
1645
|
}>;
|
|
1547
1646
|
utilizationPercent: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1548
1647
|
limitType: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -1602,6 +1701,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1602
1701
|
running: "running";
|
|
1603
1702
|
closed: "closed";
|
|
1604
1703
|
}>;
|
|
1704
|
+
activeTurn: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
1705
|
+
turnId: import("zod").ZodString;
|
|
1706
|
+
startedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1707
|
+
}, import("zod/v4/core").$strip>>>;
|
|
1605
1708
|
capabilities: import("zod").ZodType<import("../agent-types.js").AgentCapabilityFlags, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentCapabilityFlags, unknown>>;
|
|
1606
1709
|
currentModeId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1607
1710
|
availableModes: import("zod").ZodArray<import("zod").ZodType<import("../agent-types.js").AgentMode, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentMode, unknown>>>;
|
|
@@ -1618,8 +1721,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1618
1721
|
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1619
1722
|
costCoverage: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
1620
1723
|
none: "none";
|
|
1621
|
-
complete: "complete";
|
|
1622
1724
|
partial: "partial";
|
|
1725
|
+
complete: "complete";
|
|
1623
1726
|
}>>;
|
|
1624
1727
|
}, import("zod/v4/core").$strip>>;
|
|
1625
1728
|
toolUseCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -1709,6 +1812,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1709
1812
|
running: "running";
|
|
1710
1813
|
closed: "closed";
|
|
1711
1814
|
}>;
|
|
1815
|
+
activeTurn: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
1816
|
+
turnId: import("zod").ZodString;
|
|
1817
|
+
startedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1818
|
+
}, import("zod/v4/core").$strip>>>;
|
|
1712
1819
|
capabilities: import("zod").ZodType<import("../agent-types.js").AgentCapabilityFlags, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentCapabilityFlags, unknown>>;
|
|
1713
1820
|
currentModeId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1714
1821
|
availableModes: import("zod").ZodArray<import("zod").ZodType<import("../agent-types.js").AgentMode, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentMode, unknown>>>;
|
|
@@ -1725,8 +1832,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1725
1832
|
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1726
1833
|
costCoverage: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
1727
1834
|
none: "none";
|
|
1728
|
-
complete: "complete";
|
|
1729
1835
|
partial: "partial";
|
|
1836
|
+
complete: "complete";
|
|
1730
1837
|
}>>;
|
|
1731
1838
|
}, import("zod/v4/core").$strip>>;
|
|
1732
1839
|
toolUseCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -1844,6 +1951,19 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1844
1951
|
worktreeRoot?: string | undefined;
|
|
1845
1952
|
}>>]>;
|
|
1846
1953
|
}, import("zod/v4/core").$strip>;
|
|
1954
|
+
searchScore: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1955
|
+
searchMatches: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
1956
|
+
field: import("zod").ZodEnum<{
|
|
1957
|
+
title: "title";
|
|
1958
|
+
workspace: "workspace";
|
|
1959
|
+
project: "project";
|
|
1960
|
+
branch: "branch";
|
|
1961
|
+
}>;
|
|
1962
|
+
ranges: import("zod").ZodArray<import("zod").ZodObject<{
|
|
1963
|
+
start: import("zod").ZodNumber;
|
|
1964
|
+
length: import("zod").ZodNumber;
|
|
1965
|
+
}, import("zod/v4/core").$strip>>;
|
|
1966
|
+
}, import("zod/v4/core").$strip>>>;
|
|
1847
1967
|
}, import("zod/v4/core").$strip>>;
|
|
1848
1968
|
pageInfo: import("zod").ZodObject<{
|
|
1849
1969
|
nextCursor: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -1899,6 +2019,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1899
2019
|
running: "running";
|
|
1900
2020
|
closed: "closed";
|
|
1901
2021
|
}>;
|
|
2022
|
+
activeTurn: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2023
|
+
turnId: import("zod").ZodString;
|
|
2024
|
+
startedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2025
|
+
}, import("zod/v4/core").$strip>>>;
|
|
1902
2026
|
capabilities: import("zod").ZodType<import("../agent-types.js").AgentCapabilityFlags, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentCapabilityFlags, unknown>>;
|
|
1903
2027
|
currentModeId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1904
2028
|
availableModes: import("zod").ZodArray<import("zod").ZodType<import("../agent-types.js").AgentMode, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentMode, unknown>>>;
|
|
@@ -1915,8 +2039,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1915
2039
|
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1916
2040
|
costCoverage: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
1917
2041
|
none: "none";
|
|
1918
|
-
complete: "complete";
|
|
1919
2042
|
partial: "partial";
|
|
2043
|
+
complete: "complete";
|
|
1920
2044
|
}>>;
|
|
1921
2045
|
}, import("zod/v4/core").$strip>>;
|
|
1922
2046
|
toolUseCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -2034,12 +2158,26 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2034
2158
|
worktreeRoot?: string | undefined;
|
|
2035
2159
|
}>>]>;
|
|
2036
2160
|
}, import("zod/v4/core").$strip>;
|
|
2161
|
+
searchScore: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
2162
|
+
searchMatches: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
2163
|
+
field: import("zod").ZodEnum<{
|
|
2164
|
+
title: "title";
|
|
2165
|
+
workspace: "workspace";
|
|
2166
|
+
project: "project";
|
|
2167
|
+
branch: "branch";
|
|
2168
|
+
}>;
|
|
2169
|
+
ranges: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2170
|
+
start: import("zod").ZodNumber;
|
|
2171
|
+
length: import("zod").ZodNumber;
|
|
2172
|
+
}, import("zod/v4/core").$strip>>;
|
|
2173
|
+
}, import("zod/v4/core").$strip>>>;
|
|
2037
2174
|
}, import("zod/v4/core").$strip>>;
|
|
2038
2175
|
pageInfo: import("zod").ZodObject<{
|
|
2039
2176
|
nextCursor: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2040
2177
|
prevCursor: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2041
2178
|
hasMore: import("zod").ZodBoolean;
|
|
2042
2179
|
}, import("zod/v4/core").$strip>;
|
|
2180
|
+
searchTruncated: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2043
2181
|
}, import("zod/v4/core").$strip>;
|
|
2044
2182
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2045
2183
|
type: import("zod").ZodLiteral<"fetch_recent_provider_sessions_response">;
|
|
@@ -2067,17 +2205,26 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2067
2205
|
projectId: import("zod").ZodString;
|
|
2068
2206
|
projectDisplayName: import("zod").ZodString;
|
|
2069
2207
|
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2208
|
+
projectKanban: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2209
|
+
adapter: import("zod").ZodEnum<{
|
|
2210
|
+
github: "github";
|
|
2211
|
+
jira: "jira";
|
|
2212
|
+
}>;
|
|
2213
|
+
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2214
|
+
}, import("zod/v4/core").$loose>>>;
|
|
2215
|
+
projectCustomIconRevision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2070
2216
|
projectRootPath: import("zod").ZodString;
|
|
2071
2217
|
workspaceDirectory: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2218
|
+
worktreeSlug: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2072
2219
|
projectKind: import("zod").ZodEnum<{
|
|
2073
|
-
git: "git";
|
|
2074
2220
|
directory: "directory";
|
|
2221
|
+
git: "git";
|
|
2075
2222
|
non_git: "non_git";
|
|
2076
2223
|
}>;
|
|
2077
2224
|
workspaceKind: import("zod").ZodEnum<{
|
|
2078
2225
|
worktree: "worktree";
|
|
2079
|
-
checkout: "checkout";
|
|
2080
2226
|
directory: "directory";
|
|
2227
|
+
checkout: "checkout";
|
|
2081
2228
|
local_checkout: "local_checkout";
|
|
2082
2229
|
}>;
|
|
2083
2230
|
name: import("zod").ZodString;
|
|
@@ -2086,10 +2233,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2086
2233
|
archivingAt: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
2087
2234
|
status: import("zod").ZodEnum<{
|
|
2088
2235
|
running: "running";
|
|
2089
|
-
attention: "attention";
|
|
2090
|
-
needs_input: "needs_input";
|
|
2091
2236
|
done: "done";
|
|
2092
2237
|
failed: "failed";
|
|
2238
|
+
attention: "attention";
|
|
2239
|
+
needs_input: "needs_input";
|
|
2093
2240
|
}>;
|
|
2094
2241
|
statusEnteredAt: import("zod").ZodPipe<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>, import("zod").ZodTransform<string | null, string | null | undefined>>;
|
|
2095
2242
|
activityAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -2277,11 +2424,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2277
2424
|
projectId: string;
|
|
2278
2425
|
projectDisplayName: string;
|
|
2279
2426
|
projectRootPath: string;
|
|
2280
|
-
projectKind: "
|
|
2281
|
-
workspaceKind: "worktree" | "
|
|
2427
|
+
projectKind: "directory" | "git" | "non_git";
|
|
2428
|
+
workspaceKind: "worktree" | "directory" | "checkout" | "local_checkout";
|
|
2282
2429
|
name: string;
|
|
2283
2430
|
archivingAt: string | null;
|
|
2284
|
-
status: "running" | "
|
|
2431
|
+
status: "running" | "done" | "failed" | "attention" | "needs_input";
|
|
2285
2432
|
statusEnteredAt: string | null;
|
|
2286
2433
|
activityAt: string | null;
|
|
2287
2434
|
scripts: {
|
|
@@ -2305,6 +2452,13 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2305
2452
|
publicProxyUrl?: string | null | undefined;
|
|
2306
2453
|
}[];
|
|
2307
2454
|
projectCustomName?: string | null | undefined;
|
|
2455
|
+
projectKanban?: {
|
|
2456
|
+
[x: string]: unknown;
|
|
2457
|
+
adapter: "github" | "jira";
|
|
2458
|
+
boardId?: string | null | undefined;
|
|
2459
|
+
} | null | undefined;
|
|
2460
|
+
projectCustomIconRevision?: string | null | undefined;
|
|
2461
|
+
worktreeSlug?: string | undefined;
|
|
2308
2462
|
title?: string | null | undefined;
|
|
2309
2463
|
pinnedAt?: string | null | undefined;
|
|
2310
2464
|
diffStat?: {
|
|
@@ -2394,11 +2548,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2394
2548
|
projectId: string;
|
|
2395
2549
|
projectDisplayName: string;
|
|
2396
2550
|
projectRootPath: string;
|
|
2397
|
-
projectKind: "
|
|
2398
|
-
workspaceKind: "worktree" | "
|
|
2551
|
+
projectKind: "directory" | "git" | "non_git";
|
|
2552
|
+
workspaceKind: "worktree" | "directory" | "checkout" | "local_checkout";
|
|
2399
2553
|
name: string;
|
|
2400
2554
|
archivingAt: string | null;
|
|
2401
|
-
status: "running" | "
|
|
2555
|
+
status: "running" | "done" | "failed" | "attention" | "needs_input";
|
|
2402
2556
|
statusEnteredAt: string | null;
|
|
2403
2557
|
activityAt: string | null;
|
|
2404
2558
|
scripts: {
|
|
@@ -2422,7 +2576,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2422
2576
|
publicProxyUrl?: string | null | undefined;
|
|
2423
2577
|
}[];
|
|
2424
2578
|
projectCustomName?: string | null | undefined;
|
|
2579
|
+
projectKanban?: {
|
|
2580
|
+
[x: string]: unknown;
|
|
2581
|
+
adapter: "github" | "jira";
|
|
2582
|
+
boardId?: string | null | undefined;
|
|
2583
|
+
} | null | undefined;
|
|
2584
|
+
projectCustomIconRevision?: string | null | undefined;
|
|
2425
2585
|
workspaceDirectory?: string | undefined;
|
|
2586
|
+
worktreeSlug?: string | undefined;
|
|
2426
2587
|
title?: string | null | undefined;
|
|
2427
2588
|
pinnedAt?: string | null | undefined;
|
|
2428
2589
|
diffStat?: {
|
|
@@ -2513,10 +2674,18 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2513
2674
|
projectKey: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2514
2675
|
projectDisplayName: import("zod").ZodString;
|
|
2515
2676
|
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2677
|
+
projectKanban: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2678
|
+
adapter: import("zod").ZodEnum<{
|
|
2679
|
+
github: "github";
|
|
2680
|
+
jira: "jira";
|
|
2681
|
+
}>;
|
|
2682
|
+
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2683
|
+
}, import("zod/v4/core").$loose>>>;
|
|
2684
|
+
projectCustomIconRevision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2516
2685
|
projectRootPath: import("zod").ZodString;
|
|
2517
2686
|
projectKind: import("zod").ZodEnum<{
|
|
2518
|
-
git: "git";
|
|
2519
2687
|
directory: "directory";
|
|
2688
|
+
git: "git";
|
|
2520
2689
|
non_git: "non_git";
|
|
2521
2690
|
}>;
|
|
2522
2691
|
}, import("zod/v4/core").$strip>>>>;
|
|
@@ -2535,10 +2704,18 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2535
2704
|
projectKey: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2536
2705
|
projectDisplayName: import("zod").ZodString;
|
|
2537
2706
|
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2707
|
+
projectKanban: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2708
|
+
adapter: import("zod").ZodEnum<{
|
|
2709
|
+
github: "github";
|
|
2710
|
+
jira: "jira";
|
|
2711
|
+
}>;
|
|
2712
|
+
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2713
|
+
}, import("zod/v4/core").$loose>>>;
|
|
2714
|
+
projectCustomIconRevision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2538
2715
|
projectRootPath: import("zod").ZodString;
|
|
2539
2716
|
projectKind: import("zod").ZodEnum<{
|
|
2540
|
-
git: "git";
|
|
2541
2717
|
directory: "directory";
|
|
2718
|
+
git: "git";
|
|
2542
2719
|
non_git: "non_git";
|
|
2543
2720
|
}>;
|
|
2544
2721
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -2556,10 +2733,18 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2556
2733
|
projectKey: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2557
2734
|
projectDisplayName: import("zod").ZodString;
|
|
2558
2735
|
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2736
|
+
projectKanban: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2737
|
+
adapter: import("zod").ZodEnum<{
|
|
2738
|
+
github: "github";
|
|
2739
|
+
jira: "jira";
|
|
2740
|
+
}>;
|
|
2741
|
+
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2742
|
+
}, import("zod/v4/core").$loose>>>;
|
|
2743
|
+
projectCustomIconRevision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2559
2744
|
projectRootPath: import("zod").ZodString;
|
|
2560
2745
|
projectKind: import("zod").ZodEnum<{
|
|
2561
|
-
git: "git";
|
|
2562
2746
|
directory: "directory";
|
|
2747
|
+
git: "git";
|
|
2563
2748
|
non_git: "non_git";
|
|
2564
2749
|
}>;
|
|
2565
2750
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -2567,11 +2752,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2567
2752
|
remoteUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2568
2753
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2569
2754
|
errorCode: import("zod").ZodCatch<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
2755
|
+
git_failed: "git_failed";
|
|
2570
2756
|
parent_not_found: "parent_not_found";
|
|
2571
2757
|
invalid_name: "invalid_name";
|
|
2572
2758
|
already_exists: "already_exists";
|
|
2573
2759
|
git_unavailable: "git_unavailable";
|
|
2574
|
-
git_failed: "git_failed";
|
|
2575
2760
|
provider_unavailable: "provider_unavailable";
|
|
2576
2761
|
remote_failed: "remote_failed";
|
|
2577
2762
|
clone_failed: "clone_failed";
|
|
@@ -2611,10 +2796,18 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2611
2796
|
projectKey: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2612
2797
|
projectDisplayName: import("zod").ZodString;
|
|
2613
2798
|
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2799
|
+
projectKanban: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2800
|
+
adapter: import("zod").ZodEnum<{
|
|
2801
|
+
github: "github";
|
|
2802
|
+
jira: "jira";
|
|
2803
|
+
}>;
|
|
2804
|
+
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2805
|
+
}, import("zod/v4/core").$loose>>>;
|
|
2806
|
+
projectCustomIconRevision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2614
2807
|
projectRootPath: import("zod").ZodString;
|
|
2615
2808
|
projectKind: import("zod").ZodEnum<{
|
|
2616
|
-
git: "git";
|
|
2617
2809
|
directory: "directory";
|
|
2810
|
+
git: "git";
|
|
2618
2811
|
non_git: "non_git";
|
|
2619
2812
|
}>;
|
|
2620
2813
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -2630,17 +2823,26 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2630
2823
|
projectId: import("zod").ZodString;
|
|
2631
2824
|
projectDisplayName: import("zod").ZodString;
|
|
2632
2825
|
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2826
|
+
projectKanban: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2827
|
+
adapter: import("zod").ZodEnum<{
|
|
2828
|
+
github: "github";
|
|
2829
|
+
jira: "jira";
|
|
2830
|
+
}>;
|
|
2831
|
+
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2832
|
+
}, import("zod/v4/core").$loose>>>;
|
|
2833
|
+
projectCustomIconRevision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2633
2834
|
projectRootPath: import("zod").ZodString;
|
|
2634
2835
|
workspaceDirectory: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2836
|
+
worktreeSlug: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2635
2837
|
projectKind: import("zod").ZodEnum<{
|
|
2636
|
-
git: "git";
|
|
2637
2838
|
directory: "directory";
|
|
2839
|
+
git: "git";
|
|
2638
2840
|
non_git: "non_git";
|
|
2639
2841
|
}>;
|
|
2640
2842
|
workspaceKind: import("zod").ZodEnum<{
|
|
2641
2843
|
worktree: "worktree";
|
|
2642
|
-
checkout: "checkout";
|
|
2643
2844
|
directory: "directory";
|
|
2845
|
+
checkout: "checkout";
|
|
2644
2846
|
local_checkout: "local_checkout";
|
|
2645
2847
|
}>;
|
|
2646
2848
|
name: import("zod").ZodString;
|
|
@@ -2649,10 +2851,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2649
2851
|
archivingAt: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
2650
2852
|
status: import("zod").ZodEnum<{
|
|
2651
2853
|
running: "running";
|
|
2652
|
-
attention: "attention";
|
|
2653
|
-
needs_input: "needs_input";
|
|
2654
2854
|
done: "done";
|
|
2655
2855
|
failed: "failed";
|
|
2856
|
+
attention: "attention";
|
|
2857
|
+
needs_input: "needs_input";
|
|
2656
2858
|
}>;
|
|
2657
2859
|
statusEnteredAt: import("zod").ZodPipe<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>, import("zod").ZodTransform<string | null, string | null | undefined>>;
|
|
2658
2860
|
activityAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -2840,11 +3042,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2840
3042
|
projectId: string;
|
|
2841
3043
|
projectDisplayName: string;
|
|
2842
3044
|
projectRootPath: string;
|
|
2843
|
-
projectKind: "
|
|
2844
|
-
workspaceKind: "worktree" | "
|
|
3045
|
+
projectKind: "directory" | "git" | "non_git";
|
|
3046
|
+
workspaceKind: "worktree" | "directory" | "checkout" | "local_checkout";
|
|
2845
3047
|
name: string;
|
|
2846
3048
|
archivingAt: string | null;
|
|
2847
|
-
status: "running" | "
|
|
3049
|
+
status: "running" | "done" | "failed" | "attention" | "needs_input";
|
|
2848
3050
|
statusEnteredAt: string | null;
|
|
2849
3051
|
activityAt: string | null;
|
|
2850
3052
|
scripts: {
|
|
@@ -2868,6 +3070,13 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2868
3070
|
publicProxyUrl?: string | null | undefined;
|
|
2869
3071
|
}[];
|
|
2870
3072
|
projectCustomName?: string | null | undefined;
|
|
3073
|
+
projectKanban?: {
|
|
3074
|
+
[x: string]: unknown;
|
|
3075
|
+
adapter: "github" | "jira";
|
|
3076
|
+
boardId?: string | null | undefined;
|
|
3077
|
+
} | null | undefined;
|
|
3078
|
+
projectCustomIconRevision?: string | null | undefined;
|
|
3079
|
+
worktreeSlug?: string | undefined;
|
|
2871
3080
|
title?: string | null | undefined;
|
|
2872
3081
|
pinnedAt?: string | null | undefined;
|
|
2873
3082
|
diffStat?: {
|
|
@@ -2957,11 +3166,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2957
3166
|
projectId: string;
|
|
2958
3167
|
projectDisplayName: string;
|
|
2959
3168
|
projectRootPath: string;
|
|
2960
|
-
projectKind: "
|
|
2961
|
-
workspaceKind: "worktree" | "
|
|
3169
|
+
projectKind: "directory" | "git" | "non_git";
|
|
3170
|
+
workspaceKind: "worktree" | "directory" | "checkout" | "local_checkout";
|
|
2962
3171
|
name: string;
|
|
2963
3172
|
archivingAt: string | null;
|
|
2964
|
-
status: "running" | "
|
|
3173
|
+
status: "running" | "done" | "failed" | "attention" | "needs_input";
|
|
2965
3174
|
statusEnteredAt: string | null;
|
|
2966
3175
|
activityAt: string | null;
|
|
2967
3176
|
scripts: {
|
|
@@ -2985,7 +3194,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2985
3194
|
publicProxyUrl?: string | null | undefined;
|
|
2986
3195
|
}[];
|
|
2987
3196
|
projectCustomName?: string | null | undefined;
|
|
3197
|
+
projectKanban?: {
|
|
3198
|
+
[x: string]: unknown;
|
|
3199
|
+
adapter: "github" | "jira";
|
|
3200
|
+
boardId?: string | null | undefined;
|
|
3201
|
+
} | null | undefined;
|
|
3202
|
+
projectCustomIconRevision?: string | null | undefined;
|
|
2988
3203
|
workspaceDirectory?: string | undefined;
|
|
3204
|
+
worktreeSlug?: string | undefined;
|
|
2989
3205
|
title?: string | null | undefined;
|
|
2990
3206
|
pinnedAt?: string | null | undefined;
|
|
2991
3207
|
diffStat?: {
|
|
@@ -3163,10 +3379,18 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3163
3379
|
projectKey: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3164
3380
|
projectDisplayName: import("zod").ZodString;
|
|
3165
3381
|
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3382
|
+
projectKanban: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
3383
|
+
adapter: import("zod").ZodEnum<{
|
|
3384
|
+
github: "github";
|
|
3385
|
+
jira: "jira";
|
|
3386
|
+
}>;
|
|
3387
|
+
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3388
|
+
}, import("zod/v4/core").$loose>>>;
|
|
3389
|
+
projectCustomIconRevision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3166
3390
|
projectRootPath: import("zod").ZodString;
|
|
3167
3391
|
projectKind: import("zod").ZodEnum<{
|
|
3168
|
-
git: "git";
|
|
3169
3392
|
directory: "directory";
|
|
3393
|
+
git: "git";
|
|
3170
3394
|
non_git: "non_git";
|
|
3171
3395
|
}>;
|
|
3172
3396
|
}, import("zod/v4/core").$strip>>;
|
|
@@ -3464,17 +3688,26 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3464
3688
|
projectId: import("zod").ZodString;
|
|
3465
3689
|
projectDisplayName: import("zod").ZodString;
|
|
3466
3690
|
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3691
|
+
projectKanban: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
3692
|
+
adapter: import("zod").ZodEnum<{
|
|
3693
|
+
github: "github";
|
|
3694
|
+
jira: "jira";
|
|
3695
|
+
}>;
|
|
3696
|
+
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3697
|
+
}, import("zod/v4/core").$loose>>>;
|
|
3698
|
+
projectCustomIconRevision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
3467
3699
|
projectRootPath: import("zod").ZodString;
|
|
3468
3700
|
workspaceDirectory: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3701
|
+
worktreeSlug: import("zod").ZodOptional<import("zod").ZodString>;
|
|
3469
3702
|
projectKind: import("zod").ZodEnum<{
|
|
3470
|
-
git: "git";
|
|
3471
3703
|
directory: "directory";
|
|
3704
|
+
git: "git";
|
|
3472
3705
|
non_git: "non_git";
|
|
3473
3706
|
}>;
|
|
3474
3707
|
workspaceKind: import("zod").ZodEnum<{
|
|
3475
3708
|
worktree: "worktree";
|
|
3476
|
-
checkout: "checkout";
|
|
3477
3709
|
directory: "directory";
|
|
3710
|
+
checkout: "checkout";
|
|
3478
3711
|
local_checkout: "local_checkout";
|
|
3479
3712
|
}>;
|
|
3480
3713
|
name: import("zod").ZodString;
|
|
@@ -3483,10 +3716,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3483
3716
|
archivingAt: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
3484
3717
|
status: import("zod").ZodEnum<{
|
|
3485
3718
|
running: "running";
|
|
3486
|
-
attention: "attention";
|
|
3487
|
-
needs_input: "needs_input";
|
|
3488
3719
|
done: "done";
|
|
3489
3720
|
failed: "failed";
|
|
3721
|
+
attention: "attention";
|
|
3722
|
+
needs_input: "needs_input";
|
|
3490
3723
|
}>;
|
|
3491
3724
|
statusEnteredAt: import("zod").ZodPipe<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>, import("zod").ZodTransform<string | null, string | null | undefined>>;
|
|
3492
3725
|
activityAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -3674,11 +3907,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3674
3907
|
projectId: string;
|
|
3675
3908
|
projectDisplayName: string;
|
|
3676
3909
|
projectRootPath: string;
|
|
3677
|
-
projectKind: "
|
|
3678
|
-
workspaceKind: "worktree" | "
|
|
3910
|
+
projectKind: "directory" | "git" | "non_git";
|
|
3911
|
+
workspaceKind: "worktree" | "directory" | "checkout" | "local_checkout";
|
|
3679
3912
|
name: string;
|
|
3680
3913
|
archivingAt: string | null;
|
|
3681
|
-
status: "running" | "
|
|
3914
|
+
status: "running" | "done" | "failed" | "attention" | "needs_input";
|
|
3682
3915
|
statusEnteredAt: string | null;
|
|
3683
3916
|
activityAt: string | null;
|
|
3684
3917
|
scripts: {
|
|
@@ -3702,6 +3935,13 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3702
3935
|
publicProxyUrl?: string | null | undefined;
|
|
3703
3936
|
}[];
|
|
3704
3937
|
projectCustomName?: string | null | undefined;
|
|
3938
|
+
projectKanban?: {
|
|
3939
|
+
[x: string]: unknown;
|
|
3940
|
+
adapter: "github" | "jira";
|
|
3941
|
+
boardId?: string | null | undefined;
|
|
3942
|
+
} | null | undefined;
|
|
3943
|
+
projectCustomIconRevision?: string | null | undefined;
|
|
3944
|
+
worktreeSlug?: string | undefined;
|
|
3705
3945
|
title?: string | null | undefined;
|
|
3706
3946
|
pinnedAt?: string | null | undefined;
|
|
3707
3947
|
diffStat?: {
|
|
@@ -3791,11 +4031,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3791
4031
|
projectId: string;
|
|
3792
4032
|
projectDisplayName: string;
|
|
3793
4033
|
projectRootPath: string;
|
|
3794
|
-
projectKind: "
|
|
3795
|
-
workspaceKind: "worktree" | "
|
|
4034
|
+
projectKind: "directory" | "git" | "non_git";
|
|
4035
|
+
workspaceKind: "worktree" | "directory" | "checkout" | "local_checkout";
|
|
3796
4036
|
name: string;
|
|
3797
4037
|
archivingAt: string | null;
|
|
3798
|
-
status: "running" | "
|
|
4038
|
+
status: "running" | "done" | "failed" | "attention" | "needs_input";
|
|
3799
4039
|
statusEnteredAt: string | null;
|
|
3800
4040
|
activityAt: string | null;
|
|
3801
4041
|
scripts: {
|
|
@@ -3819,7 +4059,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3819
4059
|
publicProxyUrl?: string | null | undefined;
|
|
3820
4060
|
}[];
|
|
3821
4061
|
projectCustomName?: string | null | undefined;
|
|
4062
|
+
projectKanban?: {
|
|
4063
|
+
[x: string]: unknown;
|
|
4064
|
+
adapter: "github" | "jira";
|
|
4065
|
+
boardId?: string | null | undefined;
|
|
4066
|
+
} | null | undefined;
|
|
4067
|
+
projectCustomIconRevision?: string | null | undefined;
|
|
3822
4068
|
workspaceDirectory?: string | undefined;
|
|
4069
|
+
worktreeSlug?: string | undefined;
|
|
3823
4070
|
title?: string | null | undefined;
|
|
3824
4071
|
pinnedAt?: string | null | undefined;
|
|
3825
4072
|
diffStat?: {
|
|
@@ -3954,6 +4201,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3954
4201
|
running: "running";
|
|
3955
4202
|
closed: "closed";
|
|
3956
4203
|
}>;
|
|
4204
|
+
activeTurn: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
4205
|
+
turnId: import("zod").ZodString;
|
|
4206
|
+
startedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4207
|
+
}, import("zod/v4/core").$strip>>>;
|
|
3957
4208
|
capabilities: import("zod").ZodType<import("../agent-types.js").AgentCapabilityFlags, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentCapabilityFlags, unknown>>;
|
|
3958
4209
|
currentModeId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3959
4210
|
availableModes: import("zod").ZodArray<import("zod").ZodType<import("../agent-types.js").AgentMode, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentMode, unknown>>>;
|
|
@@ -3970,8 +4221,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3970
4221
|
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
3971
4222
|
costCoverage: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
3972
4223
|
none: "none";
|
|
3973
|
-
complete: "complete";
|
|
3974
4224
|
partial: "partial";
|
|
4225
|
+
complete: "complete";
|
|
3975
4226
|
}>>;
|
|
3976
4227
|
}, import("zod/v4/core").$strip>>;
|
|
3977
4228
|
toolUseCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -4139,6 +4390,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4139
4390
|
running: "running";
|
|
4140
4391
|
closed: "closed";
|
|
4141
4392
|
}>;
|
|
4393
|
+
activeTurn: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
4394
|
+
turnId: import("zod").ZodString;
|
|
4395
|
+
startedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4396
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4142
4397
|
capabilities: import("zod").ZodType<import("../agent-types.js").AgentCapabilityFlags, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentCapabilityFlags, unknown>>;
|
|
4143
4398
|
currentModeId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4144
4399
|
availableModes: import("zod").ZodArray<import("zod").ZodType<import("../agent-types.js").AgentMode, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentMode, unknown>>>;
|
|
@@ -4155,8 +4410,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4155
4410
|
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4156
4411
|
costCoverage: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4157
4412
|
none: "none";
|
|
4158
|
-
complete: "complete";
|
|
4159
4413
|
partial: "partial";
|
|
4414
|
+
complete: "complete";
|
|
4160
4415
|
}>>;
|
|
4161
4416
|
}, import("zod/v4/core").$strip>>;
|
|
4162
4417
|
toolUseCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -4224,6 +4479,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4224
4479
|
}, import("zod/v4/core").$strip>>;
|
|
4225
4480
|
hasOlder: import("zod").ZodBoolean;
|
|
4226
4481
|
hasNewer: import("zod").ZodBoolean;
|
|
4482
|
+
mergeWindow: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
4227
4483
|
entries: import("zod").ZodArray<import("zod").ZodObject<{
|
|
4228
4484
|
provider: import("zod").ZodString;
|
|
4229
4485
|
item: import("zod").ZodType<import("../agent-types.js").AgentTimelineItem, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentTimelineItem, unknown>>;
|
|
@@ -4242,6 +4498,19 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4242
4498
|
}, import("zod/v4/core").$strip>>;
|
|
4243
4499
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4244
4500
|
}, import("zod/v4/core").$strip>;
|
|
4501
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4502
|
+
type: import("zod").ZodLiteral<"agent.timeline.list_prompts.response">;
|
|
4503
|
+
payload: import("zod").ZodObject<{
|
|
4504
|
+
requestId: import("zod").ZodString;
|
|
4505
|
+
agentId: import("zod").ZodString;
|
|
4506
|
+
epoch: import("zod").ZodString;
|
|
4507
|
+
prompts: import("zod").ZodArray<import("zod").ZodObject<{
|
|
4508
|
+
seq: import("zod").ZodNumber;
|
|
4509
|
+
timestamp: import("zod").ZodString;
|
|
4510
|
+
preview: import("zod").ZodString;
|
|
4511
|
+
}, import("zod/v4/core").$strip>>;
|
|
4512
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4513
|
+
}, import("zod/v4/core").$strip>;
|
|
4245
4514
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4246
4515
|
type: import("zod").ZodLiteral<"agent.provider_subagents.list.response">;
|
|
4247
4516
|
payload: import("zod").ZodObject<{
|
|
@@ -4255,14 +4524,15 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4255
4524
|
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4256
4525
|
status: import("zod").ZodEnum<{
|
|
4257
4526
|
running: "running";
|
|
4527
|
+
completed: "completed";
|
|
4258
4528
|
failed: "failed";
|
|
4259
4529
|
canceled: "canceled";
|
|
4260
|
-
completed: "completed";
|
|
4261
4530
|
}>;
|
|
4262
4531
|
createdAt: import("zod").ZodString;
|
|
4263
4532
|
updatedAt: import("zod").ZodString;
|
|
4264
4533
|
toolCallId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4265
4534
|
cwd: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4535
|
+
subtitle: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4266
4536
|
}, import("zod/v4/core").$strip>>;
|
|
4267
4537
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4268
4538
|
}, import("zod/v4/core").$strip>;
|
|
@@ -4308,14 +4578,15 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4308
4578
|
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4309
4579
|
status: import("zod").ZodEnum<{
|
|
4310
4580
|
running: "running";
|
|
4581
|
+
completed: "completed";
|
|
4311
4582
|
failed: "failed";
|
|
4312
4583
|
canceled: "canceled";
|
|
4313
|
-
completed: "completed";
|
|
4314
4584
|
}>;
|
|
4315
4585
|
createdAt: import("zod").ZodString;
|
|
4316
4586
|
updatedAt: import("zod").ZodString;
|
|
4317
4587
|
toolCallId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4318
4588
|
cwd: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4589
|
+
subtitle: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4319
4590
|
}, import("zod/v4/core").$strip>;
|
|
4320
4591
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
4321
4592
|
kind: import("zod").ZodLiteral<"timeline">;
|
|
@@ -4443,6 +4714,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4443
4714
|
running: "running";
|
|
4444
4715
|
closed: "closed";
|
|
4445
4716
|
}>;
|
|
4717
|
+
activeTurn: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
4718
|
+
turnId: import("zod").ZodString;
|
|
4719
|
+
startedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4720
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4446
4721
|
capabilities: import("zod").ZodType<import("../agent-types.js").AgentCapabilityFlags, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentCapabilityFlags, unknown>>;
|
|
4447
4722
|
currentModeId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4448
4723
|
availableModes: import("zod").ZodArray<import("zod").ZodType<import("../agent-types.js").AgentMode, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentMode, unknown>>>;
|
|
@@ -4459,8 +4734,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4459
4734
|
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4460
4735
|
costCoverage: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4461
4736
|
none: "none";
|
|
4462
|
-
complete: "complete";
|
|
4463
4737
|
partial: "partial";
|
|
4738
|
+
complete: "complete";
|
|
4464
4739
|
}>>;
|
|
4465
4740
|
}, import("zod/v4/core").$strip>>;
|
|
4466
4741
|
toolUseCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -4551,6 +4826,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4551
4826
|
running: "running";
|
|
4552
4827
|
closed: "closed";
|
|
4553
4828
|
}>;
|
|
4829
|
+
activeTurn: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
4830
|
+
turnId: import("zod").ZodString;
|
|
4831
|
+
startedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4832
|
+
}, import("zod/v4/core").$strip>>>;
|
|
4554
4833
|
capabilities: import("zod").ZodType<import("../agent-types.js").AgentCapabilityFlags, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentCapabilityFlags, unknown>>;
|
|
4555
4834
|
currentModeId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
4556
4835
|
availableModes: import("zod").ZodArray<import("zod").ZodType<import("../agent-types.js").AgentMode, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentMode, unknown>>>;
|
|
@@ -4567,8 +4846,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4567
4846
|
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
4568
4847
|
costCoverage: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
4569
4848
|
none: "none";
|
|
4570
|
-
complete: "complete";
|
|
4571
4849
|
partial: "partial";
|
|
4850
|
+
complete: "complete";
|
|
4572
4851
|
}>>;
|
|
4573
4852
|
}, import("zod/v4/core").$strip>>;
|
|
4574
4853
|
toolUseCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -4617,17 +4896,26 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4617
4896
|
projectId: import("zod").ZodString;
|
|
4618
4897
|
projectDisplayName: import("zod").ZodString;
|
|
4619
4898
|
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4899
|
+
projectKanban: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
4900
|
+
adapter: import("zod").ZodEnum<{
|
|
4901
|
+
github: "github";
|
|
4902
|
+
jira: "jira";
|
|
4903
|
+
}>;
|
|
4904
|
+
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4905
|
+
}, import("zod/v4/core").$loose>>>;
|
|
4906
|
+
projectCustomIconRevision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4620
4907
|
projectRootPath: import("zod").ZodString;
|
|
4621
4908
|
workspaceDirectory: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4909
|
+
worktreeSlug: import("zod").ZodOptional<import("zod").ZodString>;
|
|
4622
4910
|
projectKind: import("zod").ZodEnum<{
|
|
4623
|
-
git: "git";
|
|
4624
4911
|
directory: "directory";
|
|
4912
|
+
git: "git";
|
|
4625
4913
|
non_git: "non_git";
|
|
4626
4914
|
}>;
|
|
4627
4915
|
workspaceKind: import("zod").ZodEnum<{
|
|
4628
4916
|
worktree: "worktree";
|
|
4629
|
-
checkout: "checkout";
|
|
4630
4917
|
directory: "directory";
|
|
4918
|
+
checkout: "checkout";
|
|
4631
4919
|
local_checkout: "local_checkout";
|
|
4632
4920
|
}>;
|
|
4633
4921
|
name: import("zod").ZodString;
|
|
@@ -4636,10 +4924,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4636
4924
|
archivingAt: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
4637
4925
|
status: import("zod").ZodEnum<{
|
|
4638
4926
|
running: "running";
|
|
4639
|
-
attention: "attention";
|
|
4640
|
-
needs_input: "needs_input";
|
|
4641
4927
|
done: "done";
|
|
4642
4928
|
failed: "failed";
|
|
4929
|
+
attention: "attention";
|
|
4930
|
+
needs_input: "needs_input";
|
|
4643
4931
|
}>;
|
|
4644
4932
|
statusEnteredAt: import("zod").ZodPipe<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>, import("zod").ZodTransform<string | null, string | null | undefined>>;
|
|
4645
4933
|
activityAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -4827,11 +5115,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4827
5115
|
projectId: string;
|
|
4828
5116
|
projectDisplayName: string;
|
|
4829
5117
|
projectRootPath: string;
|
|
4830
|
-
projectKind: "
|
|
4831
|
-
workspaceKind: "worktree" | "
|
|
5118
|
+
projectKind: "directory" | "git" | "non_git";
|
|
5119
|
+
workspaceKind: "worktree" | "directory" | "checkout" | "local_checkout";
|
|
4832
5120
|
name: string;
|
|
4833
5121
|
archivingAt: string | null;
|
|
4834
|
-
status: "running" | "
|
|
5122
|
+
status: "running" | "done" | "failed" | "attention" | "needs_input";
|
|
4835
5123
|
statusEnteredAt: string | null;
|
|
4836
5124
|
activityAt: string | null;
|
|
4837
5125
|
scripts: {
|
|
@@ -4855,6 +5143,13 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4855
5143
|
publicProxyUrl?: string | null | undefined;
|
|
4856
5144
|
}[];
|
|
4857
5145
|
projectCustomName?: string | null | undefined;
|
|
5146
|
+
projectKanban?: {
|
|
5147
|
+
[x: string]: unknown;
|
|
5148
|
+
adapter: "github" | "jira";
|
|
5149
|
+
boardId?: string | null | undefined;
|
|
5150
|
+
} | null | undefined;
|
|
5151
|
+
projectCustomIconRevision?: string | null | undefined;
|
|
5152
|
+
worktreeSlug?: string | undefined;
|
|
4858
5153
|
title?: string | null | undefined;
|
|
4859
5154
|
pinnedAt?: string | null | undefined;
|
|
4860
5155
|
diffStat?: {
|
|
@@ -4944,11 +5239,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4944
5239
|
projectId: string;
|
|
4945
5240
|
projectDisplayName: string;
|
|
4946
5241
|
projectRootPath: string;
|
|
4947
|
-
projectKind: "
|
|
4948
|
-
workspaceKind: "worktree" | "
|
|
5242
|
+
projectKind: "directory" | "git" | "non_git";
|
|
5243
|
+
workspaceKind: "worktree" | "directory" | "checkout" | "local_checkout";
|
|
4949
5244
|
name: string;
|
|
4950
5245
|
archivingAt: string | null;
|
|
4951
|
-
status: "running" | "
|
|
5246
|
+
status: "running" | "done" | "failed" | "attention" | "needs_input";
|
|
4952
5247
|
statusEnteredAt: string | null;
|
|
4953
5248
|
activityAt: string | null;
|
|
4954
5249
|
scripts: {
|
|
@@ -4972,7 +5267,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4972
5267
|
publicProxyUrl?: string | null | undefined;
|
|
4973
5268
|
}[];
|
|
4974
5269
|
projectCustomName?: string | null | undefined;
|
|
5270
|
+
projectKanban?: {
|
|
5271
|
+
[x: string]: unknown;
|
|
5272
|
+
adapter: "github" | "jira";
|
|
5273
|
+
boardId?: string | null | undefined;
|
|
5274
|
+
} | null | undefined;
|
|
5275
|
+
projectCustomIconRevision?: string | null | undefined;
|
|
4975
5276
|
workspaceDirectory?: string | undefined;
|
|
5277
|
+
worktreeSlug?: string | undefined;
|
|
4976
5278
|
title?: string | null | undefined;
|
|
4977
5279
|
pinnedAt?: string | null | undefined;
|
|
4978
5280
|
diffStat?: {
|
|
@@ -5137,9 +5439,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5137
5439
|
requestId: import("zod").ZodString;
|
|
5138
5440
|
status: import("zod").ZodObject<{
|
|
5139
5441
|
state: import("zod").ZodEnum<{
|
|
5442
|
+
connecting: "connecting";
|
|
5140
5443
|
connected: "connected";
|
|
5141
5444
|
not_connected: "not_connected";
|
|
5142
|
-
connecting: "connecting";
|
|
5143
5445
|
reconnecting: "reconnecting";
|
|
5144
5446
|
disconnecting: "disconnecting";
|
|
5145
5447
|
revoked: "revoked";
|
|
@@ -5157,9 +5459,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5157
5459
|
requestId: import("zod").ZodString;
|
|
5158
5460
|
status: import("zod").ZodObject<{
|
|
5159
5461
|
state: import("zod").ZodEnum<{
|
|
5462
|
+
connecting: "connecting";
|
|
5160
5463
|
connected: "connected";
|
|
5161
5464
|
not_connected: "not_connected";
|
|
5162
|
-
connecting: "connecting";
|
|
5163
5465
|
reconnecting: "reconnecting";
|
|
5164
5466
|
disconnecting: "disconnecting";
|
|
5165
5467
|
revoked: "revoked";
|
|
@@ -5177,9 +5479,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5177
5479
|
requestId: import("zod").ZodString;
|
|
5178
5480
|
status: import("zod").ZodObject<{
|
|
5179
5481
|
state: import("zod").ZodEnum<{
|
|
5482
|
+
connecting: "connecting";
|
|
5180
5483
|
connected: "connected";
|
|
5181
5484
|
not_connected: "not_connected";
|
|
5182
|
-
connecting: "connecting";
|
|
5183
5485
|
reconnecting: "reconnecting";
|
|
5184
5486
|
disconnecting: "disconnecting";
|
|
5185
5487
|
revoked: "revoked";
|
|
@@ -5203,16 +5505,19 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5203
5505
|
payload: import("zod").ZodObject<{
|
|
5204
5506
|
requestId: import("zod").ZodString;
|
|
5205
5507
|
config: import("zod").ZodObject<{
|
|
5508
|
+
relay: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5509
|
+
enabled: import("zod").ZodBoolean;
|
|
5510
|
+
}, import("zod/v4/core").$loose>>;
|
|
5206
5511
|
mcp: import("zod").ZodObject<{
|
|
5207
5512
|
injectIntoAgents: import("zod").ZodBoolean;
|
|
5208
5513
|
toolGroups: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
5209
|
-
artifacts: "artifacts";
|
|
5210
5514
|
preview: "preview";
|
|
5211
5515
|
browser: "browser";
|
|
5212
5516
|
web: "web";
|
|
5213
5517
|
agents: "agents";
|
|
5214
5518
|
terminals: "terminals";
|
|
5215
5519
|
schedules: "schedules";
|
|
5520
|
+
artifacts: "artifacts";
|
|
5216
5521
|
widgets: "widgets";
|
|
5217
5522
|
workspace: "workspace";
|
|
5218
5523
|
}>>>;
|
|
@@ -5226,6 +5531,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5226
5531
|
notifyOnFinishDefault: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5227
5532
|
todoNudge: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5228
5533
|
todoReconcileOnIdle: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5534
|
+
stallGuardThreshold: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5229
5535
|
}, import("zod/v4/core").$loose>>;
|
|
5230
5536
|
providers: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
5231
5537
|
enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -5236,13 +5542,13 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5236
5542
|
isDefault: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5237
5543
|
}, import("zod/v4/core").$loose>>>;
|
|
5238
5544
|
ottoToolGroups: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
5239
|
-
artifacts: "artifacts";
|
|
5240
5545
|
preview: "preview";
|
|
5241
5546
|
browser: "browser";
|
|
5242
5547
|
web: "web";
|
|
5243
5548
|
agents: "agents";
|
|
5244
5549
|
terminals: "terminals";
|
|
5245
5550
|
schedules: "schedules";
|
|
5551
|
+
artifacts: "artifacts";
|
|
5246
5552
|
widgets: "widgets";
|
|
5247
5553
|
workspace: "workspace";
|
|
5248
5554
|
}>>>;
|
|
@@ -5257,6 +5563,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5257
5563
|
preferWriterPersonalities: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5258
5564
|
}, import("zod/v4/core").$loose>>;
|
|
5259
5565
|
autoArchiveAfterMerge: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5566
|
+
gitFetch: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5567
|
+
enabled: import("zod").ZodBoolean;
|
|
5568
|
+
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>]>;
|
|
5569
|
+
}, import("zod/v4/core").$strip>>;
|
|
5260
5570
|
hideMergeIntoBaseAction: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5261
5571
|
attachmentImageMaxAgeDays: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5262
5572
|
attachmentImageMaxTotalMb: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
@@ -5312,6 +5622,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5312
5622
|
email: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5313
5623
|
apiToken: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5314
5624
|
}, import("zod/v4/core").$loose>>;
|
|
5625
|
+
atlassian: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5626
|
+
email: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5627
|
+
apiToken: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5628
|
+
jiraSiteUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5629
|
+
}, import("zod/v4/core").$loose>>;
|
|
5315
5630
|
}, import("zod/v4/core").$loose>>;
|
|
5316
5631
|
}, import("zod/v4/core").$loose>>;
|
|
5317
5632
|
agentPersonalities: import("zod").ZodDefault<import("zod").ZodObject<{
|
|
@@ -5373,6 +5688,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5373
5688
|
lsp: import("zod").ZodDefault<import("zod").ZodObject<{
|
|
5374
5689
|
enabled: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5375
5690
|
languages: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>>;
|
|
5691
|
+
csharpProjectScope: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
5692
|
+
solution: "solution";
|
|
5693
|
+
allProjects: "allProjects";
|
|
5694
|
+
}>>;
|
|
5376
5695
|
maxRunningServers: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5377
5696
|
idleMinutes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5378
5697
|
backgroundIdleMinutes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
@@ -5401,6 +5720,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5401
5720
|
port: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5402
5721
|
}, import("zod/v4/core").$loose>>;
|
|
5403
5722
|
defaultModel: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5723
|
+
maxLoadedModels: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5724
|
+
lockedModels: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString>>;
|
|
5404
5725
|
runtime: import("zod").ZodDefault<import("zod").ZodObject<{
|
|
5405
5726
|
source: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
5406
5727
|
auto: "auto";
|
|
@@ -5408,6 +5729,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5408
5729
|
lmstudio: "lmstudio";
|
|
5409
5730
|
}>>;
|
|
5410
5731
|
path: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5732
|
+
logVerbosity: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5411
5733
|
}, import("zod/v4/core").$strip>>;
|
|
5412
5734
|
lockModel: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5413
5735
|
allowRemoteConfig: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
@@ -5475,6 +5797,48 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5475
5797
|
}, import("zod/v4/core").$strip>>>;
|
|
5476
5798
|
order: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5477
5799
|
}, import("zod/v4/core").$strip>>>;
|
|
5800
|
+
kanban: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5801
|
+
providers: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5802
|
+
github: import("zod").ZodObject<{
|
|
5803
|
+
token: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5804
|
+
}, import("zod/v4/core").$loose>;
|
|
5805
|
+
jira: import("zod").ZodObject<{
|
|
5806
|
+
token: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5807
|
+
}, import("zod/v4/core").$loose>;
|
|
5808
|
+
}, import("zod/v4/core").$loose>>;
|
|
5809
|
+
}, import("zod/v4/core").$loose>>;
|
|
5810
|
+
agentProfiles: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
5811
|
+
id: import("zod").ZodString;
|
|
5812
|
+
name: import("zod").ZodString;
|
|
5813
|
+
icon: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5814
|
+
color: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5815
|
+
provider: import("zod").ZodString;
|
|
5816
|
+
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5817
|
+
modeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5818
|
+
thinkingOptionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5819
|
+
effortLevel: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5820
|
+
featureValues: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
5821
|
+
notes: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5822
|
+
personalityPrompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5823
|
+
respectGlobalAppendPrompt: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5824
|
+
roles: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
5825
|
+
spinner: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5826
|
+
glowA: import("zod").ZodString;
|
|
5827
|
+
glowB: import("zod").ZodString;
|
|
5828
|
+
}, import("zod/v4/core").$loose>>;
|
|
5829
|
+
voice: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5830
|
+
provider: import("zod").ZodString;
|
|
5831
|
+
model: import("zod").ZodString;
|
|
5832
|
+
name: import("zod").ZodString;
|
|
5833
|
+
}, import("zod/v4/core").$loose>>;
|
|
5834
|
+
voiceCues: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5835
|
+
join: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
5836
|
+
thinking: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
5837
|
+
waiting: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
5838
|
+
done: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
5839
|
+
}, import("zod/v4/core").$loose>>;
|
|
5840
|
+
memoryEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5841
|
+
}, import("zod/v4/core").$loose>>>;
|
|
5478
5842
|
}, import("zod/v4/core").$loose>;
|
|
5479
5843
|
}, import("zod/v4/core").$loose>;
|
|
5480
5844
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -5482,16 +5846,19 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5482
5846
|
payload: import("zod").ZodObject<{
|
|
5483
5847
|
requestId: import("zod").ZodString;
|
|
5484
5848
|
config: import("zod").ZodObject<{
|
|
5849
|
+
relay: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5850
|
+
enabled: import("zod").ZodBoolean;
|
|
5851
|
+
}, import("zod/v4/core").$loose>>;
|
|
5485
5852
|
mcp: import("zod").ZodObject<{
|
|
5486
5853
|
injectIntoAgents: import("zod").ZodBoolean;
|
|
5487
5854
|
toolGroups: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
5488
|
-
artifacts: "artifacts";
|
|
5489
5855
|
preview: "preview";
|
|
5490
5856
|
browser: "browser";
|
|
5491
5857
|
web: "web";
|
|
5492
5858
|
agents: "agents";
|
|
5493
5859
|
terminals: "terminals";
|
|
5494
5860
|
schedules: "schedules";
|
|
5861
|
+
artifacts: "artifacts";
|
|
5495
5862
|
widgets: "widgets";
|
|
5496
5863
|
workspace: "workspace";
|
|
5497
5864
|
}>>>;
|
|
@@ -5505,6 +5872,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5505
5872
|
notifyOnFinishDefault: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5506
5873
|
todoNudge: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5507
5874
|
todoReconcileOnIdle: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5875
|
+
stallGuardThreshold: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5508
5876
|
}, import("zod/v4/core").$loose>>;
|
|
5509
5877
|
providers: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodObject<{
|
|
5510
5878
|
enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -5515,13 +5883,13 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5515
5883
|
isDefault: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5516
5884
|
}, import("zod/v4/core").$loose>>>;
|
|
5517
5885
|
ottoToolGroups: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEnum<{
|
|
5518
|
-
artifacts: "artifacts";
|
|
5519
5886
|
preview: "preview";
|
|
5520
5887
|
browser: "browser";
|
|
5521
5888
|
web: "web";
|
|
5522
5889
|
agents: "agents";
|
|
5523
5890
|
terminals: "terminals";
|
|
5524
5891
|
schedules: "schedules";
|
|
5892
|
+
artifacts: "artifacts";
|
|
5525
5893
|
widgets: "widgets";
|
|
5526
5894
|
workspace: "workspace";
|
|
5527
5895
|
}>>>;
|
|
@@ -5536,6 +5904,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5536
5904
|
preferWriterPersonalities: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5537
5905
|
}, import("zod/v4/core").$loose>>;
|
|
5538
5906
|
autoArchiveAfterMerge: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5907
|
+
gitFetch: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5908
|
+
enabled: import("zod").ZodBoolean;
|
|
5909
|
+
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>]>;
|
|
5910
|
+
}, import("zod/v4/core").$strip>>;
|
|
5539
5911
|
hideMergeIntoBaseAction: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5540
5912
|
attachmentImageMaxAgeDays: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5541
5913
|
attachmentImageMaxTotalMb: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
@@ -5591,6 +5963,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5591
5963
|
email: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5592
5964
|
apiToken: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5593
5965
|
}, import("zod/v4/core").$loose>>;
|
|
5966
|
+
atlassian: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
5967
|
+
email: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5968
|
+
apiToken: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5969
|
+
jiraSiteUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5970
|
+
}, import("zod/v4/core").$loose>>;
|
|
5594
5971
|
}, import("zod/v4/core").$loose>>;
|
|
5595
5972
|
}, import("zod/v4/core").$loose>>;
|
|
5596
5973
|
agentPersonalities: import("zod").ZodDefault<import("zod").ZodObject<{
|
|
@@ -5652,6 +6029,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5652
6029
|
lsp: import("zod").ZodDefault<import("zod").ZodObject<{
|
|
5653
6030
|
enabled: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5654
6031
|
languages: import("zod").ZodDefault<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodBoolean>>;
|
|
6032
|
+
csharpProjectScope: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
6033
|
+
solution: "solution";
|
|
6034
|
+
allProjects: "allProjects";
|
|
6035
|
+
}>>;
|
|
5655
6036
|
maxRunningServers: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5656
6037
|
idleMinutes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5657
6038
|
backgroundIdleMinutes: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
@@ -5680,6 +6061,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5680
6061
|
port: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5681
6062
|
}, import("zod/v4/core").$loose>>;
|
|
5682
6063
|
defaultModel: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6064
|
+
maxLoadedModels: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
6065
|
+
lockedModels: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString>>;
|
|
5683
6066
|
runtime: import("zod").ZodDefault<import("zod").ZodObject<{
|
|
5684
6067
|
source: import("zod").ZodDefault<import("zod").ZodEnum<{
|
|
5685
6068
|
auto: "auto";
|
|
@@ -5687,6 +6070,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5687
6070
|
lmstudio: "lmstudio";
|
|
5688
6071
|
}>>;
|
|
5689
6072
|
path: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6073
|
+
logVerbosity: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
5690
6074
|
}, import("zod/v4/core").$strip>>;
|
|
5691
6075
|
lockModel: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
5692
6076
|
allowRemoteConfig: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
@@ -5754,6 +6138,48 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5754
6138
|
}, import("zod/v4/core").$strip>>>;
|
|
5755
6139
|
order: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
5756
6140
|
}, import("zod/v4/core").$strip>>>;
|
|
6141
|
+
kanban: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6142
|
+
providers: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6143
|
+
github: import("zod").ZodObject<{
|
|
6144
|
+
token: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6145
|
+
}, import("zod/v4/core").$loose>;
|
|
6146
|
+
jira: import("zod").ZodObject<{
|
|
6147
|
+
token: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6148
|
+
}, import("zod/v4/core").$loose>;
|
|
6149
|
+
}, import("zod/v4/core").$loose>>;
|
|
6150
|
+
}, import("zod/v4/core").$loose>>;
|
|
6151
|
+
agentProfiles: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6152
|
+
id: import("zod").ZodString;
|
|
6153
|
+
name: import("zod").ZodString;
|
|
6154
|
+
icon: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6155
|
+
color: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6156
|
+
provider: import("zod").ZodString;
|
|
6157
|
+
model: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6158
|
+
modeId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6159
|
+
thinkingOptionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6160
|
+
effortLevel: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6161
|
+
featureValues: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
6162
|
+
notes: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6163
|
+
personalityPrompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6164
|
+
respectGlobalAppendPrompt: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6165
|
+
roles: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
6166
|
+
spinner: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6167
|
+
glowA: import("zod").ZodString;
|
|
6168
|
+
glowB: import("zod").ZodString;
|
|
6169
|
+
}, import("zod/v4/core").$loose>>;
|
|
6170
|
+
voice: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6171
|
+
provider: import("zod").ZodString;
|
|
6172
|
+
model: import("zod").ZodString;
|
|
6173
|
+
name: import("zod").ZodString;
|
|
6174
|
+
}, import("zod/v4/core").$loose>>;
|
|
6175
|
+
voiceCues: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
6176
|
+
join: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
6177
|
+
thinking: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
6178
|
+
waiting: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
6179
|
+
done: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
6180
|
+
}, import("zod/v4/core").$loose>>;
|
|
6181
|
+
memoryEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6182
|
+
}, import("zod/v4/core").$loose>>>;
|
|
5757
6183
|
}, import("zod/v4/core").$loose>;
|
|
5758
6184
|
}, import("zod/v4/core").$loose>;
|
|
5759
6185
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -5799,14 +6225,689 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5799
6225
|
error: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
5800
6226
|
}, import("zod/v4/core").$strip>;
|
|
5801
6227
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5802
|
-
type: import("zod").ZodLiteral<"
|
|
6228
|
+
type: import("zod").ZodLiteral<"communications.get_overview.response">;
|
|
5803
6229
|
payload: import("zod").ZodObject<{
|
|
5804
|
-
|
|
5805
|
-
|
|
5806
|
-
|
|
5807
|
-
|
|
5808
|
-
|
|
5809
|
-
|
|
6230
|
+
overview: import("zod").ZodObject<{
|
|
6231
|
+
providers: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6232
|
+
providerId: import("zod").ZodString;
|
|
6233
|
+
label: import("zod").ZodString;
|
|
6234
|
+
connectionState: import("zod").ZodEnum<{
|
|
6235
|
+
error: "error";
|
|
6236
|
+
disconnected: "disconnected";
|
|
6237
|
+
connecting: "connecting";
|
|
6238
|
+
connected: "connected";
|
|
6239
|
+
reauth_required: "reauth_required";
|
|
6240
|
+
}>;
|
|
6241
|
+
accountLabel: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6242
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6243
|
+
enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6244
|
+
}, import("zod/v4/core").$strip>>;
|
|
6245
|
+
conversations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6246
|
+
providerId: import("zod").ZodString;
|
|
6247
|
+
conversationId: import("zod").ZodString;
|
|
6248
|
+
kind: import("zod").ZodEnum<{
|
|
6249
|
+
unknown: "unknown";
|
|
6250
|
+
direct: "direct";
|
|
6251
|
+
group: "group";
|
|
6252
|
+
channel: "channel";
|
|
6253
|
+
}>;
|
|
6254
|
+
title: import("zod").ZodString;
|
|
6255
|
+
preview: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6256
|
+
updatedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6257
|
+
unreadCount: import("zod").ZodNumber;
|
|
6258
|
+
favorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6259
|
+
canFavorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6260
|
+
}, import("zod/v4/core").$strip>>;
|
|
6261
|
+
unreadCount: import("zod").ZodNumber;
|
|
6262
|
+
}, import("zod/v4/core").$strip>;
|
|
6263
|
+
requestId: import("zod").ZodString;
|
|
6264
|
+
}, import("zod/v4/core").$strip>;
|
|
6265
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6266
|
+
type: import("zod").ZodLiteral<"communications.inbox.get_home.response">;
|
|
6267
|
+
payload: import("zod").ZodObject<{
|
|
6268
|
+
home: import("zod").ZodObject<{
|
|
6269
|
+
provider: import("zod").ZodObject<{
|
|
6270
|
+
providerId: import("zod").ZodString;
|
|
6271
|
+
label: import("zod").ZodString;
|
|
6272
|
+
connectionState: import("zod").ZodEnum<{
|
|
6273
|
+
error: "error";
|
|
6274
|
+
disconnected: "disconnected";
|
|
6275
|
+
connecting: "connecting";
|
|
6276
|
+
connected: "connected";
|
|
6277
|
+
reauth_required: "reauth_required";
|
|
6278
|
+
}>;
|
|
6279
|
+
accountLabel: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6280
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6281
|
+
enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6282
|
+
}, import("zod/v4/core").$strip>;
|
|
6283
|
+
sections: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6284
|
+
id: import("zod").ZodString;
|
|
6285
|
+
label: import("zod").ZodString;
|
|
6286
|
+
conversations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6287
|
+
providerId: import("zod").ZodString;
|
|
6288
|
+
conversationId: import("zod").ZodString;
|
|
6289
|
+
kind: import("zod").ZodEnum<{
|
|
6290
|
+
unknown: "unknown";
|
|
6291
|
+
direct: "direct";
|
|
6292
|
+
group: "group";
|
|
6293
|
+
channel: "channel";
|
|
6294
|
+
}>;
|
|
6295
|
+
title: import("zod").ZodString;
|
|
6296
|
+
preview: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6297
|
+
updatedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6298
|
+
unreadCount: import("zod").ZodNumber;
|
|
6299
|
+
favorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6300
|
+
canFavorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6301
|
+
}, import("zod/v4/core").$strip>>;
|
|
6302
|
+
collections: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6303
|
+
providerId: import("zod").ZodString;
|
|
6304
|
+
collectionId: import("zod").ZodString;
|
|
6305
|
+
kind: import("zod").ZodEnum<{
|
|
6306
|
+
unknown: "unknown";
|
|
6307
|
+
space: "space";
|
|
6308
|
+
folder: "folder";
|
|
6309
|
+
}>;
|
|
6310
|
+
title: import("zod").ZodString;
|
|
6311
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6312
|
+
}, import("zod/v4/core").$strip>>;
|
|
6313
|
+
}, import("zod/v4/core").$strip>>;
|
|
6314
|
+
notifications: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6315
|
+
notificationId: import("zod").ZodString;
|
|
6316
|
+
conversation: import("zod").ZodObject<{
|
|
6317
|
+
providerId: import("zod").ZodString;
|
|
6318
|
+
conversationId: import("zod").ZodString;
|
|
6319
|
+
kind: import("zod").ZodEnum<{
|
|
6320
|
+
unknown: "unknown";
|
|
6321
|
+
direct: "direct";
|
|
6322
|
+
group: "group";
|
|
6323
|
+
channel: "channel";
|
|
6324
|
+
}>;
|
|
6325
|
+
title: import("zod").ZodString;
|
|
6326
|
+
preview: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6327
|
+
updatedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6328
|
+
unreadCount: import("zod").ZodNumber;
|
|
6329
|
+
favorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6330
|
+
canFavorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6331
|
+
}, import("zod/v4/core").$strip>;
|
|
6332
|
+
}, import("zod/v4/core").$strip>>>;
|
|
6333
|
+
}, import("zod/v4/core").$strip>;
|
|
6334
|
+
requestId: import("zod").ZodString;
|
|
6335
|
+
}, import("zod/v4/core").$strip>;
|
|
6336
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6337
|
+
type: import("zod").ZodLiteral<"communications.inbox.search.response">;
|
|
6338
|
+
payload: import("zod").ZodObject<{
|
|
6339
|
+
results: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6340
|
+
providerId: import("zod").ZodString;
|
|
6341
|
+
category: import("zod").ZodEnum<{
|
|
6342
|
+
conversation: "conversation";
|
|
6343
|
+
person: "person";
|
|
6344
|
+
}>;
|
|
6345
|
+
conversation: import("zod").ZodObject<{
|
|
6346
|
+
providerId: import("zod").ZodString;
|
|
6347
|
+
conversationId: import("zod").ZodString;
|
|
6348
|
+
kind: import("zod").ZodEnum<{
|
|
6349
|
+
unknown: "unknown";
|
|
6350
|
+
direct: "direct";
|
|
6351
|
+
group: "group";
|
|
6352
|
+
channel: "channel";
|
|
6353
|
+
}>;
|
|
6354
|
+
title: import("zod").ZodString;
|
|
6355
|
+
preview: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6356
|
+
updatedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6357
|
+
unreadCount: import("zod").ZodNumber;
|
|
6358
|
+
favorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6359
|
+
canFavorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6360
|
+
}, import("zod/v4/core").$strip>;
|
|
6361
|
+
detail: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6362
|
+
presenceStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
6363
|
+
unknown: "unknown";
|
|
6364
|
+
available: "available";
|
|
6365
|
+
busy: "busy";
|
|
6366
|
+
do_not_disturb: "do_not_disturb";
|
|
6367
|
+
away: "away";
|
|
6368
|
+
out_of_office: "out_of_office";
|
|
6369
|
+
}>>>;
|
|
6370
|
+
presenceLabel: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6371
|
+
}, import("zod/v4/core").$strip>>;
|
|
6372
|
+
requestId: import("zod").ZodString;
|
|
6373
|
+
}, import("zod/v4/core").$strip>;
|
|
6374
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6375
|
+
type: import("zod").ZodLiteral<"communications.inbox.set_favorite.response">;
|
|
6376
|
+
payload: import("zod").ZodObject<{
|
|
6377
|
+
home: import("zod").ZodObject<{
|
|
6378
|
+
provider: import("zod").ZodObject<{
|
|
6379
|
+
providerId: import("zod").ZodString;
|
|
6380
|
+
label: import("zod").ZodString;
|
|
6381
|
+
connectionState: import("zod").ZodEnum<{
|
|
6382
|
+
error: "error";
|
|
6383
|
+
disconnected: "disconnected";
|
|
6384
|
+
connecting: "connecting";
|
|
6385
|
+
connected: "connected";
|
|
6386
|
+
reauth_required: "reauth_required";
|
|
6387
|
+
}>;
|
|
6388
|
+
accountLabel: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6389
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6390
|
+
enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6391
|
+
}, import("zod/v4/core").$strip>;
|
|
6392
|
+
sections: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6393
|
+
id: import("zod").ZodString;
|
|
6394
|
+
label: import("zod").ZodString;
|
|
6395
|
+
conversations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6396
|
+
providerId: import("zod").ZodString;
|
|
6397
|
+
conversationId: import("zod").ZodString;
|
|
6398
|
+
kind: import("zod").ZodEnum<{
|
|
6399
|
+
unknown: "unknown";
|
|
6400
|
+
direct: "direct";
|
|
6401
|
+
group: "group";
|
|
6402
|
+
channel: "channel";
|
|
6403
|
+
}>;
|
|
6404
|
+
title: import("zod").ZodString;
|
|
6405
|
+
preview: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6406
|
+
updatedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6407
|
+
unreadCount: import("zod").ZodNumber;
|
|
6408
|
+
favorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6409
|
+
canFavorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6410
|
+
}, import("zod/v4/core").$strip>>;
|
|
6411
|
+
collections: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6412
|
+
providerId: import("zod").ZodString;
|
|
6413
|
+
collectionId: import("zod").ZodString;
|
|
6414
|
+
kind: import("zod").ZodEnum<{
|
|
6415
|
+
unknown: "unknown";
|
|
6416
|
+
space: "space";
|
|
6417
|
+
folder: "folder";
|
|
6418
|
+
}>;
|
|
6419
|
+
title: import("zod").ZodString;
|
|
6420
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6421
|
+
}, import("zod/v4/core").$strip>>;
|
|
6422
|
+
}, import("zod/v4/core").$strip>>;
|
|
6423
|
+
notifications: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6424
|
+
notificationId: import("zod").ZodString;
|
|
6425
|
+
conversation: import("zod").ZodObject<{
|
|
6426
|
+
providerId: import("zod").ZodString;
|
|
6427
|
+
conversationId: import("zod").ZodString;
|
|
6428
|
+
kind: import("zod").ZodEnum<{
|
|
6429
|
+
unknown: "unknown";
|
|
6430
|
+
direct: "direct";
|
|
6431
|
+
group: "group";
|
|
6432
|
+
channel: "channel";
|
|
6433
|
+
}>;
|
|
6434
|
+
title: import("zod").ZodString;
|
|
6435
|
+
preview: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6436
|
+
updatedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6437
|
+
unreadCount: import("zod").ZodNumber;
|
|
6438
|
+
favorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6439
|
+
canFavorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6440
|
+
}, import("zod/v4/core").$strip>;
|
|
6441
|
+
}, import("zod/v4/core").$strip>>>;
|
|
6442
|
+
}, import("zod/v4/core").$strip>;
|
|
6443
|
+
requestId: import("zod").ZodString;
|
|
6444
|
+
}, import("zod/v4/core").$strip>;
|
|
6445
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6446
|
+
type: import("zod").ZodLiteral<"communications.inbox.notifications.acknowledge.response">;
|
|
6447
|
+
payload: import("zod").ZodObject<{
|
|
6448
|
+
home: import("zod").ZodObject<{
|
|
6449
|
+
provider: import("zod").ZodObject<{
|
|
6450
|
+
providerId: import("zod").ZodString;
|
|
6451
|
+
label: import("zod").ZodString;
|
|
6452
|
+
connectionState: import("zod").ZodEnum<{
|
|
6453
|
+
error: "error";
|
|
6454
|
+
disconnected: "disconnected";
|
|
6455
|
+
connecting: "connecting";
|
|
6456
|
+
connected: "connected";
|
|
6457
|
+
reauth_required: "reauth_required";
|
|
6458
|
+
}>;
|
|
6459
|
+
accountLabel: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6460
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6461
|
+
enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6462
|
+
}, import("zod/v4/core").$strip>;
|
|
6463
|
+
sections: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6464
|
+
id: import("zod").ZodString;
|
|
6465
|
+
label: import("zod").ZodString;
|
|
6466
|
+
conversations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6467
|
+
providerId: import("zod").ZodString;
|
|
6468
|
+
conversationId: import("zod").ZodString;
|
|
6469
|
+
kind: import("zod").ZodEnum<{
|
|
6470
|
+
unknown: "unknown";
|
|
6471
|
+
direct: "direct";
|
|
6472
|
+
group: "group";
|
|
6473
|
+
channel: "channel";
|
|
6474
|
+
}>;
|
|
6475
|
+
title: import("zod").ZodString;
|
|
6476
|
+
preview: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6477
|
+
updatedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6478
|
+
unreadCount: import("zod").ZodNumber;
|
|
6479
|
+
favorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6480
|
+
canFavorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6481
|
+
}, import("zod/v4/core").$strip>>;
|
|
6482
|
+
collections: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6483
|
+
providerId: import("zod").ZodString;
|
|
6484
|
+
collectionId: import("zod").ZodString;
|
|
6485
|
+
kind: import("zod").ZodEnum<{
|
|
6486
|
+
unknown: "unknown";
|
|
6487
|
+
space: "space";
|
|
6488
|
+
folder: "folder";
|
|
6489
|
+
}>;
|
|
6490
|
+
title: import("zod").ZodString;
|
|
6491
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6492
|
+
}, import("zod/v4/core").$strip>>;
|
|
6493
|
+
}, import("zod/v4/core").$strip>>;
|
|
6494
|
+
notifications: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6495
|
+
notificationId: import("zod").ZodString;
|
|
6496
|
+
conversation: import("zod").ZodObject<{
|
|
6497
|
+
providerId: import("zod").ZodString;
|
|
6498
|
+
conversationId: import("zod").ZodString;
|
|
6499
|
+
kind: import("zod").ZodEnum<{
|
|
6500
|
+
unknown: "unknown";
|
|
6501
|
+
direct: "direct";
|
|
6502
|
+
group: "group";
|
|
6503
|
+
channel: "channel";
|
|
6504
|
+
}>;
|
|
6505
|
+
title: import("zod").ZodString;
|
|
6506
|
+
preview: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6507
|
+
updatedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6508
|
+
unreadCount: import("zod").ZodNumber;
|
|
6509
|
+
favorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6510
|
+
canFavorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6511
|
+
}, import("zod/v4/core").$strip>;
|
|
6512
|
+
}, import("zod/v4/core").$strip>>>;
|
|
6513
|
+
}, import("zod/v4/core").$strip>;
|
|
6514
|
+
requestId: import("zod").ZodString;
|
|
6515
|
+
}, import("zod/v4/core").$strip>;
|
|
6516
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6517
|
+
type: import("zod").ZodLiteral<"communications.inbox.get_presence.response">;
|
|
6518
|
+
payload: import("zod").ZodObject<{
|
|
6519
|
+
presence: import("zod").ZodObject<{
|
|
6520
|
+
providerId: import("zod").ZodString;
|
|
6521
|
+
status: import("zod").ZodEnum<{
|
|
6522
|
+
unknown: "unknown";
|
|
6523
|
+
available: "available";
|
|
6524
|
+
busy: "busy";
|
|
6525
|
+
do_not_disturb: "do_not_disturb";
|
|
6526
|
+
away: "away";
|
|
6527
|
+
out_of_office: "out_of_office";
|
|
6528
|
+
}>;
|
|
6529
|
+
observedStatusLabel: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6530
|
+
canSetStatus: import("zod").ZodBoolean;
|
|
6531
|
+
enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6532
|
+
statusChangeAvailableAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6533
|
+
statusChangeAvailableInMs: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
6534
|
+
pendingStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
6535
|
+
unknown: "unknown";
|
|
6536
|
+
available: "available";
|
|
6537
|
+
busy: "busy";
|
|
6538
|
+
do_not_disturb: "do_not_disturb";
|
|
6539
|
+
away: "away";
|
|
6540
|
+
out_of_office: "out_of_office";
|
|
6541
|
+
}>>>;
|
|
6542
|
+
statusChangeError: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6543
|
+
}, import("zod/v4/core").$strip>;
|
|
6544
|
+
requestId: import("zod").ZodString;
|
|
6545
|
+
}, import("zod/v4/core").$strip>;
|
|
6546
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6547
|
+
type: import("zod").ZodLiteral<"communications.inbox.presence.changed.notification">;
|
|
6548
|
+
payload: import("zod").ZodObject<{
|
|
6549
|
+
presence: import("zod").ZodObject<{
|
|
6550
|
+
providerId: import("zod").ZodString;
|
|
6551
|
+
status: import("zod").ZodEnum<{
|
|
6552
|
+
unknown: "unknown";
|
|
6553
|
+
available: "available";
|
|
6554
|
+
busy: "busy";
|
|
6555
|
+
do_not_disturb: "do_not_disturb";
|
|
6556
|
+
away: "away";
|
|
6557
|
+
out_of_office: "out_of_office";
|
|
6558
|
+
}>;
|
|
6559
|
+
observedStatusLabel: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6560
|
+
canSetStatus: import("zod").ZodBoolean;
|
|
6561
|
+
enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6562
|
+
statusChangeAvailableAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6563
|
+
statusChangeAvailableInMs: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
6564
|
+
pendingStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
6565
|
+
unknown: "unknown";
|
|
6566
|
+
available: "available";
|
|
6567
|
+
busy: "busy";
|
|
6568
|
+
do_not_disturb: "do_not_disturb";
|
|
6569
|
+
away: "away";
|
|
6570
|
+
out_of_office: "out_of_office";
|
|
6571
|
+
}>>>;
|
|
6572
|
+
statusChangeError: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6573
|
+
}, import("zod/v4/core").$strip>;
|
|
6574
|
+
}, import("zod/v4/core").$strip>;
|
|
6575
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6576
|
+
type: import("zod").ZodLiteral<"communications.inbox.set_presence.response">;
|
|
6577
|
+
payload: import("zod").ZodObject<{
|
|
6578
|
+
presence: import("zod").ZodObject<{
|
|
6579
|
+
providerId: import("zod").ZodString;
|
|
6580
|
+
status: import("zod").ZodEnum<{
|
|
6581
|
+
unknown: "unknown";
|
|
6582
|
+
available: "available";
|
|
6583
|
+
busy: "busy";
|
|
6584
|
+
do_not_disturb: "do_not_disturb";
|
|
6585
|
+
away: "away";
|
|
6586
|
+
out_of_office: "out_of_office";
|
|
6587
|
+
}>;
|
|
6588
|
+
observedStatusLabel: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6589
|
+
canSetStatus: import("zod").ZodBoolean;
|
|
6590
|
+
enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6591
|
+
statusChangeAvailableAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6592
|
+
statusChangeAvailableInMs: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
6593
|
+
pendingStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
6594
|
+
unknown: "unknown";
|
|
6595
|
+
available: "available";
|
|
6596
|
+
busy: "busy";
|
|
6597
|
+
do_not_disturb: "do_not_disturb";
|
|
6598
|
+
away: "away";
|
|
6599
|
+
out_of_office: "out_of_office";
|
|
6600
|
+
}>>>;
|
|
6601
|
+
statusChangeError: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6602
|
+
}, import("zod/v4/core").$strip>;
|
|
6603
|
+
requestId: import("zod").ZodString;
|
|
6604
|
+
}, import("zod/v4/core").$strip>;
|
|
6605
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6606
|
+
type: import("zod").ZodLiteral<"communications.inbox.set_enabled.response">;
|
|
6607
|
+
payload: import("zod").ZodObject<{
|
|
6608
|
+
presence: import("zod").ZodObject<{
|
|
6609
|
+
providerId: import("zod").ZodString;
|
|
6610
|
+
status: import("zod").ZodEnum<{
|
|
6611
|
+
unknown: "unknown";
|
|
6612
|
+
available: "available";
|
|
6613
|
+
busy: "busy";
|
|
6614
|
+
do_not_disturb: "do_not_disturb";
|
|
6615
|
+
away: "away";
|
|
6616
|
+
out_of_office: "out_of_office";
|
|
6617
|
+
}>;
|
|
6618
|
+
observedStatusLabel: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6619
|
+
canSetStatus: import("zod").ZodBoolean;
|
|
6620
|
+
enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6621
|
+
statusChangeAvailableAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6622
|
+
statusChangeAvailableInMs: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
6623
|
+
pendingStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
6624
|
+
unknown: "unknown";
|
|
6625
|
+
available: "available";
|
|
6626
|
+
busy: "busy";
|
|
6627
|
+
do_not_disturb: "do_not_disturb";
|
|
6628
|
+
away: "away";
|
|
6629
|
+
out_of_office: "out_of_office";
|
|
6630
|
+
}>>>;
|
|
6631
|
+
statusChangeError: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6632
|
+
}, import("zod/v4/core").$strip>;
|
|
6633
|
+
requestId: import("zod").ZodString;
|
|
6634
|
+
}, import("zod/v4/core").$strip>;
|
|
6635
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6636
|
+
type: import("zod").ZodLiteral<"communications.inbox.get_messages.response">;
|
|
6637
|
+
payload: import("zod").ZodObject<{
|
|
6638
|
+
messages: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6639
|
+
providerId: import("zod").ZodString;
|
|
6640
|
+
conversationId: import("zod").ZodString;
|
|
6641
|
+
messageId: import("zod").ZodString;
|
|
6642
|
+
senderId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6643
|
+
text: import("zod").ZodString;
|
|
6644
|
+
sentAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6645
|
+
senderDisplayName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6646
|
+
isFromCurrentUser: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6647
|
+
parentMessageId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6648
|
+
replyCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6649
|
+
reactions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6650
|
+
emoji: import("zod").ZodString;
|
|
6651
|
+
count: import("zod").ZodNumber;
|
|
6652
|
+
reactedByCurrentUser: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6653
|
+
}, import("zod/v4/core").$strip>>>;
|
|
6654
|
+
}, import("zod/v4/core").$strip>>;
|
|
6655
|
+
requestId: import("zod").ZodString;
|
|
6656
|
+
}, import("zod/v4/core").$strip>;
|
|
6657
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6658
|
+
type: import("zod").ZodLiteral<"communications.inbox.send_message.response">;
|
|
6659
|
+
payload: import("zod").ZodObject<{
|
|
6660
|
+
message: import("zod").ZodObject<{
|
|
6661
|
+
providerId: import("zod").ZodString;
|
|
6662
|
+
conversationId: import("zod").ZodString;
|
|
6663
|
+
messageId: import("zod").ZodString;
|
|
6664
|
+
senderId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6665
|
+
text: import("zod").ZodString;
|
|
6666
|
+
sentAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6667
|
+
senderDisplayName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6668
|
+
isFromCurrentUser: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6669
|
+
parentMessageId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6670
|
+
replyCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6671
|
+
reactions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6672
|
+
emoji: import("zod").ZodString;
|
|
6673
|
+
count: import("zod").ZodNumber;
|
|
6674
|
+
reactedByCurrentUser: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6675
|
+
}, import("zod/v4/core").$strip>>>;
|
|
6676
|
+
}, import("zod/v4/core").$strip>;
|
|
6677
|
+
requestId: import("zod").ZodString;
|
|
6678
|
+
}, import("zod/v4/core").$strip>;
|
|
6679
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6680
|
+
type: import("zod").ZodLiteral<"communications.room.get.response">;
|
|
6681
|
+
payload: import("zod").ZodObject<{
|
|
6682
|
+
room: import("zod").ZodObject<{
|
|
6683
|
+
conversation: import("zod").ZodObject<{
|
|
6684
|
+
providerId: import("zod").ZodString;
|
|
6685
|
+
conversationId: import("zod").ZodString;
|
|
6686
|
+
kind: import("zod").ZodEnum<{
|
|
6687
|
+
unknown: "unknown";
|
|
6688
|
+
direct: "direct";
|
|
6689
|
+
group: "group";
|
|
6690
|
+
channel: "channel";
|
|
6691
|
+
}>;
|
|
6692
|
+
title: import("zod").ZodString;
|
|
6693
|
+
preview: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6694
|
+
updatedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6695
|
+
unreadCount: import("zod").ZodNumber;
|
|
6696
|
+
favorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6697
|
+
canFavorite: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6698
|
+
}, import("zod/v4/core").$strip>;
|
|
6699
|
+
messages: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6700
|
+
providerId: import("zod").ZodString;
|
|
6701
|
+
conversationId: import("zod").ZodString;
|
|
6702
|
+
messageId: import("zod").ZodString;
|
|
6703
|
+
senderId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6704
|
+
text: import("zod").ZodString;
|
|
6705
|
+
sentAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6706
|
+
senderDisplayName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6707
|
+
isFromCurrentUser: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6708
|
+
parentMessageId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6709
|
+
replyCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6710
|
+
reactions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6711
|
+
emoji: import("zod").ZodString;
|
|
6712
|
+
count: import("zod").ZodNumber;
|
|
6713
|
+
reactedByCurrentUser: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6714
|
+
}, import("zod/v4/core").$strip>>>;
|
|
6715
|
+
}, import("zod/v4/core").$strip>>;
|
|
6716
|
+
capabilities: import("zod").ZodObject<{
|
|
6717
|
+
canCompose: import("zod").ZodBoolean;
|
|
6718
|
+
canReply: import("zod").ZodBoolean;
|
|
6719
|
+
canRetrieveThreads: import("zod").ZodBoolean;
|
|
6720
|
+
canReact: import("zod").ZodBoolean;
|
|
6721
|
+
canMarkRead: import("zod").ZodBoolean;
|
|
6722
|
+
unavailableReason: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6723
|
+
}, import("zod/v4/core").$strip>;
|
|
6724
|
+
}, import("zod/v4/core").$strip>;
|
|
6725
|
+
requestId: import("zod").ZodString;
|
|
6726
|
+
}, import("zod/v4/core").$strip>;
|
|
6727
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6728
|
+
type: import("zod").ZodLiteral<"communications.room.thread.get.response">;
|
|
6729
|
+
payload: import("zod").ZodObject<{
|
|
6730
|
+
messages: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6731
|
+
providerId: import("zod").ZodString;
|
|
6732
|
+
conversationId: import("zod").ZodString;
|
|
6733
|
+
messageId: import("zod").ZodString;
|
|
6734
|
+
senderId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6735
|
+
text: import("zod").ZodString;
|
|
6736
|
+
sentAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6737
|
+
senderDisplayName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6738
|
+
isFromCurrentUser: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6739
|
+
parentMessageId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6740
|
+
replyCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6741
|
+
reactions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6742
|
+
emoji: import("zod").ZodString;
|
|
6743
|
+
count: import("zod").ZodNumber;
|
|
6744
|
+
reactedByCurrentUser: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6745
|
+
}, import("zod/v4/core").$strip>>>;
|
|
6746
|
+
}, import("zod/v4/core").$strip>>;
|
|
6747
|
+
requestId: import("zod").ZodString;
|
|
6748
|
+
}, import("zod/v4/core").$strip>;
|
|
6749
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6750
|
+
type: import("zod").ZodLiteral<"communications.room.message.send.response">;
|
|
6751
|
+
payload: import("zod").ZodObject<{
|
|
6752
|
+
message: import("zod").ZodObject<{
|
|
6753
|
+
providerId: import("zod").ZodString;
|
|
6754
|
+
conversationId: import("zod").ZodString;
|
|
6755
|
+
messageId: import("zod").ZodString;
|
|
6756
|
+
senderId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6757
|
+
text: import("zod").ZodString;
|
|
6758
|
+
sentAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6759
|
+
senderDisplayName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6760
|
+
isFromCurrentUser: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6761
|
+
parentMessageId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6762
|
+
replyCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6763
|
+
reactions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6764
|
+
emoji: import("zod").ZodString;
|
|
6765
|
+
count: import("zod").ZodNumber;
|
|
6766
|
+
reactedByCurrentUser: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6767
|
+
}, import("zod/v4/core").$strip>>>;
|
|
6768
|
+
}, import("zod/v4/core").$strip>;
|
|
6769
|
+
requestId: import("zod").ZodString;
|
|
6770
|
+
}, import("zod/v4/core").$strip>;
|
|
6771
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6772
|
+
type: import("zod").ZodLiteral<"communications.room.reaction.set.response">;
|
|
6773
|
+
payload: import("zod").ZodObject<{
|
|
6774
|
+
message: import("zod").ZodObject<{
|
|
6775
|
+
providerId: import("zod").ZodString;
|
|
6776
|
+
conversationId: import("zod").ZodString;
|
|
6777
|
+
messageId: import("zod").ZodString;
|
|
6778
|
+
senderId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6779
|
+
text: import("zod").ZodString;
|
|
6780
|
+
sentAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6781
|
+
senderDisplayName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6782
|
+
isFromCurrentUser: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6783
|
+
parentMessageId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6784
|
+
replyCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6785
|
+
reactions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
6786
|
+
emoji: import("zod").ZodString;
|
|
6787
|
+
count: import("zod").ZodNumber;
|
|
6788
|
+
reactedByCurrentUser: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6789
|
+
}, import("zod/v4/core").$strip>>>;
|
|
6790
|
+
}, import("zod/v4/core").$strip>;
|
|
6791
|
+
requestId: import("zod").ZodString;
|
|
6792
|
+
}, import("zod/v4/core").$strip>;
|
|
6793
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6794
|
+
type: import("zod").ZodLiteral<"meetings.transcripts.list.response">;
|
|
6795
|
+
payload: import("zod").ZodObject<{
|
|
6796
|
+
requestId: import("zod").ZodString;
|
|
6797
|
+
records: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6798
|
+
id: import("zod").ZodString;
|
|
6799
|
+
provider: import("zod").ZodString;
|
|
6800
|
+
title: import("zod").ZodString;
|
|
6801
|
+
content: import("zod").ZodString;
|
|
6802
|
+
occurredAt: import("zod").ZodString;
|
|
6803
|
+
createdAt: import("zod").ZodString;
|
|
6804
|
+
updatedAt: import("zod").ZodString;
|
|
6805
|
+
}, import("zod/v4/core").$strip>>;
|
|
6806
|
+
}, import("zod/v4/core").$strip>;
|
|
6807
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6808
|
+
type: import("zod").ZodLiteral<"meetings.transcripts.create.response">;
|
|
6809
|
+
payload: import("zod").ZodObject<{
|
|
6810
|
+
requestId: import("zod").ZodString;
|
|
6811
|
+
record: import("zod").ZodObject<{
|
|
6812
|
+
id: import("zod").ZodString;
|
|
6813
|
+
provider: import("zod").ZodString;
|
|
6814
|
+
title: import("zod").ZodString;
|
|
6815
|
+
content: import("zod").ZodString;
|
|
6816
|
+
occurredAt: import("zod").ZodString;
|
|
6817
|
+
createdAt: import("zod").ZodString;
|
|
6818
|
+
updatedAt: import("zod").ZodString;
|
|
6819
|
+
}, import("zod/v4/core").$strip>;
|
|
6820
|
+
}, import("zod/v4/core").$strip>;
|
|
6821
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6822
|
+
type: import("zod").ZodLiteral<"meetings.transcripts.update.response">;
|
|
6823
|
+
payload: import("zod").ZodObject<{
|
|
6824
|
+
requestId: import("zod").ZodString;
|
|
6825
|
+
record: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
6826
|
+
id: import("zod").ZodString;
|
|
6827
|
+
provider: import("zod").ZodString;
|
|
6828
|
+
title: import("zod").ZodString;
|
|
6829
|
+
content: import("zod").ZodString;
|
|
6830
|
+
occurredAt: import("zod").ZodString;
|
|
6831
|
+
createdAt: import("zod").ZodString;
|
|
6832
|
+
updatedAt: import("zod").ZodString;
|
|
6833
|
+
}, import("zod/v4/core").$strip>>;
|
|
6834
|
+
}, import("zod/v4/core").$strip>;
|
|
6835
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6836
|
+
type: import("zod").ZodLiteral<"meetings.transcripts.delete.response">;
|
|
6837
|
+
payload: import("zod").ZodObject<{
|
|
6838
|
+
requestId: import("zod").ZodString;
|
|
6839
|
+
deleted: import("zod").ZodBoolean;
|
|
6840
|
+
}, import("zod/v4/core").$strip>;
|
|
6841
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6842
|
+
type: import("zod").ZodLiteral<"integrations.authorization.get_overview.response">;
|
|
6843
|
+
payload: import("zod").ZodObject<{
|
|
6844
|
+
overview: import("zod").ZodObject<{
|
|
6845
|
+
vault: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
6846
|
+
status: import("zod").ZodLiteral<"available">;
|
|
6847
|
+
backend: import("zod").ZodString;
|
|
6848
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6849
|
+
status: import("zod").ZodLiteral<"unavailable">;
|
|
6850
|
+
reason: import("zod").ZodString;
|
|
6851
|
+
}, import("zod/v4/core").$strip>], "status">;
|
|
6852
|
+
connections: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6853
|
+
integrationId: import("zod").ZodString;
|
|
6854
|
+
connectionId: import("zod").ZodString;
|
|
6855
|
+
method: import("zod").ZodString;
|
|
6856
|
+
state: import("zod").ZodEnum<{
|
|
6857
|
+
error: "error";
|
|
6858
|
+
disconnected: "disconnected";
|
|
6859
|
+
connected: "connected";
|
|
6860
|
+
reauth_required: "reauth_required";
|
|
6861
|
+
authorizing: "authorizing";
|
|
6862
|
+
}>;
|
|
6863
|
+
accountLabel: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6864
|
+
grantedScopes: import("zod").ZodArray<import("zod").ZodString>;
|
|
6865
|
+
updatedAt: import("zod").ZodString;
|
|
6866
|
+
errorCode: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6867
|
+
enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
6868
|
+
}, import("zod/v4/core").$strip>>;
|
|
6869
|
+
}, import("zod/v4/core").$strip>;
|
|
6870
|
+
requestId: import("zod").ZodString;
|
|
6871
|
+
}, import("zod/v4/core").$strip>;
|
|
6872
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6873
|
+
type: import("zod").ZodLiteral<"integrations.authorization.get_methods.response">;
|
|
6874
|
+
payload: import("zod").ZodObject<{
|
|
6875
|
+
methods: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6876
|
+
integrationId: import("zod").ZodString;
|
|
6877
|
+
method: import("zod").ZodString;
|
|
6878
|
+
label: import("zod").ZodString;
|
|
6879
|
+
description: import("zod").ZodString;
|
|
6880
|
+
recommended: import("zod").ZodBoolean;
|
|
6881
|
+
availability: import("zod").ZodEnum<{
|
|
6882
|
+
available: "available";
|
|
6883
|
+
planned: "planned";
|
|
6884
|
+
}>;
|
|
6885
|
+
}, import("zod/v4/core").$strip>>;
|
|
6886
|
+
requestId: import("zod").ZodString;
|
|
6887
|
+
}, import("zod/v4/core").$strip>;
|
|
6888
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6889
|
+
type: import("zod").ZodLiteral<"integrations.authorization.start_browser.response">;
|
|
6890
|
+
payload: import("zod").ZodObject<{
|
|
6891
|
+
authorizationUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6892
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6893
|
+
requestId: import("zod").ZodString;
|
|
6894
|
+
}, import("zod/v4/core").$strip>;
|
|
6895
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6896
|
+
type: import("zod").ZodLiteral<"integrations.zoom.start_authorization.response">;
|
|
6897
|
+
payload: import("zod").ZodObject<{
|
|
6898
|
+
authorizationUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6899
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6900
|
+
requestId: import("zod").ZodString;
|
|
6901
|
+
}, import("zod/v4/core").$strip>;
|
|
6902
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6903
|
+
type: import("zod").ZodLiteral<"speech.settings.get_options.response">;
|
|
6904
|
+
payload: import("zod").ZodObject<{
|
|
6905
|
+
requestId: import("zod").ZodString;
|
|
6906
|
+
options: import("zod").ZodObject<{
|
|
6907
|
+
sttEngines: import("zod").ZodArray<import("zod").ZodObject<{
|
|
6908
|
+
id: import("zod").ZodString;
|
|
6909
|
+
available: import("zod").ZodBoolean;
|
|
6910
|
+
reason: import("zod").ZodOptional<import("zod").ZodString>;
|
|
5810
6911
|
}, import("zod/v4/core").$strip>>;
|
|
5811
6912
|
ttsEngines: import("zod").ZodArray<import("zod").ZodObject<{
|
|
5812
6913
|
id: import("zod").ZodString;
|
|
@@ -5924,6 +7025,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5924
7025
|
mtimeMs: import("zod").ZodNumber;
|
|
5925
7026
|
size: import("zod").ZodNumber;
|
|
5926
7027
|
}, import("zod/v4/core").$strip>>;
|
|
7028
|
+
hasUncommittedWorktreeSetupChanges: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5927
7029
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5928
7030
|
requestId: import("zod").ZodString;
|
|
5929
7031
|
repoRoot: import("zod").ZodString;
|
|
@@ -5985,6 +7087,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
5985
7087
|
mtimeMs: import("zod").ZodNumber;
|
|
5986
7088
|
size: import("zod").ZodNumber;
|
|
5987
7089
|
}, import("zod/v4/core").$strip>;
|
|
7090
|
+
hasUncommittedWorktreeSetupChanges: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
5988
7091
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
5989
7092
|
requestId: import("zod").ZodString;
|
|
5990
7093
|
repoRoot: import("zod").ZodString;
|
|
@@ -6039,6 +7142,15 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6039
7142
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6040
7143
|
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>>>>;
|
|
6041
7144
|
}, import("zod/v4/core").$strip>;
|
|
7145
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7146
|
+
type: import("zod").ZodLiteral<"agent.config.apply.response">;
|
|
7147
|
+
payload: import("zod").ZodObject<{
|
|
7148
|
+
requestId: import("zod").ZodString;
|
|
7149
|
+
agentId: import("zod").ZodString;
|
|
7150
|
+
accepted: import("zod").ZodBoolean;
|
|
7151
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7152
|
+
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>>>>;
|
|
7153
|
+
}, import("zod/v4/core").$strip>;
|
|
6042
7154
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6043
7155
|
type: import("zod").ZodLiteral<"agent.detach.response">;
|
|
6044
7156
|
payload: import("zod").ZodObject<{
|
|
@@ -6165,8 +7277,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6165
7277
|
cwd: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6166
7278
|
state: import("zod").ZodEnum<{
|
|
6167
7279
|
pending: "pending";
|
|
6168
|
-
dismissed: "dismissed";
|
|
6169
7280
|
started: "started";
|
|
7281
|
+
dismissed: "dismissed";
|
|
6170
7282
|
}>;
|
|
6171
7283
|
createdAt: import("zod").ZodString;
|
|
6172
7284
|
updatedAt: import("zod").ZodString;
|
|
@@ -6265,8 +7377,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6265
7377
|
sharePercent: import("zod").ZodNumber;
|
|
6266
7378
|
severity: import("zod").ZodEnum<{
|
|
6267
7379
|
ok: "ok";
|
|
6268
|
-
notice: "notice";
|
|
6269
7380
|
warn: "warn";
|
|
7381
|
+
notice: "notice";
|
|
6270
7382
|
critical: "critical";
|
|
6271
7383
|
}>;
|
|
6272
7384
|
visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -6282,8 +7394,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6282
7394
|
workingRoom: import("zod").ZodNumber;
|
|
6283
7395
|
aggregateSeverity: import("zod").ZodEnum<{
|
|
6284
7396
|
ok: "ok";
|
|
6285
|
-
notice: "notice";
|
|
6286
7397
|
warn: "warn";
|
|
7398
|
+
notice: "notice";
|
|
6287
7399
|
critical: "critical";
|
|
6288
7400
|
}>;
|
|
6289
7401
|
findings: import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -6348,6 +7460,21 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6348
7460
|
customName: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6349
7461
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6350
7462
|
}, import("zod/v4/core").$strip>;
|
|
7463
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7464
|
+
type: import("zod").ZodLiteral<"kanban.project.target.set.response">;
|
|
7465
|
+
payload: import("zod").ZodObject<{
|
|
7466
|
+
requestId: import("zod").ZodString;
|
|
7467
|
+
projectId: import("zod").ZodString;
|
|
7468
|
+
accepted: import("zod").ZodBoolean;
|
|
7469
|
+
target: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
7470
|
+
adapter: import("zod").ZodEnum<{
|
|
7471
|
+
github: "github";
|
|
7472
|
+
jira: "jira";
|
|
7473
|
+
}>;
|
|
7474
|
+
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7475
|
+
}, import("zod/v4/core").$loose>>;
|
|
7476
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7477
|
+
}, import("zod/v4/core").$strip>;
|
|
6351
7478
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6352
7479
|
type: import("zod").ZodLiteral<"project.updated.notification">;
|
|
6353
7480
|
payload: import("zod").ZodObject<{
|
|
@@ -6356,15 +7483,31 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6356
7483
|
projectKey: import("zod").ZodOptional<import("zod").ZodString>;
|
|
6357
7484
|
projectDisplayName: import("zod").ZodString;
|
|
6358
7485
|
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7486
|
+
projectKanban: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
7487
|
+
adapter: import("zod").ZodEnum<{
|
|
7488
|
+
github: "github";
|
|
7489
|
+
jira: "jira";
|
|
7490
|
+
}>;
|
|
7491
|
+
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7492
|
+
}, import("zod/v4/core").$loose>>>;
|
|
7493
|
+
projectCustomIconRevision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6359
7494
|
projectRootPath: import("zod").ZodString;
|
|
6360
7495
|
projectKind: import("zod").ZodEnum<{
|
|
6361
|
-
git: "git";
|
|
6362
7496
|
directory: "directory";
|
|
7497
|
+
git: "git";
|
|
6363
7498
|
non_git: "non_git";
|
|
6364
7499
|
}>;
|
|
6365
7500
|
}, import("zod/v4/core").$strip>;
|
|
6366
7501
|
hasActiveWorkspaces: import("zod").ZodBoolean;
|
|
6367
7502
|
}, import("zod/v4/core").$strip>;
|
|
7503
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7504
|
+
type: import("zod").ZodLiteral<"project.icon.set.response">;
|
|
7505
|
+
payload: import("zod").ZodObject<{
|
|
7506
|
+
requestId: import("zod").ZodString;
|
|
7507
|
+
projectId: import("zod").ZodString;
|
|
7508
|
+
accepted: import("zod").ZodBoolean;
|
|
7509
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7510
|
+
}, import("zod/v4/core").$strip>;
|
|
6368
7511
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
6369
7512
|
type: import("zod").ZodLiteral<"project.remove.response">;
|
|
6370
7513
|
payload: import("zod").ZodObject<{
|
|
@@ -6510,6 +7653,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6510
7653
|
running: "running";
|
|
6511
7654
|
closed: "closed";
|
|
6512
7655
|
}>;
|
|
7656
|
+
activeTurn: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
7657
|
+
turnId: import("zod").ZodString;
|
|
7658
|
+
startedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7659
|
+
}, import("zod/v4/core").$strip>>>;
|
|
6513
7660
|
capabilities: import("zod").ZodType<import("../agent-types.js").AgentCapabilityFlags, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentCapabilityFlags, unknown>>;
|
|
6514
7661
|
currentModeId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
6515
7662
|
availableModes: import("zod").ZodArray<import("zod").ZodType<import("../agent-types.js").AgentMode, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentMode, unknown>>>;
|
|
@@ -6526,8 +7673,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6526
7673
|
costUsd: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
6527
7674
|
costCoverage: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
6528
7675
|
none: "none";
|
|
6529
|
-
complete: "complete";
|
|
6530
7676
|
partial: "partial";
|
|
7677
|
+
complete: "complete";
|
|
6531
7678
|
}>>;
|
|
6532
7679
|
}, import("zod/v4/core").$strip>>;
|
|
6533
7680
|
toolUseCount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -6638,6 +7785,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6638
7785
|
running: import("zod").ZodBoolean;
|
|
6639
7786
|
pid: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
6640
7787
|
version: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7788
|
+
runtime: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6641
7789
|
apiVersion: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
6642
7790
|
host: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6643
7791
|
port: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
@@ -6646,6 +7794,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6646
7794
|
state: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6647
7795
|
model: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6648
7796
|
modelId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7797
|
+
residents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
7798
|
+
state: import("zod").ZodString;
|
|
7799
|
+
model: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7800
|
+
modelId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7801
|
+
pid: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7802
|
+
upstream: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7803
|
+
vramBytes: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7804
|
+
}, import("zod/v4/core").$loose>>>;
|
|
6649
7805
|
vramBytes: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
6650
7806
|
loadSeconds: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
6651
7807
|
startedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -6662,10 +7818,12 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6662
7818
|
resources: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6663
7819
|
inventory: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6664
7820
|
events: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7821
|
+
logEvents: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6665
7822
|
liveInference: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6666
7823
|
writable: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6667
7824
|
jobs: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6668
7825
|
restart: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7826
|
+
processPool: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6669
7827
|
}, import("zod/v4/core").$loose>>>;
|
|
6670
7828
|
resources: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
6671
7829
|
logLineCount: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
@@ -6713,6 +7871,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6713
7871
|
running: import("zod").ZodBoolean;
|
|
6714
7872
|
pid: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
6715
7873
|
version: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7874
|
+
runtime: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6716
7875
|
apiVersion: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
6717
7876
|
host: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6718
7877
|
port: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
@@ -6721,6 +7880,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6721
7880
|
state: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6722
7881
|
model: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6723
7882
|
modelId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7883
|
+
residents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
7884
|
+
state: import("zod").ZodString;
|
|
7885
|
+
model: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7886
|
+
modelId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7887
|
+
pid: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7888
|
+
upstream: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7889
|
+
vramBytes: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7890
|
+
}, import("zod/v4/core").$loose>>>;
|
|
6724
7891
|
vramBytes: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
6725
7892
|
loadSeconds: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
6726
7893
|
startedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -6737,10 +7904,12 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6737
7904
|
resources: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6738
7905
|
inventory: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6739
7906
|
events: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7907
|
+
logEvents: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6740
7908
|
liveInference: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6741
7909
|
writable: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6742
7910
|
jobs: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6743
7911
|
restart: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7912
|
+
processPool: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6744
7913
|
}, import("zod/v4/core").$loose>>>;
|
|
6745
7914
|
resources: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
6746
7915
|
logLineCount: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
@@ -6788,6 +7957,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6788
7957
|
running: import("zod").ZodBoolean;
|
|
6789
7958
|
pid: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
6790
7959
|
version: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7960
|
+
runtime: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6791
7961
|
apiVersion: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
6792
7962
|
host: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6793
7963
|
port: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
@@ -6796,6 +7966,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6796
7966
|
state: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6797
7967
|
model: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6798
7968
|
modelId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7969
|
+
residents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
7970
|
+
state: import("zod").ZodString;
|
|
7971
|
+
model: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7972
|
+
modelId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7973
|
+
pid: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7974
|
+
upstream: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7975
|
+
vramBytes: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7976
|
+
}, import("zod/v4/core").$loose>>>;
|
|
6799
7977
|
vramBytes: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
6800
7978
|
loadSeconds: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
6801
7979
|
startedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -6812,10 +7990,12 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6812
7990
|
resources: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6813
7991
|
inventory: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6814
7992
|
events: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7993
|
+
logEvents: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6815
7994
|
liveInference: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6816
7995
|
writable: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6817
7996
|
jobs: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6818
7997
|
restart: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7998
|
+
processPool: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6819
7999
|
}, import("zod/v4/core").$loose>>>;
|
|
6820
8000
|
resources: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
6821
8001
|
logLineCount: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
@@ -6863,6 +8043,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6863
8043
|
running: import("zod").ZodBoolean;
|
|
6864
8044
|
pid: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
6865
8045
|
version: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
8046
|
+
runtime: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6866
8047
|
apiVersion: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
6867
8048
|
host: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6868
8049
|
port: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
@@ -6871,6 +8052,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6871
8052
|
state: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6872
8053
|
model: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
6873
8054
|
modelId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
8055
|
+
residents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
8056
|
+
state: import("zod").ZodString;
|
|
8057
|
+
model: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
8058
|
+
modelId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
8059
|
+
pid: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
8060
|
+
upstream: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
8061
|
+
vramBytes: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
8062
|
+
}, import("zod/v4/core").$loose>>>;
|
|
6874
8063
|
vramBytes: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
6875
8064
|
loadSeconds: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
6876
8065
|
startedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -6887,10 +8076,12 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6887
8076
|
resources: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6888
8077
|
inventory: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6889
8078
|
events: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
8079
|
+
logEvents: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6890
8080
|
liveInference: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6891
8081
|
writable: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6892
8082
|
jobs: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6893
8083
|
restart: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
8084
|
+
processPool: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
6894
8085
|
}, import("zod/v4/core").$loose>>>;
|
|
6895
8086
|
resources: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
6896
8087
|
logLineCount: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
@@ -6951,9 +8142,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
6951
8142
|
value: import("zod").ZodString;
|
|
6952
8143
|
label: import("zod").ZodString;
|
|
6953
8144
|
kind: import("zod").ZodEnum<{
|
|
6954
|
-
all: "all";
|
|
6955
8145
|
tailscale: "tailscale";
|
|
6956
8146
|
loopback: "loopback";
|
|
8147
|
+
all: "all";
|
|
6957
8148
|
lan: "lan";
|
|
6958
8149
|
}>;
|
|
6959
8150
|
}, import("zod/v4/core").$loose>>>;
|
|
@@ -7012,6 +8203,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7012
8203
|
id: import("zod").ZodString;
|
|
7013
8204
|
name: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7014
8205
|
family: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
8206
|
+
favorite: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7015
8207
|
installed: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7016
8208
|
publisher: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7017
8209
|
repo: import("zod").ZodDefault<import("zod").ZodString>;
|
|
@@ -7076,6 +8268,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7076
8268
|
canceled: "canceled";
|
|
7077
8269
|
succeeded: "succeeded";
|
|
7078
8270
|
}>>;
|
|
8271
|
+
queuePosition: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7079
8272
|
percent: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7080
8273
|
message: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7081
8274
|
error: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -7106,6 +8299,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7106
8299
|
canceled: "canceled";
|
|
7107
8300
|
succeeded: "succeeded";
|
|
7108
8301
|
}>>;
|
|
8302
|
+
queuePosition: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7109
8303
|
percent: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7110
8304
|
message: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7111
8305
|
error: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -7136,6 +8330,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7136
8330
|
canceled: "canceled";
|
|
7137
8331
|
succeeded: "succeeded";
|
|
7138
8332
|
}>>;
|
|
8333
|
+
queuePosition: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7139
8334
|
percent: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7140
8335
|
message: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7141
8336
|
error: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -7166,6 +8361,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7166
8361
|
canceled: "canceled";
|
|
7167
8362
|
succeeded: "succeeded";
|
|
7168
8363
|
}>>;
|
|
8364
|
+
queuePosition: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7169
8365
|
percent: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7170
8366
|
message: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7171
8367
|
error: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -7196,6 +8392,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7196
8392
|
canceled: "canceled";
|
|
7197
8393
|
succeeded: "succeeded";
|
|
7198
8394
|
}>>;
|
|
8395
|
+
queuePosition: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7199
8396
|
percent: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7200
8397
|
message: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7201
8398
|
error: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -7226,6 +8423,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7226
8423
|
canceled: "canceled";
|
|
7227
8424
|
succeeded: "succeeded";
|
|
7228
8425
|
}>>;
|
|
8426
|
+
queuePosition: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7229
8427
|
percent: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7230
8428
|
message: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7231
8429
|
error: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -7256,6 +8454,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7256
8454
|
canceled: "canceled";
|
|
7257
8455
|
succeeded: "succeeded";
|
|
7258
8456
|
}>>;
|
|
8457
|
+
queuePosition: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7259
8458
|
percent: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7260
8459
|
message: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7261
8460
|
error: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -7286,6 +8485,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7286
8485
|
canceled: "canceled";
|
|
7287
8486
|
succeeded: "succeeded";
|
|
7288
8487
|
}>>;
|
|
8488
|
+
queuePosition: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7289
8489
|
percent: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7290
8490
|
message: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7291
8491
|
error: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -7350,6 +8550,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7350
8550
|
canceled: "canceled";
|
|
7351
8551
|
succeeded: "succeeded";
|
|
7352
8552
|
}>>;
|
|
8553
|
+
queuePosition: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7353
8554
|
percent: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7354
8555
|
message: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7355
8556
|
error: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -7403,7 +8604,15 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7403
8604
|
vision: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7404
8605
|
enabledComponents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
7405
8606
|
reasoningBudget: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
8607
|
+
preserveReasoning: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
|
8608
|
+
temperature: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8609
|
+
topP: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8610
|
+
topK: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8611
|
+
minP: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8612
|
+
presencePenalty: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8613
|
+
repeatPenalty: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7406
8614
|
parallelSlots: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
8615
|
+
cachedChats: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7407
8616
|
contextMultiplier: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7408
8617
|
calibrationRequired: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7409
8618
|
hostingProfileId: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -7476,7 +8685,15 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7476
8685
|
vision: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7477
8686
|
enabledComponents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
7478
8687
|
reasoningBudget: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
8688
|
+
preserveReasoning: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
|
8689
|
+
temperature: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8690
|
+
topP: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8691
|
+
topK: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8692
|
+
minP: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8693
|
+
presencePenalty: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8694
|
+
repeatPenalty: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7479
8695
|
parallelSlots: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
8696
|
+
cachedChats: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7480
8697
|
contextMultiplier: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7481
8698
|
calibrationRequired: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7482
8699
|
hostingProfileId: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -7490,11 +8707,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7490
8707
|
key: import("zod").ZodString;
|
|
7491
8708
|
label: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7492
8709
|
kind: import("zod").ZodDefault<import("zod").ZodString>;
|
|
8710
|
+
description: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7493
8711
|
step: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7494
8712
|
min: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7495
8713
|
max: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
8714
|
+
precision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7496
8715
|
options: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>>>;
|
|
7497
8716
|
optionLabels: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString>>;
|
|
8717
|
+
optionValues: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber, import("zod").ZodBoolean, import("zod").ZodNull]>>>;
|
|
7498
8718
|
available: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7499
8719
|
unavailableReason: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7500
8720
|
}, import("zod/v4/core").$loose>>>;
|
|
@@ -7536,7 +8756,15 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7536
8756
|
vision: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7537
8757
|
enabledComponents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
7538
8758
|
reasoningBudget: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
8759
|
+
preserveReasoning: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
|
8760
|
+
temperature: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8761
|
+
topP: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8762
|
+
topK: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8763
|
+
minP: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8764
|
+
presencePenalty: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8765
|
+
repeatPenalty: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7539
8766
|
parallelSlots: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
8767
|
+
cachedChats: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7540
8768
|
contextMultiplier: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7541
8769
|
calibrationRequired: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7542
8770
|
hostingProfileId: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -7550,11 +8778,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7550
8778
|
key: import("zod").ZodString;
|
|
7551
8779
|
label: import("zod").ZodDefault<import("zod").ZodString>;
|
|
7552
8780
|
kind: import("zod").ZodDefault<import("zod").ZodString>;
|
|
8781
|
+
description: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7553
8782
|
step: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7554
8783
|
min: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7555
8784
|
max: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
8785
|
+
precision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7556
8786
|
options: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber]>>>;
|
|
7557
8787
|
optionLabels: import("zod").ZodDefault<import("zod").ZodArray<import("zod").ZodString>>;
|
|
8788
|
+
optionValues: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodUnion<readonly [import("zod").ZodString, import("zod").ZodNumber, import("zod").ZodBoolean, import("zod").ZodNull]>>>;
|
|
7558
8789
|
available: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7559
8790
|
unavailableReason: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7560
8791
|
}, import("zod/v4/core").$loose>>>;
|
|
@@ -7617,7 +8848,15 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7617
8848
|
vision: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7618
8849
|
enabledComponents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
7619
8850
|
reasoningBudget: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
8851
|
+
preserveReasoning: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
|
8852
|
+
temperature: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8853
|
+
topP: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8854
|
+
topK: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8855
|
+
minP: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8856
|
+
presencePenalty: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8857
|
+
repeatPenalty: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7620
8858
|
parallelSlots: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
8859
|
+
cachedChats: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7621
8860
|
contextMultiplier: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7622
8861
|
calibrationRequired: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7623
8862
|
hostingProfileId: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -7664,6 +8903,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7664
8903
|
running: import("zod").ZodBoolean;
|
|
7665
8904
|
pid: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7666
8905
|
version: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
8906
|
+
runtime: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7667
8907
|
apiVersion: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7668
8908
|
host: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7669
8909
|
port: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
@@ -7672,6 +8912,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7672
8912
|
state: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7673
8913
|
model: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7674
8914
|
modelId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
8915
|
+
residents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
8916
|
+
state: import("zod").ZodString;
|
|
8917
|
+
model: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
8918
|
+
modelId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
8919
|
+
pid: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
8920
|
+
upstream: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
8921
|
+
vramBytes: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
8922
|
+
}, import("zod/v4/core").$loose>>>;
|
|
7675
8923
|
vramBytes: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7676
8924
|
loadSeconds: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7677
8925
|
startedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -7688,10 +8936,12 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7688
8936
|
resources: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7689
8937
|
inventory: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7690
8938
|
events: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
8939
|
+
logEvents: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7691
8940
|
liveInference: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7692
8941
|
writable: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7693
8942
|
jobs: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7694
8943
|
restart: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
8944
|
+
processPool: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7695
8945
|
}, import("zod/v4/core").$loose>>>;
|
|
7696
8946
|
resources: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
7697
8947
|
logLineCount: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
@@ -7738,7 +8988,15 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7738
8988
|
vision: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7739
8989
|
enabledComponents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
7740
8990
|
reasoningBudget: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
8991
|
+
preserveReasoning: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodBoolean>>;
|
|
8992
|
+
temperature: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8993
|
+
topP: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8994
|
+
topK: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8995
|
+
minP: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8996
|
+
presencePenalty: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
8997
|
+
repeatPenalty: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
7741
8998
|
parallelSlots: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
8999
|
+
cachedChats: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7742
9000
|
contextMultiplier: import("zod").ZodDefault<import("zod").ZodNumber>;
|
|
7743
9001
|
calibrationRequired: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7744
9002
|
hostingProfileId: import("zod").ZodDefault<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -7758,6 +9016,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7758
9016
|
running: import("zod").ZodBoolean;
|
|
7759
9017
|
pid: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7760
9018
|
version: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
9019
|
+
runtime: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7761
9020
|
apiVersion: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7762
9021
|
host: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7763
9022
|
port: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
@@ -7766,6 +9025,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7766
9025
|
state: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7767
9026
|
model: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7768
9027
|
modelId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
9028
|
+
residents: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
9029
|
+
state: import("zod").ZodString;
|
|
9030
|
+
model: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
9031
|
+
modelId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
9032
|
+
pid: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
9033
|
+
upstream: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
9034
|
+
vramBytes: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
9035
|
+
}, import("zod/v4/core").$loose>>>;
|
|
7769
9036
|
vramBytes: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7770
9037
|
loadSeconds: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
7771
9038
|
startedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -7782,10 +9049,12 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7782
9049
|
resources: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7783
9050
|
inventory: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7784
9051
|
events: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
9052
|
+
logEvents: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7785
9053
|
liveInference: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7786
9054
|
writable: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7787
9055
|
jobs: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7788
9056
|
restart: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
9057
|
+
processPool: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
7789
9058
|
}, import("zod/v4/core").$loose>>>;
|
|
7790
9059
|
resources: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
7791
9060
|
logLineCount: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
@@ -7868,6 +9137,12 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7868
9137
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
7869
9138
|
requestId: import("zod").ZodString;
|
|
7870
9139
|
}, import("zod/v4/core").$strip>;
|
|
9140
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
9141
|
+
type: import("zod").ZodLiteral<"brain.logs.watch.response">;
|
|
9142
|
+
payload: import("zod").ZodObject<{
|
|
9143
|
+
watching: import("zod").ZodBoolean;
|
|
9144
|
+
requestId: import("zod").ZodString;
|
|
9145
|
+
}, import("zod/v4/core").$strip>;
|
|
7871
9146
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
7872
9147
|
type: import("zod").ZodLiteral<"agent_archived">;
|
|
7873
9148
|
payload: import("zod").ZodObject<{
|
|
@@ -7910,6 +9185,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7910
9185
|
inferred: "inferred";
|
|
7911
9186
|
}>>;
|
|
7912
9187
|
isBaseEditable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
9188
|
+
upstreamRef: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7913
9189
|
isGit: import("zod").ZodLiteral<false>;
|
|
7914
9190
|
isOttoOwnedWorktree: import("zod").ZodLiteral<false>;
|
|
7915
9191
|
repoRoot: import("zod").ZodNull;
|
|
@@ -7941,6 +9217,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7941
9217
|
inferred: "inferred";
|
|
7942
9218
|
}>>;
|
|
7943
9219
|
isBaseEditable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
9220
|
+
upstreamRef: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7944
9221
|
isGit: import("zod").ZodLiteral<true>;
|
|
7945
9222
|
isOttoOwnedWorktree: import("zod").ZodLiteral<false>;
|
|
7946
9223
|
repoRoot: import("zod").ZodString;
|
|
@@ -7976,6 +9253,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
7976
9253
|
inferred: "inferred";
|
|
7977
9254
|
}>>;
|
|
7978
9255
|
isBaseEditable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
9256
|
+
upstreamRef: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
7979
9257
|
isGit: import("zod").ZodLiteral<true>;
|
|
7980
9258
|
isOttoOwnedWorktree: import("zod").ZodLiteral<true>;
|
|
7981
9259
|
repoRoot: import("zod").ZodString;
|
|
@@ -8014,6 +9292,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
8014
9292
|
inferred: "inferred";
|
|
8015
9293
|
}>>;
|
|
8016
9294
|
isBaseEditable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
9295
|
+
upstreamRef: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
8017
9296
|
isGit: import("zod").ZodLiteral<false>;
|
|
8018
9297
|
isOttoOwnedWorktree: import("zod").ZodLiteral<false>;
|
|
8019
9298
|
repoRoot: import("zod").ZodNull;
|
|
@@ -8045,6 +9324,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
8045
9324
|
inferred: "inferred";
|
|
8046
9325
|
}>>;
|
|
8047
9326
|
isBaseEditable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
9327
|
+
upstreamRef: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
8048
9328
|
isGit: import("zod").ZodLiteral<true>;
|
|
8049
9329
|
isOttoOwnedWorktree: import("zod").ZodLiteral<false>;
|
|
8050
9330
|
repoRoot: import("zod").ZodString;
|
|
@@ -8080,6 +9360,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
8080
9360
|
inferred: "inferred";
|
|
8081
9361
|
}>>;
|
|
8082
9362
|
isBaseEditable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
9363
|
+
upstreamRef: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
8083
9364
|
isGit: import("zod").ZodLiteral<true>;
|
|
8084
9365
|
isOttoOwnedWorktree: import("zod").ZodLiteral<true>;
|
|
8085
9366
|
repoRoot: import("zod").ZodString;
|
|
@@ -8197,6 +9478,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
8197
9478
|
cwd: import("zod").ZodString;
|
|
8198
9479
|
files: import("zod").ZodArray<import("zod").ZodObject<{
|
|
8199
9480
|
path: import("zod").ZodString;
|
|
9481
|
+
oldPath: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8200
9482
|
isNew: import("zod").ZodBoolean;
|
|
8201
9483
|
isDeleted: import("zod").ZodBoolean;
|
|
8202
9484
|
additions: import("zod").ZodNumber;
|
|
@@ -8247,6 +9529,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
8247
9529
|
cwd: import("zod").ZodString;
|
|
8248
9530
|
files: import("zod").ZodArray<import("zod").ZodObject<{
|
|
8249
9531
|
path: import("zod").ZodString;
|
|
9532
|
+
oldPath: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8250
9533
|
isNew: import("zod").ZodBoolean;
|
|
8251
9534
|
isDeleted: import("zod").ZodBoolean;
|
|
8252
9535
|
additions: import("zod").ZodNumber;
|
|
@@ -8454,6 +9737,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
8454
9737
|
diff: import("zod").ZodString;
|
|
8455
9738
|
structured: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
8456
9739
|
path: import("zod").ZodString;
|
|
9740
|
+
oldPath: import("zod").ZodOptional<import("zod").ZodString>;
|
|
8457
9741
|
isNew: import("zod").ZodBoolean;
|
|
8458
9742
|
isDeleted: import("zod").ZodBoolean;
|
|
8459
9743
|
additions: import("zod").ZodNumber;
|
|
@@ -9154,6 +10438,38 @@ export declare const WSOutboundMessageSchema: {
|
|
|
9154
10438
|
}, import("zod/v4/core").$strip>>;
|
|
9155
10439
|
requestId: import("zod").ZodString;
|
|
9156
10440
|
}, import("zod/v4/core").$strip>;
|
|
10441
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
10442
|
+
type: import("zod").ZodLiteral<"checkout.git.fetch.response">;
|
|
10443
|
+
payload: import("zod").ZodObject<{
|
|
10444
|
+
cwd: import("zod").ZodString;
|
|
10445
|
+
success: import("zod").ZodBoolean;
|
|
10446
|
+
error: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
10447
|
+
code: import("zod").ZodEnum<{
|
|
10448
|
+
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
10449
|
+
NOT_ALLOWED: "NOT_ALLOWED";
|
|
10450
|
+
MERGE_CONFLICT: "MERGE_CONFLICT";
|
|
10451
|
+
UNKNOWN: "UNKNOWN";
|
|
10452
|
+
}>;
|
|
10453
|
+
message: import("zod").ZodString;
|
|
10454
|
+
}, import("zod/v4/core").$strip>>;
|
|
10455
|
+
requestId: import("zod").ZodString;
|
|
10456
|
+
}, import("zod/v4/core").$strip>;
|
|
10457
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
10458
|
+
type: import("zod").ZodLiteral<"checkout.discard_changes.response">;
|
|
10459
|
+
payload: import("zod").ZodObject<{
|
|
10460
|
+
cwd: import("zod").ZodString;
|
|
10461
|
+
success: import("zod").ZodBoolean;
|
|
10462
|
+
error: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
10463
|
+
code: import("zod").ZodEnum<{
|
|
10464
|
+
NOT_GIT_REPO: "NOT_GIT_REPO";
|
|
10465
|
+
NOT_ALLOWED: "NOT_ALLOWED";
|
|
10466
|
+
MERGE_CONFLICT: "MERGE_CONFLICT";
|
|
10467
|
+
UNKNOWN: "UNKNOWN";
|
|
10468
|
+
}>;
|
|
10469
|
+
message: import("zod").ZodString;
|
|
10470
|
+
}, import("zod/v4/core").$strip>>;
|
|
10471
|
+
requestId: import("zod").ZodString;
|
|
10472
|
+
}, import("zod/v4/core").$strip>;
|
|
9157
10473
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
9158
10474
|
type: import("zod").ZodLiteral<"checkout_pr_create_response">;
|
|
9159
10475
|
payload: import("zod").ZodObject<{
|
|
@@ -9265,6 +10581,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
9265
10581
|
path: import("zod").ZodString;
|
|
9266
10582
|
file: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
9267
10583
|
path: import("zod").ZodString;
|
|
10584
|
+
oldPath: import("zod").ZodOptional<import("zod").ZodString>;
|
|
9268
10585
|
isNew: import("zod").ZodBoolean;
|
|
9269
10586
|
isDeleted: import("zod").ZodBoolean;
|
|
9270
10587
|
additions: import("zod").ZodNumber;
|
|
@@ -9748,6 +11065,138 @@ export declare const WSOutboundMessageSchema: {
|
|
|
9748
11065
|
requestId: import("zod").ZodString;
|
|
9749
11066
|
}, import("zod/v4/core").$strip>;
|
|
9750
11067
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
11068
|
+
type: import("zod").ZodLiteral<"kanban.boards.list.response">;
|
|
11069
|
+
payload: import("zod").ZodObject<{
|
|
11070
|
+
providerId: import("zod").ZodString;
|
|
11071
|
+
boards: import("zod").ZodArray<import("zod").ZodObject<{
|
|
11072
|
+
providerId: import("zod").ZodString;
|
|
11073
|
+
boardId: import("zod").ZodString;
|
|
11074
|
+
title: import("zod").ZodString;
|
|
11075
|
+
}, import("zod/v4/core").$strict>>;
|
|
11076
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
11077
|
+
remediation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
11078
|
+
reason: import("zod").ZodString;
|
|
11079
|
+
missingScopes: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
11080
|
+
steps: import("zod").ZodArray<import("zod").ZodObject<{
|
|
11081
|
+
command: import("zod").ZodString;
|
|
11082
|
+
args: import("zod").ZodArray<import("zod").ZodString>;
|
|
11083
|
+
display: import("zod").ZodString;
|
|
11084
|
+
}, import("zod/v4/core").$strict>>;
|
|
11085
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11086
|
+
}, import("zod/v4/core").$strict>>>;
|
|
11087
|
+
requestId: import("zod").ZodString;
|
|
11088
|
+
}, import("zod/v4/core").$strip>;
|
|
11089
|
+
}, import("zod/v4/core").$strict>, import("zod").ZodObject<{
|
|
11090
|
+
type: import("zod").ZodLiteral<"kanban.board.get.response">;
|
|
11091
|
+
payload: import("zod").ZodObject<{
|
|
11092
|
+
providerId: import("zod").ZodString;
|
|
11093
|
+
board: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
11094
|
+
id: import("zod").ZodString;
|
|
11095
|
+
title: import("zod").ZodString;
|
|
11096
|
+
columns: import("zod").ZodArray<import("zod").ZodObject<{
|
|
11097
|
+
id: import("zod").ZodString;
|
|
11098
|
+
name: import("zod").ZodString;
|
|
11099
|
+
cards: import("zod").ZodArray<import("zod").ZodObject<{
|
|
11100
|
+
id: import("zod").ZodString;
|
|
11101
|
+
title: import("zod").ZodString;
|
|
11102
|
+
body: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11103
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11104
|
+
status: import("zod").ZodString;
|
|
11105
|
+
assignees: import("zod").ZodArray<import("zod").ZodString>;
|
|
11106
|
+
rawProviderId: import("zod").ZodString;
|
|
11107
|
+
}, import("zod/v4/core").$strict>>;
|
|
11108
|
+
}, import("zod/v4/core").$strict>>;
|
|
11109
|
+
}, import("zod/v4/core").$strict>>;
|
|
11110
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
11111
|
+
remediation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
11112
|
+
reason: import("zod").ZodString;
|
|
11113
|
+
missingScopes: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
11114
|
+
steps: import("zod").ZodArray<import("zod").ZodObject<{
|
|
11115
|
+
command: import("zod").ZodString;
|
|
11116
|
+
args: import("zod").ZodArray<import("zod").ZodString>;
|
|
11117
|
+
display: import("zod").ZodString;
|
|
11118
|
+
}, import("zod/v4/core").$strict>>;
|
|
11119
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11120
|
+
}, import("zod/v4/core").$strict>>>;
|
|
11121
|
+
requestId: import("zod").ZodString;
|
|
11122
|
+
}, import("zod/v4/core").$strip>;
|
|
11123
|
+
}, import("zod/v4/core").$strict>, import("zod").ZodObject<{
|
|
11124
|
+
type: import("zod").ZodLiteral<"kanban.card.move.response">;
|
|
11125
|
+
payload: import("zod").ZodObject<{
|
|
11126
|
+
providerId: import("zod").ZodString;
|
|
11127
|
+
boardId: import("zod").ZodString;
|
|
11128
|
+
cardId: import("zod").ZodString;
|
|
11129
|
+
targetColumnId: import("zod").ZodString;
|
|
11130
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
11131
|
+
remediation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
11132
|
+
reason: import("zod").ZodString;
|
|
11133
|
+
missingScopes: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
11134
|
+
steps: import("zod").ZodArray<import("zod").ZodObject<{
|
|
11135
|
+
command: import("zod").ZodString;
|
|
11136
|
+
args: import("zod").ZodArray<import("zod").ZodString>;
|
|
11137
|
+
display: import("zod").ZodString;
|
|
11138
|
+
}, import("zod/v4/core").$strict>>;
|
|
11139
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11140
|
+
}, import("zod/v4/core").$strict>>>;
|
|
11141
|
+
requestId: import("zod").ZodString;
|
|
11142
|
+
}, import("zod/v4/core").$strip>;
|
|
11143
|
+
}, import("zod/v4/core").$strict>, import("zod").ZodObject<{
|
|
11144
|
+
type: import("zod").ZodLiteral<"kanban.card.create.response">;
|
|
11145
|
+
payload: import("zod").ZodObject<{
|
|
11146
|
+
providerId: import("zod").ZodString;
|
|
11147
|
+
boardId: import("zod").ZodString;
|
|
11148
|
+
columnId: import("zod").ZodString;
|
|
11149
|
+
card: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
11150
|
+
id: import("zod").ZodString;
|
|
11151
|
+
title: import("zod").ZodString;
|
|
11152
|
+
body: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11153
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11154
|
+
status: import("zod").ZodString;
|
|
11155
|
+
assignees: import("zod").ZodArray<import("zod").ZodString>;
|
|
11156
|
+
rawProviderId: import("zod").ZodString;
|
|
11157
|
+
}, import("zod/v4/core").$strict>>;
|
|
11158
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
11159
|
+
remediation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
11160
|
+
reason: import("zod").ZodString;
|
|
11161
|
+
missingScopes: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
11162
|
+
steps: import("zod").ZodArray<import("zod").ZodObject<{
|
|
11163
|
+
command: import("zod").ZodString;
|
|
11164
|
+
args: import("zod").ZodArray<import("zod").ZodString>;
|
|
11165
|
+
display: import("zod").ZodString;
|
|
11166
|
+
}, import("zod/v4/core").$strict>>;
|
|
11167
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11168
|
+
}, import("zod/v4/core").$strict>>>;
|
|
11169
|
+
requestId: import("zod").ZodString;
|
|
11170
|
+
}, import("zod/v4/core").$strip>;
|
|
11171
|
+
}, import("zod/v4/core").$strict>, import("zod").ZodObject<{
|
|
11172
|
+
type: import("zod").ZodLiteral<"kanban.task.link.response">;
|
|
11173
|
+
payload: import("zod").ZodObject<{
|
|
11174
|
+
providerId: import("zod").ZodString;
|
|
11175
|
+
boardId: import("zod").ZodString;
|
|
11176
|
+
columnId: import("zod").ZodString;
|
|
11177
|
+
card: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
11178
|
+
id: import("zod").ZodString;
|
|
11179
|
+
title: import("zod").ZodString;
|
|
11180
|
+
body: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11181
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11182
|
+
status: import("zod").ZodString;
|
|
11183
|
+
assignees: import("zod").ZodArray<import("zod").ZodString>;
|
|
11184
|
+
rawProviderId: import("zod").ZodString;
|
|
11185
|
+
}, import("zod/v4/core").$strict>>;
|
|
11186
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
11187
|
+
remediation: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
11188
|
+
reason: import("zod").ZodString;
|
|
11189
|
+
missingScopes: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
11190
|
+
steps: import("zod").ZodArray<import("zod").ZodObject<{
|
|
11191
|
+
command: import("zod").ZodString;
|
|
11192
|
+
args: import("zod").ZodArray<import("zod").ZodString>;
|
|
11193
|
+
display: import("zod").ZodString;
|
|
11194
|
+
}, import("zod/v4/core").$strict>>;
|
|
11195
|
+
url: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11196
|
+
}, import("zod/v4/core").$strict>>>;
|
|
11197
|
+
requestId: import("zod").ZodString;
|
|
11198
|
+
}, import("zod/v4/core").$strip>;
|
|
11199
|
+
}, import("zod/v4/core").$strict>, import("zod").ZodObject<{
|
|
9751
11200
|
type: import("zod").ZodLiteral<"validate_branch_response">;
|
|
9752
11201
|
payload: import("zod").ZodObject<{
|
|
9753
11202
|
exists: import("zod").ZodBoolean;
|
|
@@ -9766,6 +11215,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
9766
11215
|
hasLocal: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
9767
11216
|
hasRemote: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
9768
11217
|
checkedOutElsewhere: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11218
|
+
localAhead: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
11219
|
+
localBehind: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
9769
11220
|
}, import("zod/v4/core").$strip>>>;
|
|
9770
11221
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
9771
11222
|
requestId: import("zod").ZodString;
|
|
@@ -9907,17 +11358,26 @@ export declare const WSOutboundMessageSchema: {
|
|
|
9907
11358
|
projectId: import("zod").ZodString;
|
|
9908
11359
|
projectDisplayName: import("zod").ZodString;
|
|
9909
11360
|
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
11361
|
+
projectKanban: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
11362
|
+
adapter: import("zod").ZodEnum<{
|
|
11363
|
+
github: "github";
|
|
11364
|
+
jira: "jira";
|
|
11365
|
+
}>;
|
|
11366
|
+
boardId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
11367
|
+
}, import("zod/v4/core").$loose>>>;
|
|
11368
|
+
projectCustomIconRevision: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
9910
11369
|
projectRootPath: import("zod").ZodString;
|
|
9911
11370
|
workspaceDirectory: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11371
|
+
worktreeSlug: import("zod").ZodOptional<import("zod").ZodString>;
|
|
9912
11372
|
projectKind: import("zod").ZodEnum<{
|
|
9913
|
-
git: "git";
|
|
9914
11373
|
directory: "directory";
|
|
11374
|
+
git: "git";
|
|
9915
11375
|
non_git: "non_git";
|
|
9916
11376
|
}>;
|
|
9917
11377
|
workspaceKind: import("zod").ZodEnum<{
|
|
9918
11378
|
worktree: "worktree";
|
|
9919
|
-
checkout: "checkout";
|
|
9920
11379
|
directory: "directory";
|
|
11380
|
+
checkout: "checkout";
|
|
9921
11381
|
local_checkout: "local_checkout";
|
|
9922
11382
|
}>;
|
|
9923
11383
|
name: import("zod").ZodString;
|
|
@@ -9926,10 +11386,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
9926
11386
|
archivingAt: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
9927
11387
|
status: import("zod").ZodEnum<{
|
|
9928
11388
|
running: "running";
|
|
9929
|
-
attention: "attention";
|
|
9930
|
-
needs_input: "needs_input";
|
|
9931
11389
|
done: "done";
|
|
9932
11390
|
failed: "failed";
|
|
11391
|
+
attention: "attention";
|
|
11392
|
+
needs_input: "needs_input";
|
|
9933
11393
|
}>;
|
|
9934
11394
|
statusEnteredAt: import("zod").ZodPipe<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>, import("zod").ZodTransform<string | null, string | null | undefined>>;
|
|
9935
11395
|
activityAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -10117,11 +11577,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10117
11577
|
projectId: string;
|
|
10118
11578
|
projectDisplayName: string;
|
|
10119
11579
|
projectRootPath: string;
|
|
10120
|
-
projectKind: "
|
|
10121
|
-
workspaceKind: "worktree" | "
|
|
11580
|
+
projectKind: "directory" | "git" | "non_git";
|
|
11581
|
+
workspaceKind: "worktree" | "directory" | "checkout" | "local_checkout";
|
|
10122
11582
|
name: string;
|
|
10123
11583
|
archivingAt: string | null;
|
|
10124
|
-
status: "running" | "
|
|
11584
|
+
status: "running" | "done" | "failed" | "attention" | "needs_input";
|
|
10125
11585
|
statusEnteredAt: string | null;
|
|
10126
11586
|
activityAt: string | null;
|
|
10127
11587
|
scripts: {
|
|
@@ -10145,6 +11605,13 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10145
11605
|
publicProxyUrl?: string | null | undefined;
|
|
10146
11606
|
}[];
|
|
10147
11607
|
projectCustomName?: string | null | undefined;
|
|
11608
|
+
projectKanban?: {
|
|
11609
|
+
[x: string]: unknown;
|
|
11610
|
+
adapter: "github" | "jira";
|
|
11611
|
+
boardId?: string | null | undefined;
|
|
11612
|
+
} | null | undefined;
|
|
11613
|
+
projectCustomIconRevision?: string | null | undefined;
|
|
11614
|
+
worktreeSlug?: string | undefined;
|
|
10148
11615
|
title?: string | null | undefined;
|
|
10149
11616
|
pinnedAt?: string | null | undefined;
|
|
10150
11617
|
diffStat?: {
|
|
@@ -10234,11 +11701,11 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10234
11701
|
projectId: string;
|
|
10235
11702
|
projectDisplayName: string;
|
|
10236
11703
|
projectRootPath: string;
|
|
10237
|
-
projectKind: "
|
|
10238
|
-
workspaceKind: "worktree" | "
|
|
11704
|
+
projectKind: "directory" | "git" | "non_git";
|
|
11705
|
+
workspaceKind: "worktree" | "directory" | "checkout" | "local_checkout";
|
|
10239
11706
|
name: string;
|
|
10240
11707
|
archivingAt: string | null;
|
|
10241
|
-
status: "running" | "
|
|
11708
|
+
status: "running" | "done" | "failed" | "attention" | "needs_input";
|
|
10242
11709
|
statusEnteredAt: string | null;
|
|
10243
11710
|
activityAt: string | null;
|
|
10244
11711
|
scripts: {
|
|
@@ -10262,7 +11729,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10262
11729
|
publicProxyUrl?: string | null | undefined;
|
|
10263
11730
|
}[];
|
|
10264
11731
|
projectCustomName?: string | null | undefined;
|
|
11732
|
+
projectKanban?: {
|
|
11733
|
+
[x: string]: unknown;
|
|
11734
|
+
adapter: "github" | "jira";
|
|
11735
|
+
boardId?: string | null | undefined;
|
|
11736
|
+
} | null | undefined;
|
|
11737
|
+
projectCustomIconRevision?: string | null | undefined;
|
|
10265
11738
|
workspaceDirectory?: string | undefined;
|
|
11739
|
+
worktreeSlug?: string | undefined;
|
|
10266
11740
|
title?: string | null | undefined;
|
|
10267
11741
|
pinnedAt?: string | null | undefined;
|
|
10268
11742
|
diffStat?: {
|
|
@@ -10480,6 +11954,45 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10480
11954
|
}, import("zod/v4/core").$strip>], "status">;
|
|
10481
11955
|
requestId: import("zod").ZodString;
|
|
10482
11956
|
}, import("zod/v4/core").$strip>;
|
|
11957
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
11958
|
+
type: import("zod").ZodLiteral<"fs.entry.create.response">;
|
|
11959
|
+
payload: import("zod").ZodObject<{
|
|
11960
|
+
cwd: import("zod").ZodString;
|
|
11961
|
+
parentPath: import("zod").ZodString;
|
|
11962
|
+
path: import("zod").ZodNullable<import("zod").ZodString>;
|
|
11963
|
+
success: import("zod").ZodBoolean;
|
|
11964
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
11965
|
+
requestId: import("zod").ZodString;
|
|
11966
|
+
}, import("zod/v4/core").$strip>;
|
|
11967
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
11968
|
+
type: import("zod").ZodLiteral<"fs.entry.rename.response">;
|
|
11969
|
+
payload: import("zod").ZodObject<{
|
|
11970
|
+
cwd: import("zod").ZodString;
|
|
11971
|
+
path: import("zod").ZodString;
|
|
11972
|
+
renamedPath: import("zod").ZodNullable<import("zod").ZodString>;
|
|
11973
|
+
success: import("zod").ZodBoolean;
|
|
11974
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
11975
|
+
requestId: import("zod").ZodString;
|
|
11976
|
+
}, import("zod/v4/core").$strip>;
|
|
11977
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
11978
|
+
type: import("zod").ZodLiteral<"fs.entry.duplicate.response">;
|
|
11979
|
+
payload: import("zod").ZodObject<{
|
|
11980
|
+
cwd: import("zod").ZodString;
|
|
11981
|
+
path: import("zod").ZodString;
|
|
11982
|
+
duplicatedPath: import("zod").ZodNullable<import("zod").ZodString>;
|
|
11983
|
+
success: import("zod").ZodBoolean;
|
|
11984
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
11985
|
+
requestId: import("zod").ZodString;
|
|
11986
|
+
}, import("zod/v4/core").$strip>;
|
|
11987
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
11988
|
+
type: import("zod").ZodLiteral<"fs.entry.delete.response">;
|
|
11989
|
+
payload: import("zod").ZodObject<{
|
|
11990
|
+
cwd: import("zod").ZodString;
|
|
11991
|
+
path: import("zod").ZodString;
|
|
11992
|
+
success: import("zod").ZodBoolean;
|
|
11993
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
11994
|
+
requestId: import("zod").ZodString;
|
|
11995
|
+
}, import("zod/v4/core").$strip>;
|
|
10483
11996
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
10484
11997
|
type: import("zod").ZodLiteral<"fs.file.update">;
|
|
10485
11998
|
payload: import("zod").ZodObject<{
|
|
@@ -10513,6 +12026,17 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10513
12026
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
10514
12027
|
requestId: import("zod").ZodString;
|
|
10515
12028
|
}, import("zod/v4/core").$strip>;
|
|
12029
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
12030
|
+
type: import("zod").ZodLiteral<"project.icon.get.response">;
|
|
12031
|
+
payload: import("zod").ZodObject<{
|
|
12032
|
+
projectId: import("zod").ZodString;
|
|
12033
|
+
icon: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
12034
|
+
data: import("zod").ZodString;
|
|
12035
|
+
mimeType: import("zod").ZodString;
|
|
12036
|
+
}, import("zod/v4/core").$strip>>;
|
|
12037
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12038
|
+
requestId: import("zod").ZodString;
|
|
12039
|
+
}, import("zod/v4/core").$strip>;
|
|
10516
12040
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
10517
12041
|
type: import("zod").ZodLiteral<"file_download_token_response">;
|
|
10518
12042
|
payload: import("zod").ZodObject<{
|
|
@@ -10793,8 +12317,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10793
12317
|
cwd: import("zod").ZodString;
|
|
10794
12318
|
path: import("zod").ZodString;
|
|
10795
12319
|
status: import("zod").ZodEnum<{
|
|
10796
|
-
unavailable: "unavailable";
|
|
10797
12320
|
ok: "ok";
|
|
12321
|
+
unavailable: "unavailable";
|
|
10798
12322
|
indexing: "indexing";
|
|
10799
12323
|
}>;
|
|
10800
12324
|
locations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -10832,8 +12356,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10832
12356
|
cwd: import("zod").ZodString;
|
|
10833
12357
|
path: import("zod").ZodString;
|
|
10834
12358
|
status: import("zod").ZodEnum<{
|
|
10835
|
-
unavailable: "unavailable";
|
|
10836
12359
|
ok: "ok";
|
|
12360
|
+
unavailable: "unavailable";
|
|
10837
12361
|
indexing: "indexing";
|
|
10838
12362
|
}>;
|
|
10839
12363
|
markdown: import("zod").ZodNullable<import("zod").ZodString>;
|
|
@@ -10853,8 +12377,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10853
12377
|
cwd: import("zod").ZodString;
|
|
10854
12378
|
path: import("zod").ZodString;
|
|
10855
12379
|
status: import("zod").ZodEnum<{
|
|
10856
|
-
unavailable: "unavailable";
|
|
10857
12380
|
ok: "ok";
|
|
12381
|
+
unavailable: "unavailable";
|
|
10858
12382
|
indexing: "indexing";
|
|
10859
12383
|
}>;
|
|
10860
12384
|
locations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -10875,8 +12399,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10875
12399
|
path: import("zod").ZodString;
|
|
10876
12400
|
newName: import("zod").ZodString;
|
|
10877
12401
|
status: import("zod").ZodEnum<{
|
|
10878
|
-
unavailable: "unavailable";
|
|
10879
12402
|
ok: "ok";
|
|
12403
|
+
unavailable: "unavailable";
|
|
10880
12404
|
indexing: "indexing";
|
|
10881
12405
|
}>;
|
|
10882
12406
|
files: import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -10964,6 +12488,15 @@ export declare const WSOutboundMessageSchema: {
|
|
|
10964
12488
|
path: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
10965
12489
|
extensions: import("zod").ZodArray<import("zod").ZodString>;
|
|
10966
12490
|
indexCost: import("zod").ZodString;
|
|
12491
|
+
install: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
12492
|
+
steps: import("zod").ZodArray<import("zod").ZodObject<{
|
|
12493
|
+
command: import("zod").ZodString;
|
|
12494
|
+
args: import("zod").ZodArray<import("zod").ZodString>;
|
|
12495
|
+
display: import("zod").ZodString;
|
|
12496
|
+
note: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12497
|
+
}, import("zod/v4/core").$strip>>;
|
|
12498
|
+
url: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12499
|
+
}, import("zod/v4/core").$strip>>>;
|
|
10967
12500
|
}, import("zod/v4/core").$strip>>;
|
|
10968
12501
|
running: import("zod").ZodArray<import("zod").ZodObject<{
|
|
10969
12502
|
rootPath: import("zod").ZodString;
|
|
@@ -11033,9 +12566,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11033
12566
|
solutionPath: import("zod").ZodString;
|
|
11034
12567
|
projectPath: import("zod").ZodString;
|
|
11035
12568
|
status: import("zod").ZodEnum<{
|
|
11036
|
-
failed: "failed";
|
|
11037
|
-
unavailable: "unavailable";
|
|
11038
12569
|
ok: "ok";
|
|
12570
|
+
unavailable: "unavailable";
|
|
12571
|
+
failed: "failed";
|
|
11039
12572
|
}>;
|
|
11040
12573
|
nodes: import("zod").ZodArray<import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
11041
12574
|
kind: import("zod").ZodLiteral<"directory">;
|
|
@@ -11069,7 +12602,29 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11069
12602
|
type: import("zod").ZodLiteral<"list_provider_models_response">;
|
|
11070
12603
|
payload: import("zod").ZodObject<{
|
|
11071
12604
|
provider: import("zod").ZodString;
|
|
11072
|
-
models: import("zod").ZodOptional<import("zod").ZodArray<import("zod").
|
|
12605
|
+
models: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
12606
|
+
provider: import("zod").ZodString;
|
|
12607
|
+
id: import("zod").ZodString;
|
|
12608
|
+
aliases: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
12609
|
+
isSelectable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
12610
|
+
label: import("zod").ZodString;
|
|
12611
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12612
|
+
family: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12613
|
+
isDefault: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
12614
|
+
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
12615
|
+
contextWindowMaxTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
12616
|
+
thinkingOptions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
12617
|
+
id: import("zod").ZodString;
|
|
12618
|
+
label: import("zod").ZodString;
|
|
12619
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12620
|
+
family: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12621
|
+
isDefault: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
12622
|
+
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
12623
|
+
}, import("zod/v4/core").$strip>>>;
|
|
12624
|
+
defaultThinkingOptionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12625
|
+
tier: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").ModelTier, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").ModelTier, unknown>>>;
|
|
12626
|
+
supportsAutoMode: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
12627
|
+
}, import("zod/v4/core").$strip>>>;
|
|
11073
12628
|
error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
11074
12629
|
fetchedAt: import("zod").ZodString;
|
|
11075
12630
|
requestId: import("zod").ZodString;
|
|
@@ -11131,6 +12686,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11131
12686
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
11132
12687
|
type: import("zod").ZodLiteral<"get_providers_snapshot_response">;
|
|
11133
12688
|
payload: import("zod").ZodObject<{
|
|
12689
|
+
cwd: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11134
12690
|
entries: import("zod").ZodArray<import("zod").ZodObject<{
|
|
11135
12691
|
provider: import("zod").ZodString;
|
|
11136
12692
|
status: import("zod").ZodType<import("../agent-types.js").ProviderStatus, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").ProviderStatus, unknown>>;
|
|
@@ -11140,13 +12696,80 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11140
12696
|
builtin: "builtin";
|
|
11141
12697
|
}>>;
|
|
11142
12698
|
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11143
|
-
models: import("zod").ZodOptional<import("zod").ZodArray<import("zod").
|
|
12699
|
+
models: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
12700
|
+
provider: import("zod").ZodString;
|
|
12701
|
+
id: import("zod").ZodString;
|
|
12702
|
+
aliases: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
12703
|
+
isSelectable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
12704
|
+
label: import("zod").ZodString;
|
|
12705
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12706
|
+
family: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12707
|
+
isDefault: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
12708
|
+
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
12709
|
+
contextWindowMaxTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
12710
|
+
thinkingOptions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
12711
|
+
id: import("zod").ZodString;
|
|
12712
|
+
label: import("zod").ZodString;
|
|
12713
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12714
|
+
family: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12715
|
+
isDefault: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
12716
|
+
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
12717
|
+
}, import("zod/v4/core").$strip>>>;
|
|
12718
|
+
defaultThinkingOptionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12719
|
+
tier: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").ModelTier, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").ModelTier, unknown>>>;
|
|
12720
|
+
supportsAutoMode: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
12721
|
+
}, import("zod/v4/core").$strip>>>;
|
|
11144
12722
|
modes: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodType<import("../agent-types.js").AgentMode, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentMode, unknown>>>>;
|
|
11145
12723
|
fetchedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11146
12724
|
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11147
12725
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11148
12726
|
defaultModeId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
11149
12727
|
}, import("zod/v4/core").$strip>>;
|
|
12728
|
+
compactSnapshot: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
12729
|
+
entries: import("zod").ZodArray<import("zod").ZodObject<{
|
|
12730
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12731
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12732
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12733
|
+
source: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
12734
|
+
custom: "custom";
|
|
12735
|
+
builtin: "builtin";
|
|
12736
|
+
}>>;
|
|
12737
|
+
enabled: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
12738
|
+
provider: import("zod").ZodString;
|
|
12739
|
+
status: import("zod").ZodType<import("../agent-types.js").ProviderStatus, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").ProviderStatus, unknown>>;
|
|
12740
|
+
defaultModeId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
12741
|
+
modes: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodType<import("../agent-types.js").AgentMode, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentMode, unknown>>>>;
|
|
12742
|
+
fetchedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12743
|
+
models: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
12744
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12745
|
+
label: import("zod").ZodString;
|
|
12746
|
+
id: import("zod").ZodString;
|
|
12747
|
+
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
12748
|
+
isDefault: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
12749
|
+
family: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12750
|
+
tier: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").ModelTier, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").ModelTier, unknown>>>;
|
|
12751
|
+
aliases: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
12752
|
+
isSelectable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
12753
|
+
contextWindowMaxTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
12754
|
+
defaultThinkingOptionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12755
|
+
supportsAutoMode: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
12756
|
+
thinkingSet: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
12757
|
+
}, import("zod/v4/core").$strip>>>;
|
|
12758
|
+
}, import("zod/v4/core").$strip>>;
|
|
12759
|
+
thinkingSets: import("zod").ZodArray<import("zod").ZodObject<{
|
|
12760
|
+
options: import("zod").ZodArray<import("zod").ZodObject<{
|
|
12761
|
+
id: import("zod").ZodString;
|
|
12762
|
+
label: import("zod").ZodString;
|
|
12763
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12764
|
+
family: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12765
|
+
isDefault: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
12766
|
+
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
12767
|
+
}, import("zod/v4/core").$strip>>;
|
|
12768
|
+
defaultOptionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12769
|
+
}, import("zod/v4/core").$strip>>;
|
|
12770
|
+
}, import("zod/v4/core").$strip>>;
|
|
12771
|
+
snapshotHash: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12772
|
+
notModified: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
11150
12773
|
generatedAt: import("zod").ZodString;
|
|
11151
12774
|
requestId: import("zod").ZodString;
|
|
11152
12775
|
}, import("zod/v4/core").$strip>;
|
|
@@ -11163,13 +12786,79 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11163
12786
|
builtin: "builtin";
|
|
11164
12787
|
}>>;
|
|
11165
12788
|
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11166
|
-
models: import("zod").ZodOptional<import("zod").ZodArray<import("zod").
|
|
12789
|
+
models: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
12790
|
+
provider: import("zod").ZodString;
|
|
12791
|
+
id: import("zod").ZodString;
|
|
12792
|
+
aliases: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
12793
|
+
isSelectable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
12794
|
+
label: import("zod").ZodString;
|
|
12795
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12796
|
+
family: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12797
|
+
isDefault: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
12798
|
+
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
12799
|
+
contextWindowMaxTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
12800
|
+
thinkingOptions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
12801
|
+
id: import("zod").ZodString;
|
|
12802
|
+
label: import("zod").ZodString;
|
|
12803
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12804
|
+
family: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12805
|
+
isDefault: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
12806
|
+
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
12807
|
+
}, import("zod/v4/core").$strip>>>;
|
|
12808
|
+
defaultThinkingOptionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12809
|
+
tier: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").ModelTier, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").ModelTier, unknown>>>;
|
|
12810
|
+
supportsAutoMode: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
12811
|
+
}, import("zod/v4/core").$strip>>>;
|
|
11167
12812
|
modes: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodType<import("../agent-types.js").AgentMode, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentMode, unknown>>>>;
|
|
11168
12813
|
fetchedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11169
12814
|
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11170
12815
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11171
12816
|
defaultModeId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
11172
12817
|
}, import("zod/v4/core").$strip>>;
|
|
12818
|
+
compactSnapshot: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
12819
|
+
entries: import("zod").ZodArray<import("zod").ZodObject<{
|
|
12820
|
+
error: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12821
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12822
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12823
|
+
source: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
12824
|
+
custom: "custom";
|
|
12825
|
+
builtin: "builtin";
|
|
12826
|
+
}>>;
|
|
12827
|
+
enabled: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
|
|
12828
|
+
provider: import("zod").ZodString;
|
|
12829
|
+
status: import("zod").ZodType<import("../agent-types.js").ProviderStatus, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").ProviderStatus, unknown>>;
|
|
12830
|
+
defaultModeId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
12831
|
+
modes: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodType<import("../agent-types.js").AgentMode, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentMode, unknown>>>>;
|
|
12832
|
+
fetchedAt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12833
|
+
models: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
12834
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12835
|
+
label: import("zod").ZodString;
|
|
12836
|
+
id: import("zod").ZodString;
|
|
12837
|
+
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
12838
|
+
isDefault: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
12839
|
+
family: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12840
|
+
tier: import("zod").ZodOptional<import("zod").ZodType<import("../agent-types.js").ModelTier, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").ModelTier, unknown>>>;
|
|
12841
|
+
aliases: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
12842
|
+
isSelectable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
12843
|
+
contextWindowMaxTokens: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
12844
|
+
defaultThinkingOptionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12845
|
+
supportsAutoMode: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
12846
|
+
thinkingSet: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
12847
|
+
}, import("zod/v4/core").$strip>>>;
|
|
12848
|
+
}, import("zod/v4/core").$strip>>;
|
|
12849
|
+
thinkingSets: import("zod").ZodArray<import("zod").ZodObject<{
|
|
12850
|
+
options: import("zod").ZodArray<import("zod").ZodObject<{
|
|
12851
|
+
id: import("zod").ZodString;
|
|
12852
|
+
label: import("zod").ZodString;
|
|
12853
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12854
|
+
family: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12855
|
+
isDefault: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
12856
|
+
metadata: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
12857
|
+
}, import("zod/v4/core").$strip>>;
|
|
12858
|
+
defaultOptionId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12859
|
+
}, import("zod/v4/core").$strip>>;
|
|
12860
|
+
}, import("zod/v4/core").$strip>>;
|
|
12861
|
+
snapshotHash: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11173
12862
|
generatedAt: import("zod").ZodString;
|
|
11174
12863
|
}, import("zod/v4/core").$strip>;
|
|
11175
12864
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -11212,9 +12901,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11212
12901
|
shortfallPct: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
11213
12902
|
tone: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11214
12903
|
default: "default";
|
|
12904
|
+
ok: "ok";
|
|
11215
12905
|
warning: "warning";
|
|
11216
12906
|
danger: "danger";
|
|
11217
|
-
ok: "ok";
|
|
11218
12907
|
}>>;
|
|
11219
12908
|
}, import("zod/v4/core").$strip>>;
|
|
11220
12909
|
balances: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -11232,9 +12921,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11232
12921
|
resetsAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
11233
12922
|
tone: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11234
12923
|
default: "default";
|
|
12924
|
+
ok: "ok";
|
|
11235
12925
|
warning: "warning";
|
|
11236
12926
|
danger: "danger";
|
|
11237
|
-
ok: "ok";
|
|
11238
12927
|
}>>;
|
|
11239
12928
|
}, import("zod/v4/core").$strip>>>;
|
|
11240
12929
|
details: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -11243,9 +12932,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11243
12932
|
value: import("zod").ZodString;
|
|
11244
12933
|
tone: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11245
12934
|
default: "default";
|
|
12935
|
+
ok: "ok";
|
|
11246
12936
|
warning: "warning";
|
|
11247
12937
|
danger: "danger";
|
|
11248
|
-
ok: "ok";
|
|
11249
12938
|
}>>;
|
|
11250
12939
|
}, import("zod/v4/core").$strip>>>;
|
|
11251
12940
|
error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
@@ -11489,8 +13178,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11489
13178
|
sharePercent: import("zod").ZodNumber;
|
|
11490
13179
|
severity: import("zod").ZodEnum<{
|
|
11491
13180
|
ok: "ok";
|
|
11492
|
-
notice: "notice";
|
|
11493
13181
|
warn: "warn";
|
|
13182
|
+
notice: "notice";
|
|
11494
13183
|
critical: "critical";
|
|
11495
13184
|
}>;
|
|
11496
13185
|
visibility: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
@@ -11506,8 +13195,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11506
13195
|
workingRoom: import("zod").ZodNumber;
|
|
11507
13196
|
aggregateSeverity: import("zod").ZodEnum<{
|
|
11508
13197
|
ok: "ok";
|
|
11509
|
-
notice: "notice";
|
|
11510
13198
|
warn: "warn";
|
|
13199
|
+
notice: "notice";
|
|
11511
13200
|
critical: "critical";
|
|
11512
13201
|
}>;
|
|
11513
13202
|
findings: import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -11585,17 +13274,17 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11585
13274
|
evidence: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11586
13275
|
tags: import("zod").ZodArray<import("zod").ZodString>;
|
|
11587
13276
|
status: import("zod").ZodEnum<{
|
|
13277
|
+
superseded: "superseded";
|
|
11588
13278
|
proposed: "proposed";
|
|
11589
13279
|
confirmed: "confirmed";
|
|
11590
|
-
superseded: "superseded";
|
|
11591
13280
|
}>;
|
|
11592
13281
|
deliveryStatus: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11593
|
-
blocked: "blocked";
|
|
11594
|
-
complete: "complete";
|
|
11595
|
-
partial: "partial";
|
|
11596
13282
|
reference: "reference";
|
|
11597
13283
|
charter: "charter";
|
|
11598
13284
|
in_build: "in_build";
|
|
13285
|
+
partial: "partial";
|
|
13286
|
+
blocked: "blocked";
|
|
13287
|
+
complete: "complete";
|
|
11599
13288
|
deferred: "deferred";
|
|
11600
13289
|
cancelled: "cancelled";
|
|
11601
13290
|
}>>;
|
|
@@ -11606,9 +13295,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11606
13295
|
}, import("zod/v4/core").$strip>>;
|
|
11607
13296
|
referenceDisposition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11608
13297
|
read: "read";
|
|
11609
|
-
rejected: "rejected";
|
|
11610
13298
|
unevaluated: "unevaluated";
|
|
11611
13299
|
adopted: "adopted";
|
|
13300
|
+
rejected: "rejected";
|
|
11612
13301
|
dependency: "dependency";
|
|
11613
13302
|
}>>;
|
|
11614
13303
|
sourceUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -11638,8 +13327,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11638
13327
|
recordId: import("zod").ZodString;
|
|
11639
13328
|
relatedRecordId: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11640
13329
|
tagOverlap: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11641
|
-
complete: "complete";
|
|
11642
13330
|
partial: "partial";
|
|
13331
|
+
complete: "complete";
|
|
11643
13332
|
}>>;
|
|
11644
13333
|
sharedTags: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString>>;
|
|
11645
13334
|
message: import("zod").ZodString;
|
|
@@ -11670,17 +13359,17 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11670
13359
|
evidence: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11671
13360
|
tags: import("zod").ZodArray<import("zod").ZodString>;
|
|
11672
13361
|
status: import("zod").ZodEnum<{
|
|
13362
|
+
superseded: "superseded";
|
|
11673
13363
|
proposed: "proposed";
|
|
11674
13364
|
confirmed: "confirmed";
|
|
11675
|
-
superseded: "superseded";
|
|
11676
13365
|
}>;
|
|
11677
13366
|
deliveryStatus: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11678
|
-
blocked: "blocked";
|
|
11679
|
-
complete: "complete";
|
|
11680
|
-
partial: "partial";
|
|
11681
13367
|
reference: "reference";
|
|
11682
13368
|
charter: "charter";
|
|
11683
13369
|
in_build: "in_build";
|
|
13370
|
+
partial: "partial";
|
|
13371
|
+
blocked: "blocked";
|
|
13372
|
+
complete: "complete";
|
|
11684
13373
|
deferred: "deferred";
|
|
11685
13374
|
cancelled: "cancelled";
|
|
11686
13375
|
}>>;
|
|
@@ -11691,9 +13380,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11691
13380
|
}, import("zod/v4/core").$strip>>;
|
|
11692
13381
|
referenceDisposition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11693
13382
|
read: "read";
|
|
11694
|
-
rejected: "rejected";
|
|
11695
13383
|
unevaluated: "unevaluated";
|
|
11696
13384
|
adopted: "adopted";
|
|
13385
|
+
rejected: "rejected";
|
|
11697
13386
|
dependency: "dependency";
|
|
11698
13387
|
}>>;
|
|
11699
13388
|
sourceUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -11730,17 +13419,17 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11730
13419
|
evidence: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11731
13420
|
tags: import("zod").ZodArray<import("zod").ZodString>;
|
|
11732
13421
|
status: import("zod").ZodEnum<{
|
|
13422
|
+
superseded: "superseded";
|
|
11733
13423
|
proposed: "proposed";
|
|
11734
13424
|
confirmed: "confirmed";
|
|
11735
|
-
superseded: "superseded";
|
|
11736
13425
|
}>;
|
|
11737
13426
|
deliveryStatus: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11738
|
-
blocked: "blocked";
|
|
11739
|
-
complete: "complete";
|
|
11740
|
-
partial: "partial";
|
|
11741
13427
|
reference: "reference";
|
|
11742
13428
|
charter: "charter";
|
|
11743
13429
|
in_build: "in_build";
|
|
13430
|
+
partial: "partial";
|
|
13431
|
+
blocked: "blocked";
|
|
13432
|
+
complete: "complete";
|
|
11744
13433
|
deferred: "deferred";
|
|
11745
13434
|
cancelled: "cancelled";
|
|
11746
13435
|
}>>;
|
|
@@ -11751,9 +13440,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11751
13440
|
}, import("zod/v4/core").$strip>>;
|
|
11752
13441
|
referenceDisposition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11753
13442
|
read: "read";
|
|
11754
|
-
rejected: "rejected";
|
|
11755
13443
|
unevaluated: "unevaluated";
|
|
11756
13444
|
adopted: "adopted";
|
|
13445
|
+
rejected: "rejected";
|
|
11757
13446
|
dependency: "dependency";
|
|
11758
13447
|
}>>;
|
|
11759
13448
|
sourceUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -11790,17 +13479,17 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11790
13479
|
evidence: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11791
13480
|
tags: import("zod").ZodArray<import("zod").ZodString>;
|
|
11792
13481
|
status: import("zod").ZodEnum<{
|
|
13482
|
+
superseded: "superseded";
|
|
11793
13483
|
proposed: "proposed";
|
|
11794
13484
|
confirmed: "confirmed";
|
|
11795
|
-
superseded: "superseded";
|
|
11796
13485
|
}>;
|
|
11797
13486
|
deliveryStatus: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11798
|
-
blocked: "blocked";
|
|
11799
|
-
complete: "complete";
|
|
11800
|
-
partial: "partial";
|
|
11801
13487
|
reference: "reference";
|
|
11802
13488
|
charter: "charter";
|
|
11803
13489
|
in_build: "in_build";
|
|
13490
|
+
partial: "partial";
|
|
13491
|
+
blocked: "blocked";
|
|
13492
|
+
complete: "complete";
|
|
11804
13493
|
deferred: "deferred";
|
|
11805
13494
|
cancelled: "cancelled";
|
|
11806
13495
|
}>>;
|
|
@@ -11811,9 +13500,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11811
13500
|
}, import("zod/v4/core").$strip>>;
|
|
11812
13501
|
referenceDisposition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11813
13502
|
read: "read";
|
|
11814
|
-
rejected: "rejected";
|
|
11815
13503
|
unevaluated: "unevaluated";
|
|
11816
13504
|
adopted: "adopted";
|
|
13505
|
+
rejected: "rejected";
|
|
11817
13506
|
dependency: "dependency";
|
|
11818
13507
|
}>>;
|
|
11819
13508
|
sourceUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -11851,17 +13540,17 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11851
13540
|
evidence: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11852
13541
|
tags: import("zod").ZodArray<import("zod").ZodString>;
|
|
11853
13542
|
status: import("zod").ZodEnum<{
|
|
13543
|
+
superseded: "superseded";
|
|
11854
13544
|
proposed: "proposed";
|
|
11855
13545
|
confirmed: "confirmed";
|
|
11856
|
-
superseded: "superseded";
|
|
11857
13546
|
}>;
|
|
11858
13547
|
deliveryStatus: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11859
|
-
blocked: "blocked";
|
|
11860
|
-
complete: "complete";
|
|
11861
|
-
partial: "partial";
|
|
11862
13548
|
reference: "reference";
|
|
11863
13549
|
charter: "charter";
|
|
11864
13550
|
in_build: "in_build";
|
|
13551
|
+
partial: "partial";
|
|
13552
|
+
blocked: "blocked";
|
|
13553
|
+
complete: "complete";
|
|
11865
13554
|
deferred: "deferred";
|
|
11866
13555
|
cancelled: "cancelled";
|
|
11867
13556
|
}>>;
|
|
@@ -11872,9 +13561,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11872
13561
|
}, import("zod/v4/core").$strip>>;
|
|
11873
13562
|
referenceDisposition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11874
13563
|
read: "read";
|
|
11875
|
-
rejected: "rejected";
|
|
11876
13564
|
unevaluated: "unevaluated";
|
|
11877
13565
|
adopted: "adopted";
|
|
13566
|
+
rejected: "rejected";
|
|
11878
13567
|
dependency: "dependency";
|
|
11879
13568
|
}>>;
|
|
11880
13569
|
sourceUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -11911,17 +13600,17 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11911
13600
|
evidence: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11912
13601
|
tags: import("zod").ZodArray<import("zod").ZodString>;
|
|
11913
13602
|
status: import("zod").ZodEnum<{
|
|
13603
|
+
superseded: "superseded";
|
|
11914
13604
|
proposed: "proposed";
|
|
11915
13605
|
confirmed: "confirmed";
|
|
11916
|
-
superseded: "superseded";
|
|
11917
13606
|
}>;
|
|
11918
13607
|
deliveryStatus: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11919
|
-
blocked: "blocked";
|
|
11920
|
-
complete: "complete";
|
|
11921
|
-
partial: "partial";
|
|
11922
13608
|
reference: "reference";
|
|
11923
13609
|
charter: "charter";
|
|
11924
13610
|
in_build: "in_build";
|
|
13611
|
+
partial: "partial";
|
|
13612
|
+
blocked: "blocked";
|
|
13613
|
+
complete: "complete";
|
|
11925
13614
|
deferred: "deferred";
|
|
11926
13615
|
cancelled: "cancelled";
|
|
11927
13616
|
}>>;
|
|
@@ -11932,9 +13621,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11932
13621
|
}, import("zod/v4/core").$strip>>;
|
|
11933
13622
|
referenceDisposition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11934
13623
|
read: "read";
|
|
11935
|
-
rejected: "rejected";
|
|
11936
13624
|
unevaluated: "unevaluated";
|
|
11937
13625
|
adopted: "adopted";
|
|
13626
|
+
rejected: "rejected";
|
|
11938
13627
|
dependency: "dependency";
|
|
11939
13628
|
}>>;
|
|
11940
13629
|
sourceUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -11972,17 +13661,17 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11972
13661
|
evidence: import("zod").ZodOptional<import("zod").ZodString>;
|
|
11973
13662
|
tags: import("zod").ZodArray<import("zod").ZodString>;
|
|
11974
13663
|
status: import("zod").ZodEnum<{
|
|
13664
|
+
superseded: "superseded";
|
|
11975
13665
|
proposed: "proposed";
|
|
11976
13666
|
confirmed: "confirmed";
|
|
11977
|
-
superseded: "superseded";
|
|
11978
13667
|
}>;
|
|
11979
13668
|
deliveryStatus: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11980
|
-
blocked: "blocked";
|
|
11981
|
-
complete: "complete";
|
|
11982
|
-
partial: "partial";
|
|
11983
13669
|
reference: "reference";
|
|
11984
13670
|
charter: "charter";
|
|
11985
13671
|
in_build: "in_build";
|
|
13672
|
+
partial: "partial";
|
|
13673
|
+
blocked: "blocked";
|
|
13674
|
+
complete: "complete";
|
|
11986
13675
|
deferred: "deferred";
|
|
11987
13676
|
cancelled: "cancelled";
|
|
11988
13677
|
}>>;
|
|
@@ -11993,9 +13682,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
11993
13682
|
}, import("zod/v4/core").$strip>>;
|
|
11994
13683
|
referenceDisposition: import("zod").ZodOptional<import("zod").ZodEnum<{
|
|
11995
13684
|
read: "read";
|
|
11996
|
-
rejected: "rejected";
|
|
11997
13685
|
unevaluated: "unevaluated";
|
|
11998
13686
|
adopted: "adopted";
|
|
13687
|
+
rejected: "rejected";
|
|
11999
13688
|
dependency: "dependency";
|
|
12000
13689
|
}>>;
|
|
12001
13690
|
sourceUrl: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -12285,9 +13974,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
12285
13974
|
id: import("zod").ZodString;
|
|
12286
13975
|
label: import("zod").ZodString;
|
|
12287
13976
|
status: import("zod").ZodEnum<{
|
|
13977
|
+
unknown: "unknown";
|
|
12288
13978
|
pass: "pass";
|
|
12289
13979
|
fail: "fail";
|
|
12290
|
-
unknown: "unknown";
|
|
12291
13980
|
warn: "warn";
|
|
12292
13981
|
}>;
|
|
12293
13982
|
detail: import("zod").ZodString;
|
|
@@ -12428,22 +14117,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
12428
14117
|
prompt: import("zod").ZodString;
|
|
12429
14118
|
name: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12430
14119
|
id: import("zod").ZodString;
|
|
14120
|
+
createdAt: import("zod").ZodString;
|
|
14121
|
+
updatedAt: import("zod").ZodString;
|
|
12431
14122
|
status: import("zod").ZodEnum<{
|
|
12432
|
-
paused: "paused";
|
|
12433
14123
|
completed: "completed";
|
|
12434
14124
|
active: "active";
|
|
14125
|
+
paused: "paused";
|
|
12435
14126
|
}>;
|
|
12436
|
-
createdAt: import("zod").ZodString;
|
|
12437
|
-
updatedAt: import("zod").ZodString;
|
|
12438
14127
|
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
14128
|
target: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
12448
14129
|
type: import("zod").ZodLiteral<"agent">;
|
|
12449
14130
|
agentId: import("zod").ZodGUID;
|
|
@@ -12462,19 +14143,20 @@ export declare const WSOutboundMessageSchema: {
|
|
|
12462
14143
|
local: "local";
|
|
12463
14144
|
}>>;
|
|
12464
14145
|
title: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
12465
|
-
|
|
12466
|
-
sandboxMode: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12467
|
-
networkAccess: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
12468
|
-
webSearch: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
14146
|
+
providerOptions: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodJSONSchema>>;
|
|
12469
14147
|
featureValues: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
12470
|
-
extra: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
12471
|
-
codex: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
12472
|
-
claude: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
12473
|
-
}, import("zod/v4/core").$strip>>;
|
|
12474
14148
|
systemPrompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12475
14149
|
mcpServers: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
12476
14150
|
}, import("zod/v4/core").$strip>;
|
|
12477
14151
|
}, import("zod/v4/core").$strip>], "type">;
|
|
14152
|
+
cadence: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
14153
|
+
type: import("zod").ZodLiteral<"every">;
|
|
14154
|
+
everyMs: import("zod").ZodNumber;
|
|
14155
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
14156
|
+
type: import("zod").ZodLiteral<"cron">;
|
|
14157
|
+
expression: import("zod").ZodString;
|
|
14158
|
+
timezone: import("zod").ZodOptional<import("zod").ZodString>;
|
|
14159
|
+
}, import("zod/v4/core").$strip>], "type">;
|
|
12478
14160
|
nextRunAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12479
14161
|
lastRunAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12480
14162
|
lastRunStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
@@ -12498,22 +14180,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
12498
14180
|
prompt: import("zod").ZodString;
|
|
12499
14181
|
name: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12500
14182
|
id: import("zod").ZodString;
|
|
14183
|
+
createdAt: import("zod").ZodString;
|
|
14184
|
+
updatedAt: import("zod").ZodString;
|
|
12501
14185
|
status: import("zod").ZodEnum<{
|
|
12502
|
-
paused: "paused";
|
|
12503
14186
|
completed: "completed";
|
|
12504
14187
|
active: "active";
|
|
14188
|
+
paused: "paused";
|
|
12505
14189
|
}>;
|
|
12506
|
-
createdAt: import("zod").ZodString;
|
|
12507
|
-
updatedAt: import("zod").ZodString;
|
|
12508
14190
|
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
14191
|
target: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
12518
14192
|
type: import("zod").ZodLiteral<"agent">;
|
|
12519
14193
|
agentId: import("zod").ZodGUID;
|
|
@@ -12532,19 +14206,20 @@ export declare const WSOutboundMessageSchema: {
|
|
|
12532
14206
|
local: "local";
|
|
12533
14207
|
}>>;
|
|
12534
14208
|
title: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
12535
|
-
|
|
12536
|
-
sandboxMode: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12537
|
-
networkAccess: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
12538
|
-
webSearch: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
14209
|
+
providerOptions: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodJSONSchema>>;
|
|
12539
14210
|
featureValues: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
12540
|
-
extra: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
12541
|
-
codex: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
12542
|
-
claude: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
12543
|
-
}, import("zod/v4/core").$strip>>;
|
|
12544
14211
|
systemPrompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12545
14212
|
mcpServers: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
12546
14213
|
}, import("zod/v4/core").$strip>;
|
|
12547
14214
|
}, import("zod/v4/core").$strip>], "type">;
|
|
14215
|
+
cadence: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
14216
|
+
type: import("zod").ZodLiteral<"every">;
|
|
14217
|
+
everyMs: import("zod").ZodNumber;
|
|
14218
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
14219
|
+
type: import("zod").ZodLiteral<"cron">;
|
|
14220
|
+
expression: import("zod").ZodString;
|
|
14221
|
+
timezone: import("zod").ZodOptional<import("zod").ZodString>;
|
|
14222
|
+
}, import("zod/v4/core").$strip>], "type">;
|
|
12548
14223
|
nextRunAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12549
14224
|
lastRunAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12550
14225
|
lastRunStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
@@ -12594,23 +14269,16 @@ export declare const WSOutboundMessageSchema: {
|
|
|
12594
14269
|
local: "local";
|
|
12595
14270
|
}>>;
|
|
12596
14271
|
title: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
12597
|
-
|
|
12598
|
-
sandboxMode: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12599
|
-
networkAccess: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
12600
|
-
webSearch: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
14272
|
+
providerOptions: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodJSONSchema>>;
|
|
12601
14273
|
featureValues: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
12602
|
-
extra: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
12603
|
-
codex: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
12604
|
-
claude: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
12605
|
-
}, import("zod/v4/core").$strip>>;
|
|
12606
14274
|
systemPrompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12607
14275
|
mcpServers: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
12608
14276
|
}, import("zod/v4/core").$strip>;
|
|
12609
14277
|
}, import("zod/v4/core").$strip>], "type">;
|
|
12610
14278
|
status: import("zod").ZodEnum<{
|
|
12611
|
-
paused: "paused";
|
|
12612
14279
|
completed: "completed";
|
|
12613
14280
|
active: "active";
|
|
14281
|
+
paused: "paused";
|
|
12614
14282
|
}>;
|
|
12615
14283
|
createdAt: import("zod").ZodString;
|
|
12616
14284
|
updatedAt: import("zod").ZodString;
|
|
@@ -12680,22 +14348,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
12680
14348
|
prompt: import("zod").ZodString;
|
|
12681
14349
|
name: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12682
14350
|
id: import("zod").ZodString;
|
|
14351
|
+
createdAt: import("zod").ZodString;
|
|
14352
|
+
updatedAt: import("zod").ZodString;
|
|
12683
14353
|
status: import("zod").ZodEnum<{
|
|
12684
|
-
paused: "paused";
|
|
12685
14354
|
completed: "completed";
|
|
12686
14355
|
active: "active";
|
|
14356
|
+
paused: "paused";
|
|
12687
14357
|
}>;
|
|
12688
|
-
createdAt: import("zod").ZodString;
|
|
12689
|
-
updatedAt: import("zod").ZodString;
|
|
12690
14358
|
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
14359
|
target: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
12700
14360
|
type: import("zod").ZodLiteral<"agent">;
|
|
12701
14361
|
agentId: import("zod").ZodGUID;
|
|
@@ -12714,19 +14374,20 @@ export declare const WSOutboundMessageSchema: {
|
|
|
12714
14374
|
local: "local";
|
|
12715
14375
|
}>>;
|
|
12716
14376
|
title: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
12717
|
-
|
|
12718
|
-
sandboxMode: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12719
|
-
networkAccess: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
12720
|
-
webSearch: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
14377
|
+
providerOptions: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodJSONSchema>>;
|
|
12721
14378
|
featureValues: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
12722
|
-
extra: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
12723
|
-
codex: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
12724
|
-
claude: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
12725
|
-
}, import("zod/v4/core").$strip>>;
|
|
12726
14379
|
systemPrompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12727
14380
|
mcpServers: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
12728
14381
|
}, import("zod/v4/core").$strip>;
|
|
12729
14382
|
}, import("zod/v4/core").$strip>], "type">;
|
|
14383
|
+
cadence: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
14384
|
+
type: import("zod").ZodLiteral<"every">;
|
|
14385
|
+
everyMs: import("zod").ZodNumber;
|
|
14386
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
14387
|
+
type: import("zod").ZodLiteral<"cron">;
|
|
14388
|
+
expression: import("zod").ZodString;
|
|
14389
|
+
timezone: import("zod").ZodOptional<import("zod").ZodString>;
|
|
14390
|
+
}, import("zod/v4/core").$strip>], "type">;
|
|
12730
14391
|
nextRunAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12731
14392
|
lastRunAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12732
14393
|
lastRunStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
@@ -12750,22 +14411,14 @@ export declare const WSOutboundMessageSchema: {
|
|
|
12750
14411
|
prompt: import("zod").ZodString;
|
|
12751
14412
|
name: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12752
14413
|
id: import("zod").ZodString;
|
|
14414
|
+
createdAt: import("zod").ZodString;
|
|
14415
|
+
updatedAt: import("zod").ZodString;
|
|
12753
14416
|
status: import("zod").ZodEnum<{
|
|
12754
|
-
paused: "paused";
|
|
12755
14417
|
completed: "completed";
|
|
12756
14418
|
active: "active";
|
|
14419
|
+
paused: "paused";
|
|
12757
14420
|
}>;
|
|
12758
|
-
createdAt: import("zod").ZodString;
|
|
12759
|
-
updatedAt: import("zod").ZodString;
|
|
12760
14421
|
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
14422
|
target: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
12770
14423
|
type: import("zod").ZodLiteral<"agent">;
|
|
12771
14424
|
agentId: import("zod").ZodGUID;
|
|
@@ -12784,19 +14437,20 @@ export declare const WSOutboundMessageSchema: {
|
|
|
12784
14437
|
local: "local";
|
|
12785
14438
|
}>>;
|
|
12786
14439
|
title: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
12787
|
-
|
|
12788
|
-
sandboxMode: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12789
|
-
networkAccess: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
12790
|
-
webSearch: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
14440
|
+
providerOptions: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodJSONSchema>>;
|
|
12791
14441
|
featureValues: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
12792
|
-
extra: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
12793
|
-
codex: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
12794
|
-
claude: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
12795
|
-
}, import("zod/v4/core").$strip>>;
|
|
12796
14442
|
systemPrompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12797
14443
|
mcpServers: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
12798
14444
|
}, import("zod/v4/core").$strip>;
|
|
12799
14445
|
}, import("zod/v4/core").$strip>], "type">;
|
|
14446
|
+
cadence: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
14447
|
+
type: import("zod").ZodLiteral<"every">;
|
|
14448
|
+
everyMs: import("zod").ZodNumber;
|
|
14449
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
14450
|
+
type: import("zod").ZodLiteral<"cron">;
|
|
14451
|
+
expression: import("zod").ZodString;
|
|
14452
|
+
timezone: import("zod").ZodOptional<import("zod").ZodString>;
|
|
14453
|
+
}, import("zod/v4/core").$strip>], "type">;
|
|
12800
14454
|
nextRunAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12801
14455
|
lastRunAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
12802
14456
|
lastRunStatus: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
@@ -12853,23 +14507,16 @@ export declare const WSOutboundMessageSchema: {
|
|
|
12853
14507
|
local: "local";
|
|
12854
14508
|
}>>;
|
|
12855
14509
|
title: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
12856
|
-
|
|
12857
|
-
sandboxMode: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12858
|
-
networkAccess: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
12859
|
-
webSearch: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
14510
|
+
providerOptions: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodJSONSchema>>;
|
|
12860
14511
|
featureValues: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
12861
|
-
extra: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
12862
|
-
codex: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
12863
|
-
claude: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
12864
|
-
}, import("zod/v4/core").$strip>>;
|
|
12865
14512
|
systemPrompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12866
14513
|
mcpServers: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
12867
14514
|
}, import("zod/v4/core").$strip>;
|
|
12868
14515
|
}, import("zod/v4/core").$strip>], "type">;
|
|
12869
14516
|
status: import("zod").ZodEnum<{
|
|
12870
|
-
paused: "paused";
|
|
12871
14517
|
completed: "completed";
|
|
12872
14518
|
active: "active";
|
|
14519
|
+
paused: "paused";
|
|
12873
14520
|
}>;
|
|
12874
14521
|
createdAt: import("zod").ZodString;
|
|
12875
14522
|
updatedAt: import("zod").ZodString;
|
|
@@ -12941,23 +14588,16 @@ export declare const WSOutboundMessageSchema: {
|
|
|
12941
14588
|
local: "local";
|
|
12942
14589
|
}>>;
|
|
12943
14590
|
title: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
12944
|
-
|
|
12945
|
-
sandboxMode: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12946
|
-
networkAccess: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
12947
|
-
webSearch: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
14591
|
+
providerOptions: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodJSONSchema>>;
|
|
12948
14592
|
featureValues: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
12949
|
-
extra: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
12950
|
-
codex: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
12951
|
-
claude: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>>;
|
|
12952
|
-
}, import("zod/v4/core").$strip>>;
|
|
12953
14593
|
systemPrompt: import("zod").ZodOptional<import("zod").ZodString>;
|
|
12954
14594
|
mcpServers: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
|
|
12955
14595
|
}, import("zod/v4/core").$strip>;
|
|
12956
14596
|
}, import("zod/v4/core").$strip>], "type">;
|
|
12957
14597
|
status: import("zod").ZodEnum<{
|
|
12958
|
-
paused: "paused";
|
|
12959
14598
|
completed: "completed";
|
|
12960
14599
|
active: "active";
|
|
14600
|
+
paused: "paused";
|
|
12961
14601
|
}>;
|
|
12962
14602
|
createdAt: import("zod").ZodString;
|
|
12963
14603
|
updatedAt: import("zod").ZodString;
|
|
@@ -13042,9 +14682,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
13042
14682
|
stopped: "stopped";
|
|
13043
14683
|
}>;
|
|
13044
14684
|
workerOutcome: import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
14685
|
+
completed: "completed";
|
|
13045
14686
|
failed: "failed";
|
|
13046
14687
|
canceled: "canceled";
|
|
13047
|
-
completed: "completed";
|
|
13048
14688
|
}>>;
|
|
13049
14689
|
failureReason: import("zod").ZodNullable<import("zod").ZodString>;
|
|
13050
14690
|
verifyChecks: import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -13154,9 +14794,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
13154
14794
|
stopped: "stopped";
|
|
13155
14795
|
}>;
|
|
13156
14796
|
workerOutcome: import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
14797
|
+
completed: "completed";
|
|
13157
14798
|
failed: "failed";
|
|
13158
14799
|
canceled: "canceled";
|
|
13159
|
-
completed: "completed";
|
|
13160
14800
|
}>>;
|
|
13161
14801
|
failureReason: import("zod").ZodNullable<import("zod").ZodString>;
|
|
13162
14802
|
verifyChecks: import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -13246,9 +14886,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
13246
14886
|
stopped: "stopped";
|
|
13247
14887
|
}>;
|
|
13248
14888
|
workerOutcome: import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
14889
|
+
completed: "completed";
|
|
13249
14890
|
failed: "failed";
|
|
13250
14891
|
canceled: "canceled";
|
|
13251
|
-
completed: "completed";
|
|
13252
14892
|
}>>;
|
|
13253
14893
|
failureReason: import("zod").ZodNullable<import("zod").ZodString>;
|
|
13254
14894
|
verifyChecks: import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -13355,9 +14995,9 @@ export declare const WSOutboundMessageSchema: {
|
|
|
13355
14995
|
stopped: "stopped";
|
|
13356
14996
|
}>;
|
|
13357
14997
|
workerOutcome: import("zod").ZodNullable<import("zod").ZodEnum<{
|
|
14998
|
+
completed: "completed";
|
|
13358
14999
|
failed: "failed";
|
|
13359
15000
|
canceled: "canceled";
|
|
13360
|
-
completed: "completed";
|
|
13361
15001
|
}>>;
|
|
13362
15002
|
failureReason: import("zod").ZodNullable<import("zod").ZodString>;
|
|
13363
15003
|
verifyChecks: import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -13405,8 +15045,8 @@ export declare const WSOutboundMessageSchema: {
|
|
|
13405
15045
|
payload: import("zod").ZodObject<{
|
|
13406
15046
|
requestId: import("zod").ZodString;
|
|
13407
15047
|
phase: import("zod").ZodEnum<{
|
|
13408
|
-
starting: "starting";
|
|
13409
15048
|
complete: "complete";
|
|
15049
|
+
starting: "starting";
|
|
13410
15050
|
downloading: "downloading";
|
|
13411
15051
|
installing: "installing";
|
|
13412
15052
|
}>;
|