@trigger.dev/core 3.0.0-beta.14 → 3.0.0-beta.16
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 +181 -2
- package/dist/v3/index.d.ts +181 -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";
|
|
@@ -12872,6 +12982,8 @@ interface ProjectConfig {
|
|
|
12872
12982
|
* List of additional files to include in your trigger.dev bundle. e.g. ["./prisma/schema.prisma"]
|
|
12873
12983
|
*
|
|
12874
12984
|
* Supports glob patterns.
|
|
12985
|
+
*
|
|
12986
|
+
* Note: The path separator for glob patterns is `/`, even on Windows!
|
|
12875
12987
|
*/
|
|
12876
12988
|
additionalFiles?: string[];
|
|
12877
12989
|
/**
|
|
@@ -14023,6 +14135,7 @@ declare const CoordinatorToPlatformMessages: {
|
|
|
14023
14135
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
14024
14136
|
isTest: z.ZodDefault<z.ZodBoolean>;
|
|
14025
14137
|
createdAt: z.ZodDate;
|
|
14138
|
+
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
14026
14139
|
}, "strip", z.ZodTypeAny, {
|
|
14027
14140
|
payload: string;
|
|
14028
14141
|
payloadType: string;
|
|
@@ -14031,6 +14144,7 @@ declare const CoordinatorToPlatformMessages: {
|
|
|
14031
14144
|
isTest: boolean;
|
|
14032
14145
|
createdAt: Date;
|
|
14033
14146
|
context?: any;
|
|
14147
|
+
idempotencyKey?: string | undefined;
|
|
14034
14148
|
}, {
|
|
14035
14149
|
payload: string;
|
|
14036
14150
|
payloadType: string;
|
|
@@ -14039,6 +14153,7 @@ declare const CoordinatorToPlatformMessages: {
|
|
|
14039
14153
|
createdAt: Date;
|
|
14040
14154
|
context?: any;
|
|
14041
14155
|
isTest?: boolean | undefined;
|
|
14156
|
+
idempotencyKey?: string | undefined;
|
|
14042
14157
|
}>;
|
|
14043
14158
|
environment: z.ZodObject<{
|
|
14044
14159
|
id: z.ZodString;
|
|
@@ -14128,6 +14243,7 @@ declare const CoordinatorToPlatformMessages: {
|
|
|
14128
14243
|
isTest: boolean;
|
|
14129
14244
|
createdAt: Date;
|
|
14130
14245
|
context?: any;
|
|
14246
|
+
idempotencyKey?: string | undefined;
|
|
14131
14247
|
};
|
|
14132
14248
|
environment: {
|
|
14133
14249
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -14179,6 +14295,7 @@ declare const CoordinatorToPlatformMessages: {
|
|
|
14179
14295
|
createdAt: Date;
|
|
14180
14296
|
context?: any;
|
|
14181
14297
|
isTest?: boolean | undefined;
|
|
14298
|
+
idempotencyKey?: string | undefined;
|
|
14182
14299
|
};
|
|
14183
14300
|
environment: {
|
|
14184
14301
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -14234,6 +14351,7 @@ declare const CoordinatorToPlatformMessages: {
|
|
|
14234
14351
|
isTest: boolean;
|
|
14235
14352
|
createdAt: Date;
|
|
14236
14353
|
context?: any;
|
|
14354
|
+
idempotencyKey?: string | undefined;
|
|
14237
14355
|
};
|
|
14238
14356
|
environment: {
|
|
14239
14357
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -14289,6 +14407,7 @@ declare const CoordinatorToPlatformMessages: {
|
|
|
14289
14407
|
createdAt: Date;
|
|
14290
14408
|
context?: any;
|
|
14291
14409
|
isTest?: boolean | undefined;
|
|
14410
|
+
idempotencyKey?: string | undefined;
|
|
14292
14411
|
};
|
|
14293
14412
|
environment: {
|
|
14294
14413
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -14346,6 +14465,7 @@ declare const CoordinatorToPlatformMessages: {
|
|
|
14346
14465
|
isTest: boolean;
|
|
14347
14466
|
createdAt: Date;
|
|
14348
14467
|
context?: any;
|
|
14468
|
+
idempotencyKey?: string | undefined;
|
|
14349
14469
|
};
|
|
14350
14470
|
environment: {
|
|
14351
14471
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -14404,6 +14524,7 @@ declare const CoordinatorToPlatformMessages: {
|
|
|
14404
14524
|
createdAt: Date;
|
|
14405
14525
|
context?: any;
|
|
14406
14526
|
isTest?: boolean | undefined;
|
|
14527
|
+
idempotencyKey?: string | undefined;
|
|
14407
14528
|
};
|
|
14408
14529
|
environment: {
|
|
14409
14530
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -14508,6 +14629,7 @@ declare const CoordinatorToPlatformMessages: {
|
|
|
14508
14629
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
14509
14630
|
isTest: z.ZodDefault<z.ZodBoolean>;
|
|
14510
14631
|
createdAt: z.ZodDate;
|
|
14632
|
+
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
14511
14633
|
}, "strip", z.ZodTypeAny, {
|
|
14512
14634
|
payload: string;
|
|
14513
14635
|
payloadType: string;
|
|
@@ -14516,6 +14638,7 @@ declare const CoordinatorToPlatformMessages: {
|
|
|
14516
14638
|
isTest: boolean;
|
|
14517
14639
|
createdAt: Date;
|
|
14518
14640
|
context?: any;
|
|
14641
|
+
idempotencyKey?: string | undefined;
|
|
14519
14642
|
}, {
|
|
14520
14643
|
payload: string;
|
|
14521
14644
|
payloadType: string;
|
|
@@ -14524,6 +14647,7 @@ declare const CoordinatorToPlatformMessages: {
|
|
|
14524
14647
|
createdAt: Date;
|
|
14525
14648
|
context?: any;
|
|
14526
14649
|
isTest?: boolean | undefined;
|
|
14650
|
+
idempotencyKey?: string | undefined;
|
|
14527
14651
|
}>;
|
|
14528
14652
|
environment: z.ZodObject<{
|
|
14529
14653
|
id: z.ZodString;
|
|
@@ -14613,6 +14737,7 @@ declare const CoordinatorToPlatformMessages: {
|
|
|
14613
14737
|
isTest: boolean;
|
|
14614
14738
|
createdAt: Date;
|
|
14615
14739
|
context?: any;
|
|
14740
|
+
idempotencyKey?: string | undefined;
|
|
14616
14741
|
};
|
|
14617
14742
|
environment: {
|
|
14618
14743
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -14664,6 +14789,7 @@ declare const CoordinatorToPlatformMessages: {
|
|
|
14664
14789
|
createdAt: Date;
|
|
14665
14790
|
context?: any;
|
|
14666
14791
|
isTest?: boolean | undefined;
|
|
14792
|
+
idempotencyKey?: string | undefined;
|
|
14667
14793
|
};
|
|
14668
14794
|
environment: {
|
|
14669
14795
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -14857,6 +14983,7 @@ declare const CoordinatorToPlatformMessages: {
|
|
|
14857
14983
|
isTest: boolean;
|
|
14858
14984
|
createdAt: Date;
|
|
14859
14985
|
context?: any;
|
|
14986
|
+
idempotencyKey?: string | undefined;
|
|
14860
14987
|
};
|
|
14861
14988
|
environment: {
|
|
14862
14989
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -14945,6 +15072,7 @@ declare const CoordinatorToPlatformMessages: {
|
|
|
14945
15072
|
createdAt: Date;
|
|
14946
15073
|
context?: any;
|
|
14947
15074
|
isTest?: boolean | undefined;
|
|
15075
|
+
idempotencyKey?: string | undefined;
|
|
14948
15076
|
};
|
|
14949
15077
|
environment: {
|
|
14950
15078
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -15328,6 +15456,7 @@ declare const PlatformToCoordinatorMessages: {
|
|
|
15328
15456
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
15329
15457
|
isTest: z.ZodDefault<z.ZodBoolean>;
|
|
15330
15458
|
createdAt: z.ZodDate;
|
|
15459
|
+
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
15331
15460
|
}, "strip", z.ZodTypeAny, {
|
|
15332
15461
|
payload: string;
|
|
15333
15462
|
payloadType: string;
|
|
@@ -15336,6 +15465,7 @@ declare const PlatformToCoordinatorMessages: {
|
|
|
15336
15465
|
isTest: boolean;
|
|
15337
15466
|
createdAt: Date;
|
|
15338
15467
|
context?: any;
|
|
15468
|
+
idempotencyKey?: string | undefined;
|
|
15339
15469
|
}, {
|
|
15340
15470
|
payload: string;
|
|
15341
15471
|
payloadType: string;
|
|
@@ -15344,6 +15474,7 @@ declare const PlatformToCoordinatorMessages: {
|
|
|
15344
15474
|
createdAt: Date;
|
|
15345
15475
|
context?: any;
|
|
15346
15476
|
isTest?: boolean | undefined;
|
|
15477
|
+
idempotencyKey?: string | undefined;
|
|
15347
15478
|
}>;
|
|
15348
15479
|
queue: z.ZodObject<{
|
|
15349
15480
|
id: z.ZodString;
|
|
@@ -15430,6 +15561,7 @@ declare const PlatformToCoordinatorMessages: {
|
|
|
15430
15561
|
isTest: boolean;
|
|
15431
15562
|
createdAt: Date;
|
|
15432
15563
|
context?: any;
|
|
15564
|
+
idempotencyKey?: string | undefined;
|
|
15433
15565
|
};
|
|
15434
15566
|
environment: {
|
|
15435
15567
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -15476,6 +15608,7 @@ declare const PlatformToCoordinatorMessages: {
|
|
|
15476
15608
|
createdAt: Date;
|
|
15477
15609
|
context?: any;
|
|
15478
15610
|
isTest?: boolean | undefined;
|
|
15611
|
+
idempotencyKey?: string | undefined;
|
|
15479
15612
|
};
|
|
15480
15613
|
environment: {
|
|
15481
15614
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -15559,6 +15692,7 @@ declare const PlatformToCoordinatorMessages: {
|
|
|
15559
15692
|
isTest: boolean;
|
|
15560
15693
|
createdAt: Date;
|
|
15561
15694
|
context?: any;
|
|
15695
|
+
idempotencyKey?: string | undefined;
|
|
15562
15696
|
};
|
|
15563
15697
|
environment: {
|
|
15564
15698
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -15641,6 +15775,7 @@ declare const PlatformToCoordinatorMessages: {
|
|
|
15641
15775
|
createdAt: Date;
|
|
15642
15776
|
context?: any;
|
|
15643
15777
|
isTest?: boolean | undefined;
|
|
15778
|
+
idempotencyKey?: string | undefined;
|
|
15644
15779
|
};
|
|
15645
15780
|
environment: {
|
|
15646
15781
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -15913,6 +16048,7 @@ declare const ClientToSharedQueueMessages: {
|
|
|
15913
16048
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
15914
16049
|
isTest: z.ZodDefault<z.ZodBoolean>;
|
|
15915
16050
|
createdAt: z.ZodDate;
|
|
16051
|
+
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
15916
16052
|
}, "strip", z.ZodTypeAny, {
|
|
15917
16053
|
payload: string;
|
|
15918
16054
|
payloadType: string;
|
|
@@ -15921,6 +16057,7 @@ declare const ClientToSharedQueueMessages: {
|
|
|
15921
16057
|
isTest: boolean;
|
|
15922
16058
|
createdAt: Date;
|
|
15923
16059
|
context?: any;
|
|
16060
|
+
idempotencyKey?: string | undefined;
|
|
15924
16061
|
}, {
|
|
15925
16062
|
payload: string;
|
|
15926
16063
|
payloadType: string;
|
|
@@ -15929,6 +16066,7 @@ declare const ClientToSharedQueueMessages: {
|
|
|
15929
16066
|
createdAt: Date;
|
|
15930
16067
|
context?: any;
|
|
15931
16068
|
isTest?: boolean | undefined;
|
|
16069
|
+
idempotencyKey?: string | undefined;
|
|
15932
16070
|
}>;
|
|
15933
16071
|
queue: z.ZodObject<{
|
|
15934
16072
|
id: z.ZodString;
|
|
@@ -16015,6 +16153,7 @@ declare const ClientToSharedQueueMessages: {
|
|
|
16015
16153
|
isTest: boolean;
|
|
16016
16154
|
createdAt: Date;
|
|
16017
16155
|
context?: any;
|
|
16156
|
+
idempotencyKey?: string | undefined;
|
|
16018
16157
|
};
|
|
16019
16158
|
environment: {
|
|
16020
16159
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -16061,6 +16200,7 @@ declare const ClientToSharedQueueMessages: {
|
|
|
16061
16200
|
createdAt: Date;
|
|
16062
16201
|
context?: any;
|
|
16063
16202
|
isTest?: boolean | undefined;
|
|
16203
|
+
idempotencyKey?: string | undefined;
|
|
16064
16204
|
};
|
|
16065
16205
|
environment: {
|
|
16066
16206
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -16111,6 +16251,7 @@ declare const ClientToSharedQueueMessages: {
|
|
|
16111
16251
|
isTest: boolean;
|
|
16112
16252
|
createdAt: Date;
|
|
16113
16253
|
context?: any;
|
|
16254
|
+
idempotencyKey?: string | undefined;
|
|
16114
16255
|
};
|
|
16115
16256
|
environment: {
|
|
16116
16257
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -16191,6 +16332,7 @@ declare const ClientToSharedQueueMessages: {
|
|
|
16191
16332
|
createdAt: Date;
|
|
16192
16333
|
context?: any;
|
|
16193
16334
|
isTest?: boolean | undefined;
|
|
16335
|
+
idempotencyKey?: string | undefined;
|
|
16194
16336
|
};
|
|
16195
16337
|
environment: {
|
|
16196
16338
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -16287,6 +16429,7 @@ declare const ClientToSharedQueueMessages: {
|
|
|
16287
16429
|
isTest: boolean;
|
|
16288
16430
|
createdAt: Date;
|
|
16289
16431
|
context?: any;
|
|
16432
|
+
idempotencyKey?: string | undefined;
|
|
16290
16433
|
};
|
|
16291
16434
|
environment: {
|
|
16292
16435
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -16375,6 +16518,7 @@ declare const ClientToSharedQueueMessages: {
|
|
|
16375
16518
|
createdAt: Date;
|
|
16376
16519
|
context?: any;
|
|
16377
16520
|
isTest?: boolean | undefined;
|
|
16521
|
+
idempotencyKey?: string | undefined;
|
|
16378
16522
|
};
|
|
16379
16523
|
environment: {
|
|
16380
16524
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -16502,6 +16646,7 @@ declare const SharedQueueToClientMessages: {
|
|
|
16502
16646
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
16503
16647
|
isTest: z.ZodDefault<z.ZodBoolean>;
|
|
16504
16648
|
createdAt: z.ZodDate;
|
|
16649
|
+
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
16505
16650
|
}, "strip", z.ZodTypeAny, {
|
|
16506
16651
|
payload: string;
|
|
16507
16652
|
payloadType: string;
|
|
@@ -16510,6 +16655,7 @@ declare const SharedQueueToClientMessages: {
|
|
|
16510
16655
|
isTest: boolean;
|
|
16511
16656
|
createdAt: Date;
|
|
16512
16657
|
context?: any;
|
|
16658
|
+
idempotencyKey?: string | undefined;
|
|
16513
16659
|
}, {
|
|
16514
16660
|
payload: string;
|
|
16515
16661
|
payloadType: string;
|
|
@@ -16518,6 +16664,7 @@ declare const SharedQueueToClientMessages: {
|
|
|
16518
16664
|
createdAt: Date;
|
|
16519
16665
|
context?: any;
|
|
16520
16666
|
isTest?: boolean | undefined;
|
|
16667
|
+
idempotencyKey?: string | undefined;
|
|
16521
16668
|
}>;
|
|
16522
16669
|
queue: z.ZodObject<{
|
|
16523
16670
|
id: z.ZodString;
|
|
@@ -16604,6 +16751,7 @@ declare const SharedQueueToClientMessages: {
|
|
|
16604
16751
|
isTest: boolean;
|
|
16605
16752
|
createdAt: Date;
|
|
16606
16753
|
context?: any;
|
|
16754
|
+
idempotencyKey?: string | undefined;
|
|
16607
16755
|
};
|
|
16608
16756
|
environment: {
|
|
16609
16757
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -16650,6 +16798,7 @@ declare const SharedQueueToClientMessages: {
|
|
|
16650
16798
|
createdAt: Date;
|
|
16651
16799
|
context?: any;
|
|
16652
16800
|
isTest?: boolean | undefined;
|
|
16801
|
+
idempotencyKey?: string | undefined;
|
|
16653
16802
|
};
|
|
16654
16803
|
environment: {
|
|
16655
16804
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -16700,6 +16849,7 @@ declare const SharedQueueToClientMessages: {
|
|
|
16700
16849
|
isTest: boolean;
|
|
16701
16850
|
createdAt: Date;
|
|
16702
16851
|
context?: any;
|
|
16852
|
+
idempotencyKey?: string | undefined;
|
|
16703
16853
|
};
|
|
16704
16854
|
environment: {
|
|
16705
16855
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -16750,6 +16900,7 @@ declare const SharedQueueToClientMessages: {
|
|
|
16750
16900
|
createdAt: Date;
|
|
16751
16901
|
context?: any;
|
|
16752
16902
|
isTest?: boolean | undefined;
|
|
16903
|
+
idempotencyKey?: string | undefined;
|
|
16753
16904
|
};
|
|
16754
16905
|
environment: {
|
|
16755
16906
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -16803,6 +16954,7 @@ declare const SharedQueueToClientMessages: {
|
|
|
16803
16954
|
isTest: boolean;
|
|
16804
16955
|
createdAt: Date;
|
|
16805
16956
|
context?: any;
|
|
16957
|
+
idempotencyKey?: string | undefined;
|
|
16806
16958
|
};
|
|
16807
16959
|
environment: {
|
|
16808
16960
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -16856,6 +17008,7 @@ declare const SharedQueueToClientMessages: {
|
|
|
16856
17008
|
createdAt: Date;
|
|
16857
17009
|
context?: any;
|
|
16858
17010
|
isTest?: boolean | undefined;
|
|
17011
|
+
idempotencyKey?: string | undefined;
|
|
16859
17012
|
};
|
|
16860
17013
|
environment: {
|
|
16861
17014
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -16976,6 +17129,7 @@ declare const SharedQueueToClientMessages: {
|
|
|
16976
17129
|
isTest: boolean;
|
|
16977
17130
|
createdAt: Date;
|
|
16978
17131
|
context?: any;
|
|
17132
|
+
idempotencyKey?: string | undefined;
|
|
16979
17133
|
};
|
|
16980
17134
|
environment: {
|
|
16981
17135
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -17052,6 +17206,7 @@ declare const SharedQueueToClientMessages: {
|
|
|
17052
17206
|
createdAt: Date;
|
|
17053
17207
|
context?: any;
|
|
17054
17208
|
isTest?: boolean | undefined;
|
|
17209
|
+
idempotencyKey?: string | undefined;
|
|
17055
17210
|
};
|
|
17056
17211
|
environment: {
|
|
17057
17212
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -17701,6 +17856,7 @@ declare const ProdWorkerToCoordinatorMessages: {
|
|
|
17701
17856
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
17702
17857
|
isTest: z.ZodDefault<z.ZodBoolean>;
|
|
17703
17858
|
createdAt: z.ZodDate;
|
|
17859
|
+
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
17704
17860
|
}, "strip", z.ZodTypeAny, {
|
|
17705
17861
|
payload: string;
|
|
17706
17862
|
payloadType: string;
|
|
@@ -17709,6 +17865,7 @@ declare const ProdWorkerToCoordinatorMessages: {
|
|
|
17709
17865
|
isTest: boolean;
|
|
17710
17866
|
createdAt: Date;
|
|
17711
17867
|
context?: any;
|
|
17868
|
+
idempotencyKey?: string | undefined;
|
|
17712
17869
|
}, {
|
|
17713
17870
|
payload: string;
|
|
17714
17871
|
payloadType: string;
|
|
@@ -17717,6 +17874,7 @@ declare const ProdWorkerToCoordinatorMessages: {
|
|
|
17717
17874
|
createdAt: Date;
|
|
17718
17875
|
context?: any;
|
|
17719
17876
|
isTest?: boolean | undefined;
|
|
17877
|
+
idempotencyKey?: string | undefined;
|
|
17720
17878
|
}>;
|
|
17721
17879
|
environment: z.ZodObject<{
|
|
17722
17880
|
id: z.ZodString;
|
|
@@ -17806,6 +17964,7 @@ declare const ProdWorkerToCoordinatorMessages: {
|
|
|
17806
17964
|
isTest: boolean;
|
|
17807
17965
|
createdAt: Date;
|
|
17808
17966
|
context?: any;
|
|
17967
|
+
idempotencyKey?: string | undefined;
|
|
17809
17968
|
};
|
|
17810
17969
|
environment: {
|
|
17811
17970
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -17857,6 +18016,7 @@ declare const ProdWorkerToCoordinatorMessages: {
|
|
|
17857
18016
|
createdAt: Date;
|
|
17858
18017
|
context?: any;
|
|
17859
18018
|
isTest?: boolean | undefined;
|
|
18019
|
+
idempotencyKey?: string | undefined;
|
|
17860
18020
|
};
|
|
17861
18021
|
environment: {
|
|
17862
18022
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -18040,6 +18200,7 @@ declare const ProdWorkerToCoordinatorMessages: {
|
|
|
18040
18200
|
isTest: boolean;
|
|
18041
18201
|
createdAt: Date;
|
|
18042
18202
|
context?: any;
|
|
18203
|
+
idempotencyKey?: string | undefined;
|
|
18043
18204
|
};
|
|
18044
18205
|
environment: {
|
|
18045
18206
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -18124,6 +18285,7 @@ declare const ProdWorkerToCoordinatorMessages: {
|
|
|
18124
18285
|
createdAt: Date;
|
|
18125
18286
|
context?: any;
|
|
18126
18287
|
isTest?: boolean | undefined;
|
|
18288
|
+
idempotencyKey?: string | undefined;
|
|
18127
18289
|
};
|
|
18128
18290
|
environment: {
|
|
18129
18291
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -18480,6 +18642,7 @@ declare const CoordinatorToProdWorkerMessages: {
|
|
|
18480
18642
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
18481
18643
|
isTest: z.ZodDefault<z.ZodBoolean>;
|
|
18482
18644
|
createdAt: z.ZodDate;
|
|
18645
|
+
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
18483
18646
|
}, "strip", z.ZodTypeAny, {
|
|
18484
18647
|
payload: string;
|
|
18485
18648
|
payloadType: string;
|
|
@@ -18488,6 +18651,7 @@ declare const CoordinatorToProdWorkerMessages: {
|
|
|
18488
18651
|
isTest: boolean;
|
|
18489
18652
|
createdAt: Date;
|
|
18490
18653
|
context?: any;
|
|
18654
|
+
idempotencyKey?: string | undefined;
|
|
18491
18655
|
}, {
|
|
18492
18656
|
payload: string;
|
|
18493
18657
|
payloadType: string;
|
|
@@ -18496,6 +18660,7 @@ declare const CoordinatorToProdWorkerMessages: {
|
|
|
18496
18660
|
createdAt: Date;
|
|
18497
18661
|
context?: any;
|
|
18498
18662
|
isTest?: boolean | undefined;
|
|
18663
|
+
idempotencyKey?: string | undefined;
|
|
18499
18664
|
}>;
|
|
18500
18665
|
queue: z.ZodObject<{
|
|
18501
18666
|
id: z.ZodString;
|
|
@@ -18582,6 +18747,7 @@ declare const CoordinatorToProdWorkerMessages: {
|
|
|
18582
18747
|
isTest: boolean;
|
|
18583
18748
|
createdAt: Date;
|
|
18584
18749
|
context?: any;
|
|
18750
|
+
idempotencyKey?: string | undefined;
|
|
18585
18751
|
};
|
|
18586
18752
|
environment: {
|
|
18587
18753
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -18628,6 +18794,7 @@ declare const CoordinatorToProdWorkerMessages: {
|
|
|
18628
18794
|
createdAt: Date;
|
|
18629
18795
|
context?: any;
|
|
18630
18796
|
isTest?: boolean | undefined;
|
|
18797
|
+
idempotencyKey?: string | undefined;
|
|
18631
18798
|
};
|
|
18632
18799
|
environment: {
|
|
18633
18800
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -18709,6 +18876,7 @@ declare const CoordinatorToProdWorkerMessages: {
|
|
|
18709
18876
|
isTest: boolean;
|
|
18710
18877
|
createdAt: Date;
|
|
18711
18878
|
context?: any;
|
|
18879
|
+
idempotencyKey?: string | undefined;
|
|
18712
18880
|
};
|
|
18713
18881
|
environment: {
|
|
18714
18882
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -18789,6 +18957,7 @@ declare const CoordinatorToProdWorkerMessages: {
|
|
|
18789
18957
|
createdAt: Date;
|
|
18790
18958
|
context?: any;
|
|
18791
18959
|
isTest?: boolean | undefined;
|
|
18960
|
+
idempotencyKey?: string | undefined;
|
|
18792
18961
|
};
|
|
18793
18962
|
environment: {
|
|
18794
18963
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -18883,6 +19052,7 @@ declare const CoordinatorToProdWorkerMessages: {
|
|
|
18883
19052
|
tags: z.ZodArray<z.ZodString, "many">;
|
|
18884
19053
|
isTest: z.ZodDefault<z.ZodBoolean>;
|
|
18885
19054
|
createdAt: z.ZodDate;
|
|
19055
|
+
idempotencyKey: z.ZodOptional<z.ZodString>;
|
|
18886
19056
|
}, "strip", z.ZodTypeAny, {
|
|
18887
19057
|
payload: string;
|
|
18888
19058
|
payloadType: string;
|
|
@@ -18891,6 +19061,7 @@ declare const CoordinatorToProdWorkerMessages: {
|
|
|
18891
19061
|
isTest: boolean;
|
|
18892
19062
|
createdAt: Date;
|
|
18893
19063
|
context?: any;
|
|
19064
|
+
idempotencyKey?: string | undefined;
|
|
18894
19065
|
}, {
|
|
18895
19066
|
payload: string;
|
|
18896
19067
|
payloadType: string;
|
|
@@ -18899,6 +19070,7 @@ declare const CoordinatorToProdWorkerMessages: {
|
|
|
18899
19070
|
createdAt: Date;
|
|
18900
19071
|
context?: any;
|
|
18901
19072
|
isTest?: boolean | undefined;
|
|
19073
|
+
idempotencyKey?: string | undefined;
|
|
18902
19074
|
}>;
|
|
18903
19075
|
environment: z.ZodObject<{
|
|
18904
19076
|
id: z.ZodString;
|
|
@@ -18988,6 +19160,7 @@ declare const CoordinatorToProdWorkerMessages: {
|
|
|
18988
19160
|
isTest: boolean;
|
|
18989
19161
|
createdAt: Date;
|
|
18990
19162
|
context?: any;
|
|
19163
|
+
idempotencyKey?: string | undefined;
|
|
18991
19164
|
};
|
|
18992
19165
|
environment: {
|
|
18993
19166
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -19039,6 +19212,7 @@ declare const CoordinatorToProdWorkerMessages: {
|
|
|
19039
19212
|
createdAt: Date;
|
|
19040
19213
|
context?: any;
|
|
19041
19214
|
isTest?: boolean | undefined;
|
|
19215
|
+
idempotencyKey?: string | undefined;
|
|
19042
19216
|
};
|
|
19043
19217
|
environment: {
|
|
19044
19218
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -19094,6 +19268,7 @@ declare const CoordinatorToProdWorkerMessages: {
|
|
|
19094
19268
|
isTest: boolean;
|
|
19095
19269
|
createdAt: Date;
|
|
19096
19270
|
context?: any;
|
|
19271
|
+
idempotencyKey?: string | undefined;
|
|
19097
19272
|
};
|
|
19098
19273
|
environment: {
|
|
19099
19274
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -19149,6 +19324,7 @@ declare const CoordinatorToProdWorkerMessages: {
|
|
|
19149
19324
|
createdAt: Date;
|
|
19150
19325
|
context?: any;
|
|
19151
19326
|
isTest?: boolean | undefined;
|
|
19327
|
+
idempotencyKey?: string | undefined;
|
|
19152
19328
|
};
|
|
19153
19329
|
environment: {
|
|
19154
19330
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -19207,6 +19383,7 @@ declare const CoordinatorToProdWorkerMessages: {
|
|
|
19207
19383
|
isTest: boolean;
|
|
19208
19384
|
createdAt: Date;
|
|
19209
19385
|
context?: any;
|
|
19386
|
+
idempotencyKey?: string | undefined;
|
|
19210
19387
|
};
|
|
19211
19388
|
environment: {
|
|
19212
19389
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -19264,6 +19441,7 @@ declare const CoordinatorToProdWorkerMessages: {
|
|
|
19264
19441
|
createdAt: Date;
|
|
19265
19442
|
context?: any;
|
|
19266
19443
|
isTest?: boolean | undefined;
|
|
19444
|
+
idempotencyKey?: string | undefined;
|
|
19267
19445
|
};
|
|
19268
19446
|
environment: {
|
|
19269
19447
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -20242,6 +20420,8 @@ declare class ApiClient {
|
|
|
20242
20420
|
private readonly accessToken;
|
|
20243
20421
|
private readonly baseUrl;
|
|
20244
20422
|
constructor(baseUrl: string, accessToken: string);
|
|
20423
|
+
getRunResult(runId: string): Promise<TaskRunExecutionResult | undefined>;
|
|
20424
|
+
getBatchResults(batchId: string): Promise<BatchTaskRunExecutionResult | undefined>;
|
|
20245
20425
|
triggerTask(taskId: string, body: TriggerTaskRequestBody, options?: TriggerOptions): Promise<{
|
|
20246
20426
|
id: string;
|
|
20247
20427
|
}>;
|
|
@@ -20837,6 +21017,7 @@ declare const SemanticInternalAttributes: {
|
|
|
20837
21017
|
RETRY_DELAY: string;
|
|
20838
21018
|
RETRY_COUNT: string;
|
|
20839
21019
|
LINK_TITLE: string;
|
|
21020
|
+
IDEMPOTENCY_KEY: string;
|
|
20840
21021
|
};
|
|
20841
21022
|
|
|
20842
21023
|
declare function iconStringForSeverity(severityNumber: SeverityNumber): "trace" | "debug" | "info" | "warn" | "error" | "fatal" | undefined;
|
|
@@ -20884,7 +21065,6 @@ declare class TaskContextSpanProcessor implements SpanProcessor {
|
|
|
20884
21065
|
declare class DevRuntimeManager implements RuntimeManager {
|
|
20885
21066
|
_taskWaits: Map<string, {
|
|
20886
21067
|
resolve: (value: TaskRunExecutionResult) => void;
|
|
20887
|
-
reject: (err?: any) => void;
|
|
20888
21068
|
}>;
|
|
20889
21069
|
_batchWaits: Map<string, {
|
|
20890
21070
|
resolve: (value: BatchTaskRunExecutionResult) => void;
|
|
@@ -20914,7 +21094,6 @@ declare class ProdRuntimeManager implements RuntimeManager {
|
|
|
20914
21094
|
private options;
|
|
20915
21095
|
_taskWaits: Map<string, {
|
|
20916
21096
|
resolve: (value: TaskRunExecutionResult) => void;
|
|
20917
|
-
reject: (err?: any) => void;
|
|
20918
21097
|
}>;
|
|
20919
21098
|
_batchWaits: Map<string, {
|
|
20920
21099
|
resolve: (value: BatchTaskRunExecutionResult) => void;
|