@trigger.dev/core 0.0.0-prerelease-20250116155306 → 0.0.0-prerelease-20250116170357
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 +8 -8
- package/dist/commonjs/v3/errors.d.ts +1 -0
- package/dist/commonjs/v3/errors.js +6 -2
- package/dist/commonjs/v3/errors.js.map +1 -1
- package/dist/commonjs/v3/runtime/preventMultipleWaits.js +31 -0
- package/dist/commonjs/v3/runtime/preventMultipleWaits.js.map +1 -0
- package/dist/commonjs/v3/schemas/api.d.ts +38 -38
- package/dist/commonjs/v3/schemas/messages.d.ts +460 -460
- package/dist/commonjs/v3/workers/taskExecutor.js +5 -4
- package/dist/commonjs/v3/workers/taskExecutor.js.map +1 -1
- package/dist/commonjs/version.js +1 -1
- package/dist/esm/v3/apiClient/index.d.ts +70 -70
- package/dist/esm/v3/errors.d.ts +1 -0
- package/dist/esm/v3/errors.js +5 -2
- package/dist/esm/v3/errors.js.map +1 -1
- package/dist/esm/v3/runtime/preventMultipleWaits.js +3 -0
- package/dist/esm/v3/runtime/preventMultipleWaits.js.map +1 -1
- package/dist/esm/v3/schemas/api.d.ts +354 -354
- package/dist/esm/v3/schemas/build.d.ts +104 -104
- package/dist/esm/v3/schemas/fetch.d.ts +10 -10
- package/dist/esm/v3/schemas/messages.d.ts +3696 -3696
- package/dist/esm/v3/schemas/resources.d.ts +48 -48
- package/dist/esm/v3/schemas/schemas.d.ts +295 -295
- package/dist/esm/v3/workers/taskExecutor.js +6 -5
- package/dist/esm/v3/workers/taskExecutor.js.map +1 -1
- package/dist/esm/version.js +1 -1
- package/package.json +1 -1
|
@@ -686,9 +686,8 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
686
686
|
}>>;
|
|
687
687
|
}, "strip", z.ZodTypeAny, {
|
|
688
688
|
id: string;
|
|
689
|
-
outputType: string;
|
|
690
689
|
ok: true;
|
|
691
|
-
|
|
690
|
+
outputType: string;
|
|
692
691
|
metadata?: {
|
|
693
692
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
694
693
|
operations?: ({
|
|
@@ -761,15 +760,15 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
761
760
|
key: string;
|
|
762
761
|
})[] | undefined;
|
|
763
762
|
} | undefined;
|
|
764
|
-
|
|
763
|
+
output?: string | undefined;
|
|
765
764
|
usage?: {
|
|
766
765
|
durationMs: number;
|
|
767
766
|
} | undefined;
|
|
767
|
+
taskIdentifier?: string | undefined;
|
|
768
768
|
}, {
|
|
769
769
|
id: string;
|
|
770
|
-
outputType: string;
|
|
771
770
|
ok: true;
|
|
772
|
-
|
|
771
|
+
outputType: string;
|
|
773
772
|
metadata?: {
|
|
774
773
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
775
774
|
operations?: ({
|
|
@@ -842,10 +841,11 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
842
841
|
key: string;
|
|
843
842
|
})[] | undefined;
|
|
844
843
|
} | undefined;
|
|
845
|
-
|
|
844
|
+
output?: string | undefined;
|
|
846
845
|
usage?: {
|
|
847
846
|
durationMs: number;
|
|
848
847
|
} | undefined;
|
|
848
|
+
taskIdentifier?: string | undefined;
|
|
849
849
|
}>, z.ZodObject<{
|
|
850
850
|
ok: z.ZodLiteral<false>;
|
|
851
851
|
id: z.ZodString;
|
|
@@ -903,12 +903,12 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
903
903
|
delay: z.ZodNumber;
|
|
904
904
|
error: z.ZodOptional<z.ZodUnknown>;
|
|
905
905
|
}, "strip", z.ZodTypeAny, {
|
|
906
|
-
delay: number;
|
|
907
906
|
timestamp: number;
|
|
907
|
+
delay: number;
|
|
908
908
|
error?: unknown;
|
|
909
909
|
}, {
|
|
910
|
-
delay: number;
|
|
911
910
|
timestamp: number;
|
|
911
|
+
delay: number;
|
|
912
912
|
error?: unknown;
|
|
913
913
|
}>>;
|
|
914
914
|
skippedRetrying: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1268,6 +1268,7 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
1268
1268
|
}>>;
|
|
1269
1269
|
}, "strip", z.ZodTypeAny, {
|
|
1270
1270
|
id: string;
|
|
1271
|
+
ok: false;
|
|
1271
1272
|
error: {
|
|
1272
1273
|
type: "INTERNAL_ERROR";
|
|
1273
1274
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -1285,10 +1286,9 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
1285
1286
|
type: "STRING_ERROR";
|
|
1286
1287
|
raw: string;
|
|
1287
1288
|
};
|
|
1288
|
-
ok: false;
|
|
1289
1289
|
retry?: {
|
|
1290
|
-
delay: number;
|
|
1291
1290
|
timestamp: number;
|
|
1291
|
+
delay: number;
|
|
1292
1292
|
error?: unknown;
|
|
1293
1293
|
} | undefined;
|
|
1294
1294
|
metadata?: {
|
|
@@ -1363,13 +1363,14 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
1363
1363
|
key: string;
|
|
1364
1364
|
})[] | undefined;
|
|
1365
1365
|
} | undefined;
|
|
1366
|
-
taskIdentifier?: string | undefined;
|
|
1367
1366
|
usage?: {
|
|
1368
1367
|
durationMs: number;
|
|
1369
1368
|
} | undefined;
|
|
1369
|
+
taskIdentifier?: string | undefined;
|
|
1370
1370
|
skippedRetrying?: boolean | undefined;
|
|
1371
1371
|
}, {
|
|
1372
1372
|
id: string;
|
|
1373
|
+
ok: false;
|
|
1373
1374
|
error: {
|
|
1374
1375
|
type: "INTERNAL_ERROR";
|
|
1375
1376
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -1387,10 +1388,9 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
1387
1388
|
type: "STRING_ERROR";
|
|
1388
1389
|
raw: string;
|
|
1389
1390
|
};
|
|
1390
|
-
ok: false;
|
|
1391
1391
|
retry?: {
|
|
1392
|
-
delay: number;
|
|
1393
1392
|
timestamp: number;
|
|
1393
|
+
delay: number;
|
|
1394
1394
|
error?: unknown;
|
|
1395
1395
|
} | undefined;
|
|
1396
1396
|
metadata?: {
|
|
@@ -1465,10 +1465,10 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
1465
1465
|
key: string;
|
|
1466
1466
|
})[] | undefined;
|
|
1467
1467
|
} | undefined;
|
|
1468
|
-
taskIdentifier?: string | undefined;
|
|
1469
1468
|
usage?: {
|
|
1470
1469
|
durationMs: number;
|
|
1471
1470
|
} | undefined;
|
|
1471
|
+
taskIdentifier?: string | undefined;
|
|
1472
1472
|
skippedRetrying?: boolean | undefined;
|
|
1473
1473
|
}>]>;
|
|
1474
1474
|
execution: z.ZodObject<{
|
|
@@ -1824,9 +1824,8 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
1824
1824
|
};
|
|
1825
1825
|
completion: {
|
|
1826
1826
|
id: string;
|
|
1827
|
-
outputType: string;
|
|
1828
1827
|
ok: true;
|
|
1829
|
-
|
|
1828
|
+
outputType: string;
|
|
1830
1829
|
metadata?: {
|
|
1831
1830
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
1832
1831
|
operations?: ({
|
|
@@ -1899,12 +1898,14 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
1899
1898
|
key: string;
|
|
1900
1899
|
})[] | undefined;
|
|
1901
1900
|
} | undefined;
|
|
1902
|
-
|
|
1901
|
+
output?: string | undefined;
|
|
1903
1902
|
usage?: {
|
|
1904
1903
|
durationMs: number;
|
|
1905
1904
|
} | undefined;
|
|
1905
|
+
taskIdentifier?: string | undefined;
|
|
1906
1906
|
} | {
|
|
1907
1907
|
id: string;
|
|
1908
|
+
ok: false;
|
|
1908
1909
|
error: {
|
|
1909
1910
|
type: "INTERNAL_ERROR";
|
|
1910
1911
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -1922,10 +1923,9 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
1922
1923
|
type: "STRING_ERROR";
|
|
1923
1924
|
raw: string;
|
|
1924
1925
|
};
|
|
1925
|
-
ok: false;
|
|
1926
1926
|
retry?: {
|
|
1927
|
-
delay: number;
|
|
1928
1927
|
timestamp: number;
|
|
1928
|
+
delay: number;
|
|
1929
1929
|
error?: unknown;
|
|
1930
1930
|
} | undefined;
|
|
1931
1931
|
metadata?: {
|
|
@@ -2000,10 +2000,10 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
2000
2000
|
key: string;
|
|
2001
2001
|
})[] | undefined;
|
|
2002
2002
|
} | undefined;
|
|
2003
|
-
taskIdentifier?: string | undefined;
|
|
2004
2003
|
usage?: {
|
|
2005
2004
|
durationMs: number;
|
|
2006
2005
|
} | undefined;
|
|
2006
|
+
taskIdentifier?: string | undefined;
|
|
2007
2007
|
skippedRetrying?: boolean | undefined;
|
|
2008
2008
|
};
|
|
2009
2009
|
}, {
|
|
@@ -2072,9 +2072,8 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
2072
2072
|
};
|
|
2073
2073
|
completion: {
|
|
2074
2074
|
id: string;
|
|
2075
|
-
outputType: string;
|
|
2076
2075
|
ok: true;
|
|
2077
|
-
|
|
2076
|
+
outputType: string;
|
|
2078
2077
|
metadata?: {
|
|
2079
2078
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
2080
2079
|
operations?: ({
|
|
@@ -2147,12 +2146,14 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
2147
2146
|
key: string;
|
|
2148
2147
|
})[] | undefined;
|
|
2149
2148
|
} | undefined;
|
|
2150
|
-
|
|
2149
|
+
output?: string | undefined;
|
|
2151
2150
|
usage?: {
|
|
2152
2151
|
durationMs: number;
|
|
2153
2152
|
} | undefined;
|
|
2153
|
+
taskIdentifier?: string | undefined;
|
|
2154
2154
|
} | {
|
|
2155
2155
|
id: string;
|
|
2156
|
+
ok: false;
|
|
2156
2157
|
error: {
|
|
2157
2158
|
type: "INTERNAL_ERROR";
|
|
2158
2159
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -2170,10 +2171,9 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
2170
2171
|
type: "STRING_ERROR";
|
|
2171
2172
|
raw: string;
|
|
2172
2173
|
};
|
|
2173
|
-
ok: false;
|
|
2174
2174
|
retry?: {
|
|
2175
|
-
delay: number;
|
|
2176
2175
|
timestamp: number;
|
|
2176
|
+
delay: number;
|
|
2177
2177
|
error?: unknown;
|
|
2178
2178
|
} | undefined;
|
|
2179
2179
|
metadata?: {
|
|
@@ -2248,10 +2248,10 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
2248
2248
|
key: string;
|
|
2249
2249
|
})[] | undefined;
|
|
2250
2250
|
} | undefined;
|
|
2251
|
-
taskIdentifier?: string | undefined;
|
|
2252
2251
|
usage?: {
|
|
2253
2252
|
durationMs: number;
|
|
2254
2253
|
} | undefined;
|
|
2254
|
+
taskIdentifier?: string | undefined;
|
|
2255
2255
|
skippedRetrying?: boolean | undefined;
|
|
2256
2256
|
};
|
|
2257
2257
|
version?: "v1" | undefined;
|
|
@@ -2315,12 +2315,12 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
2315
2315
|
delay: z.ZodNumber;
|
|
2316
2316
|
error: z.ZodOptional<z.ZodUnknown>;
|
|
2317
2317
|
}, "strip", z.ZodTypeAny, {
|
|
2318
|
-
delay: number;
|
|
2319
2318
|
timestamp: number;
|
|
2319
|
+
delay: number;
|
|
2320
2320
|
error?: unknown;
|
|
2321
2321
|
}, {
|
|
2322
|
-
delay: number;
|
|
2323
2322
|
timestamp: number;
|
|
2323
|
+
delay: number;
|
|
2324
2324
|
error?: unknown;
|
|
2325
2325
|
}>>;
|
|
2326
2326
|
skippedRetrying: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2680,6 +2680,7 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
2680
2680
|
}>>;
|
|
2681
2681
|
}, "strip", z.ZodTypeAny, {
|
|
2682
2682
|
id: string;
|
|
2683
|
+
ok: false;
|
|
2683
2684
|
error: {
|
|
2684
2685
|
type: "INTERNAL_ERROR";
|
|
2685
2686
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -2697,10 +2698,9 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
2697
2698
|
type: "STRING_ERROR";
|
|
2698
2699
|
raw: string;
|
|
2699
2700
|
};
|
|
2700
|
-
ok: false;
|
|
2701
2701
|
retry?: {
|
|
2702
|
-
delay: number;
|
|
2703
2702
|
timestamp: number;
|
|
2703
|
+
delay: number;
|
|
2704
2704
|
error?: unknown;
|
|
2705
2705
|
} | undefined;
|
|
2706
2706
|
metadata?: {
|
|
@@ -2775,13 +2775,14 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
2775
2775
|
key: string;
|
|
2776
2776
|
})[] | undefined;
|
|
2777
2777
|
} | undefined;
|
|
2778
|
-
taskIdentifier?: string | undefined;
|
|
2779
2778
|
usage?: {
|
|
2780
2779
|
durationMs: number;
|
|
2781
2780
|
} | undefined;
|
|
2781
|
+
taskIdentifier?: string | undefined;
|
|
2782
2782
|
skippedRetrying?: boolean | undefined;
|
|
2783
2783
|
}, {
|
|
2784
2784
|
id: string;
|
|
2785
|
+
ok: false;
|
|
2785
2786
|
error: {
|
|
2786
2787
|
type: "INTERNAL_ERROR";
|
|
2787
2788
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -2799,10 +2800,9 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
2799
2800
|
type: "STRING_ERROR";
|
|
2800
2801
|
raw: string;
|
|
2801
2802
|
};
|
|
2802
|
-
ok: false;
|
|
2803
2803
|
retry?: {
|
|
2804
|
-
delay: number;
|
|
2805
2804
|
timestamp: number;
|
|
2805
|
+
delay: number;
|
|
2806
2806
|
error?: unknown;
|
|
2807
2807
|
} | undefined;
|
|
2808
2808
|
metadata?: {
|
|
@@ -2877,10 +2877,10 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
2877
2877
|
key: string;
|
|
2878
2878
|
})[] | undefined;
|
|
2879
2879
|
} | undefined;
|
|
2880
|
-
taskIdentifier?: string | undefined;
|
|
2881
2880
|
usage?: {
|
|
2882
2881
|
durationMs: number;
|
|
2883
2882
|
} | undefined;
|
|
2883
|
+
taskIdentifier?: string | undefined;
|
|
2884
2884
|
skippedRetrying?: boolean | undefined;
|
|
2885
2885
|
}>;
|
|
2886
2886
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2888,6 +2888,7 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
2888
2888
|
version: "v1";
|
|
2889
2889
|
completion: {
|
|
2890
2890
|
id: string;
|
|
2891
|
+
ok: false;
|
|
2891
2892
|
error: {
|
|
2892
2893
|
type: "INTERNAL_ERROR";
|
|
2893
2894
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -2905,10 +2906,9 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
2905
2906
|
type: "STRING_ERROR";
|
|
2906
2907
|
raw: string;
|
|
2907
2908
|
};
|
|
2908
|
-
ok: false;
|
|
2909
2909
|
retry?: {
|
|
2910
|
-
delay: number;
|
|
2911
2910
|
timestamp: number;
|
|
2911
|
+
delay: number;
|
|
2912
2912
|
error?: unknown;
|
|
2913
2913
|
} | undefined;
|
|
2914
2914
|
metadata?: {
|
|
@@ -2983,16 +2983,17 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
2983
2983
|
key: string;
|
|
2984
2984
|
})[] | undefined;
|
|
2985
2985
|
} | undefined;
|
|
2986
|
-
taskIdentifier?: string | undefined;
|
|
2987
2986
|
usage?: {
|
|
2988
2987
|
durationMs: number;
|
|
2989
2988
|
} | undefined;
|
|
2989
|
+
taskIdentifier?: string | undefined;
|
|
2990
2990
|
skippedRetrying?: boolean | undefined;
|
|
2991
2991
|
};
|
|
2992
2992
|
}, {
|
|
2993
2993
|
type: "TASK_RUN_FAILED_TO_RUN";
|
|
2994
2994
|
completion: {
|
|
2995
2995
|
id: string;
|
|
2996
|
+
ok: false;
|
|
2996
2997
|
error: {
|
|
2997
2998
|
type: "INTERNAL_ERROR";
|
|
2998
2999
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -3010,10 +3011,9 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
3010
3011
|
type: "STRING_ERROR";
|
|
3011
3012
|
raw: string;
|
|
3012
3013
|
};
|
|
3013
|
-
ok: false;
|
|
3014
3014
|
retry?: {
|
|
3015
|
-
delay: number;
|
|
3016
3015
|
timestamp: number;
|
|
3016
|
+
delay: number;
|
|
3017
3017
|
error?: unknown;
|
|
3018
3018
|
} | undefined;
|
|
3019
3019
|
metadata?: {
|
|
@@ -3088,10 +3088,10 @@ export declare const BackgroundWorkerClientMessages: z.ZodDiscriminatedUnion<"ty
|
|
|
3088
3088
|
key: string;
|
|
3089
3089
|
})[] | undefined;
|
|
3090
3090
|
} | undefined;
|
|
3091
|
-
taskIdentifier?: string | undefined;
|
|
3092
3091
|
usage?: {
|
|
3093
3092
|
durationMs: number;
|
|
3094
3093
|
} | undefined;
|
|
3094
|
+
taskIdentifier?: string | undefined;
|
|
3095
3095
|
skippedRetrying?: boolean | undefined;
|
|
3096
3096
|
};
|
|
3097
3097
|
version?: "v1" | undefined;
|
|
@@ -3526,9 +3526,8 @@ export declare const clientWebsocketMessages: {
|
|
|
3526
3526
|
}>>;
|
|
3527
3527
|
}, "strip", z.ZodTypeAny, {
|
|
3528
3528
|
id: string;
|
|
3529
|
-
outputType: string;
|
|
3530
3529
|
ok: true;
|
|
3531
|
-
|
|
3530
|
+
outputType: string;
|
|
3532
3531
|
metadata?: {
|
|
3533
3532
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
3534
3533
|
operations?: ({
|
|
@@ -3601,15 +3600,15 @@ export declare const clientWebsocketMessages: {
|
|
|
3601
3600
|
key: string;
|
|
3602
3601
|
})[] | undefined;
|
|
3603
3602
|
} | undefined;
|
|
3604
|
-
|
|
3603
|
+
output?: string | undefined;
|
|
3605
3604
|
usage?: {
|
|
3606
3605
|
durationMs: number;
|
|
3607
3606
|
} | undefined;
|
|
3607
|
+
taskIdentifier?: string | undefined;
|
|
3608
3608
|
}, {
|
|
3609
3609
|
id: string;
|
|
3610
|
-
outputType: string;
|
|
3611
3610
|
ok: true;
|
|
3612
|
-
|
|
3611
|
+
outputType: string;
|
|
3613
3612
|
metadata?: {
|
|
3614
3613
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
3615
3614
|
operations?: ({
|
|
@@ -3682,10 +3681,11 @@ export declare const clientWebsocketMessages: {
|
|
|
3682
3681
|
key: string;
|
|
3683
3682
|
})[] | undefined;
|
|
3684
3683
|
} | undefined;
|
|
3685
|
-
|
|
3684
|
+
output?: string | undefined;
|
|
3686
3685
|
usage?: {
|
|
3687
3686
|
durationMs: number;
|
|
3688
3687
|
} | undefined;
|
|
3688
|
+
taskIdentifier?: string | undefined;
|
|
3689
3689
|
}>, z.ZodObject<{
|
|
3690
3690
|
ok: z.ZodLiteral<false>;
|
|
3691
3691
|
id: z.ZodString;
|
|
@@ -3743,12 +3743,12 @@ export declare const clientWebsocketMessages: {
|
|
|
3743
3743
|
delay: z.ZodNumber;
|
|
3744
3744
|
error: z.ZodOptional<z.ZodUnknown>;
|
|
3745
3745
|
}, "strip", z.ZodTypeAny, {
|
|
3746
|
-
delay: number;
|
|
3747
3746
|
timestamp: number;
|
|
3747
|
+
delay: number;
|
|
3748
3748
|
error?: unknown;
|
|
3749
3749
|
}, {
|
|
3750
|
-
delay: number;
|
|
3751
3750
|
timestamp: number;
|
|
3751
|
+
delay: number;
|
|
3752
3752
|
error?: unknown;
|
|
3753
3753
|
}>>;
|
|
3754
3754
|
skippedRetrying: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4108,6 +4108,7 @@ export declare const clientWebsocketMessages: {
|
|
|
4108
4108
|
}>>;
|
|
4109
4109
|
}, "strip", z.ZodTypeAny, {
|
|
4110
4110
|
id: string;
|
|
4111
|
+
ok: false;
|
|
4111
4112
|
error: {
|
|
4112
4113
|
type: "INTERNAL_ERROR";
|
|
4113
4114
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -4125,10 +4126,9 @@ export declare const clientWebsocketMessages: {
|
|
|
4125
4126
|
type: "STRING_ERROR";
|
|
4126
4127
|
raw: string;
|
|
4127
4128
|
};
|
|
4128
|
-
ok: false;
|
|
4129
4129
|
retry?: {
|
|
4130
|
-
delay: number;
|
|
4131
4130
|
timestamp: number;
|
|
4131
|
+
delay: number;
|
|
4132
4132
|
error?: unknown;
|
|
4133
4133
|
} | undefined;
|
|
4134
4134
|
metadata?: {
|
|
@@ -4203,13 +4203,14 @@ export declare const clientWebsocketMessages: {
|
|
|
4203
4203
|
key: string;
|
|
4204
4204
|
})[] | undefined;
|
|
4205
4205
|
} | undefined;
|
|
4206
|
-
taskIdentifier?: string | undefined;
|
|
4207
4206
|
usage?: {
|
|
4208
4207
|
durationMs: number;
|
|
4209
4208
|
} | undefined;
|
|
4209
|
+
taskIdentifier?: string | undefined;
|
|
4210
4210
|
skippedRetrying?: boolean | undefined;
|
|
4211
4211
|
}, {
|
|
4212
4212
|
id: string;
|
|
4213
|
+
ok: false;
|
|
4213
4214
|
error: {
|
|
4214
4215
|
type: "INTERNAL_ERROR";
|
|
4215
4216
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -4227,10 +4228,9 @@ export declare const clientWebsocketMessages: {
|
|
|
4227
4228
|
type: "STRING_ERROR";
|
|
4228
4229
|
raw: string;
|
|
4229
4230
|
};
|
|
4230
|
-
ok: false;
|
|
4231
4231
|
retry?: {
|
|
4232
|
-
delay: number;
|
|
4233
4232
|
timestamp: number;
|
|
4233
|
+
delay: number;
|
|
4234
4234
|
error?: unknown;
|
|
4235
4235
|
} | undefined;
|
|
4236
4236
|
metadata?: {
|
|
@@ -4305,10 +4305,10 @@ export declare const clientWebsocketMessages: {
|
|
|
4305
4305
|
key: string;
|
|
4306
4306
|
})[] | undefined;
|
|
4307
4307
|
} | undefined;
|
|
4308
|
-
taskIdentifier?: string | undefined;
|
|
4309
4308
|
usage?: {
|
|
4310
4309
|
durationMs: number;
|
|
4311
4310
|
} | undefined;
|
|
4311
|
+
taskIdentifier?: string | undefined;
|
|
4312
4312
|
skippedRetrying?: boolean | undefined;
|
|
4313
4313
|
}>]>;
|
|
4314
4314
|
execution: z.ZodObject<{
|
|
@@ -4664,9 +4664,8 @@ export declare const clientWebsocketMessages: {
|
|
|
4664
4664
|
};
|
|
4665
4665
|
completion: {
|
|
4666
4666
|
id: string;
|
|
4667
|
-
outputType: string;
|
|
4668
4667
|
ok: true;
|
|
4669
|
-
|
|
4668
|
+
outputType: string;
|
|
4670
4669
|
metadata?: {
|
|
4671
4670
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
4672
4671
|
operations?: ({
|
|
@@ -4739,12 +4738,14 @@ export declare const clientWebsocketMessages: {
|
|
|
4739
4738
|
key: string;
|
|
4740
4739
|
})[] | undefined;
|
|
4741
4740
|
} | undefined;
|
|
4742
|
-
|
|
4741
|
+
output?: string | undefined;
|
|
4743
4742
|
usage?: {
|
|
4744
4743
|
durationMs: number;
|
|
4745
4744
|
} | undefined;
|
|
4745
|
+
taskIdentifier?: string | undefined;
|
|
4746
4746
|
} | {
|
|
4747
4747
|
id: string;
|
|
4748
|
+
ok: false;
|
|
4748
4749
|
error: {
|
|
4749
4750
|
type: "INTERNAL_ERROR";
|
|
4750
4751
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -4762,10 +4763,9 @@ export declare const clientWebsocketMessages: {
|
|
|
4762
4763
|
type: "STRING_ERROR";
|
|
4763
4764
|
raw: string;
|
|
4764
4765
|
};
|
|
4765
|
-
ok: false;
|
|
4766
4766
|
retry?: {
|
|
4767
|
-
delay: number;
|
|
4768
4767
|
timestamp: number;
|
|
4768
|
+
delay: number;
|
|
4769
4769
|
error?: unknown;
|
|
4770
4770
|
} | undefined;
|
|
4771
4771
|
metadata?: {
|
|
@@ -4840,10 +4840,10 @@ export declare const clientWebsocketMessages: {
|
|
|
4840
4840
|
key: string;
|
|
4841
4841
|
})[] | undefined;
|
|
4842
4842
|
} | undefined;
|
|
4843
|
-
taskIdentifier?: string | undefined;
|
|
4844
4843
|
usage?: {
|
|
4845
4844
|
durationMs: number;
|
|
4846
4845
|
} | undefined;
|
|
4846
|
+
taskIdentifier?: string | undefined;
|
|
4847
4847
|
skippedRetrying?: boolean | undefined;
|
|
4848
4848
|
};
|
|
4849
4849
|
}, {
|
|
@@ -4912,9 +4912,8 @@ export declare const clientWebsocketMessages: {
|
|
|
4912
4912
|
};
|
|
4913
4913
|
completion: {
|
|
4914
4914
|
id: string;
|
|
4915
|
-
outputType: string;
|
|
4916
4915
|
ok: true;
|
|
4917
|
-
|
|
4916
|
+
outputType: string;
|
|
4918
4917
|
metadata?: {
|
|
4919
4918
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
4920
4919
|
operations?: ({
|
|
@@ -4987,12 +4986,14 @@ export declare const clientWebsocketMessages: {
|
|
|
4987
4986
|
key: string;
|
|
4988
4987
|
})[] | undefined;
|
|
4989
4988
|
} | undefined;
|
|
4990
|
-
|
|
4989
|
+
output?: string | undefined;
|
|
4991
4990
|
usage?: {
|
|
4992
4991
|
durationMs: number;
|
|
4993
4992
|
} | undefined;
|
|
4993
|
+
taskIdentifier?: string | undefined;
|
|
4994
4994
|
} | {
|
|
4995
4995
|
id: string;
|
|
4996
|
+
ok: false;
|
|
4996
4997
|
error: {
|
|
4997
4998
|
type: "INTERNAL_ERROR";
|
|
4998
4999
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -5010,10 +5011,9 @@ export declare const clientWebsocketMessages: {
|
|
|
5010
5011
|
type: "STRING_ERROR";
|
|
5011
5012
|
raw: string;
|
|
5012
5013
|
};
|
|
5013
|
-
ok: false;
|
|
5014
5014
|
retry?: {
|
|
5015
|
-
delay: number;
|
|
5016
5015
|
timestamp: number;
|
|
5016
|
+
delay: number;
|
|
5017
5017
|
error?: unknown;
|
|
5018
5018
|
} | undefined;
|
|
5019
5019
|
metadata?: {
|
|
@@ -5088,10 +5088,10 @@ export declare const clientWebsocketMessages: {
|
|
|
5088
5088
|
key: string;
|
|
5089
5089
|
})[] | undefined;
|
|
5090
5090
|
} | undefined;
|
|
5091
|
-
taskIdentifier?: string | undefined;
|
|
5092
5091
|
usage?: {
|
|
5093
5092
|
durationMs: number;
|
|
5094
5093
|
} | undefined;
|
|
5094
|
+
taskIdentifier?: string | undefined;
|
|
5095
5095
|
skippedRetrying?: boolean | undefined;
|
|
5096
5096
|
};
|
|
5097
5097
|
version?: "v1" | undefined;
|
|
@@ -5155,12 +5155,12 @@ export declare const clientWebsocketMessages: {
|
|
|
5155
5155
|
delay: z.ZodNumber;
|
|
5156
5156
|
error: z.ZodOptional<z.ZodUnknown>;
|
|
5157
5157
|
}, "strip", z.ZodTypeAny, {
|
|
5158
|
-
delay: number;
|
|
5159
5158
|
timestamp: number;
|
|
5159
|
+
delay: number;
|
|
5160
5160
|
error?: unknown;
|
|
5161
5161
|
}, {
|
|
5162
|
-
delay: number;
|
|
5163
5162
|
timestamp: number;
|
|
5163
|
+
delay: number;
|
|
5164
5164
|
error?: unknown;
|
|
5165
5165
|
}>>;
|
|
5166
5166
|
skippedRetrying: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5520,6 +5520,7 @@ export declare const clientWebsocketMessages: {
|
|
|
5520
5520
|
}>>;
|
|
5521
5521
|
}, "strip", z.ZodTypeAny, {
|
|
5522
5522
|
id: string;
|
|
5523
|
+
ok: false;
|
|
5523
5524
|
error: {
|
|
5524
5525
|
type: "INTERNAL_ERROR";
|
|
5525
5526
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -5537,10 +5538,9 @@ export declare const clientWebsocketMessages: {
|
|
|
5537
5538
|
type: "STRING_ERROR";
|
|
5538
5539
|
raw: string;
|
|
5539
5540
|
};
|
|
5540
|
-
ok: false;
|
|
5541
5541
|
retry?: {
|
|
5542
|
-
delay: number;
|
|
5543
5542
|
timestamp: number;
|
|
5543
|
+
delay: number;
|
|
5544
5544
|
error?: unknown;
|
|
5545
5545
|
} | undefined;
|
|
5546
5546
|
metadata?: {
|
|
@@ -5615,13 +5615,14 @@ export declare const clientWebsocketMessages: {
|
|
|
5615
5615
|
key: string;
|
|
5616
5616
|
})[] | undefined;
|
|
5617
5617
|
} | undefined;
|
|
5618
|
-
taskIdentifier?: string | undefined;
|
|
5619
5618
|
usage?: {
|
|
5620
5619
|
durationMs: number;
|
|
5621
5620
|
} | undefined;
|
|
5621
|
+
taskIdentifier?: string | undefined;
|
|
5622
5622
|
skippedRetrying?: boolean | undefined;
|
|
5623
5623
|
}, {
|
|
5624
5624
|
id: string;
|
|
5625
|
+
ok: false;
|
|
5625
5626
|
error: {
|
|
5626
5627
|
type: "INTERNAL_ERROR";
|
|
5627
5628
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -5639,10 +5640,9 @@ export declare const clientWebsocketMessages: {
|
|
|
5639
5640
|
type: "STRING_ERROR";
|
|
5640
5641
|
raw: string;
|
|
5641
5642
|
};
|
|
5642
|
-
ok: false;
|
|
5643
5643
|
retry?: {
|
|
5644
|
-
delay: number;
|
|
5645
5644
|
timestamp: number;
|
|
5645
|
+
delay: number;
|
|
5646
5646
|
error?: unknown;
|
|
5647
5647
|
} | undefined;
|
|
5648
5648
|
metadata?: {
|
|
@@ -5717,10 +5717,10 @@ export declare const clientWebsocketMessages: {
|
|
|
5717
5717
|
key: string;
|
|
5718
5718
|
})[] | undefined;
|
|
5719
5719
|
} | undefined;
|
|
5720
|
-
taskIdentifier?: string | undefined;
|
|
5721
5720
|
usage?: {
|
|
5722
5721
|
durationMs: number;
|
|
5723
5722
|
} | undefined;
|
|
5723
|
+
taskIdentifier?: string | undefined;
|
|
5724
5724
|
skippedRetrying?: boolean | undefined;
|
|
5725
5725
|
}>;
|
|
5726
5726
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5728,6 +5728,7 @@ export declare const clientWebsocketMessages: {
|
|
|
5728
5728
|
version: "v1";
|
|
5729
5729
|
completion: {
|
|
5730
5730
|
id: string;
|
|
5731
|
+
ok: false;
|
|
5731
5732
|
error: {
|
|
5732
5733
|
type: "INTERNAL_ERROR";
|
|
5733
5734
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -5745,10 +5746,9 @@ export declare const clientWebsocketMessages: {
|
|
|
5745
5746
|
type: "STRING_ERROR";
|
|
5746
5747
|
raw: string;
|
|
5747
5748
|
};
|
|
5748
|
-
ok: false;
|
|
5749
5749
|
retry?: {
|
|
5750
|
-
delay: number;
|
|
5751
5750
|
timestamp: number;
|
|
5751
|
+
delay: number;
|
|
5752
5752
|
error?: unknown;
|
|
5753
5753
|
} | undefined;
|
|
5754
5754
|
metadata?: {
|
|
@@ -5823,16 +5823,17 @@ export declare const clientWebsocketMessages: {
|
|
|
5823
5823
|
key: string;
|
|
5824
5824
|
})[] | undefined;
|
|
5825
5825
|
} | undefined;
|
|
5826
|
-
taskIdentifier?: string | undefined;
|
|
5827
5826
|
usage?: {
|
|
5828
5827
|
durationMs: number;
|
|
5829
5828
|
} | undefined;
|
|
5829
|
+
taskIdentifier?: string | undefined;
|
|
5830
5830
|
skippedRetrying?: boolean | undefined;
|
|
5831
5831
|
};
|
|
5832
5832
|
}, {
|
|
5833
5833
|
type: "TASK_RUN_FAILED_TO_RUN";
|
|
5834
5834
|
completion: {
|
|
5835
5835
|
id: string;
|
|
5836
|
+
ok: false;
|
|
5836
5837
|
error: {
|
|
5837
5838
|
type: "INTERNAL_ERROR";
|
|
5838
5839
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -5850,10 +5851,9 @@ export declare const clientWebsocketMessages: {
|
|
|
5850
5851
|
type: "STRING_ERROR";
|
|
5851
5852
|
raw: string;
|
|
5852
5853
|
};
|
|
5853
|
-
ok: false;
|
|
5854
5854
|
retry?: {
|
|
5855
|
-
delay: number;
|
|
5856
5855
|
timestamp: number;
|
|
5856
|
+
delay: number;
|
|
5857
5857
|
error?: unknown;
|
|
5858
5858
|
} | undefined;
|
|
5859
5859
|
metadata?: {
|
|
@@ -5928,10 +5928,10 @@ export declare const clientWebsocketMessages: {
|
|
|
5928
5928
|
key: string;
|
|
5929
5929
|
})[] | undefined;
|
|
5930
5930
|
} | undefined;
|
|
5931
|
-
taskIdentifier?: string | undefined;
|
|
5932
5931
|
usage?: {
|
|
5933
5932
|
durationMs: number;
|
|
5934
5933
|
} | undefined;
|
|
5934
|
+
taskIdentifier?: string | undefined;
|
|
5935
5935
|
skippedRetrying?: boolean | undefined;
|
|
5936
5936
|
};
|
|
5937
5937
|
version?: "v1" | undefined;
|
|
@@ -6030,9 +6030,8 @@ export declare const clientWebsocketMessages: {
|
|
|
6030
6030
|
};
|
|
6031
6031
|
completion: {
|
|
6032
6032
|
id: string;
|
|
6033
|
-
outputType: string;
|
|
6034
6033
|
ok: true;
|
|
6035
|
-
|
|
6034
|
+
outputType: string;
|
|
6036
6035
|
metadata?: {
|
|
6037
6036
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
6038
6037
|
operations?: ({
|
|
@@ -6105,12 +6104,14 @@ export declare const clientWebsocketMessages: {
|
|
|
6105
6104
|
key: string;
|
|
6106
6105
|
})[] | undefined;
|
|
6107
6106
|
} | undefined;
|
|
6108
|
-
|
|
6107
|
+
output?: string | undefined;
|
|
6109
6108
|
usage?: {
|
|
6110
6109
|
durationMs: number;
|
|
6111
6110
|
} | undefined;
|
|
6111
|
+
taskIdentifier?: string | undefined;
|
|
6112
6112
|
} | {
|
|
6113
6113
|
id: string;
|
|
6114
|
+
ok: false;
|
|
6114
6115
|
error: {
|
|
6115
6116
|
type: "INTERNAL_ERROR";
|
|
6116
6117
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -6128,10 +6129,9 @@ export declare const clientWebsocketMessages: {
|
|
|
6128
6129
|
type: "STRING_ERROR";
|
|
6129
6130
|
raw: string;
|
|
6130
6131
|
};
|
|
6131
|
-
ok: false;
|
|
6132
6132
|
retry?: {
|
|
6133
|
-
delay: number;
|
|
6134
6133
|
timestamp: number;
|
|
6134
|
+
delay: number;
|
|
6135
6135
|
error?: unknown;
|
|
6136
6136
|
} | undefined;
|
|
6137
6137
|
metadata?: {
|
|
@@ -6206,10 +6206,10 @@ export declare const clientWebsocketMessages: {
|
|
|
6206
6206
|
key: string;
|
|
6207
6207
|
})[] | undefined;
|
|
6208
6208
|
} | undefined;
|
|
6209
|
-
taskIdentifier?: string | undefined;
|
|
6210
6209
|
usage?: {
|
|
6211
6210
|
durationMs: number;
|
|
6212
6211
|
} | undefined;
|
|
6212
|
+
taskIdentifier?: string | undefined;
|
|
6213
6213
|
skippedRetrying?: boolean | undefined;
|
|
6214
6214
|
};
|
|
6215
6215
|
} | {
|
|
@@ -6217,6 +6217,7 @@ export declare const clientWebsocketMessages: {
|
|
|
6217
6217
|
version: "v1";
|
|
6218
6218
|
completion: {
|
|
6219
6219
|
id: string;
|
|
6220
|
+
ok: false;
|
|
6220
6221
|
error: {
|
|
6221
6222
|
type: "INTERNAL_ERROR";
|
|
6222
6223
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -6234,10 +6235,9 @@ export declare const clientWebsocketMessages: {
|
|
|
6234
6235
|
type: "STRING_ERROR";
|
|
6235
6236
|
raw: string;
|
|
6236
6237
|
};
|
|
6237
|
-
ok: false;
|
|
6238
6238
|
retry?: {
|
|
6239
|
-
delay: number;
|
|
6240
6239
|
timestamp: number;
|
|
6240
|
+
delay: number;
|
|
6241
6241
|
error?: unknown;
|
|
6242
6242
|
} | undefined;
|
|
6243
6243
|
metadata?: {
|
|
@@ -6312,10 +6312,10 @@ export declare const clientWebsocketMessages: {
|
|
|
6312
6312
|
key: string;
|
|
6313
6313
|
})[] | undefined;
|
|
6314
6314
|
} | undefined;
|
|
6315
|
-
taskIdentifier?: string | undefined;
|
|
6316
6315
|
usage?: {
|
|
6317
6316
|
durationMs: number;
|
|
6318
6317
|
} | undefined;
|
|
6318
|
+
taskIdentifier?: string | undefined;
|
|
6319
6319
|
skippedRetrying?: boolean | undefined;
|
|
6320
6320
|
};
|
|
6321
6321
|
} | {
|
|
@@ -6395,9 +6395,8 @@ export declare const clientWebsocketMessages: {
|
|
|
6395
6395
|
};
|
|
6396
6396
|
completion: {
|
|
6397
6397
|
id: string;
|
|
6398
|
-
outputType: string;
|
|
6399
6398
|
ok: true;
|
|
6400
|
-
|
|
6399
|
+
outputType: string;
|
|
6401
6400
|
metadata?: {
|
|
6402
6401
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
6403
6402
|
operations?: ({
|
|
@@ -6470,12 +6469,14 @@ export declare const clientWebsocketMessages: {
|
|
|
6470
6469
|
key: string;
|
|
6471
6470
|
})[] | undefined;
|
|
6472
6471
|
} | undefined;
|
|
6473
|
-
|
|
6472
|
+
output?: string | undefined;
|
|
6474
6473
|
usage?: {
|
|
6475
6474
|
durationMs: number;
|
|
6476
6475
|
} | undefined;
|
|
6476
|
+
taskIdentifier?: string | undefined;
|
|
6477
6477
|
} | {
|
|
6478
6478
|
id: string;
|
|
6479
|
+
ok: false;
|
|
6479
6480
|
error: {
|
|
6480
6481
|
type: "INTERNAL_ERROR";
|
|
6481
6482
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -6493,10 +6494,9 @@ export declare const clientWebsocketMessages: {
|
|
|
6493
6494
|
type: "STRING_ERROR";
|
|
6494
6495
|
raw: string;
|
|
6495
6496
|
};
|
|
6496
|
-
ok: false;
|
|
6497
6497
|
retry?: {
|
|
6498
|
-
delay: number;
|
|
6499
6498
|
timestamp: number;
|
|
6499
|
+
delay: number;
|
|
6500
6500
|
error?: unknown;
|
|
6501
6501
|
} | undefined;
|
|
6502
6502
|
metadata?: {
|
|
@@ -6571,10 +6571,10 @@ export declare const clientWebsocketMessages: {
|
|
|
6571
6571
|
key: string;
|
|
6572
6572
|
})[] | undefined;
|
|
6573
6573
|
} | undefined;
|
|
6574
|
-
taskIdentifier?: string | undefined;
|
|
6575
6574
|
usage?: {
|
|
6576
6575
|
durationMs: number;
|
|
6577
6576
|
} | undefined;
|
|
6577
|
+
taskIdentifier?: string | undefined;
|
|
6578
6578
|
skippedRetrying?: boolean | undefined;
|
|
6579
6579
|
};
|
|
6580
6580
|
version?: "v1" | undefined;
|
|
@@ -6582,6 +6582,7 @@ export declare const clientWebsocketMessages: {
|
|
|
6582
6582
|
type: "TASK_RUN_FAILED_TO_RUN";
|
|
6583
6583
|
completion: {
|
|
6584
6584
|
id: string;
|
|
6585
|
+
ok: false;
|
|
6585
6586
|
error: {
|
|
6586
6587
|
type: "INTERNAL_ERROR";
|
|
6587
6588
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -6599,10 +6600,9 @@ export declare const clientWebsocketMessages: {
|
|
|
6599
6600
|
type: "STRING_ERROR";
|
|
6600
6601
|
raw: string;
|
|
6601
6602
|
};
|
|
6602
|
-
ok: false;
|
|
6603
6603
|
retry?: {
|
|
6604
|
-
delay: number;
|
|
6605
6604
|
timestamp: number;
|
|
6605
|
+
delay: number;
|
|
6606
6606
|
error?: unknown;
|
|
6607
6607
|
} | undefined;
|
|
6608
6608
|
metadata?: {
|
|
@@ -6677,10 +6677,10 @@ export declare const clientWebsocketMessages: {
|
|
|
6677
6677
|
key: string;
|
|
6678
6678
|
})[] | undefined;
|
|
6679
6679
|
} | undefined;
|
|
6680
|
-
taskIdentifier?: string | undefined;
|
|
6681
6680
|
usage?: {
|
|
6682
6681
|
durationMs: number;
|
|
6683
6682
|
} | undefined;
|
|
6683
|
+
taskIdentifier?: string | undefined;
|
|
6684
6684
|
skippedRetrying?: boolean | undefined;
|
|
6685
6685
|
};
|
|
6686
6686
|
version?: "v1" | undefined;
|
|
@@ -7773,9 +7773,8 @@ export declare const ExecutorToWorkerMessageCatalog: {
|
|
|
7773
7773
|
}>>;
|
|
7774
7774
|
}, "strip", z.ZodTypeAny, {
|
|
7775
7775
|
id: string;
|
|
7776
|
-
outputType: string;
|
|
7777
7776
|
ok: true;
|
|
7778
|
-
|
|
7777
|
+
outputType: string;
|
|
7779
7778
|
metadata?: {
|
|
7780
7779
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
7781
7780
|
operations?: ({
|
|
@@ -7848,15 +7847,15 @@ export declare const ExecutorToWorkerMessageCatalog: {
|
|
|
7848
7847
|
key: string;
|
|
7849
7848
|
})[] | undefined;
|
|
7850
7849
|
} | undefined;
|
|
7851
|
-
|
|
7850
|
+
output?: string | undefined;
|
|
7852
7851
|
usage?: {
|
|
7853
7852
|
durationMs: number;
|
|
7854
7853
|
} | undefined;
|
|
7854
|
+
taskIdentifier?: string | undefined;
|
|
7855
7855
|
}, {
|
|
7856
7856
|
id: string;
|
|
7857
|
-
outputType: string;
|
|
7858
7857
|
ok: true;
|
|
7859
|
-
|
|
7858
|
+
outputType: string;
|
|
7860
7859
|
metadata?: {
|
|
7861
7860
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
7862
7861
|
operations?: ({
|
|
@@ -7929,10 +7928,11 @@ export declare const ExecutorToWorkerMessageCatalog: {
|
|
|
7929
7928
|
key: string;
|
|
7930
7929
|
})[] | undefined;
|
|
7931
7930
|
} | undefined;
|
|
7932
|
-
|
|
7931
|
+
output?: string | undefined;
|
|
7933
7932
|
usage?: {
|
|
7934
7933
|
durationMs: number;
|
|
7935
7934
|
} | undefined;
|
|
7935
|
+
taskIdentifier?: string | undefined;
|
|
7936
7936
|
}>, z.ZodObject<{
|
|
7937
7937
|
ok: z.ZodLiteral<false>;
|
|
7938
7938
|
id: z.ZodString;
|
|
@@ -7990,12 +7990,12 @@ export declare const ExecutorToWorkerMessageCatalog: {
|
|
|
7990
7990
|
delay: z.ZodNumber;
|
|
7991
7991
|
error: z.ZodOptional<z.ZodUnknown>;
|
|
7992
7992
|
}, "strip", z.ZodTypeAny, {
|
|
7993
|
-
delay: number;
|
|
7994
7993
|
timestamp: number;
|
|
7994
|
+
delay: number;
|
|
7995
7995
|
error?: unknown;
|
|
7996
7996
|
}, {
|
|
7997
|
-
delay: number;
|
|
7998
7997
|
timestamp: number;
|
|
7998
|
+
delay: number;
|
|
7999
7999
|
error?: unknown;
|
|
8000
8000
|
}>>;
|
|
8001
8001
|
skippedRetrying: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -8355,6 +8355,7 @@ export declare const ExecutorToWorkerMessageCatalog: {
|
|
|
8355
8355
|
}>>;
|
|
8356
8356
|
}, "strip", z.ZodTypeAny, {
|
|
8357
8357
|
id: string;
|
|
8358
|
+
ok: false;
|
|
8358
8359
|
error: {
|
|
8359
8360
|
type: "INTERNAL_ERROR";
|
|
8360
8361
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -8372,10 +8373,9 @@ export declare const ExecutorToWorkerMessageCatalog: {
|
|
|
8372
8373
|
type: "STRING_ERROR";
|
|
8373
8374
|
raw: string;
|
|
8374
8375
|
};
|
|
8375
|
-
ok: false;
|
|
8376
8376
|
retry?: {
|
|
8377
|
-
delay: number;
|
|
8378
8377
|
timestamp: number;
|
|
8378
|
+
delay: number;
|
|
8379
8379
|
error?: unknown;
|
|
8380
8380
|
} | undefined;
|
|
8381
8381
|
metadata?: {
|
|
@@ -8450,13 +8450,14 @@ export declare const ExecutorToWorkerMessageCatalog: {
|
|
|
8450
8450
|
key: string;
|
|
8451
8451
|
})[] | undefined;
|
|
8452
8452
|
} | undefined;
|
|
8453
|
-
taskIdentifier?: string | undefined;
|
|
8454
8453
|
usage?: {
|
|
8455
8454
|
durationMs: number;
|
|
8456
8455
|
} | undefined;
|
|
8456
|
+
taskIdentifier?: string | undefined;
|
|
8457
8457
|
skippedRetrying?: boolean | undefined;
|
|
8458
8458
|
}, {
|
|
8459
8459
|
id: string;
|
|
8460
|
+
ok: false;
|
|
8460
8461
|
error: {
|
|
8461
8462
|
type: "INTERNAL_ERROR";
|
|
8462
8463
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -8474,10 +8475,9 @@ export declare const ExecutorToWorkerMessageCatalog: {
|
|
|
8474
8475
|
type: "STRING_ERROR";
|
|
8475
8476
|
raw: string;
|
|
8476
8477
|
};
|
|
8477
|
-
ok: false;
|
|
8478
8478
|
retry?: {
|
|
8479
|
-
delay: number;
|
|
8480
8479
|
timestamp: number;
|
|
8480
|
+
delay: number;
|
|
8481
8481
|
error?: unknown;
|
|
8482
8482
|
} | undefined;
|
|
8483
8483
|
metadata?: {
|
|
@@ -8552,81 +8552,18 @@ export declare const ExecutorToWorkerMessageCatalog: {
|
|
|
8552
8552
|
key: string;
|
|
8553
8553
|
})[] | undefined;
|
|
8554
8554
|
} | undefined;
|
|
8555
|
-
taskIdentifier?: string | undefined;
|
|
8556
8555
|
usage?: {
|
|
8557
8556
|
durationMs: number;
|
|
8558
8557
|
} | undefined;
|
|
8558
|
+
taskIdentifier?: string | undefined;
|
|
8559
8559
|
skippedRetrying?: boolean | undefined;
|
|
8560
8560
|
}>]>;
|
|
8561
8561
|
}, "strip", z.ZodTypeAny, {
|
|
8562
8562
|
version: "v1";
|
|
8563
|
-
execution: {
|
|
8564
|
-
queue: {
|
|
8565
|
-
id: string;
|
|
8566
|
-
name: string;
|
|
8567
|
-
};
|
|
8568
|
-
task: {
|
|
8569
|
-
id: string;
|
|
8570
|
-
exportName: string;
|
|
8571
|
-
filePath: string;
|
|
8572
|
-
};
|
|
8573
|
-
attempt: {
|
|
8574
|
-
number: number;
|
|
8575
|
-
id: string;
|
|
8576
|
-
status: string;
|
|
8577
|
-
startedAt: Date;
|
|
8578
|
-
backgroundWorkerId: string;
|
|
8579
|
-
backgroundWorkerTaskId: string;
|
|
8580
|
-
};
|
|
8581
|
-
run: {
|
|
8582
|
-
id: string;
|
|
8583
|
-
startedAt: Date;
|
|
8584
|
-
payload: string;
|
|
8585
|
-
payloadType: string;
|
|
8586
|
-
tags: string[];
|
|
8587
|
-
isTest: boolean;
|
|
8588
|
-
createdAt: Date;
|
|
8589
|
-
durationMs: number;
|
|
8590
|
-
costInCents: number;
|
|
8591
|
-
baseCostInCents: number;
|
|
8592
|
-
maxAttempts?: number | undefined;
|
|
8593
|
-
maxDuration?: number | undefined;
|
|
8594
|
-
version?: string | undefined;
|
|
8595
|
-
context?: any;
|
|
8596
|
-
idempotencyKey?: string | undefined;
|
|
8597
|
-
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
8598
|
-
};
|
|
8599
|
-
environment: {
|
|
8600
|
-
id: string;
|
|
8601
|
-
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
8602
|
-
slug: string;
|
|
8603
|
-
};
|
|
8604
|
-
organization: {
|
|
8605
|
-
id: string;
|
|
8606
|
-
name: string;
|
|
8607
|
-
slug: string;
|
|
8608
|
-
};
|
|
8609
|
-
project: {
|
|
8610
|
-
id: string;
|
|
8611
|
-
name: string;
|
|
8612
|
-
slug: string;
|
|
8613
|
-
ref: string;
|
|
8614
|
-
};
|
|
8615
|
-
machine?: {
|
|
8616
|
-
name: "micro" | "small-1x" | "small-2x" | "medium-1x" | "medium-2x" | "large-1x" | "large-2x";
|
|
8617
|
-
cpu: number;
|
|
8618
|
-
memory: number;
|
|
8619
|
-
centsPerMs: number;
|
|
8620
|
-
} | undefined;
|
|
8621
|
-
batch?: {
|
|
8622
|
-
id: string;
|
|
8623
|
-
} | undefined;
|
|
8624
|
-
};
|
|
8625
8563
|
result: {
|
|
8626
8564
|
id: string;
|
|
8627
|
-
outputType: string;
|
|
8628
8565
|
ok: true;
|
|
8629
|
-
|
|
8566
|
+
outputType: string;
|
|
8630
8567
|
metadata?: {
|
|
8631
8568
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
8632
8569
|
operations?: ({
|
|
@@ -8699,12 +8636,14 @@ export declare const ExecutorToWorkerMessageCatalog: {
|
|
|
8699
8636
|
key: string;
|
|
8700
8637
|
})[] | undefined;
|
|
8701
8638
|
} | undefined;
|
|
8702
|
-
|
|
8639
|
+
output?: string | undefined;
|
|
8703
8640
|
usage?: {
|
|
8704
8641
|
durationMs: number;
|
|
8705
8642
|
} | undefined;
|
|
8643
|
+
taskIdentifier?: string | undefined;
|
|
8706
8644
|
} | {
|
|
8707
8645
|
id: string;
|
|
8646
|
+
ok: false;
|
|
8708
8647
|
error: {
|
|
8709
8648
|
type: "INTERNAL_ERROR";
|
|
8710
8649
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -8722,10 +8661,9 @@ export declare const ExecutorToWorkerMessageCatalog: {
|
|
|
8722
8661
|
type: "STRING_ERROR";
|
|
8723
8662
|
raw: string;
|
|
8724
8663
|
};
|
|
8725
|
-
ok: false;
|
|
8726
8664
|
retry?: {
|
|
8727
|
-
delay: number;
|
|
8728
8665
|
timestamp: number;
|
|
8666
|
+
delay: number;
|
|
8729
8667
|
error?: unknown;
|
|
8730
8668
|
} | undefined;
|
|
8731
8669
|
metadata?: {
|
|
@@ -8800,13 +8738,12 @@ export declare const ExecutorToWorkerMessageCatalog: {
|
|
|
8800
8738
|
key: string;
|
|
8801
8739
|
})[] | undefined;
|
|
8802
8740
|
} | undefined;
|
|
8803
|
-
taskIdentifier?: string | undefined;
|
|
8804
8741
|
usage?: {
|
|
8805
8742
|
durationMs: number;
|
|
8806
8743
|
} | undefined;
|
|
8744
|
+
taskIdentifier?: string | undefined;
|
|
8807
8745
|
skippedRetrying?: boolean | undefined;
|
|
8808
8746
|
};
|
|
8809
|
-
}, {
|
|
8810
8747
|
execution: {
|
|
8811
8748
|
queue: {
|
|
8812
8749
|
id: string;
|
|
@@ -8827,20 +8764,20 @@ export declare const ExecutorToWorkerMessageCatalog: {
|
|
|
8827
8764
|
};
|
|
8828
8765
|
run: {
|
|
8829
8766
|
id: string;
|
|
8767
|
+
startedAt: Date;
|
|
8830
8768
|
payload: string;
|
|
8831
8769
|
payloadType: string;
|
|
8832
8770
|
tags: string[];
|
|
8771
|
+
isTest: boolean;
|
|
8833
8772
|
createdAt: Date;
|
|
8773
|
+
durationMs: number;
|
|
8774
|
+
costInCents: number;
|
|
8775
|
+
baseCostInCents: number;
|
|
8834
8776
|
maxAttempts?: number | undefined;
|
|
8835
8777
|
maxDuration?: number | undefined;
|
|
8836
8778
|
version?: string | undefined;
|
|
8837
|
-
startedAt?: Date | undefined;
|
|
8838
8779
|
context?: any;
|
|
8839
|
-
isTest?: boolean | undefined;
|
|
8840
8780
|
idempotencyKey?: string | undefined;
|
|
8841
|
-
durationMs?: number | undefined;
|
|
8842
|
-
costInCents?: number | undefined;
|
|
8843
|
-
baseCostInCents?: number | undefined;
|
|
8844
8781
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
8845
8782
|
};
|
|
8846
8783
|
environment: {
|
|
@@ -8869,11 +8806,11 @@ export declare const ExecutorToWorkerMessageCatalog: {
|
|
|
8869
8806
|
id: string;
|
|
8870
8807
|
} | undefined;
|
|
8871
8808
|
};
|
|
8809
|
+
}, {
|
|
8872
8810
|
result: {
|
|
8873
8811
|
id: string;
|
|
8874
|
-
outputType: string;
|
|
8875
8812
|
ok: true;
|
|
8876
|
-
|
|
8813
|
+
outputType: string;
|
|
8877
8814
|
metadata?: {
|
|
8878
8815
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
8879
8816
|
operations?: ({
|
|
@@ -8946,12 +8883,14 @@ export declare const ExecutorToWorkerMessageCatalog: {
|
|
|
8946
8883
|
key: string;
|
|
8947
8884
|
})[] | undefined;
|
|
8948
8885
|
} | undefined;
|
|
8949
|
-
|
|
8886
|
+
output?: string | undefined;
|
|
8950
8887
|
usage?: {
|
|
8951
8888
|
durationMs: number;
|
|
8952
8889
|
} | undefined;
|
|
8890
|
+
taskIdentifier?: string | undefined;
|
|
8953
8891
|
} | {
|
|
8954
8892
|
id: string;
|
|
8893
|
+
ok: false;
|
|
8955
8894
|
error: {
|
|
8956
8895
|
type: "INTERNAL_ERROR";
|
|
8957
8896
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -8969,10 +8908,9 @@ export declare const ExecutorToWorkerMessageCatalog: {
|
|
|
8969
8908
|
type: "STRING_ERROR";
|
|
8970
8909
|
raw: string;
|
|
8971
8910
|
};
|
|
8972
|
-
ok: false;
|
|
8973
8911
|
retry?: {
|
|
8974
|
-
delay: number;
|
|
8975
8912
|
timestamp: number;
|
|
8913
|
+
delay: number;
|
|
8976
8914
|
error?: unknown;
|
|
8977
8915
|
} | undefined;
|
|
8978
8916
|
metadata?: {
|
|
@@ -9047,12 +8985,74 @@ export declare const ExecutorToWorkerMessageCatalog: {
|
|
|
9047
8985
|
key: string;
|
|
9048
8986
|
})[] | undefined;
|
|
9049
8987
|
} | undefined;
|
|
9050
|
-
taskIdentifier?: string | undefined;
|
|
9051
8988
|
usage?: {
|
|
9052
8989
|
durationMs: number;
|
|
9053
8990
|
} | undefined;
|
|
8991
|
+
taskIdentifier?: string | undefined;
|
|
9054
8992
|
skippedRetrying?: boolean | undefined;
|
|
9055
8993
|
};
|
|
8994
|
+
execution: {
|
|
8995
|
+
queue: {
|
|
8996
|
+
id: string;
|
|
8997
|
+
name: string;
|
|
8998
|
+
};
|
|
8999
|
+
task: {
|
|
9000
|
+
id: string;
|
|
9001
|
+
exportName: string;
|
|
9002
|
+
filePath: string;
|
|
9003
|
+
};
|
|
9004
|
+
attempt: {
|
|
9005
|
+
number: number;
|
|
9006
|
+
id: string;
|
|
9007
|
+
status: string;
|
|
9008
|
+
startedAt: Date;
|
|
9009
|
+
backgroundWorkerId: string;
|
|
9010
|
+
backgroundWorkerTaskId: string;
|
|
9011
|
+
};
|
|
9012
|
+
run: {
|
|
9013
|
+
id: string;
|
|
9014
|
+
payload: string;
|
|
9015
|
+
payloadType: string;
|
|
9016
|
+
tags: string[];
|
|
9017
|
+
createdAt: Date;
|
|
9018
|
+
maxAttempts?: number | undefined;
|
|
9019
|
+
maxDuration?: number | undefined;
|
|
9020
|
+
version?: string | undefined;
|
|
9021
|
+
startedAt?: Date | undefined;
|
|
9022
|
+
context?: any;
|
|
9023
|
+
isTest?: boolean | undefined;
|
|
9024
|
+
idempotencyKey?: string | undefined;
|
|
9025
|
+
durationMs?: number | undefined;
|
|
9026
|
+
costInCents?: number | undefined;
|
|
9027
|
+
baseCostInCents?: number | undefined;
|
|
9028
|
+
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
9029
|
+
};
|
|
9030
|
+
environment: {
|
|
9031
|
+
id: string;
|
|
9032
|
+
type: "PRODUCTION" | "STAGING" | "DEVELOPMENT" | "PREVIEW";
|
|
9033
|
+
slug: string;
|
|
9034
|
+
};
|
|
9035
|
+
organization: {
|
|
9036
|
+
id: string;
|
|
9037
|
+
name: string;
|
|
9038
|
+
slug: string;
|
|
9039
|
+
};
|
|
9040
|
+
project: {
|
|
9041
|
+
id: string;
|
|
9042
|
+
name: string;
|
|
9043
|
+
slug: string;
|
|
9044
|
+
ref: string;
|
|
9045
|
+
};
|
|
9046
|
+
machine?: {
|
|
9047
|
+
name: "micro" | "small-1x" | "small-2x" | "medium-1x" | "medium-2x" | "large-1x" | "large-2x";
|
|
9048
|
+
cpu: number;
|
|
9049
|
+
memory: number;
|
|
9050
|
+
centsPerMs: number;
|
|
9051
|
+
} | undefined;
|
|
9052
|
+
batch?: {
|
|
9053
|
+
id: string;
|
|
9054
|
+
} | undefined;
|
|
9055
|
+
};
|
|
9056
9056
|
version?: "v1" | undefined;
|
|
9057
9057
|
}>;
|
|
9058
9058
|
};
|
|
@@ -9962,9 +9962,8 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
9962
9962
|
}>>;
|
|
9963
9963
|
}, "strip", z.ZodTypeAny, {
|
|
9964
9964
|
id: string;
|
|
9965
|
-
outputType: string;
|
|
9966
9965
|
ok: true;
|
|
9967
|
-
|
|
9966
|
+
outputType: string;
|
|
9968
9967
|
metadata?: {
|
|
9969
9968
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
9970
9969
|
operations?: ({
|
|
@@ -10037,15 +10036,15 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
10037
10036
|
key: string;
|
|
10038
10037
|
})[] | undefined;
|
|
10039
10038
|
} | undefined;
|
|
10040
|
-
|
|
10039
|
+
output?: string | undefined;
|
|
10041
10040
|
usage?: {
|
|
10042
10041
|
durationMs: number;
|
|
10043
10042
|
} | undefined;
|
|
10043
|
+
taskIdentifier?: string | undefined;
|
|
10044
10044
|
}, {
|
|
10045
10045
|
id: string;
|
|
10046
|
-
outputType: string;
|
|
10047
10046
|
ok: true;
|
|
10048
|
-
|
|
10047
|
+
outputType: string;
|
|
10049
10048
|
metadata?: {
|
|
10050
10049
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
10051
10050
|
operations?: ({
|
|
@@ -10118,10 +10117,11 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
10118
10117
|
key: string;
|
|
10119
10118
|
})[] | undefined;
|
|
10120
10119
|
} | undefined;
|
|
10121
|
-
|
|
10120
|
+
output?: string | undefined;
|
|
10122
10121
|
usage?: {
|
|
10123
10122
|
durationMs: number;
|
|
10124
10123
|
} | undefined;
|
|
10124
|
+
taskIdentifier?: string | undefined;
|
|
10125
10125
|
}>, z.ZodObject<{
|
|
10126
10126
|
ok: z.ZodLiteral<false>;
|
|
10127
10127
|
id: z.ZodString;
|
|
@@ -10179,12 +10179,12 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
10179
10179
|
delay: z.ZodNumber;
|
|
10180
10180
|
error: z.ZodOptional<z.ZodUnknown>;
|
|
10181
10181
|
}, "strip", z.ZodTypeAny, {
|
|
10182
|
-
delay: number;
|
|
10183
10182
|
timestamp: number;
|
|
10183
|
+
delay: number;
|
|
10184
10184
|
error?: unknown;
|
|
10185
10185
|
}, {
|
|
10186
|
-
delay: number;
|
|
10187
10186
|
timestamp: number;
|
|
10187
|
+
delay: number;
|
|
10188
10188
|
error?: unknown;
|
|
10189
10189
|
}>>;
|
|
10190
10190
|
skippedRetrying: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -10544,6 +10544,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
10544
10544
|
}>>;
|
|
10545
10545
|
}, "strip", z.ZodTypeAny, {
|
|
10546
10546
|
id: string;
|
|
10547
|
+
ok: false;
|
|
10547
10548
|
error: {
|
|
10548
10549
|
type: "INTERNAL_ERROR";
|
|
10549
10550
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -10561,10 +10562,9 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
10561
10562
|
type: "STRING_ERROR";
|
|
10562
10563
|
raw: string;
|
|
10563
10564
|
};
|
|
10564
|
-
ok: false;
|
|
10565
10565
|
retry?: {
|
|
10566
|
-
delay: number;
|
|
10567
10566
|
timestamp: number;
|
|
10567
|
+
delay: number;
|
|
10568
10568
|
error?: unknown;
|
|
10569
10569
|
} | undefined;
|
|
10570
10570
|
metadata?: {
|
|
@@ -10639,13 +10639,14 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
10639
10639
|
key: string;
|
|
10640
10640
|
})[] | undefined;
|
|
10641
10641
|
} | undefined;
|
|
10642
|
-
taskIdentifier?: string | undefined;
|
|
10643
10642
|
usage?: {
|
|
10644
10643
|
durationMs: number;
|
|
10645
10644
|
} | undefined;
|
|
10645
|
+
taskIdentifier?: string | undefined;
|
|
10646
10646
|
skippedRetrying?: boolean | undefined;
|
|
10647
10647
|
}, {
|
|
10648
10648
|
id: string;
|
|
10649
|
+
ok: false;
|
|
10649
10650
|
error: {
|
|
10650
10651
|
type: "INTERNAL_ERROR";
|
|
10651
10652
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -10663,10 +10664,9 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
10663
10664
|
type: "STRING_ERROR";
|
|
10664
10665
|
raw: string;
|
|
10665
10666
|
};
|
|
10666
|
-
ok: false;
|
|
10667
10667
|
retry?: {
|
|
10668
|
-
delay: number;
|
|
10669
10668
|
timestamp: number;
|
|
10669
|
+
delay: number;
|
|
10670
10670
|
error?: unknown;
|
|
10671
10671
|
} | undefined;
|
|
10672
10672
|
metadata?: {
|
|
@@ -10741,10 +10741,10 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
10741
10741
|
key: string;
|
|
10742
10742
|
})[] | undefined;
|
|
10743
10743
|
} | undefined;
|
|
10744
|
-
taskIdentifier?: string | undefined;
|
|
10745
10744
|
usage?: {
|
|
10746
10745
|
durationMs: number;
|
|
10747
10746
|
} | undefined;
|
|
10747
|
+
taskIdentifier?: string | undefined;
|
|
10748
10748
|
skippedRetrying?: boolean | undefined;
|
|
10749
10749
|
}>]>;
|
|
10750
10750
|
execution: z.ZodObject<{
|
|
@@ -11099,9 +11099,8 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
11099
11099
|
};
|
|
11100
11100
|
completion: {
|
|
11101
11101
|
id: string;
|
|
11102
|
-
outputType: string;
|
|
11103
11102
|
ok: true;
|
|
11104
|
-
|
|
11103
|
+
outputType: string;
|
|
11105
11104
|
metadata?: {
|
|
11106
11105
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
11107
11106
|
operations?: ({
|
|
@@ -11174,12 +11173,14 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
11174
11173
|
key: string;
|
|
11175
11174
|
})[] | undefined;
|
|
11176
11175
|
} | undefined;
|
|
11177
|
-
|
|
11176
|
+
output?: string | undefined;
|
|
11178
11177
|
usage?: {
|
|
11179
11178
|
durationMs: number;
|
|
11180
11179
|
} | undefined;
|
|
11180
|
+
taskIdentifier?: string | undefined;
|
|
11181
11181
|
} | {
|
|
11182
11182
|
id: string;
|
|
11183
|
+
ok: false;
|
|
11183
11184
|
error: {
|
|
11184
11185
|
type: "INTERNAL_ERROR";
|
|
11185
11186
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -11197,10 +11198,9 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
11197
11198
|
type: "STRING_ERROR";
|
|
11198
11199
|
raw: string;
|
|
11199
11200
|
};
|
|
11200
|
-
ok: false;
|
|
11201
11201
|
retry?: {
|
|
11202
|
-
delay: number;
|
|
11203
11202
|
timestamp: number;
|
|
11203
|
+
delay: number;
|
|
11204
11204
|
error?: unknown;
|
|
11205
11205
|
} | undefined;
|
|
11206
11206
|
metadata?: {
|
|
@@ -11275,10 +11275,10 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
11275
11275
|
key: string;
|
|
11276
11276
|
})[] | undefined;
|
|
11277
11277
|
} | undefined;
|
|
11278
|
-
taskIdentifier?: string | undefined;
|
|
11279
11278
|
usage?: {
|
|
11280
11279
|
durationMs: number;
|
|
11281
11280
|
} | undefined;
|
|
11281
|
+
taskIdentifier?: string | undefined;
|
|
11282
11282
|
skippedRetrying?: boolean | undefined;
|
|
11283
11283
|
};
|
|
11284
11284
|
}, {
|
|
@@ -11347,9 +11347,8 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
11347
11347
|
};
|
|
11348
11348
|
completion: {
|
|
11349
11349
|
id: string;
|
|
11350
|
-
outputType: string;
|
|
11351
11350
|
ok: true;
|
|
11352
|
-
|
|
11351
|
+
outputType: string;
|
|
11353
11352
|
metadata?: {
|
|
11354
11353
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
11355
11354
|
operations?: ({
|
|
@@ -11422,12 +11421,14 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
11422
11421
|
key: string;
|
|
11423
11422
|
})[] | undefined;
|
|
11424
11423
|
} | undefined;
|
|
11425
|
-
|
|
11424
|
+
output?: string | undefined;
|
|
11426
11425
|
usage?: {
|
|
11427
11426
|
durationMs: number;
|
|
11428
11427
|
} | undefined;
|
|
11428
|
+
taskIdentifier?: string | undefined;
|
|
11429
11429
|
} | {
|
|
11430
11430
|
id: string;
|
|
11431
|
+
ok: false;
|
|
11431
11432
|
error: {
|
|
11432
11433
|
type: "INTERNAL_ERROR";
|
|
11433
11434
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -11445,10 +11446,9 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
11445
11446
|
type: "STRING_ERROR";
|
|
11446
11447
|
raw: string;
|
|
11447
11448
|
};
|
|
11448
|
-
ok: false;
|
|
11449
11449
|
retry?: {
|
|
11450
|
-
delay: number;
|
|
11451
11450
|
timestamp: number;
|
|
11451
|
+
delay: number;
|
|
11452
11452
|
error?: unknown;
|
|
11453
11453
|
} | undefined;
|
|
11454
11454
|
metadata?: {
|
|
@@ -11523,10 +11523,10 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
11523
11523
|
key: string;
|
|
11524
11524
|
})[] | undefined;
|
|
11525
11525
|
} | undefined;
|
|
11526
|
-
taskIdentifier?: string | undefined;
|
|
11527
11526
|
usage?: {
|
|
11528
11527
|
durationMs: number;
|
|
11529
11528
|
} | undefined;
|
|
11529
|
+
taskIdentifier?: string | undefined;
|
|
11530
11530
|
skippedRetrying?: boolean | undefined;
|
|
11531
11531
|
};
|
|
11532
11532
|
}>, z.ZodObject<{
|
|
@@ -11892,9 +11892,8 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
11892
11892
|
}>>;
|
|
11893
11893
|
}, "strip", z.ZodTypeAny, {
|
|
11894
11894
|
id: string;
|
|
11895
|
-
outputType: string;
|
|
11896
11895
|
ok: true;
|
|
11897
|
-
|
|
11896
|
+
outputType: string;
|
|
11898
11897
|
metadata?: {
|
|
11899
11898
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
11900
11899
|
operations?: ({
|
|
@@ -11967,15 +11966,15 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
11967
11966
|
key: string;
|
|
11968
11967
|
})[] | undefined;
|
|
11969
11968
|
} | undefined;
|
|
11970
|
-
|
|
11969
|
+
output?: string | undefined;
|
|
11971
11970
|
usage?: {
|
|
11972
11971
|
durationMs: number;
|
|
11973
11972
|
} | undefined;
|
|
11973
|
+
taskIdentifier?: string | undefined;
|
|
11974
11974
|
}, {
|
|
11975
11975
|
id: string;
|
|
11976
|
-
outputType: string;
|
|
11977
11976
|
ok: true;
|
|
11978
|
-
|
|
11977
|
+
outputType: string;
|
|
11979
11978
|
metadata?: {
|
|
11980
11979
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
11981
11980
|
operations?: ({
|
|
@@ -12048,10 +12047,11 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
12048
12047
|
key: string;
|
|
12049
12048
|
})[] | undefined;
|
|
12050
12049
|
} | undefined;
|
|
12051
|
-
|
|
12050
|
+
output?: string | undefined;
|
|
12052
12051
|
usage?: {
|
|
12053
12052
|
durationMs: number;
|
|
12054
12053
|
} | undefined;
|
|
12054
|
+
taskIdentifier?: string | undefined;
|
|
12055
12055
|
}>, z.ZodObject<{
|
|
12056
12056
|
ok: z.ZodLiteral<false>;
|
|
12057
12057
|
id: z.ZodString;
|
|
@@ -12109,12 +12109,12 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
12109
12109
|
delay: z.ZodNumber;
|
|
12110
12110
|
error: z.ZodOptional<z.ZodUnknown>;
|
|
12111
12111
|
}, "strip", z.ZodTypeAny, {
|
|
12112
|
-
delay: number;
|
|
12113
12112
|
timestamp: number;
|
|
12113
|
+
delay: number;
|
|
12114
12114
|
error?: unknown;
|
|
12115
12115
|
}, {
|
|
12116
|
-
delay: number;
|
|
12117
12116
|
timestamp: number;
|
|
12117
|
+
delay: number;
|
|
12118
12118
|
error?: unknown;
|
|
12119
12119
|
}>>;
|
|
12120
12120
|
skippedRetrying: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -12474,6 +12474,7 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
12474
12474
|
}>>;
|
|
12475
12475
|
}, "strip", z.ZodTypeAny, {
|
|
12476
12476
|
id: string;
|
|
12477
|
+
ok: false;
|
|
12477
12478
|
error: {
|
|
12478
12479
|
type: "INTERNAL_ERROR";
|
|
12479
12480
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -12491,10 +12492,9 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
12491
12492
|
type: "STRING_ERROR";
|
|
12492
12493
|
raw: string;
|
|
12493
12494
|
};
|
|
12494
|
-
ok: false;
|
|
12495
12495
|
retry?: {
|
|
12496
|
-
delay: number;
|
|
12497
12496
|
timestamp: number;
|
|
12497
|
+
delay: number;
|
|
12498
12498
|
error?: unknown;
|
|
12499
12499
|
} | undefined;
|
|
12500
12500
|
metadata?: {
|
|
@@ -12569,13 +12569,14 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
12569
12569
|
key: string;
|
|
12570
12570
|
})[] | undefined;
|
|
12571
12571
|
} | undefined;
|
|
12572
|
-
taskIdentifier?: string | undefined;
|
|
12573
12572
|
usage?: {
|
|
12574
12573
|
durationMs: number;
|
|
12575
12574
|
} | undefined;
|
|
12575
|
+
taskIdentifier?: string | undefined;
|
|
12576
12576
|
skippedRetrying?: boolean | undefined;
|
|
12577
12577
|
}, {
|
|
12578
12578
|
id: string;
|
|
12579
|
+
ok: false;
|
|
12579
12580
|
error: {
|
|
12580
12581
|
type: "INTERNAL_ERROR";
|
|
12581
12582
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -12593,10 +12594,9 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
12593
12594
|
type: "STRING_ERROR";
|
|
12594
12595
|
raw: string;
|
|
12595
12596
|
};
|
|
12596
|
-
ok: false;
|
|
12597
12597
|
retry?: {
|
|
12598
|
-
delay: number;
|
|
12599
12598
|
timestamp: number;
|
|
12599
|
+
delay: number;
|
|
12600
12600
|
error?: unknown;
|
|
12601
12601
|
} | undefined;
|
|
12602
12602
|
metadata?: {
|
|
@@ -12671,19 +12671,18 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
12671
12671
|
key: string;
|
|
12672
12672
|
})[] | undefined;
|
|
12673
12673
|
} | undefined;
|
|
12674
|
-
taskIdentifier?: string | undefined;
|
|
12675
12674
|
usage?: {
|
|
12676
12675
|
durationMs: number;
|
|
12677
12676
|
} | undefined;
|
|
12677
|
+
taskIdentifier?: string | undefined;
|
|
12678
12678
|
skippedRetrying?: boolean | undefined;
|
|
12679
12679
|
}>]>;
|
|
12680
12680
|
}, "strip", z.ZodTypeAny, {
|
|
12681
12681
|
version: "v2";
|
|
12682
12682
|
completion: {
|
|
12683
12683
|
id: string;
|
|
12684
|
-
outputType: string;
|
|
12685
12684
|
ok: true;
|
|
12686
|
-
|
|
12685
|
+
outputType: string;
|
|
12687
12686
|
metadata?: {
|
|
12688
12687
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
12689
12688
|
operations?: ({
|
|
@@ -12756,12 +12755,14 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
12756
12755
|
key: string;
|
|
12757
12756
|
})[] | undefined;
|
|
12758
12757
|
} | undefined;
|
|
12759
|
-
|
|
12758
|
+
output?: string | undefined;
|
|
12760
12759
|
usage?: {
|
|
12761
12760
|
durationMs: number;
|
|
12762
12761
|
} | undefined;
|
|
12762
|
+
taskIdentifier?: string | undefined;
|
|
12763
12763
|
} | {
|
|
12764
12764
|
id: string;
|
|
12765
|
+
ok: false;
|
|
12765
12766
|
error: {
|
|
12766
12767
|
type: "INTERNAL_ERROR";
|
|
12767
12768
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -12779,10 +12780,9 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
12779
12780
|
type: "STRING_ERROR";
|
|
12780
12781
|
raw: string;
|
|
12781
12782
|
};
|
|
12782
|
-
ok: false;
|
|
12783
12783
|
retry?: {
|
|
12784
|
-
delay: number;
|
|
12785
12784
|
timestamp: number;
|
|
12785
|
+
delay: number;
|
|
12786
12786
|
error?: unknown;
|
|
12787
12787
|
} | undefined;
|
|
12788
12788
|
metadata?: {
|
|
@@ -12857,19 +12857,18 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
12857
12857
|
key: string;
|
|
12858
12858
|
})[] | undefined;
|
|
12859
12859
|
} | undefined;
|
|
12860
|
-
taskIdentifier?: string | undefined;
|
|
12861
12860
|
usage?: {
|
|
12862
12861
|
durationMs: number;
|
|
12863
12862
|
} | undefined;
|
|
12863
|
+
taskIdentifier?: string | undefined;
|
|
12864
12864
|
skippedRetrying?: boolean | undefined;
|
|
12865
12865
|
};
|
|
12866
12866
|
}, {
|
|
12867
12867
|
version: "v2";
|
|
12868
12868
|
completion: {
|
|
12869
12869
|
id: string;
|
|
12870
|
-
outputType: string;
|
|
12871
12870
|
ok: true;
|
|
12872
|
-
|
|
12871
|
+
outputType: string;
|
|
12873
12872
|
metadata?: {
|
|
12874
12873
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
12875
12874
|
operations?: ({
|
|
@@ -12942,12 +12941,14 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
12942
12941
|
key: string;
|
|
12943
12942
|
})[] | undefined;
|
|
12944
12943
|
} | undefined;
|
|
12945
|
-
|
|
12944
|
+
output?: string | undefined;
|
|
12946
12945
|
usage?: {
|
|
12947
12946
|
durationMs: number;
|
|
12948
12947
|
} | undefined;
|
|
12948
|
+
taskIdentifier?: string | undefined;
|
|
12949
12949
|
} | {
|
|
12950
12950
|
id: string;
|
|
12951
|
+
ok: false;
|
|
12951
12952
|
error: {
|
|
12952
12953
|
type: "INTERNAL_ERROR";
|
|
12953
12954
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -12965,10 +12966,9 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
12965
12966
|
type: "STRING_ERROR";
|
|
12966
12967
|
raw: string;
|
|
12967
12968
|
};
|
|
12968
|
-
ok: false;
|
|
12969
12969
|
retry?: {
|
|
12970
|
-
delay: number;
|
|
12971
12970
|
timestamp: number;
|
|
12971
|
+
delay: number;
|
|
12972
12972
|
error?: unknown;
|
|
12973
12973
|
} | undefined;
|
|
12974
12974
|
metadata?: {
|
|
@@ -13043,10 +13043,10 @@ export declare const WorkerToExecutorMessageCatalog: {
|
|
|
13043
13043
|
key: string;
|
|
13044
13044
|
})[] | undefined;
|
|
13045
13045
|
} | undefined;
|
|
13046
|
-
taskIdentifier?: string | undefined;
|
|
13047
13046
|
usage?: {
|
|
13048
13047
|
durationMs: number;
|
|
13049
13048
|
} | undefined;
|
|
13049
|
+
taskIdentifier?: string | undefined;
|
|
13050
13050
|
skippedRetrying?: boolean | undefined;
|
|
13051
13051
|
};
|
|
13052
13052
|
}>]>;
|
|
@@ -15982,9 +15982,8 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
15982
15982
|
}>>;
|
|
15983
15983
|
}, "strip", z.ZodTypeAny, {
|
|
15984
15984
|
id: string;
|
|
15985
|
-
outputType: string;
|
|
15986
15985
|
ok: true;
|
|
15987
|
-
|
|
15986
|
+
outputType: string;
|
|
15988
15987
|
metadata?: {
|
|
15989
15988
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
15990
15989
|
operations?: ({
|
|
@@ -16057,15 +16056,15 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
16057
16056
|
key: string;
|
|
16058
16057
|
})[] | undefined;
|
|
16059
16058
|
} | undefined;
|
|
16060
|
-
|
|
16059
|
+
output?: string | undefined;
|
|
16061
16060
|
usage?: {
|
|
16062
16061
|
durationMs: number;
|
|
16063
16062
|
} | undefined;
|
|
16063
|
+
taskIdentifier?: string | undefined;
|
|
16064
16064
|
}, {
|
|
16065
16065
|
id: string;
|
|
16066
|
-
outputType: string;
|
|
16067
16066
|
ok: true;
|
|
16068
|
-
|
|
16067
|
+
outputType: string;
|
|
16069
16068
|
metadata?: {
|
|
16070
16069
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
16071
16070
|
operations?: ({
|
|
@@ -16138,10 +16137,11 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
16138
16137
|
key: string;
|
|
16139
16138
|
})[] | undefined;
|
|
16140
16139
|
} | undefined;
|
|
16141
|
-
|
|
16140
|
+
output?: string | undefined;
|
|
16142
16141
|
usage?: {
|
|
16143
16142
|
durationMs: number;
|
|
16144
16143
|
} | undefined;
|
|
16144
|
+
taskIdentifier?: string | undefined;
|
|
16145
16145
|
}>, z.ZodObject<{
|
|
16146
16146
|
ok: z.ZodLiteral<false>;
|
|
16147
16147
|
id: z.ZodString;
|
|
@@ -16199,12 +16199,12 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
16199
16199
|
delay: z.ZodNumber;
|
|
16200
16200
|
error: z.ZodOptional<z.ZodUnknown>;
|
|
16201
16201
|
}, "strip", z.ZodTypeAny, {
|
|
16202
|
-
delay: number;
|
|
16203
16202
|
timestamp: number;
|
|
16203
|
+
delay: number;
|
|
16204
16204
|
error?: unknown;
|
|
16205
16205
|
}, {
|
|
16206
|
-
delay: number;
|
|
16207
16206
|
timestamp: number;
|
|
16207
|
+
delay: number;
|
|
16208
16208
|
error?: unknown;
|
|
16209
16209
|
}>>;
|
|
16210
16210
|
skippedRetrying: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -16564,6 +16564,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
16564
16564
|
}>>;
|
|
16565
16565
|
}, "strip", z.ZodTypeAny, {
|
|
16566
16566
|
id: string;
|
|
16567
|
+
ok: false;
|
|
16567
16568
|
error: {
|
|
16568
16569
|
type: "INTERNAL_ERROR";
|
|
16569
16570
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -16581,10 +16582,9 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
16581
16582
|
type: "STRING_ERROR";
|
|
16582
16583
|
raw: string;
|
|
16583
16584
|
};
|
|
16584
|
-
ok: false;
|
|
16585
16585
|
retry?: {
|
|
16586
|
-
delay: number;
|
|
16587
16586
|
timestamp: number;
|
|
16587
|
+
delay: number;
|
|
16588
16588
|
error?: unknown;
|
|
16589
16589
|
} | undefined;
|
|
16590
16590
|
metadata?: {
|
|
@@ -16659,13 +16659,14 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
16659
16659
|
key: string;
|
|
16660
16660
|
})[] | undefined;
|
|
16661
16661
|
} | undefined;
|
|
16662
|
-
taskIdentifier?: string | undefined;
|
|
16663
16662
|
usage?: {
|
|
16664
16663
|
durationMs: number;
|
|
16665
16664
|
} | undefined;
|
|
16665
|
+
taskIdentifier?: string | undefined;
|
|
16666
16666
|
skippedRetrying?: boolean | undefined;
|
|
16667
16667
|
}, {
|
|
16668
16668
|
id: string;
|
|
16669
|
+
ok: false;
|
|
16669
16670
|
error: {
|
|
16670
16671
|
type: "INTERNAL_ERROR";
|
|
16671
16672
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -16683,10 +16684,9 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
16683
16684
|
type: "STRING_ERROR";
|
|
16684
16685
|
raw: string;
|
|
16685
16686
|
};
|
|
16686
|
-
ok: false;
|
|
16687
16687
|
retry?: {
|
|
16688
|
-
delay: number;
|
|
16689
16688
|
timestamp: number;
|
|
16689
|
+
delay: number;
|
|
16690
16690
|
error?: unknown;
|
|
16691
16691
|
} | undefined;
|
|
16692
16692
|
metadata?: {
|
|
@@ -16761,10 +16761,10 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
16761
16761
|
key: string;
|
|
16762
16762
|
})[] | undefined;
|
|
16763
16763
|
} | undefined;
|
|
16764
|
-
taskIdentifier?: string | undefined;
|
|
16765
16764
|
usage?: {
|
|
16766
16765
|
durationMs: number;
|
|
16767
16766
|
} | undefined;
|
|
16767
|
+
taskIdentifier?: string | undefined;
|
|
16768
16768
|
skippedRetrying?: boolean | undefined;
|
|
16769
16769
|
}>]>;
|
|
16770
16770
|
checkpoint: z.ZodOptional<z.ZodObject<{
|
|
@@ -16848,9 +16848,8 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
16848
16848
|
};
|
|
16849
16849
|
completion: {
|
|
16850
16850
|
id: string;
|
|
16851
|
-
outputType: string;
|
|
16852
16851
|
ok: true;
|
|
16853
|
-
|
|
16852
|
+
outputType: string;
|
|
16854
16853
|
metadata?: {
|
|
16855
16854
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
16856
16855
|
operations?: ({
|
|
@@ -16923,12 +16922,14 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
16923
16922
|
key: string;
|
|
16924
16923
|
})[] | undefined;
|
|
16925
16924
|
} | undefined;
|
|
16926
|
-
|
|
16925
|
+
output?: string | undefined;
|
|
16927
16926
|
usage?: {
|
|
16928
16927
|
durationMs: number;
|
|
16929
16928
|
} | undefined;
|
|
16929
|
+
taskIdentifier?: string | undefined;
|
|
16930
16930
|
} | {
|
|
16931
16931
|
id: string;
|
|
16932
|
+
ok: false;
|
|
16932
16933
|
error: {
|
|
16933
16934
|
type: "INTERNAL_ERROR";
|
|
16934
16935
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -16946,10 +16947,9 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
16946
16947
|
type: "STRING_ERROR";
|
|
16947
16948
|
raw: string;
|
|
16948
16949
|
};
|
|
16949
|
-
ok: false;
|
|
16950
16950
|
retry?: {
|
|
16951
|
-
delay: number;
|
|
16952
16951
|
timestamp: number;
|
|
16952
|
+
delay: number;
|
|
16953
16953
|
error?: unknown;
|
|
16954
16954
|
} | undefined;
|
|
16955
16955
|
metadata?: {
|
|
@@ -17024,10 +17024,10 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
17024
17024
|
key: string;
|
|
17025
17025
|
})[] | undefined;
|
|
17026
17026
|
} | undefined;
|
|
17027
|
-
taskIdentifier?: string | undefined;
|
|
17028
17027
|
usage?: {
|
|
17029
17028
|
durationMs: number;
|
|
17030
17029
|
} | undefined;
|
|
17030
|
+
taskIdentifier?: string | undefined;
|
|
17031
17031
|
skippedRetrying?: boolean | undefined;
|
|
17032
17032
|
};
|
|
17033
17033
|
checkpoint?: {
|
|
@@ -17104,9 +17104,8 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
17104
17104
|
};
|
|
17105
17105
|
completion: {
|
|
17106
17106
|
id: string;
|
|
17107
|
-
outputType: string;
|
|
17108
17107
|
ok: true;
|
|
17109
|
-
|
|
17108
|
+
outputType: string;
|
|
17110
17109
|
metadata?: {
|
|
17111
17110
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
17112
17111
|
operations?: ({
|
|
@@ -17179,12 +17178,14 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
17179
17178
|
key: string;
|
|
17180
17179
|
})[] | undefined;
|
|
17181
17180
|
} | undefined;
|
|
17182
|
-
|
|
17181
|
+
output?: string | undefined;
|
|
17183
17182
|
usage?: {
|
|
17184
17183
|
durationMs: number;
|
|
17185
17184
|
} | undefined;
|
|
17185
|
+
taskIdentifier?: string | undefined;
|
|
17186
17186
|
} | {
|
|
17187
17187
|
id: string;
|
|
17188
|
+
ok: false;
|
|
17188
17189
|
error: {
|
|
17189
17190
|
type: "INTERNAL_ERROR";
|
|
17190
17191
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -17202,10 +17203,9 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
17202
17203
|
type: "STRING_ERROR";
|
|
17203
17204
|
raw: string;
|
|
17204
17205
|
};
|
|
17205
|
-
ok: false;
|
|
17206
17206
|
retry?: {
|
|
17207
|
-
delay: number;
|
|
17208
17207
|
timestamp: number;
|
|
17208
|
+
delay: number;
|
|
17209
17209
|
error?: unknown;
|
|
17210
17210
|
} | undefined;
|
|
17211
17211
|
metadata?: {
|
|
@@ -17280,10 +17280,10 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
17280
17280
|
key: string;
|
|
17281
17281
|
})[] | undefined;
|
|
17282
17282
|
} | undefined;
|
|
17283
|
-
taskIdentifier?: string | undefined;
|
|
17284
17283
|
usage?: {
|
|
17285
17284
|
durationMs: number;
|
|
17286
17285
|
} | undefined;
|
|
17286
|
+
taskIdentifier?: string | undefined;
|
|
17287
17287
|
skippedRetrying?: boolean | undefined;
|
|
17288
17288
|
};
|
|
17289
17289
|
version?: "v1" | "v2" | undefined;
|
|
@@ -17353,12 +17353,12 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
17353
17353
|
delay: z.ZodNumber;
|
|
17354
17354
|
error: z.ZodOptional<z.ZodUnknown>;
|
|
17355
17355
|
}, "strip", z.ZodTypeAny, {
|
|
17356
|
-
delay: number;
|
|
17357
17356
|
timestamp: number;
|
|
17357
|
+
delay: number;
|
|
17358
17358
|
error?: unknown;
|
|
17359
17359
|
}, {
|
|
17360
|
-
delay: number;
|
|
17361
17360
|
timestamp: number;
|
|
17361
|
+
delay: number;
|
|
17362
17362
|
error?: unknown;
|
|
17363
17363
|
}>>;
|
|
17364
17364
|
skippedRetrying: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -17718,6 +17718,7 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
17718
17718
|
}>>;
|
|
17719
17719
|
}, "strip", z.ZodTypeAny, {
|
|
17720
17720
|
id: string;
|
|
17721
|
+
ok: false;
|
|
17721
17722
|
error: {
|
|
17722
17723
|
type: "INTERNAL_ERROR";
|
|
17723
17724
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -17735,10 +17736,9 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
17735
17736
|
type: "STRING_ERROR";
|
|
17736
17737
|
raw: string;
|
|
17737
17738
|
};
|
|
17738
|
-
ok: false;
|
|
17739
17739
|
retry?: {
|
|
17740
|
-
delay: number;
|
|
17741
17740
|
timestamp: number;
|
|
17741
|
+
delay: number;
|
|
17742
17742
|
error?: unknown;
|
|
17743
17743
|
} | undefined;
|
|
17744
17744
|
metadata?: {
|
|
@@ -17813,13 +17813,14 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
17813
17813
|
key: string;
|
|
17814
17814
|
})[] | undefined;
|
|
17815
17815
|
} | undefined;
|
|
17816
|
-
taskIdentifier?: string | undefined;
|
|
17817
17816
|
usage?: {
|
|
17818
17817
|
durationMs: number;
|
|
17819
17818
|
} | undefined;
|
|
17819
|
+
taskIdentifier?: string | undefined;
|
|
17820
17820
|
skippedRetrying?: boolean | undefined;
|
|
17821
17821
|
}, {
|
|
17822
17822
|
id: string;
|
|
17823
|
+
ok: false;
|
|
17823
17824
|
error: {
|
|
17824
17825
|
type: "INTERNAL_ERROR";
|
|
17825
17826
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -17837,10 +17838,9 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
17837
17838
|
type: "STRING_ERROR";
|
|
17838
17839
|
raw: string;
|
|
17839
17840
|
};
|
|
17840
|
-
ok: false;
|
|
17841
17841
|
retry?: {
|
|
17842
|
-
delay: number;
|
|
17843
17842
|
timestamp: number;
|
|
17843
|
+
delay: number;
|
|
17844
17844
|
error?: unknown;
|
|
17845
17845
|
} | undefined;
|
|
17846
17846
|
metadata?: {
|
|
@@ -17915,16 +17915,17 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
17915
17915
|
key: string;
|
|
17916
17916
|
})[] | undefined;
|
|
17917
17917
|
} | undefined;
|
|
17918
|
-
taskIdentifier?: string | undefined;
|
|
17919
17918
|
usage?: {
|
|
17920
17919
|
durationMs: number;
|
|
17921
17920
|
} | undefined;
|
|
17921
|
+
taskIdentifier?: string | undefined;
|
|
17922
17922
|
skippedRetrying?: boolean | undefined;
|
|
17923
17923
|
}>;
|
|
17924
17924
|
}, "strip", z.ZodTypeAny, {
|
|
17925
17925
|
version: "v1";
|
|
17926
17926
|
completion: {
|
|
17927
17927
|
id: string;
|
|
17928
|
+
ok: false;
|
|
17928
17929
|
error: {
|
|
17929
17930
|
type: "INTERNAL_ERROR";
|
|
17930
17931
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -17942,10 +17943,9 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
17942
17943
|
type: "STRING_ERROR";
|
|
17943
17944
|
raw: string;
|
|
17944
17945
|
};
|
|
17945
|
-
ok: false;
|
|
17946
17946
|
retry?: {
|
|
17947
|
-
delay: number;
|
|
17948
17947
|
timestamp: number;
|
|
17948
|
+
delay: number;
|
|
17949
17949
|
error?: unknown;
|
|
17950
17950
|
} | undefined;
|
|
17951
17951
|
metadata?: {
|
|
@@ -18020,15 +18020,16 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
18020
18020
|
key: string;
|
|
18021
18021
|
})[] | undefined;
|
|
18022
18022
|
} | undefined;
|
|
18023
|
-
taskIdentifier?: string | undefined;
|
|
18024
18023
|
usage?: {
|
|
18025
18024
|
durationMs: number;
|
|
18026
18025
|
} | undefined;
|
|
18026
|
+
taskIdentifier?: string | undefined;
|
|
18027
18027
|
skippedRetrying?: boolean | undefined;
|
|
18028
18028
|
};
|
|
18029
18029
|
}, {
|
|
18030
18030
|
completion: {
|
|
18031
18031
|
id: string;
|
|
18032
|
+
ok: false;
|
|
18032
18033
|
error: {
|
|
18033
18034
|
type: "INTERNAL_ERROR";
|
|
18034
18035
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -18046,10 +18047,9 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
18046
18047
|
type: "STRING_ERROR";
|
|
18047
18048
|
raw: string;
|
|
18048
18049
|
};
|
|
18049
|
-
ok: false;
|
|
18050
18050
|
retry?: {
|
|
18051
|
-
delay: number;
|
|
18052
18051
|
timestamp: number;
|
|
18052
|
+
delay: number;
|
|
18053
18053
|
error?: unknown;
|
|
18054
18054
|
} | undefined;
|
|
18055
18055
|
metadata?: {
|
|
@@ -18124,10 +18124,10 @@ export declare const CoordinatorToPlatformMessages: {
|
|
|
18124
18124
|
key: string;
|
|
18125
18125
|
})[] | undefined;
|
|
18126
18126
|
} | undefined;
|
|
18127
|
-
taskIdentifier?: string | undefined;
|
|
18128
18127
|
usage?: {
|
|
18129
18128
|
durationMs: number;
|
|
18130
18129
|
} | undefined;
|
|
18130
|
+
taskIdentifier?: string | undefined;
|
|
18131
18131
|
skippedRetrying?: boolean | undefined;
|
|
18132
18132
|
};
|
|
18133
18133
|
version?: "v1" | undefined;
|
|
@@ -18706,9 +18706,8 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
18706
18706
|
}>>;
|
|
18707
18707
|
}, "strip", z.ZodTypeAny, {
|
|
18708
18708
|
id: string;
|
|
18709
|
-
outputType: string;
|
|
18710
18709
|
ok: true;
|
|
18711
|
-
|
|
18710
|
+
outputType: string;
|
|
18712
18711
|
metadata?: {
|
|
18713
18712
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
18714
18713
|
operations?: ({
|
|
@@ -18781,15 +18780,15 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
18781
18780
|
key: string;
|
|
18782
18781
|
})[] | undefined;
|
|
18783
18782
|
} | undefined;
|
|
18784
|
-
|
|
18783
|
+
output?: string | undefined;
|
|
18785
18784
|
usage?: {
|
|
18786
18785
|
durationMs: number;
|
|
18787
18786
|
} | undefined;
|
|
18787
|
+
taskIdentifier?: string | undefined;
|
|
18788
18788
|
}, {
|
|
18789
18789
|
id: string;
|
|
18790
|
-
outputType: string;
|
|
18791
18790
|
ok: true;
|
|
18792
|
-
|
|
18791
|
+
outputType: string;
|
|
18793
18792
|
metadata?: {
|
|
18794
18793
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
18795
18794
|
operations?: ({
|
|
@@ -18862,10 +18861,11 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
18862
18861
|
key: string;
|
|
18863
18862
|
})[] | undefined;
|
|
18864
18863
|
} | undefined;
|
|
18865
|
-
|
|
18864
|
+
output?: string | undefined;
|
|
18866
18865
|
usage?: {
|
|
18867
18866
|
durationMs: number;
|
|
18868
18867
|
} | undefined;
|
|
18868
|
+
taskIdentifier?: string | undefined;
|
|
18869
18869
|
}>, z.ZodObject<{
|
|
18870
18870
|
ok: z.ZodLiteral<false>;
|
|
18871
18871
|
id: z.ZodString;
|
|
@@ -18923,12 +18923,12 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
18923
18923
|
delay: z.ZodNumber;
|
|
18924
18924
|
error: z.ZodOptional<z.ZodUnknown>;
|
|
18925
18925
|
}, "strip", z.ZodTypeAny, {
|
|
18926
|
-
delay: number;
|
|
18927
18926
|
timestamp: number;
|
|
18927
|
+
delay: number;
|
|
18928
18928
|
error?: unknown;
|
|
18929
18929
|
}, {
|
|
18930
|
-
delay: number;
|
|
18931
18930
|
timestamp: number;
|
|
18931
|
+
delay: number;
|
|
18932
18932
|
error?: unknown;
|
|
18933
18933
|
}>>;
|
|
18934
18934
|
skippedRetrying: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -19288,6 +19288,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
19288
19288
|
}>>;
|
|
19289
19289
|
}, "strip", z.ZodTypeAny, {
|
|
19290
19290
|
id: string;
|
|
19291
|
+
ok: false;
|
|
19291
19292
|
error: {
|
|
19292
19293
|
type: "INTERNAL_ERROR";
|
|
19293
19294
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -19305,10 +19306,9 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
19305
19306
|
type: "STRING_ERROR";
|
|
19306
19307
|
raw: string;
|
|
19307
19308
|
};
|
|
19308
|
-
ok: false;
|
|
19309
19309
|
retry?: {
|
|
19310
|
-
delay: number;
|
|
19311
19310
|
timestamp: number;
|
|
19311
|
+
delay: number;
|
|
19312
19312
|
error?: unknown;
|
|
19313
19313
|
} | undefined;
|
|
19314
19314
|
metadata?: {
|
|
@@ -19383,13 +19383,14 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
19383
19383
|
key: string;
|
|
19384
19384
|
})[] | undefined;
|
|
19385
19385
|
} | undefined;
|
|
19386
|
-
taskIdentifier?: string | undefined;
|
|
19387
19386
|
usage?: {
|
|
19388
19387
|
durationMs: number;
|
|
19389
19388
|
} | undefined;
|
|
19389
|
+
taskIdentifier?: string | undefined;
|
|
19390
19390
|
skippedRetrying?: boolean | undefined;
|
|
19391
19391
|
}, {
|
|
19392
19392
|
id: string;
|
|
19393
|
+
ok: false;
|
|
19393
19394
|
error: {
|
|
19394
19395
|
type: "INTERNAL_ERROR";
|
|
19395
19396
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -19407,10 +19408,9 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
19407
19408
|
type: "STRING_ERROR";
|
|
19408
19409
|
raw: string;
|
|
19409
19410
|
};
|
|
19410
|
-
ok: false;
|
|
19411
19411
|
retry?: {
|
|
19412
|
-
delay: number;
|
|
19413
19412
|
timestamp: number;
|
|
19413
|
+
delay: number;
|
|
19414
19414
|
error?: unknown;
|
|
19415
19415
|
} | undefined;
|
|
19416
19416
|
metadata?: {
|
|
@@ -19485,10 +19485,10 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
19485
19485
|
key: string;
|
|
19486
19486
|
})[] | undefined;
|
|
19487
19487
|
} | undefined;
|
|
19488
|
-
taskIdentifier?: string | undefined;
|
|
19489
19488
|
usage?: {
|
|
19490
19489
|
durationMs: number;
|
|
19491
19490
|
} | undefined;
|
|
19491
|
+
taskIdentifier?: string | undefined;
|
|
19492
19492
|
skippedRetrying?: boolean | undefined;
|
|
19493
19493
|
}>]>, "many">;
|
|
19494
19494
|
executions: z.ZodArray<z.ZodObject<{
|
|
@@ -19784,9 +19784,8 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
19784
19784
|
attemptId: string;
|
|
19785
19785
|
completions: ({
|
|
19786
19786
|
id: string;
|
|
19787
|
-
outputType: string;
|
|
19788
19787
|
ok: true;
|
|
19789
|
-
|
|
19788
|
+
outputType: string;
|
|
19790
19789
|
metadata?: {
|
|
19791
19790
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
19792
19791
|
operations?: ({
|
|
@@ -19859,12 +19858,14 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
19859
19858
|
key: string;
|
|
19860
19859
|
})[] | undefined;
|
|
19861
19860
|
} | undefined;
|
|
19862
|
-
|
|
19861
|
+
output?: string | undefined;
|
|
19863
19862
|
usage?: {
|
|
19864
19863
|
durationMs: number;
|
|
19865
19864
|
} | undefined;
|
|
19865
|
+
taskIdentifier?: string | undefined;
|
|
19866
19866
|
} | {
|
|
19867
19867
|
id: string;
|
|
19868
|
+
ok: false;
|
|
19868
19869
|
error: {
|
|
19869
19870
|
type: "INTERNAL_ERROR";
|
|
19870
19871
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -19882,10 +19883,9 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
19882
19883
|
type: "STRING_ERROR";
|
|
19883
19884
|
raw: string;
|
|
19884
19885
|
};
|
|
19885
|
-
ok: false;
|
|
19886
19886
|
retry?: {
|
|
19887
|
-
delay: number;
|
|
19888
19887
|
timestamp: number;
|
|
19888
|
+
delay: number;
|
|
19889
19889
|
error?: unknown;
|
|
19890
19890
|
} | undefined;
|
|
19891
19891
|
metadata?: {
|
|
@@ -19960,10 +19960,10 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
19960
19960
|
key: string;
|
|
19961
19961
|
})[] | undefined;
|
|
19962
19962
|
} | undefined;
|
|
19963
|
-
taskIdentifier?: string | undefined;
|
|
19964
19963
|
usage?: {
|
|
19965
19964
|
durationMs: number;
|
|
19966
19965
|
} | undefined;
|
|
19966
|
+
taskIdentifier?: string | undefined;
|
|
19967
19967
|
skippedRetrying?: boolean | undefined;
|
|
19968
19968
|
})[];
|
|
19969
19969
|
executions: {
|
|
@@ -20034,9 +20034,8 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
20034
20034
|
attemptId: string;
|
|
20035
20035
|
completions: ({
|
|
20036
20036
|
id: string;
|
|
20037
|
-
outputType: string;
|
|
20038
20037
|
ok: true;
|
|
20039
|
-
|
|
20038
|
+
outputType: string;
|
|
20040
20039
|
metadata?: {
|
|
20041
20040
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
20042
20041
|
operations?: ({
|
|
@@ -20109,12 +20108,14 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
20109
20108
|
key: string;
|
|
20110
20109
|
})[] | undefined;
|
|
20111
20110
|
} | undefined;
|
|
20112
|
-
|
|
20111
|
+
output?: string | undefined;
|
|
20113
20112
|
usage?: {
|
|
20114
20113
|
durationMs: number;
|
|
20115
20114
|
} | undefined;
|
|
20115
|
+
taskIdentifier?: string | undefined;
|
|
20116
20116
|
} | {
|
|
20117
20117
|
id: string;
|
|
20118
|
+
ok: false;
|
|
20118
20119
|
error: {
|
|
20119
20120
|
type: "INTERNAL_ERROR";
|
|
20120
20121
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -20132,10 +20133,9 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
20132
20133
|
type: "STRING_ERROR";
|
|
20133
20134
|
raw: string;
|
|
20134
20135
|
};
|
|
20135
|
-
ok: false;
|
|
20136
20136
|
retry?: {
|
|
20137
|
-
delay: number;
|
|
20138
20137
|
timestamp: number;
|
|
20138
|
+
delay: number;
|
|
20139
20139
|
error?: unknown;
|
|
20140
20140
|
} | undefined;
|
|
20141
20141
|
metadata?: {
|
|
@@ -20210,10 +20210,10 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
20210
20210
|
key: string;
|
|
20211
20211
|
})[] | undefined;
|
|
20212
20212
|
} | undefined;
|
|
20213
|
-
taskIdentifier?: string | undefined;
|
|
20214
20213
|
usage?: {
|
|
20215
20214
|
durationMs: number;
|
|
20216
20215
|
} | undefined;
|
|
20216
|
+
taskIdentifier?: string | undefined;
|
|
20217
20217
|
skippedRetrying?: boolean | undefined;
|
|
20218
20218
|
})[];
|
|
20219
20219
|
executions: {
|
|
@@ -20648,9 +20648,8 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
20648
20648
|
}>>;
|
|
20649
20649
|
}, "strip", z.ZodTypeAny, {
|
|
20650
20650
|
id: string;
|
|
20651
|
-
outputType: string;
|
|
20652
20651
|
ok: true;
|
|
20653
|
-
|
|
20652
|
+
outputType: string;
|
|
20654
20653
|
metadata?: {
|
|
20655
20654
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
20656
20655
|
operations?: ({
|
|
@@ -20723,15 +20722,15 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
20723
20722
|
key: string;
|
|
20724
20723
|
})[] | undefined;
|
|
20725
20724
|
} | undefined;
|
|
20726
|
-
|
|
20725
|
+
output?: string | undefined;
|
|
20727
20726
|
usage?: {
|
|
20728
20727
|
durationMs: number;
|
|
20729
20728
|
} | undefined;
|
|
20729
|
+
taskIdentifier?: string | undefined;
|
|
20730
20730
|
}, {
|
|
20731
20731
|
id: string;
|
|
20732
|
-
outputType: string;
|
|
20733
20732
|
ok: true;
|
|
20734
|
-
|
|
20733
|
+
outputType: string;
|
|
20735
20734
|
metadata?: {
|
|
20736
20735
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
20737
20736
|
operations?: ({
|
|
@@ -20804,10 +20803,11 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
20804
20803
|
key: string;
|
|
20805
20804
|
})[] | undefined;
|
|
20806
20805
|
} | undefined;
|
|
20807
|
-
|
|
20806
|
+
output?: string | undefined;
|
|
20808
20807
|
usage?: {
|
|
20809
20808
|
durationMs: number;
|
|
20810
20809
|
} | undefined;
|
|
20810
|
+
taskIdentifier?: string | undefined;
|
|
20811
20811
|
}>, z.ZodObject<{
|
|
20812
20812
|
ok: z.ZodLiteral<false>;
|
|
20813
20813
|
id: z.ZodString;
|
|
@@ -20865,12 +20865,12 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
20865
20865
|
delay: z.ZodNumber;
|
|
20866
20866
|
error: z.ZodOptional<z.ZodUnknown>;
|
|
20867
20867
|
}, "strip", z.ZodTypeAny, {
|
|
20868
|
-
delay: number;
|
|
20869
20868
|
timestamp: number;
|
|
20869
|
+
delay: number;
|
|
20870
20870
|
error?: unknown;
|
|
20871
20871
|
}, {
|
|
20872
|
-
delay: number;
|
|
20873
20872
|
timestamp: number;
|
|
20873
|
+
delay: number;
|
|
20874
20874
|
error?: unknown;
|
|
20875
20875
|
}>>;
|
|
20876
20876
|
skippedRetrying: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -21230,6 +21230,7 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
21230
21230
|
}>>;
|
|
21231
21231
|
}, "strip", z.ZodTypeAny, {
|
|
21232
21232
|
id: string;
|
|
21233
|
+
ok: false;
|
|
21233
21234
|
error: {
|
|
21234
21235
|
type: "INTERNAL_ERROR";
|
|
21235
21236
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -21247,10 +21248,9 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
21247
21248
|
type: "STRING_ERROR";
|
|
21248
21249
|
raw: string;
|
|
21249
21250
|
};
|
|
21250
|
-
ok: false;
|
|
21251
21251
|
retry?: {
|
|
21252
|
-
delay: number;
|
|
21253
21252
|
timestamp: number;
|
|
21253
|
+
delay: number;
|
|
21254
21254
|
error?: unknown;
|
|
21255
21255
|
} | undefined;
|
|
21256
21256
|
metadata?: {
|
|
@@ -21325,13 +21325,14 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
21325
21325
|
key: string;
|
|
21326
21326
|
})[] | undefined;
|
|
21327
21327
|
} | undefined;
|
|
21328
|
-
taskIdentifier?: string | undefined;
|
|
21329
21328
|
usage?: {
|
|
21330
21329
|
durationMs: number;
|
|
21331
21330
|
} | undefined;
|
|
21331
|
+
taskIdentifier?: string | undefined;
|
|
21332
21332
|
skippedRetrying?: boolean | undefined;
|
|
21333
21333
|
}, {
|
|
21334
21334
|
id: string;
|
|
21335
|
+
ok: false;
|
|
21335
21336
|
error: {
|
|
21336
21337
|
type: "INTERNAL_ERROR";
|
|
21337
21338
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -21349,10 +21350,9 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
21349
21350
|
type: "STRING_ERROR";
|
|
21350
21351
|
raw: string;
|
|
21351
21352
|
};
|
|
21352
|
-
ok: false;
|
|
21353
21353
|
retry?: {
|
|
21354
|
-
delay: number;
|
|
21355
21354
|
timestamp: number;
|
|
21355
|
+
delay: number;
|
|
21356
21356
|
error?: unknown;
|
|
21357
21357
|
} | undefined;
|
|
21358
21358
|
metadata?: {
|
|
@@ -21427,10 +21427,10 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
21427
21427
|
key: string;
|
|
21428
21428
|
})[] | undefined;
|
|
21429
21429
|
} | undefined;
|
|
21430
|
-
taskIdentifier?: string | undefined;
|
|
21431
21430
|
usage?: {
|
|
21432
21431
|
durationMs: number;
|
|
21433
21432
|
} | undefined;
|
|
21433
|
+
taskIdentifier?: string | undefined;
|
|
21434
21434
|
skippedRetrying?: boolean | undefined;
|
|
21435
21435
|
}>]>, "many">;
|
|
21436
21436
|
executions: z.ZodArray<z.ZodObject<{
|
|
@@ -21726,9 +21726,8 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
21726
21726
|
attemptId: string;
|
|
21727
21727
|
completions: ({
|
|
21728
21728
|
id: string;
|
|
21729
|
-
outputType: string;
|
|
21730
21729
|
ok: true;
|
|
21731
|
-
|
|
21730
|
+
outputType: string;
|
|
21732
21731
|
metadata?: {
|
|
21733
21732
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
21734
21733
|
operations?: ({
|
|
@@ -21801,12 +21800,14 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
21801
21800
|
key: string;
|
|
21802
21801
|
})[] | undefined;
|
|
21803
21802
|
} | undefined;
|
|
21804
|
-
|
|
21803
|
+
output?: string | undefined;
|
|
21805
21804
|
usage?: {
|
|
21806
21805
|
durationMs: number;
|
|
21807
21806
|
} | undefined;
|
|
21807
|
+
taskIdentifier?: string | undefined;
|
|
21808
21808
|
} | {
|
|
21809
21809
|
id: string;
|
|
21810
|
+
ok: false;
|
|
21810
21811
|
error: {
|
|
21811
21812
|
type: "INTERNAL_ERROR";
|
|
21812
21813
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -21824,10 +21825,9 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
21824
21825
|
type: "STRING_ERROR";
|
|
21825
21826
|
raw: string;
|
|
21826
21827
|
};
|
|
21827
|
-
ok: false;
|
|
21828
21828
|
retry?: {
|
|
21829
|
-
delay: number;
|
|
21830
21829
|
timestamp: number;
|
|
21830
|
+
delay: number;
|
|
21831
21831
|
error?: unknown;
|
|
21832
21832
|
} | undefined;
|
|
21833
21833
|
metadata?: {
|
|
@@ -21902,10 +21902,10 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
21902
21902
|
key: string;
|
|
21903
21903
|
})[] | undefined;
|
|
21904
21904
|
} | undefined;
|
|
21905
|
-
taskIdentifier?: string | undefined;
|
|
21906
21905
|
usage?: {
|
|
21907
21906
|
durationMs: number;
|
|
21908
21907
|
} | undefined;
|
|
21908
|
+
taskIdentifier?: string | undefined;
|
|
21909
21909
|
skippedRetrying?: boolean | undefined;
|
|
21910
21910
|
})[];
|
|
21911
21911
|
executions: {
|
|
@@ -21976,9 +21976,8 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
21976
21976
|
attemptId: string;
|
|
21977
21977
|
completions: ({
|
|
21978
21978
|
id: string;
|
|
21979
|
-
outputType: string;
|
|
21980
21979
|
ok: true;
|
|
21981
|
-
|
|
21980
|
+
outputType: string;
|
|
21982
21981
|
metadata?: {
|
|
21983
21982
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
21984
21983
|
operations?: ({
|
|
@@ -22051,12 +22050,14 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
22051
22050
|
key: string;
|
|
22052
22051
|
})[] | undefined;
|
|
22053
22052
|
} | undefined;
|
|
22054
|
-
|
|
22053
|
+
output?: string | undefined;
|
|
22055
22054
|
usage?: {
|
|
22056
22055
|
durationMs: number;
|
|
22057
22056
|
} | undefined;
|
|
22057
|
+
taskIdentifier?: string | undefined;
|
|
22058
22058
|
} | {
|
|
22059
22059
|
id: string;
|
|
22060
|
+
ok: false;
|
|
22060
22061
|
error: {
|
|
22061
22062
|
type: "INTERNAL_ERROR";
|
|
22062
22063
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -22074,10 +22075,9 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
22074
22075
|
type: "STRING_ERROR";
|
|
22075
22076
|
raw: string;
|
|
22076
22077
|
};
|
|
22077
|
-
ok: false;
|
|
22078
22078
|
retry?: {
|
|
22079
|
-
delay: number;
|
|
22080
22079
|
timestamp: number;
|
|
22080
|
+
delay: number;
|
|
22081
22081
|
error?: unknown;
|
|
22082
22082
|
} | undefined;
|
|
22083
22083
|
metadata?: {
|
|
@@ -22152,10 +22152,10 @@ export declare const PlatformToCoordinatorMessages: {
|
|
|
22152
22152
|
key: string;
|
|
22153
22153
|
})[] | undefined;
|
|
22154
22154
|
} | undefined;
|
|
22155
|
-
taskIdentifier?: string | undefined;
|
|
22156
22155
|
usage?: {
|
|
22157
22156
|
durationMs: number;
|
|
22158
22157
|
} | undefined;
|
|
22158
|
+
taskIdentifier?: string | undefined;
|
|
22159
22159
|
skippedRetrying?: boolean | undefined;
|
|
22160
22160
|
})[];
|
|
22161
22161
|
executions: {
|
|
@@ -22727,9 +22727,8 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
22727
22727
|
}>>;
|
|
22728
22728
|
}, "strip", z.ZodTypeAny, {
|
|
22729
22729
|
id: string;
|
|
22730
|
-
outputType: string;
|
|
22731
22730
|
ok: true;
|
|
22732
|
-
|
|
22731
|
+
outputType: string;
|
|
22733
22732
|
metadata?: {
|
|
22734
22733
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
22735
22734
|
operations?: ({
|
|
@@ -22802,15 +22801,15 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
22802
22801
|
key: string;
|
|
22803
22802
|
})[] | undefined;
|
|
22804
22803
|
} | undefined;
|
|
22805
|
-
|
|
22804
|
+
output?: string | undefined;
|
|
22806
22805
|
usage?: {
|
|
22807
22806
|
durationMs: number;
|
|
22808
22807
|
} | undefined;
|
|
22808
|
+
taskIdentifier?: string | undefined;
|
|
22809
22809
|
}, {
|
|
22810
22810
|
id: string;
|
|
22811
|
-
outputType: string;
|
|
22812
22811
|
ok: true;
|
|
22813
|
-
|
|
22812
|
+
outputType: string;
|
|
22814
22813
|
metadata?: {
|
|
22815
22814
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
22816
22815
|
operations?: ({
|
|
@@ -22883,10 +22882,11 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
22883
22882
|
key: string;
|
|
22884
22883
|
})[] | undefined;
|
|
22885
22884
|
} | undefined;
|
|
22886
|
-
|
|
22885
|
+
output?: string | undefined;
|
|
22887
22886
|
usage?: {
|
|
22888
22887
|
durationMs: number;
|
|
22889
22888
|
} | undefined;
|
|
22889
|
+
taskIdentifier?: string | undefined;
|
|
22890
22890
|
}>, z.ZodObject<{
|
|
22891
22891
|
ok: z.ZodLiteral<false>;
|
|
22892
22892
|
id: z.ZodString;
|
|
@@ -22944,12 +22944,12 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
22944
22944
|
delay: z.ZodNumber;
|
|
22945
22945
|
error: z.ZodOptional<z.ZodUnknown>;
|
|
22946
22946
|
}, "strip", z.ZodTypeAny, {
|
|
22947
|
-
delay: number;
|
|
22948
22947
|
timestamp: number;
|
|
22948
|
+
delay: number;
|
|
22949
22949
|
error?: unknown;
|
|
22950
22950
|
}, {
|
|
22951
|
-
delay: number;
|
|
22952
22951
|
timestamp: number;
|
|
22952
|
+
delay: number;
|
|
22953
22953
|
error?: unknown;
|
|
22954
22954
|
}>>;
|
|
22955
22955
|
skippedRetrying: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -23309,6 +23309,7 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
23309
23309
|
}>>;
|
|
23310
23310
|
}, "strip", z.ZodTypeAny, {
|
|
23311
23311
|
id: string;
|
|
23312
|
+
ok: false;
|
|
23312
23313
|
error: {
|
|
23313
23314
|
type: "INTERNAL_ERROR";
|
|
23314
23315
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -23326,10 +23327,9 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
23326
23327
|
type: "STRING_ERROR";
|
|
23327
23328
|
raw: string;
|
|
23328
23329
|
};
|
|
23329
|
-
ok: false;
|
|
23330
23330
|
retry?: {
|
|
23331
|
-
delay: number;
|
|
23332
23331
|
timestamp: number;
|
|
23332
|
+
delay: number;
|
|
23333
23333
|
error?: unknown;
|
|
23334
23334
|
} | undefined;
|
|
23335
23335
|
metadata?: {
|
|
@@ -23404,13 +23404,14 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
23404
23404
|
key: string;
|
|
23405
23405
|
})[] | undefined;
|
|
23406
23406
|
} | undefined;
|
|
23407
|
-
taskIdentifier?: string | undefined;
|
|
23408
23407
|
usage?: {
|
|
23409
23408
|
durationMs: number;
|
|
23410
23409
|
} | undefined;
|
|
23410
|
+
taskIdentifier?: string | undefined;
|
|
23411
23411
|
skippedRetrying?: boolean | undefined;
|
|
23412
23412
|
}, {
|
|
23413
23413
|
id: string;
|
|
23414
|
+
ok: false;
|
|
23414
23415
|
error: {
|
|
23415
23416
|
type: "INTERNAL_ERROR";
|
|
23416
23417
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -23428,10 +23429,9 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
23428
23429
|
type: "STRING_ERROR";
|
|
23429
23430
|
raw: string;
|
|
23430
23431
|
};
|
|
23431
|
-
ok: false;
|
|
23432
23432
|
retry?: {
|
|
23433
|
-
delay: number;
|
|
23434
23433
|
timestamp: number;
|
|
23434
|
+
delay: number;
|
|
23435
23435
|
error?: unknown;
|
|
23436
23436
|
} | undefined;
|
|
23437
23437
|
metadata?: {
|
|
@@ -23506,10 +23506,10 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
23506
23506
|
key: string;
|
|
23507
23507
|
})[] | undefined;
|
|
23508
23508
|
} | undefined;
|
|
23509
|
-
taskIdentifier?: string | undefined;
|
|
23510
23509
|
usage?: {
|
|
23511
23510
|
durationMs: number;
|
|
23512
23511
|
} | undefined;
|
|
23512
|
+
taskIdentifier?: string | undefined;
|
|
23513
23513
|
skippedRetrying?: boolean | undefined;
|
|
23514
23514
|
}>]>;
|
|
23515
23515
|
execution: z.ZodObject<{
|
|
@@ -23865,9 +23865,8 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
23865
23865
|
};
|
|
23866
23866
|
completion: {
|
|
23867
23867
|
id: string;
|
|
23868
|
-
outputType: string;
|
|
23869
23868
|
ok: true;
|
|
23870
|
-
|
|
23869
|
+
outputType: string;
|
|
23871
23870
|
metadata?: {
|
|
23872
23871
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
23873
23872
|
operations?: ({
|
|
@@ -23940,12 +23939,14 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
23940
23939
|
key: string;
|
|
23941
23940
|
})[] | undefined;
|
|
23942
23941
|
} | undefined;
|
|
23943
|
-
|
|
23942
|
+
output?: string | undefined;
|
|
23944
23943
|
usage?: {
|
|
23945
23944
|
durationMs: number;
|
|
23946
23945
|
} | undefined;
|
|
23946
|
+
taskIdentifier?: string | undefined;
|
|
23947
23947
|
} | {
|
|
23948
23948
|
id: string;
|
|
23949
|
+
ok: false;
|
|
23949
23950
|
error: {
|
|
23950
23951
|
type: "INTERNAL_ERROR";
|
|
23951
23952
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -23963,10 +23964,9 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
23963
23964
|
type: "STRING_ERROR";
|
|
23964
23965
|
raw: string;
|
|
23965
23966
|
};
|
|
23966
|
-
ok: false;
|
|
23967
23967
|
retry?: {
|
|
23968
|
-
delay: number;
|
|
23969
23968
|
timestamp: number;
|
|
23969
|
+
delay: number;
|
|
23970
23970
|
error?: unknown;
|
|
23971
23971
|
} | undefined;
|
|
23972
23972
|
metadata?: {
|
|
@@ -24041,10 +24041,10 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
24041
24041
|
key: string;
|
|
24042
24042
|
})[] | undefined;
|
|
24043
24043
|
} | undefined;
|
|
24044
|
-
taskIdentifier?: string | undefined;
|
|
24045
24044
|
usage?: {
|
|
24046
24045
|
durationMs: number;
|
|
24047
24046
|
} | undefined;
|
|
24047
|
+
taskIdentifier?: string | undefined;
|
|
24048
24048
|
skippedRetrying?: boolean | undefined;
|
|
24049
24049
|
};
|
|
24050
24050
|
}, {
|
|
@@ -24113,9 +24113,8 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
24113
24113
|
};
|
|
24114
24114
|
completion: {
|
|
24115
24115
|
id: string;
|
|
24116
|
-
outputType: string;
|
|
24117
24116
|
ok: true;
|
|
24118
|
-
|
|
24117
|
+
outputType: string;
|
|
24119
24118
|
metadata?: {
|
|
24120
24119
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
24121
24120
|
operations?: ({
|
|
@@ -24188,12 +24187,14 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
24188
24187
|
key: string;
|
|
24189
24188
|
})[] | undefined;
|
|
24190
24189
|
} | undefined;
|
|
24191
|
-
|
|
24190
|
+
output?: string | undefined;
|
|
24192
24191
|
usage?: {
|
|
24193
24192
|
durationMs: number;
|
|
24194
24193
|
} | undefined;
|
|
24194
|
+
taskIdentifier?: string | undefined;
|
|
24195
24195
|
} | {
|
|
24196
24196
|
id: string;
|
|
24197
|
+
ok: false;
|
|
24197
24198
|
error: {
|
|
24198
24199
|
type: "INTERNAL_ERROR";
|
|
24199
24200
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -24211,10 +24212,9 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
24211
24212
|
type: "STRING_ERROR";
|
|
24212
24213
|
raw: string;
|
|
24213
24214
|
};
|
|
24214
|
-
ok: false;
|
|
24215
24215
|
retry?: {
|
|
24216
|
-
delay: number;
|
|
24217
24216
|
timestamp: number;
|
|
24217
|
+
delay: number;
|
|
24218
24218
|
error?: unknown;
|
|
24219
24219
|
} | undefined;
|
|
24220
24220
|
metadata?: {
|
|
@@ -24289,10 +24289,10 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
24289
24289
|
key: string;
|
|
24290
24290
|
})[] | undefined;
|
|
24291
24291
|
} | undefined;
|
|
24292
|
-
taskIdentifier?: string | undefined;
|
|
24293
24292
|
usage?: {
|
|
24294
24293
|
durationMs: number;
|
|
24295
24294
|
} | undefined;
|
|
24295
|
+
taskIdentifier?: string | undefined;
|
|
24296
24296
|
skippedRetrying?: boolean | undefined;
|
|
24297
24297
|
};
|
|
24298
24298
|
version?: "v1" | undefined;
|
|
@@ -24356,12 +24356,12 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
24356
24356
|
delay: z.ZodNumber;
|
|
24357
24357
|
error: z.ZodOptional<z.ZodUnknown>;
|
|
24358
24358
|
}, "strip", z.ZodTypeAny, {
|
|
24359
|
-
delay: number;
|
|
24360
24359
|
timestamp: number;
|
|
24360
|
+
delay: number;
|
|
24361
24361
|
error?: unknown;
|
|
24362
24362
|
}, {
|
|
24363
|
-
delay: number;
|
|
24364
24363
|
timestamp: number;
|
|
24364
|
+
delay: number;
|
|
24365
24365
|
error?: unknown;
|
|
24366
24366
|
}>>;
|
|
24367
24367
|
skippedRetrying: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -24721,6 +24721,7 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
24721
24721
|
}>>;
|
|
24722
24722
|
}, "strip", z.ZodTypeAny, {
|
|
24723
24723
|
id: string;
|
|
24724
|
+
ok: false;
|
|
24724
24725
|
error: {
|
|
24725
24726
|
type: "INTERNAL_ERROR";
|
|
24726
24727
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -24738,10 +24739,9 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
24738
24739
|
type: "STRING_ERROR";
|
|
24739
24740
|
raw: string;
|
|
24740
24741
|
};
|
|
24741
|
-
ok: false;
|
|
24742
24742
|
retry?: {
|
|
24743
|
-
delay: number;
|
|
24744
24743
|
timestamp: number;
|
|
24744
|
+
delay: number;
|
|
24745
24745
|
error?: unknown;
|
|
24746
24746
|
} | undefined;
|
|
24747
24747
|
metadata?: {
|
|
@@ -24816,13 +24816,14 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
24816
24816
|
key: string;
|
|
24817
24817
|
})[] | undefined;
|
|
24818
24818
|
} | undefined;
|
|
24819
|
-
taskIdentifier?: string | undefined;
|
|
24820
24819
|
usage?: {
|
|
24821
24820
|
durationMs: number;
|
|
24822
24821
|
} | undefined;
|
|
24822
|
+
taskIdentifier?: string | undefined;
|
|
24823
24823
|
skippedRetrying?: boolean | undefined;
|
|
24824
24824
|
}, {
|
|
24825
24825
|
id: string;
|
|
24826
|
+
ok: false;
|
|
24826
24827
|
error: {
|
|
24827
24828
|
type: "INTERNAL_ERROR";
|
|
24828
24829
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -24840,10 +24841,9 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
24840
24841
|
type: "STRING_ERROR";
|
|
24841
24842
|
raw: string;
|
|
24842
24843
|
};
|
|
24843
|
-
ok: false;
|
|
24844
24844
|
retry?: {
|
|
24845
|
-
delay: number;
|
|
24846
24845
|
timestamp: number;
|
|
24846
|
+
delay: number;
|
|
24847
24847
|
error?: unknown;
|
|
24848
24848
|
} | undefined;
|
|
24849
24849
|
metadata?: {
|
|
@@ -24918,10 +24918,10 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
24918
24918
|
key: string;
|
|
24919
24919
|
})[] | undefined;
|
|
24920
24920
|
} | undefined;
|
|
24921
|
-
taskIdentifier?: string | undefined;
|
|
24922
24921
|
usage?: {
|
|
24923
24922
|
durationMs: number;
|
|
24924
24923
|
} | undefined;
|
|
24924
|
+
taskIdentifier?: string | undefined;
|
|
24925
24925
|
skippedRetrying?: boolean | undefined;
|
|
24926
24926
|
}>;
|
|
24927
24927
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -24929,6 +24929,7 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
24929
24929
|
version: "v1";
|
|
24930
24930
|
completion: {
|
|
24931
24931
|
id: string;
|
|
24932
|
+
ok: false;
|
|
24932
24933
|
error: {
|
|
24933
24934
|
type: "INTERNAL_ERROR";
|
|
24934
24935
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -24946,10 +24947,9 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
24946
24947
|
type: "STRING_ERROR";
|
|
24947
24948
|
raw: string;
|
|
24948
24949
|
};
|
|
24949
|
-
ok: false;
|
|
24950
24950
|
retry?: {
|
|
24951
|
-
delay: number;
|
|
24952
24951
|
timestamp: number;
|
|
24952
|
+
delay: number;
|
|
24953
24953
|
error?: unknown;
|
|
24954
24954
|
} | undefined;
|
|
24955
24955
|
metadata?: {
|
|
@@ -25024,16 +25024,17 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
25024
25024
|
key: string;
|
|
25025
25025
|
})[] | undefined;
|
|
25026
25026
|
} | undefined;
|
|
25027
|
-
taskIdentifier?: string | undefined;
|
|
25028
25027
|
usage?: {
|
|
25029
25028
|
durationMs: number;
|
|
25030
25029
|
} | undefined;
|
|
25030
|
+
taskIdentifier?: string | undefined;
|
|
25031
25031
|
skippedRetrying?: boolean | undefined;
|
|
25032
25032
|
};
|
|
25033
25033
|
}, {
|
|
25034
25034
|
type: "TASK_RUN_FAILED_TO_RUN";
|
|
25035
25035
|
completion: {
|
|
25036
25036
|
id: string;
|
|
25037
|
+
ok: false;
|
|
25037
25038
|
error: {
|
|
25038
25039
|
type: "INTERNAL_ERROR";
|
|
25039
25040
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -25051,10 +25052,9 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
25051
25052
|
type: "STRING_ERROR";
|
|
25052
25053
|
raw: string;
|
|
25053
25054
|
};
|
|
25054
|
-
ok: false;
|
|
25055
25055
|
retry?: {
|
|
25056
|
-
delay: number;
|
|
25057
25056
|
timestamp: number;
|
|
25057
|
+
delay: number;
|
|
25058
25058
|
error?: unknown;
|
|
25059
25059
|
} | undefined;
|
|
25060
25060
|
metadata?: {
|
|
@@ -25129,10 +25129,10 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
25129
25129
|
key: string;
|
|
25130
25130
|
})[] | undefined;
|
|
25131
25131
|
} | undefined;
|
|
25132
|
-
taskIdentifier?: string | undefined;
|
|
25133
25132
|
usage?: {
|
|
25134
25133
|
durationMs: number;
|
|
25135
25134
|
} | undefined;
|
|
25135
|
+
taskIdentifier?: string | undefined;
|
|
25136
25136
|
skippedRetrying?: boolean | undefined;
|
|
25137
25137
|
};
|
|
25138
25138
|
version?: "v1" | undefined;
|
|
@@ -25231,9 +25231,8 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
25231
25231
|
};
|
|
25232
25232
|
completion: {
|
|
25233
25233
|
id: string;
|
|
25234
|
-
outputType: string;
|
|
25235
25234
|
ok: true;
|
|
25236
|
-
|
|
25235
|
+
outputType: string;
|
|
25237
25236
|
metadata?: {
|
|
25238
25237
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
25239
25238
|
operations?: ({
|
|
@@ -25306,12 +25305,14 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
25306
25305
|
key: string;
|
|
25307
25306
|
})[] | undefined;
|
|
25308
25307
|
} | undefined;
|
|
25309
|
-
|
|
25308
|
+
output?: string | undefined;
|
|
25310
25309
|
usage?: {
|
|
25311
25310
|
durationMs: number;
|
|
25312
25311
|
} | undefined;
|
|
25312
|
+
taskIdentifier?: string | undefined;
|
|
25313
25313
|
} | {
|
|
25314
25314
|
id: string;
|
|
25315
|
+
ok: false;
|
|
25315
25316
|
error: {
|
|
25316
25317
|
type: "INTERNAL_ERROR";
|
|
25317
25318
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -25329,10 +25330,9 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
25329
25330
|
type: "STRING_ERROR";
|
|
25330
25331
|
raw: string;
|
|
25331
25332
|
};
|
|
25332
|
-
ok: false;
|
|
25333
25333
|
retry?: {
|
|
25334
|
-
delay: number;
|
|
25335
25334
|
timestamp: number;
|
|
25335
|
+
delay: number;
|
|
25336
25336
|
error?: unknown;
|
|
25337
25337
|
} | undefined;
|
|
25338
25338
|
metadata?: {
|
|
@@ -25407,10 +25407,10 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
25407
25407
|
key: string;
|
|
25408
25408
|
})[] | undefined;
|
|
25409
25409
|
} | undefined;
|
|
25410
|
-
taskIdentifier?: string | undefined;
|
|
25411
25410
|
usage?: {
|
|
25412
25411
|
durationMs: number;
|
|
25413
25412
|
} | undefined;
|
|
25413
|
+
taskIdentifier?: string | undefined;
|
|
25414
25414
|
skippedRetrying?: boolean | undefined;
|
|
25415
25415
|
};
|
|
25416
25416
|
} | {
|
|
@@ -25418,6 +25418,7 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
25418
25418
|
version: "v1";
|
|
25419
25419
|
completion: {
|
|
25420
25420
|
id: string;
|
|
25421
|
+
ok: false;
|
|
25421
25422
|
error: {
|
|
25422
25423
|
type: "INTERNAL_ERROR";
|
|
25423
25424
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -25435,10 +25436,9 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
25435
25436
|
type: "STRING_ERROR";
|
|
25436
25437
|
raw: string;
|
|
25437
25438
|
};
|
|
25438
|
-
ok: false;
|
|
25439
25439
|
retry?: {
|
|
25440
|
-
delay: number;
|
|
25441
25440
|
timestamp: number;
|
|
25441
|
+
delay: number;
|
|
25442
25442
|
error?: unknown;
|
|
25443
25443
|
} | undefined;
|
|
25444
25444
|
metadata?: {
|
|
@@ -25513,10 +25513,10 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
25513
25513
|
key: string;
|
|
25514
25514
|
})[] | undefined;
|
|
25515
25515
|
} | undefined;
|
|
25516
|
-
taskIdentifier?: string | undefined;
|
|
25517
25516
|
usage?: {
|
|
25518
25517
|
durationMs: number;
|
|
25519
25518
|
} | undefined;
|
|
25519
|
+
taskIdentifier?: string | undefined;
|
|
25520
25520
|
skippedRetrying?: boolean | undefined;
|
|
25521
25521
|
};
|
|
25522
25522
|
} | {
|
|
@@ -25596,9 +25596,8 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
25596
25596
|
};
|
|
25597
25597
|
completion: {
|
|
25598
25598
|
id: string;
|
|
25599
|
-
outputType: string;
|
|
25600
25599
|
ok: true;
|
|
25601
|
-
|
|
25600
|
+
outputType: string;
|
|
25602
25601
|
metadata?: {
|
|
25603
25602
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
25604
25603
|
operations?: ({
|
|
@@ -25671,12 +25670,14 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
25671
25670
|
key: string;
|
|
25672
25671
|
})[] | undefined;
|
|
25673
25672
|
} | undefined;
|
|
25674
|
-
|
|
25673
|
+
output?: string | undefined;
|
|
25675
25674
|
usage?: {
|
|
25676
25675
|
durationMs: number;
|
|
25677
25676
|
} | undefined;
|
|
25677
|
+
taskIdentifier?: string | undefined;
|
|
25678
25678
|
} | {
|
|
25679
25679
|
id: string;
|
|
25680
|
+
ok: false;
|
|
25680
25681
|
error: {
|
|
25681
25682
|
type: "INTERNAL_ERROR";
|
|
25682
25683
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -25694,10 +25695,9 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
25694
25695
|
type: "STRING_ERROR";
|
|
25695
25696
|
raw: string;
|
|
25696
25697
|
};
|
|
25697
|
-
ok: false;
|
|
25698
25698
|
retry?: {
|
|
25699
|
-
delay: number;
|
|
25700
25699
|
timestamp: number;
|
|
25700
|
+
delay: number;
|
|
25701
25701
|
error?: unknown;
|
|
25702
25702
|
} | undefined;
|
|
25703
25703
|
metadata?: {
|
|
@@ -25772,10 +25772,10 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
25772
25772
|
key: string;
|
|
25773
25773
|
})[] | undefined;
|
|
25774
25774
|
} | undefined;
|
|
25775
|
-
taskIdentifier?: string | undefined;
|
|
25776
25775
|
usage?: {
|
|
25777
25776
|
durationMs: number;
|
|
25778
25777
|
} | undefined;
|
|
25778
|
+
taskIdentifier?: string | undefined;
|
|
25779
25779
|
skippedRetrying?: boolean | undefined;
|
|
25780
25780
|
};
|
|
25781
25781
|
version?: "v1" | undefined;
|
|
@@ -25783,6 +25783,7 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
25783
25783
|
type: "TASK_RUN_FAILED_TO_RUN";
|
|
25784
25784
|
completion: {
|
|
25785
25785
|
id: string;
|
|
25786
|
+
ok: false;
|
|
25786
25787
|
error: {
|
|
25787
25788
|
type: "INTERNAL_ERROR";
|
|
25788
25789
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -25800,10 +25801,9 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
25800
25801
|
type: "STRING_ERROR";
|
|
25801
25802
|
raw: string;
|
|
25802
25803
|
};
|
|
25803
|
-
ok: false;
|
|
25804
25804
|
retry?: {
|
|
25805
|
-
delay: number;
|
|
25806
25805
|
timestamp: number;
|
|
25806
|
+
delay: number;
|
|
25807
25807
|
error?: unknown;
|
|
25808
25808
|
} | undefined;
|
|
25809
25809
|
metadata?: {
|
|
@@ -25878,10 +25878,10 @@ export declare const ClientToSharedQueueMessages: {
|
|
|
25878
25878
|
key: string;
|
|
25879
25879
|
})[] | undefined;
|
|
25880
25880
|
} | undefined;
|
|
25881
|
-
taskIdentifier?: string | undefined;
|
|
25882
25881
|
usage?: {
|
|
25883
25882
|
durationMs: number;
|
|
25884
25883
|
} | undefined;
|
|
25884
|
+
taskIdentifier?: string | undefined;
|
|
25885
25885
|
skippedRetrying?: boolean | undefined;
|
|
25886
25886
|
};
|
|
25887
25887
|
version?: "v1" | undefined;
|
|
@@ -27318,9 +27318,8 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
27318
27318
|
}>>;
|
|
27319
27319
|
}, "strip", z.ZodTypeAny, {
|
|
27320
27320
|
id: string;
|
|
27321
|
-
outputType: string;
|
|
27322
27321
|
ok: true;
|
|
27323
|
-
|
|
27322
|
+
outputType: string;
|
|
27324
27323
|
metadata?: {
|
|
27325
27324
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
27326
27325
|
operations?: ({
|
|
@@ -27393,15 +27392,15 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
27393
27392
|
key: string;
|
|
27394
27393
|
})[] | undefined;
|
|
27395
27394
|
} | undefined;
|
|
27396
|
-
|
|
27395
|
+
output?: string | undefined;
|
|
27397
27396
|
usage?: {
|
|
27398
27397
|
durationMs: number;
|
|
27399
27398
|
} | undefined;
|
|
27399
|
+
taskIdentifier?: string | undefined;
|
|
27400
27400
|
}, {
|
|
27401
27401
|
id: string;
|
|
27402
|
-
outputType: string;
|
|
27403
27402
|
ok: true;
|
|
27404
|
-
|
|
27403
|
+
outputType: string;
|
|
27405
27404
|
metadata?: {
|
|
27406
27405
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
27407
27406
|
operations?: ({
|
|
@@ -27474,10 +27473,11 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
27474
27473
|
key: string;
|
|
27475
27474
|
})[] | undefined;
|
|
27476
27475
|
} | undefined;
|
|
27477
|
-
|
|
27476
|
+
output?: string | undefined;
|
|
27478
27477
|
usage?: {
|
|
27479
27478
|
durationMs: number;
|
|
27480
27479
|
} | undefined;
|
|
27480
|
+
taskIdentifier?: string | undefined;
|
|
27481
27481
|
}>, z.ZodObject<{
|
|
27482
27482
|
ok: z.ZodLiteral<false>;
|
|
27483
27483
|
id: z.ZodString;
|
|
@@ -27535,12 +27535,12 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
27535
27535
|
delay: z.ZodNumber;
|
|
27536
27536
|
error: z.ZodOptional<z.ZodUnknown>;
|
|
27537
27537
|
}, "strip", z.ZodTypeAny, {
|
|
27538
|
-
delay: number;
|
|
27539
27538
|
timestamp: number;
|
|
27539
|
+
delay: number;
|
|
27540
27540
|
error?: unknown;
|
|
27541
27541
|
}, {
|
|
27542
|
-
delay: number;
|
|
27543
27542
|
timestamp: number;
|
|
27543
|
+
delay: number;
|
|
27544
27544
|
error?: unknown;
|
|
27545
27545
|
}>>;
|
|
27546
27546
|
skippedRetrying: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -27900,6 +27900,7 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
27900
27900
|
}>>;
|
|
27901
27901
|
}, "strip", z.ZodTypeAny, {
|
|
27902
27902
|
id: string;
|
|
27903
|
+
ok: false;
|
|
27903
27904
|
error: {
|
|
27904
27905
|
type: "INTERNAL_ERROR";
|
|
27905
27906
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -27917,10 +27918,9 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
27917
27918
|
type: "STRING_ERROR";
|
|
27918
27919
|
raw: string;
|
|
27919
27920
|
};
|
|
27920
|
-
ok: false;
|
|
27921
27921
|
retry?: {
|
|
27922
|
-
delay: number;
|
|
27923
27922
|
timestamp: number;
|
|
27923
|
+
delay: number;
|
|
27924
27924
|
error?: unknown;
|
|
27925
27925
|
} | undefined;
|
|
27926
27926
|
metadata?: {
|
|
@@ -27995,13 +27995,14 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
27995
27995
|
key: string;
|
|
27996
27996
|
})[] | undefined;
|
|
27997
27997
|
} | undefined;
|
|
27998
|
-
taskIdentifier?: string | undefined;
|
|
27999
27998
|
usage?: {
|
|
28000
27999
|
durationMs: number;
|
|
28001
28000
|
} | undefined;
|
|
28001
|
+
taskIdentifier?: string | undefined;
|
|
28002
28002
|
skippedRetrying?: boolean | undefined;
|
|
28003
28003
|
}, {
|
|
28004
28004
|
id: string;
|
|
28005
|
+
ok: false;
|
|
28005
28006
|
error: {
|
|
28006
28007
|
type: "INTERNAL_ERROR";
|
|
28007
28008
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -28019,10 +28020,9 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
28019
28020
|
type: "STRING_ERROR";
|
|
28020
28021
|
raw: string;
|
|
28021
28022
|
};
|
|
28022
|
-
ok: false;
|
|
28023
28023
|
retry?: {
|
|
28024
|
-
delay: number;
|
|
28025
28024
|
timestamp: number;
|
|
28025
|
+
delay: number;
|
|
28026
28026
|
error?: unknown;
|
|
28027
28027
|
} | undefined;
|
|
28028
28028
|
metadata?: {
|
|
@@ -28097,10 +28097,10 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
28097
28097
|
key: string;
|
|
28098
28098
|
})[] | undefined;
|
|
28099
28099
|
} | undefined;
|
|
28100
|
-
taskIdentifier?: string | undefined;
|
|
28101
28100
|
usage?: {
|
|
28102
28101
|
durationMs: number;
|
|
28103
28102
|
} | undefined;
|
|
28103
|
+
taskIdentifier?: string | undefined;
|
|
28104
28104
|
skippedRetrying?: boolean | undefined;
|
|
28105
28105
|
}>]>;
|
|
28106
28106
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -28174,9 +28174,8 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
28174
28174
|
};
|
|
28175
28175
|
completion: {
|
|
28176
28176
|
id: string;
|
|
28177
|
-
outputType: string;
|
|
28178
28177
|
ok: true;
|
|
28179
|
-
|
|
28178
|
+
outputType: string;
|
|
28180
28179
|
metadata?: {
|
|
28181
28180
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
28182
28181
|
operations?: ({
|
|
@@ -28249,12 +28248,14 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
28249
28248
|
key: string;
|
|
28250
28249
|
})[] | undefined;
|
|
28251
28250
|
} | undefined;
|
|
28252
|
-
|
|
28251
|
+
output?: string | undefined;
|
|
28253
28252
|
usage?: {
|
|
28254
28253
|
durationMs: number;
|
|
28255
28254
|
} | undefined;
|
|
28255
|
+
taskIdentifier?: string | undefined;
|
|
28256
28256
|
} | {
|
|
28257
28257
|
id: string;
|
|
28258
|
+
ok: false;
|
|
28258
28259
|
error: {
|
|
28259
28260
|
type: "INTERNAL_ERROR";
|
|
28260
28261
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -28272,10 +28273,9 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
28272
28273
|
type: "STRING_ERROR";
|
|
28273
28274
|
raw: string;
|
|
28274
28275
|
};
|
|
28275
|
-
ok: false;
|
|
28276
28276
|
retry?: {
|
|
28277
|
-
delay: number;
|
|
28278
28277
|
timestamp: number;
|
|
28278
|
+
delay: number;
|
|
28279
28279
|
error?: unknown;
|
|
28280
28280
|
} | undefined;
|
|
28281
28281
|
metadata?: {
|
|
@@ -28350,10 +28350,10 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
28350
28350
|
key: string;
|
|
28351
28351
|
})[] | undefined;
|
|
28352
28352
|
} | undefined;
|
|
28353
|
-
taskIdentifier?: string | undefined;
|
|
28354
28353
|
usage?: {
|
|
28355
28354
|
durationMs: number;
|
|
28356
28355
|
} | undefined;
|
|
28356
|
+
taskIdentifier?: string | undefined;
|
|
28357
28357
|
skippedRetrying?: boolean | undefined;
|
|
28358
28358
|
};
|
|
28359
28359
|
}, {
|
|
@@ -28426,9 +28426,8 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
28426
28426
|
};
|
|
28427
28427
|
completion: {
|
|
28428
28428
|
id: string;
|
|
28429
|
-
outputType: string;
|
|
28430
28429
|
ok: true;
|
|
28431
|
-
|
|
28430
|
+
outputType: string;
|
|
28432
28431
|
metadata?: {
|
|
28433
28432
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
28434
28433
|
operations?: ({
|
|
@@ -28501,12 +28500,14 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
28501
28500
|
key: string;
|
|
28502
28501
|
})[] | undefined;
|
|
28503
28502
|
} | undefined;
|
|
28504
|
-
|
|
28503
|
+
output?: string | undefined;
|
|
28505
28504
|
usage?: {
|
|
28506
28505
|
durationMs: number;
|
|
28507
28506
|
} | undefined;
|
|
28507
|
+
taskIdentifier?: string | undefined;
|
|
28508
28508
|
} | {
|
|
28509
28509
|
id: string;
|
|
28510
|
+
ok: false;
|
|
28510
28511
|
error: {
|
|
28511
28512
|
type: "INTERNAL_ERROR";
|
|
28512
28513
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -28524,10 +28525,9 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
28524
28525
|
type: "STRING_ERROR";
|
|
28525
28526
|
raw: string;
|
|
28526
28527
|
};
|
|
28527
|
-
ok: false;
|
|
28528
28528
|
retry?: {
|
|
28529
|
-
delay: number;
|
|
28530
28529
|
timestamp: number;
|
|
28530
|
+
delay: number;
|
|
28531
28531
|
error?: unknown;
|
|
28532
28532
|
} | undefined;
|
|
28533
28533
|
metadata?: {
|
|
@@ -28602,10 +28602,10 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
28602
28602
|
key: string;
|
|
28603
28603
|
})[] | undefined;
|
|
28604
28604
|
} | undefined;
|
|
28605
|
-
taskIdentifier?: string | undefined;
|
|
28606
28605
|
usage?: {
|
|
28607
28606
|
durationMs: number;
|
|
28608
28607
|
} | undefined;
|
|
28608
|
+
taskIdentifier?: string | undefined;
|
|
28609
28609
|
skippedRetrying?: boolean | undefined;
|
|
28610
28610
|
};
|
|
28611
28611
|
version?: "v1" | "v2" | undefined;
|
|
@@ -28681,12 +28681,12 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
28681
28681
|
delay: z.ZodNumber;
|
|
28682
28682
|
error: z.ZodOptional<z.ZodUnknown>;
|
|
28683
28683
|
}, "strip", z.ZodTypeAny, {
|
|
28684
|
-
delay: number;
|
|
28685
28684
|
timestamp: number;
|
|
28685
|
+
delay: number;
|
|
28686
28686
|
error?: unknown;
|
|
28687
28687
|
}, {
|
|
28688
|
-
delay: number;
|
|
28689
28688
|
timestamp: number;
|
|
28689
|
+
delay: number;
|
|
28690
28690
|
error?: unknown;
|
|
28691
28691
|
}>>;
|
|
28692
28692
|
skippedRetrying: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -29046,6 +29046,7 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
29046
29046
|
}>>;
|
|
29047
29047
|
}, "strip", z.ZodTypeAny, {
|
|
29048
29048
|
id: string;
|
|
29049
|
+
ok: false;
|
|
29049
29050
|
error: {
|
|
29050
29051
|
type: "INTERNAL_ERROR";
|
|
29051
29052
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -29063,10 +29064,9 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
29063
29064
|
type: "STRING_ERROR";
|
|
29064
29065
|
raw: string;
|
|
29065
29066
|
};
|
|
29066
|
-
ok: false;
|
|
29067
29067
|
retry?: {
|
|
29068
|
-
delay: number;
|
|
29069
29068
|
timestamp: number;
|
|
29069
|
+
delay: number;
|
|
29070
29070
|
error?: unknown;
|
|
29071
29071
|
} | undefined;
|
|
29072
29072
|
metadata?: {
|
|
@@ -29141,13 +29141,14 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
29141
29141
|
key: string;
|
|
29142
29142
|
})[] | undefined;
|
|
29143
29143
|
} | undefined;
|
|
29144
|
-
taskIdentifier?: string | undefined;
|
|
29145
29144
|
usage?: {
|
|
29146
29145
|
durationMs: number;
|
|
29147
29146
|
} | undefined;
|
|
29147
|
+
taskIdentifier?: string | undefined;
|
|
29148
29148
|
skippedRetrying?: boolean | undefined;
|
|
29149
29149
|
}, {
|
|
29150
29150
|
id: string;
|
|
29151
|
+
ok: false;
|
|
29151
29152
|
error: {
|
|
29152
29153
|
type: "INTERNAL_ERROR";
|
|
29153
29154
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -29165,10 +29166,9 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
29165
29166
|
type: "STRING_ERROR";
|
|
29166
29167
|
raw: string;
|
|
29167
29168
|
};
|
|
29168
|
-
ok: false;
|
|
29169
29169
|
retry?: {
|
|
29170
|
-
delay: number;
|
|
29171
29170
|
timestamp: number;
|
|
29171
|
+
delay: number;
|
|
29172
29172
|
error?: unknown;
|
|
29173
29173
|
} | undefined;
|
|
29174
29174
|
metadata?: {
|
|
@@ -29243,16 +29243,17 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
29243
29243
|
key: string;
|
|
29244
29244
|
})[] | undefined;
|
|
29245
29245
|
} | undefined;
|
|
29246
|
-
taskIdentifier?: string | undefined;
|
|
29247
29246
|
usage?: {
|
|
29248
29247
|
durationMs: number;
|
|
29249
29248
|
} | undefined;
|
|
29249
|
+
taskIdentifier?: string | undefined;
|
|
29250
29250
|
skippedRetrying?: boolean | undefined;
|
|
29251
29251
|
}>;
|
|
29252
29252
|
}, "strip", z.ZodTypeAny, {
|
|
29253
29253
|
version: "v1";
|
|
29254
29254
|
completion: {
|
|
29255
29255
|
id: string;
|
|
29256
|
+
ok: false;
|
|
29256
29257
|
error: {
|
|
29257
29258
|
type: "INTERNAL_ERROR";
|
|
29258
29259
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -29270,10 +29271,9 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
29270
29271
|
type: "STRING_ERROR";
|
|
29271
29272
|
raw: string;
|
|
29272
29273
|
};
|
|
29273
|
-
ok: false;
|
|
29274
29274
|
retry?: {
|
|
29275
|
-
delay: number;
|
|
29276
29275
|
timestamp: number;
|
|
29276
|
+
delay: number;
|
|
29277
29277
|
error?: unknown;
|
|
29278
29278
|
} | undefined;
|
|
29279
29279
|
metadata?: {
|
|
@@ -29348,15 +29348,16 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
29348
29348
|
key: string;
|
|
29349
29349
|
})[] | undefined;
|
|
29350
29350
|
} | undefined;
|
|
29351
|
-
taskIdentifier?: string | undefined;
|
|
29352
29351
|
usage?: {
|
|
29353
29352
|
durationMs: number;
|
|
29354
29353
|
} | undefined;
|
|
29354
|
+
taskIdentifier?: string | undefined;
|
|
29355
29355
|
skippedRetrying?: boolean | undefined;
|
|
29356
29356
|
};
|
|
29357
29357
|
}, {
|
|
29358
29358
|
completion: {
|
|
29359
29359
|
id: string;
|
|
29360
|
+
ok: false;
|
|
29360
29361
|
error: {
|
|
29361
29362
|
type: "INTERNAL_ERROR";
|
|
29362
29363
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -29374,10 +29375,9 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
29374
29375
|
type: "STRING_ERROR";
|
|
29375
29376
|
raw: string;
|
|
29376
29377
|
};
|
|
29377
|
-
ok: false;
|
|
29378
29378
|
retry?: {
|
|
29379
|
-
delay: number;
|
|
29380
29379
|
timestamp: number;
|
|
29380
|
+
delay: number;
|
|
29381
29381
|
error?: unknown;
|
|
29382
29382
|
} | undefined;
|
|
29383
29383
|
metadata?: {
|
|
@@ -29452,10 +29452,10 @@ export declare const ProdWorkerToCoordinatorMessages: {
|
|
|
29452
29452
|
key: string;
|
|
29453
29453
|
})[] | undefined;
|
|
29454
29454
|
} | undefined;
|
|
29455
|
-
taskIdentifier?: string | undefined;
|
|
29456
29455
|
usage?: {
|
|
29457
29456
|
durationMs: number;
|
|
29458
29457
|
} | undefined;
|
|
29458
|
+
taskIdentifier?: string | undefined;
|
|
29459
29459
|
skippedRetrying?: boolean | undefined;
|
|
29460
29460
|
};
|
|
29461
29461
|
version?: "v1" | undefined;
|
|
@@ -30627,9 +30627,8 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
30627
30627
|
}>>;
|
|
30628
30628
|
}, "strip", z.ZodTypeAny, {
|
|
30629
30629
|
id: string;
|
|
30630
|
-
outputType: string;
|
|
30631
30630
|
ok: true;
|
|
30632
|
-
|
|
30631
|
+
outputType: string;
|
|
30633
30632
|
metadata?: {
|
|
30634
30633
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
30635
30634
|
operations?: ({
|
|
@@ -30702,15 +30701,15 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
30702
30701
|
key: string;
|
|
30703
30702
|
})[] | undefined;
|
|
30704
30703
|
} | undefined;
|
|
30705
|
-
|
|
30704
|
+
output?: string | undefined;
|
|
30706
30705
|
usage?: {
|
|
30707
30706
|
durationMs: number;
|
|
30708
30707
|
} | undefined;
|
|
30708
|
+
taskIdentifier?: string | undefined;
|
|
30709
30709
|
}, {
|
|
30710
30710
|
id: string;
|
|
30711
|
-
outputType: string;
|
|
30712
30711
|
ok: true;
|
|
30713
|
-
|
|
30712
|
+
outputType: string;
|
|
30714
30713
|
metadata?: {
|
|
30715
30714
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
30716
30715
|
operations?: ({
|
|
@@ -30783,10 +30782,11 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
30783
30782
|
key: string;
|
|
30784
30783
|
})[] | undefined;
|
|
30785
30784
|
} | undefined;
|
|
30786
|
-
|
|
30785
|
+
output?: string | undefined;
|
|
30787
30786
|
usage?: {
|
|
30788
30787
|
durationMs: number;
|
|
30789
30788
|
} | undefined;
|
|
30789
|
+
taskIdentifier?: string | undefined;
|
|
30790
30790
|
}>, z.ZodObject<{
|
|
30791
30791
|
ok: z.ZodLiteral<false>;
|
|
30792
30792
|
id: z.ZodString;
|
|
@@ -30844,12 +30844,12 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
30844
30844
|
delay: z.ZodNumber;
|
|
30845
30845
|
error: z.ZodOptional<z.ZodUnknown>;
|
|
30846
30846
|
}, "strip", z.ZodTypeAny, {
|
|
30847
|
-
delay: number;
|
|
30848
30847
|
timestamp: number;
|
|
30848
|
+
delay: number;
|
|
30849
30849
|
error?: unknown;
|
|
30850
30850
|
}, {
|
|
30851
|
-
delay: number;
|
|
30852
30851
|
timestamp: number;
|
|
30852
|
+
delay: number;
|
|
30853
30853
|
error?: unknown;
|
|
30854
30854
|
}>>;
|
|
30855
30855
|
skippedRetrying: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -31209,6 +31209,7 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
31209
31209
|
}>>;
|
|
31210
31210
|
}, "strip", z.ZodTypeAny, {
|
|
31211
31211
|
id: string;
|
|
31212
|
+
ok: false;
|
|
31212
31213
|
error: {
|
|
31213
31214
|
type: "INTERNAL_ERROR";
|
|
31214
31215
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -31226,10 +31227,9 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
31226
31227
|
type: "STRING_ERROR";
|
|
31227
31228
|
raw: string;
|
|
31228
31229
|
};
|
|
31229
|
-
ok: false;
|
|
31230
31230
|
retry?: {
|
|
31231
|
-
delay: number;
|
|
31232
31231
|
timestamp: number;
|
|
31232
|
+
delay: number;
|
|
31233
31233
|
error?: unknown;
|
|
31234
31234
|
} | undefined;
|
|
31235
31235
|
metadata?: {
|
|
@@ -31304,13 +31304,14 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
31304
31304
|
key: string;
|
|
31305
31305
|
})[] | undefined;
|
|
31306
31306
|
} | undefined;
|
|
31307
|
-
taskIdentifier?: string | undefined;
|
|
31308
31307
|
usage?: {
|
|
31309
31308
|
durationMs: number;
|
|
31310
31309
|
} | undefined;
|
|
31310
|
+
taskIdentifier?: string | undefined;
|
|
31311
31311
|
skippedRetrying?: boolean | undefined;
|
|
31312
31312
|
}, {
|
|
31313
31313
|
id: string;
|
|
31314
|
+
ok: false;
|
|
31314
31315
|
error: {
|
|
31315
31316
|
type: "INTERNAL_ERROR";
|
|
31316
31317
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -31328,10 +31329,9 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
31328
31329
|
type: "STRING_ERROR";
|
|
31329
31330
|
raw: string;
|
|
31330
31331
|
};
|
|
31331
|
-
ok: false;
|
|
31332
31332
|
retry?: {
|
|
31333
|
-
delay: number;
|
|
31334
31333
|
timestamp: number;
|
|
31334
|
+
delay: number;
|
|
31335
31335
|
error?: unknown;
|
|
31336
31336
|
} | undefined;
|
|
31337
31337
|
metadata?: {
|
|
@@ -31406,10 +31406,10 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
31406
31406
|
key: string;
|
|
31407
31407
|
})[] | undefined;
|
|
31408
31408
|
} | undefined;
|
|
31409
|
-
taskIdentifier?: string | undefined;
|
|
31410
31409
|
usage?: {
|
|
31411
31410
|
durationMs: number;
|
|
31412
31411
|
} | undefined;
|
|
31412
|
+
taskIdentifier?: string | undefined;
|
|
31413
31413
|
skippedRetrying?: boolean | undefined;
|
|
31414
31414
|
}>]>, "many">;
|
|
31415
31415
|
executions: z.ZodArray<z.ZodObject<{
|
|
@@ -31703,9 +31703,8 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
31703
31703
|
attemptId: string;
|
|
31704
31704
|
completions: ({
|
|
31705
31705
|
id: string;
|
|
31706
|
-
outputType: string;
|
|
31707
31706
|
ok: true;
|
|
31708
|
-
|
|
31707
|
+
outputType: string;
|
|
31709
31708
|
metadata?: {
|
|
31710
31709
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
31711
31710
|
operations?: ({
|
|
@@ -31778,12 +31777,14 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
31778
31777
|
key: string;
|
|
31779
31778
|
})[] | undefined;
|
|
31780
31779
|
} | undefined;
|
|
31781
|
-
|
|
31780
|
+
output?: string | undefined;
|
|
31782
31781
|
usage?: {
|
|
31783
31782
|
durationMs: number;
|
|
31784
31783
|
} | undefined;
|
|
31784
|
+
taskIdentifier?: string | undefined;
|
|
31785
31785
|
} | {
|
|
31786
31786
|
id: string;
|
|
31787
|
+
ok: false;
|
|
31787
31788
|
error: {
|
|
31788
31789
|
type: "INTERNAL_ERROR";
|
|
31789
31790
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -31801,10 +31802,9 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
31801
31802
|
type: "STRING_ERROR";
|
|
31802
31803
|
raw: string;
|
|
31803
31804
|
};
|
|
31804
|
-
ok: false;
|
|
31805
31805
|
retry?: {
|
|
31806
|
-
delay: number;
|
|
31807
31806
|
timestamp: number;
|
|
31807
|
+
delay: number;
|
|
31808
31808
|
error?: unknown;
|
|
31809
31809
|
} | undefined;
|
|
31810
31810
|
metadata?: {
|
|
@@ -31879,10 +31879,10 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
31879
31879
|
key: string;
|
|
31880
31880
|
})[] | undefined;
|
|
31881
31881
|
} | undefined;
|
|
31882
|
-
taskIdentifier?: string | undefined;
|
|
31883
31882
|
usage?: {
|
|
31884
31883
|
durationMs: number;
|
|
31885
31884
|
} | undefined;
|
|
31885
|
+
taskIdentifier?: string | undefined;
|
|
31886
31886
|
skippedRetrying?: boolean | undefined;
|
|
31887
31887
|
})[];
|
|
31888
31888
|
executions: {
|
|
@@ -31951,9 +31951,8 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
31951
31951
|
attemptId: string;
|
|
31952
31952
|
completions: ({
|
|
31953
31953
|
id: string;
|
|
31954
|
-
outputType: string;
|
|
31955
31954
|
ok: true;
|
|
31956
|
-
|
|
31955
|
+
outputType: string;
|
|
31957
31956
|
metadata?: {
|
|
31958
31957
|
metadata?: Record<string, import("../../index.js").DeserializedJson> | undefined;
|
|
31959
31958
|
operations?: ({
|
|
@@ -32026,12 +32025,14 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
32026
32025
|
key: string;
|
|
32027
32026
|
})[] | undefined;
|
|
32028
32027
|
} | undefined;
|
|
32029
|
-
|
|
32028
|
+
output?: string | undefined;
|
|
32030
32029
|
usage?: {
|
|
32031
32030
|
durationMs: number;
|
|
32032
32031
|
} | undefined;
|
|
32032
|
+
taskIdentifier?: string | undefined;
|
|
32033
32033
|
} | {
|
|
32034
32034
|
id: string;
|
|
32035
|
+
ok: false;
|
|
32035
32036
|
error: {
|
|
32036
32037
|
type: "INTERNAL_ERROR";
|
|
32037
32038
|
code: "COULD_NOT_FIND_EXECUTOR" | "COULD_NOT_FIND_TASK" | "COULD_NOT_IMPORT_TASK" | "CONFIGURED_INCORRECTLY" | "TASK_ALREADY_RUNNING" | "TASK_EXECUTION_FAILED" | "TASK_EXECUTION_ABORTED" | "TASK_PROCESS_EXITED_WITH_NON_ZERO_CODE" | "TASK_PROCESS_SIGKILL_TIMEOUT" | "TASK_PROCESS_SIGSEGV" | "TASK_PROCESS_SIGTERM" | "TASK_PROCESS_OOM_KILLED" | "TASK_PROCESS_MAYBE_OOM_KILLED" | "TASK_RUN_CANCELLED" | "TASK_INPUT_ERROR" | "TASK_OUTPUT_ERROR" | "HANDLE_ERROR_ERROR" | "GRACEFUL_EXIT_TIMEOUT" | "TASK_RUN_HEARTBEAT_TIMEOUT" | "TASK_RUN_CRASHED" | "MAX_DURATION_EXCEEDED" | "DISK_SPACE_EXCEEDED" | "POD_EVICTED" | "POD_UNKNOWN_ERROR" | "OUTDATED_SDK_VERSION" | "TASK_DID_CONCURRENT_WAIT";
|
|
@@ -32049,10 +32050,9 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
32049
32050
|
type: "STRING_ERROR";
|
|
32050
32051
|
raw: string;
|
|
32051
32052
|
};
|
|
32052
|
-
ok: false;
|
|
32053
32053
|
retry?: {
|
|
32054
|
-
delay: number;
|
|
32055
32054
|
timestamp: number;
|
|
32055
|
+
delay: number;
|
|
32056
32056
|
error?: unknown;
|
|
32057
32057
|
} | undefined;
|
|
32058
32058
|
metadata?: {
|
|
@@ -32127,10 +32127,10 @@ export declare const CoordinatorToProdWorkerMessages: {
|
|
|
32127
32127
|
key: string;
|
|
32128
32128
|
})[] | undefined;
|
|
32129
32129
|
} | undefined;
|
|
32130
|
-
taskIdentifier?: string | undefined;
|
|
32131
32130
|
usage?: {
|
|
32132
32131
|
durationMs: number;
|
|
32133
32132
|
} | undefined;
|
|
32133
|
+
taskIdentifier?: string | undefined;
|
|
32134
32134
|
skippedRetrying?: boolean | undefined;
|
|
32135
32135
|
})[];
|
|
32136
32136
|
executions: {
|