@trigger.dev/core 3.2.1 → 3.3.0
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/index.d.ts +45 -27
- package/dist/commonjs/v3/apiClient/index.js +28 -11
- package/dist/commonjs/v3/apiClient/index.js.map +1 -1
- package/dist/commonjs/v3/apiClient/runStream.d.ts +1 -0
- package/dist/commonjs/v3/apiClient/runStream.js.map +1 -1
- package/dist/commonjs/v3/apiClient/types.d.ts +1 -0
- package/dist/commonjs/v3/schemas/api.d.ts +432 -777
- package/dist/commonjs/v3/schemas/api.js +51 -2
- package/dist/commonjs/v3/schemas/api.js.map +1 -1
- package/dist/commonjs/v3/schemas/build.d.ts +0 -506
- package/dist/commonjs/v3/schemas/common.d.ts +22 -0
- package/dist/commonjs/v3/schemas/common.js +4 -0
- package/dist/commonjs/v3/schemas/common.js.map +1 -1
- package/dist/commonjs/v3/schemas/messages.d.ts +147 -1181
- package/dist/commonjs/v3/schemas/resources.d.ts +0 -380
- package/dist/commonjs/v3/schemas/schemas.d.ts +0 -468
- package/dist/commonjs/v3/schemas/schemas.js +0 -2
- package/dist/commonjs/v3/schemas/schemas.js.map +1 -1
- package/dist/commonjs/v3/types/tasks.d.ts +93 -16
- package/dist/commonjs/v3/types/tasks.js.map +1 -1
- package/dist/commonjs/version.js +1 -1
- package/dist/esm/v3/apiClient/index.d.ts +45 -27
- package/dist/esm/v3/apiClient/index.js +29 -12
- package/dist/esm/v3/apiClient/index.js.map +1 -1
- package/dist/esm/v3/apiClient/runStream.d.ts +1 -0
- package/dist/esm/v3/apiClient/runStream.js.map +1 -1
- package/dist/esm/v3/apiClient/types.d.ts +1 -0
- package/dist/esm/v3/schemas/api.d.ts +432 -777
- package/dist/esm/v3/schemas/api.js +49 -0
- package/dist/esm/v3/schemas/api.js.map +1 -1
- package/dist/esm/v3/schemas/build.d.ts +0 -506
- package/dist/esm/v3/schemas/common.d.ts +22 -0
- package/dist/esm/v3/schemas/common.js +4 -0
- package/dist/esm/v3/schemas/common.js.map +1 -1
- package/dist/esm/v3/schemas/messages.d.ts +147 -1181
- package/dist/esm/v3/schemas/resources.d.ts +0 -380
- package/dist/esm/v3/schemas/schemas.d.ts +0 -468
- package/dist/esm/v3/schemas/schemas.js +0 -2
- package/dist/esm/v3/schemas/schemas.js.map +1 -1
- package/dist/esm/v3/types/tasks.d.ts +93 -16
- package/dist/esm/v3/types/tasks.js.map +1 -1
- package/dist/esm/version.js +1 -1
- package/package.json +1 -1
|
@@ -337,6 +337,7 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
337
337
|
}, {
|
|
338
338
|
durationMs: number;
|
|
339
339
|
}>>;
|
|
340
|
+
taskIdentifier: z.ZodOptional<z.ZodString>;
|
|
340
341
|
}, "strip", z.ZodTypeAny, {
|
|
341
342
|
id: string;
|
|
342
343
|
ok: true;
|
|
@@ -345,6 +346,7 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
345
346
|
usage?: {
|
|
346
347
|
durationMs: number;
|
|
347
348
|
} | undefined;
|
|
349
|
+
taskIdentifier?: string | undefined;
|
|
348
350
|
}, {
|
|
349
351
|
id: string;
|
|
350
352
|
ok: true;
|
|
@@ -353,6 +355,7 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
353
355
|
usage?: {
|
|
354
356
|
durationMs: number;
|
|
355
357
|
} | undefined;
|
|
358
|
+
taskIdentifier?: string | undefined;
|
|
356
359
|
}>, z.ZodObject<{
|
|
357
360
|
ok: z.ZodLiteral<false>;
|
|
358
361
|
id: z.ZodString;
|
|
@@ -426,6 +429,7 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
426
429
|
}, {
|
|
427
430
|
durationMs: number;
|
|
428
431
|
}>>;
|
|
432
|
+
taskIdentifier: z.ZodOptional<z.ZodString>;
|
|
429
433
|
}, "strip", z.ZodTypeAny, {
|
|
430
434
|
id: string;
|
|
431
435
|
error: {
|
|
@@ -455,6 +459,7 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
455
459
|
usage?: {
|
|
456
460
|
durationMs: number;
|
|
457
461
|
} | undefined;
|
|
462
|
+
taskIdentifier?: string | undefined;
|
|
458
463
|
}, {
|
|
459
464
|
id: string;
|
|
460
465
|
error: {
|
|
@@ -484,6 +489,7 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
484
489
|
usage?: {
|
|
485
490
|
durationMs: number;
|
|
486
491
|
} | undefined;
|
|
492
|
+
taskIdentifier?: string | undefined;
|
|
487
493
|
}>]>;
|
|
488
494
|
execution: z.ZodObject<{
|
|
489
495
|
task: z.ZodObject<{
|
|
@@ -865,6 +871,7 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
865
871
|
usage?: {
|
|
866
872
|
durationMs: number;
|
|
867
873
|
} | undefined;
|
|
874
|
+
taskIdentifier?: string | undefined;
|
|
868
875
|
} | {
|
|
869
876
|
id: string;
|
|
870
877
|
ok: true;
|
|
@@ -873,6 +880,7 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
873
880
|
usage?: {
|
|
874
881
|
durationMs: number;
|
|
875
882
|
} | undefined;
|
|
883
|
+
taskIdentifier?: string | undefined;
|
|
876
884
|
};
|
|
877
885
|
}, {
|
|
878
886
|
type: "TASK_RUN_COMPLETED";
|
|
@@ -967,6 +975,7 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
967
975
|
usage?: {
|
|
968
976
|
durationMs: number;
|
|
969
977
|
} | undefined;
|
|
978
|
+
taskIdentifier?: string | undefined;
|
|
970
979
|
} | {
|
|
971
980
|
id: string;
|
|
972
981
|
ok: true;
|
|
@@ -975,6 +984,7 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
975
984
|
usage?: {
|
|
976
985
|
durationMs: number;
|
|
977
986
|
} | undefined;
|
|
987
|
+
taskIdentifier?: string | undefined;
|
|
978
988
|
};
|
|
979
989
|
version?: "v1" | undefined;
|
|
980
990
|
}>, z.ZodObject<{
|
|
@@ -1053,6 +1063,7 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
1053
1063
|
}, {
|
|
1054
1064
|
durationMs: number;
|
|
1055
1065
|
}>>;
|
|
1066
|
+
taskIdentifier: z.ZodOptional<z.ZodString>;
|
|
1056
1067
|
}, "strip", z.ZodTypeAny, {
|
|
1057
1068
|
id: string;
|
|
1058
1069
|
error: {
|
|
@@ -1082,6 +1093,7 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
1082
1093
|
usage?: {
|
|
1083
1094
|
durationMs: number;
|
|
1084
1095
|
} | undefined;
|
|
1096
|
+
taskIdentifier?: string | undefined;
|
|
1085
1097
|
}, {
|
|
1086
1098
|
id: string;
|
|
1087
1099
|
error: {
|
|
@@ -1111,6 +1123,7 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
1111
1123
|
usage?: {
|
|
1112
1124
|
durationMs: number;
|
|
1113
1125
|
} | undefined;
|
|
1126
|
+
taskIdentifier?: string | undefined;
|
|
1114
1127
|
}>;
|
|
1115
1128
|
}, "strip", z.ZodTypeAny, {
|
|
1116
1129
|
type: "TASK_RUN_FAILED_TO_RUN";
|
|
@@ -1144,6 +1157,7 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
1144
1157
|
usage?: {
|
|
1145
1158
|
durationMs: number;
|
|
1146
1159
|
} | undefined;
|
|
1160
|
+
taskIdentifier?: string | undefined;
|
|
1147
1161
|
};
|
|
1148
1162
|
}, {
|
|
1149
1163
|
type: "TASK_RUN_FAILED_TO_RUN";
|
|
@@ -1176,6 +1190,7 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
1176
1190
|
usage?: {
|
|
1177
1191
|
durationMs: number;
|
|
1178
1192
|
} | undefined;
|
|
1193
|
+
taskIdentifier?: string | undefined;
|
|
1179
1194
|
};
|
|
1180
1195
|
version?: "v1" | undefined;
|
|
1181
1196
|
}>, z.ZodObject<{
|
|
@@ -1260,6 +1275,7 @@ export declare const clientWebsocketMessages: {
|
|
|
1260
1275
|
}, {
|
|
1261
1276
|
durationMs: number;
|
|
1262
1277
|
}>>;
|
|
1278
|
+
taskIdentifier: z.ZodOptional<z.ZodString>;
|
|
1263
1279
|
}, "strip", z.ZodTypeAny, {
|
|
1264
1280
|
id: string;
|
|
1265
1281
|
ok: true;
|
|
@@ -1268,6 +1284,7 @@ export declare const clientWebsocketMessages: {
|
|
|
1268
1284
|
usage?: {
|
|
1269
1285
|
durationMs: number;
|
|
1270
1286
|
} | undefined;
|
|
1287
|
+
taskIdentifier?: string | undefined;
|
|
1271
1288
|
}, {
|
|
1272
1289
|
id: string;
|
|
1273
1290
|
ok: true;
|
|
@@ -1276,6 +1293,7 @@ export declare const clientWebsocketMessages: {
|
|
|
1276
1293
|
usage?: {
|
|
1277
1294
|
durationMs: number;
|
|
1278
1295
|
} | undefined;
|
|
1296
|
+
taskIdentifier?: string | undefined;
|
|
1279
1297
|
}>, z.ZodObject<{
|
|
1280
1298
|
ok: z.ZodLiteral<false>;
|
|
1281
1299
|
id: z.ZodString;
|
|
@@ -1349,6 +1367,7 @@ export declare const clientWebsocketMessages: {
|
|
|
1349
1367
|
}, {
|
|
1350
1368
|
durationMs: number;
|
|
1351
1369
|
}>>;
|
|
1370
|
+
taskIdentifier: z.ZodOptional<z.ZodString>;
|
|
1352
1371
|
}, "strip", z.ZodTypeAny, {
|
|
1353
1372
|
id: string;
|
|
1354
1373
|
error: {
|
|
@@ -1378,6 +1397,7 @@ export declare const clientWebsocketMessages: {
|
|
|
1378
1397
|
usage?: {
|
|
1379
1398
|
durationMs: number;
|
|
1380
1399
|
} | undefined;
|
|
1400
|
+
taskIdentifier?: string | undefined;
|
|
1381
1401
|
}, {
|
|
1382
1402
|
id: string;
|
|
1383
1403
|
error: {
|
|
@@ -1407,6 +1427,7 @@ export declare const clientWebsocketMessages: {
|
|
|
1407
1427
|
usage?: {
|
|
1408
1428
|
durationMs: number;
|
|
1409
1429
|
} | undefined;
|
|
1430
|
+
taskIdentifier?: string | undefined;
|
|
1410
1431
|
}>]>;
|
|
1411
1432
|
execution: z.ZodObject<{
|
|
1412
1433
|
task: z.ZodObject<{
|
|
@@ -1788,6 +1809,7 @@ export declare const clientWebsocketMessages: {
|
|
|
1788
1809
|
usage?: {
|
|
1789
1810
|
durationMs: number;
|
|
1790
1811
|
} | undefined;
|
|
1812
|
+
taskIdentifier?: string | undefined;
|
|
1791
1813
|
} | {
|
|
1792
1814
|
id: string;
|
|
1793
1815
|
ok: true;
|
|
@@ -1796,6 +1818,7 @@ export declare const clientWebsocketMessages: {
|
|
|
1796
1818
|
usage?: {
|
|
1797
1819
|
durationMs: number;
|
|
1798
1820
|
} | undefined;
|
|
1821
|
+
taskIdentifier?: string | undefined;
|
|
1799
1822
|
};
|
|
1800
1823
|
}, {
|
|
1801
1824
|
type: "TASK_RUN_COMPLETED";
|
|
@@ -1890,6 +1913,7 @@ export declare const clientWebsocketMessages: {
|
|
|
1890
1913
|
usage?: {
|
|
1891
1914
|
durationMs: number;
|
|
1892
1915
|
} | undefined;
|
|
1916
|
+
taskIdentifier?: string | undefined;
|
|
1893
1917
|
} | {
|
|
1894
1918
|
id: string;
|
|
1895
1919
|
ok: true;
|
|
@@ -1898,6 +1922,7 @@ export declare const clientWebsocketMessages: {
|
|
|
1898
1922
|
usage?: {
|
|
1899
1923
|
durationMs: number;
|
|
1900
1924
|
} | undefined;
|
|
1925
|
+
taskIdentifier?: string | undefined;
|
|
1901
1926
|
};
|
|
1902
1927
|
version?: "v1" | undefined;
|
|
1903
1928
|
}>, z.ZodObject<{
|
|
@@ -1976,6 +2001,7 @@ export declare const clientWebsocketMessages: {
|
|
|
1976
2001
|
}, {
|
|
1977
2002
|
durationMs: number;
|
|
1978
2003
|
}>>;
|
|
2004
|
+
taskIdentifier: z.ZodOptional<z.ZodString>;
|
|
1979
2005
|
}, "strip", z.ZodTypeAny, {
|
|
1980
2006
|
id: string;
|
|
1981
2007
|
error: {
|
|
@@ -2005,6 +2031,7 @@ export declare const clientWebsocketMessages: {
|
|
|
2005
2031
|
usage?: {
|
|
2006
2032
|
durationMs: number;
|
|
2007
2033
|
} | undefined;
|
|
2034
|
+
taskIdentifier?: string | undefined;
|
|
2008
2035
|
}, {
|
|
2009
2036
|
id: string;
|
|
2010
2037
|
error: {
|
|
@@ -2034,6 +2061,7 @@ export declare const clientWebsocketMessages: {
|
|
|
2034
2061
|
usage?: {
|
|
2035
2062
|
durationMs: number;
|
|
2036
2063
|
} | undefined;
|
|
2064
|
+
taskIdentifier?: string | undefined;
|
|
2037
2065
|
}>;
|
|
2038
2066
|
}, "strip", z.ZodTypeAny, {
|
|
2039
2067
|
type: "TASK_RUN_FAILED_TO_RUN";
|
|
@@ -2067,6 +2095,7 @@ export declare const clientWebsocketMessages: {
|
|
|
2067
2095
|
usage?: {
|
|
2068
2096
|
durationMs: number;
|
|
2069
2097
|
} | undefined;
|
|
2098
|
+
taskIdentifier?: string | undefined;
|
|
2070
2099
|
};
|
|
2071
2100
|
}, {
|
|
2072
2101
|
type: "TASK_RUN_FAILED_TO_RUN";
|
|
@@ -2099,6 +2128,7 @@ export declare const clientWebsocketMessages: {
|
|
|
2099
2128
|
usage?: {
|
|
2100
2129
|
durationMs: number;
|
|
2101
2130
|
} | undefined;
|
|
2131
|
+
taskIdentifier?: string | undefined;
|
|
2102
2132
|
};
|
|
2103
2133
|
version?: "v1" | undefined;
|
|
2104
2134
|
}>, z.ZodObject<{
|
|
@@ -2222,6 +2252,7 @@ export declare const clientWebsocketMessages: {
|
|
|
2222
2252
|
usage?: {
|
|
2223
2253
|
durationMs: number;
|
|
2224
2254
|
} | undefined;
|
|
2255
|
+
taskIdentifier?: string | undefined;
|
|
2225
2256
|
} | {
|
|
2226
2257
|
id: string;
|
|
2227
2258
|
ok: true;
|
|
@@ -2230,6 +2261,7 @@ export declare const clientWebsocketMessages: {
|
|
|
2230
2261
|
usage?: {
|
|
2231
2262
|
durationMs: number;
|
|
2232
2263
|
} | undefined;
|
|
2264
|
+
taskIdentifier?: string | undefined;
|
|
2233
2265
|
};
|
|
2234
2266
|
} | {
|
|
2235
2267
|
type: "TASK_RUN_FAILED_TO_RUN";
|
|
@@ -2263,6 +2295,7 @@ export declare const clientWebsocketMessages: {
|
|
|
2263
2295
|
usage?: {
|
|
2264
2296
|
durationMs: number;
|
|
2265
2297
|
} | undefined;
|
|
2298
|
+
taskIdentifier?: string | undefined;
|
|
2266
2299
|
};
|
|
2267
2300
|
} | {
|
|
2268
2301
|
type: "TASK_HEARTBEAT";
|
|
@@ -2368,6 +2401,7 @@ export declare const clientWebsocketMessages: {
|
|
|
2368
2401
|
usage?: {
|
|
2369
2402
|
durationMs: number;
|
|
2370
2403
|
} | undefined;
|
|
2404
|
+
taskIdentifier?: string | undefined;
|
|
2371
2405
|
} | {
|
|
2372
2406
|
id: string;
|
|
2373
2407
|
ok: true;
|
|
@@ -2376,6 +2410,7 @@ export declare const clientWebsocketMessages: {
|
|
|
2376
2410
|
usage?: {
|
|
2377
2411
|
durationMs: number;
|
|
2378
2412
|
} | undefined;
|
|
2413
|
+
taskIdentifier?: string | undefined;
|
|
2379
2414
|
};
|
|
2380
2415
|
version?: "v1" | undefined;
|
|
2381
2416
|
} | {
|
|
@@ -2409,6 +2444,7 @@ export declare const clientWebsocketMessages: {
|
|
|
2409
2444
|
usage?: {
|
|
2410
2445
|
durationMs: number;
|
|
2411
2446
|
} | undefined;
|
|
2447
|
+
taskIdentifier?: string | undefined;
|
|
2412
2448
|
};
|
|
2413
2449
|
version?: "v1" | undefined;
|
|
2414
2450
|
} | {
|
|
@@ -2484,139 +2520,12 @@ export declare const indexerToWorkerMessages: {
|
|
|
2484
2520
|
queue: z.ZodOptional<z.ZodObject<{
|
|
2485
2521
|
name: z.ZodOptional<z.ZodString>;
|
|
2486
2522
|
concurrencyLimit: z.ZodOptional<z.ZodNumber>;
|
|
2487
|
-
rateLimit: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
2488
|
-
type: z.ZodLiteral<"fixed-window">;
|
|
2489
|
-
limit: z.ZodNumber;
|
|
2490
|
-
window: z.ZodUnion<[z.ZodObject<{
|
|
2491
|
-
seconds: z.ZodNumber;
|
|
2492
|
-
}, "strip", z.ZodTypeAny, {
|
|
2493
|
-
seconds: number;
|
|
2494
|
-
}, {
|
|
2495
|
-
seconds: number;
|
|
2496
|
-
}>, z.ZodObject<{
|
|
2497
|
-
minutes: z.ZodNumber;
|
|
2498
|
-
}, "strip", z.ZodTypeAny, {
|
|
2499
|
-
minutes: number;
|
|
2500
|
-
}, {
|
|
2501
|
-
minutes: number;
|
|
2502
|
-
}>, z.ZodObject<{
|
|
2503
|
-
hours: z.ZodNumber;
|
|
2504
|
-
}, "strip", z.ZodTypeAny, {
|
|
2505
|
-
hours: number;
|
|
2506
|
-
}, {
|
|
2507
|
-
hours: number;
|
|
2508
|
-
}>]>;
|
|
2509
|
-
}, "strip", z.ZodTypeAny, {
|
|
2510
|
-
type: "fixed-window";
|
|
2511
|
-
limit: number;
|
|
2512
|
-
window: {
|
|
2513
|
-
seconds: number;
|
|
2514
|
-
} | {
|
|
2515
|
-
minutes: number;
|
|
2516
|
-
} | {
|
|
2517
|
-
hours: number;
|
|
2518
|
-
};
|
|
2519
|
-
}, {
|
|
2520
|
-
type: "fixed-window";
|
|
2521
|
-
limit: number;
|
|
2522
|
-
window: {
|
|
2523
|
-
seconds: number;
|
|
2524
|
-
} | {
|
|
2525
|
-
minutes: number;
|
|
2526
|
-
} | {
|
|
2527
|
-
hours: number;
|
|
2528
|
-
};
|
|
2529
|
-
}>, z.ZodObject<{
|
|
2530
|
-
type: z.ZodLiteral<"sliding-window">;
|
|
2531
|
-
limit: z.ZodNumber;
|
|
2532
|
-
window: z.ZodUnion<[z.ZodObject<{
|
|
2533
|
-
seconds: z.ZodNumber;
|
|
2534
|
-
}, "strip", z.ZodTypeAny, {
|
|
2535
|
-
seconds: number;
|
|
2536
|
-
}, {
|
|
2537
|
-
seconds: number;
|
|
2538
|
-
}>, z.ZodObject<{
|
|
2539
|
-
minutes: z.ZodNumber;
|
|
2540
|
-
}, "strip", z.ZodTypeAny, {
|
|
2541
|
-
minutes: number;
|
|
2542
|
-
}, {
|
|
2543
|
-
minutes: number;
|
|
2544
|
-
}>, z.ZodObject<{
|
|
2545
|
-
hours: z.ZodNumber;
|
|
2546
|
-
}, "strip", z.ZodTypeAny, {
|
|
2547
|
-
hours: number;
|
|
2548
|
-
}, {
|
|
2549
|
-
hours: number;
|
|
2550
|
-
}>]>;
|
|
2551
|
-
}, "strip", z.ZodTypeAny, {
|
|
2552
|
-
type: "sliding-window";
|
|
2553
|
-
limit: number;
|
|
2554
|
-
window: {
|
|
2555
|
-
seconds: number;
|
|
2556
|
-
} | {
|
|
2557
|
-
minutes: number;
|
|
2558
|
-
} | {
|
|
2559
|
-
hours: number;
|
|
2560
|
-
};
|
|
2561
|
-
}, {
|
|
2562
|
-
type: "sliding-window";
|
|
2563
|
-
limit: number;
|
|
2564
|
-
window: {
|
|
2565
|
-
seconds: number;
|
|
2566
|
-
} | {
|
|
2567
|
-
minutes: number;
|
|
2568
|
-
} | {
|
|
2569
|
-
hours: number;
|
|
2570
|
-
};
|
|
2571
|
-
}>]>>;
|
|
2572
2523
|
}, "strip", z.ZodTypeAny, {
|
|
2573
2524
|
name?: string | undefined;
|
|
2574
2525
|
concurrencyLimit?: number | undefined;
|
|
2575
|
-
rateLimit?: {
|
|
2576
|
-
type: "fixed-window";
|
|
2577
|
-
limit: number;
|
|
2578
|
-
window: {
|
|
2579
|
-
seconds: number;
|
|
2580
|
-
} | {
|
|
2581
|
-
minutes: number;
|
|
2582
|
-
} | {
|
|
2583
|
-
hours: number;
|
|
2584
|
-
};
|
|
2585
|
-
} | {
|
|
2586
|
-
type: "sliding-window";
|
|
2587
|
-
limit: number;
|
|
2588
|
-
window: {
|
|
2589
|
-
seconds: number;
|
|
2590
|
-
} | {
|
|
2591
|
-
minutes: number;
|
|
2592
|
-
} | {
|
|
2593
|
-
hours: number;
|
|
2594
|
-
};
|
|
2595
|
-
} | undefined;
|
|
2596
2526
|
}, {
|
|
2597
2527
|
name?: string | undefined;
|
|
2598
2528
|
concurrencyLimit?: number | undefined;
|
|
2599
|
-
rateLimit?: {
|
|
2600
|
-
type: "fixed-window";
|
|
2601
|
-
limit: number;
|
|
2602
|
-
window: {
|
|
2603
|
-
seconds: number;
|
|
2604
|
-
} | {
|
|
2605
|
-
minutes: number;
|
|
2606
|
-
} | {
|
|
2607
|
-
hours: number;
|
|
2608
|
-
};
|
|
2609
|
-
} | {
|
|
2610
|
-
type: "sliding-window";
|
|
2611
|
-
limit: number;
|
|
2612
|
-
window: {
|
|
2613
|
-
seconds: number;
|
|
2614
|
-
} | {
|
|
2615
|
-
minutes: number;
|
|
2616
|
-
} | {
|
|
2617
|
-
hours: number;
|
|
2618
|
-
};
|
|
2619
|
-
} | undefined;
|
|
2620
2529
|
}>>;
|
|
2621
2530
|
retry: z.ZodOptional<z.ZodObject<{
|
|
2622
2531
|
maxAttempts: z.ZodOptional<z.ZodNumber>;
|
|
@@ -2683,27 +2592,6 @@ export declare const indexerToWorkerMessages: {
|
|
|
2683
2592
|
queue?: {
|
|
2684
2593
|
name?: string | undefined;
|
|
2685
2594
|
concurrencyLimit?: number | undefined;
|
|
2686
|
-
rateLimit?: {
|
|
2687
|
-
type: "fixed-window";
|
|
2688
|
-
limit: number;
|
|
2689
|
-
window: {
|
|
2690
|
-
seconds: number;
|
|
2691
|
-
} | {
|
|
2692
|
-
minutes: number;
|
|
2693
|
-
} | {
|
|
2694
|
-
hours: number;
|
|
2695
|
-
};
|
|
2696
|
-
} | {
|
|
2697
|
-
type: "sliding-window";
|
|
2698
|
-
limit: number;
|
|
2699
|
-
window: {
|
|
2700
|
-
seconds: number;
|
|
2701
|
-
} | {
|
|
2702
|
-
minutes: number;
|
|
2703
|
-
} | {
|
|
2704
|
-
hours: number;
|
|
2705
|
-
};
|
|
2706
|
-
} | undefined;
|
|
2707
2595
|
} | undefined;
|
|
2708
2596
|
machine?: {
|
|
2709
2597
|
cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
|
|
@@ -2732,27 +2620,6 @@ export declare const indexerToWorkerMessages: {
|
|
|
2732
2620
|
queue?: {
|
|
2733
2621
|
name?: string | undefined;
|
|
2734
2622
|
concurrencyLimit?: number | undefined;
|
|
2735
|
-
rateLimit?: {
|
|
2736
|
-
type: "fixed-window";
|
|
2737
|
-
limit: number;
|
|
2738
|
-
window: {
|
|
2739
|
-
seconds: number;
|
|
2740
|
-
} | {
|
|
2741
|
-
minutes: number;
|
|
2742
|
-
} | {
|
|
2743
|
-
hours: number;
|
|
2744
|
-
};
|
|
2745
|
-
} | {
|
|
2746
|
-
type: "sliding-window";
|
|
2747
|
-
limit: number;
|
|
2748
|
-
window: {
|
|
2749
|
-
seconds: number;
|
|
2750
|
-
} | {
|
|
2751
|
-
minutes: number;
|
|
2752
|
-
} | {
|
|
2753
|
-
hours: number;
|
|
2754
|
-
};
|
|
2755
|
-
} | undefined;
|
|
2756
2623
|
} | undefined;
|
|
2757
2624
|
machine?: {
|
|
2758
2625
|
cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
|
|
@@ -2798,27 +2665,6 @@ export declare const indexerToWorkerMessages: {
|
|
|
2798
2665
|
queue?: {
|
|
2799
2666
|
name?: string | undefined;
|
|
2800
2667
|
concurrencyLimit?: number | undefined;
|
|
2801
|
-
rateLimit?: {
|
|
2802
|
-
type: "fixed-window";
|
|
2803
|
-
limit: number;
|
|
2804
|
-
window: {
|
|
2805
|
-
seconds: number;
|
|
2806
|
-
} | {
|
|
2807
|
-
minutes: number;
|
|
2808
|
-
} | {
|
|
2809
|
-
hours: number;
|
|
2810
|
-
};
|
|
2811
|
-
} | {
|
|
2812
|
-
type: "sliding-window";
|
|
2813
|
-
limit: number;
|
|
2814
|
-
window: {
|
|
2815
|
-
seconds: number;
|
|
2816
|
-
} | {
|
|
2817
|
-
minutes: number;
|
|
2818
|
-
} | {
|
|
2819
|
-
hours: number;
|
|
2820
|
-
};
|
|
2821
|
-
} | undefined;
|
|
2822
2668
|
} | undefined;
|
|
2823
2669
|
machine?: {
|
|
2824
2670
|
cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
|
|
@@ -2859,27 +2705,6 @@ export declare const indexerToWorkerMessages: {
|
|
|
2859
2705
|
queue?: {
|
|
2860
2706
|
name?: string | undefined;
|
|
2861
2707
|
concurrencyLimit?: number | undefined;
|
|
2862
|
-
rateLimit?: {
|
|
2863
|
-
type: "fixed-window";
|
|
2864
|
-
limit: number;
|
|
2865
|
-
window: {
|
|
2866
|
-
seconds: number;
|
|
2867
|
-
} | {
|
|
2868
|
-
minutes: number;
|
|
2869
|
-
} | {
|
|
2870
|
-
hours: number;
|
|
2871
|
-
};
|
|
2872
|
-
} | {
|
|
2873
|
-
type: "sliding-window";
|
|
2874
|
-
limit: number;
|
|
2875
|
-
window: {
|
|
2876
|
-
seconds: number;
|
|
2877
|
-
} | {
|
|
2878
|
-
minutes: number;
|
|
2879
|
-
} | {
|
|
2880
|
-
hours: number;
|
|
2881
|
-
};
|
|
2882
|
-
} | undefined;
|
|
2883
2708
|
} | undefined;
|
|
2884
2709
|
machine?: {
|
|
2885
2710
|
cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
|
|
@@ -2939,27 +2764,6 @@ export declare const indexerToWorkerMessages: {
|
|
|
2939
2764
|
queue?: {
|
|
2940
2765
|
name?: string | undefined;
|
|
2941
2766
|
concurrencyLimit?: number | undefined;
|
|
2942
|
-
rateLimit?: {
|
|
2943
|
-
type: "fixed-window";
|
|
2944
|
-
limit: number;
|
|
2945
|
-
window: {
|
|
2946
|
-
seconds: number;
|
|
2947
|
-
} | {
|
|
2948
|
-
minutes: number;
|
|
2949
|
-
} | {
|
|
2950
|
-
hours: number;
|
|
2951
|
-
};
|
|
2952
|
-
} | {
|
|
2953
|
-
type: "sliding-window";
|
|
2954
|
-
limit: number;
|
|
2955
|
-
window: {
|
|
2956
|
-
seconds: number;
|
|
2957
|
-
} | {
|
|
2958
|
-
minutes: number;
|
|
2959
|
-
} | {
|
|
2960
|
-
hours: number;
|
|
2961
|
-
};
|
|
2962
|
-
} | undefined;
|
|
2963
2767
|
} | undefined;
|
|
2964
2768
|
machine?: {
|
|
2965
2769
|
cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
|
|
@@ -3008,27 +2812,6 @@ export declare const indexerToWorkerMessages: {
|
|
|
3008
2812
|
queue?: {
|
|
3009
2813
|
name?: string | undefined;
|
|
3010
2814
|
concurrencyLimit?: number | undefined;
|
|
3011
|
-
rateLimit?: {
|
|
3012
|
-
type: "fixed-window";
|
|
3013
|
-
limit: number;
|
|
3014
|
-
window: {
|
|
3015
|
-
seconds: number;
|
|
3016
|
-
} | {
|
|
3017
|
-
minutes: number;
|
|
3018
|
-
} | {
|
|
3019
|
-
hours: number;
|
|
3020
|
-
};
|
|
3021
|
-
} | {
|
|
3022
|
-
type: "sliding-window";
|
|
3023
|
-
limit: number;
|
|
3024
|
-
window: {
|
|
3025
|
-
seconds: number;
|
|
3026
|
-
} | {
|
|
3027
|
-
minutes: number;
|
|
3028
|
-
} | {
|
|
3029
|
-
hours: number;
|
|
3030
|
-
};
|
|
3031
|
-
} | undefined;
|
|
3032
2815
|
} | undefined;
|
|
3033
2816
|
machine?: {
|
|
3034
2817
|
cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
|
|
@@ -3405,6 +3188,7 @@ export declare const ExecutorToWorkerMessageCatalog: {
|
|
|
3405
3188
|
}, {
|
|
3406
3189
|
durationMs: number;
|
|
3407
3190
|
}>>;
|
|
3191
|
+
taskIdentifier: z.ZodOptional<z.ZodString>;
|
|
3408
3192
|
}, "strip", z.ZodTypeAny, {
|
|
3409
3193
|
id: string;
|
|
3410
3194
|
ok: true;
|
|
@@ -3413,6 +3197,7 @@ export declare const ExecutorToWorkerMessageCatalog: {
|
|
|
3413
3197
|
usage?: {
|
|
3414
3198
|
durationMs: number;
|
|
3415
3199
|
} | undefined;
|
|
3200
|
+
taskIdentifier?: string | undefined;
|
|
3416
3201
|
}, {
|
|
3417
3202
|
id: string;
|
|
3418
3203
|
ok: true;
|
|
@@ -3421,6 +3206,7 @@ export declare const ExecutorToWorkerMessageCatalog: {
|
|
|
3421
3206
|
usage?: {
|
|
3422
3207
|
durationMs: number;
|
|
3423
3208
|
} | undefined;
|
|
3209
|
+
taskIdentifier?: string | undefined;
|
|
3424
3210
|
}>, z.ZodObject<{
|
|
3425
3211
|
ok: z.ZodLiteral<false>;
|
|
3426
3212
|
id: z.ZodString;
|
|
@@ -3494,6 +3280,7 @@ export declare const ExecutorToWorkerMessageCatalog: {
|
|
|
3494
3280
|
}, {
|
|
3495
3281
|
durationMs: number;
|
|
3496
3282
|
}>>;
|
|
3283
|
+
taskIdentifier: z.ZodOptional<z.ZodString>;
|
|
3497
3284
|
}, "strip", z.ZodTypeAny, {
|
|
3498
3285
|
id: string;
|
|
3499
3286
|
error: {
|
|
@@ -3523,6 +3310,7 @@ export declare const ExecutorToWorkerMessageCatalog: {
|
|
|
3523
3310
|
usage?: {
|
|
3524
3311
|
durationMs: number;
|
|
3525
3312
|
} | undefined;
|
|
3313
|
+
taskIdentifier?: string | undefined;
|
|
3526
3314
|
}, {
|
|
3527
3315
|
id: string;
|
|
3528
3316
|
error: {
|
|
@@ -3552,6 +3340,7 @@ export declare const ExecutorToWorkerMessageCatalog: {
|
|
|
3552
3340
|
usage?: {
|
|
3553
3341
|
durationMs: number;
|
|
3554
3342
|
} | undefined;
|
|
3343
|
+
taskIdentifier?: string | undefined;
|
|
3555
3344
|
}>]>;
|
|
3556
3345
|
}, "strip", z.ZodTypeAny, {
|
|
3557
3346
|
version: "v1";
|
|
@@ -3646,6 +3435,7 @@ export declare const ExecutorToWorkerMessageCatalog: {
|
|
|
3646
3435
|
usage?: {
|
|
3647
3436
|
durationMs: number;
|
|
3648
3437
|
} | undefined;
|
|
3438
|
+
taskIdentifier?: string | undefined;
|
|
3649
3439
|
} | {
|
|
3650
3440
|
id: string;
|
|
3651
3441
|
ok: true;
|
|
@@ -3654,6 +3444,7 @@ export declare const ExecutorToWorkerMessageCatalog: {
|
|
|
3654
3444
|
usage?: {
|
|
3655
3445
|
durationMs: number;
|
|
3656
3446
|
} | undefined;
|
|
3447
|
+
taskIdentifier?: string | undefined;
|
|
3657
3448
|
};
|
|
3658
3449
|
}, {
|
|
3659
3450
|
execution: {
|
|
@@ -3747,6 +3538,7 @@ export declare const ExecutorToWorkerMessageCatalog: {
|
|
|
3747
3538
|
usage?: {
|
|
3748
3539
|
durationMs: number;
|
|
3749
3540
|
} | undefined;
|
|
3541
|
+
taskIdentifier?: string | undefined;
|
|
3750
3542
|
} | {
|
|
3751
3543
|
id: string;
|
|
3752
3544
|
ok: true;
|
|
@@ -3755,6 +3547,7 @@ export declare const ExecutorToWorkerMessageCatalog: {
|
|
|
3755
3547
|
usage?: {
|
|
3756
3548
|
durationMs: number;
|
|
3757
3549
|
} | undefined;
|
|
3550
|
+
taskIdentifier?: string | undefined;
|
|
3758
3551
|
};
|
|
3759
3552
|
version?: "v1" | undefined;
|
|
3760
3553
|
}>;
|
|
@@ -4316,6 +4109,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
4316
4109
|
}, {
|
|
4317
4110
|
durationMs: number;
|
|
4318
4111
|
}>>;
|
|
4112
|
+
taskIdentifier: z.ZodOptional<z.ZodString>;
|
|
4319
4113
|
}, "strip", z.ZodTypeAny, {
|
|
4320
4114
|
id: string;
|
|
4321
4115
|
ok: true;
|
|
@@ -4324,6 +4118,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
4324
4118
|
usage?: {
|
|
4325
4119
|
durationMs: number;
|
|
4326
4120
|
} | undefined;
|
|
4121
|
+
taskIdentifier?: string | undefined;
|
|
4327
4122
|
}, {
|
|
4328
4123
|
id: string;
|
|
4329
4124
|
ok: true;
|
|
@@ -4332,6 +4127,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
4332
4127
|
usage?: {
|
|
4333
4128
|
durationMs: number;
|
|
4334
4129
|
} | undefined;
|
|
4130
|
+
taskIdentifier?: string | undefined;
|
|
4335
4131
|
}>, z.ZodObject<{
|
|
4336
4132
|
ok: z.ZodLiteral<false>;
|
|
4337
4133
|
id: z.ZodString;
|
|
@@ -4405,6 +4201,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
4405
4201
|
}, {
|
|
4406
4202
|
durationMs: number;
|
|
4407
4203
|
}>>;
|
|
4204
|
+
taskIdentifier: z.ZodOptional<z.ZodString>;
|
|
4408
4205
|
}, "strip", z.ZodTypeAny, {
|
|
4409
4206
|
id: string;
|
|
4410
4207
|
error: {
|
|
@@ -4434,6 +4231,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
4434
4231
|
usage?: {
|
|
4435
4232
|
durationMs: number;
|
|
4436
4233
|
} | undefined;
|
|
4234
|
+
taskIdentifier?: string | undefined;
|
|
4437
4235
|
}, {
|
|
4438
4236
|
id: string;
|
|
4439
4237
|
error: {
|
|
@@ -4463,6 +4261,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
4463
4261
|
usage?: {
|
|
4464
4262
|
durationMs: number;
|
|
4465
4263
|
} | undefined;
|
|
4264
|
+
taskIdentifier?: string | undefined;
|
|
4466
4265
|
}>]>;
|
|
4467
4266
|
execution: z.ZodObject<{
|
|
4468
4267
|
task: z.ZodObject<{
|
|
@@ -4843,6 +4642,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
4843
4642
|
usage?: {
|
|
4844
4643
|
durationMs: number;
|
|
4845
4644
|
} | undefined;
|
|
4645
|
+
taskIdentifier?: string | undefined;
|
|
4846
4646
|
} | {
|
|
4847
4647
|
id: string;
|
|
4848
4648
|
ok: true;
|
|
@@ -4851,6 +4651,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
4851
4651
|
usage?: {
|
|
4852
4652
|
durationMs: number;
|
|
4853
4653
|
} | undefined;
|
|
4654
|
+
taskIdentifier?: string | undefined;
|
|
4854
4655
|
};
|
|
4855
4656
|
}, {
|
|
4856
4657
|
version: "v1";
|
|
@@ -4945,6 +4746,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
4945
4746
|
usage?: {
|
|
4946
4747
|
durationMs: number;
|
|
4947
4748
|
} | undefined;
|
|
4749
|
+
taskIdentifier?: string | undefined;
|
|
4948
4750
|
} | {
|
|
4949
4751
|
id: string;
|
|
4950
4752
|
ok: true;
|
|
@@ -4953,6 +4755,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
4953
4755
|
usage?: {
|
|
4954
4756
|
durationMs: number;
|
|
4955
4757
|
} | undefined;
|
|
4758
|
+
taskIdentifier?: string | undefined;
|
|
4956
4759
|
};
|
|
4957
4760
|
}>, z.ZodObject<{
|
|
4958
4761
|
version: z.ZodLiteral<"v2">;
|
|
@@ -4968,6 +4771,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
4968
4771
|
}, {
|
|
4969
4772
|
durationMs: number;
|
|
4970
4773
|
}>>;
|
|
4774
|
+
taskIdentifier: z.ZodOptional<z.ZodString>;
|
|
4971
4775
|
}, "strip", z.ZodTypeAny, {
|
|
4972
4776
|
id: string;
|
|
4973
4777
|
ok: true;
|
|
@@ -4976,6 +4780,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
4976
4780
|
usage?: {
|
|
4977
4781
|
durationMs: number;
|
|
4978
4782
|
} | undefined;
|
|
4783
|
+
taskIdentifier?: string | undefined;
|
|
4979
4784
|
}, {
|
|
4980
4785
|
id: string;
|
|
4981
4786
|
ok: true;
|
|
@@ -4984,6 +4789,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
4984
4789
|
usage?: {
|
|
4985
4790
|
durationMs: number;
|
|
4986
4791
|
} | undefined;
|
|
4792
|
+
taskIdentifier?: string | undefined;
|
|
4987
4793
|
}>, z.ZodObject<{
|
|
4988
4794
|
ok: z.ZodLiteral<false>;
|
|
4989
4795
|
id: z.ZodString;
|
|
@@ -5057,6 +4863,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
5057
4863
|
}, {
|
|
5058
4864
|
durationMs: number;
|
|
5059
4865
|
}>>;
|
|
4866
|
+
taskIdentifier: z.ZodOptional<z.ZodString>;
|
|
5060
4867
|
}, "strip", z.ZodTypeAny, {
|
|
5061
4868
|
id: string;
|
|
5062
4869
|
error: {
|
|
@@ -5086,6 +4893,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
5086
4893
|
usage?: {
|
|
5087
4894
|
durationMs: number;
|
|
5088
4895
|
} | undefined;
|
|
4896
|
+
taskIdentifier?: string | undefined;
|
|
5089
4897
|
}, {
|
|
5090
4898
|
id: string;
|
|
5091
4899
|
error: {
|
|
@@ -5115,6 +4923,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
5115
4923
|
usage?: {
|
|
5116
4924
|
durationMs: number;
|
|
5117
4925
|
} | undefined;
|
|
4926
|
+
taskIdentifier?: string | undefined;
|
|
5118
4927
|
}>]>;
|
|
5119
4928
|
}, "strip", z.ZodTypeAny, {
|
|
5120
4929
|
version: "v2";
|
|
@@ -5147,6 +4956,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
5147
4956
|
usage?: {
|
|
5148
4957
|
durationMs: number;
|
|
5149
4958
|
} | undefined;
|
|
4959
|
+
taskIdentifier?: string | undefined;
|
|
5150
4960
|
} | {
|
|
5151
4961
|
id: string;
|
|
5152
4962
|
ok: true;
|
|
@@ -5155,6 +4965,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
5155
4965
|
usage?: {
|
|
5156
4966
|
durationMs: number;
|
|
5157
4967
|
} | undefined;
|
|
4968
|
+
taskIdentifier?: string | undefined;
|
|
5158
4969
|
};
|
|
5159
4970
|
}, {
|
|
5160
4971
|
version: "v2";
|
|
@@ -5187,6 +4998,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
5187
4998
|
usage?: {
|
|
5188
4999
|
durationMs: number;
|
|
5189
5000
|
} | undefined;
|
|
5001
|
+
taskIdentifier?: string | undefined;
|
|
5190
5002
|
} | {
|
|
5191
5003
|
id: string;
|
|
5192
5004
|
ok: true;
|
|
@@ -5195,6 +5007,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
5195
5007
|
usage?: {
|
|
5196
5008
|
durationMs: number;
|
|
5197
5009
|
} | undefined;
|
|
5010
|
+
taskIdentifier?: string | undefined;
|
|
5198
5011
|
};
|
|
5199
5012
|
}>]>;
|
|
5200
5013
|
};
|
|
@@ -5537,139 +5350,12 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
5537
5350
|
queue: z.ZodOptional<z.ZodObject<{
|
|
5538
5351
|
name: z.ZodOptional<z.ZodString>;
|
|
5539
5352
|
concurrencyLimit: z.ZodOptional<z.ZodNumber>;
|
|
5540
|
-
rateLimit: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
5541
|
-
type: z.ZodLiteral<"fixed-window">;
|
|
5542
|
-
limit: z.ZodNumber;
|
|
5543
|
-
window: z.ZodUnion<[z.ZodObject<{
|
|
5544
|
-
seconds: z.ZodNumber;
|
|
5545
|
-
}, "strip", z.ZodTypeAny, {
|
|
5546
|
-
seconds: number;
|
|
5547
|
-
}, {
|
|
5548
|
-
seconds: number;
|
|
5549
|
-
}>, z.ZodObject<{
|
|
5550
|
-
minutes: z.ZodNumber;
|
|
5551
|
-
}, "strip", z.ZodTypeAny, {
|
|
5552
|
-
minutes: number;
|
|
5553
|
-
}, {
|
|
5554
|
-
minutes: number;
|
|
5555
|
-
}>, z.ZodObject<{
|
|
5556
|
-
hours: z.ZodNumber;
|
|
5557
|
-
}, "strip", z.ZodTypeAny, {
|
|
5558
|
-
hours: number;
|
|
5559
|
-
}, {
|
|
5560
|
-
hours: number;
|
|
5561
|
-
}>]>;
|
|
5562
|
-
}, "strip", z.ZodTypeAny, {
|
|
5563
|
-
type: "fixed-window";
|
|
5564
|
-
limit: number;
|
|
5565
|
-
window: {
|
|
5566
|
-
seconds: number;
|
|
5567
|
-
} | {
|
|
5568
|
-
minutes: number;
|
|
5569
|
-
} | {
|
|
5570
|
-
hours: number;
|
|
5571
|
-
};
|
|
5572
|
-
}, {
|
|
5573
|
-
type: "fixed-window";
|
|
5574
|
-
limit: number;
|
|
5575
|
-
window: {
|
|
5576
|
-
seconds: number;
|
|
5577
|
-
} | {
|
|
5578
|
-
minutes: number;
|
|
5579
|
-
} | {
|
|
5580
|
-
hours: number;
|
|
5581
|
-
};
|
|
5582
|
-
}>, z.ZodObject<{
|
|
5583
|
-
type: z.ZodLiteral<"sliding-window">;
|
|
5584
|
-
limit: z.ZodNumber;
|
|
5585
|
-
window: z.ZodUnion<[z.ZodObject<{
|
|
5586
|
-
seconds: z.ZodNumber;
|
|
5587
|
-
}, "strip", z.ZodTypeAny, {
|
|
5588
|
-
seconds: number;
|
|
5589
|
-
}, {
|
|
5590
|
-
seconds: number;
|
|
5591
|
-
}>, z.ZodObject<{
|
|
5592
|
-
minutes: z.ZodNumber;
|
|
5593
|
-
}, "strip", z.ZodTypeAny, {
|
|
5594
|
-
minutes: number;
|
|
5595
|
-
}, {
|
|
5596
|
-
minutes: number;
|
|
5597
|
-
}>, z.ZodObject<{
|
|
5598
|
-
hours: z.ZodNumber;
|
|
5599
|
-
}, "strip", z.ZodTypeAny, {
|
|
5600
|
-
hours: number;
|
|
5601
|
-
}, {
|
|
5602
|
-
hours: number;
|
|
5603
|
-
}>]>;
|
|
5604
|
-
}, "strip", z.ZodTypeAny, {
|
|
5605
|
-
type: "sliding-window";
|
|
5606
|
-
limit: number;
|
|
5607
|
-
window: {
|
|
5608
|
-
seconds: number;
|
|
5609
|
-
} | {
|
|
5610
|
-
minutes: number;
|
|
5611
|
-
} | {
|
|
5612
|
-
hours: number;
|
|
5613
|
-
};
|
|
5614
|
-
}, {
|
|
5615
|
-
type: "sliding-window";
|
|
5616
|
-
limit: number;
|
|
5617
|
-
window: {
|
|
5618
|
-
seconds: number;
|
|
5619
|
-
} | {
|
|
5620
|
-
minutes: number;
|
|
5621
|
-
} | {
|
|
5622
|
-
hours: number;
|
|
5623
|
-
};
|
|
5624
|
-
}>]>>;
|
|
5625
5353
|
}, "strip", z.ZodTypeAny, {
|
|
5626
5354
|
name?: string | undefined;
|
|
5627
5355
|
concurrencyLimit?: number | undefined;
|
|
5628
|
-
rateLimit?: {
|
|
5629
|
-
type: "fixed-window";
|
|
5630
|
-
limit: number;
|
|
5631
|
-
window: {
|
|
5632
|
-
seconds: number;
|
|
5633
|
-
} | {
|
|
5634
|
-
minutes: number;
|
|
5635
|
-
} | {
|
|
5636
|
-
hours: number;
|
|
5637
|
-
};
|
|
5638
|
-
} | {
|
|
5639
|
-
type: "sliding-window";
|
|
5640
|
-
limit: number;
|
|
5641
|
-
window: {
|
|
5642
|
-
seconds: number;
|
|
5643
|
-
} | {
|
|
5644
|
-
minutes: number;
|
|
5645
|
-
} | {
|
|
5646
|
-
hours: number;
|
|
5647
|
-
};
|
|
5648
|
-
} | undefined;
|
|
5649
5356
|
}, {
|
|
5650
5357
|
name?: string | undefined;
|
|
5651
5358
|
concurrencyLimit?: number | undefined;
|
|
5652
|
-
rateLimit?: {
|
|
5653
|
-
type: "fixed-window";
|
|
5654
|
-
limit: number;
|
|
5655
|
-
window: {
|
|
5656
|
-
seconds: number;
|
|
5657
|
-
} | {
|
|
5658
|
-
minutes: number;
|
|
5659
|
-
} | {
|
|
5660
|
-
hours: number;
|
|
5661
|
-
};
|
|
5662
|
-
} | {
|
|
5663
|
-
type: "sliding-window";
|
|
5664
|
-
limit: number;
|
|
5665
|
-
window: {
|
|
5666
|
-
seconds: number;
|
|
5667
|
-
} | {
|
|
5668
|
-
minutes: number;
|
|
5669
|
-
} | {
|
|
5670
|
-
hours: number;
|
|
5671
|
-
};
|
|
5672
|
-
} | undefined;
|
|
5673
5359
|
}>>;
|
|
5674
5360
|
retry: z.ZodOptional<z.ZodObject<{
|
|
5675
5361
|
maxAttempts: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5735,27 +5421,6 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
5735
5421
|
queue?: {
|
|
5736
5422
|
name?: string | undefined;
|
|
5737
5423
|
concurrencyLimit?: number | undefined;
|
|
5738
|
-
rateLimit?: {
|
|
5739
|
-
type: "fixed-window";
|
|
5740
|
-
limit: number;
|
|
5741
|
-
window: {
|
|
5742
|
-
seconds: number;
|
|
5743
|
-
} | {
|
|
5744
|
-
minutes: number;
|
|
5745
|
-
} | {
|
|
5746
|
-
hours: number;
|
|
5747
|
-
};
|
|
5748
|
-
} | {
|
|
5749
|
-
type: "sliding-window";
|
|
5750
|
-
limit: number;
|
|
5751
|
-
window: {
|
|
5752
|
-
seconds: number;
|
|
5753
|
-
} | {
|
|
5754
|
-
minutes: number;
|
|
5755
|
-
} | {
|
|
5756
|
-
hours: number;
|
|
5757
|
-
};
|
|
5758
|
-
} | undefined;
|
|
5759
5424
|
} | undefined;
|
|
5760
5425
|
machine?: {
|
|
5761
5426
|
cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
|
|
@@ -5783,27 +5448,6 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
5783
5448
|
queue?: {
|
|
5784
5449
|
name?: string | undefined;
|
|
5785
5450
|
concurrencyLimit?: number | undefined;
|
|
5786
|
-
rateLimit?: {
|
|
5787
|
-
type: "fixed-window";
|
|
5788
|
-
limit: number;
|
|
5789
|
-
window: {
|
|
5790
|
-
seconds: number;
|
|
5791
|
-
} | {
|
|
5792
|
-
minutes: number;
|
|
5793
|
-
} | {
|
|
5794
|
-
hours: number;
|
|
5795
|
-
};
|
|
5796
|
-
} | {
|
|
5797
|
-
type: "sliding-window";
|
|
5798
|
-
limit: number;
|
|
5799
|
-
window: {
|
|
5800
|
-
seconds: number;
|
|
5801
|
-
} | {
|
|
5802
|
-
minutes: number;
|
|
5803
|
-
} | {
|
|
5804
|
-
hours: number;
|
|
5805
|
-
};
|
|
5806
|
-
} | undefined;
|
|
5807
5451
|
} | undefined;
|
|
5808
5452
|
machine?: {
|
|
5809
5453
|
cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
|
|
@@ -5833,27 +5477,6 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
5833
5477
|
queue?: {
|
|
5834
5478
|
name?: string | undefined;
|
|
5835
5479
|
concurrencyLimit?: number | undefined;
|
|
5836
|
-
rateLimit?: {
|
|
5837
|
-
type: "fixed-window";
|
|
5838
|
-
limit: number;
|
|
5839
|
-
window: {
|
|
5840
|
-
seconds: number;
|
|
5841
|
-
} | {
|
|
5842
|
-
minutes: number;
|
|
5843
|
-
} | {
|
|
5844
|
-
hours: number;
|
|
5845
|
-
};
|
|
5846
|
-
} | {
|
|
5847
|
-
type: "sliding-window";
|
|
5848
|
-
limit: number;
|
|
5849
|
-
window: {
|
|
5850
|
-
seconds: number;
|
|
5851
|
-
} | {
|
|
5852
|
-
minutes: number;
|
|
5853
|
-
} | {
|
|
5854
|
-
hours: number;
|
|
5855
|
-
};
|
|
5856
|
-
} | undefined;
|
|
5857
5480
|
} | undefined;
|
|
5858
5481
|
machine?: {
|
|
5859
5482
|
cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
|
|
@@ -5886,27 +5509,6 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
5886
5509
|
queue?: {
|
|
5887
5510
|
name?: string | undefined;
|
|
5888
5511
|
concurrencyLimit?: number | undefined;
|
|
5889
|
-
rateLimit?: {
|
|
5890
|
-
type: "fixed-window";
|
|
5891
|
-
limit: number;
|
|
5892
|
-
window: {
|
|
5893
|
-
seconds: number;
|
|
5894
|
-
} | {
|
|
5895
|
-
minutes: number;
|
|
5896
|
-
} | {
|
|
5897
|
-
hours: number;
|
|
5898
|
-
};
|
|
5899
|
-
} | {
|
|
5900
|
-
type: "sliding-window";
|
|
5901
|
-
limit: number;
|
|
5902
|
-
window: {
|
|
5903
|
-
seconds: number;
|
|
5904
|
-
} | {
|
|
5905
|
-
minutes: number;
|
|
5906
|
-
} | {
|
|
5907
|
-
hours: number;
|
|
5908
|
-
};
|
|
5909
|
-
} | undefined;
|
|
5910
5512
|
} | undefined;
|
|
5911
5513
|
machine?: {
|
|
5912
5514
|
cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
|
|
@@ -5944,27 +5546,6 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
5944
5546
|
queue?: {
|
|
5945
5547
|
name?: string | undefined;
|
|
5946
5548
|
concurrencyLimit?: number | undefined;
|
|
5947
|
-
rateLimit?: {
|
|
5948
|
-
type: "fixed-window";
|
|
5949
|
-
limit: number;
|
|
5950
|
-
window: {
|
|
5951
|
-
seconds: number;
|
|
5952
|
-
} | {
|
|
5953
|
-
minutes: number;
|
|
5954
|
-
} | {
|
|
5955
|
-
hours: number;
|
|
5956
|
-
};
|
|
5957
|
-
} | {
|
|
5958
|
-
type: "sliding-window";
|
|
5959
|
-
limit: number;
|
|
5960
|
-
window: {
|
|
5961
|
-
seconds: number;
|
|
5962
|
-
} | {
|
|
5963
|
-
minutes: number;
|
|
5964
|
-
} | {
|
|
5965
|
-
hours: number;
|
|
5966
|
-
};
|
|
5967
|
-
} | undefined;
|
|
5968
5549
|
} | undefined;
|
|
5969
5550
|
machine?: {
|
|
5970
5551
|
cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
|
|
@@ -6003,27 +5584,6 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
6003
5584
|
queue?: {
|
|
6004
5585
|
name?: string | undefined;
|
|
6005
5586
|
concurrencyLimit?: number | undefined;
|
|
6006
|
-
rateLimit?: {
|
|
6007
|
-
type: "fixed-window";
|
|
6008
|
-
limit: number;
|
|
6009
|
-
window: {
|
|
6010
|
-
seconds: number;
|
|
6011
|
-
} | {
|
|
6012
|
-
minutes: number;
|
|
6013
|
-
} | {
|
|
6014
|
-
hours: number;
|
|
6015
|
-
};
|
|
6016
|
-
} | {
|
|
6017
|
-
type: "sliding-window";
|
|
6018
|
-
limit: number;
|
|
6019
|
-
window: {
|
|
6020
|
-
seconds: number;
|
|
6021
|
-
} | {
|
|
6022
|
-
minutes: number;
|
|
6023
|
-
} | {
|
|
6024
|
-
hours: number;
|
|
6025
|
-
};
|
|
6026
|
-
} | undefined;
|
|
6027
5587
|
} | undefined;
|
|
6028
5588
|
machine?: {
|
|
6029
5589
|
cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
|
|
@@ -6055,139 +5615,12 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
6055
5615
|
queue: z.ZodOptional<z.ZodObject<{
|
|
6056
5616
|
name: z.ZodOptional<z.ZodString>;
|
|
6057
5617
|
concurrencyLimit: z.ZodOptional<z.ZodNumber>;
|
|
6058
|
-
rateLimit: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
6059
|
-
type: z.ZodLiteral<"fixed-window">;
|
|
6060
|
-
limit: z.ZodNumber;
|
|
6061
|
-
window: z.ZodUnion<[z.ZodObject<{
|
|
6062
|
-
seconds: z.ZodNumber;
|
|
6063
|
-
}, "strip", z.ZodTypeAny, {
|
|
6064
|
-
seconds: number;
|
|
6065
|
-
}, {
|
|
6066
|
-
seconds: number;
|
|
6067
|
-
}>, z.ZodObject<{
|
|
6068
|
-
minutes: z.ZodNumber;
|
|
6069
|
-
}, "strip", z.ZodTypeAny, {
|
|
6070
|
-
minutes: number;
|
|
6071
|
-
}, {
|
|
6072
|
-
minutes: number;
|
|
6073
|
-
}>, z.ZodObject<{
|
|
6074
|
-
hours: z.ZodNumber;
|
|
6075
|
-
}, "strip", z.ZodTypeAny, {
|
|
6076
|
-
hours: number;
|
|
6077
|
-
}, {
|
|
6078
|
-
hours: number;
|
|
6079
|
-
}>]>;
|
|
6080
|
-
}, "strip", z.ZodTypeAny, {
|
|
6081
|
-
type: "fixed-window";
|
|
6082
|
-
limit: number;
|
|
6083
|
-
window: {
|
|
6084
|
-
seconds: number;
|
|
6085
|
-
} | {
|
|
6086
|
-
minutes: number;
|
|
6087
|
-
} | {
|
|
6088
|
-
hours: number;
|
|
6089
|
-
};
|
|
6090
|
-
}, {
|
|
6091
|
-
type: "fixed-window";
|
|
6092
|
-
limit: number;
|
|
6093
|
-
window: {
|
|
6094
|
-
seconds: number;
|
|
6095
|
-
} | {
|
|
6096
|
-
minutes: number;
|
|
6097
|
-
} | {
|
|
6098
|
-
hours: number;
|
|
6099
|
-
};
|
|
6100
|
-
}>, z.ZodObject<{
|
|
6101
|
-
type: z.ZodLiteral<"sliding-window">;
|
|
6102
|
-
limit: z.ZodNumber;
|
|
6103
|
-
window: z.ZodUnion<[z.ZodObject<{
|
|
6104
|
-
seconds: z.ZodNumber;
|
|
6105
|
-
}, "strip", z.ZodTypeAny, {
|
|
6106
|
-
seconds: number;
|
|
6107
|
-
}, {
|
|
6108
|
-
seconds: number;
|
|
6109
|
-
}>, z.ZodObject<{
|
|
6110
|
-
minutes: z.ZodNumber;
|
|
6111
|
-
}, "strip", z.ZodTypeAny, {
|
|
6112
|
-
minutes: number;
|
|
6113
|
-
}, {
|
|
6114
|
-
minutes: number;
|
|
6115
|
-
}>, z.ZodObject<{
|
|
6116
|
-
hours: z.ZodNumber;
|
|
6117
|
-
}, "strip", z.ZodTypeAny, {
|
|
6118
|
-
hours: number;
|
|
6119
|
-
}, {
|
|
6120
|
-
hours: number;
|
|
6121
|
-
}>]>;
|
|
6122
|
-
}, "strip", z.ZodTypeAny, {
|
|
6123
|
-
type: "sliding-window";
|
|
6124
|
-
limit: number;
|
|
6125
|
-
window: {
|
|
6126
|
-
seconds: number;
|
|
6127
|
-
} | {
|
|
6128
|
-
minutes: number;
|
|
6129
|
-
} | {
|
|
6130
|
-
hours: number;
|
|
6131
|
-
};
|
|
6132
|
-
}, {
|
|
6133
|
-
type: "sliding-window";
|
|
6134
|
-
limit: number;
|
|
6135
|
-
window: {
|
|
6136
|
-
seconds: number;
|
|
6137
|
-
} | {
|
|
6138
|
-
minutes: number;
|
|
6139
|
-
} | {
|
|
6140
|
-
hours: number;
|
|
6141
|
-
};
|
|
6142
|
-
}>]>>;
|
|
6143
5618
|
}, "strip", z.ZodTypeAny, {
|
|
6144
5619
|
name?: string | undefined;
|
|
6145
5620
|
concurrencyLimit?: number | undefined;
|
|
6146
|
-
rateLimit?: {
|
|
6147
|
-
type: "fixed-window";
|
|
6148
|
-
limit: number;
|
|
6149
|
-
window: {
|
|
6150
|
-
seconds: number;
|
|
6151
|
-
} | {
|
|
6152
|
-
minutes: number;
|
|
6153
|
-
} | {
|
|
6154
|
-
hours: number;
|
|
6155
|
-
};
|
|
6156
|
-
} | {
|
|
6157
|
-
type: "sliding-window";
|
|
6158
|
-
limit: number;
|
|
6159
|
-
window: {
|
|
6160
|
-
seconds: number;
|
|
6161
|
-
} | {
|
|
6162
|
-
minutes: number;
|
|
6163
|
-
} | {
|
|
6164
|
-
hours: number;
|
|
6165
|
-
};
|
|
6166
|
-
} | undefined;
|
|
6167
5621
|
}, {
|
|
6168
5622
|
name?: string | undefined;
|
|
6169
5623
|
concurrencyLimit?: number | undefined;
|
|
6170
|
-
rateLimit?: {
|
|
6171
|
-
type: "fixed-window";
|
|
6172
|
-
limit: number;
|
|
6173
|
-
window: {
|
|
6174
|
-
seconds: number;
|
|
6175
|
-
} | {
|
|
6176
|
-
minutes: number;
|
|
6177
|
-
} | {
|
|
6178
|
-
hours: number;
|
|
6179
|
-
};
|
|
6180
|
-
} | {
|
|
6181
|
-
type: "sliding-window";
|
|
6182
|
-
limit: number;
|
|
6183
|
-
window: {
|
|
6184
|
-
seconds: number;
|
|
6185
|
-
} | {
|
|
6186
|
-
minutes: number;
|
|
6187
|
-
} | {
|
|
6188
|
-
hours: number;
|
|
6189
|
-
};
|
|
6190
|
-
} | undefined;
|
|
6191
5624
|
}>>;
|
|
6192
5625
|
retry: z.ZodOptional<z.ZodObject<{
|
|
6193
5626
|
maxAttempts: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6253,27 +5686,6 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
6253
5686
|
queue?: {
|
|
6254
5687
|
name?: string | undefined;
|
|
6255
5688
|
concurrencyLimit?: number | undefined;
|
|
6256
|
-
rateLimit?: {
|
|
6257
|
-
type: "fixed-window";
|
|
6258
|
-
limit: number;
|
|
6259
|
-
window: {
|
|
6260
|
-
seconds: number;
|
|
6261
|
-
} | {
|
|
6262
|
-
minutes: number;
|
|
6263
|
-
} | {
|
|
6264
|
-
hours: number;
|
|
6265
|
-
};
|
|
6266
|
-
} | {
|
|
6267
|
-
type: "sliding-window";
|
|
6268
|
-
limit: number;
|
|
6269
|
-
window: {
|
|
6270
|
-
seconds: number;
|
|
6271
|
-
} | {
|
|
6272
|
-
minutes: number;
|
|
6273
|
-
} | {
|
|
6274
|
-
hours: number;
|
|
6275
|
-
};
|
|
6276
|
-
} | undefined;
|
|
6277
5689
|
} | undefined;
|
|
6278
5690
|
machine?: {
|
|
6279
5691
|
cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
|
|
@@ -6301,27 +5713,6 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
6301
5713
|
queue?: {
|
|
6302
5714
|
name?: string | undefined;
|
|
6303
5715
|
concurrencyLimit?: number | undefined;
|
|
6304
|
-
rateLimit?: {
|
|
6305
|
-
type: "fixed-window";
|
|
6306
|
-
limit: number;
|
|
6307
|
-
window: {
|
|
6308
|
-
seconds: number;
|
|
6309
|
-
} | {
|
|
6310
|
-
minutes: number;
|
|
6311
|
-
} | {
|
|
6312
|
-
hours: number;
|
|
6313
|
-
};
|
|
6314
|
-
} | {
|
|
6315
|
-
type: "sliding-window";
|
|
6316
|
-
limit: number;
|
|
6317
|
-
window: {
|
|
6318
|
-
seconds: number;
|
|
6319
|
-
} | {
|
|
6320
|
-
minutes: number;
|
|
6321
|
-
} | {
|
|
6322
|
-
hours: number;
|
|
6323
|
-
};
|
|
6324
|
-
} | undefined;
|
|
6325
5716
|
} | undefined;
|
|
6326
5717
|
machine?: {
|
|
6327
5718
|
cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
|
|
@@ -6351,27 +5742,6 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
6351
5742
|
queue?: {
|
|
6352
5743
|
name?: string | undefined;
|
|
6353
5744
|
concurrencyLimit?: number | undefined;
|
|
6354
|
-
rateLimit?: {
|
|
6355
|
-
type: "fixed-window";
|
|
6356
|
-
limit: number;
|
|
6357
|
-
window: {
|
|
6358
|
-
seconds: number;
|
|
6359
|
-
} | {
|
|
6360
|
-
minutes: number;
|
|
6361
|
-
} | {
|
|
6362
|
-
hours: number;
|
|
6363
|
-
};
|
|
6364
|
-
} | {
|
|
6365
|
-
type: "sliding-window";
|
|
6366
|
-
limit: number;
|
|
6367
|
-
window: {
|
|
6368
|
-
seconds: number;
|
|
6369
|
-
} | {
|
|
6370
|
-
minutes: number;
|
|
6371
|
-
} | {
|
|
6372
|
-
hours: number;
|
|
6373
|
-
};
|
|
6374
|
-
} | undefined;
|
|
6375
5745
|
} | undefined;
|
|
6376
5746
|
machine?: {
|
|
6377
5747
|
cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
|
|
@@ -6404,27 +5774,6 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
6404
5774
|
queue?: {
|
|
6405
5775
|
name?: string | undefined;
|
|
6406
5776
|
concurrencyLimit?: number | undefined;
|
|
6407
|
-
rateLimit?: {
|
|
6408
|
-
type: "fixed-window";
|
|
6409
|
-
limit: number;
|
|
6410
|
-
window: {
|
|
6411
|
-
seconds: number;
|
|
6412
|
-
} | {
|
|
6413
|
-
minutes: number;
|
|
6414
|
-
} | {
|
|
6415
|
-
hours: number;
|
|
6416
|
-
};
|
|
6417
|
-
} | {
|
|
6418
|
-
type: "sliding-window";
|
|
6419
|
-
limit: number;
|
|
6420
|
-
window: {
|
|
6421
|
-
seconds: number;
|
|
6422
|
-
} | {
|
|
6423
|
-
minutes: number;
|
|
6424
|
-
} | {
|
|
6425
|
-
hours: number;
|
|
6426
|
-
};
|
|
6427
|
-
} | undefined;
|
|
6428
5777
|
} | undefined;
|
|
6429
5778
|
machine?: {
|
|
6430
5779
|
cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
|
|
@@ -6463,27 +5812,6 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
6463
5812
|
queue?: {
|
|
6464
5813
|
name?: string | undefined;
|
|
6465
5814
|
concurrencyLimit?: number | undefined;
|
|
6466
|
-
rateLimit?: {
|
|
6467
|
-
type: "fixed-window";
|
|
6468
|
-
limit: number;
|
|
6469
|
-
window: {
|
|
6470
|
-
seconds: number;
|
|
6471
|
-
} | {
|
|
6472
|
-
minutes: number;
|
|
6473
|
-
} | {
|
|
6474
|
-
hours: number;
|
|
6475
|
-
};
|
|
6476
|
-
} | {
|
|
6477
|
-
type: "sliding-window";
|
|
6478
|
-
limit: number;
|
|
6479
|
-
window: {
|
|
6480
|
-
seconds: number;
|
|
6481
|
-
} | {
|
|
6482
|
-
minutes: number;
|
|
6483
|
-
} | {
|
|
6484
|
-
hours: number;
|
|
6485
|
-
};
|
|
6486
|
-
} | undefined;
|
|
6487
5815
|
} | undefined;
|
|
6488
5816
|
machine?: {
|
|
6489
5817
|
cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
|
|
@@ -6523,27 +5851,6 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
6523
5851
|
queue?: {
|
|
6524
5852
|
name?: string | undefined;
|
|
6525
5853
|
concurrencyLimit?: number | undefined;
|
|
6526
|
-
rateLimit?: {
|
|
6527
|
-
type: "fixed-window";
|
|
6528
|
-
limit: number;
|
|
6529
|
-
window: {
|
|
6530
|
-
seconds: number;
|
|
6531
|
-
} | {
|
|
6532
|
-
minutes: number;
|
|
6533
|
-
} | {
|
|
6534
|
-
hours: number;
|
|
6535
|
-
};
|
|
6536
|
-
} | {
|
|
6537
|
-
type: "sliding-window";
|
|
6538
|
-
limit: number;
|
|
6539
|
-
window: {
|
|
6540
|
-
seconds: number;
|
|
6541
|
-
} | {
|
|
6542
|
-
minutes: number;
|
|
6543
|
-
} | {
|
|
6544
|
-
hours: number;
|
|
6545
|
-
};
|
|
6546
|
-
} | undefined;
|
|
6547
5854
|
} | undefined;
|
|
6548
5855
|
machine?: {
|
|
6549
5856
|
cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
|
|
@@ -8286,6 +7593,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
8286
7593
|
}, {
|
|
8287
7594
|
durationMs: number;
|
|
8288
7595
|
}>>;
|
|
7596
|
+
taskIdentifier: z.ZodOptional<z.ZodString>;
|
|
8289
7597
|
}, "strip", z.ZodTypeAny, {
|
|
8290
7598
|
id: string;
|
|
8291
7599
|
ok: true;
|
|
@@ -8294,6 +7602,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
8294
7602
|
usage?: {
|
|
8295
7603
|
durationMs: number;
|
|
8296
7604
|
} | undefined;
|
|
7605
|
+
taskIdentifier?: string | undefined;
|
|
8297
7606
|
}, {
|
|
8298
7607
|
id: string;
|
|
8299
7608
|
ok: true;
|
|
@@ -8302,6 +7611,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
8302
7611
|
usage?: {
|
|
8303
7612
|
durationMs: number;
|
|
8304
7613
|
} | undefined;
|
|
7614
|
+
taskIdentifier?: string | undefined;
|
|
8305
7615
|
}>, z.ZodObject<{
|
|
8306
7616
|
ok: z.ZodLiteral<false>;
|
|
8307
7617
|
id: z.ZodString;
|
|
@@ -8375,6 +7685,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
8375
7685
|
}, {
|
|
8376
7686
|
durationMs: number;
|
|
8377
7687
|
}>>;
|
|
7688
|
+
taskIdentifier: z.ZodOptional<z.ZodString>;
|
|
8378
7689
|
}, "strip", z.ZodTypeAny, {
|
|
8379
7690
|
id: string;
|
|
8380
7691
|
error: {
|
|
@@ -8404,6 +7715,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
8404
7715
|
usage?: {
|
|
8405
7716
|
durationMs: number;
|
|
8406
7717
|
} | undefined;
|
|
7718
|
+
taskIdentifier?: string | undefined;
|
|
8407
7719
|
}, {
|
|
8408
7720
|
id: string;
|
|
8409
7721
|
error: {
|
|
@@ -8433,6 +7745,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
8433
7745
|
usage?: {
|
|
8434
7746
|
durationMs: number;
|
|
8435
7747
|
} | undefined;
|
|
7748
|
+
taskIdentifier?: string | undefined;
|
|
8436
7749
|
}>]>;
|
|
8437
7750
|
checkpoint: z.ZodOptional<z.ZodObject<{
|
|
8438
7751
|
docker: z.ZodBoolean;
|
|
@@ -8542,6 +7855,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
8542
7855
|
usage?: {
|
|
8543
7856
|
durationMs: number;
|
|
8544
7857
|
} | undefined;
|
|
7858
|
+
taskIdentifier?: string | undefined;
|
|
8545
7859
|
} | {
|
|
8546
7860
|
id: string;
|
|
8547
7861
|
ok: true;
|
|
@@ -8550,6 +7864,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
8550
7864
|
usage?: {
|
|
8551
7865
|
durationMs: number;
|
|
8552
7866
|
} | undefined;
|
|
7867
|
+
taskIdentifier?: string | undefined;
|
|
8553
7868
|
};
|
|
8554
7869
|
checkpoint?: {
|
|
8555
7870
|
location: string;
|
|
@@ -8652,6 +7967,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
8652
7967
|
usage?: {
|
|
8653
7968
|
durationMs: number;
|
|
8654
7969
|
} | undefined;
|
|
7970
|
+
taskIdentifier?: string | undefined;
|
|
8655
7971
|
} | {
|
|
8656
7972
|
id: string;
|
|
8657
7973
|
ok: true;
|
|
@@ -8660,6 +7976,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
8660
7976
|
usage?: {
|
|
8661
7977
|
durationMs: number;
|
|
8662
7978
|
} | undefined;
|
|
7979
|
+
taskIdentifier?: string | undefined;
|
|
8663
7980
|
};
|
|
8664
7981
|
version?: "v1" | "v2" | undefined;
|
|
8665
7982
|
checkpoint?: {
|
|
@@ -8744,6 +8061,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
8744
8061
|
}, {
|
|
8745
8062
|
durationMs: number;
|
|
8746
8063
|
}>>;
|
|
8064
|
+
taskIdentifier: z.ZodOptional<z.ZodString>;
|
|
8747
8065
|
}, "strip", z.ZodTypeAny, {
|
|
8748
8066
|
id: string;
|
|
8749
8067
|
error: {
|
|
@@ -8773,6 +8091,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
8773
8091
|
usage?: {
|
|
8774
8092
|
durationMs: number;
|
|
8775
8093
|
} | undefined;
|
|
8094
|
+
taskIdentifier?: string | undefined;
|
|
8776
8095
|
}, {
|
|
8777
8096
|
id: string;
|
|
8778
8097
|
error: {
|
|
@@ -8802,6 +8121,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
8802
8121
|
usage?: {
|
|
8803
8122
|
durationMs: number;
|
|
8804
8123
|
} | undefined;
|
|
8124
|
+
taskIdentifier?: string | undefined;
|
|
8805
8125
|
}>;
|
|
8806
8126
|
}, "strip", z.ZodTypeAny, {
|
|
8807
8127
|
version: "v1";
|
|
@@ -8834,6 +8154,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
8834
8154
|
usage?: {
|
|
8835
8155
|
durationMs: number;
|
|
8836
8156
|
} | undefined;
|
|
8157
|
+
taskIdentifier?: string | undefined;
|
|
8837
8158
|
};
|
|
8838
8159
|
}, {
|
|
8839
8160
|
completion: {
|
|
@@ -8865,6 +8186,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
8865
8186
|
usage?: {
|
|
8866
8187
|
durationMs: number;
|
|
8867
8188
|
} | undefined;
|
|
8189
|
+
taskIdentifier?: string | undefined;
|
|
8868
8190
|
};
|
|
8869
8191
|
version?: "v1" | undefined;
|
|
8870
8192
|
}>;
|
|
@@ -9093,6 +8415,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
9093
8415
|
}, {
|
|
9094
8416
|
durationMs: number;
|
|
9095
8417
|
}>>;
|
|
8418
|
+
taskIdentifier: z.ZodOptional<z.ZodString>;
|
|
9096
8419
|
}, "strip", z.ZodTypeAny, {
|
|
9097
8420
|
id: string;
|
|
9098
8421
|
ok: true;
|
|
@@ -9101,6 +8424,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
9101
8424
|
usage?: {
|
|
9102
8425
|
durationMs: number;
|
|
9103
8426
|
} | undefined;
|
|
8427
|
+
taskIdentifier?: string | undefined;
|
|
9104
8428
|
}, {
|
|
9105
8429
|
id: string;
|
|
9106
8430
|
ok: true;
|
|
@@ -9109,6 +8433,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
9109
8433
|
usage?: {
|
|
9110
8434
|
durationMs: number;
|
|
9111
8435
|
} | undefined;
|
|
8436
|
+
taskIdentifier?: string | undefined;
|
|
9112
8437
|
}>, z.ZodObject<{
|
|
9113
8438
|
ok: z.ZodLiteral<false>;
|
|
9114
8439
|
id: z.ZodString;
|
|
@@ -9182,6 +8507,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
9182
8507
|
}, {
|
|
9183
8508
|
durationMs: number;
|
|
9184
8509
|
}>>;
|
|
8510
|
+
taskIdentifier: z.ZodOptional<z.ZodString>;
|
|
9185
8511
|
}, "strip", z.ZodTypeAny, {
|
|
9186
8512
|
id: string;
|
|
9187
8513
|
error: {
|
|
@@ -9211,6 +8537,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
9211
8537
|
usage?: {
|
|
9212
8538
|
durationMs: number;
|
|
9213
8539
|
} | undefined;
|
|
8540
|
+
taskIdentifier?: string | undefined;
|
|
9214
8541
|
}, {
|
|
9215
8542
|
id: string;
|
|
9216
8543
|
error: {
|
|
@@ -9240,6 +8567,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
9240
8567
|
usage?: {
|
|
9241
8568
|
durationMs: number;
|
|
9242
8569
|
} | undefined;
|
|
8570
|
+
taskIdentifier?: string | undefined;
|
|
9243
8571
|
}>]>, "many">;
|
|
9244
8572
|
executions: z.ZodArray<z.ZodObject<{
|
|
9245
8573
|
task: z.ZodObject<{
|
|
@@ -9561,6 +8889,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
9561
8889
|
usage?: {
|
|
9562
8890
|
durationMs: number;
|
|
9563
8891
|
} | undefined;
|
|
8892
|
+
taskIdentifier?: string | undefined;
|
|
9564
8893
|
} | {
|
|
9565
8894
|
id: string;
|
|
9566
8895
|
ok: true;
|
|
@@ -9569,6 +8898,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
9569
8898
|
usage?: {
|
|
9570
8899
|
durationMs: number;
|
|
9571
8900
|
} | undefined;
|
|
8901
|
+
taskIdentifier?: string | undefined;
|
|
9572
8902
|
})[];
|
|
9573
8903
|
executions: {
|
|
9574
8904
|
run: {
|
|
@@ -9665,6 +8995,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
9665
8995
|
usage?: {
|
|
9666
8996
|
durationMs: number;
|
|
9667
8997
|
} | undefined;
|
|
8998
|
+
taskIdentifier?: string | undefined;
|
|
9668
8999
|
} | {
|
|
9669
9000
|
id: string;
|
|
9670
9001
|
ok: true;
|
|
@@ -9673,6 +9004,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
9673
9004
|
usage?: {
|
|
9674
9005
|
durationMs: number;
|
|
9675
9006
|
} | undefined;
|
|
9007
|
+
taskIdentifier?: string | undefined;
|
|
9676
9008
|
})[];
|
|
9677
9009
|
executions: {
|
|
9678
9010
|
run: {
|
|
@@ -9757,6 +9089,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
9757
9089
|
}, {
|
|
9758
9090
|
durationMs: number;
|
|
9759
9091
|
}>>;
|
|
9092
|
+
taskIdentifier: z.ZodOptional<z.ZodString>;
|
|
9760
9093
|
}, "strip", z.ZodTypeAny, {
|
|
9761
9094
|
id: string;
|
|
9762
9095
|
ok: true;
|
|
@@ -9765,6 +9098,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
9765
9098
|
usage?: {
|
|
9766
9099
|
durationMs: number;
|
|
9767
9100
|
} | undefined;
|
|
9101
|
+
taskIdentifier?: string | undefined;
|
|
9768
9102
|
}, {
|
|
9769
9103
|
id: string;
|
|
9770
9104
|
ok: true;
|
|
@@ -9773,6 +9107,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
9773
9107
|
usage?: {
|
|
9774
9108
|
durationMs: number;
|
|
9775
9109
|
} | undefined;
|
|
9110
|
+
taskIdentifier?: string | undefined;
|
|
9776
9111
|
}>, z.ZodObject<{
|
|
9777
9112
|
ok: z.ZodLiteral<false>;
|
|
9778
9113
|
id: z.ZodString;
|
|
@@ -9846,6 +9181,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
9846
9181
|
}, {
|
|
9847
9182
|
durationMs: number;
|
|
9848
9183
|
}>>;
|
|
9184
|
+
taskIdentifier: z.ZodOptional<z.ZodString>;
|
|
9849
9185
|
}, "strip", z.ZodTypeAny, {
|
|
9850
9186
|
id: string;
|
|
9851
9187
|
error: {
|
|
@@ -9875,6 +9211,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
9875
9211
|
usage?: {
|
|
9876
9212
|
durationMs: number;
|
|
9877
9213
|
} | undefined;
|
|
9214
|
+
taskIdentifier?: string | undefined;
|
|
9878
9215
|
}, {
|
|
9879
9216
|
id: string;
|
|
9880
9217
|
error: {
|
|
@@ -9904,6 +9241,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
9904
9241
|
usage?: {
|
|
9905
9242
|
durationMs: number;
|
|
9906
9243
|
} | undefined;
|
|
9244
|
+
taskIdentifier?: string | undefined;
|
|
9907
9245
|
}>]>, "many">;
|
|
9908
9246
|
executions: z.ZodArray<z.ZodObject<{
|
|
9909
9247
|
task: z.ZodObject<{
|
|
@@ -10225,6 +9563,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
10225
9563
|
usage?: {
|
|
10226
9564
|
durationMs: number;
|
|
10227
9565
|
} | undefined;
|
|
9566
|
+
taskIdentifier?: string | undefined;
|
|
10228
9567
|
} | {
|
|
10229
9568
|
id: string;
|
|
10230
9569
|
ok: true;
|
|
@@ -10233,6 +9572,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
10233
9572
|
usage?: {
|
|
10234
9573
|
durationMs: number;
|
|
10235
9574
|
} | undefined;
|
|
9575
|
+
taskIdentifier?: string | undefined;
|
|
10236
9576
|
})[];
|
|
10237
9577
|
executions: {
|
|
10238
9578
|
run: {
|
|
@@ -10329,6 +9669,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
10329
9669
|
usage?: {
|
|
10330
9670
|
durationMs: number;
|
|
10331
9671
|
} | undefined;
|
|
9672
|
+
taskIdentifier?: string | undefined;
|
|
10332
9673
|
} | {
|
|
10333
9674
|
id: string;
|
|
10334
9675
|
ok: true;
|
|
@@ -10337,6 +9678,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
10337
9678
|
usage?: {
|
|
10338
9679
|
durationMs: number;
|
|
10339
9680
|
} | undefined;
|
|
9681
|
+
taskIdentifier?: string | undefined;
|
|
10340
9682
|
})[];
|
|
10341
9683
|
executions: {
|
|
10342
9684
|
run: {
|
|
@@ -10558,6 +9900,7 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
10558
9900
|
}, {
|
|
10559
9901
|
durationMs: number;
|
|
10560
9902
|
}>>;
|
|
9903
|
+
taskIdentifier: z.ZodOptional<z.ZodString>;
|
|
10561
9904
|
}, "strip", z.ZodTypeAny, {
|
|
10562
9905
|
id: string;
|
|
10563
9906
|
ok: true;
|
|
@@ -10566,6 +9909,7 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
10566
9909
|
usage?: {
|
|
10567
9910
|
durationMs: number;
|
|
10568
9911
|
} | undefined;
|
|
9912
|
+
taskIdentifier?: string | undefined;
|
|
10569
9913
|
}, {
|
|
10570
9914
|
id: string;
|
|
10571
9915
|
ok: true;
|
|
@@ -10574,6 +9918,7 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
10574
9918
|
usage?: {
|
|
10575
9919
|
durationMs: number;
|
|
10576
9920
|
} | undefined;
|
|
9921
|
+
taskIdentifier?: string | undefined;
|
|
10577
9922
|
}>, z.ZodObject<{
|
|
10578
9923
|
ok: z.ZodLiteral<false>;
|
|
10579
9924
|
id: z.ZodString;
|
|
@@ -10647,6 +9992,7 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
10647
9992
|
}, {
|
|
10648
9993
|
durationMs: number;
|
|
10649
9994
|
}>>;
|
|
9995
|
+
taskIdentifier: z.ZodOptional<z.ZodString>;
|
|
10650
9996
|
}, "strip", z.ZodTypeAny, {
|
|
10651
9997
|
id: string;
|
|
10652
9998
|
error: {
|
|
@@ -10676,6 +10022,7 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
10676
10022
|
usage?: {
|
|
10677
10023
|
durationMs: number;
|
|
10678
10024
|
} | undefined;
|
|
10025
|
+
taskIdentifier?: string | undefined;
|
|
10679
10026
|
}, {
|
|
10680
10027
|
id: string;
|
|
10681
10028
|
error: {
|
|
@@ -10705,6 +10052,7 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
10705
10052
|
usage?: {
|
|
10706
10053
|
durationMs: number;
|
|
10707
10054
|
} | undefined;
|
|
10055
|
+
taskIdentifier?: string | undefined;
|
|
10708
10056
|
}>]>;
|
|
10709
10057
|
execution: z.ZodObject<{
|
|
10710
10058
|
task: z.ZodObject<{
|
|
@@ -11086,6 +10434,7 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
11086
10434
|
usage?: {
|
|
11087
10435
|
durationMs: number;
|
|
11088
10436
|
} | undefined;
|
|
10437
|
+
taskIdentifier?: string | undefined;
|
|
11089
10438
|
} | {
|
|
11090
10439
|
id: string;
|
|
11091
10440
|
ok: true;
|
|
@@ -11094,6 +10443,7 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
11094
10443
|
usage?: {
|
|
11095
10444
|
durationMs: number;
|
|
11096
10445
|
} | undefined;
|
|
10446
|
+
taskIdentifier?: string | undefined;
|
|
11097
10447
|
};
|
|
11098
10448
|
}, {
|
|
11099
10449
|
type: "TASK_RUN_COMPLETED";
|
|
@@ -11188,6 +10538,7 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
11188
10538
|
usage?: {
|
|
11189
10539
|
durationMs: number;
|
|
11190
10540
|
} | undefined;
|
|
10541
|
+
taskIdentifier?: string | undefined;
|
|
11191
10542
|
} | {
|
|
11192
10543
|
id: string;
|
|
11193
10544
|
ok: true;
|
|
@@ -11196,6 +10547,7 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
11196
10547
|
usage?: {
|
|
11197
10548
|
durationMs: number;
|
|
11198
10549
|
} | undefined;
|
|
10550
|
+
taskIdentifier?: string | undefined;
|
|
11199
10551
|
};
|
|
11200
10552
|
version?: "v1" | undefined;
|
|
11201
10553
|
}>, z.ZodObject<{
|
|
@@ -11274,6 +10626,7 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
11274
10626
|
}, {
|
|
11275
10627
|
durationMs: number;
|
|
11276
10628
|
}>>;
|
|
10629
|
+
taskIdentifier: z.ZodOptional<z.ZodString>;
|
|
11277
10630
|
}, "strip", z.ZodTypeAny, {
|
|
11278
10631
|
id: string;
|
|
11279
10632
|
error: {
|
|
@@ -11303,6 +10656,7 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
11303
10656
|
usage?: {
|
|
11304
10657
|
durationMs: number;
|
|
11305
10658
|
} | undefined;
|
|
10659
|
+
taskIdentifier?: string | undefined;
|
|
11306
10660
|
}, {
|
|
11307
10661
|
id: string;
|
|
11308
10662
|
error: {
|
|
@@ -11332,6 +10686,7 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
11332
10686
|
usage?: {
|
|
11333
10687
|
durationMs: number;
|
|
11334
10688
|
} | undefined;
|
|
10689
|
+
taskIdentifier?: string | undefined;
|
|
11335
10690
|
}>;
|
|
11336
10691
|
}, "strip", z.ZodTypeAny, {
|
|
11337
10692
|
type: "TASK_RUN_FAILED_TO_RUN";
|
|
@@ -11365,6 +10720,7 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
11365
10720
|
usage?: {
|
|
11366
10721
|
durationMs: number;
|
|
11367
10722
|
} | undefined;
|
|
10723
|
+
taskIdentifier?: string | undefined;
|
|
11368
10724
|
};
|
|
11369
10725
|
}, {
|
|
11370
10726
|
type: "TASK_RUN_FAILED_TO_RUN";
|
|
@@ -11397,6 +10753,7 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
11397
10753
|
usage?: {
|
|
11398
10754
|
durationMs: number;
|
|
11399
10755
|
} | undefined;
|
|
10756
|
+
taskIdentifier?: string | undefined;
|
|
11400
10757
|
};
|
|
11401
10758
|
version?: "v1" | undefined;
|
|
11402
10759
|
}>, z.ZodObject<{
|
|
@@ -11520,6 +10877,7 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
11520
10877
|
usage?: {
|
|
11521
10878
|
durationMs: number;
|
|
11522
10879
|
} | undefined;
|
|
10880
|
+
taskIdentifier?: string | undefined;
|
|
11523
10881
|
} | {
|
|
11524
10882
|
id: string;
|
|
11525
10883
|
ok: true;
|
|
@@ -11528,6 +10886,7 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
11528
10886
|
usage?: {
|
|
11529
10887
|
durationMs: number;
|
|
11530
10888
|
} | undefined;
|
|
10889
|
+
taskIdentifier?: string | undefined;
|
|
11531
10890
|
};
|
|
11532
10891
|
} | {
|
|
11533
10892
|
type: "TASK_RUN_FAILED_TO_RUN";
|
|
@@ -11561,6 +10920,7 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
11561
10920
|
usage?: {
|
|
11562
10921
|
durationMs: number;
|
|
11563
10922
|
} | undefined;
|
|
10923
|
+
taskIdentifier?: string | undefined;
|
|
11564
10924
|
};
|
|
11565
10925
|
} | {
|
|
11566
10926
|
type: "TASK_HEARTBEAT";
|
|
@@ -11666,6 +11026,7 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
11666
11026
|
usage?: {
|
|
11667
11027
|
durationMs: number;
|
|
11668
11028
|
} | undefined;
|
|
11029
|
+
taskIdentifier?: string | undefined;
|
|
11669
11030
|
} | {
|
|
11670
11031
|
id: string;
|
|
11671
11032
|
ok: true;
|
|
@@ -11674,6 +11035,7 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
11674
11035
|
usage?: {
|
|
11675
11036
|
durationMs: number;
|
|
11676
11037
|
} | undefined;
|
|
11038
|
+
taskIdentifier?: string | undefined;
|
|
11677
11039
|
};
|
|
11678
11040
|
version?: "v1" | undefined;
|
|
11679
11041
|
} | {
|
|
@@ -11707,6 +11069,7 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
11707
11069
|
usage?: {
|
|
11708
11070
|
durationMs: number;
|
|
11709
11071
|
} | undefined;
|
|
11072
|
+
taskIdentifier?: string | undefined;
|
|
11710
11073
|
};
|
|
11711
11074
|
version?: "v1" | undefined;
|
|
11712
11075
|
} | {
|
|
@@ -11954,139 +11317,12 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
11954
11317
|
queue: z.ZodOptional<z.ZodObject<{
|
|
11955
11318
|
name: z.ZodOptional<z.ZodString>;
|
|
11956
11319
|
concurrencyLimit: z.ZodOptional<z.ZodNumber>;
|
|
11957
|
-
rateLimit: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
11958
|
-
type: z.ZodLiteral<"fixed-window">;
|
|
11959
|
-
limit: z.ZodNumber;
|
|
11960
|
-
window: z.ZodUnion<[z.ZodObject<{
|
|
11961
|
-
seconds: z.ZodNumber;
|
|
11962
|
-
}, "strip", z.ZodTypeAny, {
|
|
11963
|
-
seconds: number;
|
|
11964
|
-
}, {
|
|
11965
|
-
seconds: number;
|
|
11966
|
-
}>, z.ZodObject<{
|
|
11967
|
-
minutes: z.ZodNumber;
|
|
11968
|
-
}, "strip", z.ZodTypeAny, {
|
|
11969
|
-
minutes: number;
|
|
11970
|
-
}, {
|
|
11971
|
-
minutes: number;
|
|
11972
|
-
}>, z.ZodObject<{
|
|
11973
|
-
hours: z.ZodNumber;
|
|
11974
|
-
}, "strip", z.ZodTypeAny, {
|
|
11975
|
-
hours: number;
|
|
11976
|
-
}, {
|
|
11977
|
-
hours: number;
|
|
11978
|
-
}>]>;
|
|
11979
|
-
}, "strip", z.ZodTypeAny, {
|
|
11980
|
-
type: "fixed-window";
|
|
11981
|
-
limit: number;
|
|
11982
|
-
window: {
|
|
11983
|
-
seconds: number;
|
|
11984
|
-
} | {
|
|
11985
|
-
minutes: number;
|
|
11986
|
-
} | {
|
|
11987
|
-
hours: number;
|
|
11988
|
-
};
|
|
11989
|
-
}, {
|
|
11990
|
-
type: "fixed-window";
|
|
11991
|
-
limit: number;
|
|
11992
|
-
window: {
|
|
11993
|
-
seconds: number;
|
|
11994
|
-
} | {
|
|
11995
|
-
minutes: number;
|
|
11996
|
-
} | {
|
|
11997
|
-
hours: number;
|
|
11998
|
-
};
|
|
11999
|
-
}>, z.ZodObject<{
|
|
12000
|
-
type: z.ZodLiteral<"sliding-window">;
|
|
12001
|
-
limit: z.ZodNumber;
|
|
12002
|
-
window: z.ZodUnion<[z.ZodObject<{
|
|
12003
|
-
seconds: z.ZodNumber;
|
|
12004
|
-
}, "strip", z.ZodTypeAny, {
|
|
12005
|
-
seconds: number;
|
|
12006
|
-
}, {
|
|
12007
|
-
seconds: number;
|
|
12008
|
-
}>, z.ZodObject<{
|
|
12009
|
-
minutes: z.ZodNumber;
|
|
12010
|
-
}, "strip", z.ZodTypeAny, {
|
|
12011
|
-
minutes: number;
|
|
12012
|
-
}, {
|
|
12013
|
-
minutes: number;
|
|
12014
|
-
}>, z.ZodObject<{
|
|
12015
|
-
hours: z.ZodNumber;
|
|
12016
|
-
}, "strip", z.ZodTypeAny, {
|
|
12017
|
-
hours: number;
|
|
12018
|
-
}, {
|
|
12019
|
-
hours: number;
|
|
12020
|
-
}>]>;
|
|
12021
|
-
}, "strip", z.ZodTypeAny, {
|
|
12022
|
-
type: "sliding-window";
|
|
12023
|
-
limit: number;
|
|
12024
|
-
window: {
|
|
12025
|
-
seconds: number;
|
|
12026
|
-
} | {
|
|
12027
|
-
minutes: number;
|
|
12028
|
-
} | {
|
|
12029
|
-
hours: number;
|
|
12030
|
-
};
|
|
12031
|
-
}, {
|
|
12032
|
-
type: "sliding-window";
|
|
12033
|
-
limit: number;
|
|
12034
|
-
window: {
|
|
12035
|
-
seconds: number;
|
|
12036
|
-
} | {
|
|
12037
|
-
minutes: number;
|
|
12038
|
-
} | {
|
|
12039
|
-
hours: number;
|
|
12040
|
-
};
|
|
12041
|
-
}>]>>;
|
|
12042
11320
|
}, "strip", z.ZodTypeAny, {
|
|
12043
11321
|
name?: string | undefined;
|
|
12044
11322
|
concurrencyLimit?: number | undefined;
|
|
12045
|
-
rateLimit?: {
|
|
12046
|
-
type: "fixed-window";
|
|
12047
|
-
limit: number;
|
|
12048
|
-
window: {
|
|
12049
|
-
seconds: number;
|
|
12050
|
-
} | {
|
|
12051
|
-
minutes: number;
|
|
12052
|
-
} | {
|
|
12053
|
-
hours: number;
|
|
12054
|
-
};
|
|
12055
|
-
} | {
|
|
12056
|
-
type: "sliding-window";
|
|
12057
|
-
limit: number;
|
|
12058
|
-
window: {
|
|
12059
|
-
seconds: number;
|
|
12060
|
-
} | {
|
|
12061
|
-
minutes: number;
|
|
12062
|
-
} | {
|
|
12063
|
-
hours: number;
|
|
12064
|
-
};
|
|
12065
|
-
} | undefined;
|
|
12066
11323
|
}, {
|
|
12067
11324
|
name?: string | undefined;
|
|
12068
11325
|
concurrencyLimit?: number | undefined;
|
|
12069
|
-
rateLimit?: {
|
|
12070
|
-
type: "fixed-window";
|
|
12071
|
-
limit: number;
|
|
12072
|
-
window: {
|
|
12073
|
-
seconds: number;
|
|
12074
|
-
} | {
|
|
12075
|
-
minutes: number;
|
|
12076
|
-
} | {
|
|
12077
|
-
hours: number;
|
|
12078
|
-
};
|
|
12079
|
-
} | {
|
|
12080
|
-
type: "sliding-window";
|
|
12081
|
-
limit: number;
|
|
12082
|
-
window: {
|
|
12083
|
-
seconds: number;
|
|
12084
|
-
} | {
|
|
12085
|
-
minutes: number;
|
|
12086
|
-
} | {
|
|
12087
|
-
hours: number;
|
|
12088
|
-
};
|
|
12089
|
-
} | undefined;
|
|
12090
11326
|
}>>;
|
|
12091
11327
|
retry: z.ZodOptional<z.ZodObject<{
|
|
12092
11328
|
maxAttempts: z.ZodOptional<z.ZodNumber>;
|
|
@@ -12152,27 +11388,6 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
12152
11388
|
queue?: {
|
|
12153
11389
|
name?: string | undefined;
|
|
12154
11390
|
concurrencyLimit?: number | undefined;
|
|
12155
|
-
rateLimit?: {
|
|
12156
|
-
type: "fixed-window";
|
|
12157
|
-
limit: number;
|
|
12158
|
-
window: {
|
|
12159
|
-
seconds: number;
|
|
12160
|
-
} | {
|
|
12161
|
-
minutes: number;
|
|
12162
|
-
} | {
|
|
12163
|
-
hours: number;
|
|
12164
|
-
};
|
|
12165
|
-
} | {
|
|
12166
|
-
type: "sliding-window";
|
|
12167
|
-
limit: number;
|
|
12168
|
-
window: {
|
|
12169
|
-
seconds: number;
|
|
12170
|
-
} | {
|
|
12171
|
-
minutes: number;
|
|
12172
|
-
} | {
|
|
12173
|
-
hours: number;
|
|
12174
|
-
};
|
|
12175
|
-
} | undefined;
|
|
12176
11391
|
} | undefined;
|
|
12177
11392
|
machine?: {
|
|
12178
11393
|
cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
|
|
@@ -12200,27 +11415,6 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
12200
11415
|
queue?: {
|
|
12201
11416
|
name?: string | undefined;
|
|
12202
11417
|
concurrencyLimit?: number | undefined;
|
|
12203
|
-
rateLimit?: {
|
|
12204
|
-
type: "fixed-window";
|
|
12205
|
-
limit: number;
|
|
12206
|
-
window: {
|
|
12207
|
-
seconds: number;
|
|
12208
|
-
} | {
|
|
12209
|
-
minutes: number;
|
|
12210
|
-
} | {
|
|
12211
|
-
hours: number;
|
|
12212
|
-
};
|
|
12213
|
-
} | {
|
|
12214
|
-
type: "sliding-window";
|
|
12215
|
-
limit: number;
|
|
12216
|
-
window: {
|
|
12217
|
-
seconds: number;
|
|
12218
|
-
} | {
|
|
12219
|
-
minutes: number;
|
|
12220
|
-
} | {
|
|
12221
|
-
hours: number;
|
|
12222
|
-
};
|
|
12223
|
-
} | undefined;
|
|
12224
11418
|
} | undefined;
|
|
12225
11419
|
machine?: {
|
|
12226
11420
|
cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
|
|
@@ -12254,27 +11448,6 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
12254
11448
|
queue?: {
|
|
12255
11449
|
name?: string | undefined;
|
|
12256
11450
|
concurrencyLimit?: number | undefined;
|
|
12257
|
-
rateLimit?: {
|
|
12258
|
-
type: "fixed-window";
|
|
12259
|
-
limit: number;
|
|
12260
|
-
window: {
|
|
12261
|
-
seconds: number;
|
|
12262
|
-
} | {
|
|
12263
|
-
minutes: number;
|
|
12264
|
-
} | {
|
|
12265
|
-
hours: number;
|
|
12266
|
-
};
|
|
12267
|
-
} | {
|
|
12268
|
-
type: "sliding-window";
|
|
12269
|
-
limit: number;
|
|
12270
|
-
window: {
|
|
12271
|
-
seconds: number;
|
|
12272
|
-
} | {
|
|
12273
|
-
minutes: number;
|
|
12274
|
-
} | {
|
|
12275
|
-
hours: number;
|
|
12276
|
-
};
|
|
12277
|
-
} | undefined;
|
|
12278
11451
|
} | undefined;
|
|
12279
11452
|
machine?: {
|
|
12280
11453
|
cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
|
|
@@ -12307,27 +11480,6 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
12307
11480
|
queue?: {
|
|
12308
11481
|
name?: string | undefined;
|
|
12309
11482
|
concurrencyLimit?: number | undefined;
|
|
12310
|
-
rateLimit?: {
|
|
12311
|
-
type: "fixed-window";
|
|
12312
|
-
limit: number;
|
|
12313
|
-
window: {
|
|
12314
|
-
seconds: number;
|
|
12315
|
-
} | {
|
|
12316
|
-
minutes: number;
|
|
12317
|
-
} | {
|
|
12318
|
-
hours: number;
|
|
12319
|
-
};
|
|
12320
|
-
} | {
|
|
12321
|
-
type: "sliding-window";
|
|
12322
|
-
limit: number;
|
|
12323
|
-
window: {
|
|
12324
|
-
seconds: number;
|
|
12325
|
-
} | {
|
|
12326
|
-
minutes: number;
|
|
12327
|
-
} | {
|
|
12328
|
-
hours: number;
|
|
12329
|
-
};
|
|
12330
|
-
} | undefined;
|
|
12331
11483
|
} | undefined;
|
|
12332
11484
|
machine?: {
|
|
12333
11485
|
cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
|
|
@@ -12349,139 +11501,12 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
12349
11501
|
queue: z.ZodOptional<z.ZodObject<{
|
|
12350
11502
|
name: z.ZodOptional<z.ZodString>;
|
|
12351
11503
|
concurrencyLimit: z.ZodOptional<z.ZodNumber>;
|
|
12352
|
-
rateLimit: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
12353
|
-
type: z.ZodLiteral<"fixed-window">;
|
|
12354
|
-
limit: z.ZodNumber;
|
|
12355
|
-
window: z.ZodUnion<[z.ZodObject<{
|
|
12356
|
-
seconds: z.ZodNumber;
|
|
12357
|
-
}, "strip", z.ZodTypeAny, {
|
|
12358
|
-
seconds: number;
|
|
12359
|
-
}, {
|
|
12360
|
-
seconds: number;
|
|
12361
|
-
}>, z.ZodObject<{
|
|
12362
|
-
minutes: z.ZodNumber;
|
|
12363
|
-
}, "strip", z.ZodTypeAny, {
|
|
12364
|
-
minutes: number;
|
|
12365
|
-
}, {
|
|
12366
|
-
minutes: number;
|
|
12367
|
-
}>, z.ZodObject<{
|
|
12368
|
-
hours: z.ZodNumber;
|
|
12369
|
-
}, "strip", z.ZodTypeAny, {
|
|
12370
|
-
hours: number;
|
|
12371
|
-
}, {
|
|
12372
|
-
hours: number;
|
|
12373
|
-
}>]>;
|
|
12374
|
-
}, "strip", z.ZodTypeAny, {
|
|
12375
|
-
type: "fixed-window";
|
|
12376
|
-
limit: number;
|
|
12377
|
-
window: {
|
|
12378
|
-
seconds: number;
|
|
12379
|
-
} | {
|
|
12380
|
-
minutes: number;
|
|
12381
|
-
} | {
|
|
12382
|
-
hours: number;
|
|
12383
|
-
};
|
|
12384
|
-
}, {
|
|
12385
|
-
type: "fixed-window";
|
|
12386
|
-
limit: number;
|
|
12387
|
-
window: {
|
|
12388
|
-
seconds: number;
|
|
12389
|
-
} | {
|
|
12390
|
-
minutes: number;
|
|
12391
|
-
} | {
|
|
12392
|
-
hours: number;
|
|
12393
|
-
};
|
|
12394
|
-
}>, z.ZodObject<{
|
|
12395
|
-
type: z.ZodLiteral<"sliding-window">;
|
|
12396
|
-
limit: z.ZodNumber;
|
|
12397
|
-
window: z.ZodUnion<[z.ZodObject<{
|
|
12398
|
-
seconds: z.ZodNumber;
|
|
12399
|
-
}, "strip", z.ZodTypeAny, {
|
|
12400
|
-
seconds: number;
|
|
12401
|
-
}, {
|
|
12402
|
-
seconds: number;
|
|
12403
|
-
}>, z.ZodObject<{
|
|
12404
|
-
minutes: z.ZodNumber;
|
|
12405
|
-
}, "strip", z.ZodTypeAny, {
|
|
12406
|
-
minutes: number;
|
|
12407
|
-
}, {
|
|
12408
|
-
minutes: number;
|
|
12409
|
-
}>, z.ZodObject<{
|
|
12410
|
-
hours: z.ZodNumber;
|
|
12411
|
-
}, "strip", z.ZodTypeAny, {
|
|
12412
|
-
hours: number;
|
|
12413
|
-
}, {
|
|
12414
|
-
hours: number;
|
|
12415
|
-
}>]>;
|
|
12416
|
-
}, "strip", z.ZodTypeAny, {
|
|
12417
|
-
type: "sliding-window";
|
|
12418
|
-
limit: number;
|
|
12419
|
-
window: {
|
|
12420
|
-
seconds: number;
|
|
12421
|
-
} | {
|
|
12422
|
-
minutes: number;
|
|
12423
|
-
} | {
|
|
12424
|
-
hours: number;
|
|
12425
|
-
};
|
|
12426
|
-
}, {
|
|
12427
|
-
type: "sliding-window";
|
|
12428
|
-
limit: number;
|
|
12429
|
-
window: {
|
|
12430
|
-
seconds: number;
|
|
12431
|
-
} | {
|
|
12432
|
-
minutes: number;
|
|
12433
|
-
} | {
|
|
12434
|
-
hours: number;
|
|
12435
|
-
};
|
|
12436
|
-
}>]>>;
|
|
12437
11504
|
}, "strip", z.ZodTypeAny, {
|
|
12438
11505
|
name?: string | undefined;
|
|
12439
11506
|
concurrencyLimit?: number | undefined;
|
|
12440
|
-
rateLimit?: {
|
|
12441
|
-
type: "fixed-window";
|
|
12442
|
-
limit: number;
|
|
12443
|
-
window: {
|
|
12444
|
-
seconds: number;
|
|
12445
|
-
} | {
|
|
12446
|
-
minutes: number;
|
|
12447
|
-
} | {
|
|
12448
|
-
hours: number;
|
|
12449
|
-
};
|
|
12450
|
-
} | {
|
|
12451
|
-
type: "sliding-window";
|
|
12452
|
-
limit: number;
|
|
12453
|
-
window: {
|
|
12454
|
-
seconds: number;
|
|
12455
|
-
} | {
|
|
12456
|
-
minutes: number;
|
|
12457
|
-
} | {
|
|
12458
|
-
hours: number;
|
|
12459
|
-
};
|
|
12460
|
-
} | undefined;
|
|
12461
11507
|
}, {
|
|
12462
11508
|
name?: string | undefined;
|
|
12463
11509
|
concurrencyLimit?: number | undefined;
|
|
12464
|
-
rateLimit?: {
|
|
12465
|
-
type: "fixed-window";
|
|
12466
|
-
limit: number;
|
|
12467
|
-
window: {
|
|
12468
|
-
seconds: number;
|
|
12469
|
-
} | {
|
|
12470
|
-
minutes: number;
|
|
12471
|
-
} | {
|
|
12472
|
-
hours: number;
|
|
12473
|
-
};
|
|
12474
|
-
} | {
|
|
12475
|
-
type: "sliding-window";
|
|
12476
|
-
limit: number;
|
|
12477
|
-
window: {
|
|
12478
|
-
seconds: number;
|
|
12479
|
-
} | {
|
|
12480
|
-
minutes: number;
|
|
12481
|
-
} | {
|
|
12482
|
-
hours: number;
|
|
12483
|
-
};
|
|
12484
|
-
} | undefined;
|
|
12485
11510
|
}>>;
|
|
12486
11511
|
retry: z.ZodOptional<z.ZodObject<{
|
|
12487
11512
|
maxAttempts: z.ZodOptional<z.ZodNumber>;
|
|
@@ -12547,27 +11572,6 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
12547
11572
|
queue?: {
|
|
12548
11573
|
name?: string | undefined;
|
|
12549
11574
|
concurrencyLimit?: number | undefined;
|
|
12550
|
-
rateLimit?: {
|
|
12551
|
-
type: "fixed-window";
|
|
12552
|
-
limit: number;
|
|
12553
|
-
window: {
|
|
12554
|
-
seconds: number;
|
|
12555
|
-
} | {
|
|
12556
|
-
minutes: number;
|
|
12557
|
-
} | {
|
|
12558
|
-
hours: number;
|
|
12559
|
-
};
|
|
12560
|
-
} | {
|
|
12561
|
-
type: "sliding-window";
|
|
12562
|
-
limit: number;
|
|
12563
|
-
window: {
|
|
12564
|
-
seconds: number;
|
|
12565
|
-
} | {
|
|
12566
|
-
minutes: number;
|
|
12567
|
-
} | {
|
|
12568
|
-
hours: number;
|
|
12569
|
-
};
|
|
12570
|
-
} | undefined;
|
|
12571
11575
|
} | undefined;
|
|
12572
11576
|
machine?: {
|
|
12573
11577
|
cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
|
|
@@ -12595,27 +11599,6 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
12595
11599
|
queue?: {
|
|
12596
11600
|
name?: string | undefined;
|
|
12597
11601
|
concurrencyLimit?: number | undefined;
|
|
12598
|
-
rateLimit?: {
|
|
12599
|
-
type: "fixed-window";
|
|
12600
|
-
limit: number;
|
|
12601
|
-
window: {
|
|
12602
|
-
seconds: number;
|
|
12603
|
-
} | {
|
|
12604
|
-
minutes: number;
|
|
12605
|
-
} | {
|
|
12606
|
-
hours: number;
|
|
12607
|
-
};
|
|
12608
|
-
} | {
|
|
12609
|
-
type: "sliding-window";
|
|
12610
|
-
limit: number;
|
|
12611
|
-
window: {
|
|
12612
|
-
seconds: number;
|
|
12613
|
-
} | {
|
|
12614
|
-
minutes: number;
|
|
12615
|
-
} | {
|
|
12616
|
-
hours: number;
|
|
12617
|
-
};
|
|
12618
|
-
} | undefined;
|
|
12619
11602
|
} | undefined;
|
|
12620
11603
|
machine?: {
|
|
12621
11604
|
cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
|
|
@@ -12650,27 +11633,6 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
12650
11633
|
queue?: {
|
|
12651
11634
|
name?: string | undefined;
|
|
12652
11635
|
concurrencyLimit?: number | undefined;
|
|
12653
|
-
rateLimit?: {
|
|
12654
|
-
type: "fixed-window";
|
|
12655
|
-
limit: number;
|
|
12656
|
-
window: {
|
|
12657
|
-
seconds: number;
|
|
12658
|
-
} | {
|
|
12659
|
-
minutes: number;
|
|
12660
|
-
} | {
|
|
12661
|
-
hours: number;
|
|
12662
|
-
};
|
|
12663
|
-
} | {
|
|
12664
|
-
type: "sliding-window";
|
|
12665
|
-
limit: number;
|
|
12666
|
-
window: {
|
|
12667
|
-
seconds: number;
|
|
12668
|
-
} | {
|
|
12669
|
-
minutes: number;
|
|
12670
|
-
} | {
|
|
12671
|
-
hours: number;
|
|
12672
|
-
};
|
|
12673
|
-
} | undefined;
|
|
12674
11636
|
} | undefined;
|
|
12675
11637
|
machine?: {
|
|
12676
11638
|
cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
|
|
@@ -12704,27 +11666,6 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
12704
11666
|
queue?: {
|
|
12705
11667
|
name?: string | undefined;
|
|
12706
11668
|
concurrencyLimit?: number | undefined;
|
|
12707
|
-
rateLimit?: {
|
|
12708
|
-
type: "fixed-window";
|
|
12709
|
-
limit: number;
|
|
12710
|
-
window: {
|
|
12711
|
-
seconds: number;
|
|
12712
|
-
} | {
|
|
12713
|
-
minutes: number;
|
|
12714
|
-
} | {
|
|
12715
|
-
hours: number;
|
|
12716
|
-
};
|
|
12717
|
-
} | {
|
|
12718
|
-
type: "sliding-window";
|
|
12719
|
-
limit: number;
|
|
12720
|
-
window: {
|
|
12721
|
-
seconds: number;
|
|
12722
|
-
} | {
|
|
12723
|
-
minutes: number;
|
|
12724
|
-
} | {
|
|
12725
|
-
hours: number;
|
|
12726
|
-
};
|
|
12727
|
-
} | undefined;
|
|
12728
11669
|
} | undefined;
|
|
12729
11670
|
machine?: {
|
|
12730
11671
|
cpu?: 1 | 2 | 4 | 0.25 | 0.5 | undefined;
|
|
@@ -13216,6 +12157,7 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
13216
12157
|
}, {
|
|
13217
12158
|
durationMs: number;
|
|
13218
12159
|
}>>;
|
|
12160
|
+
taskIdentifier: z.ZodOptional<z.ZodString>;
|
|
13219
12161
|
}, "strip", z.ZodTypeAny, {
|
|
13220
12162
|
id: string;
|
|
13221
12163
|
ok: true;
|
|
@@ -13224,6 +12166,7 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
13224
12166
|
usage?: {
|
|
13225
12167
|
durationMs: number;
|
|
13226
12168
|
} | undefined;
|
|
12169
|
+
taskIdentifier?: string | undefined;
|
|
13227
12170
|
}, {
|
|
13228
12171
|
id: string;
|
|
13229
12172
|
ok: true;
|
|
@@ -13232,6 +12175,7 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
13232
12175
|
usage?: {
|
|
13233
12176
|
durationMs: number;
|
|
13234
12177
|
} | undefined;
|
|
12178
|
+
taskIdentifier?: string | undefined;
|
|
13235
12179
|
}>, z.ZodObject<{
|
|
13236
12180
|
ok: z.ZodLiteral<false>;
|
|
13237
12181
|
id: z.ZodString;
|
|
@@ -13305,6 +12249,7 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
13305
12249
|
}, {
|
|
13306
12250
|
durationMs: number;
|
|
13307
12251
|
}>>;
|
|
12252
|
+
taskIdentifier: z.ZodOptional<z.ZodString>;
|
|
13308
12253
|
}, "strip", z.ZodTypeAny, {
|
|
13309
12254
|
id: string;
|
|
13310
12255
|
error: {
|
|
@@ -13334,6 +12279,7 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
13334
12279
|
usage?: {
|
|
13335
12280
|
durationMs: number;
|
|
13336
12281
|
} | undefined;
|
|
12282
|
+
taskIdentifier?: string | undefined;
|
|
13337
12283
|
}, {
|
|
13338
12284
|
id: string;
|
|
13339
12285
|
error: {
|
|
@@ -13363,6 +12309,7 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
13363
12309
|
usage?: {
|
|
13364
12310
|
durationMs: number;
|
|
13365
12311
|
} | undefined;
|
|
12312
|
+
taskIdentifier?: string | undefined;
|
|
13366
12313
|
}>]>;
|
|
13367
12314
|
}, "strip", z.ZodTypeAny, {
|
|
13368
12315
|
version: "v1" | "v2";
|
|
@@ -13462,6 +12409,7 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
13462
12409
|
usage?: {
|
|
13463
12410
|
durationMs: number;
|
|
13464
12411
|
} | undefined;
|
|
12412
|
+
taskIdentifier?: string | undefined;
|
|
13465
12413
|
} | {
|
|
13466
12414
|
id: string;
|
|
13467
12415
|
ok: true;
|
|
@@ -13470,6 +12418,7 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
13470
12418
|
usage?: {
|
|
13471
12419
|
durationMs: number;
|
|
13472
12420
|
} | undefined;
|
|
12421
|
+
taskIdentifier?: string | undefined;
|
|
13473
12422
|
};
|
|
13474
12423
|
}, {
|
|
13475
12424
|
execution: {
|
|
@@ -13568,6 +12517,7 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
13568
12517
|
usage?: {
|
|
13569
12518
|
durationMs: number;
|
|
13570
12519
|
} | undefined;
|
|
12520
|
+
taskIdentifier?: string | undefined;
|
|
13571
12521
|
} | {
|
|
13572
12522
|
id: string;
|
|
13573
12523
|
ok: true;
|
|
@@ -13576,6 +12526,7 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
13576
12526
|
usage?: {
|
|
13577
12527
|
durationMs: number;
|
|
13578
12528
|
} | undefined;
|
|
12529
|
+
taskIdentifier?: string | undefined;
|
|
13579
12530
|
};
|
|
13580
12531
|
version?: "v1" | "v2" | undefined;
|
|
13581
12532
|
}>;
|
|
@@ -13666,6 +12617,7 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
13666
12617
|
}, {
|
|
13667
12618
|
durationMs: number;
|
|
13668
12619
|
}>>;
|
|
12620
|
+
taskIdentifier: z.ZodOptional<z.ZodString>;
|
|
13669
12621
|
}, "strip", z.ZodTypeAny, {
|
|
13670
12622
|
id: string;
|
|
13671
12623
|
error: {
|
|
@@ -13695,6 +12647,7 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
13695
12647
|
usage?: {
|
|
13696
12648
|
durationMs: number;
|
|
13697
12649
|
} | undefined;
|
|
12650
|
+
taskIdentifier?: string | undefined;
|
|
13698
12651
|
}, {
|
|
13699
12652
|
id: string;
|
|
13700
12653
|
error: {
|
|
@@ -13724,6 +12677,7 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
13724
12677
|
usage?: {
|
|
13725
12678
|
durationMs: number;
|
|
13726
12679
|
} | undefined;
|
|
12680
|
+
taskIdentifier?: string | undefined;
|
|
13727
12681
|
}>;
|
|
13728
12682
|
}, "strip", z.ZodTypeAny, {
|
|
13729
12683
|
version: "v1";
|
|
@@ -13756,6 +12710,7 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
13756
12710
|
usage?: {
|
|
13757
12711
|
durationMs: number;
|
|
13758
12712
|
} | undefined;
|
|
12713
|
+
taskIdentifier?: string | undefined;
|
|
13759
12714
|
};
|
|
13760
12715
|
}, {
|
|
13761
12716
|
completion: {
|
|
@@ -13787,6 +12742,7 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
13787
12742
|
usage?: {
|
|
13788
12743
|
durationMs: number;
|
|
13789
12744
|
} | undefined;
|
|
12745
|
+
taskIdentifier?: string | undefined;
|
|
13790
12746
|
};
|
|
13791
12747
|
version?: "v1" | undefined;
|
|
13792
12748
|
}>;
|
|
@@ -14608,6 +13564,7 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
14608
13564
|
}, {
|
|
14609
13565
|
durationMs: number;
|
|
14610
13566
|
}>>;
|
|
13567
|
+
taskIdentifier: z.ZodOptional<z.ZodString>;
|
|
14611
13568
|
}, "strip", z.ZodTypeAny, {
|
|
14612
13569
|
id: string;
|
|
14613
13570
|
ok: true;
|
|
@@ -14616,6 +13573,7 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
14616
13573
|
usage?: {
|
|
14617
13574
|
durationMs: number;
|
|
14618
13575
|
} | undefined;
|
|
13576
|
+
taskIdentifier?: string | undefined;
|
|
14619
13577
|
}, {
|
|
14620
13578
|
id: string;
|
|
14621
13579
|
ok: true;
|
|
@@ -14624,6 +13582,7 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
14624
13582
|
usage?: {
|
|
14625
13583
|
durationMs: number;
|
|
14626
13584
|
} | undefined;
|
|
13585
|
+
taskIdentifier?: string | undefined;
|
|
14627
13586
|
}>, z.ZodObject<{
|
|
14628
13587
|
ok: z.ZodLiteral<false>;
|
|
14629
13588
|
id: z.ZodString;
|
|
@@ -14697,6 +13656,7 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
14697
13656
|
}, {
|
|
14698
13657
|
durationMs: number;
|
|
14699
13658
|
}>>;
|
|
13659
|
+
taskIdentifier: z.ZodOptional<z.ZodString>;
|
|
14700
13660
|
}, "strip", z.ZodTypeAny, {
|
|
14701
13661
|
id: string;
|
|
14702
13662
|
error: {
|
|
@@ -14726,6 +13686,7 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
14726
13686
|
usage?: {
|
|
14727
13687
|
durationMs: number;
|
|
14728
13688
|
} | undefined;
|
|
13689
|
+
taskIdentifier?: string | undefined;
|
|
14729
13690
|
}, {
|
|
14730
13691
|
id: string;
|
|
14731
13692
|
error: {
|
|
@@ -14755,6 +13716,7 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
14755
13716
|
usage?: {
|
|
14756
13717
|
durationMs: number;
|
|
14757
13718
|
} | undefined;
|
|
13719
|
+
taskIdentifier?: string | undefined;
|
|
14758
13720
|
}>]>, "many">;
|
|
14759
13721
|
executions: z.ZodArray<z.ZodObject<{
|
|
14760
13722
|
task: z.ZodObject<{
|
|
@@ -15074,6 +14036,7 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
15074
14036
|
usage?: {
|
|
15075
14037
|
durationMs: number;
|
|
15076
14038
|
} | undefined;
|
|
14039
|
+
taskIdentifier?: string | undefined;
|
|
15077
14040
|
} | {
|
|
15078
14041
|
id: string;
|
|
15079
14042
|
ok: true;
|
|
@@ -15082,6 +14045,7 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
15082
14045
|
usage?: {
|
|
15083
14046
|
durationMs: number;
|
|
15084
14047
|
} | undefined;
|
|
14048
|
+
taskIdentifier?: string | undefined;
|
|
15085
14049
|
})[];
|
|
15086
14050
|
executions: {
|
|
15087
14051
|
run: {
|
|
@@ -15176,6 +14140,7 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
15176
14140
|
usage?: {
|
|
15177
14141
|
durationMs: number;
|
|
15178
14142
|
} | undefined;
|
|
14143
|
+
taskIdentifier?: string | undefined;
|
|
15179
14144
|
} | {
|
|
15180
14145
|
id: string;
|
|
15181
14146
|
ok: true;
|
|
@@ -15184,6 +14149,7 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
15184
14149
|
usage?: {
|
|
15185
14150
|
durationMs: number;
|
|
15186
14151
|
} | undefined;
|
|
14152
|
+
taskIdentifier?: string | undefined;
|
|
15187
14153
|
})[];
|
|
15188
14154
|
executions: {
|
|
15189
14155
|
run: {
|