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