/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 57d02b5ccdb7 */ import * as z from "zod/v4"; import { ClosedEnum } from "../types/enums.js"; export const SetupRegistrationAction = { Create: "create", Update: "update", Delete: "delete", } as const; export type SetupRegistrationAction = ClosedEnum< typeof SetupRegistrationAction >; /** @internal */ export const SetupRegistrationAction$inboundSchema: z.ZodEnum< typeof SetupRegistrationAction > = z.enum(SetupRegistrationAction); /** @internal */ export const SetupRegistrationAction$outboundSchema: z.ZodEnum< typeof SetupRegistrationAction > = SetupRegistrationAction$inboundSchema;