/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; import * as openEnums from "../../types/enums.js"; import { OpenEnum } from "../../types/enums.js"; export const AlertState = { Ok: "ok", Info: "info", Warning: "warning", InAlarm: "in_alarm", } as const; export type AlertState = OpenEnum; /** @internal */ export const AlertState$inboundSchema: z.ZodMiniType = openEnums.inboundSchema(AlertState); /** @internal */ export const AlertState$outboundSchema: z.ZodMiniType = openEnums.outboundSchema(AlertState);