/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; /** * The status of the job. */ export const JobStatus = { Draft: "draft", Internal: "internal", Published: "published", Completed: "completed", OnHold: "on-hold", Private: "private", } as const; /** * The status of the job. */ export type JobStatus = ClosedEnum; /** @internal */ export const JobStatus$inboundSchema: z.ZodNativeEnum = z .nativeEnum(JobStatus); /** @internal */ export const JobStatus$outboundSchema: z.ZodNativeEnum = JobStatus$inboundSchema; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export namespace JobStatus$ { /** @deprecated use `JobStatus$inboundSchema` instead. */ export const inboundSchema = JobStatus$inboundSchema; /** @deprecated use `JobStatus$outboundSchema` instead. */ export const outboundSchema = JobStatus$outboundSchema; }