/* * 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 CustomFieldType = { Text: "text", Number: "number", Date: "date", Checkbox: "checkbox", Select: "select", } as const; export type CustomFieldType = ClosedEnum; /** @internal */ export const CustomFieldType$outboundSchema: z.ZodMiniEnum< typeof CustomFieldType > = z.enum(CustomFieldType);