@hyperdrive.bot/paseo-protocol 0.3.41 → 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<{
@@ -6317,13 +6318,14 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodPipe<z.ZodObject<{
6317
6318
  name: z.ZodString;
6318
6319
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6319
6320
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
6320
- status: z.ZodEnum<{
6321
+ status: z.ZodCatch<z.ZodEnum<{
6321
6322
  running: "running";
6322
6323
  attention: "attention";
6323
6324
  needs_input: "needs_input";
6324
6325
  failed: "failed";
6326
+ pending: "pending";
6325
6327
  done: "done";
6326
- }>;
6328
+ }>>;
6327
6329
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
6328
6330
  activityAt: z.ZodNullable<z.ZodString>;
6329
6331
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -6501,7 +6503,7 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodPipe<z.ZodObject<{
6501
6503
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
6502
6504
  name: string;
6503
6505
  archivingAt: string | null;
6504
- status: "running" | "attention" | "needs_input" | "failed" | "done";
6506
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
6505
6507
  statusEnteredAt: string | null;
6506
6508
  activityAt: string | null;
6507
6509
  scripts: {
@@ -6604,7 +6606,7 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodPipe<z.ZodObject<{
6604
6606
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
6605
6607
  name: string;
6606
6608
  archivingAt: string | null;
6607
- status: "running" | "attention" | "needs_input" | "failed" | "done";
6609
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
6608
6610
  statusEnteredAt: string | null;
6609
6611
  activityAt: string | null;
6610
6612
  scripts: {
@@ -7592,13 +7594,14 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
7592
7594
  name: z.ZodString;
7593
7595
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7594
7596
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
7595
- status: z.ZodEnum<{
7597
+ status: z.ZodCatch<z.ZodEnum<{
7596
7598
  running: "running";
7597
7599
  attention: "attention";
7598
7600
  needs_input: "needs_input";
7599
7601
  failed: "failed";
7602
+ pending: "pending";
7600
7603
  done: "done";
7601
- }>;
7604
+ }>>;
7602
7605
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
7603
7606
  activityAt: z.ZodNullable<z.ZodString>;
7604
7607
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -7776,7 +7779,7 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
7776
7779
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
7777
7780
  name: string;
7778
7781
  archivingAt: string | null;
7779
- status: "running" | "attention" | "needs_input" | "failed" | "done";
7782
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
7780
7783
  statusEnteredAt: string | null;
7781
7784
  activityAt: string | null;
7782
7785
  scripts: {
@@ -7879,7 +7882,7 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
7879
7882
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
7880
7883
  name: string;
7881
7884
  archivingAt: string | null;
7882
- status: "running" | "attention" | "needs_input" | "failed" | "done";
7885
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
7883
7886
  statusEnteredAt: string | null;
7884
7887
  activityAt: string | null;
7885
7888
  scripts: {
@@ -8018,13 +8021,14 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
8018
8021
  name: z.ZodString;
8019
8022
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8020
8023
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
8021
- status: z.ZodEnum<{
8024
+ status: z.ZodCatch<z.ZodEnum<{
8022
8025
  running: "running";
8023
8026
  attention: "attention";
8024
8027
  needs_input: "needs_input";
8025
8028
  failed: "failed";
8029
+ pending: "pending";
8026
8030
  done: "done";
8027
- }>;
8031
+ }>>;
8028
8032
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
8029
8033
  activityAt: z.ZodNullable<z.ZodString>;
8030
8034
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -8202,7 +8206,7 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
8202
8206
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
8203
8207
  name: string;
8204
8208
  archivingAt: string | null;
8205
- status: "running" | "attention" | "needs_input" | "failed" | "done";
8209
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
8206
8210
  statusEnteredAt: string | null;
8207
8211
  activityAt: string | null;
8208
8212
  scripts: {
@@ -8305,7 +8309,7 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
8305
8309
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
8306
8310
  name: string;
8307
8311
  archivingAt: string | null;
8308
- status: "running" | "attention" | "needs_input" | "failed" | "done";
8312
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
8309
8313
  statusEnteredAt: string | null;
8310
8314
  activityAt: string | null;
8311
8315
  scripts: {
@@ -8566,13 +8570,14 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
8566
8570
  name: z.ZodString;
8567
8571
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8568
8572
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
8569
- status: z.ZodEnum<{
8573
+ status: z.ZodCatch<z.ZodEnum<{
8570
8574
  running: "running";
8571
8575
  attention: "attention";
8572
8576
  needs_input: "needs_input";
8573
8577
  failed: "failed";
8578
+ pending: "pending";
8574
8579
  done: "done";
8575
- }>;
8580
+ }>>;
8576
8581
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
8577
8582
  activityAt: z.ZodNullable<z.ZodString>;
8578
8583
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -8750,7 +8755,7 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
8750
8755
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
8751
8756
  name: string;
8752
8757
  archivingAt: string | null;
8753
- status: "running" | "attention" | "needs_input" | "failed" | "done";
8758
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
8754
8759
  statusEnteredAt: string | null;
8755
8760
  activityAt: string | null;
8756
8761
  scripts: {
@@ -8853,7 +8858,7 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
8853
8858
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
8854
8859
  name: string;
8855
8860
  archivingAt: string | null;
8856
- status: "running" | "attention" | "needs_input" | "failed" | "done";
8861
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
8857
8862
  statusEnteredAt: string | null;
8858
8863
  activityAt: string | null;
8859
8864
  scripts: {
@@ -9613,13 +9618,14 @@ export declare const WorkspaceCreateResponseSchema: z.ZodObject<{
9613
9618
  name: z.ZodString;
9614
9619
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9615
9620
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
9616
- status: z.ZodEnum<{
9621
+ status: z.ZodCatch<z.ZodEnum<{
9617
9622
  running: "running";
9618
9623
  attention: "attention";
9619
9624
  needs_input: "needs_input";
9620
9625
  failed: "failed";
9626
+ pending: "pending";
9621
9627
  done: "done";
9622
- }>;
9628
+ }>>;
9623
9629
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
9624
9630
  activityAt: z.ZodNullable<z.ZodString>;
9625
9631
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -9797,7 +9803,7 @@ export declare const WorkspaceCreateResponseSchema: z.ZodObject<{
9797
9803
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
9798
9804
  name: string;
9799
9805
  archivingAt: string | null;
9800
- status: "running" | "attention" | "needs_input" | "failed" | "done";
9806
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
9801
9807
  statusEnteredAt: string | null;
9802
9808
  activityAt: string | null;
9803
9809
  scripts: {
@@ -9900,7 +9906,7 @@ export declare const WorkspaceCreateResponseSchema: z.ZodObject<{
9900
9906
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
9901
9907
  name: string;
9902
9908
  archivingAt: string | null;
9903
- status: "running" | "attention" | "needs_input" | "failed" | "done";
9909
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
9904
9910
  statusEnteredAt: string | null;
9905
9911
  activityAt: string | null;
9906
9912
  scripts: {
@@ -11506,13 +11512,14 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
11506
11512
  name: z.ZodString;
11507
11513
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11508
11514
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
11509
- status: z.ZodEnum<{
11515
+ status: z.ZodCatch<z.ZodEnum<{
11510
11516
  running: "running";
11511
11517
  attention: "attention";
11512
11518
  needs_input: "needs_input";
11513
11519
  failed: "failed";
11520
+ pending: "pending";
11514
11521
  done: "done";
11515
- }>;
11522
+ }>>;
11516
11523
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
11517
11524
  activityAt: z.ZodNullable<z.ZodString>;
11518
11525
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -11690,7 +11697,7 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
11690
11697
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
11691
11698
  name: string;
11692
11699
  archivingAt: string | null;
11693
- status: "running" | "attention" | "needs_input" | "failed" | "done";
11700
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
11694
11701
  statusEnteredAt: string | null;
11695
11702
  activityAt: string | null;
11696
11703
  scripts: {
@@ -11793,7 +11800,7 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
11793
11800
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
11794
11801
  name: string;
11795
11802
  archivingAt: string | null;
11796
- status: "running" | "attention" | "needs_input" | "failed" | "done";
11803
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
11797
11804
  statusEnteredAt: string | null;
11798
11805
  activityAt: string | null;
11799
11806
  scripts: {
@@ -13051,13 +13058,14 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
13051
13058
  name: z.ZodString;
13052
13059
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13053
13060
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
13054
- status: z.ZodEnum<{
13061
+ status: z.ZodCatch<z.ZodEnum<{
13055
13062
  running: "running";
13056
13063
  attention: "attention";
13057
13064
  needs_input: "needs_input";
13058
13065
  failed: "failed";
13066
+ pending: "pending";
13059
13067
  done: "done";
13060
- }>;
13068
+ }>>;
13061
13069
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
13062
13070
  activityAt: z.ZodNullable<z.ZodString>;
13063
13071
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -13235,7 +13243,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
13235
13243
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
13236
13244
  name: string;
13237
13245
  archivingAt: string | null;
13238
- status: "running" | "attention" | "needs_input" | "failed" | "done";
13246
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
13239
13247
  statusEnteredAt: string | null;
13240
13248
  activityAt: string | null;
13241
13249
  scripts: {
@@ -13338,7 +13346,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
13338
13346
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
13339
13347
  name: string;
13340
13348
  archivingAt: string | null;
13341
- status: "running" | "attention" | "needs_input" | "failed" | "done";
13349
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
13342
13350
  statusEnteredAt: string | null;
13343
13351
  activityAt: string | null;
13344
13352
  scripts: {
@@ -14122,13 +14130,14 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
14122
14130
  name: z.ZodString;
14123
14131
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14124
14132
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
14125
- status: z.ZodEnum<{
14133
+ status: z.ZodCatch<z.ZodEnum<{
14126
14134
  running: "running";
14127
14135
  attention: "attention";
14128
14136
  needs_input: "needs_input";
14129
14137
  failed: "failed";
14138
+ pending: "pending";
14130
14139
  done: "done";
14131
- }>;
14140
+ }>>;
14132
14141
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
14133
14142
  activityAt: z.ZodNullable<z.ZodString>;
14134
14143
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -14306,7 +14315,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
14306
14315
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
14307
14316
  name: string;
14308
14317
  archivingAt: string | null;
14309
- status: "running" | "attention" | "needs_input" | "failed" | "done";
14318
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
14310
14319
  statusEnteredAt: string | null;
14311
14320
  activityAt: string | null;
14312
14321
  scripts: {
@@ -14409,7 +14418,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
14409
14418
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
14410
14419
  name: string;
14411
14420
  archivingAt: string | null;
14412
- status: "running" | "attention" | "needs_input" | "failed" | "done";
14421
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
14413
14422
  statusEnteredAt: string | null;
14414
14423
  activityAt: string | null;
14415
14424
  scripts: {
@@ -14567,13 +14576,14 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
14567
14576
  name: z.ZodString;
14568
14577
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14569
14578
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
14570
- status: z.ZodEnum<{
14579
+ status: z.ZodCatch<z.ZodEnum<{
14571
14580
  running: "running";
14572
14581
  attention: "attention";
14573
14582
  needs_input: "needs_input";
14574
14583
  failed: "failed";
14584
+ pending: "pending";
14575
14585
  done: "done";
14576
- }>;
14586
+ }>>;
14577
14587
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
14578
14588
  activityAt: z.ZodNullable<z.ZodString>;
14579
14589
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -14751,7 +14761,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
14751
14761
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
14752
14762
  name: string;
14753
14763
  archivingAt: string | null;
14754
- status: "running" | "attention" | "needs_input" | "failed" | "done";
14764
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
14755
14765
  statusEnteredAt: string | null;
14756
14766
  activityAt: string | null;
14757
14767
  scripts: {
@@ -14854,7 +14864,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
14854
14864
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
14855
14865
  name: string;
14856
14866
  archivingAt: string | null;
14857
- status: "running" | "attention" | "needs_input" | "failed" | "done";
14867
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
14858
14868
  statusEnteredAt: string | null;
14859
14869
  activityAt: string | null;
14860
14870
  scripts: {
@@ -15567,13 +15577,14 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
15567
15577
  name: z.ZodString;
15568
15578
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15569
15579
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
15570
- status: z.ZodEnum<{
15580
+ status: z.ZodCatch<z.ZodEnum<{
15571
15581
  running: "running";
15572
15582
  attention: "attention";
15573
15583
  needs_input: "needs_input";
15574
15584
  failed: "failed";
15585
+ pending: "pending";
15575
15586
  done: "done";
15576
- }>;
15587
+ }>>;
15577
15588
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
15578
15589
  activityAt: z.ZodNullable<z.ZodString>;
15579
15590
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -15751,7 +15762,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
15751
15762
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
15752
15763
  name: string;
15753
15764
  archivingAt: string | null;
15754
- status: "running" | "attention" | "needs_input" | "failed" | "done";
15765
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
15755
15766
  statusEnteredAt: string | null;
15756
15767
  activityAt: string | null;
15757
15768
  scripts: {
@@ -15854,7 +15865,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
15854
15865
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
15855
15866
  name: string;
15856
15867
  archivingAt: string | null;
15857
- status: "running" | "attention" | "needs_input" | "failed" | "done";
15868
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
15858
15869
  statusEnteredAt: string | null;
15859
15870
  activityAt: string | null;
15860
15871
  scripts: {
@@ -17571,13 +17582,14 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
17571
17582
  name: z.ZodString;
17572
17583
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17573
17584
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
17574
- status: z.ZodEnum<{
17585
+ status: z.ZodCatch<z.ZodEnum<{
17575
17586
  running: "running";
17576
17587
  attention: "attention";
17577
17588
  needs_input: "needs_input";
17578
17589
  failed: "failed";
17590
+ pending: "pending";
17579
17591
  done: "done";
17580
- }>;
17592
+ }>>;
17581
17593
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
17582
17594
  activityAt: z.ZodNullable<z.ZodString>;
17583
17595
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -17755,7 +17767,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
17755
17767
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
17756
17768
  name: string;
17757
17769
  archivingAt: string | null;
17758
- status: "running" | "attention" | "needs_input" | "failed" | "done";
17770
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
17759
17771
  statusEnteredAt: string | null;
17760
17772
  activityAt: string | null;
17761
17773
  scripts: {
@@ -17858,7 +17870,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
17858
17870
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
17859
17871
  name: string;
17860
17872
  archivingAt: string | null;
17861
- status: "running" | "attention" | "needs_input" | "failed" | "done";
17873
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
17862
17874
  statusEnteredAt: string | null;
17863
17875
  activityAt: string | null;
17864
17876
  scripts: {
@@ -22954,13 +22966,14 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
22954
22966
  name: z.ZodString;
22955
22967
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
22956
22968
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
22957
- status: z.ZodEnum<{
22969
+ status: z.ZodCatch<z.ZodEnum<{
22958
22970
  running: "running";
22959
22971
  attention: "attention";
22960
22972
  needs_input: "needs_input";
22961
22973
  failed: "failed";
22974
+ pending: "pending";
22962
22975
  done: "done";
22963
- }>;
22976
+ }>>;
22964
22977
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
22965
22978
  activityAt: z.ZodNullable<z.ZodString>;
22966
22979
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -23138,7 +23151,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
23138
23151
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
23139
23152
  name: string;
23140
23153
  archivingAt: string | null;
23141
- status: "running" | "attention" | "needs_input" | "failed" | "done";
23154
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
23142
23155
  statusEnteredAt: string | null;
23143
23156
  activityAt: string | null;
23144
23157
  scripts: {
@@ -23241,7 +23254,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
23241
23254
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
23242
23255
  name: string;
23243
23256
  archivingAt: string | null;
23244
- status: "running" | "attention" | "needs_input" | "failed" | "done";
23257
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
23245
23258
  statusEnteredAt: string | null;
23246
23259
  activityAt: string | null;
23247
23260
  scripts: {
@@ -24025,13 +24038,14 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
24025
24038
  name: z.ZodString;
24026
24039
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24027
24040
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
24028
- status: z.ZodEnum<{
24041
+ status: z.ZodCatch<z.ZodEnum<{
24029
24042
  running: "running";
24030
24043
  attention: "attention";
24031
24044
  needs_input: "needs_input";
24032
24045
  failed: "failed";
24046
+ pending: "pending";
24033
24047
  done: "done";
24034
- }>;
24048
+ }>>;
24035
24049
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
24036
24050
  activityAt: z.ZodNullable<z.ZodString>;
24037
24051
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -24209,7 +24223,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
24209
24223
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
24210
24224
  name: string;
24211
24225
  archivingAt: string | null;
24212
- status: "running" | "attention" | "needs_input" | "failed" | "done";
24226
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
24213
24227
  statusEnteredAt: string | null;
24214
24228
  activityAt: string | null;
24215
24229
  scripts: {
@@ -24312,7 +24326,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
24312
24326
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
24313
24327
  name: string;
24314
24328
  archivingAt: string | null;
24315
- status: "running" | "attention" | "needs_input" | "failed" | "done";
24329
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
24316
24330
  statusEnteredAt: string | null;
24317
24331
  activityAt: string | null;
24318
24332
  scripts: {
@@ -24470,13 +24484,14 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
24470
24484
  name: z.ZodString;
24471
24485
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24472
24486
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
24473
- status: z.ZodEnum<{
24487
+ status: z.ZodCatch<z.ZodEnum<{
24474
24488
  running: "running";
24475
24489
  attention: "attention";
24476
24490
  needs_input: "needs_input";
24477
24491
  failed: "failed";
24492
+ pending: "pending";
24478
24493
  done: "done";
24479
- }>;
24494
+ }>>;
24480
24495
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
24481
24496
  activityAt: z.ZodNullable<z.ZodString>;
24482
24497
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -24654,7 +24669,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
24654
24669
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
24655
24670
  name: string;
24656
24671
  archivingAt: string | null;
24657
- status: "running" | "attention" | "needs_input" | "failed" | "done";
24672
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
24658
24673
  statusEnteredAt: string | null;
24659
24674
  activityAt: string | null;
24660
24675
  scripts: {
@@ -24757,7 +24772,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
24757
24772
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
24758
24773
  name: string;
24759
24774
  archivingAt: string | null;
24760
- status: "running" | "attention" | "needs_input" | "failed" | "done";
24775
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
24761
24776
  statusEnteredAt: string | null;
24762
24777
  activityAt: string | null;
24763
24778
  scripts: {
@@ -25470,13 +25485,14 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
25470
25485
  name: z.ZodString;
25471
25486
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25472
25487
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
25473
- status: z.ZodEnum<{
25488
+ status: z.ZodCatch<z.ZodEnum<{
25474
25489
  running: "running";
25475
25490
  attention: "attention";
25476
25491
  needs_input: "needs_input";
25477
25492
  failed: "failed";
25493
+ pending: "pending";
25478
25494
  done: "done";
25479
- }>;
25495
+ }>>;
25480
25496
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
25481
25497
  activityAt: z.ZodNullable<z.ZodString>;
25482
25498
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -25654,7 +25670,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
25654
25670
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
25655
25671
  name: string;
25656
25672
  archivingAt: string | null;
25657
- status: "running" | "attention" | "needs_input" | "failed" | "done";
25673
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
25658
25674
  statusEnteredAt: string | null;
25659
25675
  activityAt: string | null;
25660
25676
  scripts: {
@@ -25757,7 +25773,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
25757
25773
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
25758
25774
  name: string;
25759
25775
  archivingAt: string | null;
25760
- status: "running" | "attention" | "needs_input" | "failed" | "done";
25776
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
25761
25777
  statusEnteredAt: string | null;
25762
25778
  activityAt: string | null;
25763
25779
  scripts: {
@@ -27474,13 +27490,14 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
27474
27490
  name: z.ZodString;
27475
27491
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
27476
27492
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
27477
- status: z.ZodEnum<{
27493
+ status: z.ZodCatch<z.ZodEnum<{
27478
27494
  running: "running";
27479
27495
  attention: "attention";
27480
27496
  needs_input: "needs_input";
27481
27497
  failed: "failed";
27498
+ pending: "pending";
27482
27499
  done: "done";
27483
- }>;
27500
+ }>>;
27484
27501
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
27485
27502
  activityAt: z.ZodNullable<z.ZodString>;
27486
27503
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -27658,7 +27675,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
27658
27675
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
27659
27676
  name: string;
27660
27677
  archivingAt: string | null;
27661
- status: "running" | "attention" | "needs_input" | "failed" | "done";
27678
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
27662
27679
  statusEnteredAt: string | null;
27663
27680
  activityAt: string | null;
27664
27681
  scripts: {
@@ -27761,7 +27778,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
27761
27778
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
27762
27779
  name: string;
27763
27780
  archivingAt: string | null;
27764
- status: "running" | "attention" | "needs_input" | "failed" | "done";
27781
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
27765
27782
  statusEnteredAt: string | null;
27766
27783
  activityAt: string | null;
27767
27784
  scripts: {
@@ -32522,13 +32539,14 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
32522
32539
  name: z.ZodString;
32523
32540
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
32524
32541
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
32525
- status: z.ZodEnum<{
32542
+ status: z.ZodCatch<z.ZodEnum<{
32526
32543
  running: "running";
32527
32544
  attention: "attention";
32528
32545
  needs_input: "needs_input";
32529
32546
  failed: "failed";
32547
+ pending: "pending";
32530
32548
  done: "done";
32531
- }>;
32549
+ }>>;
32532
32550
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
32533
32551
  activityAt: z.ZodNullable<z.ZodString>;
32534
32552
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -32706,7 +32724,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
32706
32724
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
32707
32725
  name: string;
32708
32726
  archivingAt: string | null;
32709
- status: "running" | "attention" | "needs_input" | "failed" | "done";
32727
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
32710
32728
  statusEnteredAt: string | null;
32711
32729
  activityAt: string | null;
32712
32730
  scripts: {
@@ -32809,7 +32827,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
32809
32827
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
32810
32828
  name: string;
32811
32829
  archivingAt: string | null;
32812
- status: "running" | "attention" | "needs_input" | "failed" | "done";
32830
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
32813
32831
  statusEnteredAt: string | null;
32814
32832
  activityAt: string | null;
32815
32833
  scripts: {
@@ -33593,13 +33611,14 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
33593
33611
  name: z.ZodString;
33594
33612
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33595
33613
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
33596
- status: z.ZodEnum<{
33614
+ status: z.ZodCatch<z.ZodEnum<{
33597
33615
  running: "running";
33598
33616
  attention: "attention";
33599
33617
  needs_input: "needs_input";
33600
33618
  failed: "failed";
33619
+ pending: "pending";
33601
33620
  done: "done";
33602
- }>;
33621
+ }>>;
33603
33622
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
33604
33623
  activityAt: z.ZodNullable<z.ZodString>;
33605
33624
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -33777,7 +33796,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
33777
33796
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
33778
33797
  name: string;
33779
33798
  archivingAt: string | null;
33780
- status: "running" | "attention" | "needs_input" | "failed" | "done";
33799
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
33781
33800
  statusEnteredAt: string | null;
33782
33801
  activityAt: string | null;
33783
33802
  scripts: {
@@ -33880,7 +33899,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
33880
33899
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
33881
33900
  name: string;
33882
33901
  archivingAt: string | null;
33883
- status: "running" | "attention" | "needs_input" | "failed" | "done";
33902
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
33884
33903
  statusEnteredAt: string | null;
33885
33904
  activityAt: string | null;
33886
33905
  scripts: {
@@ -34038,13 +34057,14 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
34038
34057
  name: z.ZodString;
34039
34058
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
34040
34059
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
34041
- status: z.ZodEnum<{
34060
+ status: z.ZodCatch<z.ZodEnum<{
34042
34061
  running: "running";
34043
34062
  attention: "attention";
34044
34063
  needs_input: "needs_input";
34045
34064
  failed: "failed";
34065
+ pending: "pending";
34046
34066
  done: "done";
34047
- }>;
34067
+ }>>;
34048
34068
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
34049
34069
  activityAt: z.ZodNullable<z.ZodString>;
34050
34070
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -34222,7 +34242,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
34222
34242
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
34223
34243
  name: string;
34224
34244
  archivingAt: string | null;
34225
- status: "running" | "attention" | "needs_input" | "failed" | "done";
34245
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
34226
34246
  statusEnteredAt: string | null;
34227
34247
  activityAt: string | null;
34228
34248
  scripts: {
@@ -34325,7 +34345,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
34325
34345
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
34326
34346
  name: string;
34327
34347
  archivingAt: string | null;
34328
- status: "running" | "attention" | "needs_input" | "failed" | "done";
34348
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
34329
34349
  statusEnteredAt: string | null;
34330
34350
  activityAt: string | null;
34331
34351
  scripts: {
@@ -35038,13 +35058,14 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
35038
35058
  name: z.ZodString;
35039
35059
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
35040
35060
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
35041
- status: z.ZodEnum<{
35061
+ status: z.ZodCatch<z.ZodEnum<{
35042
35062
  running: "running";
35043
35063
  attention: "attention";
35044
35064
  needs_input: "needs_input";
35045
35065
  failed: "failed";
35066
+ pending: "pending";
35046
35067
  done: "done";
35047
- }>;
35068
+ }>>;
35048
35069
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
35049
35070
  activityAt: z.ZodNullable<z.ZodString>;
35050
35071
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -35222,7 +35243,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
35222
35243
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
35223
35244
  name: string;
35224
35245
  archivingAt: string | null;
35225
- status: "running" | "attention" | "needs_input" | "failed" | "done";
35246
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
35226
35247
  statusEnteredAt: string | null;
35227
35248
  activityAt: string | null;
35228
35249
  scripts: {
@@ -35325,7 +35346,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
35325
35346
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
35326
35347
  name: string;
35327
35348
  archivingAt: string | null;
35328
- status: "running" | "attention" | "needs_input" | "failed" | "done";
35349
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
35329
35350
  statusEnteredAt: string | null;
35330
35351
  activityAt: string | null;
35331
35352
  scripts: {
@@ -37042,13 +37063,14 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
37042
37063
  name: z.ZodString;
37043
37064
  title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
37044
37065
  archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
37045
- status: z.ZodEnum<{
37066
+ status: z.ZodCatch<z.ZodEnum<{
37046
37067
  running: "running";
37047
37068
  attention: "attention";
37048
37069
  needs_input: "needs_input";
37049
37070
  failed: "failed";
37071
+ pending: "pending";
37050
37072
  done: "done";
37051
- }>;
37073
+ }>>;
37052
37074
  statusEnteredAt: z.ZodPipe<z.ZodOptional<z.ZodNullable<z.ZodString>>, z.ZodTransform<string | null, string | null | undefined>>;
37053
37075
  activityAt: z.ZodNullable<z.ZodString>;
37054
37076
  diffStat: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -37226,7 +37248,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
37226
37248
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
37227
37249
  name: string;
37228
37250
  archivingAt: string | null;
37229
- status: "running" | "attention" | "needs_input" | "failed" | "done";
37251
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
37230
37252
  statusEnteredAt: string | null;
37231
37253
  activityAt: string | null;
37232
37254
  scripts: {
@@ -37329,7 +37351,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
37329
37351
  workspaceKind: "worktree" | "checkout" | "directory" | "local_checkout";
37330
37352
  name: string;
37331
37353
  archivingAt: string | null;
37332
- status: "running" | "attention" | "needs_input" | "failed" | "done";
37354
+ status: "running" | "attention" | "needs_input" | "failed" | "pending" | "done";
37333
37355
  statusEnteredAt: string | null;
37334
37356
  activityAt: string | null;
37335
37357
  scripts: {