/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; import { ClosedEnum } from "../../types/enums.js"; export const EnvironmentType = { Development: "development", Production: "production", } as const; export type EnvironmentType = ClosedEnum; /** @internal */ export const EnvironmentType$outboundSchema: z.ZodMiniEnum< typeof EnvironmentType > = z.enum(EnvironmentType);