Skip to content

Commit d702154

Browse files
committed
feat: add "aborted" status to Status type
Per the OpenAPI schema, both predictions and trainings can have an "aborted" status, which indicates the task was terminated before it started running (e.g., when a deadline is reached before execution begins).
1 parent bf708b6 commit d702154

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
declare module "replicate" {
2-
type Status = "starting" | "processing" | "succeeded" | "failed" | "canceled";
2+
type Status = "starting" | "processing" | "succeeded" | "failed" | "canceled" | "aborted";
33
type Visibility = "public" | "private";
44
type WebhookEventType = "start" | "output" | "logs" | "completed";
55

0 commit comments

Comments
 (0)