@hyperdrive.bot/paseo-protocol 0.3.40 → 0.3.42

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.
@@ -1404,6 +1404,7 @@ declare const WorkspaceStateBucketSchema: z.ZodEnum<{
1404
1404
  attention: "attention";
1405
1405
  needs_input: "needs_input";
1406
1406
  failed: "failed";
1407
+ pending: "pending";
1407
1408
  done: "done";
1408
1409
  }>;
1409
1410
  export declare const FetchWorkspacesRequestMessageSchema: z.ZodObject<{
@@ -1747,6 +1748,7 @@ export declare const CreateAgentRequestMessageSchema: z.ZodObject<{
1747
1748
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1748
1749
  alwaysLoad: z.ZodOptional<z.ZodBoolean>;
1749
1750
  }, z.core.$strip>], "type">>>;
1751
+ allowedTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
1750
1752
  }, z.core.$strip>;
1751
1753
  env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1752
1754
  workspaceId: z.ZodOptional<z.ZodString>;
@@ -1935,6 +1937,7 @@ export declare const ResumeAgentRequestMessageSchema: z.ZodObject<{
1935
1937
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1936
1938
  alwaysLoad: z.ZodOptional<z.ZodBoolean>;
1937
1939
  }, z.core.$strip>], "type">>>>;
1940
+ allowedTools: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
1938
1941
  }, z.core.$strip>>;
1939
1942
  requestId: z.ZodString;
1940
1943
  }, z.core.$strip>;
@@ -3951,6 +3954,7 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
3951
3954
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3952
3955
  alwaysLoad: z.ZodOptional<z.ZodBoolean>;
3953
3956
  }, z.core.$strip>], "type">>>;
3957
+ allowedTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
3954
3958
  }, z.core.$strip>;
3955
3959
  env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3956
3960
  workspaceId: z.ZodOptional<z.ZodString>;
@@ -4134,6 +4138,7 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
4134
4138
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
4135
4139
  alwaysLoad: z.ZodOptional<z.ZodBoolean>;
4136
4140
  }, z.core.$strip>], "type">>>>;
4141
+ allowedTools: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
4137
4142
  }, z.core.$strip>>;
4138
4143
  requestId: z.ZodString;
