@hyperdrive.bot/paseo-protocol 0.3.45 → 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.
@@ -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>;
@@ -1861,6 +1863,7 @@ export declare const CreateAgentRequestMessageSchema: z.ZodObject<{
1861
1863
  claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
1862
1864
  }, z.core.$strip>>;
1863
1865
  systemPrompt: z.ZodOptional<z.ZodString>;
1866
+ outputLanguage: z.ZodOptional<z.ZodString>;
1864
1867
  mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
1865
1868
  type: z.ZodLiteral<"stdio">;
1866
1869
  command: z.ZodString;
@@ -2050,6 +2053,7 @@ export declare const ResumeAgentRequestMessageSchema: z.ZodObject<{
2050
2053
  claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
2051
2054
  }, z.core.$strip>>>;
2052
2055
  systemPrompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2056
+ outputLanguage: z.ZodOptional<z.ZodOptional<z.ZodString>>;
2053
2057
  mcpServers: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
2054
2058
  type: z.ZodLiteral<"stdio">;
2055
2059
  command: z.ZodString;
@@ -3652,9 +3656,9 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
3652
3656
  projectKeys: z.ZodOptional<z.ZodArray<z.ZodString>>;
3653
3657
  statuses: z.ZodOptional<z.ZodArray<z.ZodEnum<{
3654
3658
  error: "error";
3655
- initializing: "initializing";
3656
3659
  idle: "idle";
3657
3660
  running: "running";
3661
+ initializing: "initializing";
3658
3662
  closed: "closed";
3659
3663
  }>>>;
3660
3664
  includeArchived: z.ZodOptional<z.ZodBoolean>;
@@ -3688,9 +3692,9 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
3688
3692
  projectKeys: z.ZodOptional<z.ZodArray<z.ZodString>>;
3689
3693
  statuses: z.ZodOptional<z.ZodArray<z.ZodEnum<{
3690
3694
  error: "error";
3691
- initializing: "initializing";
3692
3695
  idle: "idle";
3693
3696
  running: "running";
3697
+ initializing: "initializing";
3694
3698
  closed: "closed";
3695
3699
  }>>>;
3696
3700
  includeArchived: z.ZodOptional<z.ZodBoolean>;
@@ -4089,6 +4093,7 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
4089
4093
  claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
4090
4094
  }, z.core.$strip>>;
4091
4095
  systemPrompt: z.ZodOptional<z.ZodString>;
4096
+ outputLanguage: z.ZodOptional<z.ZodString>;
4092
4097
  mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
4093
4098
  type: z.ZodLiteral<"stdio">;
4094
4099
  command: z.ZodString;
@@ -4273,6 +4278,7 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
4273
4278
  claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
4274
4279
  }, z.core.$strip>>>;
4275
4280
  systemPrompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4281
+ outputLanguage: z.ZodOptional<z.ZodOptional<z.ZodString>>;
4276
4282
  mcpServers: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
4277
4283
  type: z.ZodLiteral<"stdio">;
4278
4284
  command: z.ZodString;
