UNPKG

@ai-sdk/provider-utils

Version:
14 lines (11 loc) 260 B
import type { ZodEnumDef } from 'zod/v3'; export type JsonSchema7EnumType = { type: 'string'; enum: string[]; }; export function parseEnumDef(def: ZodEnumDef): JsonSchema7EnumType { return { type: 'string', enum: Array.from(def.values), }; }