Skip to content

JobStatusDtoSchema

const JobStatusDtoSchema: ZodEnum<{
  cancelled: "cancelled";
  completed: "completed";
  failed: "failed";
  pending: "pending";
  processing: "processing";
}>;

Defined in: schemas/job.ts:4

Job lifecycle status values returned by the management API.