@trigger.dev/core 3.0.0-beta.14 → 3.0.0-beta.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/v3/index.d.mts +179 -2
- package/dist/v3/index.d.ts +179 -2
- package/dist/v3/index.js +56 -34
- package/dist/v3/index.js.map +1 -1
- package/dist/v3/index.mjs +57 -35
- package/dist/v3/index.mjs.map +1 -1
- package/dist/v3/otel/index.js +4 -2
- package/dist/v3/otel/index.js.map +1 -1
- package/dist/v3/otel/index.mjs +4 -2
- package/dist/v3/otel/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/v3/index.d.mts
CHANGED
|
@@ -3203,6 +3203,7 @@ declare const TaskRun: z.ZodObject<{
|
|
|
3203
3203
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
3204
3204
|
isTest: z.ZodDefault<z.ZodBoolean>;
|
|
3205
3205
|
createdAt: z.ZodDate;
|
|
3206
|
+
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
3206
3207
|
}, "strip", z.ZodTypeAny, {
|
|
3207
3208
|
payload: string;
|
|
3208
3209
|
payloadType: string;
|
|
@@ -3211,6 +3212,7 @@ declare const TaskRun: z.ZodObject<{
|
|
|
3211
3212
|
isTest: boolean;
|
|
3212
3213
|
createdAt: Date;
|
|
3213
3214
|
context?: any;
|
|
3215
|
+
idempotencyKey?: string | undefined;
|
|
3214
3216
|
}, {
|
|
3215
3217
|
payload: string;
|
|
3216
3218
|
payloadType: string;
|
|
@@ -3219,6 +3221,7 @@ declare const TaskRun: z.ZodObject<{
|
|
|
3219
3221
|
createdAt: Date;
|
|
3220
3222
|
context?: any;
|
|
3221
3223
|
isTest?: boolean | undefined;
|
|
3224
|
+
idempotencyKey?: string | undefined;
|
|
3222
3225
|
}>;
|
|
3223
3226
|
type TaskRun = z.infer<typeof TaskRun>;
|
|
3224
3227
|
declare const TaskRunExecutionTask: z.ZodObject<{
|
|
@@ -3365,6 +3368,7 @@ declare const TaskRunExecution: z.ZodObject<{
|
|
|
3365
3368
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
3366
3369
|
isTest: z.ZodDefault<z.ZodBoolean>;
|
|
3367
3370
|
createdAt: z.ZodDate;
|
|
3371
|
+
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
3368
3372
|
}, "strip", z.ZodTypeAny, {
|
|
3369
3373
|
payload: string;
|
|
3370
3374
|
payloadType: string;
|
|
@@ -3373,6 +3377,7 @@ declare const TaskRunExecution: z.ZodObject<{
|
|
|
3373
3377
|
isTest: boolean;
|
|
3374
3378
|
createdAt: Date;
|
|
3375
3379
|
context?: any;
|
|
3380
|
+
idempotencyKey?: string | undefined;
|
|
3376
3381
|
}, {
|
|
3377
3382
|
payload: string;
|
|
3378
3383
|
payloadType: string;
|
|
@@ -3381,6 +3386,7 @@ declare const TaskRunExecution: z.ZodObject<{
|
|
|
3381
3386
|
createdAt: Date;
|
|
3382
3387
|
context?: any;
|
|
3383
3388
|
isTest?: boolean | undefined;
|
|
3389
|
+
idempotencyKey?: string | undefined;
|
|
3384
3390
|
}>;
|
|
3385
3391
|
queue: z.ZodObject<{
|
|
3386
3392
|
id: z.ZodString;
|
|
@@ -3467,6 +3473,7 @@ declare const TaskRunExecution: z.ZodObject<{
|
|
|
3467
3473
|
isTest: boolean;
|
|
3468
3474
|
createdAt: Date;
|
|
3469
3475
|
context?: any;
|
|
3476
|
+
idempotencyKey?: string | undefined;
|
|
3470
3477
|
};
|
|
3471
3478
|
environment: {
|
|
3472
3479
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -3513,6 +3520,7 @@ declare const TaskRunExecution: z.ZodObject<{
|
|
|
3513
3520
|
createdAt: Date;
|
|
3514
3521
|
context?: any;
|
|
3515
3522
|
isTest?: boolean | undefined;
|
|
3523
|
+
idempotencyKey?: string | undefined;
|
|
3516
3524
|
};
|
|
3517
3525
|
environment: {
|
|
3518
3526
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -3575,17 +3583,20 @@ declare const TaskRunContext: z.ZodObject<{
|
|
|
3575
3583
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
3576
3584
|
isTest: z.ZodDefault<z.ZodBoolean>;
|
|
3577
3585
|
createdAt: z.ZodDate;
|
|
3586
|
+
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
3578
3587
|
}, "payload" | "payloadType">, "strip", z.ZodTypeAny, {
|
|
3579
3588
|
id: string;
|
|
3580
3589
|
tags: string[];
|
|
3581
3590
|
isTest: boolean;
|
|
3582
3591
|
createdAt: Date;
|
|
3583
3592
|
context?: any;
|
|
3593
|
+
idempotencyKey?: string | undefined;
|
|
3584
3594
|
}, {
|
|
3585
3595
|
id: string;
|
|
3586
3596
|
tags: string[];
|
|
3587
3597
|
createdAt: Date;
|
|
3588
3598
|
context?: any;
|
|
3599
|
+
idempotencyKey?: string | undefined;
|
|
3589
3600
|
isTest?: boolean | undefined;
|
|
3590
3601
|
}>;
|
|
3591
3602
|
queue: z.ZodObject<{
|
|
@@ -3669,6 +3680,7 @@ declare const TaskRunContext: z.ZodObject<{
|
|
|
3669
3680
|
isTest: boolean;
|
|
3670
3681
|
createdAt: Date;
|
|
3671
3682
|
context?: any;
|
|
3683
|
+
idempotencyKey?: string | undefined;
|
|
3672
3684
|
};
|
|
3673
3685
|
environment: {
|
|
3674
3686
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -3710,6 +3722,7 @@ declare const TaskRunContext: z.ZodObject<{
|
|
|
3710
3722
|
tags: string[];
|
|
3711
3723
|
createdAt: Date;
|
|
3712
3724
|
context?: any;
|
|
3725
|
+
idempotencyKey?: string | undefined;
|
|
3713
3726
|
isTest?: boolean | undefined;
|
|
3714
3727
|
};
|
|
3715
3728
|
environment: {
|
|
@@ -4274,6 +4287,7 @@ declare const TaskRunExecutionPayload: z.ZodObject<{
|
|
|
4274
4287
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
4275
4288
|
isTest: z.ZodDefault<z.ZodBoolean>;
|
|
4276
4289
|
createdAt: z.ZodDate;
|
|
4290
|
+
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
4277
4291
|
}, "strip", z.ZodTypeAny, {
|
|
4278
4292
|
payload: string;
|
|
4279
4293
|
payloadType: string;
|
|
@@ -4282,6 +4296,7 @@ declare const TaskRunExecutionPayload: z.ZodObject<{
|
|
|
4282
4296
|
isTest: boolean;
|
|
4283
4297
|
createdAt: Date;
|
|
4284
4298
|
context?: any;
|
|
4299
|
+
idempotencyKey?: string | undefined;
|
|
4285
4300
|
}, {
|
|
4286
4301
|
payload: string;
|
|
4287
4302
|
payloadType: string;
|
|
@@ -4290,6 +4305,7 @@ declare const TaskRunExecutionPayload: z.ZodObject<{
|
|
|
4290
4305
|
createdAt: Date;
|
|
4291
4306
|
context?: any;
|
|
4292
4307
|
isTest?: boolean | undefined;
|
|
4308
|
+
idempotencyKey?: string | undefined;
|
|
4293
4309
|
}>;
|
|
4294
4310
|
queue: z.ZodObject<{
|
|
4295
4311
|
id: z.ZodString;
|
|
@@ -4376,6 +4392,7 @@ declare const TaskRunExecutionPayload: z.ZodObject<{
|
|
|
4376
4392
|
isTest: boolean;
|
|
4377
4393
|
createdAt: Date;
|
|
4378
4394
|
context?: any;
|
|
4395
|
+
idempotencyKey?: string | undefined;
|
|
4379
4396
|
};
|
|
4380
4397
|
environment: {
|
|
4381
4398
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -4422,6 +4439,7 @@ declare const TaskRunExecutionPayload: z.ZodObject<{
|
|
|
4422
4439
|
createdAt: Date;
|
|
4423
4440
|
context?: any;
|
|
4424
4441
|
isTest?: boolean | undefined;
|
|
4442
|
+
idempotencyKey?: string | undefined;
|
|
4425
4443
|
};
|
|
4426
4444
|
environment: {
|
|
4427
4445
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -4472,6 +4490,7 @@ declare const TaskRunExecutionPayload: z.ZodObject<{
|
|
|
4472
4490
|
isTest: boolean;
|
|
4473
4491
|
createdAt: Date;
|
|
4474
4492
|
context?: any;
|
|
4493
|
+
idempotencyKey?: string | undefined;
|
|
4475
4494
|
};
|
|
4476
4495
|
environment: {
|
|
4477
4496
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -4522,6 +4541,7 @@ declare const TaskRunExecutionPayload: z.ZodObject<{
|
|
|
4522
4541
|
createdAt: Date;
|
|
4523
4542
|
context?: any;
|
|
4524
4543
|
isTest?: boolean | undefined;
|
|
4544
|
+
idempotencyKey?: string | undefined;
|
|
4525
4545
|
};
|
|
4526
4546
|
environment: {
|
|
4527
4547
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -4601,6 +4621,7 @@ declare const ProdTaskRunExecution: z.ZodObject<{
|
|
|
4601
4621
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
4602
4622
|
isTest: z.ZodDefault<z.ZodBoolean>;
|
|
4603
4623
|
createdAt: z.ZodDate;
|
|
4624
|
+
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
4604
4625
|
}, "strip", z.ZodTypeAny, {
|
|
4605
4626
|
payload: string;
|
|
4606
4627
|
payloadType: string;
|
|
@@ -4609,6 +4630,7 @@ declare const ProdTaskRunExecution: z.ZodObject<{
|
|
|
4609
4630
|
isTest: boolean;
|
|
4610
4631
|
createdAt: Date;
|
|
4611
4632
|
context?: any;
|
|
4633
|
+
idempotencyKey?: string | undefined;
|
|
4612
4634
|
}, {
|
|
4613
4635
|
payload: string;
|
|
4614
4636
|
payloadType: string;
|
|
@@ -4617,6 +4639,7 @@ declare const ProdTaskRunExecution: z.ZodObject<{
|
|
|
4617
4639
|
createdAt: Date;
|
|
4618
4640
|
context?: any;
|
|
4619
4641
|
isTest?: boolean | undefined;
|
|
4642
|
+
idempotencyKey?: string | undefined;
|
|
4620
4643
|
}>;
|
|
4621
4644
|
environment: z.ZodObject<{
|
|
4622
4645
|
id: z.ZodString;
|
|
@@ -4706,6 +4729,7 @@ declare const ProdTaskRunExecution: z.ZodObject<{
|
|
|
4706
4729
|
isTest: boolean;
|
|
4707
4730
|
createdAt: Date;
|
|
4708
4731
|
context?: any;
|
|
4732
|
+
idempotencyKey?: string | undefined;
|
|
4709
4733
|
};
|
|
4710
4734
|
environment: {
|
|
4711
4735
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -4757,6 +4781,7 @@ declare const ProdTaskRunExecution: z.ZodObject<{
|
|
|
4757
4781
|
createdAt: Date;
|
|
4758
4782
|
context?: any;
|
|
4759
4783
|
isTest?: boolean | undefined;
|
|
4784
|
+
idempotencyKey?: string | undefined;
|
|
4760
4785
|
};
|
|
4761
4786
|
environment: {
|
|
4762
4787
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -4839,6 +4864,7 @@ declare const ProdTaskRunExecutionPayload: z.ZodObject<{
|
|
|
4839
4864
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
4840
4865
|
isTest: z.ZodDefault<z.ZodBoolean>;
|
|
4841
4866
|
createdAt: z.ZodDate;
|
|
4867
|
+
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
4842
4868
|
}, "strip", z.ZodTypeAny, {
|
|
4843
4869
|
payload: string;
|
|
4844
4870
|
payloadType: string;
|
|
@@ -4847,6 +4873,7 @@ declare const ProdTaskRunExecutionPayload: z.ZodObject<{
|
|
|
4847
4873
|
isTest: boolean;
|
|
4848
4874
|
createdAt: Date;
|
|
4849
4875
|
context?: any;
|
|
4876
|
+
idempotencyKey?: string | undefined;
|
|
4850
4877
|
}, {
|
|
4851
4878
|
payload: string;
|
|
4852
4879
|
payloadType: string;
|
|
@@ -4855,6 +4882,7 @@ declare const ProdTaskRunExecutionPayload: z.ZodObject<{
|
|
|
4855
4882
|
createdAt: Date;
|
|
4856
4883
|
context?: any;
|
|
4857
4884
|
isTest?: boolean | undefined;
|
|
4885
|
+
idempotencyKey?: string | undefined;
|
|
4858
4886
|
}>;
|
|
4859
4887
|
environment: z.ZodObject<{
|
|
4860
4888
|
id: z.ZodString;
|
|
@@ -4944,6 +4972,7 @@ declare const ProdTaskRunExecutionPayload: z.ZodObject<{
|
|
|
4944
4972
|
isTest: boolean;
|
|
4945
4973
|
createdAt: Date;
|
|
4946
4974
|
context?: any;
|
|
4975
|
+
idempotencyKey?: string | undefined;
|
|
4947
4976
|
};
|
|
4948
4977
|
environment: {
|
|
4949
4978
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -4995,6 +5024,7 @@ declare const ProdTaskRunExecutionPayload: z.ZodObject<{
|
|
|
4995
5024
|
createdAt: Date;
|
|
4996
5025
|
context?: any;
|
|
4997
5026
|
isTest?: boolean | undefined;
|
|
5027
|
+
idempotencyKey?: string | undefined;
|
|
4998
5028
|
};
|
|
4999
5029
|
environment: {
|
|
5000
5030
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -5050,6 +5080,7 @@ declare const ProdTaskRunExecutionPayload: z.ZodObject<{
|
|
|
5050
5080
|
isTest: boolean;
|
|
5051
5081
|
createdAt: Date;
|
|
5052
5082
|
context?: any;
|
|
5083
|
+
idempotencyKey?: string | undefined;
|
|
5053
5084
|
};
|
|
5054
5085
|
environment: {
|
|
5055
5086
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -5105,6 +5136,7 @@ declare const ProdTaskRunExecutionPayload: z.ZodObject<{
|
|
|
5105
5136
|
createdAt: Date;
|
|
5106
5137
|
context?: any;
|
|
5107
5138
|
isTest?: boolean | undefined;
|
|
5139
|
+
idempotencyKey?: string | undefined;
|
|
5108
5140
|
};
|
|
5109
5141
|
environment: {
|
|
5110
5142
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -5182,6 +5214,7 @@ declare const BackgroundWorkerServerMessages: z.ZodDiscriminatedUnion<"type", [z
|
|
|
5182
5214
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
5183
5215
|
isTest: z.ZodDefault<z.ZodBoolean>;
|
|
5184
5216
|
createdAt: z.ZodDate;
|
|
5217
|
+
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
5185
5218
|
}, "strip", z.ZodTypeAny, {
|
|
5186
5219
|
payload: string;
|
|
5187
5220
|
payloadType: string;
|
|
@@ -5190,6 +5223,7 @@ declare const BackgroundWorkerServerMessages: z.ZodDiscriminatedUnion<"type", [z
|
|
|
5190
5223
|
isTest: boolean;
|
|
5191
5224
|
createdAt: Date;
|
|
5192
5225
|
context?: any;
|
|
5226
|
+
idempotencyKey?: string | undefined;
|
|
5193
5227
|
}, {
|
|
5194
5228
|
payload: string;
|
|
5195
5229
|
payloadType: string;
|
|
@@ -5198,6 +5232,7 @@ declare const BackgroundWorkerServerMessages: z.ZodDiscriminatedUnion<"type", [z
|
|
|
5198
5232
|
createdAt: Date;
|
|
5199
5233
|
context?: any;
|
|
5200
5234
|
isTest?: boolean | undefined;
|
|
5235
|
+
idempotencyKey?: string | undefined;
|
|
5201
5236
|
}>;
|
|
5202
5237
|
queue: z.ZodObject<{
|
|
5203
5238
|
id: z.ZodString;
|
|
@@ -5284,6 +5319,7 @@ declare const BackgroundWorkerServerMessages: z.ZodDiscriminatedUnion<"type", [z
|
|
|
5284
5319
|
isTest: boolean;
|
|
5285
5320
|
createdAt: Date;
|
|
5286
5321
|
context?: any;
|
|
5322
|
+
idempotencyKey?: string | undefined;
|
|
5287
5323
|
};
|
|
5288
5324
|
environment: {
|
|
5289
5325
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -5330,6 +5366,7 @@ declare const BackgroundWorkerServerMessages: z.ZodDiscriminatedUnion<"type", [z
|
|
|
5330
5366
|
createdAt: Date;
|
|
5331
5367
|
context?: any;
|
|
5332
5368
|
isTest?: boolean | undefined;
|
|
5369
|
+
idempotencyKey?: string | undefined;
|
|
5333
5370
|
};
|
|
5334
5371
|
environment: {
|
|
5335
5372
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -5380,6 +5417,7 @@ declare const BackgroundWorkerServerMessages: z.ZodDiscriminatedUnion<"type", [z
|
|
|
5380
5417
|
isTest: boolean;
|
|
5381
5418
|
createdAt: Date;
|
|
5382
5419
|
context?: any;
|
|
5420
|
+
idempotencyKey?: string | undefined;
|
|
5383
5421
|
};
|
|
5384
5422
|
environment: {
|
|
5385
5423
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -5430,6 +5468,7 @@ declare const BackgroundWorkerServerMessages: z.ZodDiscriminatedUnion<"type", [z
|
|
|
5430
5468
|
createdAt: Date;
|
|
5431
5469
|
context?: any;
|
|
5432
5470
|
isTest?: boolean | undefined;
|
|
5471
|
+
idempotencyKey?: string | undefined;
|
|
5433
5472
|
};
|
|
5434
5473
|
environment: {
|
|
5435
5474
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -5483,6 +5522,7 @@ declare const BackgroundWorkerServerMessages: z.ZodDiscriminatedUnion<"type", [z
|
|
|
5483
5522
|
isTest: boolean;
|
|
5484
5523
|
createdAt: Date;
|
|
5485
5524
|
context?: any;
|
|
5525
|
+
idempotencyKey?: string | undefined;
|
|
5486
5526
|
};
|
|
5487
5527
|
environment: {
|
|
5488
5528
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -5536,6 +5576,7 @@ declare const BackgroundWorkerServerMessages: z.ZodDiscriminatedUnion<"type", [z
|
|
|
5536
5576
|
createdAt: Date;
|
|
5537
5577
|
context?: any;
|
|
5538
5578
|
isTest?: boolean | undefined;
|
|
5579
|
+
idempotencyKey?: string | undefined;
|
|
5539
5580
|
};
|
|
5540
5581
|
environment: {
|
|
5541
5582
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -5688,6 +5729,7 @@ declare const serverWebsocketMessages: {
|
|
|
5688
5729
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
5689
5730
|
isTest: z.ZodDefault<z.ZodBoolean>;
|
|
5690
5731
|
createdAt: z.ZodDate;
|
|
5732
|
+
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
5691
5733
|
}, "strip", z.ZodTypeAny, {
|
|
5692
5734
|
payload: string;
|
|
5693
5735
|
payloadType: string;
|
|
@@ -5696,6 +5738,7 @@ declare const serverWebsocketMessages: {
|
|
|
5696
5738
|
isTest: boolean;
|
|
5697
5739
|
createdAt: Date;
|
|
5698
5740
|
context?: any;
|
|
5741
|
+
idempotencyKey?: string | undefined;
|
|
5699
5742
|
}, {
|
|
5700
5743
|
payload: string;
|
|
5701
5744
|
payloadType: string;
|
|
@@ -5704,6 +5747,7 @@ declare const serverWebsocketMessages: {
|
|
|
5704
5747
|
createdAt: Date;
|
|
5705
5748
|
context?: any;
|
|
5706
5749
|
isTest?: boolean | undefined;
|
|
5750
|
+
idempotencyKey?: string | undefined;
|
|
5707
5751
|
}>;
|
|
5708
5752
|
queue: z.ZodObject<{
|
|
5709
5753
|
id: z.ZodString;
|
|
@@ -5790,6 +5834,7 @@ declare const serverWebsocketMessages: {
|
|
|
5790
5834
|
isTest: boolean;
|
|
5791
5835
|
createdAt: Date;
|
|
5792
5836
|
context?: any;
|
|
5837
|
+
idempotencyKey?: string | undefined;
|
|
5793
5838
|
};
|
|
5794
5839
|
environment: {
|
|
5795
5840
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -5836,6 +5881,7 @@ declare const serverWebsocketMessages: {
|
|
|
5836
5881
|
createdAt: Date;
|
|
5837
5882
|
context?: any;
|
|
5838
5883
|
isTest?: boolean | undefined;
|
|
5884
|
+
idempotencyKey?: string | undefined;
|
|
5839
5885
|
};
|
|
5840
5886
|
environment: {
|
|
5841
5887
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -5886,6 +5932,7 @@ declare const serverWebsocketMessages: {
|
|
|
5886
5932
|
isTest: boolean;
|
|
5887
5933
|
createdAt: Date;
|
|
5888
5934
|
context?: any;
|
|
5935
|
+
idempotencyKey?: string | undefined;
|
|
5889
5936
|
};
|
|
5890
5937
|
environment: {
|
|
5891
5938
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -5936,6 +5983,7 @@ declare const serverWebsocketMessages: {
|
|
|
5936
5983
|
createdAt: Date;
|
|
5937
5984
|
context?: any;
|
|
5938
5985
|
isTest?: boolean | undefined;
|
|
5986
|
+
idempotencyKey?: string | undefined;
|
|
5939
5987
|
};
|
|
5940
5988
|
environment: {
|
|
5941
5989
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -5989,6 +6037,7 @@ declare const serverWebsocketMessages: {
|
|
|
5989
6037
|
isTest: boolean;
|
|
5990
6038
|
createdAt: Date;
|
|
5991
6039
|
context?: any;
|
|
6040
|
+
idempotencyKey?: string | undefined;
|
|
5992
6041
|
};
|
|
5993
6042
|
environment: {
|
|
5994
6043
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -6042,6 +6091,7 @@ declare const serverWebsocketMessages: {
|
|
|
6042
6091
|
createdAt: Date;
|
|
6043
6092
|
context?: any;
|
|
6044
6093
|
isTest?: boolean | undefined;
|
|
6094
|
+
idempotencyKey?: string | undefined;
|
|
6045
6095
|
};
|
|
6046
6096
|
environment: {
|
|
6047
6097
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -6162,6 +6212,7 @@ declare const serverWebsocketMessages: {
|
|
|
6162
6212
|
isTest: boolean;
|
|
6163
6213
|
createdAt: Date;
|
|
6164
6214
|
context?: any;
|
|
6215
|
+
idempotencyKey?: string | undefined;
|
|
6165
6216
|
};
|
|
6166
6217
|
environment: {
|
|
6167
6218
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -6238,6 +6289,7 @@ declare const serverWebsocketMessages: {
|
|
|
6238
6289
|
createdAt: Date;
|
|
6239
6290
|
context?: any;
|
|
6240
6291
|
isTest?: boolean | undefined;
|
|
6292
|
+
idempotencyKey?: string | undefined;
|
|
6241
6293
|
};
|
|
6242
6294
|
environment: {
|
|
6243
6295
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -6462,6 +6514,7 @@ declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"type", [z
|
|
|
6462
6514
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
6463
6515
|
isTest: z.ZodDefault<z.ZodBoolean>;
|
|
6464
6516
|
createdAt: z.ZodDate;
|
|
6517
|
+
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
6465
6518
|
}, "strip", z.ZodTypeAny, {
|
|
6466
6519
|
payload: string;
|
|
6467
6520
|
payloadType: string;
|
|
@@ -6470,6 +6523,7 @@ declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"type", [z
|
|
|
6470
6523
|
isTest: boolean;
|
|
6471
6524
|
createdAt: Date;
|
|
6472
6525
|
context?: any;
|
|
6526
|
+
idempotencyKey?: string | undefined;
|
|
6473
6527
|
}, {
|
|
6474
6528
|
payload: string;
|
|
6475
6529
|
payloadType: string;
|
|
@@ -6478,6 +6532,7 @@ declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"type", [z
|
|
|
6478
6532
|
createdAt: Date;
|
|
6479
6533
|
context?: any;
|
|
6480
6534
|
isTest?: boolean | undefined;
|
|
6535
|
+
idempotencyKey?: string | undefined;
|
|
6481
6536
|
}>;
|
|
6482
6537
|
queue: z.ZodObject<{
|
|
6483
6538
|
id: z.ZodString;
|
|
@@ -6564,6 +6619,7 @@ declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"type", [z
|
|
|
6564
6619
|
isTest: boolean;
|
|
6565
6620
|
createdAt: Date;
|
|
6566
6621
|
context?: any;
|
|
6622
|
+
idempotencyKey?: string | undefined;
|
|
6567
6623
|
};
|
|
6568
6624
|
environment: {
|
|
6569
6625
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -6610,6 +6666,7 @@ declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"type", [z
|
|
|
6610
6666
|
createdAt: Date;
|
|
6611
6667
|
context?: any;
|
|
6612
6668
|
isTest?: boolean | undefined;
|
|
6669
|
+
idempotencyKey?: string | undefined;
|
|
6613
6670
|
};
|
|
6614
6671
|
environment: {
|
|
6615
6672
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -6660,6 +6717,7 @@ declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"type", [z
|
|
|
6660
6717
|
isTest: boolean;
|
|
6661
6718
|
createdAt: Date;
|
|
6662
6719
|
context?: any;
|
|
6720
|
+
idempotencyKey?: string | undefined;
|
|
6663
6721
|
};
|
|
6664
6722
|
environment: {
|
|
6665
6723
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -6740,6 +6798,7 @@ declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"type", [z
|
|
|
6740
6798
|
createdAt: Date;
|
|
6741
6799
|
context?: any;
|
|
6742
6800
|
isTest?: boolean | undefined;
|
|
6801
|
+
idempotencyKey?: string | undefined;
|
|
6743
6802
|
};
|
|
6744
6803
|
environment: {
|
|
6745
6804
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -7021,6 +7080,7 @@ declare const clientWebsocketMessages: {
|
|
|
7021
7080
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
7022
7081
|
isTest: z.ZodDefault<z.ZodBoolean>;
|
|
7023
7082
|
createdAt: z.ZodDate;
|
|
7083
|
+
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
7024
7084
|
}, "strip", z.ZodTypeAny, {
|
|
7025
7085
|
payload: string;
|
|
7026
7086
|
payloadType: string;
|
|
@@ -7029,6 +7089,7 @@ declare const clientWebsocketMessages: {
|
|
|
7029
7089
|
isTest: boolean;
|
|
7030
7090
|
createdAt: Date;
|
|
7031
7091
|
context?: any;
|
|
7092
|
+
idempotencyKey?: string | undefined;
|
|
7032
7093
|
}, {
|
|
7033
7094
|
payload: string;
|
|
7034
7095
|
payloadType: string;
|
|
@@ -7037,6 +7098,7 @@ declare const clientWebsocketMessages: {
|
|
|
7037
7098
|
createdAt: Date;
|
|
7038
7099
|
context?: any;
|
|
7039
7100
|
isTest?: boolean | undefined;
|
|
7101
|
+
idempotencyKey?: string | undefined;
|
|
7040
7102
|
}>;
|
|
7041
7103
|
queue: z.ZodObject<{
|
|
7042
7104
|
id: z.ZodString;
|
|
@@ -7123,6 +7185,7 @@ declare const clientWebsocketMessages: {
|
|
|
7123
7185
|
isTest: boolean;
|
|
7124
7186
|
createdAt: Date;
|
|
7125
7187
|
context?: any;
|
|
7188
|
+
idempotencyKey?: string | undefined;
|
|
7126
7189
|
};
|
|
7127
7190
|
environment: {
|
|
7128
7191
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -7169,6 +7232,7 @@ declare const clientWebsocketMessages: {
|
|
|
7169
7232
|
createdAt: Date;
|
|
7170
7233
|
context?: any;
|
|
7171
7234
|
isTest?: boolean | undefined;
|
|
7235
|
+
idempotencyKey?: string | undefined;
|
|
7172
7236
|
};
|
|
7173
7237
|
environment: {
|
|
7174
7238
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -7219,6 +7283,7 @@ declare const clientWebsocketMessages: {
|
|
|
7219
7283
|
isTest: boolean;
|
|
7220
7284
|
createdAt: Date;
|
|
7221
7285
|
context?: any;
|
|
7286
|
+
idempotencyKey?: string | undefined;
|
|
7222
7287
|
};
|
|
7223
7288
|
environment: {
|
|
7224
7289
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -7299,6 +7364,7 @@ declare const clientWebsocketMessages: {
|
|
|
7299
7364
|
createdAt: Date;
|
|
7300
7365
|
context?: any;
|
|
7301
7366
|
isTest?: boolean | undefined;
|
|
7367
|
+
idempotencyKey?: string | undefined;
|
|
7302
7368
|
};
|
|
7303
7369
|
environment: {
|
|
7304
7370
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -7395,6 +7461,7 @@ declare const clientWebsocketMessages: {
|
|
|
7395
7461
|
isTest: boolean;
|
|
7396
7462
|
createdAt: Date;
|
|
7397
7463
|
context?: any;
|
|
7464
|
+
idempotencyKey?: string | undefined;
|
|
7398
7465
|
};
|
|
7399
7466
|
environment: {
|
|
7400
7467
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -7483,6 +7550,7 @@ declare const clientWebsocketMessages: {
|
|
|
7483
7550
|
createdAt: Date;
|
|
7484
7551
|
context?: any;
|
|
7485
7552
|
isTest?: boolean | undefined;
|
|
7553
|
+
idempotencyKey?: string | undefined;
|
|
7486
7554
|
};
|
|
7487
7555
|
environment: {
|
|
7488
7556
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -7592,6 +7660,7 @@ declare const workerToChildMessages: {
|
|
|
7592
7660
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
7593
7661
|
isTest: z.ZodDefault<z.ZodBoolean>;
|
|
7594
7662
|
createdAt: z.ZodDate;
|
|
7663
|
+
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
7595
7664
|
}, "strip", z.ZodTypeAny, {
|
|
7596
7665
|
payload: string;
|
|
7597
7666
|
payloadType: string;
|
|
@@ -7600,6 +7669,7 @@ declare const workerToChildMessages: {
|
|
|
7600
7669
|
isTest: boolean;
|
|
7601
7670
|
createdAt: Date;
|
|
7602
7671
|
context?: any;
|
|
7672
|
+
idempotencyKey?: string | undefined;
|
|
7603
7673
|
}, {
|
|
7604
7674
|
payload: string;
|
|
7605
7675
|
payloadType: string;
|
|
@@ -7608,6 +7678,7 @@ declare const workerToChildMessages: {
|
|
|
7608
7678
|
createdAt: Date;
|
|
7609
7679
|
context?: any;
|
|
7610
7680
|
isTest?: boolean | undefined;
|
|
7681
|
+
idempotencyKey?: string | undefined;
|
|
7611
7682
|
}>;
|
|
7612
7683
|
queue: z.ZodObject<{
|
|
7613
7684
|
id: z.ZodString;
|
|
@@ -7694,6 +7765,7 @@ declare const workerToChildMessages: {
|
|
|
7694
7765
|
isTest: boolean;
|
|
7695
7766
|
createdAt: Date;
|
|
7696
7767
|
context?: any;
|
|
7768
|
+
idempotencyKey?: string | undefined;
|
|
7697
7769
|
};
|
|
7698
7770
|
environment: {
|
|
7699
7771
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -7740,6 +7812,7 @@ declare const workerToChildMessages: {
|
|
|
7740
7812
|
createdAt: Date;
|
|
7741
7813
|
context?: any;
|
|
7742
7814
|
isTest?: boolean | undefined;
|
|
7815
|
+
idempotencyKey?: string | undefined;
|
|
7743
7816
|
};
|
|
7744
7817
|
environment: {
|
|
7745
7818
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -7803,6 +7876,7 @@ declare const workerToChildMessages: {
|
|
|
7803
7876
|
isTest: boolean;
|
|
7804
7877
|
createdAt: Date;
|
|
7805
7878
|
context?: any;
|
|
7879
|
+
idempotencyKey?: string | undefined;
|
|
7806
7880
|
};
|
|
7807
7881
|
environment: {
|
|
7808
7882
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -7857,6 +7931,7 @@ declare const workerToChildMessages: {
|
|
|
7857
7931
|
createdAt: Date;
|
|
7858
7932
|
context?: any;
|
|
7859
7933
|
isTest?: boolean | undefined;
|
|
7934
|
+
idempotencyKey?: string | undefined;
|
|
7860
7935
|
};
|
|
7861
7936
|
environment: {
|
|
7862
7937
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -8061,6 +8136,7 @@ declare const workerToChildMessages: {
|
|
|
8061
8136
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
8062
8137
|
isTest: z.ZodDefault<z.ZodBoolean>;
|
|
8063
8138
|
createdAt: z.ZodDate;
|
|
8139
|
+
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
8064
8140
|
}, "strip", z.ZodTypeAny, {
|
|
8065
8141
|
payload: string;
|
|
8066
8142
|
payloadType: string;
|
|
@@ -8069,6 +8145,7 @@ declare const workerToChildMessages: {
|
|
|
8069
8145
|
isTest: boolean;
|
|
8070
8146
|
createdAt: Date;
|
|
8071
8147
|
context?: any;
|
|
8148
|
+
idempotencyKey?: string | undefined;
|
|
8072
8149
|
}, {
|
|
8073
8150
|
payload: string;
|
|
8074
8151
|
payloadType: string;
|
|
@@ -8077,6 +8154,7 @@ declare const workerToChildMessages: {
|
|
|
8077
8154
|
createdAt: Date;
|
|
8078
8155
|
context?: any;
|
|
8079
8156
|
isTest?: boolean | undefined;
|
|
8157
|
+
idempotencyKey?: string | undefined;
|
|
8080
8158
|
}>;
|
|
8081
8159
|
queue: z.ZodObject<{
|
|
8082
8160
|
id: z.ZodString;
|
|
@@ -8163,6 +8241,7 @@ declare const workerToChildMessages: {
|
|
|
8163
8241
|
isTest: boolean;
|
|
8164
8242
|
createdAt: Date;
|
|
8165
8243
|
context?: any;
|
|
8244
|
+
idempotencyKey?: string | undefined;
|
|
8166
8245
|
};
|
|
8167
8246
|
environment: {
|
|
8168
8247
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -8209,6 +8288,7 @@ declare const workerToChildMessages: {
|
|
|
8209
8288
|
createdAt: Date;
|
|
8210
8289
|
context?: any;
|
|
8211
8290
|
isTest?: boolean | undefined;
|
|
8291
|
+
idempotencyKey?: string | undefined;
|
|
8212
8292
|
};
|
|
8213
8293
|
environment: {
|
|
8214
8294
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -8258,6 +8338,7 @@ declare const workerToChildMessages: {
|
|
|
8258
8338
|
isTest: boolean;
|
|
8259
8339
|
createdAt: Date;
|
|
8260
8340
|
context?: any;
|
|
8341
|
+
idempotencyKey?: string | undefined;
|
|
8261
8342
|
};
|
|
8262
8343
|
environment: {
|
|
8263
8344
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -8337,6 +8418,7 @@ declare const workerToChildMessages: {
|
|
|
8337
8418
|
createdAt: Date;
|
|
8338
8419
|
context?: any;
|
|
8339
8420
|
isTest?: boolean | undefined;
|
|
8421
|
+
idempotencyKey?: string | undefined;
|
|
8340
8422
|
};
|
|
8341
8423
|
environment: {
|
|
8342
8424
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -9737,6 +9819,7 @@ declare const childToWorkerMessages: {
|
|
|
9737
9819
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
9738
9820
|
isTest: z.ZodDefault<z.ZodBoolean>;
|
|
9739
9821
|
createdAt: z.ZodDate;
|
|
9822
|
+
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
9740
9823
|
}, "strip", z.ZodTypeAny, {
|
|
9741
9824
|
payload: string;
|
|
9742
9825
|
payloadType: string;
|
|
@@ -9745,6 +9828,7 @@ declare const childToWorkerMessages: {
|
|
|
9745
9828
|
isTest: boolean;
|
|
9746
9829
|
createdAt: Date;
|
|
9747
9830
|
context?: any;
|
|
9831
|
+
idempotencyKey?: string | undefined;
|
|
9748
9832
|
}, {
|
|
9749
9833
|
payload: string;
|
|
9750
9834
|
payloadType: string;
|
|
@@ -9753,6 +9837,7 @@ declare const childToWorkerMessages: {
|
|
|
9753
9837
|
createdAt: Date;
|
|
9754
9838
|
context?: any;
|
|
9755
9839
|
isTest?: boolean | undefined;
|
|
9840
|
+
idempotencyKey?: string | undefined;
|
|
9756
9841
|
}>;
|
|
9757
9842
|
queue: z.ZodObject<{
|
|
9758
9843
|
id: z.ZodString;
|
|
@@ -9839,6 +9924,7 @@ declare const childToWorkerMessages: {
|
|
|
9839
9924
|
isTest: boolean;
|
|
9840
9925
|
createdAt: Date;
|
|
9841
9926
|
context?: any;
|
|
9927
|
+
idempotencyKey?: string | undefined;
|
|
9842
9928
|
};
|
|
9843
9929
|
environment: {
|
|
9844
9930
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -9885,6 +9971,7 @@ declare const childToWorkerMessages: {
|
|
|
9885
9971
|
createdAt: Date;
|
|
9886
9972
|
context?: any;
|
|
9887
9973
|
isTest?: boolean | undefined;
|
|
9974
|
+
idempotencyKey?: string | undefined;
|
|
9888
9975
|
};
|
|
9889
9976
|
environment: {
|
|
9890
9977
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -10063,6 +10150,7 @@ declare const childToWorkerMessages: {
|
|
|
10063
10150
|
isTest: boolean;
|
|
10064
10151
|
createdAt: Date;
|
|
10065
10152
|
context?: any;
|
|
10153
|
+
idempotencyKey?: string | undefined;
|
|
10066
10154
|
};
|
|
10067
10155
|
environment: {
|
|
10068
10156
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -10142,6 +10230,7 @@ declare const childToWorkerMessages: {
|
|
|
10142
10230
|
createdAt: Date;
|
|
10143
10231
|
context?: any;
|
|
10144
10232
|
isTest?: boolean | undefined;
|
|
10233
|
+
idempotencyKey?: string | undefined;
|
|
10145
10234
|
};
|
|
10146
10235
|
environment: {
|
|
10147
10236
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -10834,6 +10923,7 @@ declare const ProdChildToWorkerMessages: {
|
|
|
10834
10923
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
10835
10924
|
isTest: z.ZodDefault<z.ZodBoolean>;
|
|
10836
10925
|
createdAt: z.ZodDate;
|
|
10926
|
+
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
10837
10927
|
}, "strip", z.ZodTypeAny, {
|
|
10838
10928
|
payload: string;
|
|
10839
10929
|
payloadType: string;
|
|
@@ -10842,6 +10932,7 @@ declare const ProdChildToWorkerMessages: {
|
|
|
10842
10932
|
isTest: boolean;
|
|
10843
10933
|
createdAt: Date;
|
|
10844
10934
|
context?: any;
|
|
10935
|
+
idempotencyKey?: string | undefined;
|
|
10845
10936
|
}, {
|
|
10846
10937
|
payload: string;
|
|
10847
10938
|
payloadType: string;
|
|
@@ -10850,6 +10941,7 @@ declare const ProdChildToWorkerMessages: {
|
|
|
10850
10941
|
createdAt: Date;
|
|
10851
10942
|
context?: any;
|
|
10852
10943
|
isTest?: boolean | undefined;
|
|
10944
|
+
idempotencyKey?: string | undefined;
|
|
10853
10945
|
}>;
|
|
10854
10946
|
queue: z.ZodObject<{
|
|
10855
10947
|
id: z.ZodString;
|
|
@@ -10936,6 +11028,7 @@ declare const ProdChildToWorkerMessages: {
|
|
|
10936
11028
|
isTest: boolean;
|
|
10937
11029
|
createdAt: Date;
|
|
10938
11030
|
context?: any;
|
|
11031
|
+
idempotencyKey?: string | undefined;
|
|
10939
11032
|
};
|
|
10940
11033
|
environment: {
|
|
10941
11034
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -10982,6 +11075,7 @@ declare const ProdChildToWorkerMessages: {
|
|
|
10982
11075
|
createdAt: Date;
|
|
10983
11076
|
context?: any;
|
|
10984
11077
|
isTest?: boolean | undefined;
|
|
11078
|
+
idempotencyKey?: string | undefined;
|
|
10985
11079
|
};
|
|
10986
11080
|
environment: {
|
|
10987
11081
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -11160,6 +11254,7 @@ declare const ProdChildToWorkerMessages: {
|
|
|
11160
11254
|
isTest: boolean;
|
|
11161
11255
|
createdAt: Date;
|
|
11162
11256
|
context?: any;
|
|
11257
|
+
idempotencyKey?: string | undefined;
|
|
11163
11258
|
};
|
|
11164
11259
|
environment: {
|
|
11165
11260
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -11239,6 +11334,7 @@ declare const ProdChildToWorkerMessages: {
|
|
|
11239
11334
|
createdAt: Date;
|
|
11240
11335
|
context?: any;
|
|
11241
11336
|
isTest?: boolean | undefined;
|
|
11337
|
+
idempotencyKey?: string | undefined;
|
|
11242
11338
|
};
|
|
11243
11339
|
environment: {
|
|
11244
11340
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -11976,6 +12072,7 @@ declare const ProdWorkerToChildMessages: {
|
|
|
11976
12072
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
11977
12073
|
isTest: z.ZodDefault<z.ZodBoolean>;
|
|
11978
12074
|
createdAt: z.ZodDate;
|
|
12075
|
+
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
11979
12076
|
}, "strip", z.ZodTypeAny, {
|
|
11980
12077
|
payload: string;
|
|
11981
12078
|
payloadType: string;
|
|
@@ -11984,6 +12081,7 @@ declare const ProdWorkerToChildMessages: {
|
|
|
11984
12081
|
isTest: boolean;
|
|
11985
12082
|
createdAt: Date;
|
|
11986
12083
|
context?: any;
|
|
12084
|
+
idempotencyKey?: string | undefined;
|
|
11987
12085
|
}, {
|
|
11988
12086
|
payload: string;
|
|
11989
12087
|
payloadType: string;
|
|
@@ -11992,6 +12090,7 @@ declare const ProdWorkerToChildMessages: {
|
|
|
11992
12090
|
createdAt: Date;
|
|
11993
12091
|
context?: any;
|
|
11994
12092
|
isTest?: boolean | undefined;
|
|
12093
|
+
idempotencyKey?: string | undefined;
|
|
11995
12094
|
}>;
|
|
11996
12095
|
queue: z.ZodObject<{
|
|
11997
12096
|
id: z.ZodString;
|
|
@@ -12078,6 +12177,7 @@ declare const ProdWorkerToChildMessages: {
|
|
|
12078
12177
|
isTest: boolean;
|
|
12079
12178
|
createdAt: Date;
|
|
12080
12179
|
context?: any;
|
|
12180
|
+
idempotencyKey?: string | undefined;
|
|
12081
12181
|
};
|
|
12082
12182
|
environment: {
|
|
12083
12183
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -12124,6 +12224,7 @@ declare const ProdWorkerToChildMessages: {
|
|
|
12124
12224
|
createdAt: Date;
|
|
12125
12225
|
context?: any;
|
|
12126
12226
|
isTest?: boolean | undefined;
|
|
12227
|
+
idempotencyKey?: string | undefined;
|
|
12127
12228
|
};
|
|
12128
12229
|
environment: {
|
|
12129
12230
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -12187,6 +12288,7 @@ declare const ProdWorkerToChildMessages: {
|
|
|
12187
12288
|
isTest: boolean;
|
|
12188
12289
|
createdAt: Date;
|
|
12189
12290
|
context?: any;
|
|
12291
|
+
idempotencyKey?: string | undefined;
|
|
12190
12292
|
};
|
|
12191
12293
|
environment: {
|
|
12192
12294
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -12241,6 +12343,7 @@ declare const ProdWorkerToChildMessages: {
|
|
|
12241
12343
|
createdAt: Date;
|
|
12242
12344
|
context?: any;
|
|
12243
12345
|
isTest?: boolean | undefined;
|
|
12346
|
+
idempotencyKey?: string | undefined;
|
|
12244
12347
|
};
|
|
12245
12348
|
environment: {
|
|
12246
12349
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -12447,6 +12550,7 @@ declare const ProdWorkerToChildMessages: {
|
|
|
12447
12550
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
12448
12551
|
isTest: z.ZodDefault<z.ZodBoolean>;
|
|
12449
12552
|
createdAt: z.ZodDate;
|
|
12553
|
+
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
12450
12554
|
}, "strip", z.ZodTypeAny, {
|
|
12451
12555
|
payload: string;
|
|
12452
12556
|
payloadType: string;
|
|
@@ -12455,6 +12559,7 @@ declare const ProdWorkerToChildMessages: {
|
|
|
12455
12559
|
isTest: boolean;
|
|
12456
12560
|
createdAt: Date;
|
|
12457
12561
|
context?: any;
|
|
12562
|
+
idempotencyKey?: string | undefined;
|
|
12458
12563
|
}, {
|
|
12459
12564
|
payload: string;
|
|
12460
12565
|
payloadType: string;
|
|
@@ -12463,6 +12568,7 @@ declare const ProdWorkerToChildMessages: {
|
|
|
12463
12568
|
createdAt: Date;
|
|
12464
12569
|
context?: any;
|
|
12465
12570
|
isTest?: boolean | undefined;
|
|
12571
|
+
idempotencyKey?: string | undefined;
|
|
12466
12572
|
}>;
|
|
12467
12573
|
queue: z.ZodObject<{
|
|
12468
12574
|
id: z.ZodString;
|
|
@@ -12549,6 +12655,7 @@ declare const ProdWorkerToChildMessages: {
|
|
|
12549
12655
|
isTest: boolean;
|
|
12550
12656
|
createdAt: Date;
|
|
12551
12657
|
context?: any;
|
|
12658
|
+
idempotencyKey?: string | undefined;
|
|
12552
12659
|
};
|
|
12553
12660
|
environment: {
|
|
12554
12661
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -12595,6 +12702,7 @@ declare const ProdWorkerToChildMessages: {
|
|
|
12595
12702
|
createdAt: Date;
|
|
12596
12703
|
context?: any;
|
|
12597
12704
|
isTest?: boolean | undefined;
|
|
12705
|
+
idempotencyKey?: string | undefined;
|
|
12598
12706
|
};
|
|
12599
12707
|
environment: {
|
|
12600
12708
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -12644,6 +12752,7 @@ declare const ProdWorkerToChildMessages: {
|
|
|
12644
12752
|
isTest: boolean;
|
|
12645
12753
|
createdAt: Date;
|
|
12646
12754
|
context?: any;
|
|
12755
|
+
idempotencyKey?: string | undefined;
|
|
12647
12756
|
};
|
|
12648
12757
|
environment: {
|
|
12649
12758
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -12723,6 +12832,7 @@ declare const ProdWorkerToChildMessages: {
|
|
|
12723
12832
|
createdAt: Date;
|
|
12724
12833
|
context?: any;
|
|
12725
12834
|
isTest?: boolean | undefined;
|
|
12835
|
+
idempotencyKey?: string | undefined;
|
|
12726
12836
|
};
|
|
12727
12837
|
environment: {
|
|
12728
12838
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -14023,6 +14133,7 @@ declare const CoordinatorToPlatformMessages: {
|
|
|
14023
14133
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
14024
14134
|
isTest: z.ZodDefault<z.ZodBoolean>;
|
|
14025
14135
|
createdAt: z.ZodDate;
|
|
14136
|
+
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
14026
14137
|
}, "strip", z.ZodTypeAny, {
|
|
14027
14138
|
payload: string;
|
|
14028
14139
|
payloadType: string;
|
|
@@ -14031,6 +14142,7 @@ declare const CoordinatorToPlatformMessages: {
|
|
|
14031
14142
|
isTest: boolean;
|
|
14032
14143
|
createdAt: Date;
|
|
14033
14144
|
context?: any;
|
|
14145
|
+
idempotencyKey?: string | undefined;
|
|
14034
14146
|
}, {
|
|
14035
14147
|
payload: string;
|
|
14036
14148
|
payloadType: string;
|
|
@@ -14039,6 +14151,7 @@ declare const CoordinatorToPlatformMessages: {
|
|
|
14039
14151
|
createdAt: Date;
|
|
14040
14152
|
context?: any;
|
|
14041
14153
|
isTest?: boolean | undefined;
|
|
14154
|
+
idempotencyKey?: string | undefined;
|
|
14042
14155
|
}>;
|
|
14043
14156
|
environment: z.ZodObject<{
|
|
14044
14157
|
id: z.ZodString;
|
|
@@ -14128,6 +14241,7 @@ declare const CoordinatorToPlatformMessages: {
|
|
|
14128
14241
|
isTest: boolean;
|
|
14129
14242
|
createdAt: Date;
|
|
14130
14243
|
context?: any;
|
|
14244
|
+
idempotencyKey?: string | undefined;
|
|
14131
14245
|
};
|
|
14132
14246
|
environment: {
|
|
14133
14247
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -14179,6 +14293,7 @@ declare const CoordinatorToPlatformMessages: {
|
|
|
14179
14293
|
createdAt: Date;
|
|
14180
14294
|
context?: any;
|
|
14181
14295
|
isTest?: boolean | undefined;
|
|
14296
|
+
idempotencyKey?: string | undefined;
|
|
14182
14297
|
};
|
|
14183
14298
|
environment: {
|
|
14184
14299
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -14234,6 +14349,7 @@ declare const CoordinatorToPlatformMessages: {
|
|
|
14234
14349
|
isTest: boolean;
|
|
14235
14350
|
createdAt: Date;
|
|
14236
14351
|
context?: any;
|
|
14352
|
+
idempotencyKey?: string | undefined;
|
|
14237
14353
|
};
|
|
14238
14354
|
environment: {
|
|
14239
14355
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -14289,6 +14405,7 @@ declare const CoordinatorToPlatformMessages: {
|
|
|
14289
14405
|
createdAt: Date;
|
|
14290
14406
|
context?: any;
|
|
14291
14407
|
isTest?: boolean | undefined;
|
|
14408
|
+
idempotencyKey?: string | undefined;
|
|
14292
14409
|
};
|
|
14293
14410
|
environment: {
|
|
14294
14411
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -14346,6 +14463,7 @@ declare const CoordinatorToPlatformMessages: {
|
|
|
14346
14463
|
isTest: boolean;
|
|
14347
14464
|
createdAt: Date;
|
|
14348
14465
|
context?: any;
|
|
14466
|
+
idempotencyKey?: string | undefined;
|
|
14349
14467
|
};
|
|
14350
14468
|
environment: {
|
|
14351
14469
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -14404,6 +14522,7 @@ declare const CoordinatorToPlatformMessages: {
|
|
|
14404
14522
|
createdAt: Date;
|
|
14405
14523
|
context?: any;
|
|
14406
14524
|
isTest?: boolean | undefined;
|
|
14525
|
+
idempotencyKey?: string | undefined;
|
|
14407
14526
|
};
|
|
14408
14527
|
environment: {
|
|
14409
14528
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -14508,6 +14627,7 @@ declare const CoordinatorToPlatformMessages: {
|
|
|
14508
14627
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
14509
14628
|
isTest: z.ZodDefault<z.ZodBoolean>;
|
|
14510
14629
|
createdAt: z.ZodDate;
|
|
14630
|
+
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
14511
14631
|
}, "strip", z.ZodTypeAny, {
|
|
14512
14632
|
payload: string;
|
|
14513
14633
|
payloadType: string;
|
|
@@ -14516,6 +14636,7 @@ declare const CoordinatorToPlatformMessages: {
|
|
|
14516
14636
|
isTest: boolean;
|
|
14517
14637
|
createdAt: Date;
|
|
14518
14638
|
context?: any;
|
|
14639
|
+
idempotencyKey?: string | undefined;
|
|
14519
14640
|
}, {
|
|
14520
14641
|
payload: string;
|
|
14521
14642
|
payloadType: string;
|
|
@@ -14524,6 +14645,7 @@ declare const CoordinatorToPlatformMessages: {
|
|
|
14524
14645
|
createdAt: Date;
|
|
14525
14646
|
context?: any;
|
|
14526
14647
|
isTest?: boolean | undefined;
|
|
14648
|
+
idempotencyKey?: string | undefined;
|
|
14527
14649
|
}>;
|
|
14528
14650
|
environment: z.ZodObject<{
|
|
14529
14651
|
id: z.ZodString;
|
|
@@ -14613,6 +14735,7 @@ declare const CoordinatorToPlatformMessages: {
|
|
|
14613
14735
|
isTest: boolean;
|
|
14614
14736
|
createdAt: Date;
|
|
14615
14737
|
context?: any;
|
|
14738
|
+
idempotencyKey?: string | undefined;
|
|
14616
14739
|
};
|
|
14617
14740
|
environment: {
|
|
14618
14741
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -14664,6 +14787,7 @@ declare const CoordinatorToPlatformMessages: {
|
|
|
14664
14787
|
createdAt: Date;
|
|
14665
14788
|
context?: any;
|
|
14666
14789
|
isTest?: boolean | undefined;
|
|
14790
|
+
idempotencyKey?: string | undefined;
|
|
14667
14791
|
};
|
|
14668
14792
|
environment: {
|
|
14669
14793
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -14857,6 +14981,7 @@ declare const CoordinatorToPlatformMessages: {
|
|
|
14857
14981
|
isTest: boolean;
|
|
14858
14982
|
createdAt: Date;
|
|
14859
14983
|
context?: any;
|
|
14984
|
+
idempotencyKey?: string | undefined;
|
|
14860
14985
|
};
|
|
14861
14986
|
environment: {
|
|
14862
14987
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -14945,6 +15070,7 @@ declare const CoordinatorToPlatformMessages: {
|
|
|
14945
15070
|
createdAt: Date;
|
|
14946
15071
|
context?: any;
|
|
14947
15072
|
isTest?: boolean | undefined;
|
|
15073
|
+
idempotencyKey?: string | undefined;
|
|
14948
15074
|
};
|
|
14949
15075
|
environment: {
|
|
14950
15076
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -15328,6 +15454,7 @@ declare const PlatformToCoordinatorMessages: {
|
|
|
15328
15454
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
15329
15455
|
isTest: z.ZodDefault<z.ZodBoolean>;
|
|
15330
15456
|
createdAt: z.ZodDate;
|
|
15457
|
+
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
15331
15458
|
}, "strip", z.ZodTypeAny, {
|
|
15332
15459
|
payload: string;
|
|
15333
15460
|
payloadType: string;
|
|
@@ -15336,6 +15463,7 @@ declare const PlatformToCoordinatorMessages: {
|
|
|
15336
15463
|
isTest: boolean;
|
|
15337
15464
|
createdAt: Date;
|
|
15338
15465
|
context?: any;
|
|
15466
|
+
idempotencyKey?: string | undefined;
|
|
15339
15467
|
}, {
|
|
15340
15468
|
payload: string;
|
|
15341
15469
|
payloadType: string;
|
|
@@ -15344,6 +15472,7 @@ declare const PlatformToCoordinatorMessages: {
|
|
|
15344
15472
|
createdAt: Date;
|
|
15345
15473
|
context?: any;
|
|
15346
15474
|
isTest?: boolean | undefined;
|
|
15475
|
+
idempotencyKey?: string | undefined;
|
|
15347
15476
|
}>;
|
|
15348
15477
|
queue: z.ZodObject<{
|
|
15349
15478
|
id: z.ZodString;
|
|
@@ -15430,6 +15559,7 @@ declare const PlatformToCoordinatorMessages: {
|
|
|
15430
15559
|
isTest: boolean;
|
|
15431
15560
|
createdAt: Date;
|
|
15432
15561
|
context?: any;
|
|
15562
|
+
idempotencyKey?: string | undefined;
|
|
15433
15563
|
};
|
|
15434
15564
|
environment: {
|
|
15435
15565
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -15476,6 +15606,7 @@ declare const PlatformToCoordinatorMessages: {
|
|
|
15476
15606
|
createdAt: Date;
|
|
15477
15607
|
context?: any;
|
|
15478
15608
|
isTest?: boolean | undefined;
|
|
15609
|
+
idempotencyKey?: string | undefined;
|
|
15479
15610
|
};
|
|
15480
15611
|
environment: {
|
|
15481
15612
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -15559,6 +15690,7 @@ declare const PlatformToCoordinatorMessages: {
|
|
|
15559
15690
|
isTest: boolean;
|
|
15560
15691
|
createdAt: Date;
|
|
15561
15692
|
context?: any;
|
|
15693
|
+
idempotencyKey?: string | undefined;
|
|
15562
15694
|
};
|
|
15563
15695
|
environment: {
|
|
15564
15696
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -15641,6 +15773,7 @@ declare const PlatformToCoordinatorMessages: {
|
|
|
15641
15773
|
createdAt: Date;
|
|
15642
15774
|
context?: any;
|
|
15643
15775
|
isTest?: boolean | undefined;
|
|
15776
|
+
idempotencyKey?: string | undefined;
|
|
15644
15777
|
};
|
|
15645
15778
|
environment: {
|
|
15646
15779
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -15913,6 +16046,7 @@ declare const ClientToSharedQueueMessages: {
|
|
|
15913
16046
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
15914
16047
|
isTest: z.ZodDefault<z.ZodBoolean>;
|
|
15915
16048
|
createdAt: z.ZodDate;
|
|
16049
|
+
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
15916
16050
|
}, "strip", z.ZodTypeAny, {
|
|
15917
16051
|
payload: string;
|
|
15918
16052
|
payloadType: string;
|
|
@@ -15921,6 +16055,7 @@ declare const ClientToSharedQueueMessages: {
|
|
|
15921
16055
|
isTest: boolean;
|
|
15922
16056
|
createdAt: Date;
|
|
15923
16057
|
context?: any;
|
|
16058
|
+
idempotencyKey?: string | undefined;
|
|
15924
16059
|
}, {
|
|
15925
16060
|
payload: string;
|
|
15926
16061
|
payloadType: string;
|
|
@@ -15929,6 +16064,7 @@ declare const ClientToSharedQueueMessages: {
|
|
|
15929
16064
|
createdAt: Date;
|
|
15930
16065
|
context?: any;
|
|
15931
16066
|
isTest?: boolean | undefined;
|
|
16067
|
+
idempotencyKey?: string | undefined;
|
|
15932
16068
|
}>;
|
|
15933
16069
|
queue: z.ZodObject<{
|
|
15934
16070
|
id: z.ZodString;
|
|
@@ -16015,6 +16151,7 @@ declare const ClientToSharedQueueMessages: {
|
|
|
16015
16151
|
isTest: boolean;
|
|
16016
16152
|
createdAt: Date;
|
|
16017
16153
|
context?: any;
|
|
16154
|
+
idempotencyKey?: string | undefined;
|
|
16018
16155
|
};
|
|
16019
16156
|
environment: {
|
|
16020
16157
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -16061,6 +16198,7 @@ declare const ClientToSharedQueueMessages: {
|
|
|
16061
16198
|
createdAt: Date;
|
|
16062
16199
|
context?: any;
|
|
16063
16200
|
isTest?: boolean | undefined;
|
|
16201
|
+
idempotencyKey?: string | undefined;
|
|
16064
16202
|
};
|
|
16065
16203
|
environment: {
|
|
16066
16204
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -16111,6 +16249,7 @@ declare const ClientToSharedQueueMessages: {
|
|
|
16111
16249
|
isTest: boolean;
|
|
16112
16250
|
createdAt: Date;
|
|
16113
16251
|
context?: any;
|
|
16252
|
+
idempotencyKey?: string | undefined;
|
|
16114
16253
|
};
|
|
16115
16254
|
environment: {
|
|
16116
16255
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -16191,6 +16330,7 @@ declare const ClientToSharedQueueMessages: {
|
|
|
16191
16330
|
createdAt: Date;
|
|
16192
16331
|
context?: any;
|
|
16193
16332
|
isTest?: boolean | undefined;
|
|
16333
|
+
idempotencyKey?: string | undefined;
|
|
16194
16334
|
};
|
|
16195
16335
|
environment: {
|
|
16196
16336
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -16287,6 +16427,7 @@ declare const ClientToSharedQueueMessages: {
|
|
|
16287
16427
|
isTest: boolean;
|
|
16288
16428
|
createdAt: Date;
|
|
16289
16429
|
context?: any;
|
|
16430
|
+
idempotencyKey?: string | undefined;
|
|
16290
16431
|
};
|
|
16291
16432
|
environment: {
|
|
16292
16433
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -16375,6 +16516,7 @@ declare const ClientToSharedQueueMessages: {
|
|
|
16375
16516
|
createdAt: Date;
|
|
16376
16517
|
context?: any;
|
|
16377
16518
|
isTest?: boolean | undefined;
|
|
16519
|
+
idempotencyKey?: string | undefined;
|
|
16378
16520
|
};
|
|
16379
16521
|
environment: {
|
|
16380
16522
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -16502,6 +16644,7 @@ declare const SharedQueueToClientMessages: {
|
|
|
16502
16644
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
16503
16645
|
isTest: z.ZodDefault<z.ZodBoolean>;
|
|
16504
16646
|
createdAt: z.ZodDate;
|
|
16647
|
+
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
16505
16648
|
}, "strip", z.ZodTypeAny, {
|
|
16506
16649
|
payload: string;
|
|
16507
16650
|
payloadType: string;
|
|
@@ -16510,6 +16653,7 @@ declare const SharedQueueToClientMessages: {
|
|
|
16510
16653
|
isTest: boolean;
|
|
16511
16654
|
createdAt: Date;
|
|
16512
16655
|
context?: any;
|
|
16656
|
+
idempotencyKey?: string | undefined;
|
|
16513
16657
|
}, {
|
|
16514
16658
|
payload: string;
|
|
16515
16659
|
payloadType: string;
|
|
@@ -16518,6 +16662,7 @@ declare const SharedQueueToClientMessages: {
|
|
|
16518
16662
|
createdAt: Date;
|
|
16519
16663
|
context?: any;
|
|
16520
16664
|
isTest?: boolean | undefined;
|
|
16665
|
+
idempotencyKey?: string | undefined;
|
|
16521
16666
|
}>;
|
|
16522
16667
|
queue: z.ZodObject<{
|
|
16523
16668
|
id: z.ZodString;
|
|
@@ -16604,6 +16749,7 @@ declare const SharedQueueToClientMessages: {
|
|
|
16604
16749
|
isTest: boolean;
|
|
16605
16750
|
createdAt: Date;
|
|
16606
16751
|
context?: any;
|
|
16752
|
+
idempotencyKey?: string | undefined;
|
|
16607
16753
|
};
|
|
16608
16754
|
environment: {
|
|
16609
16755
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -16650,6 +16796,7 @@ declare const SharedQueueToClientMessages: {
|
|
|
16650
16796
|
createdAt: Date;
|
|
16651
16797
|
context?: any;
|
|
16652
16798
|
isTest?: boolean | undefined;
|
|
16799
|
+
idempotencyKey?: string | undefined;
|
|
16653
16800
|
};
|
|
16654
16801
|
environment: {
|
|
16655
16802
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -16700,6 +16847,7 @@ declare const SharedQueueToClientMessages: {
|
|
|
16700
16847
|
isTest: boolean;
|
|
16701
16848
|
createdAt: Date;
|
|
16702
16849
|
context?: any;
|
|
16850
|
+
idempotencyKey?: string | undefined;
|
|
16703
16851
|
};
|
|
16704
16852
|
environment: {
|
|
16705
16853
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -16750,6 +16898,7 @@ declare const SharedQueueToClientMessages: {
|
|
|
16750
16898
|
createdAt: Date;
|
|
16751
16899
|
context?: any;
|
|
16752
16900
|
isTest?: boolean | undefined;
|
|
16901
|
+
idempotencyKey?: string | undefined;
|
|
16753
16902
|
};
|
|
16754
16903
|
environment: {
|
|
16755
16904
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -16803,6 +16952,7 @@ declare const SharedQueueToClientMessages: {
|
|
|
16803
16952
|
isTest: boolean;
|
|
16804
16953
|
createdAt: Date;
|
|
16805
16954
|
context?: any;
|
|
16955
|
+
idempotencyKey?: string | undefined;
|
|
16806
16956
|
};
|
|
16807
16957
|
environment: {
|
|
16808
16958
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -16856,6 +17006,7 @@ declare const SharedQueueToClientMessages: {
|
|
|
16856
17006
|
createdAt: Date;
|
|
16857
17007
|
context?: any;
|
|
16858
17008
|
isTest?: boolean | undefined;
|
|
17009
|
+
idempotencyKey?: string | undefined;
|
|
16859
17010
|
};
|
|
16860
17011
|
environment: {
|
|
16861
17012
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -16976,6 +17127,7 @@ declare const SharedQueueToClientMessages: {
|
|
|
16976
17127
|
isTest: boolean;
|
|
16977
17128
|
createdAt: Date;
|
|
16978
17129
|
context?: any;
|
|
17130
|
+
idempotencyKey?: string | undefined;
|
|
16979
17131
|
};
|
|
16980
17132
|
environment: {
|
|
16981
17133
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -17052,6 +17204,7 @@ declare const SharedQueueToClientMessages: {
|
|
|
17052
17204
|
createdAt: Date;
|
|
17053
17205
|
context?: any;
|
|
17054
17206
|
isTest?: boolean | undefined;
|
|
17207
|
+
idempotencyKey?: string | undefined;
|
|
17055
17208
|
};
|
|
17056
17209
|
environment: {
|
|
17057
17210
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -17701,6 +17854,7 @@ declare const ProdWorkerToCoordinatorMessages: {
|
|
|
17701
17854
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
17702
17855
|
isTest: z.ZodDefault<z.ZodBoolean>;
|
|
17703
17856
|
createdAt: z.ZodDate;
|
|
17857
|
+
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
17704
17858
|
}, "strip", z.ZodTypeAny, {
|
|
17705
17859
|
payload: string;
|
|
17706
17860
|
payloadType: string;
|
|
@@ -17709,6 +17863,7 @@ declare const ProdWorkerToCoordinatorMessages: {
|
|
|
17709
17863
|
isTest: boolean;
|
|
17710
17864
|
createdAt: Date;
|
|
17711
17865
|
context?: any;
|
|
17866
|
+
idempotencyKey?: string | undefined;
|
|
17712
17867
|
}, {
|
|
17713
17868
|
payload: string;
|
|
17714
17869
|
payloadType: string;
|
|
@@ -17717,6 +17872,7 @@ declare const ProdWorkerToCoordinatorMessages: {
|
|
|
17717
17872
|
createdAt: Date;
|
|
17718
17873
|
context?: any;
|
|
17719
17874
|
isTest?: boolean | undefined;
|
|
17875
|
+
idempotencyKey?: string | undefined;
|
|
17720
17876
|
}>;
|
|
17721
17877
|
environment: z.ZodObject<{
|
|
17722
17878
|
id: z.ZodString;
|
|
@@ -17806,6 +17962,7 @@ declare const ProdWorkerToCoordinatorMessages: {
|
|
|
17806
17962
|
isTest: boolean;
|
|
17807
17963
|
createdAt: Date;
|
|
17808
17964
|
context?: any;
|
|
17965
|
+
idempotencyKey?: string | undefined;
|
|
17809
17966
|
};
|
|
17810
17967
|
environment: {
|
|
17811
17968
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -17857,6 +18014,7 @@ declare const ProdWorkerToCoordinatorMessages: {
|
|
|
17857
18014
|
createdAt: Date;
|
|
17858
18015
|
context?: any;
|
|
17859
18016
|
isTest?: boolean | undefined;
|
|
18017
|
+
idempotencyKey?: string | undefined;
|
|
17860
18018
|
};
|
|
17861
18019
|
environment: {
|
|
17862
18020
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -18040,6 +18198,7 @@ declare const ProdWorkerToCoordinatorMessages: {
|
|
|
18040
18198
|
isTest: boolean;
|
|
18041
18199
|
createdAt: Date;
|
|
18042
18200
|
context?: any;
|
|
18201
|
+
idempotencyKey?: string | undefined;
|
|
18043
18202
|
};
|
|
18044
18203
|
environment: {
|
|
18045
18204
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -18124,6 +18283,7 @@ declare const ProdWorkerToCoordinatorMessages: {
|
|
|
18124
18283
|
createdAt: Date;
|
|
18125
18284
|
context?: any;
|
|
18126
18285
|
isTest?: boolean | undefined;
|
|
18286
|
+
idempotencyKey?: string | undefined;
|
|
18127
18287
|
};
|
|
18128
18288
|
environment: {
|
|
18129
18289
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -18480,6 +18640,7 @@ declare const CoordinatorToProdWorkerMessages: {
|
|
|
18480
18640
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
18481
18641
|
isTest: z.ZodDefault<z.ZodBoolean>;
|
|
18482
18642
|
createdAt: z.ZodDate;
|
|
18643
|
+
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
18483
18644
|
}, "strip", z.ZodTypeAny, {
|
|
18484
18645
|
payload: string;
|
|
18485
18646
|
payloadType: string;
|
|
@@ -18488,6 +18649,7 @@ declare const CoordinatorToProdWorkerMessages: {
|
|
|
18488
18649
|
isTest: boolean;
|
|
18489
18650
|
createdAt: Date;
|
|
18490
18651
|
context?: any;
|
|
18652
|
+
idempotencyKey?: string | undefined;
|
|
18491
18653
|
}, {
|
|
18492
18654
|
payload: string;
|
|
18493
18655
|
payloadType: string;
|
|
@@ -18496,6 +18658,7 @@ declare const CoordinatorToProdWorkerMessages: {
|
|
|
18496
18658
|
createdAt: Date;
|
|
18497
18659
|
context?: any;
|
|
18498
18660
|
isTest?: boolean | undefined;
|
|
18661
|
+
idempotencyKey?: string | undefined;
|
|
18499
18662
|
}>;
|
|
18500
18663
|
queue: z.ZodObject<{
|
|
18501
18664
|
id: z.ZodString;
|
|
@@ -18582,6 +18745,7 @@ declare const CoordinatorToProdWorkerMessages: {
|
|
|
18582
18745
|
isTest: boolean;
|
|
18583
18746
|
createdAt: Date;
|
|
18584
18747
|
context?: any;
|
|
18748
|
+
idempotencyKey?: string | undefined;
|
|
18585
18749
|
};
|
|
18586
18750
|
environment: {
|
|
18587
18751
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -18628,6 +18792,7 @@ declare const CoordinatorToProdWorkerMessages: {
|
|
|
18628
18792
|
createdAt: Date;
|
|
18629
18793
|
context?: any;
|
|
18630
18794
|
isTest?: boolean | undefined;
|
|
18795
|
+
idempotencyKey?: string | undefined;
|
|
18631
18796
|
};
|
|
18632
18797
|
environment: {
|
|
18633
18798
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -18709,6 +18874,7 @@ declare const CoordinatorToProdWorkerMessages: {
|
|
|
18709
18874
|
isTest: boolean;
|
|
18710
18875
|
createdAt: Date;
|
|
18711
18876
|
context?: any;
|
|
18877
|
+
idempotencyKey?: string | undefined;
|
|
18712
18878
|
};
|
|
18713
18879
|
environment: {
|
|
18714
18880
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -18789,6 +18955,7 @@ declare const CoordinatorToProdWorkerMessages: {
|
|
|
18789
18955
|
createdAt: Date;
|
|
18790
18956
|
context?: any;
|
|
18791
18957
|
isTest?: boolean | undefined;
|
|
18958
|
+
idempotencyKey?: string | undefined;
|
|
18792
18959
|
};
|
|
18793
18960
|
environment: {
|
|
18794
18961
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -18883,6 +19050,7 @@ declare const CoordinatorToProdWorkerMessages: {
|
|
|
18883
19050
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
18884
19051
|
isTest: z.ZodDefault<z.ZodBoolean>;
|
|
18885
19052
|
createdAt: z.ZodDate;
|
|
19053
|
+
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
18886
19054
|
}, "strip", z.ZodTypeAny, {
|
|
18887
19055
|
payload: string;
|
|
18888
19056
|
payloadType: string;
|
|
@@ -18891,6 +19059,7 @@ declare const CoordinatorToProdWorkerMessages: {
|
|
|
18891
19059
|
isTest: boolean;
|
|
18892
19060
|
createdAt: Date;
|
|
18893
19061
|
context?: any;
|
|
19062
|
+
idempotencyKey?: string | undefined;
|
|
18894
19063
|
}, {
|
|
18895
19064
|
payload: string;
|
|
18896
19065
|
payloadType: string;
|
|
@@ -18899,6 +19068,7 @@ declare const CoordinatorToProdWorkerMessages: {
|
|
|
18899
19068
|
createdAt: Date;
|
|
18900
19069
|
context?: any;
|
|
18901
19070
|
isTest?: boolean | undefined;
|
|
19071
|
+
idempotencyKey?: string | undefined;
|
|
18902
19072
|
}>;
|
|
18903
19073
|
environment: z.ZodObject<{
|
|
18904
19074
|
id: z.ZodString;
|
|
@@ -18988,6 +19158,7 @@ declare const CoordinatorToProdWorkerMessages: {
|
|
|
18988
19158
|
isTest: boolean;
|
|
18989
19159
|
createdAt: Date;
|
|
18990
19160
|
context?: any;
|
|
19161
|
+
idempotencyKey?: string | undefined;
|
|
18991
19162
|
};
|
|
18992
19163
|
environment: {
|
|
18993
19164
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -19039,6 +19210,7 @@ declare const CoordinatorToProdWorkerMessages: {
|
|
|
19039
19210
|
createdAt: Date;
|
|
19040
19211
|
context?: any;
|
|
19041
19212
|
isTest?: boolean | undefined;
|
|
19213
|
+
idempotencyKey?: string | undefined;
|
|
19042
19214
|
};
|
|
19043
19215
|
environment: {
|
|
19044
19216
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -19094,6 +19266,7 @@ declare const CoordinatorToProdWorkerMessages: {
|
|
|
19094
19266
|
isTest: boolean;
|
|
19095
19267
|
createdAt: Date;
|
|
19096
19268
|
context?: any;
|
|
19269
|
+
idempotencyKey?: string | undefined;
|
|
19097
19270
|
};
|
|
19098
19271
|
environment: {
|
|
19099
19272
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -19149,6 +19322,7 @@ declare const CoordinatorToProdWorkerMessages: {
|
|
|
19149
19322
|
createdAt: Date;
|
|
19150
19323
|
context?: any;
|
|
19151
19324
|
isTest?: boolean | undefined;
|
|
19325
|
+
idempotencyKey?: string | undefined;
|
|
19152
19326
|
};
|
|
19153
19327
|
environment: {
|
|
19154
19328
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -19207,6 +19381,7 @@ declare const CoordinatorToProdWorkerMessages: {
|
|
|
19207
19381
|
isTest: boolean;
|
|
19208
19382
|
createdAt: Date;
|
|
19209
19383
|
context?: any;
|
|
19384
|
+
idempotencyKey?: string | undefined;
|
|
19210
19385
|
};
|
|
19211
19386
|
environment: {
|
|
19212
19387
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -19264,6 +19439,7 @@ declare const CoordinatorToProdWorkerMessages: {
|
|
|
19264
19439
|
createdAt: Date;
|
|
19265
19440
|
context?: any;
|
|
19266
19441
|
isTest?: boolean | undefined;
|
|
19442
|
+
idempotencyKey?: string | undefined;
|
|
19267
19443
|
};
|
|
19268
19444
|
environment: {
|
|
19269
19445
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -20242,6 +20418,8 @@ declare class ApiClient {
|
|
|
20242
20418
|
private readonly accessToken;
|
|
20243
20419
|
private readonly baseUrl;
|
|
20244
20420
|
constructor(baseUrl: string, accessToken: string);
|
|
20421
|
+
getRunResult(runId: string): Promise<TaskRunExecutionResult | undefined>;
|
|
20422
|
+
getBatchResults(batchId: string): Promise<BatchTaskRunExecutionResult | undefined>;
|
|
20245
20423
|
triggerTask(taskId: string, body: TriggerTaskRequestBody, options?: TriggerOptions): Promise<{
|
|
20246
20424
|
id: string;
|
|
20247
20425
|
}>;
|
|
@@ -20837,6 +21015,7 @@ declare const SemanticInternalAttributes: {
|
|
|
20837
21015
|
RETRY_DELAY: string;
|
|
20838
21016
|
RETRY_COUNT: string;
|
|
20839
21017
|
LINK_TITLE: string;
|
|
21018
|
+
IDEMPOTENCY_KEY: string;
|
|
20840
21019
|
};
|
|
20841
21020
|
|
|
20842
21021
|
declare function iconStringForSeverity(severityNumber: SeverityNumber): "trace" | "debug" | "info" | "warn" | "error" | "fatal" | undefined;
|
|
@@ -20884,7 +21063,6 @@ declare class TaskContextSpanProcessor implements SpanProcessor {
|
|
|
20884
21063
|
declare class DevRuntimeManager implements RuntimeManager {
|
|
20885
21064
|
_taskWaits: Map<string, {
|
|
20886
21065
|
resolve: (value: TaskRunExecutionResult) => void;
|
|
20887
|
-
reject: (err?: any) => void;
|
|
20888
21066
|
}>;
|
|
20889
21067
|
_batchWaits: Map<string, {
|
|
20890
21068
|
resolve: (value: BatchTaskRunExecutionResult) => void;
|
|
@@ -20914,7 +21092,6 @@ declare class ProdRuntimeManager implements RuntimeManager {
|
|
|
20914
21092
|
private options;
|
|
20915
21093
|
_taskWaits: Map<string, {
|
|
20916
21094
|
resolve: (value: TaskRunExecutionResult) => void;
|
|
20917
|
-
reject: (err?: any) => void;
|
|
20918
21095
|
}>;
|
|
20919
21096
|
_batchWaits: Map<string, {
|
|
20920
21097
|
resolve: (value: BatchTaskRunExecutionResult) => void;
|