/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; /** * Status of the resource. Resources with status live or beta are callable. */ export const ResourceStatus = { Live: "live", Beta: "beta", Development: "development", Upcoming: "upcoming", Considering: "considering", } as const; /** * Status of the resource. Resources with status live or beta are callable. */ export type ResourceStatus = ClosedEnum; /** @internal */ export const ResourceStatus$inboundSchema: z.ZodNativeEnum< typeof ResourceStatus > = z.nativeEnum(ResourceStatus); /** @internal */ export const ResourceStatus$outboundSchema: z.ZodNativeEnum< typeof ResourceStatus > = ResourceStatus$inboundSchema; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export namespace ResourceStatus$ { /** @deprecated use `ResourceStatus$inboundSchema` instead. */ export const inboundSchema = ResourceStatus$inboundSchema; /** @deprecated use `ResourceStatus$outboundSchema` instead. */ export const outboundSchema = ResourceStatus$outboundSchema; }