@trigger.dev/core 3.0.0-beta.46 → 3.0.0-beta.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.
Files changed (45) hide show
  1. package/dist/{catalog-9G8AqnI9.d.ts → catalog-N-X0Te3W.d.mts} +5 -23
  2. package/dist/{catalog-Y0mRLMtJ.d.mts → catalog-NxVZnWZh.d.ts} +5 -23
  3. package/dist/{common-55Mqj8JP.d.mts → common-fIyU5pmz.d.mts} +13 -0
  4. package/dist/{common-55Mqj8JP.d.ts → common-fIyU5pmz.d.ts} +13 -0
  5. package/dist/{manager-6NRInm7C.d.ts → manager-2ZQ3_twq.d.ts} +1 -1
  6. package/dist/{manager-2AqSY67c.d.mts → manager-X_HrWQ7_.d.mts} +1 -1
  7. package/dist/{messages-nXkzt5CT.d.mts → messages-Sggr4tid.d.mts} +162 -0
  8. package/dist/{messages-nXkzt5CT.d.ts → messages-Sggr4tid.d.ts} +162 -0
  9. package/dist/{schemas-CeAee_C2.d.mts → schemas-Zy7mGFgD.d.mts} +19 -0
  10. package/dist/{schemas-CeAee_C2.d.ts → schemas-Zy7mGFgD.d.ts} +19 -0
  11. package/dist/tracer-N0p2Fuuv.d.mts +23 -0
  12. package/dist/tracer-N0p2Fuuv.d.ts +23 -0
  13. package/dist/v3/dev/index.d.mts +2 -2
  14. package/dist/v3/dev/index.d.ts +2 -2
  15. package/dist/v3/index.d.mts +50 -38
  16. package/dist/v3/index.d.ts +50 -38
  17. package/dist/v3/index.js +470 -303
  18. package/dist/v3/index.js.map +1 -1
  19. package/dist/v3/index.mjs +467 -304
  20. package/dist/v3/index.mjs.map +1 -1
  21. package/dist/v3/otel/index.js +15 -5
  22. package/dist/v3/otel/index.js.map +1 -1
  23. package/dist/v3/otel/index.mjs +15 -5
  24. package/dist/v3/otel/index.mjs.map +1 -1
  25. package/dist/v3/prod/index.d.mts +3 -3
  26. package/dist/v3/prod/index.d.ts +3 -3
  27. package/dist/v3/schemas/index.d.mts +16 -4
  28. package/dist/v3/schemas/index.d.ts +16 -4
  29. package/dist/v3/schemas/index.js +3 -1
  30. package/dist/v3/schemas/index.js.map +1 -1
  31. package/dist/v3/schemas/index.mjs +3 -1
  32. package/dist/v3/schemas/index.mjs.map +1 -1
  33. package/dist/v3/workers/index.d.mts +7 -6
  34. package/dist/v3/workers/index.d.ts +7 -6
  35. package/dist/v3/workers/index.js +250 -96
  36. package/dist/v3/workers/index.js.map +1 -1
  37. package/dist/v3/workers/index.mjs +250 -96
  38. package/dist/v3/workers/index.mjs.map +1 -1
  39. package/dist/v3/zodfetch.d.mts +15 -2
  40. package/dist/v3/zodfetch.d.ts +15 -2
  41. package/dist/v3/zodfetch.js +248 -28
  42. package/dist/v3/zodfetch.js.map +1 -1
  43. package/dist/v3/zodfetch.mjs +246 -29
  44. package/dist/v3/zodfetch.mjs.map +1 -1
  45. package/package.json +1 -1