@@ -5720,9 +5726,9 @@ export declare const AgentCreatedStatusPayloadSchema: z.ZodObject<{
5720
5726
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
5721
5727
  status: z.ZodEnum<{
5722
5728
  error: "error";
5723
- initializing: "initializing";
5724
5729
  idle: "idle";
5725
5730
  running: "running";
5731
+ initializing: "initializing";
5726
5732
  closed: "closed";
5727
5733
  }>;
5728
5734
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -5826,9 +5832,9 @@ export declare const AgentResumedStatusPayloadSchema: z.ZodObject<{
5826
5832
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
5827
5833
  status: z.ZodEnum<{
5828
5834
  error: "error";
5829
- initializing: "initializing";
5830
5835
  idle: "idle";
5831
5836
  running: "running";
5837
+ initializing: "initializing";
5832
5838
  closed: "closed";
5833
5839
  }>;
5834
5840
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -5989,9 +5995,9 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<[z.ZodObj
5989
5995
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
5990
5996
  status: z.ZodEnum<{
5991
5997
  error: "error";
5992
- initializing: "initializing";
5993
5998
  idle: "idle";
5994
5999
  running: "running";
6000
+ initializing: "initializing";
5995
6001
  closed: "closed";
5996
6002
  }>;
5997
6003
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -6093,9 +6099,9 @@ export declare const KnownStatusPayloadSchema: z.ZodDiscriminatedUnion<[z.ZodObj
6093
6099
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
6094
6100
  status: z.ZodEnum<{
6095
6101
  error: "error";
6096
- initializing: "initializing";
6097
6102
  idle: "idle";
6098
6103
  running: "running";
6104
+ initializing: "initializing";
6099
6105
  closed: "closed";
6100
6106
  }>;
6101
6107
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -6507,9 +6513,9 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodPipe<z.ZodObject<{
6507
6513
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6508
6514
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
6509
6515
  status: z.ZodCatch<z.ZodEnum<{
6510
- running: "running";
6511
6516
  attention: "attention";
6512
6517
  needs_input: "needs_input";
6518
+ running: "running";
6513
6519
  failed: "failed";
6514
6520
  pending: "pending";
6515
6521
  done: "done";
@@ -6691,7 +6697,7 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodPipe<z.ZodObject<{
6691
6697
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
6692
6698
  name: string;
6693
6699
  archivingAt: string | null;
6694
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
6700
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
6695
6701
  statusEnteredAt: string | null;
6696
6702
  activityAt: string | null;
6697
6703
  scripts: {
@@ -6794,7 +6800,7 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodPipe<z.ZodObject<{
6794
6800
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
6795
6801
  name: string;
6796
6802
  archivingAt: string | null;
6797
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
6803
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
6798
6804
  statusEnteredAt: string | null;
6799
6805
  activityAt: string | null;
6800
6806
  scripts: {
@@ -6931,9 +6937,9 @@ export declare const AgentUpdateMessageSchema: z.ZodObject<{
6931
6937
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
6932
6938
  status: z.ZodEnum<{
6933
6939
  error: "error";
6934
- initializing: "initializing";
6935
6940
  idle: "idle";
6936
6941
  running: "running";
6942
+ initializing: "initializing";
6937
6943
  closed: "closed";
6938
6944
  }>;
6939
6945
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -7195,9 +7201,9 @@ export declare const AgentStatusMessageSchema: z.ZodObject<{
7195
7201
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
7196
7202
  status: z.ZodEnum<{
7197
7203
  error: "error";
7198
- initializing: "initializing";
7199
7204
  idle: "idle";
7200
7205
  running: "running";
7206
+ initializing: "initializing";
7201
7207
  closed: "closed";
7202
7208
  }>;
7203
7209
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -7295,9 +7301,9 @@ export declare const AgentListMessageSchema: z.ZodObject<{
7295
7301
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
7296
7302
  status: z.ZodEnum<{
7297
7303
  error: "error";
7298
- initializing: "initializing";
7299
7304
  idle: "idle";
7300
7305
  running: "running";
7306
+ initializing: "initializing";
7301
7307
  closed: "closed";
7302
7308
  }>;
7303
7309
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -7398,9 +7404,9 @@ export declare const FetchAgentsResponseMessageSchema: z.ZodObject<{
7398
7404
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
7399
7405
  status: z.ZodEnum<{
7400
7406
  error: "error";
7401
- initializing: "initializing";
7402
7407
  idle: "idle";
7403
7408
  running: "running";
7409
+ initializing: "initializing";
7404
7410
  closed: "closed";
7405
7411
  }>;
7406
7412
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -7584,9 +7590,9 @@ export declare const FetchAgentHistoryResponseMessageSchema: z.ZodObject<{
7584
7590
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
7585
7591
  status: z.ZodEnum<{
7586
7592
  error: "error";
7587
- initializing: "initializing";
7588
7593
  idle: "idle";
7589
7594
  running: "running";
7595
+ initializing: "initializing";
7590
7596
  closed: "closed";
7591
7597
  }>;
7592
7598
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -7783,9 +7789,9 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
7783
7789
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7784
7790
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
7785
7791
  status: z.ZodCatch<z.ZodEnum<{
7786
- running: "running";
7787
7792
  attention: "attention";
7788
7793
  needs_input: "needs_input";
7794
+ running: "running";
7789
7795
  failed: "failed";
7790
7796
  pending: "pending";
7791
7797
  done: "done";
@@ -7967,7 +7973,7 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
7967
7973
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
7968
7974
  name: string;
7969
7975
  archivingAt: string | null;
7970
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
7976
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
7971
7977
  statusEnteredAt: string | null;
7972
7978
  activityAt: string | null;
7973
7979
  scripts: {
@@ -8070,7 +8076,7 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
8070
8076
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
8071
8077
  name: string;
8072
8078
  archivingAt: string | null;
8073
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
8079
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
8074
8080
  statusEnteredAt: string | null;
8075
8081
  activityAt: string | null;
8076
8082
  scripts: {
@@ -8210,9 +8216,9 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
8210
8216
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8211
8217
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
8212
8218
  status: z.ZodCatch<z.ZodEnum<{
8213
- running: "running";
8214
8219
  attention: "attention";
8215
8220
  needs_input: "needs_input";
8221
+ running: "running";
8216
8222
  failed: "failed";
8217
8223
  pending: "pending";
8218
8224
  done: "done";
@@ -8394,7 +8400,7 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
8394
8400
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
8395
8401
  name: string;
8396
8402
  archivingAt: string | null;
8397
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
8403
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
8398
8404
  statusEnteredAt: string | null;
8399
8405
  activityAt: string | null;
8400
8406
  scripts: {
@@ -8497,7 +8503,7 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
8497
8503
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
8498
8504
  name: string;
8499
8505
  archivingAt: string | null;
8500
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
8506
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
8501
8507
  statusEnteredAt: string | null;
8502
8508
  activityAt: string | null;
8503
8509
  scripts: {
@@ -8759,9 +8765,9 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
8759
8765
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8760
8766
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
8761
8767
  status: z.ZodCatch<z.ZodEnum<{
8762
- running: "running";
8763
8768
  attention: "attention";
8764
8769
  needs_input: "needs_input";
8770
+ running: "running";
8765
8771
  failed: "failed";
8766
8772
  pending: "pending";
8767
8773
  done: "done";
@@ -8943,7 +8949,7 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
8943
8949
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
8944
8950
  name: string;
8945
8951
  archivingAt: string | null;
8946
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
8952
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
8947
8953
  statusEnteredAt: string | null;
8948
8954
  activityAt: string | null;
8949
8955
  scripts: {
@@ -9046,7 +9052,7 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
9046
9052
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
9047
9053
  name: string;
9048
9054
  archivingAt: string | null;
9049
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
9055
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
9050
9056
  statusEnteredAt: string | null;
9051
9057
  activityAt: string | null;
9052
9058
  scripts: {
@@ -9247,9 +9253,9 @@ export declare const FetchAgentResponseMessageSchema: z.ZodObject<{
9247
9253
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
9248
9254
  status: z.ZodEnum<{
9249
9255
  error: "error";
9250
- initializing: "initializing";
9251
9256
  idle: "idle";
9252
9257
  running: "running";
9258
+ initializing: "initializing";
9253
9259
  closed: "closed";
9254
9260
  }>;
9255
9261
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -9444,9 +9450,9 @@ export declare const FetchAgentTimelineResponseMessageSchema: z.ZodObject<{
9444
9450
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
9445
9451
  status: z.ZodEnum<{
9446
9452
  error: "error";
9447
- initializing: "initializing";
9448
9453
  idle: "idle";
9449
9454
  running: "running";
9455
+ initializing: "initializing";
9450
9456
  closed: "closed";
9451
9457
  }>;
9452
9458
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -9620,9 +9626,9 @@ export declare const CancelAgentResponseMessageSchema: z.ZodObject<{
9620
9626
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
9621
9627
  status: z.ZodEnum<{
9622
9628
  error: "error";
9623
- initializing: "initializing";
9624
9629
  idle: "idle";
9625
9630
  running: "running";
9631
+ initializing: "initializing";
9626
9632
  closed: "closed";
9627
9633
  }>;
9628
9634
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -9722,9 +9728,9 @@ export declare const ClearAgentAttentionResponseMessageSchema: z.ZodObject<{
9722
9728
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
9723
9729
  status: z.ZodEnum<{
9724
9730
  error: "error";
9725
- initializing: "initializing";
9726
9731
  idle: "idle";
9727
9732
  running: "running";
9733
+ initializing: "initializing";
9728
9734
  closed: "closed";
9729
9735
  }>;
9730
9736
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -9807,9 +9813,9 @@ export declare const WorkspaceCreateResponseSchema: z.ZodObject<{
9807
9813
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9808
9814
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
9809
9815
  status: z.ZodCatch<z.ZodEnum<{
9810
- running: "running";
9811
9816
  attention: "attention";
9812
9817
  needs_input: "needs_input";
9818
+ running: "running";
9813
9819
  failed: "failed";
9814
9820
  pending: "pending";
9815
9821
  done: "done";
@@ -9991,7 +9997,7 @@ export declare const WorkspaceCreateResponseSchema: z.ZodObject<{
9991
9997
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
9992
9998
  name: string;
9993
9999
  archivingAt: string | null;
9994
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
10000
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
9995
10001
  statusEnteredAt: string | null;
9996
10002
  activityAt: string | null;
9997
10003
  scripts: {
@@ -10094,7 +10100,7 @@ export declare const WorkspaceCreateResponseSchema: z.ZodObject<{
10094
10100
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
10095
10101
  name: string;
10096
10102
  archivingAt: string | null;
10097
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
10103
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
10098
10104
  statusEnteredAt: string | null;
10099
10105
  activityAt: string | null;
10100
10106
  scripts: {
@@ -10268,9 +10274,9 @@ export declare const WaitForFinishResponseMessageSchema: z.ZodObject<{
10268
10274
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
10269
10275
  status: z.ZodEnum<{
10270
10276
  error: "error";
10271
- initializing: "initializing";
10272
10277
  idle: "idle";
10273
10278
  running: "running";
10279
+ initializing: "initializing";
10274
10280
  closed: "closed";
10275
10281
  }>;
10276
10282
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -11701,9 +11707,9 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
11701
11707
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11702
11708
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
11703
11709
  status: z.ZodCatch<z.ZodEnum<{
11704
- running: "running";
11705
11710
  attention: "attention";
11706
11711
  needs_input: "needs_input";
11712
+ running: "running";
11707
11713
  failed: "failed";
11708
11714
  pending: "pending";
11709
11715
  done: "done";
@@ -11885,7 +11891,7 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
11885
11891
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
11886
11892
  name: string;
11887
11893
  archivingAt: string | null;
11888
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
11894
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
11889
11895
  statusEnteredAt: string | null;
11890
11896
  activityAt: string | null;
11891
11897
  scripts: {
@@ -11988,7 +11994,7 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
11988
11994
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
11989
11995
  name: string;
11990
11996
  archivingAt: string | null;
11991
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
11997
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
11992
11998
  statusEnteredAt: string | null;
11993
11999
  activityAt: string | null;
11994
12000
  scripts: {
@@ -13075,9 +13081,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
13075
13081
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
13076
13082
  status: z.ZodEnum<{
13077
13083
  error: "error";
13078
- initializing: "initializing";
13079
13084
  idle: "idle";
13080
13085
  running: "running";
13086
+ initializing: "initializing";
13081
13087
  closed: "closed";
13082
13088
  }>;
13083
13089
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -13247,9 +13253,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
13247
13253
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13248
13254
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
13249
13255
  status: z.ZodCatch<z.ZodEnum<{
13250
- running: "running";
13251
13256
  attention: "attention";
13252
13257
  needs_input: "needs_input";
13258
+ running: "running";
13253
13259
  failed: "failed";
13254
13260
  pending: "pending";
13255
13261
  done: "done";
@@ -13431,7 +13437,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
13431
13437
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
13432
13438
  name: string;
13433
13439
  archivingAt: string | null;
13434
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
13440
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
13435
13441
  statusEnteredAt: string | null;
13436
13442
  activityAt: string | null;
13437
13443
  scripts: {
@@ -13534,7 +13540,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
13534
13540
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
13535
13541
  name: string;
13536
13542
  archivingAt: string | null;
13537
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
13543
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
13538
13544
  statusEnteredAt: string | null;
13539
13545
  activityAt: string | null;
13540
13546
  scripts: {
@@ -13846,9 +13852,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
13846
13852
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
13847
13853
  status: z.ZodEnum<{
13848
13854
  error: "error";
13849
- initializing: "initializing";
13850
13855
  idle: "idle";
13851
13856
  running: "running";
13857
+ initializing: "initializing";
13852
13858
  closed: "closed";
13853
13859
  }>;
13854
13860
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -13948,9 +13954,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
13948
13954
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
13949
13955
  status: z.ZodEnum<{
13950
13956
  error: "error";
13951
- initializing: "initializing";
13952
13957
  idle: "idle";
13953
13958
  running: "running";
13959
+ initializing: "initializing";
13954
13960
  closed: "closed";
13955
13961
  }>;
13956
13962
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -14133,9 +14139,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
14133
14139
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
14134
14140
  status: z.ZodEnum<{
14135
14141
  error: "error";
14136
- initializing: "initializing";
14137
14142
  idle: "idle";
14138
14143
  running: "running";
14144
+ initializing: "initializing";
14139
14145
  closed: "closed";
14140
14146
  }>;
14141
14147
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -14319,9 +14325,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
14319
14325
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14320
14326
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
14321
14327
  status: z.ZodCatch<z.ZodEnum<{
14322
- running: "running";
14323
14328
  attention: "attention";
14324
14329
  needs_input: "needs_input";
14330
+ running: "running";
14325
14331
  failed: "failed";
14326
14332
  pending: "pending";
14327
14333
  done: "done";
@@ -14503,7 +14509,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
14503
14509
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
14504
14510
  name: string;
14505
14511
  archivingAt: string | null;
14506
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
14512
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
14507
14513
  statusEnteredAt: string | null;
14508
14514
  activityAt: string | null;
14509
14515
  scripts: {
@@ -14606,7 +14612,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
14606
14612
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
14607
14613
  name: string;
14608
14614
  archivingAt: string | null;
14609
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
14615
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
14610
14616
  statusEnteredAt: string | null;
14611
14617
  activityAt: string | null;
14612
14618
  scripts: {
@@ -14765,9 +14771,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
14765
14771
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14766
14772
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
14767
14773
  status: z.ZodCatch<z.ZodEnum<{
14768
- running: "running";
14769
14774
  attention: "attention";
14770
14775
  needs_input: "needs_input";
14776
+ running: "running";
14771
14777
  failed: "failed";
14772
14778
  pending: "pending";
14773
14779
  done: "done";
@@ -14949,7 +14955,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
14949
14955
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
14950
14956
  name: string;
14951
14957
  archivingAt: string | null;
14952
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
14958
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
14953
14959
  statusEnteredAt: string | null;
14954
14960
  activityAt: string | null;
14955
14961
  scripts: {
@@ -15052,7 +15058,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
15052
15058
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
15053
15059
  name: string;
15054
15060
  archivingAt: string | null;
15055
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
15061
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
15056
15062
  statusEnteredAt: string | null;
15057
15063
  activityAt: string | null;
15058
15064
  scripts: {
@@ -15227,9 +15233,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
15227
15233
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
15228
15234
  status: z.ZodEnum<{
15229
15235
  error: "error";
15230
- initializing: "initializing";
15231
15236
  idle: "idle";
15232
15237
  running: "running";
15238
+ initializing: "initializing";
15233
15239
  closed: "closed";
15234
15240
  }>;
15235
15241
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -15407,9 +15413,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
15407
15413
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
15408
15414
  status: z.ZodEnum<{
15409
15415
  error: "error";
15410
- initializing: "initializing";
15411
15416
  idle: "idle";
15412
15417
  running: "running";
15418
+ initializing: "initializing";
15413
15419
  closed: "closed";
15414
15420
  }>;
15415
15421
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -15581,9 +15587,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
15581
15587
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
15582
15588
  status: z.ZodEnum<{
15583
15589
  error: "error";
15584
- initializing: "initializing";
15585
15590
  idle: "idle";
15586
15591
  running: "running";
15592
+ initializing: "initializing";
15587
15593
  closed: "closed";
15588
15594
  }>;
15589
15595
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -15682,9 +15688,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
15682
15688
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
15683
15689
  status: z.ZodEnum<{
15684
15690
  error: "error";
15685
- initializing: "initializing";
15686
15691
  idle: "idle";
15687
15692
  running: "running";
15693
+ initializing: "initializing";
15688
15694
  closed: "closed";
15689
15695
  }>;
15690
15696
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -15766,9 +15772,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
15766
15772
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15767
15773
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
15768
15774
  status: z.ZodCatch<z.ZodEnum<{
15769
- running: "running";
15770
15775
  attention: "attention";
15771
15776
  needs_input: "needs_input";
15777
+ running: "running";
15772
15778
  failed: "failed";
15773
15779
  pending: "pending";
15774
15780
  done: "done";
@@ -15950,7 +15956,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
15950
15956
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
15951
15957
  name: string;
15952
15958
  archivingAt: string | null;
15953
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
15959
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
15954
15960
  statusEnteredAt: string | null;
15955
15961
  activityAt: string | null;
15956
15962
  scripts: {
@@ -16053,7 +16059,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
16053
16059
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
16054
16060
  name: string;
16055
16061
  archivingAt: string | null;
16056
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
16062
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
16057
16063
  statusEnteredAt: string | null;
16058
16064
  activityAt: string | null;
16059
16065
  scripts: {
@@ -16771,9 +16777,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
16771
16777
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
16772
16778
  status: z.ZodEnum<{
16773
16779
  error: "error";
16774
- initializing: "initializing";
16775
16780
  idle: "idle";
16776
16781
  running: "running";
16782
+ initializing: "initializing";
16777
16783
  closed: "closed";
16778
16784
  }>;
16779
16785
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -17804,9 +17810,9 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
17804
17810
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17805
17811
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
17806
17812
  status: z.ZodCatch<z.ZodEnum<{
17807
- running: "running";
17808
17813
  attention: "attention";
17809
17814
  needs_input: "needs_input";
17815
+ running: "running";
17810
17816
  failed: "failed";
17811
17817
  pending: "pending";
17812
17818
  done: "done";
@@ -17988,7 +17994,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
17988
17994
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
17989
17995
  name: string;
17990
17996
  archivingAt: string | null;
17991
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
17997
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
17992
17998
  statusEnteredAt: string | null;
17993
17999
  activityAt: string | null;
17994
18000
  scripts: {
@@ -18091,7 +18097,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
18091
18097
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
18092
18098
  name: string;
18093
18099
  archivingAt: string | null;
18094
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
18100
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
18095
18101
  statusEnteredAt: string | null;
18096
18102
  activityAt: string | null;
18097
18103
  scripts: {
@@ -21024,9 +21030,9 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
21024
21030
  projectKeys: z.ZodOptional<z.ZodArray<z.ZodString>>;
21025
21031
  statuses: z.ZodOptional<z.ZodArray<z.ZodEnum<{
21026
21032
  error: "error";
21027
- initializing: "initializing";
21028
21033
  idle: "idle";
21029
21034
  running: "running";
21035
+ initializing: "initializing";
21030
21036
  closed: "closed";
21031
21037
  }>>>;
21032
21038
  includeArchived: z.ZodOptional<z.ZodBoolean>;
@@ -21060,9 +21066,9 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
21060
21066
  projectKeys: z.ZodOptional<z.ZodArray<z.ZodString>>;
21061
21067
  statuses: z.ZodOptional<z.ZodArray<z.ZodEnum<{
21062
21068
  error: "error";
21063
- initializing: "initializing";
21064
21069
  idle: "idle";
21065
21070
  running: "running";
21071
+ initializing: "initializing";
21066
21072
  closed: "closed";
21067
21073
  }>>>;
21068
21074
  includeArchived: z.ZodOptional<z.ZodBoolean>;
@@ -21461,6 +21467,7 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
21461
21467
  claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
21462
21468
  }, z.core.$strip>>;
21463
21469
  systemPrompt: z.ZodOptional<z.ZodString>;
21470
+ outputLanguage: z.ZodOptional<z.ZodString>;
21464
21471
  mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
21465
21472
  type: z.ZodLiteral<"stdio">;
21466
21473
  command: z.ZodString;
@@ -21645,6 +21652,7 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
21645
21652
  claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
21646
21653
  }, z.core.$strip>>>;
21647
21654
  systemPrompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
21655
+ outputLanguage: z.ZodOptional<z.ZodOptional<z.ZodString>>;
21648
21656
  mcpServers: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
21649
21657
  type: z.ZodLiteral<"stdio">;
21650
21658
  command: z.ZodString;
@@ -23038,9 +23046,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
23038
23046
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
23039
23047
  status: z.ZodEnum<{
23040
23048
  error: "error";
23041
- initializing: "initializing";
23042
23049
  idle: "idle";
23043
23050
  running: "running";
23051
+ initializing: "initializing";
23044
23052
  closed: "closed";
23045
23053
  }>;
23046
23054
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -23210,9 +23218,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
23210
23218
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23211
23219
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
23212
23220
  status: z.ZodCatch<z.ZodEnum<{
23213
- running: "running";
23214
23221
  attention: "attention";
23215
23222
  needs_input: "needs_input";
23223
+ running: "running";
23216
23224
  failed: "failed";
23217
23225
  pending: "pending";
23218
23226
  done: "done";
@@ -23394,7 +23402,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
23394
23402
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
23395
23403
  name: string;
23396
23404
  archivingAt: string | null;
23397
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
23405
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
23398
23406
  statusEnteredAt: string | null;
23399
23407
  activityAt: string | null;
23400
23408
  scripts: {
@@ -23497,7 +23505,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
23497
23505
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
23498
23506
  name: string;
23499
23507
  archivingAt: string | null;
23500
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
23508
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
23501
23509
  statusEnteredAt: string | null;
23502
23510
  activityAt: string | null;
23503
23511
  scripts: {
@@ -23809,9 +23817,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
23809
23817
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
23810
23818
  status: z.ZodEnum<{
23811
23819
  error: "error";
23812
- initializing: "initializing";
23813
23820
  idle: "idle";
23814
23821
  running: "running";
23822
+ initializing: "initializing";
23815
23823
  closed: "closed";
23816
23824
  }>;
23817
23825
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -23911,9 +23919,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
23911
23919
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
23912
23920
  status: z.ZodEnum<{
23913
23921
  error: "error";
23914
- initializing: "initializing";
23915
23922
  idle: "idle";
23916
23923
  running: "running";
23924
+ initializing: "initializing";
23917
23925
  closed: "closed";
23918
23926
  }>;
23919
23927
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -24096,9 +24104,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
24096
24104
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
24097
24105
  status: z.ZodEnum<{
24098
24106
  error: "error";
24099
- initializing: "initializing";
24100
24107
  idle: "idle";
24101
24108
  running: "running";
24109
+ initializing: "initializing";
24102
24110
  closed: "closed";
24103
24111
  }>;
24104
24112
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -24282,9 +24290,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
24282
24290
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24283
24291
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
24284
24292
  status: z.ZodCatch<z.ZodEnum<{
24285
- running: "running";
24286
24293
  attention: "attention";
24287
24294
  needs_input: "needs_input";
24295
+ running: "running";
24288
24296
  failed: "failed";
24289
24297
  pending: "pending";
24290
24298
  done: "done";
@@ -24466,7 +24474,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
24466
24474
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
24467
24475
  name: string;
24468
24476
  archivingAt: string | null;
24469
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
24477
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
24470
24478
  statusEnteredAt: string | null;
24471
24479
  activityAt: string | null;
24472
24480
  scripts: {
@@ -24569,7 +24577,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
24569
24577
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
24570
24578
  name: string;
24571
24579
  archivingAt: string | null;
24572
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
24580
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
24573
24581
  statusEnteredAt: string | null;
24574
24582
  activityAt: string | null;
24575
24583
  scripts: {
@@ -24728,9 +24736,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
24728
24736
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24729
24737
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
24730
24738
  status: z.ZodCatch<z.ZodEnum<{
24731
- running: "running";
24732
24739
  attention: "attention";
24733
24740
  needs_input: "needs_input";
24741
+ running: "running";
24734
24742
  failed: "failed";
24735
24743
  pending: "pending";
24736
24744
  done: "done";
@@ -24912,7 +24920,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
24912
24920
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
24913
24921
  name: string;
24914
24922
  archivingAt: string | null;
24915
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
24923
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
24916
24924
  statusEnteredAt: string | null;
24917
24925
  activityAt: string | null;
24918
24926
  scripts: {
@@ -25015,7 +25023,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
25015
25023
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
25016
25024
  name: string;
25017
25025
  archivingAt: string | null;
25018
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
25026
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
25019
25027
  statusEnteredAt: string | null;
25020
25028
  activityAt: string | null;
25021
25029
  scripts: {
@@ -25190,9 +25198,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
25190
25198
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
25191
25199
  status: z.ZodEnum<{
25192
25200
  error: "error";
25193
- initializing: "initializing";
25194
25201
  idle: "idle";
25195
25202
  running: "running";
25203
+ initializing: "initializing";
25196
25204
  closed: "closed";
25197
25205
  }>;
25198
25206
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -25370,9 +25378,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
25370
25378
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
25371
25379
  status: z.ZodEnum<{
25372
25380
  error: "error";
25373
- initializing: "initializing";
25374
25381
  idle: "idle";
25375
25382
  running: "running";
25383
+ initializing: "initializing";
25376
25384
  closed: "closed";
25377
25385
  }>;
25378
25386
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -25544,9 +25552,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
25544
25552
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
25545
25553
  status: z.ZodEnum<{
25546
25554
  error: "error";
25547
- initializing: "initializing";
25548
25555
  idle: "idle";
25549
25556
  running: "running";
25557
+ initializing: "initializing";
25550
25558
  closed: "closed";
25551
25559
  }>;
25552
25560
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -25645,9 +25653,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
25645
25653
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
25646
25654
  status: z.ZodEnum<{
25647
25655
  error: "error";
25648
- initializing: "initializing";
25649
25656
  idle: "idle";
25650
25657
  running: "running";
25658
+ initializing: "initializing";
25651
25659
  closed: "closed";
25652
25660
  }>;
25653
25661
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -25729,9 +25737,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
25729
25737
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25730
25738
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
25731
25739
  status: z.ZodCatch<z.ZodEnum<{
25732
- running: "running";
25733
25740
  attention: "attention";
25734
25741
  needs_input: "needs_input";
25742
+ running: "running";
25735
25743
  failed: "failed";
25736
25744
  pending: "pending";
25737
25745
  done: "done";
@@ -25913,7 +25921,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
25913
25921
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
25914
25922
  name: string;
25915
25923
  archivingAt: string | null;
25916
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
25924
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
25917
25925
  statusEnteredAt: string | null;
25918
25926
  activityAt: string | null;
25919
25927
  scripts: {
@@ -26016,7 +26024,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
26016
26024
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
26017
26025
  name: string;
26018
26026
  archivingAt: string | null;
26019
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
26027
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
26020
26028
  statusEnteredAt: string | null;
26021
26029
  activityAt: string | null;
26022
26030
  scripts: {
@@ -26734,9 +26742,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
26734
26742
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
26735
26743
  status: z.ZodEnum<{
26736
26744
  error: "error";
26737
- initializing: "initializing";
26738
26745
  idle: "idle";
26739
26746
  running: "running";
26747
+ initializing: "initializing";
26740
26748
  closed: "closed";
26741
26749
  }>;
26742
26750
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -27767,9 +27775,9 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
27767
27775
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
27768
27776
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
27769
27777
  status: z.ZodCatch<z.ZodEnum<{
27770
- running: "running";
27771
27778
  attention: "attention";
27772
27779
  needs_input: "needs_input";
27780
+ running: "running";
27773
27781
  failed: "failed";
27774
27782
  pending: "pending";
27775
27783
  done: "done";
@@ -27951,7 +27959,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
27951
27959
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
27952
27960
  name: string;
27953
27961
  archivingAt: string | null;
27954
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
27962
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
27955
27963
  statusEnteredAt: string | null;
27956
27964
  activityAt: string | null;
27957
27965
  scripts: {
@@ -28054,7 +28062,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
28054
28062
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
28055
28063
  name: string;
28056
28064
  archivingAt: string | null;
28057
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
28065
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
28058
28066
  statusEnteredAt: string | null;
28059
28067
  activityAt: string | null;
28060
28068
  scripts: {
@@ -30650,9 +30658,9 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
30650
30658
  projectKeys: z.ZodOptional<z.ZodArray<z.ZodString>>;
30651
30659
  statuses: z.ZodOptional<z.ZodArray<z.ZodEnum<{
30652
30660
  error: "error";
30653
- initializing: "initializing";
30654
30661
  idle: "idle";
30655
30662
  running: "running";
30663
+ initializing: "initializing";
30656
30664
  closed: "closed";
30657
30665
  }>>>;
30658
30666
  includeArchived: z.ZodOptional<z.ZodBoolean>;
@@ -30686,9 +30694,9 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
30686
30694
  projectKeys: z.ZodOptional<z.ZodArray<z.ZodString>>;
30687
30695
  statuses: z.ZodOptional<z.ZodArray<z.ZodEnum<{
30688
30696
  error: "error";
30689
- initializing: "initializing";
30690
30697
  idle: "idle";
30691
30698
  running: "running";
30699
+ initializing: "initializing";
30692
30700
  closed: "closed";
30693
30701
  }>>>;
30694
30702
  includeArchived: z.ZodOptional<z.ZodBoolean>;
@@ -31087,6 +31095,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
31087
31095
  claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
31088
31096
  }, z.core.$strip>>;
31089
31097
  systemPrompt: z.ZodOptional<z.ZodString>;
31098
+ outputLanguage: z.ZodOptional<z.ZodString>;
31090
31099
  mcpServers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
31091
31100
  type: z.ZodLiteral<"stdio">;
31092
31101
  command: z.ZodString;
@@ -31271,6 +31280,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
31271
31280
  claude: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
31272
31281
  }, z.core.$strip>>>;
31273
31282
  systemPrompt: z.ZodOptional<z.ZodOptional<z.ZodString>>;
31283
+ outputLanguage: z.ZodOptional<z.ZodOptional<z.ZodString>>;
31274
31284
  mcpServers: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
31275
31285
  type: z.ZodLiteral<"stdio">;
31276
31286
  command: z.ZodString;
@@ -32666,9 +32676,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
32666
32676
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
32667
32677
  status: z.ZodEnum<{
32668
32678
  error: "error";
32669
- initializing: "initializing";
32670
32679
  idle: "idle";
32671
32680
  running: "running";
32681
+ initializing: "initializing";
32672
32682
  closed: "closed";
32673
32683
  }>;
32674
32684
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -32838,9 +32848,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
32838
32848
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32839
32849
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
32840
32850
  status: z.ZodCatch<z.ZodEnum<{
32841
- running: "running";
32842
32851
  attention: "attention";
32843
32852
  needs_input: "needs_input";
32853
+ running: "running";
32844
32854
  failed: "failed";
32845
32855
  pending: "pending";
32846
32856
  done: "done";
@@ -33022,7 +33032,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
33022
33032
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
33023
33033
  name: string;
33024
33034
  archivingAt: string | null;
33025
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
33035
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
33026
33036
  statusEnteredAt: string | null;
33027
33037
  activityAt: string | null;
33028
33038
  scripts: {
@@ -33125,7 +33135,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
33125
33135
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
33126
33136
  name: string;
33127
33137
  archivingAt: string | null;
33128
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
33138
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
33129
33139
  statusEnteredAt: string | null;
33130
33140
  activityAt: string | null;
33131
33141
  scripts: {
@@ -33437,9 +33447,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
33437
33447
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
33438
33448
  status: z.ZodEnum<{
33439
33449
  error: "error";
33440
- initializing: "initializing";
33441
33450
  idle: "idle";
33442
33451
  running: "running";
33452
+ initializing: "initializing";
33443
33453
  closed: "closed";
33444
33454
  }>;
33445
33455
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -33539,9 +33549,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
33539
33549
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
33540
33550
  status: z.ZodEnum<{
33541
33551
  error: "error";
33542
- initializing: "initializing";
33543
33552
  idle: "idle";
33544
33553
  running: "running";
33554
+ initializing: "initializing";
33545
33555
  closed: "closed";
33546
33556
  }>;
33547
33557
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -33724,9 +33734,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
33724
33734
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
33725
33735
  status: z.ZodEnum<{
33726
33736
  error: "error";
33727
- initializing: "initializing";
33728
33737
  idle: "idle";
33729
33738
  running: "running";
33739
+ initializing: "initializing";
33730
33740
  closed: "closed";
33731
33741
  }>;
33732
33742
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -33910,9 +33920,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
33910
33920
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33911
33921
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
33912
33922
  status: z.ZodCatch<z.ZodEnum<{
33913
- running: "running";
33914
33923
  attention: "attention";
33915
33924
  needs_input: "needs_input";
33925
+ running: "running";
33916
33926
  failed: "failed";
33917
33927
  pending: "pending";
33918
33928
  done: "done";
@@ -34094,7 +34104,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
34094
34104
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
34095
34105
  name: string;
34096
34106
  archivingAt: string | null;
34097
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
34107
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
34098
34108
  statusEnteredAt: string | null;
34099
34109
  activityAt: string | null;
34100
34110
  scripts: {
@@ -34197,7 +34207,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
34197
34207
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
34198
34208
  name: string;
34199
34209
  archivingAt: string | null;
34200
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
34210
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
34201
34211
  statusEnteredAt: string | null;
34202
34212
  activityAt: string | null;
34203
34213
  scripts: {
@@ -34356,9 +34366,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
34356
34366
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
34357
34367
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
34358
34368
  status: z.ZodCatch<z.ZodEnum<{
34359
- running: "running";
34360
34369
  attention: "attention";
34361
34370
  needs_input: "needs_input";
34371
+ running: "running";
34362
34372
  failed: "failed";
34363
34373
  pending: "pending";
34364
34374
  done: "done";
@@ -34540,7 +34550,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
34540
34550
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
34541
34551
  name: string;
34542
34552
  archivingAt: string | null;
34543
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
34553
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
34544
34554
  statusEnteredAt: string | null;
34545
34555
  activityAt: string | null;
34546
34556
  scripts: {
@@ -34643,7 +34653,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
34643
34653
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
34644
34654
  name: string;
34645
34655
  archivingAt: string | null;
34646
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
34656
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
34647
34657
  statusEnteredAt: string | null;
34648
34658
  activityAt: string | null;
34649
34659
  scripts: {
@@ -34818,9 +34828,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
34818
34828
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
34819
34829
  status: z.ZodEnum<{
34820
34830
  error: "error";
34821
- initializing: "initializing";
34822
34831
  idle: "idle";
34823
34832
  running: "running";
34833
+ initializing: "initializing";
34824
34834
  closed: "closed";
34825
34835
  }>;
34826
34836
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -34998,9 +35008,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
34998
35008
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
34999
35009
  status: z.ZodEnum<{
35000
35010
  error: "error";
35001
- initializing: "initializing";
35002
35011
  idle: "idle";
35003
35012
  running: "running";
35013
+ initializing: "initializing";
35004
35014
  closed: "closed";
35005
35015
  }>;
35006
35016
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -35172,9 +35182,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
35172
35182
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
35173
35183
  status: z.ZodEnum<{
35174
35184
  error: "error";
35175
- initializing: "initializing";
35176
35185
  idle: "idle";
35177
35186
  running: "running";
35187
+ initializing: "initializing";
35178
35188
  closed: "closed";
35179
35189
  }>;
35180
35190
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -35273,9 +35283,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
35273
35283
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
35274
35284
  status: z.ZodEnum<{
35275
35285
  error: "error";
35276
- initializing: "initializing";
35277
35286
  idle: "idle";
35278
35287
  running: "running";
35288
+ initializing: "initializing";
35279
35289
  closed: "closed";
35280
35290
  }>;
35281
35291
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -35357,9 +35367,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
35357
35367
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
35358
35368
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
35359
35369
  status: z.ZodCatch<z.ZodEnum<{
35360
- running: "running";
35361
35370
  attention: "attention";
35362
35371
  needs_input: "needs_input";
35372
+ running: "running";
35363
35373
  failed: "failed";
35364
35374
  pending: "pending";
35365
35375
  done: "done";
@@ -35541,7 +35551,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
35541
35551
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
35542
35552
  name: string;
35543
35553
  archivingAt: string | null;
35544
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
35554
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
35545
35555
  statusEnteredAt: string | null;
35546
35556
  activityAt: string | null;
35547
35557
  scripts: {
@@ -35644,7 +35654,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
35644
35654
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
35645
35655
  name: string;
35646
35656
  archivingAt: string | null;
35647
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
35657
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
35648
35658
  statusEnteredAt: string | null;
35649
35659
  activityAt: string | null;
35650
35660
  scripts: {
@@ -36362,9 +36372,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
36362
36372
  lastUserMessageAt: z.ZodNullable<z.ZodString>;
36363
36373
  status: z.ZodEnum<{
36364
36374
  error: "error";
36365
- initializing: "initializing";
36366
36375
  idle: "idle";
36367
36376
  running: "running";
36377
+ initializing: "initializing";
36368
36378
  closed: "closed";
36369
36379
  }>;
36370
36380
  capabilities: z.ZodType<AgentCapabilityFlags, unknown, z.core.$ZodTypeInternals<AgentCapabilityFlags, unknown>>;
@@ -37395,9 +37405,9 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
37395
37405
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
37396
37406
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
37397
37407
  status: z.ZodCatch<z.ZodEnum<{
37398
- running: "running";
37399
37408
  attention: "attention";
37400
37409
  needs_input: "needs_input";
37410
+ running: "running";
37401
37411
  failed: "failed";
37402
37412
  pending: "pending";
37403
37413
  done: "done";
@@ -37579,7 +37589,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
37579
37589
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
37580
37590
  name: string;
37581
37591
  archivingAt: string | null;
37582
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
37592
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
37583
37593
  statusEnteredAt: string | null;
37584
37594
  activityAt: string | null;
37585
37595
  scripts: {
@@ -37682,7 +37692,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
37682
37692
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
37683
37693
  name: string;
37684
37694
  archivingAt: string | null;
37685
- status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
37695
+ status: "attention" | "needs_input" | "running" | "failed" | "pending" | "done";
37686
37696
  statusEnteredAt: string | null;
37687
37697
  activityAt: string | null;
37688
37698
  scripts: {