/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: b10e3b28fc87 */ import * as z from "zod/v4"; import { ClosedEnum } from "../types/enums.js"; /** * Variable type (plain or secret) */ export const EnvironmentVariableType = { Plain: "plain", Secret: "secret", } as const; /** * Variable type (plain or secret) */ export type EnvironmentVariableType = ClosedEnum< typeof EnvironmentVariableType >; /** @internal */ export const EnvironmentVariableType$inboundSchema: z.ZodEnum< typeof EnvironmentVariableType > = z.enum(EnvironmentVariableType); /** @internal */ export const EnvironmentVariableType$outboundSchema: z.ZodEnum< typeof EnvironmentVariableType > = EnvironmentVariableType$inboundSchema;