4139
4144
  }, z.core.$strip>, z.ZodObject<{
@@ -6313,13 +6318,14 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodPipe<z.ZodObject<{
6313
6318
  name: z.ZodString;
6314
6319
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6315
6320
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
6316
- status: z.ZodEnum<{
6321
+ status: z.ZodCatch<z.ZodEnum<{
6317
6322
  running: "running";
6318
6323
  attention: "attention";
6319
6324
  needs_input: "needs_input";
6320
6325
  failed: "failed";
6326
+ pending: "pending";
6321
6327
  done: "done";
6322
- }>;
6328
+ }>>;
6323
6329
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
6324
6330
  activityAt: z.ZodNullable<z.ZodString>;
6325
6331
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -6497,7 +6503,7 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodPipe<z.ZodObject<{
6497
6503
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
6498
6504
  name: string;
6499
6505
  archivingAt: string | null;
6500
- status: "running" | "attention" | "needs_input" | "failed" | "done";
6506
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
6501
6507
  statusEnteredAt: string | null;
6502
6508
  activityAt: string | null;
6503
6509
  scripts: {
@@ -6600,7 +6606,7 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodPipe<z.ZodObject<{
6600
6606
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
6601
6607
  name: string;
6602
6608
  archivingAt: string | null;
6603
- status: "running" | "attention" | "needs_input" | "failed" | "done";
6609
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
6604
6610
  statusEnteredAt: string | null;
6605
6611
  activityAt: string | null;
6606
6612
  scripts: {
@@ -7588,13 +7594,14 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
7588
7594
  name: z.ZodString;
7589
7595
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7590
7596
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
7591
- status: z.ZodEnum<{
7597
+ status: z.ZodCatch<z.ZodEnum<{
7592
7598
  running: "running";
7593
7599
  attention: "attention";
7594
7600
  needs_input: "needs_input";
7595
7601
  failed: "failed";
7602
+ pending: "pending";
7596
7603
  done: "done";
7597
- }>;
7604
+ }>>;
7598
7605
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
7599
7606
  activityAt: z.ZodNullable<z.ZodString>;
7600
7607
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -7772,7 +7779,7 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
7772
7779
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
7773
7780
  name: string;
7774
7781
  archivingAt: string | null;
7775
- status: "running" | "attention" | "needs_input" | "failed" | "done";
7782
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
7776
7783
  statusEnteredAt: string | null;
7777
7784
  activityAt: string | null;
7778
7785
  scripts: {
@@ -7875,7 +7882,7 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
7875
7882
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
7876
7883
  name: string;
7877
7884
  archivingAt: string | null;
7878
- status: "running" | "attention" | "needs_input" | "failed" | "done";
7885
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
7879
7886
  statusEnteredAt: string | null;
7880
7887
  activityAt: string | null;
7881
7888
  scripts: {
@@ -8014,13 +8021,14 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
8014
8021
  name: z.ZodString;
8015
8022
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8016
8023
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
8017
- status: z.ZodEnum<{
8024
+ status: z.ZodCatch<z.ZodEnum<{
8018
8025
  running: "running";
8019
8026
  attention: "attention";
8020
8027
  needs_input: "needs_input";
8021
8028
  failed: "failed";
8029
+ pending: "pending";
8022
8030
  done: "done";
8023
- }>;
8031
+ }>>;
8024
8032
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
8025
8033
  activityAt: z.ZodNullable<z.ZodString>;
8026
8034
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -8198,7 +8206,7 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
8198
8206
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
8199
8207
  name: string;
8200
8208
  archivingAt: string | null;
8201
- status: "running" | "attention" | "needs_input" | "failed" | "done";
8209
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
8202
8210
  statusEnteredAt: string | null;
8203
8211
  activityAt: string | null;
8204
8212
  scripts: {
@@ -8301,7 +8309,7 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
8301
8309
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
8302
8310
  name: string;
8303
8311
  archivingAt: string | null;
8304
- status: "running" | "attention" | "needs_input" | "failed" | "done";
8312
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
8305
8313
  statusEnteredAt: string | null;
8306
8314
  activityAt: string | null;
8307
8315
  scripts: {
@@ -8562,13 +8570,14 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
8562
8570
  name: z.ZodString;
8563
8571
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8564
8572
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
8565
- status: z.ZodEnum<{
8573
+ status: z.ZodCatch<z.ZodEnum<{
8566
8574
  running: "running";
8567
8575
  attention: "attention";
8568
8576
  needs_input: "needs_input";
8569
8577
  failed: "failed";
8578
+ pending: "pending";
8570
8579
  done: "done";
8571
- }>;
8580
+ }>>;
8572
8581
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
8573
8582
  activityAt: z.ZodNullable<z.ZodString>;
8574
8583
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -8746,7 +8755,7 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
8746
8755
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
8747
8756
  name: string;
8748
8757
  archivingAt: string | null;
8749
- status: "running" | "attention" | "needs_input" | "failed" | "done";
8758
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
8750
8759
  statusEnteredAt: string | null;
8751
8760
  activityAt: string | null;
8752
8761
  scripts: {
@@ -8849,7 +8858,7 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
8849
8858
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
8850
8859
  name: string;
8851
8860
  archivingAt: string | null;
8852
- status: "running" | "attention" | "needs_input" | "failed" | "done";
8861
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
8853
8862
  statusEnteredAt: string | null;
8854
8863
  activityAt: string | null;
8855
8864
  scripts: {
@@ -9609,13 +9618,14 @@ export declare const WorkspaceCreateResponseSchema: z.ZodObject<{
9609
9618
  name: z.ZodString;
9610
9619
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9611
9620
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
9612
- status: z.ZodEnum<{
9621
+ status: z.ZodCatch<z.ZodEnum<{
9613
9622
  running: "running";
9614
9623
  attention: "attention";
9615
9624
  needs_input: "needs_input";
9616
9625
  failed: "failed";
9626
+ pending: "pending";
9617
9627
  done: "done";
9618
- }>;
9628
+ }>>;
9619
9629
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
9620
9630
  activityAt: z.ZodNullable<z.ZodString>;
9621
9631
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -9793,7 +9803,7 @@ export declare const WorkspaceCreateResponseSchema: z.ZodObject<{
9793
9803
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
9794
9804
  name: string;
9795
9805
  archivingAt: string | null;
9796
- status: "running" | "attention" | "needs_input" | "failed" | "done";
9806
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
9797
9807
  statusEnteredAt: string | null;
9798
9808
  activityAt: string | null;
9799
9809
  scripts: {
@@ -9896,7 +9906,7 @@ export declare const WorkspaceCreateResponseSchema: z.ZodObject<{
9896
9906
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
9897
9907
  name: string;
9898
9908
  archivingAt: string | null;
9899
- status: "running" | "attention" | "needs_input" | "failed" | "done";
9909
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
9900
9910
  statusEnteredAt: string | null;
9901
9911
  activityAt: string | null;
9902
9912
  scripts: {
@@ -11502,13 +11512,14 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
11502
11512
  name: z.ZodString;
11503
11513
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11504
11514
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
11505
- status: z.ZodEnum<{
11515
+ status: z.ZodCatch<z.ZodEnum<{
11506
11516
  running: "running";
11507
11517
  attention: "attention";
11508
11518
  needs_input: "needs_input";
11509
11519
  failed: "failed";
11520
+ pending: "pending";
11510
11521
  done: "done";
11511
- }>;
11522
+ }>>;
11512
11523
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
11513
11524
  activityAt: z.ZodNullable<z.ZodString>;
11514
11525
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -11686,7 +11697,7 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
11686
11697
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
11687
11698
  name: string;
11688
11699
  archivingAt: string | null;
11689
- status: "running" | "attention" | "needs_input" | "failed" | "done";
11700
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
11690
11701
  statusEnteredAt: string | null;
11691
11702
  activityAt: string | null;
11692
11703
  scripts: {
@@ -11789,7 +11800,7 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
11789
11800
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
11790
11801
  name: string;
11791
11802
  archivingAt: string | null;
11792
- status: "running" | "attention" | "needs_input" | "failed" | "done";
11803
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
11793
11804
  statusEnteredAt: string | null;
11794
11805
  activityAt: string | null;
11795
11806
  scripts: {
@@ -13047,13 +13058,14 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
13047
13058
  name: z.ZodString;
13048
13059
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13049
13060
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
13050
- status: z.ZodEnum<{
13061
+ status: z.ZodCatch<z.ZodEnum<{
13051
13062
  running: "running";
13052
13063
  attention: "attention";
13053
13064
  needs_input: "needs_input";
13054
13065
  failed: "failed";
13066
+ pending: "pending";
13055
13067
  done: "done";
13056
- }>;
13068
+ }>>;
13057
13069
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
13058
13070
  activityAt: z.ZodNullable<z.ZodString>;
13059
13071
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -13231,7 +13243,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
13231
13243
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
13232
13244
  name: string;
13233
13245
  archivingAt: string | null;
13234
- status: "running" | "attention" | "needs_input" | "failed" | "done";
13246
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
13235
13247
  statusEnteredAt: string | null;
13236
13248
  activityAt: string | null;
13237
13249
  scripts: {
@@ -13334,7 +13346,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
13334
13346
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
13335
13347
  name: string;
13336
13348
  archivingAt: string | null;
13337
- status: "running" | "attention" | "needs_input" | "failed" | "done";
13349
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
13338
13350
  statusEnteredAt: string | null;
13339
13351
  activityAt: string | null;
13340
13352
  scripts: {
@@ -14118,13 +14130,14 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
14118
14130
  name: z.ZodString;
14119
14131
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14120
14132
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
14121
- status: z.ZodEnum<{
14133
+ status: z.ZodCatch<z.ZodEnum<{
14122
14134
  running: "running";
14123
14135
  attention: "attention";
14124
14136
  needs_input: "needs_input";
14125
14137
  failed: "failed";
14138
+ pending: "pending";
14126
14139
  done: "done";
14127
- }>;
14140
+ }>>;
14128
14141
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
14129
14142
  activityAt: z.ZodNullable<z.ZodString>;
14130
14143
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -14302,7 +14315,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
14302
14315
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
14303
14316
  name: string;
14304
14317
  archivingAt: string | null;
14305
- status: "running" | "attention" | "needs_input" | "failed" | "done";
14318
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
14306
14319
  statusEnteredAt: string | null;
14307
14320
  activityAt: string | null;
14308
14321
  scripts: {
@@ -14405,7 +14418,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
14405
14418
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
14406
14419
  name: string;
14407
14420
  archivingAt: string | null;
14408
- status: "running" | "attention" | "needs_input" | "failed" | "done";
14421
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
14409
14422
  statusEnteredAt: string | null;
14410
14423
  activityAt: string | null;
14411
14424
  scripts: {
@@ -14563,13 +14576,14 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
14563
14576
  name: z.ZodString;
14564
14577
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14565
14578
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
14566
- status: z.ZodEnum<{
14579
+ status: z.ZodCatch<z.ZodEnum<{
14567
14580
  running: "running";
14568
14581
  attention: "attention";
14569
14582
  needs_input: "needs_input";
14570
14583
  failed: "failed";
14584
+ pending: "pending";
14571
14585
  done: "done";
14572
- }>;
14586
+ }>>;
14573
14587
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
14574
14588
  activityAt: z.ZodNullable<z.ZodString>;
14575
14589
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -14747,7 +14761,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
14747
14761
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
14748
14762
  name: string;
14749
14763
  archivingAt: string | null;
14750
- status: "running" | "attention" | "needs_input" | "failed" | "done";
14764
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
14751
14765
  statusEnteredAt: string | null;
14752
14766
  activityAt: string | null;
14753
14767
  scripts: {
@@ -14850,7 +14864,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
14850
14864
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
14851
14865
  name: string;
14852
14866
  archivingAt: string | null;
14853
- status: "running" | "attention" | "needs_input" | "failed" | "done";
14867
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
14854
14868
  statusEnteredAt: string | null;
14855
14869
  activityAt: string | null;
14856
14870
  scripts: {
@@ -15563,13 +15577,14 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
15563
15577
  name: z.ZodString;
15564
15578
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15565
15579
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
15566
- status: z.ZodEnum<{
15580
+ status: z.ZodCatch<z.ZodEnum<{
15567
15581
  running: "running";
15568
15582
  attention: "attention";
15569
15583
  needs_input: "needs_input";
15570
15584
  failed: "failed";
15585
+ pending: "pending";
15571
15586
  done: "done";
15572
- }>;
15587
+ }>>;
15573
15588
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
15574
15589
  activityAt: z.ZodNullable<z.ZodString>;
15575
15590
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -15747,7 +15762,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
15747
15762
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
15748
15763
  name: string;
15749
15764
  archivingAt: string | null;
15750
- status: "running" | "attention" | "needs_input" | "failed" | "done";
15765
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
15751
15766
  statusEnteredAt: string | null;
15752
15767
  activityAt: string | null;
15753
15768
  scripts: {
@@ -15850,7 +15865,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
15850
15865
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
15851
15866
  name: string;
15852
15867
  archivingAt: string | null;
15853
- status: "running" | "attention" | "needs_input" | "failed" | "done";
15868
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
15854
15869
  statusEnteredAt: string | null;
15855
15870
  activityAt: string | null;
15856
15871
  scripts: {
@@ -17567,13 +17582,14 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
17567
17582
  name: z.ZodString;
17568
17583
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17569
17584
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
17570
- status: z.ZodEnum<{
17585
+ status: z.ZodCatch<z.ZodEnum<{
17571
17586
  running: "running";
17572
17587
  attention: "attention";
17573
17588
  needs_input: "needs_input";
17574
17589
  failed: "failed";
17590
+ pending: "pending";
17575
17591
  done: "done";
17576
- }>;
17592
+ }>>;
17577
17593
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
17578
17594
  activityAt: z.ZodNullable<z.ZodString>;
17579
17595
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -17751,7 +17767,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
17751
17767
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
17752
17768
  name: string;
17753
17769
  archivingAt: string | null;
17754
- status: "running" | "attention" | "needs_input" | "failed" | "done";
17770
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
17755
17771
  statusEnteredAt: string | null;
17756
17772
  activityAt: string | null;
17757
17773
  scripts: {
@@ -17854,7 +17870,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
17854
17870
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
17855
17871
  name: string;
17856
17872
  archivingAt: string | null;
17857
- status: "running" | "attention" | "needs_input" | "failed" | "done";
17873
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
17858
17874
  statusEnteredAt: string | null;
17859
17875
  activityAt: string | null;
17860
17876
  scripts: {
@@ -21219,6 +21235,7 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
21219
21235
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
21220
21236
  alwaysLoad: z.ZodOptional<z.ZodBoolean>;
21221
21237
  }, z.core.$strip>], "type">>>;
21238
+ allowedTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
21222
21239
  }, z.core.$strip>;
21223
21240
  env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
21224
21241
  workspaceId: z.ZodOptional<z.ZodString>;
@@ -21402,6 +21419,7 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
21402
21419
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
21403
21420
  alwaysLoad: z.ZodOptional<z.ZodBoolean>;
21404
21421
  }, z.core.$strip>], "type">>>>;
21422
+ allowedTools: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
21405
21423
  }, z.core.$strip>>;
21406
21424
  requestId: z.ZodString;
21407
21425
  }, z.core.$strip>, z.ZodObject<{
@@ -22948,13 +22966,14 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
22948
22966
  name: z.ZodString;
22949
22967
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22950
22968
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
22951
- status: z.ZodEnum<{
22969
+ status: z.ZodCatch<z.ZodEnum<{
22952
22970
  running: "running";
22953
22971
  attention: "attention";
22954
22972
  needs_input: "needs_input";
22955
22973
  failed: "failed";
22974
+ pending: "pending";
22956
22975
  done: "done";
22957
- }>;
22976
+ }>>;
22958
22977
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
22959
22978
  activityAt: z.ZodNullable<z.ZodString>;
22960
22979
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -23132,7 +23151,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
23132
23151
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
23133
23152
  name: string;
23134
23153
  archivingAt: string | null;
23135
- status: "running" | "attention" | "needs_input" | "failed" | "done";
23154
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
23136
23155
  statusEnteredAt: string | null;
23137
23156
  activityAt: string | null;
23138
23157
  scripts: {
@@ -23235,7 +23254,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
23235
23254
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
23236
23255
  name: string;
23237
23256
  archivingAt: string | null;
23238
- status: "running" | "attention" | "needs_input" | "failed" | "done";
23257
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
23239
23258
  statusEnteredAt: string | null;
23240
23259
  activityAt: string | null;
23241
23260
  scripts: {
@@ -24019,13 +24038,14 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
24019
24038
  name: z.ZodString;
24020
24039
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24021
24040
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
24022
- status: z.ZodEnum<{
24041
+ status: z.ZodCatch<z.ZodEnum<{
24023
24042
  running: "running";
24024
24043
  attention: "attention";
24025
24044
  needs_input: "needs_input";
24026
24045
  failed: "failed";
24046
+ pending: "pending";
24027
24047
  done: "done";
24028
- }>;
24048
+ }>>;
24029
24049
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
24030
24050
  activityAt: z.ZodNullable<z.ZodString>;
24031
24051
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -24203,7 +24223,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
24203
24223
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
24204
24224
  name: string;
24205
24225
  archivingAt: string | null;
24206
- status: "running" | "attention" | "needs_input" | "failed" | "done";
24226
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
24207
24227
  statusEnteredAt: string | null;
24208
24228
  activityAt: string | null;
24209
24229
  scripts: {
@@ -24306,7 +24326,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
24306
24326
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
24307
24327
  name: string;
24308
24328
  archivingAt: string | null;
24309
- status: "running" | "attention" | "needs_input" | "failed" | "done";
24329
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
24310
24330
  statusEnteredAt: string | null;
24311
24331
  activityAt: string | null;
24312
24332
  scripts: {
@@ -24464,13 +24484,14 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
24464
24484
  name: z.ZodString;
24465
24485
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24466
24486
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
24467
- status: z.ZodEnum<{
24487
+ status: z.ZodCatch<z.ZodEnum<{
24468
24488
  running: "running";
24469
24489
  attention: "attention";
24470
24490
  needs_input: "needs_input";
24471
24491
  failed: "failed";
24492
+ pending: "pending";
24472
24493
  done: "done";
24473
- }>;
24494
+ }>>;
24474
24495
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
24475
24496
  activityAt: z.ZodNullable<z.ZodString>;
24476
24497
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -24648,7 +24669,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
24648
24669
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
24649
24670
  name: string;
24650
24671
  archivingAt: string | null;
24651
- status: "running" | "attention" | "needs_input" | "failed" | "done";
24672
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
24652
24673
  statusEnteredAt: string | null;
24653
24674
  activityAt: string | null;
24654
24675
  scripts: {
@@ -24751,7 +24772,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
24751
24772
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
24752
24773
  name: string;
24753
24774
  archivingAt: string | null;
24754
- status: "running" | "attention" | "needs_input" | "failed" | "done";
24775
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
24755
24776
  statusEnteredAt: string | null;
24756
24777
  activityAt: string | null;
24757
24778
  scripts: {
@@ -25464,13 +25485,14 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
25464
25485
  name: z.ZodString;
25465
25486
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25466
25487
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
25467
- status: z.ZodEnum<{
25488
+ status: z.ZodCatch<z.ZodEnum<{
25468
25489
  running: "running";
25469
25490
  attention: "attention";
25470
25491
  needs_input: "needs_input";
25471
25492
  failed: "failed";
25493
+ pending: "pending";
25472
25494
  done: "done";
25473
- }>;
25495
+ }>>;
25474
25496
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
25475
25497
  activityAt: z.ZodNullable<z.ZodString>;
25476
25498
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -25648,7 +25670,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
25648
25670
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
25649
25671
  name: string;
25650
25672
  archivingAt: string | null;
25651
- status: "running" | "attention" | "needs_input" | "failed" | "done";
25673
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
25652
25674
  statusEnteredAt: string | null;
25653
25675
  activityAt: string | null;
25654
25676
  scripts: {
@@ -25751,7 +25773,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
25751
25773
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
25752
25774
  name: string;
25753
25775
  archivingAt: string | null;
25754
- status: "running" | "attention" | "needs_input" | "failed" | "done";
25776
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
25755
25777
  statusEnteredAt: string | null;
25756
25778
  activityAt: string | null;
25757
25779
  scripts: {
@@ -27468,13 +27490,14 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
27468
27490
  name: z.ZodString;
27469
27491
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
27470
27492
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
27471
- status: z.ZodEnum<{
27493
+ status: z.ZodCatch<z.ZodEnum<{
27472
27494
  running: "running";
27473
27495
  attention: "attention";
27474
27496
  needs_input: "needs_input";
27475
27497
  failed: "failed";
27498
+ pending: "pending";
27476
27499
  done: "done";
27477
- }>;
27500
+ }>>;
27478
27501
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
27479
27502
  activityAt: z.ZodNullable<z.ZodString>;
27480
27503
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -27652,7 +27675,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
27652
27675
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
27653
27676
  name: string;
27654
27677
  archivingAt: string | null;
27655
- status: "running" | "attention" | "needs_input" | "failed" | "done";
27678
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
27656
27679
  statusEnteredAt: string | null;
27657
27680
  activityAt: string | null;
27658
27681
  scripts: {
@@ -27755,7 +27778,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
27755
27778
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
27756
27779
  name: string;
27757
27780
  archivingAt: string | null;
27758
- status: "running" | "attention" | "needs_input" | "failed" | "done";
27781
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
27759
27782
  statusEnteredAt: string | null;
27760
27783
  activityAt: string | null;
27761
27784
  scripts: {
@@ -30783,6 +30806,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
30783
30806
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
30784
30807
  alwaysLoad: z.ZodOptional<z.ZodBoolean>;
30785
30808
  }, z.core.$strip>], "type">>>;
30809
+ allowedTools: z.ZodOptional<z.ZodArray<z.ZodString>>;
30786
30810
  }, z.core.$strip>;
30787
30811
  env: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
30788
30812
  workspaceId: z.ZodOptional<z.ZodString>;
@@ -30966,6 +30990,7 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
30966
30990
  headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
30967
30991
  alwaysLoad: z.ZodOptional<z.ZodBoolean>;
30968
30992
  }, z.core.$strip>], "type">>>>;
30993
+ allowedTools: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
30969
30994
  }, z.core.$strip>>;
30970
30995
  requestId: z.ZodString;
30971
30996
  }, z.core.$strip>, z.ZodObject<{
@@ -32514,13 +32539,14 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
32514
32539
  name: z.ZodString;
32515
32540
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32516
32541
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
32517
- status: z.ZodEnum<{
32542
+ status: z.ZodCatch<z.ZodEnum<{
32518
32543
  running: "running";
32519
32544
  attention: "attention";
32520
32545
  needs_input: "needs_input";
32521
32546
  failed: "failed";
32547
+ pending: "pending";
32522
32548
  done: "done";
32523
- }>;
32549
+ }>>;
32524
32550
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
32525
32551
  activityAt: z.ZodNullable<z.ZodString>;
32526
32552
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -32698,7 +32724,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
32698
32724
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
32699
32725
  name: string;
32700
32726
  archivingAt: string | null;
32701
- status: "running" | "attention" | "needs_input" | "failed" | "done";
32727
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
32702
32728
  statusEnteredAt: string | null;
32703
32729
  activityAt: string | null;
32704
32730
  scripts: {
@@ -32801,7 +32827,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
32801
32827
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
32802
32828
  name: string;
32803
32829
  archivingAt: string | null;
32804
- status: "running" | "attention" | "needs_input" | "failed" | "done";
32830
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
32805
32831
  statusEnteredAt: string | null;
32806
32832
  activityAt: string | null;
32807
32833
  scripts: {
@@ -33585,13 +33611,14 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
33585
33611
  name: z.ZodString;
33586
33612
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33587
33613
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
33588
- status: z.ZodEnum<{
33614
+ status: z.ZodCatch<z.ZodEnum<{
33589
33615
  running: "running";
33590
33616
  attention: "attention";
33591
33617
  needs_input: "needs_input";
33592
33618
  failed: "failed";
33619
+ pending: "pending";
33593
33620
  done: "done";
33594
- }>;
33621
+ }>>;
33595
33622
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
33596
33623
  activityAt: z.ZodNullable<z.ZodString>;
33597
33624
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -33769,7 +33796,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
33769
33796
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
33770
33797
  name: string;
33771
33798
  archivingAt: string | null;
33772
- status: "running" | "attention" | "needs_input" | "failed" | "done";
33799
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
33773
33800
  statusEnteredAt: string | null;
33774
33801
  activityAt: string | null;
33775
33802
  scripts: {
@@ -33872,7 +33899,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
33872
33899
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
33873
33900
  name: string;
33874
33901
  archivingAt: string | null;
33875
- status: "running" | "attention" | "needs_input" | "failed" | "done";
33902
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
33876
33903
  statusEnteredAt: string | null;
33877
33904
  activityAt: string | null;
33878
33905
  scripts: {
@@ -34030,13 +34057,14 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
34030
34057
  name: z.ZodString;
34031
34058
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
34032
34059
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
34033
- status: z.ZodEnum<{
34060
+ status: z.ZodCatch<z.ZodEnum<{
34034
34061
  running: "running";
34035
34062
  attention: "attention";
34036
34063
  needs_input: "needs_input";
34037
34064
  failed: "failed";
34065
+ pending: "pending";
34038
34066
  done: "done";
34039
- }>;
34067
+ }>>;
34040
34068
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
34041
34069
  activityAt: z.ZodNullable<z.ZodString>;
34042
34070
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -34214,7 +34242,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
34214
34242
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
34215
34243
  name: string;
34216
34244
  archivingAt: string | null;
34217
- status: "running" | "attention" | "needs_input" | "failed" | "done";
34245
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
34218
34246
  statusEnteredAt: string | null;
34219
34247
  activityAt: string | null;
34220
34248
  scripts: {
@@ -34317,7 +34345,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
34317
34345
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
34318
34346
  name: string;
34319
34347
  archivingAt: string | null;
34320
- status: "running" | "attention" | "needs_input" | "failed" | "done";
34348
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
34321
34349
  statusEnteredAt: string | null;
34322
34350
  activityAt: string | null;
34323
34351
  scripts: {
@@ -35030,13 +35058,14 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
35030
35058
  name: z.ZodString;
35031
35059
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
35032
35060
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
35033
- status: z.ZodEnum<{
35061
+ status: z.ZodCatch<z.ZodEnum<{
35034
35062
  running: "running";
35035
35063
  attention: "attention";
35036
35064
  needs_input: "needs_input";
35037
35065
  failed: "failed";
35066
+ pending: "pending";
35038
35067
  done: "done";
35039
- }>;
35068
+ }>>;
35040
35069
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
35041
35070
  activityAt: z.ZodNullable<z.ZodString>;
35042
35071
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -35214,7 +35243,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
35214
35243
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
35215
35244
  name: string;
35216
35245
  archivingAt: string | null;
35217
- status: "running" | "attention" | "needs_input" | "failed" | "done";
35246
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
35218
35247
  statusEnteredAt: string | null;
35219
35248
  activityAt: string | null;
35220
35249
  scripts: {
@@ -35317,7 +35346,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
35317
35346
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
35318
35347
  name: string;
35319
35348
  archivingAt: string | null;
35320
- status: "running" | "attention" | "needs_input" | "failed" | "done";
35349
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
35321
35350
  statusEnteredAt: string | null;
35322
35351
  activityAt: string | null;
35323
35352
  scripts: {
@@ -37034,13 +37063,14 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
37034
37063
  name: z.ZodString;
37035
37064
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
37036
37065
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
37037
- status: z.ZodEnum<{
37066
+ status: z.ZodCatch<z.ZodEnum<{
37038
37067
  running: "running";
37039
37068
  attention: "attention";
37040
37069
  needs_input: "needs_input";
37041
37070
  failed: "failed";
37071
+ pending: "pending";
37042
37072
  done: "done";
37043
- }>;
37073
+ }>>;
37044
37074
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
37045
37075
  activityAt: z.ZodNullable<z.ZodString>;
37046
37076
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -37218,7 +37248,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
37218
37248
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
37219
37249
  name: string;
37220
37250
  archivingAt: string | null;
37221
- status: "running" | "attention" | "needs_input" | "failed" | "done";
37251
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
37222
37252
  statusEnteredAt: string | null;
37223
37253
  activityAt: string | null;
37224
37254
  scripts: {
@@ -37321,7 +37351,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
37321
37351
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
37322
37352
  name: string;
37323
37353
  archivingAt: string | null;
37324
- status: "running" | "attention" | "needs_input" | "failed" | "done";
37354
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
37325
37355
  statusEnteredAt: string | null;
37326
37356
  activityAt: string | null;
37327
37357
  scripts: {