@trigger.dev/core 3.0.7 → 3.0.9
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/commonjs/v3/apiClient/core.js +18 -1
- package/dist/commonjs/v3/apiClient/core.js.map +1 -1
- package/dist/commonjs/v3/apiClient/index.d.ts +12 -1
- package/dist/commonjs/v3/apiClient/index.js +7 -2
- package/dist/commonjs/v3/apiClient/index.js.map +1 -1
- package/dist/commonjs/v3/apiClientManager/index.d.ts +5 -0
- package/dist/commonjs/v3/apiClientManager/index.js +28 -1
- package/dist/commonjs/v3/apiClientManager/index.js.map +1 -1
- package/dist/commonjs/v3/index.d.ts +1 -0
- package/dist/commonjs/v3/index.js +1 -0
- package/dist/commonjs/v3/index.js.map +1 -1
- package/dist/commonjs/v3/run-metadata-api.d.ts +2 -0
- package/dist/commonjs/v3/run-metadata-api.js +8 -0
- package/dist/commonjs/v3/run-metadata-api.js.map +1 -0
- package/dist/commonjs/v3/runMetadata/index.d.ts +15 -0
- package/dist/commonjs/v3/runMetadata/index.js +67 -0
- package/dist/commonjs/v3/runMetadata/index.js.map +1 -0
- package/dist/commonjs/v3/schemas/api.d.ts +78 -0
- package/dist/commonjs/v3/schemas/api.js +12 -1
- package/dist/commonjs/v3/schemas/api.js.map +1 -1
- package/dist/commonjs/v3/schemas/common.d.ts +10 -1
- package/dist/commonjs/v3/schemas/common.js +3 -1
- package/dist/commonjs/v3/schemas/common.js.map +1 -1
- package/dist/commonjs/v3/schemas/messages.d.ts +117 -0
- package/dist/commonjs/v3/schemas/schemas.d.ts +19 -0
- package/dist/commonjs/v3/utils/globals.d.ts +2 -0
- package/dist/commonjs/v3/utils/globals.js.map +1 -1
- package/dist/commonjs/v3/workers/taskExecutor.js +12 -8
- package/dist/commonjs/v3/workers/taskExecutor.js.map +1 -1
- package/dist/commonjs/version.js +1 -1
- package/dist/esm/v3/apiClient/core.js +18 -1
- package/dist/esm/v3/apiClient/core.js.map +1 -1
- package/dist/esm/v3/apiClient/index.d.ts +12 -1
- package/dist/esm/v3/apiClient/index.js +8 -3
- package/dist/esm/v3/apiClient/index.js.map +1 -1
- package/dist/esm/v3/apiClientManager/index.d.ts +5 -0
- package/dist/esm/v3/apiClientManager/index.js +26 -0
- package/dist/esm/v3/apiClientManager/index.js.map +1 -1
- package/dist/esm/v3/index.d.ts +1 -0
- package/dist/esm/v3/index.js +1 -0
- package/dist/esm/v3/index.js.map +1 -1
- package/dist/esm/v3/run-metadata-api.d.ts +2 -0
- package/dist/esm/v3/run-metadata-api.js +5 -0
- package/dist/esm/v3/run-metadata-api.js.map +1 -0
- package/dist/esm/v3/runMetadata/index.d.ts +15 -0
- package/dist/esm/v3/runMetadata/index.js +63 -0
- package/dist/esm/v3/runMetadata/index.js.map +1 -0
- package/dist/esm/v3/schemas/api.d.ts +78 -0
- package/dist/esm/v3/schemas/api.js +11 -0
- package/dist/esm/v3/schemas/api.js.map +1 -1
- package/dist/esm/v3/schemas/common.d.ts +10 -1
- package/dist/esm/v3/schemas/common.js +3 -1
- package/dist/esm/v3/schemas/common.js.map +1 -1
- package/dist/esm/v3/schemas/messages.d.ts +117 -0
- package/dist/esm/v3/schemas/schemas.d.ts +19 -0
- package/dist/esm/v3/utils/globals.d.ts +2 -0
- package/dist/esm/v3/utils/globals.js.map +1 -1
- package/dist/esm/v3/workers/taskExecutor.js +4 -0
- package/dist/esm/v3/workers/taskExecutor.js.map +1 -1
- package/dist/esm/version.js +1 -1
- package/package.json +1 -1
|
@@ -536,6 +536,7 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
536
536
|
costInCents: z.ZodDefault<z.ZodNumber>;
|
|
537
537
|
baseCostInCents: z.ZodDefault<z.ZodNumber>;
|
|
538
538
|
version: z.ZodOptional<z.ZodString>;
|
|
539
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import("../../index.js").DeserializedJson, z.ZodTypeDef, import("../../index.js").DeserializedJson>>>;
|
|
539
540
|
}, "strip", z.ZodTypeAny, {
|
|
540
541
|
payload: string;
|
|
541
542
|
id: string;
|
|
@@ -551,6 +552,7 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
551
552
|
idempotencyKey?: string | undefined;
|
|
552
553
|
maxAttempts?: number | undefined;
|
|
553
554
|
version?: string | undefined;
|
|
555
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
554
556
|
}, {
|
|
555
557
|
payload: string;
|
|
556
558
|
id: string;
|
|
@@ -566,6 +568,7 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
566
568
|
costInCents?: number | undefined;
|
|
567
569
|
baseCostInCents?: number | undefined;
|
|
568
570
|
version?: string | undefined;
|
|
571
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
569
572
|
}>;
|
|
570
573
|
queue: z.ZodObject<{
|
|
571
574
|
id: z.ZodString;
|
|
@@ -658,6 +661,7 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
658
661
|
idempotencyKey?: string | undefined;
|
|
659
662
|
maxAttempts?: number | undefined;
|
|
660
663
|
version?: string | undefined;
|
|
664
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
661
665
|
};
|
|
662
666
|
environment: {
|
|
663
667
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -717,6 +721,7 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
717
721
|
costInCents?: number | undefined;
|
|
718
722
|
baseCostInCents?: number | undefined;
|
|
719
723
|
version?: string | undefined;
|
|
724
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
720
725
|
};
|
|
721
726
|
environment: {
|
|
722
727
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -780,6 +785,7 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
780
785
|
idempotencyKey?: string | undefined;
|
|
781
786
|
maxAttempts?: number | undefined;
|
|
782
787
|
version?: string | undefined;
|
|
788
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
783
789
|
};
|
|
784
790
|
environment: {
|
|
785
791
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -880,6 +886,7 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
880
886
|
costInCents?: number | undefined;
|
|
881
887
|
baseCostInCents?: number | undefined;
|
|
882
888
|
version?: string | undefined;
|
|
889
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
883
890
|
};
|
|
884
891
|
environment: {
|
|
885
892
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -1445,6 +1452,7 @@ export declare const clientWebsocketMessages: {
|
|
|
1445
1452
|
costInCents: z.ZodDefault<z.ZodNumber>;
|
|
1446
1453
|
baseCostInCents: z.ZodDefault<z.ZodNumber>;
|
|
1447
1454
|
version: z.ZodOptional<z.ZodString>;
|
|
1455
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import("../../index.js").DeserializedJson, z.ZodTypeDef, import("../../index.js").DeserializedJson>>>;
|
|
1448
1456
|
}, "strip", z.ZodTypeAny, {
|
|
1449
1457
|
payload: string;
|
|
1450
1458
|
id: string;
|
|
@@ -1460,6 +1468,7 @@ export declare const clientWebsocketMessages: {
|
|
|
1460
1468
|
idempotencyKey?: string | undefined;
|
|
1461
1469
|
maxAttempts?: number | undefined;
|
|
1462
1470
|
version?: string | undefined;
|
|
1471
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
1463
1472
|
}, {
|
|
1464
1473
|
payload: string;
|
|
1465
1474
|
id: string;
|
|
@@ -1475,6 +1484,7 @@ export declare const clientWebsocketMessages: {
|
|
|
1475
1484
|
costInCents?: number | undefined;
|
|
1476
1485
|
baseCostInCents?: number | undefined;
|
|
1477
1486
|
version?: string | undefined;
|
|
1487
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
1478
1488
|
}>;
|
|
1479
1489
|
queue: z.ZodObject<{
|
|
1480
1490
|
id: z.ZodString;
|
|
@@ -1567,6 +1577,7 @@ export declare const clientWebsocketMessages: {
|
|
|
1567
1577
|
idempotencyKey?: string | undefined;
|
|
1568
1578
|
maxAttempts?: number | undefined;
|
|
1569
1579
|
version?: string | undefined;
|
|
1580
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
1570
1581
|
};
|
|
1571
1582
|
environment: {
|
|
1572
1583
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -1626,6 +1637,7 @@ export declare const clientWebsocketMessages: {
|
|
|
1626
1637
|
costInCents?: number | undefined;
|
|
1627
1638
|
baseCostInCents?: number | undefined;
|
|
1628
1639
|
version?: string | undefined;
|
|
1640
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
1629
1641
|
};
|
|
1630
1642
|
environment: {
|
|
1631
1643
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -1689,6 +1701,7 @@ export declare const clientWebsocketMessages: {
|
|
|
1689
1701
|
idempotencyKey?: string | undefined;
|
|
1690
1702
|
maxAttempts?: number | undefined;
|
|
1691
1703
|
version?: string | undefined;
|
|
1704
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
1692
1705
|
};
|
|
1693
1706
|
environment: {
|
|
1694
1707
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -1789,6 +1802,7 @@ export declare const clientWebsocketMessages: {
|
|
|
1789
1802
|
costInCents?: number | undefined;
|
|
1790
1803
|
baseCostInCents?: number | undefined;
|
|
1791
1804
|
version?: string | undefined;
|
|
1805
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
1792
1806
|
};
|
|
1793
1807
|
environment: {
|
|
1794
1808
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -2118,6 +2132,7 @@ export declare const clientWebsocketMessages: {
|
|
|
2118
2132
|
idempotencyKey?: string | undefined;
|
|
2119
2133
|
maxAttempts?: number | undefined;
|
|
2120
2134
|
version?: string | undefined;
|
|
2135
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
2121
2136
|
};
|
|
2122
2137
|
environment: {
|
|
2123
2138
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -2263,6 +2278,7 @@ export declare const clientWebsocketMessages: {
|
|
|
2263
2278
|
costInCents?: number | undefined;
|
|
2264
2279
|
baseCostInCents?: number | undefined;
|
|
2265
2280
|
version?: string | undefined;
|
|
2281
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
2266
2282
|
};
|
|
2267
2283
|
environment: {
|
|
2268
2284
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -3232,6 +3248,7 @@ export declare const ExecutorToWorkerMessageCatalog: {
|
|
|
3232
3248
|
costInCents: z.ZodDefault<z.ZodNumber>;
|
|
3233
3249
|
baseCostInCents: z.ZodDefault<z.ZodNumber>;
|
|
3234
3250
|
version: z.ZodOptional<z.ZodString>;
|
|
3251
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import("../../index.js").DeserializedJson, z.ZodTypeDef, import("../../index.js").DeserializedJson>>>;
|
|
3235
3252
|
}, "strip", z.ZodTypeAny, {
|
|
3236
3253
|
payload: string;
|
|
3237
3254
|
id: string;
|
|
@@ -3247,6 +3264,7 @@ export declare const ExecutorToWorkerMessageCatalog: {
|
|
|
3247
3264
|
idempotencyKey?: string | undefined;
|
|
3248
3265
|
maxAttempts?: number | undefined;
|
|
3249
3266
|
version?: string | undefined;
|
|
3267
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
3250
3268
|
}, {
|
|
3251
3269
|
payload: string;
|
|
3252
3270
|
id: string;
|
|
@@ -3262,6 +3280,7 @@ export declare const ExecutorToWorkerMessageCatalog: {
|
|
|
3262
3280
|
costInCents?: number | undefined;
|
|
3263
3281
|
baseCostInCents?: number | undefined;
|
|
3264
3282
|
version?: string | undefined;
|
|
3283
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
3265
3284
|
}>;
|
|
3266
3285
|
queue: z.ZodObject<{
|
|
3267
3286
|
id: z.ZodString;
|
|
@@ -3354,6 +3373,7 @@ export declare const ExecutorToWorkerMessageCatalog: {
|
|
|
3354
3373
|
idempotencyKey?: string | undefined;
|
|
3355
3374
|
maxAttempts?: number | undefined;
|
|
3356
3375
|
version?: string | undefined;
|
|
3376
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
3357
3377
|
};
|
|
3358
3378
|
environment: {
|
|
3359
3379
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -3413,6 +3433,7 @@ export declare const ExecutorToWorkerMessageCatalog: {
|
|
|
3413
3433
|
costInCents?: number | undefined;
|
|
3414
3434
|
baseCostInCents?: number | undefined;
|
|
3415
3435
|
version?: string | undefined;
|
|
3436
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
3416
3437
|
};
|
|
3417
3438
|
environment: {
|
|
3418
3439
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -3635,6 +3656,7 @@ export declare const ExecutorToWorkerMessageCatalog: {
|
|
|
3635
3656
|
idempotencyKey?: string | undefined;
|
|
3636
3657
|
maxAttempts?: number | undefined;
|
|
3637
3658
|
version?: string | undefined;
|
|
3659
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
3638
3660
|
};
|
|
3639
3661
|
environment: {
|
|
3640
3662
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -3734,6 +3756,7 @@ export declare const ExecutorToWorkerMessageCatalog: {
|
|
|
3734
3756
|
costInCents?: number | undefined;
|
|
3735
3757
|
baseCostInCents?: number | undefined;
|
|
3736
3758
|
version?: string | undefined;
|
|
3759
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
3737
3760
|
};
|
|
3738
3761
|
environment: {
|
|
3739
3762
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -3970,6 +3993,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
3970
3993
|
costInCents: z.ZodDefault<z.ZodNumber>;
|
|
3971
3994
|
baseCostInCents: z.ZodDefault<z.ZodNumber>;
|
|
3972
3995
|
version: z.ZodOptional<z.ZodString>;
|
|
3996
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import("../../index.js").DeserializedJson, z.ZodTypeDef, import("../../index.js").DeserializedJson>>>;
|
|
3973
3997
|
}, "strip", z.ZodTypeAny, {
|
|
3974
3998
|
payload: string;
|
|
3975
3999
|
id: string;
|
|
@@ -3985,6 +4009,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
3985
4009
|
idempotencyKey?: string | undefined;
|
|
3986
4010
|
maxAttempts?: number | undefined;
|
|
3987
4011
|
version?: string | undefined;
|
|
4012
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
3988
4013
|
}, {
|
|
3989
4014
|
payload: string;
|
|
3990
4015
|
id: string;
|
|
@@ -4000,6 +4025,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
4000
4025
|
costInCents?: number | undefined;
|
|
4001
4026
|
baseCostInCents?: number | undefined;
|
|
4002
4027
|
version?: string | undefined;
|
|
4028
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
4003
4029
|
}>;
|
|
4004
4030
|
queue: z.ZodObject<{
|
|
4005
4031
|
id: z.ZodString;
|
|
@@ -4092,6 +4118,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
4092
4118
|
idempotencyKey?: string | undefined;
|
|
4093
4119
|
maxAttempts?: number | undefined;
|
|
4094
4120
|
version?: string | undefined;
|
|
4121
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
4095
4122
|
};
|
|
4096
4123
|
environment: {
|
|
4097
4124
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -4151,6 +4178,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
4151
4178
|
costInCents?: number | undefined;
|
|
4152
4179
|
baseCostInCents?: number | undefined;
|
|
4153
4180
|
version?: string | undefined;
|
|
4181
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
4154
4182
|
};
|
|
4155
4183
|
environment: {
|
|
4156
4184
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -4232,6 +4260,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
4232
4260
|
idempotencyKey?: string | undefined;
|
|
4233
4261
|
maxAttempts?: number | undefined;
|
|
4234
4262
|
version?: string | undefined;
|
|
4263
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
4235
4264
|
};
|
|
4236
4265
|
environment: {
|
|
4237
4266
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -4299,6 +4328,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
4299
4328
|
costInCents?: number | undefined;
|
|
4300
4329
|
baseCostInCents?: number | undefined;
|
|
4301
4330
|
version?: string | undefined;
|
|
4331
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
4302
4332
|
};
|
|
4303
4333
|
environment: {
|
|
4304
4334
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -4561,6 +4591,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
4561
4591
|
costInCents: z.ZodDefault<z.ZodNumber>;
|
|
4562
4592
|
baseCostInCents: z.ZodDefault<z.ZodNumber>;
|
|
4563
4593
|
version: z.ZodOptional<z.ZodString>;
|
|
4594
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import("../../index.js").DeserializedJson, z.ZodTypeDef, import("../../index.js").DeserializedJson>>>;
|
|
4564
4595
|
}, "strip", z.ZodTypeAny, {
|
|
4565
4596
|
payload: string;
|
|
4566
4597
|
id: string;
|
|
@@ -4576,6 +4607,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
4576
4607
|
idempotencyKey?: string | undefined;
|
|
4577
4608
|
maxAttempts?: number | undefined;
|
|
4578
4609
|
version?: string | undefined;
|
|
4610
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
4579
4611
|
}, {
|
|
4580
4612
|
payload: string;
|
|
4581
4613
|
id: string;
|
|
@@ -4591,6 +4623,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
4591
4623
|
costInCents?: number | undefined;
|
|
4592
4624
|
baseCostInCents?: number | undefined;
|
|
4593
4625
|
version?: string | undefined;
|
|
4626
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
4594
4627
|
}>;
|
|
4595
4628
|
queue: z.ZodObject<{
|
|
4596
4629
|
id: z.ZodString;
|
|
@@ -4683,6 +4716,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
4683
4716
|
idempotencyKey?: string | undefined;
|
|
4684
4717
|
maxAttempts?: number | undefined;
|
|
4685
4718
|
version?: string | undefined;
|
|
4719
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
4686
4720
|
};
|
|
4687
4721
|
environment: {
|
|
4688
4722
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -4742,6 +4776,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
4742
4776
|
costInCents?: number | undefined;
|
|
4743
4777
|
baseCostInCents?: number | undefined;
|
|
4744
4778
|
version?: string | undefined;
|
|
4779
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
4745
4780
|
};
|
|
4746
4781
|
environment: {
|
|
4747
4782
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -4804,6 +4839,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
4804
4839
|
idempotencyKey?: string | undefined;
|
|
4805
4840
|
maxAttempts?: number | undefined;
|
|
4806
4841
|
version?: string | undefined;
|
|
4842
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
4807
4843
|
};
|
|
4808
4844
|
environment: {
|
|
4809
4845
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -4904,6 +4940,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
4904
4940
|
costInCents?: number | undefined;
|
|
4905
4941
|
baseCostInCents?: number | undefined;
|
|
4906
4942
|
version?: string | undefined;
|
|
4943
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
4907
4944
|
};
|
|
4908
4945
|
environment: {
|
|
4909
4946
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -6855,6 +6892,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
6855
6892
|
costInCents: z.ZodDefault<z.ZodNumber>;
|
|
6856
6893
|
baseCostInCents: z.ZodDefault<z.ZodNumber>;
|
|
6857
6894
|
version: z.ZodOptional<z.ZodString>;
|
|
6895
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import("../../index.js").DeserializedJson, z.ZodTypeDef, import("../../index.js").DeserializedJson>>>;
|
|
6858
6896
|
}, "strip", z.ZodTypeAny, {
|
|
6859
6897
|
payload: string;
|
|
6860
6898
|
id: string;
|
|
@@ -6870,6 +6908,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
6870
6908
|
idempotencyKey?: string | undefined;
|
|
6871
6909
|
maxAttempts?: number | undefined;
|
|
6872
6910
|
version?: string | undefined;
|
|
6911
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
6873
6912
|
}, {
|
|
6874
6913
|
payload: string;
|
|
6875
6914
|
id: string;
|
|
@@ -6885,6 +6924,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
6885
6924
|
costInCents?: number | undefined;
|
|
6886
6925
|
baseCostInCents?: number | undefined;
|
|
6887
6926
|
version?: string | undefined;
|
|
6927
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
6888
6928
|
}>;
|
|
6889
6929
|
environment: z.ZodObject<{
|
|
6890
6930
|
id: z.ZodString;
|
|
@@ -7025,6 +7065,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
7025
7065
|
idempotencyKey?: string | undefined;
|
|
7026
7066
|
maxAttempts?: number | undefined;
|
|
7027
7067
|
version?: string | undefined;
|
|
7068
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
7028
7069
|
};
|
|
7029
7070
|
environment: {
|
|
7030
7071
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -7089,6 +7130,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
7089
7130
|
costInCents?: number | undefined;
|
|
7090
7131
|
baseCostInCents?: number | undefined;
|
|
7091
7132
|
version?: string | undefined;
|
|
7133
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
7092
7134
|
};
|
|
7093
7135
|
environment: {
|
|
7094
7136
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -7157,6 +7199,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
7157
7199
|
idempotencyKey?: string | undefined;
|
|
7158
7200
|
maxAttempts?: number | undefined;
|
|
7159
7201
|
version?: string | undefined;
|
|
7202
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
7160
7203
|
};
|
|
7161
7204
|
environment: {
|
|
7162
7205
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -7225,6 +7268,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
7225
7268
|
costInCents?: number | undefined;
|
|
7226
7269
|
baseCostInCents?: number | undefined;
|
|
7227
7270
|
version?: string | undefined;
|
|
7271
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
7228
7272
|
};
|
|
7229
7273
|
environment: {
|
|
7230
7274
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -7296,6 +7340,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
7296
7340
|
idempotencyKey?: string | undefined;
|
|
7297
7341
|
maxAttempts?: number | undefined;
|
|
7298
7342
|
version?: string | undefined;
|
|
7343
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
7299
7344
|
};
|
|
7300
7345
|
environment: {
|
|
7301
7346
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -7367,6 +7412,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
7367
7412
|
costInCents?: number | undefined;
|
|
7368
7413
|
baseCostInCents?: number | undefined;
|
|
7369
7414
|
version?: string | undefined;
|
|
7415
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
7370
7416
|
};
|
|
7371
7417
|
environment: {
|
|
7372
7418
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -7460,6 +7506,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
7460
7506
|
costInCents: z.ZodDefault<z.ZodNumber>;
|
|
7461
7507
|
baseCostInCents: z.ZodDefault<z.ZodNumber>;
|
|
7462
7508
|
version: z.ZodOptional<z.ZodString>;
|
|
7509
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import("../../index.js").DeserializedJson, z.ZodTypeDef, import("../../index.js").DeserializedJson>>>;
|
|
7463
7510
|
}, "strip", z.ZodTypeAny, {
|
|
7464
7511
|
payload: string;
|
|
7465
7512
|
id: string;
|
|
@@ -7475,6 +7522,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
7475
7522
|
idempotencyKey?: string | undefined;
|
|
7476
7523
|
maxAttempts?: number | undefined;
|
|
7477
7524
|
version?: string | undefined;
|
|
7525
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
7478
7526
|
}, {
|
|
7479
7527
|
payload: string;
|
|
7480
7528
|
id: string;
|
|
@@ -7490,6 +7538,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
7490
7538
|
costInCents?: number | undefined;
|
|
7491
7539
|
baseCostInCents?: number | undefined;
|
|
7492
7540
|
version?: string | undefined;
|
|
7541
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
7493
7542
|
}>;
|
|
7494
7543
|
environment: z.ZodObject<{
|
|
7495
7544
|
id: z.ZodString;
|
|
@@ -7630,6 +7679,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
7630
7679
|
idempotencyKey?: string | undefined;
|
|
7631
7680
|
maxAttempts?: number | undefined;
|
|
7632
7681
|
version?: string | undefined;
|
|
7682
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
7633
7683
|
};
|
|
7634
7684
|
environment: {
|
|
7635
7685
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -7694,6 +7744,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
7694
7744
|
costInCents?: number | undefined;
|
|
7695
7745
|
baseCostInCents?: number | undefined;
|
|
7696
7746
|
version?: string | undefined;
|
|
7747
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
7697
7748
|
};
|
|
7698
7749
|
environment: {
|
|
7699
7750
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -7762,6 +7813,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
7762
7813
|
idempotencyKey?: string | undefined;
|
|
7763
7814
|
maxAttempts?: number | undefined;
|
|
7764
7815
|
version?: string | undefined;
|
|
7816
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
7765
7817
|
};
|
|
7766
7818
|
environment: {
|
|
7767
7819
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -7830,6 +7882,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
7830
7882
|
costInCents?: number | undefined;
|
|
7831
7883
|
baseCostInCents?: number | undefined;
|
|
7832
7884
|
version?: string | undefined;
|
|
7885
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
7833
7886
|
};
|
|
7834
7887
|
environment: {
|
|
7835
7888
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -7900,6 +7953,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
7900
7953
|
idempotencyKey?: string | undefined;
|
|
7901
7954
|
maxAttempts?: number | undefined;
|
|
7902
7955
|
version?: string | undefined;
|
|
7956
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
7903
7957
|
};
|
|
7904
7958
|
environment: {
|
|
7905
7959
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -7971,6 +8025,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
7971
8025
|
costInCents?: number | undefined;
|
|
7972
8026
|
baseCostInCents?: number | undefined;
|
|
7973
8027
|
version?: string | undefined;
|
|
8028
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
7974
8029
|
};
|
|
7975
8030
|
environment: {
|
|
7976
8031
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -8132,6 +8187,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
8132
8187
|
costInCents: z.ZodDefault<z.ZodNumber>;
|
|
8133
8188
|
baseCostInCents: z.ZodDefault<z.ZodNumber>;
|
|
8134
8189
|
version: z.ZodOptional<z.ZodString>;
|
|
8190
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import("../../index.js").DeserializedJson, z.ZodTypeDef, import("../../index.js").DeserializedJson>>>;
|
|
8135
8191
|
}, "strip", z.ZodTypeAny, {
|
|
8136
8192
|
payload: string;
|
|
8137
8193
|
id: string;
|
|
@@ -8147,6 +8203,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
8147
8203
|
idempotencyKey?: string | undefined;
|
|
8148
8204
|
maxAttempts?: number | undefined;
|
|
8149
8205
|
version?: string | undefined;
|
|
8206
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
8150
8207
|
}, {
|
|
8151
8208
|
payload: string;
|
|
8152
8209
|
id: string;
|
|
@@ -8162,6 +8219,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
8162
8219
|
costInCents?: number | undefined;
|
|
8163
8220
|
baseCostInCents?: number | undefined;
|
|
8164
8221
|
version?: string | undefined;
|
|
8222
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
8165
8223
|
}>;
|
|
8166
8224
|
environment: z.ZodObject<{
|
|
8167
8225
|
id: z.ZodString;
|
|
@@ -8302,6 +8360,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
8302
8360
|
idempotencyKey?: string | undefined;
|
|
8303
8361
|
maxAttempts?: number | undefined;
|
|
8304
8362
|
version?: string | undefined;
|
|
8363
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
8305
8364
|
};
|
|
8306
8365
|
environment: {
|
|
8307
8366
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -8366,6 +8425,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
8366
8425
|
costInCents?: number | undefined;
|
|
8367
8426
|
baseCostInCents?: number | undefined;
|
|
8368
8427
|
version?: string | undefined;
|
|
8428
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
8369
8429
|
};
|
|
8370
8430
|
environment: {
|
|
8371
8431
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -8603,6 +8663,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
8603
8663
|
idempotencyKey?: string | undefined;
|
|
8604
8664
|
maxAttempts?: number | undefined;
|
|
8605
8665
|
version?: string | undefined;
|
|
8666
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
8606
8667
|
};
|
|
8607
8668
|
environment: {
|
|
8608
8669
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -8711,6 +8772,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
8711
8772
|
costInCents?: number | undefined;
|
|
8712
8773
|
baseCostInCents?: number | undefined;
|
|
8713
8774
|
version?: string | undefined;
|
|
8775
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
8714
8776
|
};
|
|
8715
8777
|
environment: {
|
|
8716
8778
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -9426,6 +9488,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
9426
9488
|
costInCents: z.ZodDefault<z.ZodNumber>;
|
|
9427
9489
|
baseCostInCents: z.ZodDefault<z.ZodNumber>;
|
|
9428
9490
|
version: z.ZodOptional<z.ZodString>;
|
|
9491
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import("../../index.js").DeserializedJson, z.ZodTypeDef, import("../../index.js").DeserializedJson>>>;
|
|
9429
9492
|
}, "strip", z.ZodTypeAny, {
|
|
9430
9493
|
payload: string;
|
|
9431
9494
|
id: string;
|
|
@@ -9441,6 +9504,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
9441
9504
|
idempotencyKey?: string | undefined;
|
|
9442
9505
|
maxAttempts?: number | undefined;
|
|
9443
9506
|
version?: string | undefined;
|
|
9507
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
9444
9508
|
}, {
|
|
9445
9509
|
payload: string;
|
|
9446
9510
|
id: string;
|
|
@@ -9456,6 +9520,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
9456
9520
|
costInCents?: number | undefined;
|
|
9457
9521
|
baseCostInCents?: number | undefined;
|
|
9458
9522
|
version?: string | undefined;
|
|
9523
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
9459
9524
|
}>;
|
|
9460
9525
|
queue: z.ZodObject<{
|
|
9461
9526
|
id: z.ZodString;
|
|
@@ -9548,6 +9613,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
9548
9613
|
idempotencyKey?: string | undefined;
|
|
9549
9614
|
maxAttempts?: number | undefined;
|
|
9550
9615
|
version?: string | undefined;
|
|
9616
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
9551
9617
|
};
|
|
9552
9618
|
environment: {
|
|
9553
9619
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -9607,6 +9673,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
9607
9673
|
costInCents?: number | undefined;
|
|
9608
9674
|
baseCostInCents?: number | undefined;
|
|
9609
9675
|
version?: string | undefined;
|
|
9676
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
9610
9677
|
};
|
|
9611
9678
|
environment: {
|
|
9612
9679
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -9710,6 +9777,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
9710
9777
|
idempotencyKey?: string | undefined;
|
|
9711
9778
|
maxAttempts?: number | undefined;
|
|
9712
9779
|
version?: string | undefined;
|
|
9780
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
9713
9781
|
};
|
|
9714
9782
|
environment: {
|
|
9715
9783
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -9812,6 +9880,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
9812
9880
|
costInCents?: number | undefined;
|
|
9813
9881
|
baseCostInCents?: number | undefined;
|
|
9814
9882
|
version?: string | undefined;
|
|
9883
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
9815
9884
|
};
|
|
9816
9885
|
environment: {
|
|
9817
9886
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -10076,6 +10145,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
10076
10145
|
costInCents: z.ZodDefault<z.ZodNumber>;
|
|
10077
10146
|
baseCostInCents: z.ZodDefault<z.ZodNumber>;
|
|
10078
10147
|
version: z.ZodOptional<z.ZodString>;
|
|
10148
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import("../../index.js").DeserializedJson, z.ZodTypeDef, import("../../index.js").DeserializedJson>>>;
|
|
10079
10149
|
}, "strip", z.ZodTypeAny, {
|
|
10080
10150
|
payload: string;
|
|
10081
10151
|
id: string;
|
|
@@ -10091,6 +10161,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
10091
10161
|
idempotencyKey?: string | undefined;
|
|
10092
10162
|
maxAttempts?: number | undefined;
|
|
10093
10163
|
version?: string | undefined;
|
|
10164
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
10094
10165
|
}, {
|
|
10095
10166
|
payload: string;
|
|
10096
10167
|
id: string;
|
|
@@ -10106,6 +10177,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
10106
10177
|
costInCents?: number | undefined;
|
|
10107
10178
|
baseCostInCents?: number | undefined;
|
|
10108
10179
|
version?: string | undefined;
|
|
10180
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
10109
10181
|
}>;
|
|
10110
10182
|
queue: z.ZodObject<{
|
|
10111
10183
|
id: z.ZodString;
|
|
@@ -10198,6 +10270,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
10198
10270
|
idempotencyKey?: string | undefined;
|
|
10199
10271
|
maxAttempts?: number | undefined;
|
|
10200
10272
|
version?: string | undefined;
|
|
10273
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
10201
10274
|
};
|
|
10202
10275
|
environment: {
|
|
10203
10276
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -10257,6 +10330,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
10257
10330
|
costInCents?: number | undefined;
|
|
10258
10331
|
baseCostInCents?: number | undefined;
|
|
10259
10332
|
version?: string | undefined;
|
|
10333
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
10260
10334
|
};
|
|
10261
10335
|
environment: {
|
|
10262
10336
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -10360,6 +10434,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
10360
10434
|
idempotencyKey?: string | undefined;
|
|
10361
10435
|
maxAttempts?: number | undefined;
|
|
10362
10436
|
version?: string | undefined;
|
|
10437
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
10363
10438
|
};
|
|
10364
10439
|
environment: {
|
|
10365
10440
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -10462,6 +10537,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
10462
10537
|
costInCents?: number | undefined;
|
|
10463
10538
|
baseCostInCents?: number | undefined;
|
|
10464
10539
|
version?: string | undefined;
|
|
10540
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
10465
10541
|
};
|
|
10466
10542
|
environment: {
|
|
10467
10543
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -10863,6 +10939,7 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
10863
10939
|
costInCents: z.ZodDefault<z.ZodNumber>;
|
|
10864
10940
|
baseCostInCents: z.ZodDefault<z.ZodNumber>;
|
|
10865
10941
|
version: z.ZodOptional<z.ZodString>;
|
|
10942
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import("../../index.js").DeserializedJson, z.ZodTypeDef, import("../../index.js").DeserializedJson>>>;
|
|
10866
10943
|
}, "strip", z.ZodTypeAny, {
|
|
10867
10944
|
payload: string;
|
|
10868
10945
|
id: string;
|
|
@@ -10878,6 +10955,7 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
10878
10955
|
idempotencyKey?: string | undefined;
|
|
10879
10956
|
maxAttempts?: number | undefined;
|
|
10880
10957
|
version?: string | undefined;
|
|
10958
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
10881
10959
|
}, {
|
|
10882
10960
|
payload: string;
|
|
10883
10961
|
id: string;
|
|
@@ -10893,6 +10971,7 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
10893
10971
|
costInCents?: number | undefined;
|
|
10894
10972
|
baseCostInCents?: number | undefined;
|
|
10895
10973
|
version?: string | undefined;
|
|
10974
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
10896
10975
|
}>;
|
|
10897
10976
|
queue: z.ZodObject<{
|
|
10898
10977
|
id: z.ZodString;
|
|
@@ -10985,6 +11064,7 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
10985
11064
|
idempotencyKey?: string | undefined;
|
|
10986
11065
|
maxAttempts?: number | undefined;
|
|
10987
11066
|
version?: string | undefined;
|
|
11067
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
10988
11068
|
};
|
|
10989
11069
|
environment: {
|
|
10990
11070
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -11044,6 +11124,7 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
11044
11124
|
costInCents?: number | undefined;
|
|
11045
11125
|
baseCostInCents?: number | undefined;
|
|
11046
11126
|
version?: string | undefined;
|
|
11127
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
11047
11128
|
};
|
|
11048
11129
|
environment: {
|
|
11049
11130
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -11107,6 +11188,7 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
11107
11188
|
idempotencyKey?: string | undefined;
|
|
11108
11189
|
maxAttempts?: number | undefined;
|
|
11109
11190
|
version?: string | undefined;
|
|
11191
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
11110
11192
|
};
|
|
11111
11193
|
environment: {
|
|
11112
11194
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -11207,6 +11289,7 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
11207
11289
|
costInCents?: number | undefined;
|
|
11208
11290
|
baseCostInCents?: number | undefined;
|
|
11209
11291
|
version?: string | undefined;
|
|
11292
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
11210
11293
|
};
|
|
11211
11294
|
environment: {
|
|
11212
11295
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -11536,6 +11619,7 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
11536
11619
|
idempotencyKey?: string | undefined;
|
|
11537
11620
|
maxAttempts?: number | undefined;
|
|
11538
11621
|
version?: string | undefined;
|
|
11622
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
11539
11623
|
};
|
|
11540
11624
|
environment: {
|
|
11541
11625
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -11681,6 +11765,7 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
11681
11765
|
costInCents?: number | undefined;
|
|
11682
11766
|
baseCostInCents?: number | undefined;
|
|
11683
11767
|
version?: string | undefined;
|
|
11768
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
11684
11769
|
};
|
|
11685
11770
|
environment: {
|
|
11686
11771
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -13150,6 +13235,7 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
13150
13235
|
costInCents: z.ZodDefault<z.ZodNumber>;
|
|
13151
13236
|
baseCostInCents: z.ZodDefault<z.ZodNumber>;
|
|
13152
13237
|
version: z.ZodOptional<z.ZodString>;
|
|
13238
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import("../../index.js").DeserializedJson, z.ZodTypeDef, import("../../index.js").DeserializedJson>>>;
|
|
13153
13239
|
}, "strip", z.ZodTypeAny, {
|
|
13154
13240
|
payload: string;
|
|
13155
13241
|
id: string;
|
|
@@ -13165,6 +13251,7 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
13165
13251
|
idempotencyKey?: string | undefined;
|
|
13166
13252
|
maxAttempts?: number | undefined;
|
|
13167
13253
|
version?: string | undefined;
|
|
13254
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
13168
13255
|
}, {
|
|
13169
13256
|
payload: string;
|
|
13170
13257
|
id: string;
|
|
@@ -13180,6 +13267,7 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
13180
13267
|
costInCents?: number | undefined;
|
|
13181
13268
|
baseCostInCents?: number | undefined;
|
|
13182
13269
|
version?: string | undefined;
|
|
13270
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
13183
13271
|
}>;
|
|
13184
13272
|
environment: z.ZodObject<{
|
|
13185
13273
|
id: z.ZodString;
|
|
@@ -13320,6 +13408,7 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
13320
13408
|
idempotencyKey?: string | undefined;
|
|
13321
13409
|
maxAttempts?: number | undefined;
|
|
13322
13410
|
version?: string | undefined;
|
|
13411
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
13323
13412
|
};
|
|
13324
13413
|
environment: {
|
|
13325
13414
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -13384,6 +13473,7 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
13384
13473
|
costInCents?: number | undefined;
|
|
13385
13474
|
baseCostInCents?: number | undefined;
|
|
13386
13475
|
version?: string | undefined;
|
|
13476
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
13387
13477
|
};
|
|
13388
13478
|
environment: {
|
|
13389
13479
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -13611,6 +13701,7 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
13611
13701
|
idempotencyKey?: string | undefined;
|
|
13612
13702
|
maxAttempts?: number | undefined;
|
|
13613
13703
|
version?: string | undefined;
|
|
13704
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
13614
13705
|
};
|
|
13615
13706
|
environment: {
|
|
13616
13707
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -13715,6 +13806,7 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
13715
13806
|
costInCents?: number | undefined;
|
|
13716
13807
|
baseCostInCents?: number | undefined;
|
|
13717
13808
|
version?: string | undefined;
|
|
13809
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
13718
13810
|
};
|
|
13719
13811
|
environment: {
|
|
13720
13812
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -14167,6 +14259,7 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
14167
14259
|
costInCents: z.ZodDefault<z.ZodNumber>;
|
|
14168
14260
|
baseCostInCents: z.ZodDefault<z.ZodNumber>;
|
|
14169
14261
|
version: z.ZodOptional<z.ZodString>;
|
|
14262
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import("../../index.js").DeserializedJson, z.ZodTypeDef, import("../../index.js").DeserializedJson>>>;
|
|
14170
14263
|
}, "strip", z.ZodTypeAny, {
|
|
14171
14264
|
payload: string;
|
|
14172
14265
|
id: string;
|
|
@@ -14182,6 +14275,7 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
14182
14275
|
idempotencyKey?: string | undefined;
|
|
14183
14276
|
maxAttempts?: number | undefined;
|
|
14184
14277
|
version?: string | undefined;
|
|
14278
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
14185
14279
|
}, {
|
|
14186
14280
|
payload: string;
|
|
14187
14281
|
id: string;
|
|
@@ -14197,6 +14291,7 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
14197
14291
|
costInCents?: number | undefined;
|
|
14198
14292
|
baseCostInCents?: number | undefined;
|
|
14199
14293
|
version?: string | undefined;
|
|
14294
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
14200
14295
|
}>;
|
|
14201
14296
|
environment: z.ZodObject<{
|
|
14202
14297
|
id: z.ZodString;
|
|
@@ -14337,6 +14432,7 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
14337
14432
|
idempotencyKey?: string | undefined;
|
|
14338
14433
|
maxAttempts?: number | undefined;
|
|
14339
14434
|
version?: string | undefined;
|
|
14435
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
14340
14436
|
};
|
|
14341
14437
|
environment: {
|
|
14342
14438
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -14401,6 +14497,7 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
14401
14497
|
costInCents?: number | undefined;
|
|
14402
14498
|
baseCostInCents?: number | undefined;
|
|
14403
14499
|
version?: string | undefined;
|
|
14500
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
14404
14501
|
};
|
|
14405
14502
|
environment: {
|
|
14406
14503
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -14469,6 +14566,7 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
14469
14566
|
idempotencyKey?: string | undefined;
|
|
14470
14567
|
maxAttempts?: number | undefined;
|
|
14471
14568
|
version?: string | undefined;
|
|
14569
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
14472
14570
|
};
|
|
14473
14571
|
environment: {
|
|
14474
14572
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -14537,6 +14635,7 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
14537
14635
|
costInCents?: number | undefined;
|
|
14538
14636
|
baseCostInCents?: number | undefined;
|
|
14539
14637
|
version?: string | undefined;
|
|
14638
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
14540
14639
|
};
|
|
14541
14640
|
environment: {
|
|
14542
14641
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -14608,6 +14707,7 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
14608
14707
|
idempotencyKey?: string | undefined;
|
|
14609
14708
|
maxAttempts?: number | undefined;
|
|
14610
14709
|
version?: string | undefined;
|
|
14710
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
14611
14711
|
};
|
|
14612
14712
|
environment: {
|
|
14613
14713
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -14679,6 +14779,7 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
14679
14779
|
costInCents?: number | undefined;
|
|
14680
14780
|
baseCostInCents?: number | undefined;
|
|
14681
14781
|
version?: string | undefined;
|
|
14782
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
14682
14783
|
};
|
|
14683
14784
|
environment: {
|
|
14684
14785
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -14997,6 +15098,7 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
14997
15098
|
costInCents: z.ZodDefault<z.ZodNumber>;
|
|
14998
15099
|
baseCostInCents: z.ZodDefault<z.ZodNumber>;
|
|
14999
15100
|
version: z.ZodOptional<z.ZodString>;
|
|
15101
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import("../../index.js").DeserializedJson, z.ZodTypeDef, import("../../index.js").DeserializedJson>>>;
|
|
15000
15102
|
}, "strip", z.ZodTypeAny, {
|
|
15001
15103
|
payload: string;
|
|
15002
15104
|
id: string;
|
|
@@ -15012,6 +15114,7 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
15012
15114
|
idempotencyKey?: string | undefined;
|
|
15013
15115
|
maxAttempts?: number | undefined;
|
|
15014
15116
|
version?: string | undefined;
|
|
15117
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
15015
15118
|
}, {
|
|
15016
15119
|
payload: string;
|
|
15017
15120
|
id: string;
|
|
@@ -15027,6 +15130,7 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
15027
15130
|
costInCents?: number | undefined;
|
|
15028
15131
|
baseCostInCents?: number | undefined;
|
|
15029
15132
|
version?: string | undefined;
|
|
15133
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
15030
15134
|
}>;
|
|
15031
15135
|
queue: z.ZodObject<{
|
|
15032
15136
|
id: z.ZodString;
|
|
@@ -15119,6 +15223,7 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
15119
15223
|
idempotencyKey?: string | undefined;
|
|
15120
15224
|
maxAttempts?: number | undefined;
|
|
15121
15225
|
version?: string | undefined;
|
|
15226
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
15122
15227
|
};
|
|
15123
15228
|
environment: {
|
|
15124
15229
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -15178,6 +15283,7 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
15178
15283
|
costInCents?: number | undefined;
|
|
15179
15284
|
baseCostInCents?: number | undefined;
|
|
15180
15285
|
version?: string | undefined;
|
|
15286
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
15181
15287
|
};
|
|
15182
15288
|
environment: {
|
|
15183
15289
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -15279,6 +15385,7 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
15279
15385
|
idempotencyKey?: string | undefined;
|
|
15280
15386
|
maxAttempts?: number | undefined;
|
|
15281
15387
|
version?: string | undefined;
|
|
15388
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
15282
15389
|
};
|
|
15283
15390
|
environment: {
|
|
15284
15391
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -15379,6 +15486,7 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
15379
15486
|
costInCents?: number | undefined;
|
|
15380
15487
|
baseCostInCents?: number | undefined;
|
|
15381
15488
|
version?: string | undefined;
|
|
15489
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
15382
15490
|
};
|
|
15383
15491
|
environment: {
|
|
15384
15492
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -15458,6 +15566,7 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
15458
15566
|
costInCents: z.ZodDefault<z.ZodNumber>;
|
|
15459
15567
|
baseCostInCents: z.ZodDefault<z.ZodNumber>;
|
|
15460
15568
|
version: z.ZodOptional<z.ZodString>;
|
|
15569
|
+
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<import("../../index.js").DeserializedJson, z.ZodTypeDef, import("../../index.js").DeserializedJson>>>;
|
|
15461
15570
|
}, "strip", z.ZodTypeAny, {
|
|
15462
15571
|
payload: string;
|
|
15463
15572
|
id: string;
|
|
@@ -15473,6 +15582,7 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
15473
15582
|
idempotencyKey?: string | undefined;
|
|
15474
15583
|
maxAttempts?: number | undefined;
|
|
15475
15584
|
version?: string | undefined;
|
|
15585
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
15476
15586
|
}, {
|
|
15477
15587
|
payload: string;
|
|
15478
15588
|
id: string;
|
|
@@ -15488,6 +15598,7 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
15488
15598
|
costInCents?: number | undefined;
|
|
15489
15599
|
baseCostInCents?: number | undefined;
|
|
15490
15600
|
version?: string | undefined;
|
|
15601
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
15491
15602
|
}>;
|
|
15492
15603
|
environment: z.ZodObject<{
|
|
15493
15604
|
id: z.ZodString;
|
|
@@ -15628,6 +15739,7 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
15628
15739
|
idempotencyKey?: string | undefined;
|
|
15629
15740
|
maxAttempts?: number | undefined;
|
|
15630
15741
|
version?: string | undefined;
|
|
15742
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
15631
15743
|
};
|
|
15632
15744
|
environment: {
|
|
15633
15745
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -15692,6 +15804,7 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
15692
15804
|
costInCents?: number | undefined;
|
|
15693
15805
|
baseCostInCents?: number | undefined;
|
|
15694
15806
|
version?: string | undefined;
|
|
15807
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
15695
15808
|
};
|
|
15696
15809
|
environment: {
|
|
15697
15810
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -15760,6 +15873,7 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
15760
15873
|
idempotencyKey?: string | undefined;
|
|
15761
15874
|
maxAttempts?: number | undefined;
|
|
15762
15875
|
version?: string | undefined;
|
|
15876
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
15763
15877
|
};
|
|
15764
15878
|
environment: {
|
|
15765
15879
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -15828,6 +15942,7 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
15828
15942
|
costInCents?: number | undefined;
|
|
15829
15943
|
baseCostInCents?: number | undefined;
|
|
15830
15944
|
version?: string | undefined;
|
|
15945
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
15831
15946
|
};
|
|
15832
15947
|
environment: {
|
|
15833
15948
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -15899,6 +16014,7 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
15899
16014
|
idempotencyKey?: string | undefined;
|
|
15900
16015
|
maxAttempts?: number | undefined;
|
|
15901
16016
|
version?: string | undefined;
|
|
16017
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
15902
16018
|
};
|
|
15903
16019
|
environment: {
|
|
15904
16020
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
@@ -15969,6 +16085,7 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
15969
16085
|
costInCents?: number | undefined;
|
|
15970
16086
|
baseCostInCents?: number | undefined;
|
|
15971
16087
|
version?: string | undefined;
|
|
16088
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
15972
16089
|
};
|
|
15973
16090
|
environment: {
|
|
15974
16091
|
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|