@hyperdrive.bot/paseo-protocol 0.3.46 → 0.3.47
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-filter.d.ts +248 -0
- package/dist/agent-filter.js +340 -0
- package/dist/messages.d.ts +119 -117
- package/dist/messages.js +19 -1
- package/dist/validation/ws-outbound-schema-metadata.d.ts +24 -24
- package/package.json +1 -1
package/dist/messages.d.ts
CHANGED
|
@@ -140,9 +140,9 @@ export type MutableDaemonConfigPatch = z.infer<typeof MutableDaemonConfigPatchSc
|
|
|
140
140
|
import type { AgentCapabilityFlags, AgentModelDefinition, AgentMode, AgentPermissionRequest, AgentPermissionResponse, AgentPersistenceHandle, ProviderStatus, AgentRuntimeInfo, AgentTimelineItem, AgentProviderNotice, AgentUsage } from "./agent-types.js";
|
|
141
141
|
export declare const AgentStatusSchema: z.ZodEnum<{
|
|
142
142
|
error: "error";
|
|
143
|
-
initializing: "initializing";
|
|
144
143
|
idle: "idle";
|
|
145
144
|
running: "running";
|
|
145
|
+
initializing: "initializing";
|
|
146
146
|
closed: "closed";
|
|
147
147
|
}>;
|
|
148
148
|
export declare const WORKFLOW_STATUSES: readonly ["pending", "running", "completed", "failed", "cancelled"];
|
|
@@ -891,9 +891,9 @@ export declare const AgentSnapshotPayloadSchema: z.ZodObject<{
|
|
|
891
891
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
892
892
|
status: z.ZodEnum<{
|
|
893
893
|
error: "error";
|
|
894
|
-
initializing: "initializing";
|
|
895
894
|
idle: "idle";
|
|
896
895
|
running: "running";
|
|
896
|
+
initializing: "initializing";
|
|
897
897
|
closed: "closed";
|
|
898
898
|
}>;
|
|
899
899
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -960,9 +960,9 @@ export declare const AgentListItemPayloadSchema: z.ZodObject<{
|
|
|
960
960
|
effectiveThinkingOptionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
961
961
|
status: z.ZodEnum<{
|
|
962
962
|
error: "error";
|
|
963
|
-
initializing: "initializing";
|
|
964
963
|
idle: "idle";
|
|
965
964
|
running: "running";
|
|
965
|
+
initializing: "initializing";
|
|
966
966
|
closed: "closed";
|
|
967
967
|
}>;
|
|
968
968
|
cwd: z.ZodString;
|
|
@@ -1011,6 +1011,8 @@ export declare const AgentListItemPayloadSchema: z.ZodObject<{
|
|
|
1011
1011
|
derivedDeadline: z.ZodOptional<z.ZodString>;
|
|
1012
1012
|
}, z.core.$strip>>;
|
|
1013
1013
|
activeBackgroundTaskCount: z.ZodOptional<z.ZodNumber>;
|
|
1014
|
+
pendingPermissionCount: z.ZodOptional<z.ZodNumber>;
|
|
1015
|
+
activeChildCount: z.ZodOptional<z.ZodNumber>;
|
|
1014
1016
|
providerUnavailable: z.ZodOptional<z.ZodBoolean>;
|
|
1015
1017
|
}, z.core.$strip>;
|
|
1016
1018
|
export type AgentListItemPayload = z.infer<typeof AgentListItemPayloadSchema>;
|
|
@@ -1500,9 +1502,9 @@ export declare const FetchAgentsRequestMessageSchema: z.ZodObject<{
|
|
|
1500
1502
|
projectKeys: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1501
1503
|
statuses: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1502
1504
|
error: "error";
|
|
1503
|
-
initializing: "initializing";
|
|
1504
1505
|
idle: "idle";
|
|
1505
1506
|
running: "running";
|
|
1507
|
+
initializing: "initializing";
|
|
1506
1508
|
closed: "closed";
|
|
1507
1509
|
}>>>;
|
|
1508
1510
|
includeArchived: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1529,10 +1531,10 @@ export declare const FetchAgentsRequestMessageSchema: z.ZodObject<{
|
|
|
1529
1531
|
subscriptionId: z.ZodOptional<z.ZodString>;
|
|
1530
1532
|
}, z.core.$strip>>;
|
|
1531
1533
|
}, z.core.$strip>;
|
|
1532
|
-
declare const WorkspaceStateBucketSchema: z.ZodEnum<{
|
|
1533
|
-
running: "running";
|
|
1534
|
+
export declare const WorkspaceStateBucketSchema: z.ZodEnum<{
|
|
1534
1535
|
attention: "attention";
|
|
1535
1536
|
needs_input: "needs_input";
|
|
1537
|
+
running: "running";
|
|
1536
1538
|
failed: "failed";
|
|
1537
1539
|
pending: "pending";
|
|
1538
1540
|
done: "done";
|
|
@@ -1573,9 +1575,9 @@ export declare const FetchAgentHistoryRequestMessageSchema: z.ZodObject<{
|
|
|
1573
1575
|
projectKeys: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1574
1576
|
statuses: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1575
1577
|
error: "error";
|
|
1576
|
-
initializing: "initializing";
|
|
1577
1578
|
idle: "idle";
|
|
1578
1579
|
running: "running";
|
|
1580
|
+
initializing: "initializing";
|
|
1579
1581
|
closed: "closed";
|
|
1580
1582
|
}>>>;
|
|
1581
1583
|
includeArchived: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3654,9 +3656,9 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
3654
3656
|
projectKeys: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3655
3657
|
statuses: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3656
3658
|
error: "error";
|
|
3657
|
-
initializing: "initializing";
|
|
3658
3659
|
idle: "idle";
|
|
3659
3660
|
running: "running";
|
|
3661
|
+
initializing: "initializing";
|
|
3660
3662
|
closed: "closed";
|
|
3661
3663
|
}>>>;
|
|
3662
3664
|
includeArchived: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3690,9 +3692,9 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
3690
3692
|
projectKeys: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3691
3693
|
statuses: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3692
3694
|
error: "error";
|
|
3693
|
-
initializing: "initializing";
|
|
3694
3695
|
idle: "idle";
|
|
3695
3696
|
running: "running";
|
|
3697
|
+
initializing: "initializing";
|
|
3696
3698
|
closed: "closed";
|
|
3697
3699
|
}>>>;
|
|
3698
3700
|
includeArchived: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5724,9 +5726,9 @@ export declare const AgentCreatedStatusPayloadSchema: z.ZodObject<{
|
|
|
5724
5726
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
5725
5727
|
status: z.ZodEnum<{
|
|
5726
5728
|
error: "error";
|
|
5727
|
-
initializing: "initializing";
|
|
5728
5729
|
idle: "idle";
|
|
5729
5730
|
running: "running";
|
|
5731
|
+
initializing: "initializing";
|
|
5730
5732
|
closed: "closed";
|
|
5731
5733
|
}>;
|
|
5732
5734
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -5830,9 +5832,9 @@ export declare const AgentResumedStatusPayloadSchema: z.ZodObject<{
|
|
|
5830
5832
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
5831
5833
|
status: z.ZodEnum<{
|
|
5832
5834
|
error: "error";
|
|
5833
|
-
initializing: "initializing";
|
|
5834
5835
|
idle: "idle";
|
|
5835
5836
|
running: "running";
|
|
5837
|
+
initializing: "initializing";
|
|
5836
5838
|
closed: "closed";
|
|
5837
5839
|
}>;
|
|
5838
5840
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -5993,9 +5995,9 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<[z.ZodObj
|
|
|
5993
5995
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
5994
5996
|
status: z.ZodEnum<{
|
|
5995
5997
|
error: "error";
|
|
5996
|
-
initializing: "initializing";
|
|
5997
5998
|
idle: "idle";
|
|
5998
5999
|
running: "running";
|
|
6000
|
+
initializing: "initializing";
|
|
5999
6001
|
closed: "closed";
|
|
6000
6002
|
}>;
|
|
6001
6003
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -6097,9 +6099,9 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<[z.ZodObj
|
|
|
6097
6099
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
6098
6100
|
status: z.ZodEnum<{
|
|
6099
6101
|
error: "error";
|
|
6100
|
-
initializing: "initializing";
|
|
6101
6102
|
idle: "idle";
|
|
6102
6103
|
running: "running";
|
|
6104
|
+
initializing: "initializing";
|
|
6103
6105
|
closed: "closed";
|
|
6104
6106
|
}>;
|
|
6105
6107
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -6511,9 +6513,9 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
6511
6513
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6512
6514
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6513
6515
|
status: z.ZodCatch<z.ZodEnum<{
|
|
6514
|
-
running: "running";
|
|
6515
6516
|
attention: "attention";
|
|
6516
6517
|
needs_input: "needs_input";
|
|
6518
|
+
running: "running";
|
|
6517
6519
|
failed: "failed";
|
|
6518
6520
|
pending: "pending";
|
|
6519
6521
|
done: "done";
|
|
@@ -6695,7 +6697,7 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
6695
6697
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
6696
6698
|
name: string;
|
|
6697
6699
|
archivingAt: string | null;
|
|
6698
|
-
status: "
|
|
6700
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
6699
6701
|
statusEnteredAt: string | null;
|
|
6700
6702
|
activityAt: string | null;
|
|
6701
6703
|
scripts: {
|
|
@@ -6798,7 +6800,7 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
6798
6800
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
6799
6801
|
name: string;
|
|
6800
6802
|
archivingAt: string | null;
|
|
6801
|
-
status: "
|
|
6803
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
6802
6804
|
statusEnteredAt: string | null;
|
|
6803
6805
|
activityAt: string | null;
|
|
6804
6806
|
scripts: {
|
|
@@ -6935,9 +6937,9 @@ export declare const AgentUpdateMessageSchema: z.ZodObject<{
|
|
|
6935
6937
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
6936
6938
|
status: z.ZodEnum<{
|
|
6937
6939
|
error: "error";
|
|
6938
|
-
initializing: "initializing";
|
|
6939
6940
|
idle: "idle";
|
|
6940
6941
|
running: "running";
|
|
6942
|
+
initializing: "initializing";
|
|
6941
6943
|
closed: "closed";
|
|
6942
6944
|
}>;
|
|
6943
6945
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -7199,9 +7201,9 @@ export declare const AgentStatusMessageSchema: z.ZodObject<{
|
|
|
7199
7201
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
7200
7202
|
status: z.ZodEnum<{
|
|
7201
7203
|
error: "error";
|
|
7202
|
-
initializing: "initializing";
|
|
7203
7204
|
idle: "idle";
|
|
7204
7205
|
running: "running";
|
|
7206
|
+
initializing: "initializing";
|
|
7205
7207
|
closed: "closed";
|
|
7206
7208
|
}>;
|
|
7207
7209
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -7299,9 +7301,9 @@ export declare const AgentListMessageSchema: z.ZodObject<{
|
|
|
7299
7301
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
7300
7302
|
status: z.ZodEnum<{
|
|
7301
7303
|
error: "error";
|
|
7302
|
-
initializing: "initializing";
|
|
7303
7304
|
idle: "idle";
|
|
7304
7305
|
running: "running";
|
|
7306
|
+
initializing: "initializing";
|
|
7305
7307
|
closed: "closed";
|
|
7306
7308
|
}>;
|
|
7307
7309
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -7402,9 +7404,9 @@ export declare const FetchAgentsResponseMessageSchema: z.ZodObject<{
|
|
|
7402
7404
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
7403
7405
|
status: z.ZodEnum<{
|
|
7404
7406
|
error: "error";
|
|
7405
|
-
initializing: "initializing";
|
|
7406
7407
|
idle: "idle";
|
|
7407
7408
|
running: "running";
|
|
7409
|
+
initializing: "initializing";
|
|
7408
7410
|
closed: "closed";
|
|
7409
7411
|
}>;
|
|
7410
7412
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -7588,9 +7590,9 @@ export declare const FetchAgentHistoryResponseMessageSchema: z.ZodObject<{
|
|
|
7588
7590
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
7589
7591
|
status: z.ZodEnum<{
|
|
7590
7592
|
error: "error";
|
|
7591
|
-
initializing: "initializing";
|
|
7592
7593
|
idle: "idle";
|
|
7593
7594
|
running: "running";
|
|
7595
|
+
initializing: "initializing";
|
|
7594
7596
|
closed: "closed";
|
|
7595
7597
|
}>;
|
|
7596
7598
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -7787,9 +7789,9 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
7787
7789
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7788
7790
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
7789
7791
|
status: z.ZodCatch<z.ZodEnum<{
|
|
7790
|
-
running: "running";
|
|
7791
7792
|
attention: "attention";
|
|
7792
7793
|
needs_input: "needs_input";
|
|
7794
|
+
running: "running";
|
|
7793
7795
|
failed: "failed";
|
|
7794
7796
|
pending: "pending";
|
|
7795
7797
|
done: "done";
|
|
@@ -7971,7 +7973,7 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
7971
7973
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
7972
7974
|
name: string;
|
|
7973
7975
|
archivingAt: string | null;
|
|
7974
|
-
status: "
|
|
7976
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
7975
7977
|
statusEnteredAt: string | null;
|
|
7976
7978
|
activityAt: string | null;
|
|
7977
7979
|
scripts: {
|
|
@@ -8074,7 +8076,7 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
8074
8076
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
8075
8077
|
name: string;
|
|
8076
8078
|
archivingAt: string | null;
|
|
8077
|
-
status: "
|
|
8079
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
8078
8080
|
statusEnteredAt: string | null;
|
|
8079
8081
|
activityAt: string | null;
|
|
8080
8082
|
scripts: {
|
|
@@ -8214,9 +8216,9 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
8214
8216
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8215
8217
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
8216
8218
|
status: z.ZodCatch<z.ZodEnum<{
|
|
8217
|
-
running: "running";
|
|
8218
8219
|
attention: "attention";
|
|
8219
8220
|
needs_input: "needs_input";
|
|
8221
|
+
running: "running";
|
|
8220
8222
|
failed: "failed";
|
|
8221
8223
|
pending: "pending";
|
|
8222
8224
|
done: "done";
|
|
@@ -8398,7 +8400,7 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
8398
8400
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
8399
8401
|
name: string;
|
|
8400
8402
|
archivingAt: string | null;
|
|
8401
|
-
status: "
|
|
8403
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
8402
8404
|
statusEnteredAt: string | null;
|
|
8403
8405
|
activityAt: string | null;
|
|
8404
8406
|
scripts: {
|
|
@@ -8501,7 +8503,7 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
8501
8503
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
8502
8504
|
name: string;
|
|
8503
8505
|
archivingAt: string | null;
|
|
8504
|
-
status: "
|
|
8506
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
8505
8507
|
statusEnteredAt: string | null;
|
|
8506
8508
|
activityAt: string | null;
|
|
8507
8509
|
scripts: {
|
|
@@ -8763,9 +8765,9 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
8763
8765
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8764
8766
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
8765
8767
|
status: z.ZodCatch<z.ZodEnum<{
|
|
8766
|
-
running: "running";
|
|
8767
8768
|
attention: "attention";
|
|
8768
8769
|
needs_input: "needs_input";
|
|
8770
|
+
running: "running";
|
|
8769
8771
|
failed: "failed";
|
|
8770
8772
|
pending: "pending";
|
|
8771
8773
|
done: "done";
|
|
@@ -8947,7 +8949,7 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
8947
8949
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
8948
8950
|
name: string;
|
|
8949
8951
|
archivingAt: string | null;
|
|
8950
|
-
status: "
|
|
8952
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
8951
8953
|
statusEnteredAt: string | null;
|
|
8952
8954
|
activityAt: string | null;
|
|
8953
8955
|
scripts: {
|
|
@@ -9050,7 +9052,7 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
9050
9052
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
9051
9053
|
name: string;
|
|
9052
9054
|
archivingAt: string | null;
|
|
9053
|
-
status: "
|
|
9055
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
9054
9056
|
statusEnteredAt: string | null;
|
|
9055
9057
|
activityAt: string | null;
|
|
9056
9058
|
scripts: {
|
|
@@ -9251,9 +9253,9 @@ export declare const FetchAgentResponseMessageSchema: z.ZodObject<{
|
|
|
9251
9253
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
9252
9254
|
status: z.ZodEnum<{
|
|
9253
9255
|
error: "error";
|
|
9254
|
-
initializing: "initializing";
|
|
9255
9256
|
idle: "idle";
|
|
9256
9257
|
running: "running";
|
|
9258
|
+
initializing: "initializing";
|
|
9257
9259
|
closed: "closed";
|
|
9258
9260
|
}>;
|
|
9259
9261
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -9448,9 +9450,9 @@ export declare const FetchAgentTimelineResponseMessageSchema: z.ZodObject<{
|
|
|
9448
9450
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
9449
9451
|
status: z.ZodEnum<{
|
|
9450
9452
|
error: "error";
|
|
9451
|
-
initializing: "initializing";
|
|
9452
9453
|
idle: "idle";
|
|
9453
9454
|
running: "running";
|
|
9455
|
+
initializing: "initializing";
|
|
9454
9456
|
closed: "closed";
|
|
9455
9457
|
}>;
|
|
9456
9458
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -9624,9 +9626,9 @@ export declare const CancelAgentResponseMessageSchema: z.ZodObject<{
|
|
|
9624
9626
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
9625
9627
|
status: z.ZodEnum<{
|
|
9626
9628
|
error: "error";
|
|
9627
|
-
initializing: "initializing";
|
|
9628
9629
|
idle: "idle";
|
|
9629
9630
|
running: "running";
|
|
9631
|
+
initializing: "initializing";
|
|
9630
9632
|
closed: "closed";
|
|
9631
9633
|
}>;
|
|
9632
9634
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -9726,9 +9728,9 @@ export declare const ClearAgentAttentionResponseMessageSchema: z.ZodObject<{
|
|
|
9726
9728
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
9727
9729
|
status: z.ZodEnum<{
|
|
9728
9730
|
error: "error";
|
|
9729
|
-
initializing: "initializing";
|
|
9730
9731
|
idle: "idle";
|
|
9731
9732
|
running: "running";
|
|
9733
|
+
initializing: "initializing";
|
|
9732
9734
|
closed: "closed";
|
|
9733
9735
|
}>;
|
|
9734
9736
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -9811,9 +9813,9 @@ export declare const WorkspaceCreateResponseSchema: z.ZodObject<{
|
|
|
9811
9813
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9812
9814
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
9813
9815
|
status: z.ZodCatch<z.ZodEnum<{
|
|
9814
|
-
running: "running";
|
|
9815
9816
|
attention: "attention";
|
|
9816
9817
|
needs_input: "needs_input";
|
|
9818
|
+
running: "running";
|
|
9817
9819
|
failed: "failed";
|
|
9818
9820
|
pending: "pending";
|
|
9819
9821
|
done: "done";
|
|
@@ -9995,7 +9997,7 @@ export declare const WorkspaceCreateResponseSchema: z.ZodObject<{
|
|
|
9995
9997
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
9996
9998
|
name: string;
|
|
9997
9999
|
archivingAt: string | null;
|
|
9998
|
-
status: "
|
|
10000
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
9999
10001
|
statusEnteredAt: string | null;
|
|
10000
10002
|
activityAt: string | null;
|
|
10001
10003
|
scripts: {
|
|
@@ -10098,7 +10100,7 @@ export declare const WorkspaceCreateResponseSchema: z.ZodObject<{
|
|
|
10098
10100
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
10099
10101
|
name: string;
|
|
10100
10102
|
archivingAt: string | null;
|
|
10101
|
-
status: "
|
|
10103
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
10102
10104
|
statusEnteredAt: string | null;
|
|
10103
10105
|
activityAt: string | null;
|
|
10104
10106
|
scripts: {
|
|
@@ -10272,9 +10274,9 @@ export declare const WaitForFinishResponseMessageSchema: z.ZodObject<{
|
|
|
10272
10274
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
10273
10275
|
status: z.ZodEnum<{
|
|
10274
10276
|
error: "error";
|
|
10275
|
-
initializing: "initializing";
|
|
10276
10277
|
idle: "idle";
|
|
10277
10278
|
running: "running";
|
|
10279
|
+
initializing: "initializing";
|
|
10278
10280
|
closed: "closed";
|
|
10279
10281
|
}>;
|
|
10280
10282
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -11705,9 +11707,9 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
11705
11707
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
11706
11708
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
11707
11709
|
status: z.ZodCatch<z.ZodEnum<{
|
|
11708
|
-
running: "running";
|
|
11709
11710
|
attention: "attention";
|
|
11710
11711
|
needs_input: "needs_input";
|
|
11712
|
+
running: "running";
|
|
11711
11713
|
failed: "failed";
|
|
11712
11714
|
pending: "pending";
|
|
11713
11715
|
done: "done";
|
|
@@ -11889,7 +11891,7 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
11889
11891
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
11890
11892
|
name: string;
|
|
11891
11893
|
archivingAt: string | null;
|
|
11892
|
-
status: "
|
|
11894
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
11893
11895
|
statusEnteredAt: string | null;
|
|
11894
11896
|
activityAt: string | null;
|
|
11895
11897
|
scripts: {
|
|
@@ -11992,7 +11994,7 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
11992
11994
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
11993
11995
|
name: string;
|
|
11994
11996
|
archivingAt: string | null;
|
|
11995
|
-
status: "
|
|
11997
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
11996
11998
|
statusEnteredAt: string | null;
|
|
11997
11999
|
activityAt: string | null;
|
|
11998
12000
|
scripts: {
|
|
@@ -13079,9 +13081,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
13079
13081
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
13080
13082
|
status: z.ZodEnum<{
|
|
13081
13083
|
error: "error";
|
|
13082
|
-
initializing: "initializing";
|
|
13083
13084
|
idle: "idle";
|
|
13084
13085
|
running: "running";
|
|
13086
|
+
initializing: "initializing";
|
|
13085
13087
|
closed: "closed";
|
|
13086
13088
|
}>;
|
|
13087
13089
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -13251,9 +13253,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
13251
13253
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13252
13254
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
13253
13255
|
status: z.ZodCatch<z.ZodEnum<{
|
|
13254
|
-
running: "running";
|
|
13255
13256
|
attention: "attention";
|
|
13256
13257
|
needs_input: "needs_input";
|
|
13258
|
+
running: "running";
|
|
13257
13259
|
failed: "failed";
|
|
13258
13260
|
pending: "pending";
|
|
13259
13261
|
done: "done";
|
|
@@ -13435,7 +13437,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
13435
13437
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
13436
13438
|
name: string;
|
|
13437
13439
|
archivingAt: string | null;
|
|
13438
|
-
status: "
|
|
13440
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
13439
13441
|
statusEnteredAt: string | null;
|
|
13440
13442
|
activityAt: string | null;
|
|
13441
13443
|
scripts: {
|
|
@@ -13538,7 +13540,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
13538
13540
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
13539
13541
|
name: string;
|
|
13540
13542
|
archivingAt: string | null;
|
|
13541
|
-
status: "
|
|
13543
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
13542
13544
|
statusEnteredAt: string | null;
|
|
13543
13545
|
activityAt: string | null;
|
|
13544
13546
|
scripts: {
|
|
@@ -13850,9 +13852,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
13850
13852
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
13851
13853
|
status: z.ZodEnum<{
|
|
13852
13854
|
error: "error";
|
|
13853
|
-
initializing: "initializing";
|
|
13854
13855
|
idle: "idle";
|
|
13855
13856
|
running: "running";
|
|
13857
|
+
initializing: "initializing";
|
|
13856
13858
|
closed: "closed";
|
|
13857
13859
|
}>;
|
|
13858
13860
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -13952,9 +13954,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
13952
13954
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
13953
13955
|
status: z.ZodEnum<{
|
|
13954
13956
|
error: "error";
|
|
13955
|
-
initializing: "initializing";
|
|
13956
13957
|
idle: "idle";
|
|
13957
13958
|
running: "running";
|
|
13959
|
+
initializing: "initializing";
|
|
13958
13960
|
closed: "closed";
|
|
13959
13961
|
}>;
|
|
13960
13962
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -14137,9 +14139,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
14137
14139
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
14138
14140
|
status: z.ZodEnum<{
|
|
14139
14141
|
error: "error";
|
|
14140
|
-
initializing: "initializing";
|
|
14141
14142
|
idle: "idle";
|
|
14142
14143
|
running: "running";
|
|
14144
|
+
initializing: "initializing";
|
|
14143
14145
|
closed: "closed";
|
|
14144
14146
|
}>;
|
|
14145
14147
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -14323,9 +14325,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
14323
14325
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14324
14326
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
14325
14327
|
status: z.ZodCatch<z.ZodEnum<{
|
|
14326
|
-
running: "running";
|
|
14327
14328
|
attention: "attention";
|
|
14328
14329
|
needs_input: "needs_input";
|
|
14330
|
+
running: "running";
|
|
14329
14331
|
failed: "failed";
|
|
14330
14332
|
pending: "pending";
|
|
14331
14333
|
done: "done";
|
|
@@ -14507,7 +14509,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
14507
14509
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
14508
14510
|
name: string;
|
|
14509
14511
|
archivingAt: string | null;
|
|
14510
|
-
status: "
|
|
14512
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
14511
14513
|
statusEnteredAt: string | null;
|
|
14512
14514
|
activityAt: string | null;
|
|
14513
14515
|
scripts: {
|
|
@@ -14610,7 +14612,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
14610
14612
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
14611
14613
|
name: string;
|
|
14612
14614
|
archivingAt: string | null;
|
|
14613
|
-
status: "
|
|
14615
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
14614
14616
|
statusEnteredAt: string | null;
|
|
14615
14617
|
activityAt: string | null;
|
|
14616
14618
|
scripts: {
|
|
@@ -14769,9 +14771,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
14769
14771
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14770
14772
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
14771
14773
|
status: z.ZodCatch<z.ZodEnum<{
|
|
14772
|
-
running: "running";
|
|
14773
14774
|
attention: "attention";
|
|
14774
14775
|
needs_input: "needs_input";
|
|
14776
|
+
running: "running";
|
|
14775
14777
|
failed: "failed";
|
|
14776
14778
|
pending: "pending";
|
|
14777
14779
|
done: "done";
|
|
@@ -14953,7 +14955,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
14953
14955
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
14954
14956
|
name: string;
|
|
14955
14957
|
archivingAt: string | null;
|
|
14956
|
-
status: "
|
|
14958
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
14957
14959
|
statusEnteredAt: string | null;
|
|
14958
14960
|
activityAt: string | null;
|
|
14959
14961
|
scripts: {
|
|
@@ -15056,7 +15058,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
15056
15058
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
15057
15059
|
name: string;
|
|
15058
15060
|
archivingAt: string | null;
|
|
15059
|
-
status: "
|
|
15061
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
15060
15062
|
statusEnteredAt: string | null;
|
|
15061
15063
|
activityAt: string | null;
|
|
15062
15064
|
scripts: {
|
|
@@ -15231,9 +15233,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
15231
15233
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
15232
15234
|
status: z.ZodEnum<{
|
|
15233
15235
|
error: "error";
|
|
15234
|
-
initializing: "initializing";
|
|
15235
15236
|
idle: "idle";
|
|
15236
15237
|
running: "running";
|
|
15238
|
+
initializing: "initializing";
|
|
15237
15239
|
closed: "closed";
|
|
15238
15240
|
}>;
|
|
15239
15241
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -15411,9 +15413,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
15411
15413
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
15412
15414
|
status: z.ZodEnum<{
|
|
15413
15415
|
error: "error";
|
|
15414
|
-
initializing: "initializing";
|
|
15415
15416
|
idle: "idle";
|
|
15416
15417
|
running: "running";
|
|
15418
|
+
initializing: "initializing";
|
|
15417
15419
|
closed: "closed";
|
|
15418
15420
|
}>;
|
|
15419
15421
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -15585,9 +15587,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
15585
15587
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
15586
15588
|
status: z.ZodEnum<{
|
|
15587
15589
|
error: "error";
|
|
15588
|
-
initializing: "initializing";
|
|
15589
15590
|
idle: "idle";
|
|
15590
15591
|
running: "running";
|
|
15592
|
+
initializing: "initializing";
|
|
15591
15593
|
closed: "closed";
|
|
15592
15594
|
}>;
|
|
15593
15595
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -15686,9 +15688,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
15686
15688
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
15687
15689
|
status: z.ZodEnum<{
|
|
15688
15690
|
error: "error";
|
|
15689
|
-
initializing: "initializing";
|
|
15690
15691
|
idle: "idle";
|
|
15691
15692
|
running: "running";
|
|
15693
|
+
initializing: "initializing";
|
|
15692
15694
|
closed: "closed";
|
|
15693
15695
|
}>;
|
|
15694
15696
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -15770,9 +15772,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
15770
15772
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15771
15773
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
15772
15774
|
status: z.ZodCatch<z.ZodEnum<{
|
|
15773
|
-
running: "running";
|
|
15774
15775
|
attention: "attention";
|
|
15775
15776
|
needs_input: "needs_input";
|
|
15777
|
+
running: "running";
|
|
15776
15778
|
failed: "failed";
|
|
15777
15779
|
pending: "pending";
|
|
15778
15780
|
done: "done";
|
|
@@ -15954,7 +15956,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
15954
15956
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
15955
15957
|
name: string;
|
|
15956
15958
|
archivingAt: string | null;
|
|
15957
|
-
status: "
|
|
15959
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
15958
15960
|
statusEnteredAt: string | null;
|
|
15959
15961
|
activityAt: string | null;
|
|
15960
15962
|
scripts: {
|
|
@@ -16057,7 +16059,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
16057
16059
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
16058
16060
|
name: string;
|
|
16059
16061
|
archivingAt: string | null;
|
|
16060
|
-
status: "
|
|
16062
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
16061
16063
|
statusEnteredAt: string | null;
|
|
16062
16064
|
activityAt: string | null;
|
|
16063
16065
|
scripts: {
|
|
@@ -16775,9 +16777,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
16775
16777
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
16776
16778
|
status: z.ZodEnum<{
|
|
16777
16779
|
error: "error";
|
|
16778
|
-
initializing: "initializing";
|
|
16779
16780
|
idle: "idle";
|
|
16780
16781
|
running: "running";
|
|
16782
|
+
initializing: "initializing";
|
|
16781
16783
|
closed: "closed";
|
|
16782
16784
|
}>;
|
|
16783
16785
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -17808,9 +17810,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
17808
17810
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17809
17811
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
17810
17812
|
status: z.ZodCatch<z.ZodEnum<{
|
|
17811
|
-
running: "running";
|
|
17812
17813
|
attention: "attention";
|
|
17813
17814
|
needs_input: "needs_input";
|
|
17815
|
+
running: "running";
|
|
17814
17816
|
failed: "failed";
|
|
17815
17817
|
pending: "pending";
|
|
17816
17818
|
done: "done";
|
|
@@ -17992,7 +17994,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
17992
17994
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
17993
17995
|
name: string;
|
|
17994
17996
|
archivingAt: string | null;
|
|
17995
|
-
status: "
|
|
17997
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
17996
17998
|
statusEnteredAt: string | null;
|
|
17997
17999
|
activityAt: string | null;
|
|
17998
18000
|
scripts: {
|
|
@@ -18095,7 +18097,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
18095
18097
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
18096
18098
|
name: string;
|
|
18097
18099
|
archivingAt: string | null;
|
|
18098
|
-
status: "
|
|
18100
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
18099
18101
|
statusEnteredAt: string | null;
|
|
18100
18102
|
activityAt: string | null;
|
|
18101
18103
|
scripts: {
|
|
@@ -21028,9 +21030,9 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
21028
21030
|
projectKeys: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
21029
21031
|
statuses: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
21030
21032
|
error: "error";
|
|
21031
|
-
initializing: "initializing";
|
|
21032
21033
|
idle: "idle";
|
|
21033
21034
|
running: "running";
|
|
21035
|
+
initializing: "initializing";
|
|
21034
21036
|
closed: "closed";
|
|
21035
21037
|
}>>>;
|
|
21036
21038
|
includeArchived: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -21064,9 +21066,9 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
21064
21066
|
projectKeys: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
21065
21067
|
statuses: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
21066
21068
|
error: "error";
|
|
21067
|
-
initializing: "initializing";
|
|
21068
21069
|
idle: "idle";
|
|
21069
21070
|
running: "running";
|
|
21071
|
+
initializing: "initializing";
|
|
21070
21072
|
closed: "closed";
|
|
21071
21073
|
}>>>;
|
|
21072
21074
|
includeArchived: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -23044,9 +23046,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
23044
23046
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
23045
23047
|
status: z.ZodEnum<{
|
|
23046
23048
|
error: "error";
|
|
23047
|
-
initializing: "initializing";
|
|
23048
23049
|
idle: "idle";
|
|
23049
23050
|
running: "running";
|
|
23051
|
+
initializing: "initializing";
|
|
23050
23052
|
closed: "closed";
|
|
23051
23053
|
}>;
|
|
23052
23054
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -23216,9 +23218,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
23216
23218
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23217
23219
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
23218
23220
|
status: z.ZodCatch<z.ZodEnum<{
|
|
23219
|
-
running: "running";
|
|
23220
23221
|
attention: "attention";
|
|
23221
23222
|
needs_input: "needs_input";
|
|
23223
|
+
running: "running";
|
|
23222
23224
|
failed: "failed";
|
|
23223
23225
|
pending: "pending";
|
|
23224
23226
|
done: "done";
|
|
@@ -23400,7 +23402,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
23400
23402
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
23401
23403
|
name: string;
|
|
23402
23404
|
archivingAt: string | null;
|
|
23403
|
-
status: "
|
|
23405
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
23404
23406
|
statusEnteredAt: string | null;
|
|
23405
23407
|
activityAt: string | null;
|
|
23406
23408
|
scripts: {
|
|
@@ -23503,7 +23505,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
23503
23505
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
23504
23506
|
name: string;
|
|
23505
23507
|
archivingAt: string | null;
|
|
23506
|
-
status: "
|
|
23508
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
23507
23509
|
statusEnteredAt: string | null;
|
|
23508
23510
|
activityAt: string | null;
|
|
23509
23511
|
scripts: {
|
|
@@ -23815,9 +23817,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
23815
23817
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
23816
23818
|
status: z.ZodEnum<{
|
|
23817
23819
|
error: "error";
|
|
23818
|
-
initializing: "initializing";
|
|
23819
23820
|
idle: "idle";
|
|
23820
23821
|
running: "running";
|
|
23822
|
+
initializing: "initializing";
|
|
23821
23823
|
closed: "closed";
|
|
23822
23824
|
}>;
|
|
23823
23825
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -23917,9 +23919,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
23917
23919
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
23918
23920
|
status: z.ZodEnum<{
|
|
23919
23921
|
error: "error";
|
|
23920
|
-
initializing: "initializing";
|
|
23921
23922
|
idle: "idle";
|
|
23922
23923
|
running: "running";
|
|
23924
|
+
initializing: "initializing";
|
|
23923
23925
|
closed: "closed";
|
|
23924
23926
|
}>;
|
|
23925
23927
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -24102,9 +24104,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
24102
24104
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
24103
24105
|
status: z.ZodEnum<{
|
|
24104
24106
|
error: "error";
|
|
24105
|
-
initializing: "initializing";
|
|
24106
24107
|
idle: "idle";
|
|
24107
24108
|
running: "running";
|
|
24109
|
+
initializing: "initializing";
|
|
24108
24110
|
closed: "closed";
|
|
24109
24111
|
}>;
|
|
24110
24112
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -24288,9 +24290,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
24288
24290
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24289
24291
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
24290
24292
|
status: z.ZodCatch<z.ZodEnum<{
|
|
24291
|
-
running: "running";
|
|
24292
24293
|
attention: "attention";
|
|
24293
24294
|
needs_input: "needs_input";
|
|
24295
|
+
running: "running";
|
|
24294
24296
|
failed: "failed";
|
|
24295
24297
|
pending: "pending";
|
|
24296
24298
|
done: "done";
|
|
@@ -24472,7 +24474,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
24472
24474
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
24473
24475
|
name: string;
|
|
24474
24476
|
archivingAt: string | null;
|
|
24475
|
-
status: "
|
|
24477
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
24476
24478
|
statusEnteredAt: string | null;
|
|
24477
24479
|
activityAt: string | null;
|
|
24478
24480
|
scripts: {
|
|
@@ -24575,7 +24577,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
24575
24577
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
24576
24578
|
name: string;
|
|
24577
24579
|
archivingAt: string | null;
|
|
24578
|
-
status: "
|
|
24580
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
24579
24581
|
statusEnteredAt: string | null;
|
|
24580
24582
|
activityAt: string | null;
|
|
24581
24583
|
scripts: {
|
|
@@ -24734,9 +24736,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
24734
24736
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24735
24737
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
24736
24738
|
status: z.ZodCatch<z.ZodEnum<{
|
|
24737
|
-
running: "running";
|
|
24738
24739
|
attention: "attention";
|
|
24739
24740
|
needs_input: "needs_input";
|
|
24741
|
+
running: "running";
|
|
24740
24742
|
failed: "failed";
|
|
24741
24743
|
pending: "pending";
|
|
24742
24744
|
done: "done";
|
|
@@ -24918,7 +24920,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
24918
24920
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
24919
24921
|
name: string;
|
|
24920
24922
|
archivingAt: string | null;
|
|
24921
|
-
status: "
|
|
24923
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
24922
24924
|
statusEnteredAt: string | null;
|
|
24923
24925
|
activityAt: string | null;
|
|
24924
24926
|
scripts: {
|
|
@@ -25021,7 +25023,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
25021
25023
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
25022
25024
|
name: string;
|
|
25023
25025
|
archivingAt: string | null;
|
|
25024
|
-
status: "
|
|
25026
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
25025
25027
|
statusEnteredAt: string | null;
|
|
25026
25028
|
activityAt: string | null;
|
|
25027
25029
|
scripts: {
|
|
@@ -25196,9 +25198,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
25196
25198
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
25197
25199
|
status: z.ZodEnum<{
|
|
25198
25200
|
error: "error";
|
|
25199
|
-
initializing: "initializing";
|
|
25200
25201
|
idle: "idle";
|
|
25201
25202
|
running: "running";
|
|
25203
|
+
initializing: "initializing";
|
|
25202
25204
|
closed: "closed";
|
|
25203
25205
|
}>;
|
|
25204
25206
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -25376,9 +25378,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
25376
25378
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
25377
25379
|
status: z.ZodEnum<{
|
|
25378
25380
|
error: "error";
|
|
25379
|
-
initializing: "initializing";
|
|
25380
25381
|
idle: "idle";
|
|
25381
25382
|
running: "running";
|
|
25383
|
+
initializing: "initializing";
|
|
25382
25384
|
closed: "closed";
|
|
25383
25385
|
}>;
|
|
25384
25386
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -25550,9 +25552,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
25550
25552
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
25551
25553
|
status: z.ZodEnum<{
|
|
25552
25554
|
error: "error";
|
|
25553
|
-
initializing: "initializing";
|
|
25554
25555
|
idle: "idle";
|
|
25555
25556
|
running: "running";
|
|
25557
|
+
initializing: "initializing";
|
|
25556
25558
|
closed: "closed";
|
|
25557
25559
|
}>;
|
|
25558
25560
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -25651,9 +25653,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
25651
25653
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
25652
25654
|
status: z.ZodEnum<{
|
|
25653
25655
|
error: "error";
|
|
25654
|
-
initializing: "initializing";
|
|
25655
25656
|
idle: "idle";
|
|
25656
25657
|
running: "running";
|
|
25658
|
+
initializing: "initializing";
|
|
25657
25659
|
closed: "closed";
|
|
25658
25660
|
}>;
|
|
25659
25661
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -25735,9 +25737,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
25735
25737
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25736
25738
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
25737
25739
|
status: z.ZodCatch<z.ZodEnum<{
|
|
25738
|
-
running: "running";
|
|
25739
25740
|
attention: "attention";
|
|
25740
25741
|
needs_input: "needs_input";
|
|
25742
|
+
running: "running";
|
|
25741
25743
|
failed: "failed";
|
|
25742
25744
|
pending: "pending";
|
|
25743
25745
|
done: "done";
|
|
@@ -25919,7 +25921,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
25919
25921
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
25920
25922
|
name: string;
|
|
25921
25923
|
archivingAt: string | null;
|
|
25922
|
-
status: "
|
|
25924
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
25923
25925
|
statusEnteredAt: string | null;
|
|
25924
25926
|
activityAt: string | null;
|
|
25925
25927
|
scripts: {
|
|
@@ -26022,7 +26024,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
26022
26024
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
26023
26025
|
name: string;
|
|
26024
26026
|
archivingAt: string | null;
|
|
26025
|
-
status: "
|
|
26027
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
26026
26028
|
statusEnteredAt: string | null;
|
|
26027
26029
|
activityAt: string | null;
|
|
26028
26030
|
scripts: {
|
|
@@ -26740,9 +26742,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
26740
26742
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
26741
26743
|
status: z.ZodEnum<{
|
|
26742
26744
|
error: "error";
|
|
26743
|
-
initializing: "initializing";
|
|
26744
26745
|
idle: "idle";
|
|
26745
26746
|
running: "running";
|
|
26747
|
+
initializing: "initializing";
|
|
26746
26748
|
closed: "closed";
|
|
26747
26749
|
}>;
|
|
26748
26750
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -27773,9 +27775,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
27773
27775
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27774
27776
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
27775
27777
|
status: z.ZodCatch<z.ZodEnum<{
|
|
27776
|
-
running: "running";
|
|
27777
27778
|
attention: "attention";
|
|
27778
27779
|
needs_input: "needs_input";
|
|
27780
|
+
running: "running";
|
|
27779
27781
|
failed: "failed";
|
|
27780
27782
|
pending: "pending";
|
|
27781
27783
|
done: "done";
|
|
@@ -27957,7 +27959,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
27957
27959
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
27958
27960
|
name: string;
|
|
27959
27961
|
archivingAt: string | null;
|
|
27960
|
-
status: "
|
|
27962
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
27961
27963
|
statusEnteredAt: string | null;
|
|
27962
27964
|
activityAt: string | null;
|
|
27963
27965
|
scripts: {
|
|
@@ -28060,7 +28062,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
28060
28062
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
28061
28063
|
name: string;
|
|
28062
28064
|
archivingAt: string | null;
|
|
28063
|
-
status: "
|
|
28065
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
28064
28066
|
statusEnteredAt: string | null;
|
|
28065
28067
|
activityAt: string | null;
|
|
28066
28068
|
scripts: {
|
|
@@ -30656,9 +30658,9 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
30656
30658
|
projectKeys: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
30657
30659
|
statuses: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
30658
30660
|
error: "error";
|
|
30659
|
-
initializing: "initializing";
|
|
30660
30661
|
idle: "idle";
|
|
30661
30662
|
running: "running";
|
|
30663
|
+
initializing: "initializing";
|
|
30662
30664
|
closed: "closed";
|
|
30663
30665
|
}>>>;
|
|
30664
30666
|
includeArchived: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -30692,9 +30694,9 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
30692
30694
|
projectKeys: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
30693
30695
|
statuses: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
30694
30696
|
error: "error";
|
|
30695
|
-
initializing: "initializing";
|
|
30696
30697
|
idle: "idle";
|
|
30697
30698
|
running: "running";
|
|
30699
|
+
initializing: "initializing";
|
|
30698
30700
|
closed: "closed";
|
|
30699
30701
|
}>>>;
|
|
30700
30702
|
includeArchived: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -32674,9 +32676,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
32674
32676
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
32675
32677
|
status: z.ZodEnum<{
|
|
32676
32678
|
error: "error";
|
|
32677
|
-
initializing: "initializing";
|
|
32678
32679
|
idle: "idle";
|
|
32679
32680
|
running: "running";
|
|
32681
|
+
initializing: "initializing";
|
|
32680
32682
|
closed: "closed";
|
|
32681
32683
|
}>;
|
|
32682
32684
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -32846,9 +32848,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
32846
32848
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32847
32849
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
32848
32850
|
status: z.ZodCatch<z.ZodEnum<{
|
|
32849
|
-
running: "running";
|
|
32850
32851
|
attention: "attention";
|
|
32851
32852
|
needs_input: "needs_input";
|
|
32853
|
+
running: "running";
|
|
32852
32854
|
failed: "failed";
|
|
32853
32855
|
pending: "pending";
|
|
32854
32856
|
done: "done";
|
|
@@ -33030,7 +33032,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
33030
33032
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
33031
33033
|
name: string;
|
|
33032
33034
|
archivingAt: string | null;
|
|
33033
|
-
status: "
|
|
33035
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
33034
33036
|
statusEnteredAt: string | null;
|
|
33035
33037
|
activityAt: string | null;
|
|
33036
33038
|
scripts: {
|
|
@@ -33133,7 +33135,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
33133
33135
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
33134
33136
|
name: string;
|
|
33135
33137
|
archivingAt: string | null;
|
|
33136
|
-
status: "
|
|
33138
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
33137
33139
|
statusEnteredAt: string | null;
|
|
33138
33140
|
activityAt: string | null;
|
|
33139
33141
|
scripts: {
|
|
@@ -33445,9 +33447,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
33445
33447
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
33446
33448
|
status: z.ZodEnum<{
|
|
33447
33449
|
error: "error";
|
|
33448
|
-
initializing: "initializing";
|
|
33449
33450
|
idle: "idle";
|
|
33450
33451
|
running: "running";
|
|
33452
|
+
initializing: "initializing";
|
|
33451
33453
|
closed: "closed";
|
|
33452
33454
|
}>;
|
|
33453
33455
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -33547,9 +33549,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
33547
33549
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
33548
33550
|
status: z.ZodEnum<{
|
|
33549
33551
|
error: "error";
|
|
33550
|
-
initializing: "initializing";
|
|
33551
33552
|
idle: "idle";
|
|
33552
33553
|
running: "running";
|
|
33554
|
+
initializing: "initializing";
|
|
33553
33555
|
closed: "closed";
|
|
33554
33556
|
}>;
|
|
33555
33557
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -33732,9 +33734,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
33732
33734
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
33733
33735
|
status: z.ZodEnum<{
|
|
33734
33736
|
error: "error";
|
|
33735
|
-
initializing: "initializing";
|
|
33736
33737
|
idle: "idle";
|
|
33737
33738
|
running: "running";
|
|
33739
|
+
initializing: "initializing";
|
|
33738
33740
|
closed: "closed";
|
|
33739
33741
|
}>;
|
|
33740
33742
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -33918,9 +33920,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
33918
33920
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33919
33921
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
33920
33922
|
status: z.ZodCatch<z.ZodEnum<{
|
|
33921
|
-
running: "running";
|
|
33922
33923
|
attention: "attention";
|
|
33923
33924
|
needs_input: "needs_input";
|
|
33925
|
+
running: "running";
|
|
33924
33926
|
failed: "failed";
|
|
33925
33927
|
pending: "pending";
|
|
33926
33928
|
done: "done";
|
|
@@ -34102,7 +34104,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
34102
34104
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
34103
34105
|
name: string;
|
|
34104
34106
|
archivingAt: string | null;
|
|
34105
|
-
status: "
|
|
34107
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
34106
34108
|
statusEnteredAt: string | null;
|
|
34107
34109
|
activityAt: string | null;
|
|
34108
34110
|
scripts: {
|
|
@@ -34205,7 +34207,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
34205
34207
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
34206
34208
|
name: string;
|
|
34207
34209
|
archivingAt: string | null;
|
|
34208
|
-
status: "
|
|
34210
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
34209
34211
|
statusEnteredAt: string | null;
|
|
34210
34212
|
activityAt: string | null;
|
|
34211
34213
|
scripts: {
|
|
@@ -34364,9 +34366,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
34364
34366
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34365
34367
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
34366
34368
|
status: z.ZodCatch<z.ZodEnum<{
|
|
34367
|
-
running: "running";
|
|
34368
34369
|
attention: "attention";
|
|
34369
34370
|
needs_input: "needs_input";
|
|
34371
|
+
running: "running";
|
|
34370
34372
|
failed: "failed";
|
|
34371
34373
|
pending: "pending";
|
|
34372
34374
|
done: "done";
|
|
@@ -34548,7 +34550,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
34548
34550
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
34549
34551
|
name: string;
|
|
34550
34552
|
archivingAt: string | null;
|
|
34551
|
-
status: "
|
|
34553
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
34552
34554
|
statusEnteredAt: string | null;
|
|
34553
34555
|
activityAt: string | null;
|
|
34554
34556
|
scripts: {
|
|
@@ -34651,7 +34653,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
34651
34653
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
34652
34654
|
name: string;
|
|
34653
34655
|
archivingAt: string | null;
|
|
34654
|
-
status: "
|
|
34656
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
34655
34657
|
statusEnteredAt: string | null;
|
|
34656
34658
|
activityAt: string | null;
|
|
34657
34659
|
scripts: {
|
|
@@ -34826,9 +34828,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
34826
34828
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
34827
34829
|
status: z.ZodEnum<{
|
|
34828
34830
|
error: "error";
|
|
34829
|
-
initializing: "initializing";
|
|
34830
34831
|
idle: "idle";
|
|
34831
34832
|
running: "running";
|
|
34833
|
+
initializing: "initializing";
|
|
34832
34834
|
closed: "closed";
|
|
34833
34835
|
}>;
|
|
34834
34836
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -35006,9 +35008,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
35006
35008
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
35007
35009
|
status: z.ZodEnum<{
|
|
35008
35010
|
error: "error";
|
|
35009
|
-
initializing: "initializing";
|
|
35010
35011
|
idle: "idle";
|
|
35011
35012
|
running: "running";
|
|
35013
|
+
initializing: "initializing";
|
|
35012
35014
|
closed: "closed";
|
|
35013
35015
|
}>;
|
|
35014
35016
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -35180,9 +35182,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
35180
35182
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
35181
35183
|
status: z.ZodEnum<{
|
|
35182
35184
|
error: "error";
|
|
35183
|
-
initializing: "initializing";
|
|
35184
35185
|
idle: "idle";
|
|
35185
35186
|
running: "running";
|
|
35187
|
+
initializing: "initializing";
|
|
35186
35188
|
closed: "closed";
|
|
35187
35189
|
}>;
|
|
35188
35190
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -35281,9 +35283,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
35281
35283
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
35282
35284
|
status: z.ZodEnum<{
|
|
35283
35285
|
error: "error";
|
|
35284
|
-
initializing: "initializing";
|
|
35285
35286
|
idle: "idle";
|
|
35286
35287
|
running: "running";
|
|
35288
|
+
initializing: "initializing";
|
|
35287
35289
|
closed: "closed";
|
|
35288
35290
|
}>;
|
|
35289
35291
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -35365,9 +35367,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
35365
35367
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35366
35368
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
35367
35369
|
status: z.ZodCatch<z.ZodEnum<{
|
|
35368
|
-
running: "running";
|
|
35369
35370
|
attention: "attention";
|
|
35370
35371
|
needs_input: "needs_input";
|
|
35372
|
+
running: "running";
|
|
35371
35373
|
failed: "failed";
|
|
35372
35374
|
pending: "pending";
|
|
35373
35375
|
done: "done";
|
|
@@ -35549,7 +35551,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
35549
35551
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
35550
35552
|
name: string;
|
|
35551
35553
|
archivingAt: string | null;
|
|
35552
|
-
status: "
|
|
35554
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
35553
35555
|
statusEnteredAt: string | null;
|
|
35554
35556
|
activityAt: string | null;
|
|
35555
35557
|
scripts: {
|
|
@@ -35652,7 +35654,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
35652
35654
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
35653
35655
|
name: string;
|
|
35654
35656
|
archivingAt: string | null;
|
|
35655
|
-
status: "
|
|
35657
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
35656
35658
|
statusEnteredAt: string | null;
|
|
35657
35659
|
activityAt: string | null;
|
|
35658
35660
|
scripts: {
|
|
@@ -36370,9 +36372,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
36370
36372
|
lastUserMessageAt: z.ZodNullable<z.ZodString>;
|
|
36371
36373
|
status: z.ZodEnum<{
|
|
36372
36374
|
error: "error";
|
|
36373
|
-
initializing: "initializing";
|
|
36374
36375
|
idle: "idle";
|
|
36375
36376
|
running: "running";
|
|
36377
|
+
initializing: "initializing";
|
|
36376
36378
|
closed: "closed";
|
|
36377
36379
|
}>;
|
|
36378
36380
|
capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
|
|
@@ -37403,9 +37405,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
37403
37405
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
37404
37406
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
37405
37407
|
status: z.ZodCatch<z.ZodEnum<{
|
|
37406
|
-
running: "running";
|
|
37407
37408
|
attention: "attention";
|
|
37408
37409
|
needs_input: "needs_input";
|
|
37410
|
+
running: "running";
|
|
37409
37411
|
failed: "failed";
|
|
37410
37412
|
pending: "pending";
|
|
37411
37413
|
done: "done";
|
|
@@ -37587,7 +37589,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
37587
37589
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
37588
37590
|
name: string;
|
|
37589
37591
|
archivingAt: string | null;
|
|
37590
|
-
status: "
|
|
37592
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
37591
37593
|
statusEnteredAt: string | null;
|
|
37592
37594
|
activityAt: string | null;
|
|
37593
37595
|
scripts: {
|
|
@@ -37690,7 +37692,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
37690
37692
|
workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
|
|
37691
37693
|
name: string;
|
|
37692
37694
|
archivingAt: string | null;
|
|
37693
|
-
status: "
|
|
37695
|
+
status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
|
|
37694
37696
|
statusEnteredAt: string | null;
|
|
37695
37697
|
activityAt: string | null;
|
|
37696
37698
|
scripts: {
|