/* * 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 DataType = { String: "string", Number: "number", Date: "date", Array: "array", } as const; export type DataType = ClosedEnum; /** @internal */ export const DataType$outboundSchema: z.ZodMiniEnum = z.enum( DataType, );