/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 0bf086f5c65f */ import * as z from "zod/v4"; import { ClosedEnum } from "../types/enums.js"; export const ReleaseRolloutState = { Updated: "updated", Updating: "updating", Failed: "failed", Pending: "pending", PinnedOther: "pinned-other", Superseded: "superseded", OnOther: "on-other", } as const; export type ReleaseRolloutState = ClosedEnum; /** @internal */ export const ReleaseRolloutState$inboundSchema: z.ZodEnum< typeof ReleaseRolloutState > = z.enum(ReleaseRolloutState); /** @internal */ export const ReleaseRolloutState$outboundSchema: z.ZodEnum< typeof ReleaseRolloutState > = ReleaseRolloutState$inboundSchema;