/** * This file was auto-generated by Fern from our API Definition. */ /** * the status of the job * * @example * Flatfile.JobStatus.Planning * * @example * Flatfile.JobStatus.Ready * * @example * Flatfile.JobStatus.Executing * * @example * Flatfile.JobStatus.Complete * * @example * Flatfile.JobStatus.Failed */ export type JobStatus = "created" | "planning" | "scheduled" | "ready" | "executing" | "complete" | "failed" | "canceled" | "waiting"; export declare const JobStatus: { readonly Created: "created"; readonly Planning: "planning"; readonly Scheduled: "scheduled"; readonly Ready: "ready"; readonly Executing: "executing"; readonly Complete: "complete"; readonly Failed: "failed"; readonly Canceled: "canceled"; readonly Waiting: "waiting"; };