@@ -49,6 +49,7 @@ declare const BackgroundWorkerServerMessages: z.ZodDiscriminatedUnion<"type", [z
49
49
  createdAt: z.ZodDate;
50
50
  startedAt: z.ZodDefault<z.ZodDate>;
51
51
  idempotencyKey: z.ZodOptional<z.ZodString>;
52
+ maxAttempts: z.ZodOptional<z.ZodNumber>;
52
53
  durationMs: z.ZodDefault<z.ZodNumber>;
53
54
  costInCents: z.ZodDefault<z.ZodNumber>;
54
55
  baseCostInCents: z.ZodDefault<z.ZodNumber>;
@@ -65,6 +66,7 @@ declare const BackgroundWorkerServerMessages: z.ZodDiscriminatedUnion<"type", [z
65
66
  baseCostInCents: number;
66
67
  context?: any;
67
68
  idempotencyKey?: string | undefined;
69
+ maxAttempts?: number | undefined;
68
70
  }, {
69
71
  id: string;
70
72
  payload: string;
@@ -75,6 +77,7 @@ declare const BackgroundWorkerServerMessages: z.ZodDiscriminatedUnion<"type", [z
75
77
  isTest?: boolean | undefined;
76
78
  startedAt?: Date | undefined;
77
79
  idempotencyKey?: string | undefined;
80
+ maxAttempts?: number | undefined;
78
81
  durationMs?: number | undefined;
79
82
  costInCents?: number | undefined;
80
83
  baseCostInCents?: number | undefined;
@@ -181,6 +184,7 @@ declare const BackgroundWorkerServerMessages: z.ZodDiscriminatedUnion<"type", [z
181
184
  baseCostInCents: number;
182
185
  context?: any;
183
186
  idempotencyKey?: string | undefined;
187
+ maxAttempts?: number | undefined;
184
188
  };
185
189
  queue: {
186
190
  id: string;
@@ -235,6 +239,7 @@ declare const BackgroundWorkerServerMessages: z.ZodDiscriminatedUnion<"type", [z
235
239
  isTest?: boolean | undefined;
236
240
  startedAt?: Date | undefined;
237
241
  idempotencyKey?: string | undefined;
242
+ maxAttempts?: number | undefined;
238
243
  durationMs?: number | undefined;
239
244
  costInCents?: number | undefined;
240
245
  baseCostInCents?: number | undefined;
@@ -299,6 +304,7 @@ declare const BackgroundWorkerServerMessages: z.ZodDiscriminatedUnion<"type", [z
299
304
  baseCostInCents: number;
300
305
  context?: any;
301
306
  idempotencyKey?: string | undefined;
307
+ maxAttempts?: number | undefined;
302
308
  };
303
309
  queue: {
304
310
  id: string;
@@ -357,6 +363,7 @@ declare const BackgroundWorkerServerMessages: z.ZodDiscriminatedUnion<"type", [z
357
363
  isTest?: boolean | undefined;
358
364
  startedAt?: Date | undefined;
359
365
  idempotencyKey?: string | undefined;
366
+ maxAttempts?: number | undefined;
360
367
  durationMs?: number | undefined;
361
368
  costInCents?: number | undefined;
362
369
  baseCostInCents?: number | undefined;
@@ -424,6 +431,7 @@ declare const BackgroundWorkerServerMessages: z.ZodDiscriminatedUnion<"type", [z
424
431
  baseCostInCents: number;
425
432
  context?: any;
426
433
  idempotencyKey?: string | undefined;
434
+ maxAttempts?: number | undefined;
427
435
  };
428
436
  queue: {
429
437
  id: string;
@@ -485,6 +493,7 @@ declare const BackgroundWorkerServerMessages: z.ZodDiscriminatedUnion<"type", [z
485
493
  isTest?: boolean | undefined;
486
494
  startedAt?: Date | undefined;
487
495
  idempotencyKey?: string | undefined;
496
+ maxAttempts?: number | undefined;
488
497
  durationMs?: number | undefined;
489
498
  costInCents?: number | undefined;
490
499
  baseCostInCents?: number | undefined;
@@ -701,6 +710,7 @@ declare const serverWebsocketMessages: {
701
710
  createdAt: z.ZodDate;
702
711
  startedAt: z.ZodDefault<z.ZodDate>;
703
712
  idempotencyKey: z.ZodOptional<z.ZodString>;
713
+ maxAttempts: z.ZodOptional<z.ZodNumber>;
704
714
  durationMs: z.ZodDefault<z.ZodNumber>;
705
715
  costInCents: z.ZodDefault<z.ZodNumber>;
706
716
  baseCostInCents: z.ZodDefault<z.ZodNumber>;
@@ -717,6 +727,7 @@ declare const serverWebsocketMessages: {
717
727
  baseCostInCents: number;
718
728
  context?: any;
719
729
  idempotencyKey?: string | undefined;
730
+ maxAttempts?: number | undefined;
720
731
  }, {
721
732
  id: string;
722
733
  payload: string;
@@ -727,6 +738,7 @@ declare const serverWebsocketMessages: {
727
738
  isTest?: boolean | undefined;
728
739
  startedAt?: Date | undefined;
729
740
  idempotencyKey?: string | undefined;
741
+ maxAttempts?: number | undefined;
730
742
  durationMs?: number | undefined;
731
743
  costInCents?: number | undefined;
732
744
  baseCostInCents?: number | undefined;
@@ -833,6 +845,7 @@ declare const serverWebsocketMessages: {
833
845
  baseCostInCents: number;
834
846
  context?: any;
835
847
  idempotencyKey?: string | undefined;
848
+ maxAttempts?: number | undefined;
836
849
  };
837
850
  queue: {
838
851
  id: string;
@@ -887,6 +900,7 @@ declare const serverWebsocketMessages: {
887
900
  isTest?: boolean | undefined;
888
901
  startedAt?: Date | undefined;
889
902
  idempotencyKey?: string | undefined;
903
+ maxAttempts?: number | undefined;
890
904
  durationMs?: number | undefined;
891
905
  costInCents?: number | undefined;
892
906
  baseCostInCents?: number | undefined;
@@ -951,6 +965,7 @@ declare const serverWebsocketMessages: {
951
965
  baseCostInCents: number;
952
966
  context?: any;
953
967
  idempotencyKey?: string | undefined;
968
+ maxAttempts?: number | undefined;
954
969
  };
955
970
  queue: {
956
971
  id: string;
@@ -1009,6 +1024,7 @@ declare const serverWebsocketMessages: {
1009
1024
  isTest?: boolean | undefined;
1010
1025
  startedAt?: Date | undefined;
1011
1026
  idempotencyKey?: string | undefined;
1027
+ maxAttempts?: number | undefined;
1012
1028
  durationMs?: number | undefined;
1013
1029
  costInCents?: number | undefined;
1014
1030
  baseCostInCents?: number | undefined;
@@ -1076,6 +1092,7 @@ declare const serverWebsocketMessages: {
1076
1092
  baseCostInCents: number;
1077
1093
  context?: any;
1078
1094
  idempotencyKey?: string | undefined;
1095
+ maxAttempts?: number | undefined;
1079
1096
  };
1080
1097
  queue: {
1081
1098
  id: string;
@@ -1137,6 +1154,7 @@ declare const serverWebsocketMessages: {
1137
1154
  isTest?: boolean | undefined;
1138
1155
  startedAt?: Date | undefined;
1139
1156
  idempotencyKey?: string | undefined;
1157
+ maxAttempts?: number | undefined;
1140
1158
  durationMs?: number | undefined;
1141
1159
  costInCents?: number | undefined;
1142
1160
  baseCostInCents?: number | undefined;
@@ -1321,6 +1339,7 @@ declare const serverWebsocketMessages: {
1321
1339
  baseCostInCents: number;
1322
1340
  context?: any;
1323
1341
  idempotencyKey?: string | undefined;
1342
+ maxAttempts?: number | undefined;
1324
1343
  };
1325
1344
  queue: {
1326
1345
  id: string;
@@ -1416,6 +1435,7 @@ declare const serverWebsocketMessages: {
1416
1435
  isTest?: boolean | undefined;
1417
1436
  startedAt?: Date | undefined;
1418
1437
  idempotencyKey?: string | undefined;
1438
+ maxAttempts?: number | undefined;
1419
1439
  durationMs?: number | undefined;
1420
1440
  costInCents?: number | undefined;
1421
1441
  baseCostInCents?: number | undefined;
@@ -1696,6 +1716,7 @@ declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"type", [z
1696
1716
  createdAt: z.ZodDate;
1697
1717
  startedAt: z.ZodDefault<z.ZodDate>;
1698
1718
  idempotencyKey: z.ZodOptional<z.ZodString>;
1719
+ maxAttempts: z.ZodOptional<z.ZodNumber>;
1699
1720
  durationMs: z.ZodDefault<z.ZodNumber>;
1700
1721
  costInCents: z.ZodDefault<z.ZodNumber>;
1701
1722
  baseCostInCents: z.ZodDefault<z.ZodNumber>;
@@ -1712,6 +1733,7 @@ declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"type", [z
1712
1733
  baseCostInCents: number;
1713
1734
  context?: any;
1714
1735
  idempotencyKey?: string | undefined;
1736
+ maxAttempts?: number | undefined;
1715
1737
  }, {
1716
1738
  id: string;
1717
1739
  payload: string;
@@ -1722,6 +1744,7 @@ declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"type", [z
1722
1744
  isTest?: boolean | undefined;
1723
1745
  startedAt?: Date | undefined;
1724
1746
  idempotencyKey?: string | undefined;
1747
+ maxAttempts?: number | undefined;
1725
1748
  durationMs?: number | undefined;
1726
1749
  costInCents?: number | undefined;
1727
1750
  baseCostInCents?: number | undefined;
@@ -1828,6 +1851,7 @@ declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"type", [z
1828
1851
  baseCostInCents: number;
1829
1852
  context?: any;
1830
1853
  idempotencyKey?: string | undefined;
1854
+ maxAttempts?: number | undefined;
1831
1855
  };
1832
1856
  queue: {
1833
1857
  id: string;
@@ -1882,6 +1906,7 @@ declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"type", [z
1882
1906
  isTest?: boolean | undefined;
1883
1907
  startedAt?: Date | undefined;
1884
1908
  idempotencyKey?: string | undefined;
1909
+ maxAttempts?: number | undefined;
1885
1910
  durationMs?: number | undefined;
1886
1911
  costInCents?: number | undefined;
1887
1912
  baseCostInCents?: number | undefined;
@@ -1946,6 +1971,7 @@ declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"type", [z
1946
1971
  baseCostInCents: number;
1947
1972
  context?: any;
1948
1973
  idempotencyKey?: string | undefined;
1974
+ maxAttempts?: number | undefined;
1949
1975
  };
1950
1976
  queue: {
1951
1977
  id: string;
@@ -2041,6 +2067,7 @@ declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"type", [z
2041
2067
  isTest?: boolean | undefined;
2042
2068
  startedAt?: Date | undefined;
2043
2069
  idempotencyKey?: string | undefined;
2070
+ maxAttempts?: number | undefined;
2044
2071
  durationMs?: number | undefined;
2045
2072
  costInCents?: number | undefined;
2046
2073
  baseCostInCents?: number | undefined;
@@ -2591,6 +2618,7 @@ declare const clientWebsocketMessages: {
2591
2618
  createdAt: z.ZodDate;
2592
2619
  startedAt: z.ZodDefault<z.ZodDate>;
2593
2620
  idempotencyKey: z.ZodOptional<z.ZodString>;
2621
+ maxAttempts: z.ZodOptional<z.ZodNumber>;
2594
2622
  durationMs: z.ZodDefault<z.ZodNumber>;
2595
2623
  costInCents: z.ZodDefault<z.ZodNumber>;
2596
2624
  baseCostInCents: z.ZodDefault<z.ZodNumber>;
@@ -2607,6 +2635,7 @@ declare const clientWebsocketMessages: {
2607
2635
  baseCostInCents: number;
2608
2636
  context?: any;
2609
2637
  idempotencyKey?: string | undefined;
2638
+ maxAttempts?: number | undefined;
2610
2639
  }, {
2611
2640
  id: string;
2612
2641
  payload: string;
@@ -2617,6 +2646,7 @@ declare const clientWebsocketMessages: {
2617
2646
  isTest?: boolean | undefined;
2618
2647
  startedAt?: Date | undefined;
2619
2648
  idempotencyKey?: string | undefined;
2649
+ maxAttempts?: number | undefined;
2620
2650
  durationMs?: number | undefined;
2621
2651
  costInCents?: number | undefined;
2622
2652
  baseCostInCents?: number | undefined;
@@ -2723,6 +2753,7 @@ declare const clientWebsocketMessages: {
2723
2753
  baseCostInCents: number;
2724
2754
  context?: any;
2725
2755
  idempotencyKey?: string | undefined;
2756
+ maxAttempts?: number | undefined;
2726
2757
  };
2727
2758
  queue: {
2728
2759
  id: string;
@@ -2777,6 +2808,7 @@ declare const clientWebsocketMessages: {
2777
2808
  isTest?: boolean | undefined;
2778
2809
  startedAt?: Date | undefined;
2779
2810
  idempotencyKey?: string | undefined;
2811
+ maxAttempts?: number | undefined;
2780
2812
  durationMs?: number | undefined;
2781
2813
  costInCents?: number | undefined;
2782
2814
  baseCostInCents?: number | undefined;
@@ -2841,6 +2873,7 @@ declare const clientWebsocketMessages: {
2841
2873
  baseCostInCents: number;
2842
2874
  context?: any;
2843
2875
  idempotencyKey?: string | undefined;
2876
+ maxAttempts?: number | undefined;
2844
2877
  };
2845
2878
  queue: {
2846
2879
  id: string;
@@ -2936,6 +2969,7 @@ declare const clientWebsocketMessages: {
2936
2969
  isTest?: boolean | undefined;
2937
2970
  startedAt?: Date | undefined;
2938
2971
  idempotencyKey?: string | undefined;
2972
+ maxAttempts?: number | undefined;
2939
2973
  durationMs?: number | undefined;
2940
2974
  costInCents?: number | undefined;
2941
2975
  baseCostInCents?: number | undefined;
@@ -3267,6 +3301,7 @@ declare const clientWebsocketMessages: {
3267
3301
  baseCostInCents: number;
3268
3302
  context?: any;
3269
3303
  idempotencyKey?: string | undefined;
3304
+ maxAttempts?: number | undefined;
3270
3305
  };
3271
3306
  queue: {
3272
3307
  id: string;
@@ -3407,6 +3442,7 @@ declare const clientWebsocketMessages: {
3407
3442
  isTest?: boolean | undefined;
3408
3443
  startedAt?: Date | undefined;
3409
3444
  idempotencyKey?: string | undefined;
3445
+ maxAttempts?: number | undefined;
3410
3446
  durationMs?: number | undefined;
3411
3447
  costInCents?: number | undefined;
3412
3448
  baseCostInCents?: number | undefined;
@@ -3574,6 +3610,7 @@ declare const workerToChildMessages: {
3574
3610
  createdAt: z.ZodDate;
3575
3611
  startedAt: z.ZodDefault<z.ZodDate>;
3576
3612
  idempotencyKey: z.ZodOptional<z.ZodString>;
3613
+ maxAttempts: z.ZodOptional<z.ZodNumber>;
3577
3614
  durationMs: z.ZodDefault<z.ZodNumber>;
3578
3615
  costInCents: z.ZodDefault<z.ZodNumber>;
3579
3616
  baseCostInCents: z.ZodDefault<z.ZodNumber>;
@@ -3590,6 +3627,7 @@ declare const workerToChildMessages: {
3590
3627
  baseCostInCents: number;
3591
3628
  context?: any;
3592
3629
  idempotencyKey?: string | undefined;
3630
+ maxAttempts?: number | undefined;
3593
3631
  }, {
3594
3632
  id: string;
3595
3633
  payload: string;
@@ -3600,6 +3638,7 @@ declare const workerToChildMessages: {
3600
3638
  isTest?: boolean | undefined;
3601
3639
  startedAt?: Date | undefined;
3602
3640
  idempotencyKey?: string | undefined;
3641
+ maxAttempts?: number | undefined;
3603
3642
  durationMs?: number | undefined;
3604
3643
  costInCents?: number | undefined;
3605
3644
  baseCostInCents?: number | undefined;
@@ -3706,6 +3745,7 @@ declare const workerToChildMessages: {
3706
3745
  baseCostInCents: number;
3707
3746
  context?: any;
3708
3747
  idempotencyKey?: string | undefined;
3748
+ maxAttempts?: number | undefined;
3709
3749
  };
3710
3750
  queue: {
3711
3751
  id: string;
@@ -3760,6 +3800,7 @@ declare const workerToChildMessages: {
3760
3800
  isTest?: boolean | undefined;
3761
3801
  startedAt?: Date | undefined;
3762
3802
  idempotencyKey?: string | undefined;
3803
+ maxAttempts?: number | undefined;
3763
3804
  durationMs?: number | undefined;
3764
3805
  costInCents?: number | undefined;
3765
3806
  baseCostInCents?: number | undefined;
@@ -3837,6 +3878,7 @@ declare const workerToChildMessages: {
3837
3878
  baseCostInCents: number;
3838
3879
  context?: any;
3839
3880
  idempotencyKey?: string | undefined;
3881
+ maxAttempts?: number | undefined;
3840
3882
  };
3841
3883
  queue: {
3842
3884
  id: string;
@@ -3899,6 +3941,7 @@ declare const workerToChildMessages: {
3899
3941
  isTest?: boolean | undefined;
3900
3942
  startedAt?: Date | undefined;
3901
3943
  idempotencyKey?: string | undefined;
3944
+ maxAttempts?: number | undefined;
3902
3945
  durationMs?: number | undefined;
3903
3946
  costInCents?: number | undefined;
3904
3947
  baseCostInCents?: number | undefined;
@@ -4149,6 +4192,7 @@ declare const workerToChildMessages: {
4149
4192
  createdAt: z.ZodDate;
4150
4193
  startedAt: z.ZodDefault<z.ZodDate>;
4151
4194
  idempotencyKey: z.ZodOptional<z.ZodString>;
4195
+ maxAttempts: z.ZodOptional<z.ZodNumber>;
4152
4196
  durationMs: z.ZodDefault<z.ZodNumber>;
4153
4197
  costInCents: z.ZodDefault<z.ZodNumber>;
4154
4198
  baseCostInCents: z.ZodDefault<z.ZodNumber>;
@@ -4165,6 +4209,7 @@ declare const workerToChildMessages: {
4165
4209
  baseCostInCents: number;
4166
4210
  context?: any;
4167
4211
  idempotencyKey?: string | undefined;
4212
+ maxAttempts?: number | undefined;
4168
4213
  }, {
4169
4214
  id: string;
4170
4215
  payload: string;
@@ -4175,6 +4220,7 @@ declare const workerToChildMessages: {
4175
4220
  isTest?: boolean | undefined;
4176
4221
  startedAt?: Date | undefined;
4177
4222
  idempotencyKey?: string | undefined;
4223
+ maxAttempts?: number | undefined;
4178
4224
  durationMs?: number | undefined;
4179
4225
  costInCents?: number | undefined;
4180
4226
  baseCostInCents?: number | undefined;
@@ -4281,6 +4327,7 @@ declare const workerToChildMessages: {
4281
4327
  baseCostInCents: number;
4282
4328
  context?: any;
4283
4329
  idempotencyKey?: string | undefined;
4330
+ maxAttempts?: number | undefined;
4284
4331
  };
4285
4332
  queue: {
4286
4333
  id: string;
@@ -4335,6 +4382,7 @@ declare const workerToChildMessages: {
4335
4382
  isTest?: boolean | undefined;
4336
4383
  startedAt?: Date | undefined;
4337
4384
  idempotencyKey?: string | undefined;
4385
+ maxAttempts?: number | undefined;
4338
4386
  durationMs?: number | undefined;
4339
4387
  costInCents?: number | undefined;
4340
4388
  baseCostInCents?: number | undefined;
@@ -4398,6 +4446,7 @@ declare const workerToChildMessages: {
4398
4446
  baseCostInCents: number;
4399
4447
  context?: any;
4400
4448
  idempotencyKey?: string | undefined;
4449
+ maxAttempts?: number | undefined;
4401
4450
  };
4402
4451
  queue: {
4403
4452
  id: string;
@@ -4493,6 +4542,7 @@ declare const workerToChildMessages: {
4493
4542
  isTest?: boolean | undefined;
4494
4543
  startedAt?: Date | undefined;
4495
4544
  idempotencyKey?: string | undefined;
4545
+ maxAttempts?: number | undefined;
4496
4546
  durationMs?: number | undefined;
4497
4547
  costInCents?: number | undefined;
4498
4548
  baseCostInCents?: number | undefined;
@@ -4917,6 +4967,7 @@ declare const childToWorkerMessages: {
4917
4967
  createdAt: z.ZodDate;
4918
4968
  startedAt: z.ZodDefault<z.ZodDate>;
4919
4969
  idempotencyKey: z.ZodOptional<z.ZodString>;
4970
+ maxAttempts: z.ZodOptional<z.ZodNumber>;
4920
4971
  durationMs: z.ZodDefault<z.ZodNumber>;
4921
4972
  costInCents: z.ZodDefault<z.ZodNumber>;
4922
4973
  baseCostInCents: z.ZodDefault<z.ZodNumber>;
@@ -4933,6 +4984,7 @@ declare const childToWorkerMessages: {
4933
4984
  baseCostInCents: number;
4934
4985
  context?: any;
4935
4986
  idempotencyKey?: string | undefined;
4987
+ maxAttempts?: number | undefined;
4936
4988
  }, {
4937
4989
  id: string;
4938
4990
  payload: string;
@@ -4943,6 +4995,7 @@ declare const childToWorkerMessages: {
4943
4995
  isTest?: boolean | undefined;
4944
4996
  startedAt?: Date | undefined;
4945
4997
  idempotencyKey?: string | undefined;
4998
+ maxAttempts?: number | undefined;
4946
4999
  durationMs?: number | undefined;
4947
5000
  costInCents?: number | undefined;
4948
5001
  baseCostInCents?: number | undefined;
@@ -5049,6 +5102,7 @@ declare const childToWorkerMessages: {
5049
5102
  baseCostInCents: number;
5050
5103
  context?: any;
5051
5104
  idempotencyKey?: string | undefined;
5105
+ maxAttempts?: number | undefined;
5052
5106
  };
5053
5107
  queue: {
5054
5108
  id: string;
@@ -5103,6 +5157,7 @@ declare const childToWorkerMessages: {
5103
5157
  isTest?: boolean | undefined;
5104
5158
  startedAt?: Date | undefined;
5105
5159
  idempotencyKey?: string | undefined;
5160
+ maxAttempts?: number | undefined;
5106
5161
  durationMs?: number | undefined;
5107
5162
  costInCents?: number | undefined;
5108
5163
  baseCostInCents?: number | undefined;
@@ -5326,6 +5381,7 @@ declare const childToWorkerMessages: {
5326
5381
  baseCostInCents: number;
5327
5382
  context?: any;
5328
5383
  idempotencyKey?: string | undefined;
5384
+ maxAttempts?: number | undefined;
5329
5385
  };
5330
5386
  queue: {
5331
5387
  id: string;
@@ -5420,6 +5476,7 @@ declare const childToWorkerMessages: {
5420
5476
  isTest?: boolean | undefined;
5421
5477
  startedAt?: Date | undefined;
5422
5478
  idempotencyKey?: string | undefined;
5479
+ maxAttempts?: number | undefined;
5423
5480
  durationMs?: number | undefined;
5424
5481
  costInCents?: number | undefined;
5425
5482
  baseCostInCents?: number | undefined;
@@ -6098,6 +6155,7 @@ declare const ProdChildToWorkerMessages: {
6098
6155
  createdAt: z.ZodDate;
6099
6156
  startedAt: z.ZodDefault<z.ZodDate>;
6100
6157
  idempotencyKey: z.ZodOptional<z.ZodString>;
6158
+ maxAttempts: z.ZodOptional<z.ZodNumber>;
6101
6159
  durationMs: z.ZodDefault<z.ZodNumber>;
6102
6160
  costInCents: z.ZodDefault<z.ZodNumber>;
6103
6161
  baseCostInCents: z.ZodDefault<z.ZodNumber>;
@@ -6114,6 +6172,7 @@ declare const ProdChildToWorkerMessages: {
6114
6172
  baseCostInCents: number;
6115
6173
  context?: any;
6116
6174
  idempotencyKey?: string | undefined;
6175
+ maxAttempts?: number | undefined;
6117
6176
  }, {
6118
6177
  id: string;
6119
6178
  payload: string;
@@ -6124,6 +6183,7 @@ declare const ProdChildToWorkerMessages: {
6124
6183
  isTest?: boolean | undefined;
6125
6184
  startedAt?: Date | undefined;
6126
6185
  idempotencyKey?: string | undefined;
6186
+ maxAttempts?: number | undefined;
6127
6187
  durationMs?: number | undefined;
6128
6188
  costInCents?: number | undefined;
6129
6189
  baseCostInCents?: number | undefined;
@@ -6230,6 +6290,7 @@ declare const ProdChildToWorkerMessages: {
6230
6290
  baseCostInCents: number;
6231
6291
  context?: any;
6232
6292
  idempotencyKey?: string | undefined;
6293
+ maxAttempts?: number | undefined;
6233
6294
  };
6234
6295
  queue: {
6235
6296
  id: string;
@@ -6284,6 +6345,7 @@ declare const ProdChildToWorkerMessages: {
6284
6345
  isTest?: boolean | undefined;
6285
6346
  startedAt?: Date | undefined;
6286
6347
  idempotencyKey?: string | undefined;
6348
+ maxAttempts?: number | undefined;
6287
6349
  durationMs?: number | undefined;
6288
6350
  costInCents?: number | undefined;
6289
6351
  baseCostInCents?: number | undefined;
@@ -6507,6 +6569,7 @@ declare const ProdChildToWorkerMessages: {
6507
6569
  baseCostInCents: number;
6508
6570
  context?: any;
6509
6571
  idempotencyKey?: string | undefined;
6572
+ maxAttempts?: number | undefined;
6510
6573
  };
6511
6574
  queue: {
6512
6575
  id: string;
@@ -6601,6 +6664,7 @@ declare const ProdChildToWorkerMessages: {
6601
6664
  isTest?: boolean | undefined;
6602
6665
  startedAt?: Date | undefined;
6603
6666
  idempotencyKey?: string | undefined;
6667
+ maxAttempts?: number | undefined;
6604
6668
  durationMs?: number | undefined;
6605
6669
  costInCents?: number | undefined;
6606
6670
  baseCostInCents?: number | undefined;
@@ -7292,6 +7356,7 @@ declare const ProdWorkerToChildMessages: {
7292
7356
  createdAt: z.ZodDate;
7293
7357
  startedAt: z.ZodDefault<z.ZodDate>;
7294
7358
  idempotencyKey: z.ZodOptional<z.ZodString>;
7359
+ maxAttempts: z.ZodOptional<z.ZodNumber>;
7295
7360
  durationMs: z.ZodDefault<z.ZodNumber>;
7296
7361
  costInCents: z.ZodDefault<z.ZodNumber>;
7297
7362
  baseCostInCents: z.ZodDefault<z.ZodNumber>;
@@ -7308,6 +7373,7 @@ declare const ProdWorkerToChildMessages: {
7308
7373
  baseCostInCents: number;
7309
7374
  context?: any;
7310
7375
  idempotencyKey?: string | undefined;
7376
+ maxAttempts?: number | undefined;
7311
7377
  }, {
7312
7378
  id: string;
7313
7379
  payload: string;
@@ -7318,6 +7384,7 @@ declare const ProdWorkerToChildMessages: {
7318
7384
  isTest?: boolean | undefined;
7319
7385
  startedAt?: Date | undefined;
7320
7386
  idempotencyKey?: string | undefined;
7387
+ maxAttempts?: number | undefined;
7321
7388
  durationMs?: number | undefined;
7322
7389
  costInCents?: number | undefined;
7323
7390
  baseCostInCents?: number | undefined;
@@ -7424,6 +7491,7 @@ declare const ProdWorkerToChildMessages: {
7424
7491
  baseCostInCents: number;
7425
7492
  context?: any;
7426
7493
  idempotencyKey?: string | undefined;
7494
+ maxAttempts?: number | undefined;
7427
7495
  };
7428
7496
  queue: {
7429
7497
  id: string;
@@ -7478,6 +7546,7 @@ declare const ProdWorkerToChildMessages: {
7478
7546
  isTest?: boolean | undefined;
7479
7547
  startedAt?: Date | undefined;
7480
7548
  idempotencyKey?: string | undefined;
7549
+ maxAttempts?: number | undefined;
7481
7550
  durationMs?: number | undefined;
7482
7551
  costInCents?: number | undefined;
7483
7552
  baseCostInCents?: number | undefined;
@@ -7555,6 +7624,7 @@ declare const ProdWorkerToChildMessages: {
7555
7624
  baseCostInCents: number;
7556
7625
  context?: any;
7557
7626
  idempotencyKey?: string | undefined;
7627
+ maxAttempts?: number | undefined;
7558
7628
  };
7559
7629
  queue: {
7560
7630
  id: string;
@@ -7617,6 +7687,7 @@ declare const ProdWorkerToChildMessages: {
7617
7687
  isTest?: boolean | undefined;
7618
7688
  startedAt?: Date | undefined;
7619
7689
  idempotencyKey?: string | undefined;
7690
+ maxAttempts?: number | undefined;
7620
7691
  durationMs?: number | undefined;
7621
7692
  costInCents?: number | undefined;
7622
7693
  baseCostInCents?: number | undefined;
@@ -7869,6 +7940,7 @@ declare const ProdWorkerToChildMessages: {
7869
7940
  createdAt: z.ZodDate;
7870
7941
  startedAt: z.ZodDefault<z.ZodDate>;
7871
7942
  idempotencyKey: z.ZodOptional<z.ZodString>;
7943
+ maxAttempts: z.ZodOptional<z.ZodNumber>;
7872
7944
  durationMs: z.ZodDefault<z.ZodNumber>;
7873
7945
  costInCents: z.ZodDefault<z.ZodNumber>;
7874
7946
  baseCostInCents: z.ZodDefault<z.ZodNumber>;
@@ -7885,6 +7957,7 @@ declare const ProdWorkerToChildMessages: {
7885
7957
  baseCostInCents: number;
7886
7958
  context?: any;
7887
7959
  idempotencyKey?: string | undefined;
7960
+ maxAttempts?: number | undefined;
7888
7961
  }, {
7889
7962
  id: string;
7890
7963
  payload: string;
@@ -7895,6 +7968,7 @@ declare const ProdWorkerToChildMessages: {
7895
7968
  isTest?: boolean | undefined;
7896
7969
  startedAt?: Date | undefined;
7897
7970
  idempotencyKey?: string | undefined;
7971
+ maxAttempts?: number | undefined;
7898
7972
  durationMs?: number | undefined;
7899
7973
  costInCents?: number | undefined;
7900
7974
  baseCostInCents?: number | undefined;
@@ -8001,6 +8075,7 @@ declare const ProdWorkerToChildMessages: {
8001
8075
  baseCostInCents: number;
8002
8076
  context?: any;
8003
8077
  idempotencyKey?: string | undefined;
8078
+ maxAttempts?: number | undefined;
8004
8079
  };
8005
8080
  queue: {
8006
8081
  id: string;
@@ -8055,6 +8130,7 @@ declare const ProdWorkerToChildMessages: {
8055
8130
  isTest?: boolean | undefined;
8056
8131
  startedAt?: Date | undefined;
8057
8132
  idempotencyKey?: string | undefined;
8133
+ maxAttempts?: number | undefined;
8058
8134
  durationMs?: number | undefined;
8059
8135
  costInCents?: number | undefined;
8060
8136
  baseCostInCents?: number | undefined;
@@ -8118,6 +8194,7 @@ declare const ProdWorkerToChildMessages: {
8118
8194
  baseCostInCents: number;
8119
8195
  context?: any;
8120
8196
  idempotencyKey?: string | undefined;
8197
+ maxAttempts?: number | undefined;
8121
8198
  };
8122
8199
  queue: {
8123
8200
  id: string;
@@ -8213,6 +8290,7 @@ declare const ProdWorkerToChildMessages: {
8213
8290
  isTest?: boolean | undefined;
8214
8291
  startedAt?: Date | undefined;
8215
8292
  idempotencyKey?: string | undefined;
8293
+ maxAttempts?: number | undefined;
8216
8294
  durationMs?: number | undefined;
8217
8295
  costInCents?: number | undefined;
8218
8296
  baseCostInCents?: number | undefined;
@@ -10089,6 +10167,7 @@ declare const CoordinatorToPlatformMessages: {
10089
10167
  createdAt: z.ZodDate;
10090
10168
  startedAt: z.ZodDefault<z.ZodDate>;
10091
10169
  idempotencyKey: z.ZodOptional<z.ZodString>;
10170
+ maxAttempts: z.ZodOptional<z.ZodNumber>;
10092
10171
  durationMs: z.ZodDefault<z.ZodNumber>;
10093
10172
  costInCents: z.ZodDefault<z.ZodNumber>;
10094
10173
  baseCostInCents: z.ZodDefault<z.ZodNumber>;
@@ -10105,6 +10184,7 @@ declare const CoordinatorToPlatformMessages: {
10105
10184
  baseCostInCents: number;
10106
10185
  context?: any;
10107
10186
  idempotencyKey?: string | undefined;
10187
+ maxAttempts?: number | undefined;
10108
10188
  }, {
10109
10189
  id: string;
10110
10190
  payload: string;
@@ -10115,6 +10195,7 @@ declare const CoordinatorToPlatformMessages: {
10115
10195
  isTest?: boolean | undefined;
10116
10196
  startedAt?: Date | undefined;
10117
10197
  idempotencyKey?: string | undefined;
10198
+ maxAttempts?: number | undefined;
10118
10199
  durationMs?: number | undefined;
10119
10200
  costInCents?: number | undefined;
10120
10201
  baseCostInCents?: number | undefined;
@@ -10234,6 +10315,7 @@ declare const CoordinatorToPlatformMessages: {
10234
10315
  baseCostInCents: number;
10235
10316
  context?: any;
10236
10317
  idempotencyKey?: string | undefined;
10318
+ maxAttempts?: number | undefined;
10237
10319
  };
10238
10320
  queue: {
10239
10321
  id: string;
@@ -10293,6 +10375,7 @@ declare const CoordinatorToPlatformMessages: {
10293
10375
  isTest?: boolean | undefined;
10294
10376
  startedAt?: Date | undefined;
10295
10377
  idempotencyKey?: string | undefined;
10378
+ maxAttempts?: number | undefined;
10296
10379
  durationMs?: number | undefined;
10297
10380
  costInCents?: number | undefined;
10298
10381
  baseCostInCents?: number | undefined;
@@ -10362,6 +10445,7 @@ declare const CoordinatorToPlatformMessages: {
10362
10445
  baseCostInCents: number;
10363
10446
  context?: any;
10364
10447
  idempotencyKey?: string | undefined;
10448
+ maxAttempts?: number | undefined;
10365
10449
  };
10366
10450
  queue: {
10367
10451
  id: string;
@@ -10425,6 +10509,7 @@ declare const CoordinatorToPlatformMessages: {
10425
10509
  isTest?: boolean | undefined;
10426
10510
  startedAt?: Date | undefined;
10427
10511
  idempotencyKey?: string | undefined;
10512
+ maxAttempts?: number | undefined;
10428
10513
  durationMs?: number | undefined;
10429
10514
  costInCents?: number | undefined;
10430
10515
  baseCostInCents?: number | undefined;
@@ -10497,6 +10582,7 @@ declare const CoordinatorToPlatformMessages: {
10497
10582
  baseCostInCents: number;
10498
10583
  context?: any;
10499
10584
  idempotencyKey?: string | undefined;
10585
+ maxAttempts?: number | undefined;
10500
10586
  };
10501
10587
  queue: {
10502
10588
  id: string;
@@ -10563,6 +10649,7 @@ declare const CoordinatorToPlatformMessages: {
10563
10649
  isTest?: boolean | undefined;
10564
10650
  startedAt?: Date | undefined;
10565
10651
  idempotencyKey?: string | undefined;
10652
+ maxAttempts?: number | undefined;
10566
10653
  durationMs?: number | undefined;
10567
10654
  costInCents?: number | undefined;
10568
10655
  baseCostInCents?: number | undefined;
@@ -10676,6 +10763,7 @@ declare const CoordinatorToPlatformMessages: {
10676
10763
  createdAt: z.ZodDate;
10677
10764
  startedAt: z.ZodDefault<z.ZodDate>;
10678
10765
  idempotencyKey: z.ZodOptional<z.ZodString>;
10766
+ maxAttempts: z.ZodOptional<z.ZodNumber>;
10679
10767
  durationMs: z.ZodDefault<z.ZodNumber>;
10680
10768
  costInCents: z.ZodDefault<z.ZodNumber>;
10681
10769
  baseCostInCents: z.ZodDefault<z.ZodNumber>;
@@ -10692,6 +10780,7 @@ declare const CoordinatorToPlatformMessages: {
10692
10780
  baseCostInCents: number;
10693
10781
  context?: any;
10694
10782
  idempotencyKey?: string | undefined;
10783
+ maxAttempts?: number | undefined;
10695
10784
  }, {
10696
10785
  id: string;
10697
10786
  payload: string;
@@ -10702,6 +10791,7 @@ declare const CoordinatorToPlatformMessages: {
10702
10791
  isTest?: boolean | undefined;
10703
10792
  startedAt?: Date | undefined;
10704
10793
  idempotencyKey?: string | undefined;
10794
+ maxAttempts?: number | undefined;
10705
10795
  durationMs?: number | undefined;
10706
10796
  costInCents?: number | undefined;
10707
10797
  baseCostInCents?: number | undefined;
@@ -10821,6 +10911,7 @@ declare const CoordinatorToPlatformMessages: {
10821
10911
  baseCostInCents: number;
10822
10912
  context?: any;
10823
10913
  idempotencyKey?: string | undefined;
10914
+ maxAttempts?: number | undefined;
10824
10915
  };
10825
10916
  queue: {
10826
10917
  id: string;
@@ -10880,6 +10971,7 @@ declare const CoordinatorToPlatformMessages: {
10880
10971
  isTest?: boolean | undefined;
10881
10972
  startedAt?: Date | undefined;
10882
10973
  idempotencyKey?: string | undefined;
10974
+ maxAttempts?: number | undefined;
10883
10975
  durationMs?: number | undefined;
10884
10976
  costInCents?: number | undefined;
10885
10977
  baseCostInCents?: number | undefined;
@@ -10949,6 +11041,7 @@ declare const CoordinatorToPlatformMessages: {
10949
11041
  baseCostInCents: number;
10950
11042
  context?: any;
10951
11043
  idempotencyKey?: string | undefined;
11044
+ maxAttempts?: number | undefined;
10952
11045
  };
10953
11046
  queue: {
10954
11047
  id: string;
@@ -11012,6 +11105,7 @@ declare const CoordinatorToPlatformMessages: {
11012
11105
  isTest?: boolean | undefined;
11013
11106
  startedAt?: Date | undefined;
11014
11107
  idempotencyKey?: string | undefined;
11108
+ maxAttempts?: number | undefined;
11015
11109
  durationMs?: number | undefined;
11016
11110
  costInCents?: number | undefined;
11017
11111
  baseCostInCents?: number | undefined;
@@ -11083,6 +11177,7 @@ declare const CoordinatorToPlatformMessages: {
11083
11177
  baseCostInCents: number;
11084
11178
  context?: any;
11085
11179
  idempotencyKey?: string | undefined;
11180
+ maxAttempts?: number | undefined;
11086
11181
  };
11087
11182
  queue: {
11088
11183
  id: string;
@@ -11149,6 +11244,7 @@ declare const CoordinatorToPlatformMessages: {
11149
11244
  isTest?: boolean | undefined;
11150
11245
  startedAt?: Date | undefined;
11151
11246
  idempotencyKey?: string | undefined;
11247
+ maxAttempts?: number | undefined;
11152
11248
  durationMs?: number | undefined;
11153
11249
  costInCents?: number | undefined;
11154
11250
  baseCostInCents?: number | undefined;
@@ -11330,6 +11426,7 @@ declare const CoordinatorToPlatformMessages: {
11330
11426
  createdAt: z.ZodDate;
11331
11427
  startedAt: z.ZodDefault<z.ZodDate>;
11332
11428
  idempotencyKey: z.ZodOptional<z.ZodString>;
11429
+ maxAttempts: z.ZodOptional<z.ZodNumber>;
11333
11430
  durationMs: z.ZodDefault<z.ZodNumber>;
11334
11431
  costInCents: z.ZodDefault<z.ZodNumber>;
11335
11432
  baseCostInCents: z.ZodDefault<z.ZodNumber>;
@@ -11346,6 +11443,7 @@ declare const CoordinatorToPlatformMessages: {
11346
11443
  baseCostInCents: number;
11347
11444
  context?: any;
11348
11445
  idempotencyKey?: string | undefined;
11446
+ maxAttempts?: number | undefined;
11349
11447
  }, {
11350
11448
  id: string;
11351
11449
  payload: string;
@@ -11356,6 +11454,7 @@ declare const CoordinatorToPlatformMessages: {
11356
11454
  isTest?: boolean | undefined;
11357
11455
  startedAt?: Date | undefined;
11358
11456
  idempotencyKey?: string | undefined;
11457
+ maxAttempts?: number | undefined;
11359
11458
  durationMs?: number | undefined;
11360
11459
  costInCents?: number | undefined;
11361
11460
  baseCostInCents?: number | undefined;
@@ -11475,6 +11574,7 @@ declare const CoordinatorToPlatformMessages: {
11475
11574
  baseCostInCents: number;
11476
11575
  context?: any;
11477
11576
  idempotencyKey?: string | undefined;
11577
+ maxAttempts?: number | undefined;
11478
11578
  };
11479
11579
  queue: {
11480
11580
  id: string;
@@ -11534,6 +11634,7 @@ declare const CoordinatorToPlatformMessages: {
11534
11634
  isTest?: boolean | undefined;
11535
11635
  startedAt?: Date | undefined;
11536
11636
  idempotencyKey?: string | undefined;
11637
+ maxAttempts?: number | undefined;
11537
11638
  durationMs?: number | undefined;
11538
11639
  costInCents?: number | undefined;
11539
11640
  baseCostInCents?: number | undefined;
@@ -11772,6 +11873,7 @@ declare const CoordinatorToPlatformMessages: {
11772
11873
  baseCostInCents: number;
11773
11874
  context?: any;
11774
11875
  idempotencyKey?: string | undefined;
11876
+ maxAttempts?: number | undefined;
11775
11877
  };
11776
11878
  queue: {
11777
11879
  id: string;
@@ -11875,6 +11977,7 @@ declare const CoordinatorToPlatformMessages: {
11875
11977
  isTest?: boolean | undefined;
11876
11978
  startedAt?: Date | undefined;
11877
11979
  idempotencyKey?: string | undefined;
11980
+ maxAttempts?: number | undefined;
11878
11981
  durationMs?: number | undefined;
11879
11982
  costInCents?: number | undefined;
11880
11983
  baseCostInCents?: number | undefined;
@@ -12574,6 +12677,7 @@ declare const PlatformToCoordinatorMessages: {
12574
12677
  createdAt: z.ZodDate;
12575
12678
  startedAt: z.ZodDefault<z.ZodDate>;
12576
12679
  idempotencyKey: z.ZodOptional<z.ZodString>;
12680
+ maxAttempts: z.ZodOptional<z.ZodNumber>;
12577
12681
  durationMs: z.ZodDefault<z.ZodNumber>;
12578
12682
  costInCents: z.ZodDefault<z.ZodNumber>;
12579
12683
  baseCostInCents: z.ZodDefault<z.ZodNumber>;
@@ -12590,6 +12694,7 @@ declare const PlatformToCoordinatorMessages: {
12590
12694
  baseCostInCents: number;
12591
12695
  context?: any;
12592
12696
  idempotencyKey?: string | undefined;
12697
+ maxAttempts?: number | undefined;
12593
12698
  }, {
12594
12699
  id: string;
12595
12700
  payload: string;
@@ -12600,6 +12705,7 @@ declare const PlatformToCoordinatorMessages: {
12600
12705
  isTest?: boolean | undefined;
12601
12706
  startedAt?: Date | undefined;
12602
12707
  idempotencyKey?: string | undefined;
12708
+ maxAttempts?: number | undefined;
12603
12709
  durationMs?: number | undefined;
12604
12710
  costInCents?: number | undefined;
12605
12711
  baseCostInCents?: number | undefined;
@@ -12706,6 +12812,7 @@ declare const PlatformToCoordinatorMessages: {
12706
12812
  baseCostInCents: number;
12707
12813
  context?: any;
12708
12814
  idempotencyKey?: string | undefined;
12815
+ maxAttempts?: number | undefined;
12709
12816
  };
12710
12817
  queue: {
12711
12818
  id: string;
@@ -12760,6 +12867,7 @@ declare const PlatformToCoordinatorMessages: {
12760
12867
  isTest?: boolean | undefined;
12761
12868
  startedAt?: Date | undefined;
12762
12869
  idempotencyKey?: string | undefined;
12870
+ maxAttempts?: number | undefined;
12763
12871
  durationMs?: number | undefined;
12764
12872
  costInCents?: number | undefined;
12765
12873
  baseCostInCents?: number | undefined;
@@ -12864,6 +12972,7 @@ declare const PlatformToCoordinatorMessages: {
12864
12972
  baseCostInCents: number;
12865
12973
  context?: any;
12866
12974
  idempotencyKey?: string | undefined;
12975
+ maxAttempts?: number | undefined;
12867
12976
  };
12868
12977
  queue: {
12869
12978
  id: string;
@@ -12961,6 +13070,7 @@ declare const PlatformToCoordinatorMessages: {
12961
13070
  isTest?: boolean | undefined;
12962
13071
  startedAt?: Date | undefined;
12963
13072
  idempotencyKey?: string | undefined;
13073
+ maxAttempts?: number | undefined;
12964
13074
  durationMs?: number | undefined;
12965
13075
  costInCents?: number | undefined;
12966
13076
  baseCostInCents?: number | undefined;
@@ -13306,6 +13416,7 @@ declare const ClientToSharedQueueMessages: {
13306
13416
  createdAt: z.ZodDate;
13307
13417
  startedAt: z.ZodDefault<z.ZodDate>;
13308
13418
  idempotencyKey: z.ZodOptional<z.ZodString>;
13419
+ maxAttempts: z.ZodOptional<z.ZodNumber>;
13309
13420
  durationMs: z.ZodDefault<z.ZodNumber>;
13310
13421
  costInCents: z.ZodDefault<z.ZodNumber>;
13311
13422
  baseCostInCents: z.ZodDefault<z.ZodNumber>;
@@ -13322,6 +13433,7 @@ declare const ClientToSharedQueueMessages: {
13322
13433
  baseCostInCents: number;
13323
13434
  context?: any;
13324
13435
  idempotencyKey?: string | undefined;
13436
+ maxAttempts?: number | undefined;
13325
13437
  }, {
13326
13438
  id: string;
13327
13439
  payload: string;
@@ -13332,6 +13444,7 @@ declare const ClientToSharedQueueMessages: {
13332
13444
  isTest?: boolean | undefined;
13333
13445
  startedAt?: Date | undefined;
13334
13446
  idempotencyKey?: string | undefined;
13447
+ maxAttempts?: number | undefined;
13335
13448
  durationMs?: number | undefined;
13336
13449
  costInCents?: number | undefined;
13337
13450
  baseCostInCents?: number | undefined;
@@ -13438,6 +13551,7 @@ declare const ClientToSharedQueueMessages: {
13438
13551
  baseCostInCents: number;
13439
13552
  context?: any;
13440
13553
  idempotencyKey?: string | undefined;
13554
+ maxAttempts?: number | undefined;
13441
13555
  };
13442
13556
  queue: {
13443
13557
  id: string;
@@ -13492,6 +13606,7 @@ declare const ClientToSharedQueueMessages: {
13492
13606
  isTest?: boolean | undefined;
13493
13607
  startedAt?: Date | undefined;
13494
13608
  idempotencyKey?: string | undefined;
13609
+ maxAttempts?: number | undefined;
13495
13610
  durationMs?: number | undefined;
13496
13611
  costInCents?: number | undefined;
13497
13612
  baseCostInCents?: number | undefined;
@@ -13556,6 +13671,7 @@ declare const ClientToSharedQueueMessages: {
13556
13671
  baseCostInCents: number;
13557
13672
  context?: any;
13558
13673
  idempotencyKey?: string | undefined;
13674
+ maxAttempts?: number | undefined;
13559
13675
  };
13560
13676
  queue: {
13561
13677
  id: string;
@@ -13651,6 +13767,7 @@ declare const ClientToSharedQueueMessages: {
13651
13767
  isTest?: boolean | undefined;
13652
13768
  startedAt?: Date | undefined;
13653
13769
  idempotencyKey?: string | undefined;
13770
+ maxAttempts?: number | undefined;
13654
13771
  durationMs?: number | undefined;
13655
13772
  costInCents?: number | undefined;
13656
13773
  baseCostInCents?: number | undefined;
@@ -13982,6 +14099,7 @@ declare const ClientToSharedQueueMessages: {
13982
14099
  baseCostInCents: number;
13983
14100
  context?: any;
13984
14101
  idempotencyKey?: string | undefined;
14102
+ maxAttempts?: number | undefined;
13985
14103
  };
13986
14104
  queue: {
13987
14105
  id: string;
@@ -14122,6 +14240,7 @@ declare const ClientToSharedQueueMessages: {
14122
14240
  isTest?: boolean | undefined;
14123
14241
  startedAt?: Date | undefined;
14124
14242
  idempotencyKey?: string | undefined;
14243
+ maxAttempts?: number | undefined;
14125
14244
  durationMs?: number | undefined;
14126
14245
  costInCents?: number | undefined;
14127
14246
  baseCostInCents?: number | undefined;
@@ -14307,6 +14426,7 @@ declare const SharedQueueToClientMessages: {
14307
14426
  createdAt: z.ZodDate;
14308
14427
  startedAt: z.ZodDefault<z.ZodDate>;
14309
14428
  idempotencyKey: z.ZodOptional<z.ZodString>;
14429
+ maxAttempts: z.ZodOptional<z.ZodNumber>;
14310
14430
  durationMs: z.ZodDefault<z.ZodNumber>;
14311
14431
  costInCents: z.ZodDefault<z.ZodNumber>;
14312
14432
  baseCostInCents: z.ZodDefault<z.ZodNumber>;
@@ -14323,6 +14443,7 @@ declare const SharedQueueToClientMessages: {
14323
14443
  baseCostInCents: number;
14324
14444
  context?: any;
14325
14445
  idempotencyKey?: string | undefined;
14446
+ maxAttempts?: number | undefined;
14326
14447
  }, {
14327
14448
  id: string;
14328
14449
  payload: string;
@@ -14333,6 +14454,7 @@ declare const SharedQueueToClientMessages: {
14333
14454
  isTest?: boolean | undefined;
14334
14455
  startedAt?: Date | undefined;
14335
14456
  idempotencyKey?: string | undefined;
14457
+ maxAttempts?: number | undefined;
14336
14458
  durationMs?: number | undefined;
14337
14459
  costInCents?: number | undefined;
14338
14460
  baseCostInCents?: number | undefined;
@@ -14439,6 +14561,7 @@ declare const SharedQueueToClientMessages: {
14439
14561
  baseCostInCents: number;
14440
14562
  context?: any;
14441
14563
  idempotencyKey?: string | undefined;
14564
+ maxAttempts?: number | undefined;
14442
14565
  };
14443
14566
  queue: {
14444
14567
  id: string;
@@ -14493,6 +14616,7 @@ declare const SharedQueueToClientMessages: {
14493
14616
  isTest?: boolean | undefined;
14494
14617
  startedAt?: Date | undefined;
14495
14618
  idempotencyKey?: string | undefined;
14619
+ maxAttempts?: number | undefined;
14496
14620
  durationMs?: number | undefined;
14497
14621
  costInCents?: number | undefined;
14498
14622
  baseCostInCents?: number | undefined;
@@ -14557,6 +14681,7 @@ declare const SharedQueueToClientMessages: {
14557
14681
  baseCostInCents: number;
14558
14682
  context?: any;
14559
14683
  idempotencyKey?: string | undefined;
14684
+ maxAttempts?: number | undefined;
14560
14685
  };
14561
14686
  queue: {
14562
14687
  id: string;
@@ -14615,6 +14740,7 @@ declare const SharedQueueToClientMessages: {
14615
14740
  isTest?: boolean | undefined;
14616
14741
  startedAt?: Date | undefined;
14617
14742
  idempotencyKey?: string | undefined;
14743
+ maxAttempts?: number | undefined;
14618
14744
  durationMs?: number | undefined;
14619
14745
  costInCents?: number | undefined;
14620
14746
  baseCostInCents?: number | undefined;
@@ -14682,6 +14808,7 @@ declare const SharedQueueToClientMessages: {
14682
14808
  baseCostInCents: number;
14683
14809
  context?: any;
14684
14810
  idempotencyKey?: string | undefined;
14811
+ maxAttempts?: number | undefined;
14685
14812
  };
14686
14813
  queue: {
14687
14814
  id: string;
@@ -14743,6 +14870,7 @@ declare const SharedQueueToClientMessages: {
14743
14870
  isTest?: boolean | undefined;
14744
14871
  startedAt?: Date | undefined;
14745
14872
  idempotencyKey?: string | undefined;
14873
+ maxAttempts?: number | undefined;
14746
14874
  durationMs?: number | undefined;
14747
14875
  costInCents?: number | undefined;
14748
14876
  baseCostInCents?: number | undefined;
@@ -14927,6 +15055,7 @@ declare const SharedQueueToClientMessages: {
14927
15055
  baseCostInCents: number;
14928
15056
  context?: any;
14929
15057
  idempotencyKey?: string | undefined;
15058
+ maxAttempts?: number | undefined;
14930
15059
  };
14931
15060
  queue: {
14932
15061
  id: string;
@@ -15022,6 +15151,7 @@ declare const SharedQueueToClientMessages: {
15022
15151
  isTest?: boolean | undefined;
15023
15152
  startedAt?: Date | undefined;
15024
15153
  idempotencyKey?: string | undefined;
15154
+ maxAttempts?: number | undefined;
15025
15155
  durationMs?: number | undefined;
15026
15156
  costInCents?: number | undefined;
15027
15157
  baseCostInCents?: number | undefined;
@@ -16188,6 +16318,7 @@ declare const ProdWorkerToCoordinatorMessages: {
16188
16318
  createdAt: z.ZodDate;
16189
16319
  startedAt: z.ZodDefault<z.ZodDate>;
16190
16320
  idempotencyKey: z.ZodOptional<z.ZodString>;
16321
+ maxAttempts: z.ZodOptional<z.ZodNumber>;
16191
16322
  durationMs: z.ZodDefault<z.ZodNumber>;
16192
16323
  costInCents: z.ZodDefault<z.ZodNumber>;
16193
16324
  baseCostInCents: z.ZodDefault<z.ZodNumber>;
@@ -16204,6 +16335,7 @@ declare const ProdWorkerToCoordinatorMessages: {
16204
16335
  baseCostInCents: number;
16205
16336
  context?: any;
16206
16337
  idempotencyKey?: string | undefined;
16338
+ maxAttempts?: number | undefined;
16207
16339
  }, {
16208
16340
  id: string;
16209
16341
  payload: string;
@@ -16214,6 +16346,7 @@ declare const ProdWorkerToCoordinatorMessages: {
16214
16346
  isTest?: boolean | undefined;
16215
16347
  startedAt?: Date | undefined;
16216
16348
  idempotencyKey?: string | undefined;
16349
+ maxAttempts?: number | undefined;
16217
16350
  durationMs?: number | undefined;
16218
16351
  costInCents?: number | undefined;
16219
16352
  baseCostInCents?: number | undefined;
@@ -16333,6 +16466,7 @@ declare const ProdWorkerToCoordinatorMessages: {
16333
16466
  baseCostInCents: number;
16334
16467
  context?: any;
16335
16468
  idempotencyKey?: string | undefined;
16469
+ maxAttempts?: number | undefined;
16336
16470
  };
16337
16471
  queue: {
16338
16472
  id: string;
@@ -16392,6 +16526,7 @@ declare const ProdWorkerToCoordinatorMessages: {
16392
16526
  isTest?: boolean | undefined;
16393
16527
  startedAt?: Date | undefined;
16394
16528
  idempotencyKey?: string | undefined;
16529
+ maxAttempts?: number | undefined;
16395
16530
  durationMs?: number | undefined;
16396
16531
  costInCents?: number | undefined;
16397
16532
  baseCostInCents?: number | undefined;
@@ -16620,6 +16755,7 @@ declare const ProdWorkerToCoordinatorMessages: {
16620
16755
  baseCostInCents: number;
16621
16756
  context?: any;
16622
16757
  idempotencyKey?: string | undefined;
16758
+ maxAttempts?: number | undefined;
16623
16759
  };
16624
16760
  queue: {
16625
16761
  id: string;
@@ -16719,6 +16855,7 @@ declare const ProdWorkerToCoordinatorMessages: {
16719
16855
  isTest?: boolean | undefined;
16720
16856
  startedAt?: Date | undefined;
16721
16857
  idempotencyKey?: string | undefined;
16858
+ maxAttempts?: number | undefined;
16722
16859
  durationMs?: number | undefined;
16723
16860
  costInCents?: number | undefined;
16724
16861
  baseCostInCents?: number | undefined;
@@ -17191,6 +17328,7 @@ declare const ProdWorkerToCoordinatorMessages: {
17191
17328
  createdAt: z.ZodDate;
17192
17329
  startedAt: z.ZodDefault<z.ZodDate>;
17193
17330
  idempotencyKey: z.ZodOptional<z.ZodString>;
17331
+ maxAttempts: z.ZodOptional<z.ZodNumber>;
17194
17332
  durationMs: z.ZodDefault<z.ZodNumber>;
17195
17333
  costInCents: z.ZodDefault<z.ZodNumber>;
17196
17334
  baseCostInCents: z.ZodDefault<z.ZodNumber>;
@@ -17207,6 +17345,7 @@ declare const ProdWorkerToCoordinatorMessages: {
17207
17345
  baseCostInCents: number;
17208
17346
  context?: any;
17209
17347
  idempotencyKey?: string | undefined;
17348
+ maxAttempts?: number | undefined;
17210
17349
  }, {
17211
17350
  id: string;
17212
17351
  payload: string;
@@ -17217,6 +17356,7 @@ declare const ProdWorkerToCoordinatorMessages: {
17217
17356
  isTest?: boolean | undefined;
17218
17357
  startedAt?: Date | undefined;
17219
17358
  idempotencyKey?: string | undefined;
17359
+ maxAttempts?: number | undefined;
17220
17360
  durationMs?: number | undefined;
17221
17361
  costInCents?: number | undefined;
17222
17362
  baseCostInCents?: number | undefined;
@@ -17336,6 +17476,7 @@ declare const ProdWorkerToCoordinatorMessages: {
17336
17476
  baseCostInCents: number;
17337
17477
  context?: any;
17338
17478
  idempotencyKey?: string | undefined;
17479
+ maxAttempts?: number | undefined;
17339
17480
  };
17340
17481
  queue: {
17341
17482
  id: string;
@@ -17395,6 +17536,7 @@ declare const ProdWorkerToCoordinatorMessages: {
17395
17536
  isTest?: boolean | undefined;
17396
17537
  startedAt?: Date | undefined;
17397
17538
  idempotencyKey?: string | undefined;
17539
+ maxAttempts?: number | undefined;
17398
17540
  durationMs?: number | undefined;
17399
17541
  costInCents?: number | undefined;
17400
17542
  baseCostInCents?: number | undefined;
@@ -17464,6 +17606,7 @@ declare const ProdWorkerToCoordinatorMessages: {
17464
17606
  baseCostInCents: number;
17465
17607
  context?: any;
17466
17608
  idempotencyKey?: string | undefined;
17609
+ maxAttempts?: number | undefined;
17467
17610
  };
17468
17611
  queue: {
17469
17612
  id: string;
@@ -17527,6 +17670,7 @@ declare const ProdWorkerToCoordinatorMessages: {
17527
17670
  isTest?: boolean | undefined;
17528
17671
  startedAt?: Date | undefined;
17529
17672
  idempotencyKey?: string | undefined;
17673
+ maxAttempts?: number | undefined;
17530
17674
  durationMs?: number | undefined;
17531
17675
  costInCents?: number | undefined;
17532
17676
  baseCostInCents?: number | undefined;
@@ -17599,6 +17743,7 @@ declare const ProdWorkerToCoordinatorMessages: {
17599
17743
  baseCostInCents: number;
17600
17744
  context?: any;
17601
17745
  idempotencyKey?: string | undefined;
17746
+ maxAttempts?: number | undefined;
17602
17747
  };
17603
17748
  queue: {
17604
17749
  id: string;
@@ -17665,6 +17810,7 @@ declare const ProdWorkerToCoordinatorMessages: {
17665
17810
  isTest?: boolean | undefined;
17666
17811
  startedAt?: Date | undefined;
17667
17812
  idempotencyKey?: string | undefined;
17813
+ maxAttempts?: number | undefined;
17668
17814
  durationMs?: number | undefined;
17669
17815
  costInCents?: number | undefined;
17670
17816
  baseCostInCents?: number | undefined;
@@ -17965,6 +18111,7 @@ declare const CoordinatorToProdWorkerMessages: {
17965
18111
  createdAt: z.ZodDate;
17966
18112
  startedAt: z.ZodDefault<z.ZodDate>;
17967
18113
  idempotencyKey: z.ZodOptional<z.ZodString>;
18114
+ maxAttempts: z.ZodOptional<z.ZodNumber>;
17968
18115
  durationMs: z.ZodDefault<z.ZodNumber>;
17969
18116
  costInCents: z.ZodDefault<z.ZodNumber>;
17970
18117
  baseCostInCents: z.ZodDefault<z.ZodNumber>;
@@ -17981,6 +18128,7 @@ declare const CoordinatorToProdWorkerMessages: {
17981
18128
  baseCostInCents: number;
17982
18129
  context?: any;
17983
18130
  idempotencyKey?: string | undefined;
18131
+ maxAttempts?: number | undefined;
17984
18132
  }, {
17985
18133
  id: string;
17986
18134
  payload: string;
@@ -17991,6 +18139,7 @@ declare const CoordinatorToProdWorkerMessages: {
17991
18139
  isTest?: boolean | undefined;
17992
18140
  startedAt?: Date | undefined;
17993
18141
  idempotencyKey?: string | undefined;
18142
+ maxAttempts?: number | undefined;
17994
18143
  durationMs?: number | undefined;
17995
18144
  costInCents?: number | undefined;
17996
18145
  baseCostInCents?: number | undefined;
@@ -18097,6 +18246,7 @@ declare const CoordinatorToProdWorkerMessages: {
18097
18246
  baseCostInCents: number;
18098
18247
  context?: any;
18099
18248
  idempotencyKey?: string | undefined;
18249
+ maxAttempts?: number | undefined;
18100
18250
  };
18101
18251
  queue: {
18102
18252
  id: string;
@@ -18151,6 +18301,7 @@ declare const CoordinatorToProdWorkerMessages: {
18151
18301
  isTest?: boolean | undefined;
18152
18302
  startedAt?: Date | undefined;
18153
18303
  idempotencyKey?: string | undefined;
18304
+ maxAttempts?: number | undefined;
18154
18305
  durationMs?: number | undefined;
18155
18306
  costInCents?: number | undefined;
18156
18307
  baseCostInCents?: number | undefined;
@@ -18253,6 +18404,7 @@ declare const CoordinatorToProdWorkerMessages: {
18253
18404
  baseCostInCents: number;
18254
18405
  context?: any;
18255
18406
  idempotencyKey?: string | undefined;
18407
+ maxAttempts?: number | undefined;
18256
18408
  };
18257
18409
  queue: {
18258
18410
  id: string;
@@ -18348,6 +18500,7 @@ declare const CoordinatorToProdWorkerMessages: {
18348
18500
  isTest?: boolean | undefined;
18349
18501
  startedAt?: Date | undefined;
18350
18502
  idempotencyKey?: string | undefined;
18503
+ maxAttempts?: number | undefined;
18351
18504
  durationMs?: number | undefined;
18352
18505
  costInCents?: number | undefined;
18353
18506
  baseCostInCents?: number | undefined;
@@ -18447,6 +18600,7 @@ declare const CoordinatorToProdWorkerMessages: {
18447
18600
  createdAt: z.ZodDate;
18448
18601
  startedAt: z.ZodDefault<z.ZodDate>;
18449
18602
  idempotencyKey: z.ZodOptional<z.ZodString>;
18603
+ maxAttempts: z.ZodOptional<z.ZodNumber>;
18450
18604
  durationMs: z.ZodDefault<z.ZodNumber>;
18451
18605
  costInCents: z.ZodDefault<z.ZodNumber>;
18452
18606
  baseCostInCents: z.ZodDefault<z.ZodNumber>;
@@ -18463,6 +18617,7 @@ declare const CoordinatorToProdWorkerMessages: {
18463
18617
  baseCostInCents: number;
18464
18618
  context?: any;
18465
18619
  idempotencyKey?: string | undefined;
18620
+ maxAttempts?: number | undefined;
18466
18621
  }, {
18467
18622
  id: string;
18468
18623
  payload: string;
@@ -18473,6 +18628,7 @@ declare const CoordinatorToProdWorkerMessages: {
18473
18628
  isTest?: boolean | undefined;
18474
18629
  startedAt?: Date | undefined;
18475
18630
  idempotencyKey?: string | undefined;
18631
+ maxAttempts?: number | undefined;
18476
18632
  durationMs?: number | undefined;
18477
18633
  costInCents?: number | undefined;
18478
18634
  baseCostInCents?: number | undefined;
@@ -18592,6 +18748,7 @@ declare const CoordinatorToProdWorkerMessages: {
18592
18748
  baseCostInCents: number;
18593
18749
  context?: any;
18594
18750
  idempotencyKey?: string | undefined;
18751
+ maxAttempts?: number | undefined;
18595
18752
  };
18596
18753
  queue: {
18597
18754
  id: string;
@@ -18651,6 +18808,7 @@ declare const CoordinatorToProdWorkerMessages: {
18651
18808
  isTest?: boolean | undefined;
18652
18809
  startedAt?: Date | undefined;
18653
18810
  idempotencyKey?: string | undefined;
18811
+ maxAttempts?: number | undefined;
18654
18812
  durationMs?: number | undefined;
18655
18813
  costInCents?: number | undefined;
18656
18814
  baseCostInCents?: number | undefined;
@@ -18720,6 +18878,7 @@ declare const CoordinatorToProdWorkerMessages: {
18720
18878
  baseCostInCents: number;
18721
18879
  context?: any;
18722
18880
  idempotencyKey?: string | undefined;
18881
+ maxAttempts?: number | undefined;
18723
18882
  };
18724
18883
  queue: {
18725
18884
  id: string;
@@ -18783,6 +18942,7 @@ declare const CoordinatorToProdWorkerMessages: {
18783
18942
  isTest?: boolean | undefined;
18784
18943
  startedAt?: Date | undefined;
18785
18944
  idempotencyKey?: string | undefined;
18945
+ maxAttempts?: number | undefined;
18786
18946
  durationMs?: number | undefined;
18787
18947
  costInCents?: number | undefined;
18788
18948
  baseCostInCents?: number | undefined;
@@ -18855,6 +19015,7 @@ declare const CoordinatorToProdWorkerMessages: {
18855
19015
  baseCostInCents: number;
18856
19016
  context?: any;
18857
19017
  idempotencyKey?: string | undefined;
19018
+ maxAttempts?: number | undefined;
18858
19019
  };
18859
19020
  queue: {
18860
19021
  id: string;
@@ -18920,6 +19081,7 @@ declare const CoordinatorToProdWorkerMessages: {
18920
19081
  isTest?: boolean | undefined;
18921
19082
  startedAt?: Date | undefined;
18922
19083
  idempotencyKey?: string | undefined;
19084
+ maxAttempts?: number | undefined;
18923
19085
  durationMs?: number | undefined;
18924
19086
  costInCents?: number | undefined;
18925
19087
  baseCostInCents?: number | undefined;