We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eef5061 commit d7effbdCopy full SHA for d7effbd
1 file changed
packages/core/src/v3/schemas/api.ts
@@ -1189,7 +1189,13 @@ export const SubscribeRunRawShape = z.object({
1189
1190
export type SubscribeRunRawShape = z.infer<typeof SubscribeRunRawShape>;
1191
1192
-export const BatchStatus = z.enum(["PENDING", "COMPLETED"]);
+export const BatchStatus = z.enum([
1193
+ "PENDING",
1194
+ "PROCESSING",
1195
+ "COMPLETED",
1196
+ "PARTIAL_FAILED",
1197
+ "ABORTED",
1198
+]);
1199
1200
export type BatchStatus = z.infer<typeof BatchStatus>;
1201
0 commit comments