UNPKG

zod-to-json-schema

Version:
95 lines (94 loc) 3.65 kB
import { parseDef } from "../parseDef.js"; export function parseObjectDefX(def, refs) { Object.keys(def.shape()).reduce((schema, key) => { let prop = def.shape()[key]; const isOptional = prop.isOptional(); if (!isOptional) { prop = { ...prop._def.innerSchema }; } const propSchema = parseDef(prop._def, { ...refs, currentPath: [...refs.currentPath, "properties", key], propertyPath: [...refs.currentPath, "properties", key], }); if (propSchema !== undefined) { schema.properties[key] = propSchema; if (!isOptional) { if (!schema.required) { schema.required = []; } schema.required.push(key); } } return schema; }, { type: "object", properties: {}, additionalProperties: def.catchall._def.typeName === "ZodNever" ? def.unknownKeys === "passthrough" : parseDef(def.catchall._def, { ...refs, currentPath: [...refs.currentPath, "additionalProperties"], }) ?? true, }); const result = { type: "object", ...Object.entries(def.shape()).reduce((acc, [propName, propDef]) => { if (propDef === undefined || propDef._def === undefined) return acc; const parsedDef = parseDef(propDef._def, { ...refs, currentPath: [...refs.currentPath, "properties", propName], propertyPath: [...refs.currentPath, "properties", propName], }); if (parsedDef === undefined) return acc; return { properties: { ...acc.properties, [propName]: parsedDef }, required: propDef.isOptional() ? acc.required : [...acc.required, propName], }; }, { properties: {}, required: [] }), additionalProperties: def.catchall._def.typeName === "ZodNever" ? def.unknownKeys === "passthrough" : parseDef(def.catchall._def, { ...refs, currentPath: [...refs.currentPath, "additionalProperties"], }) ?? true, }; if (!result.required.length) delete result.required; return result; } export function parseObjectDef(def, refs) { const result = { type: "object", ...Object.entries(def.shape()).reduce((acc, [propName, propDef]) => { if (propDef === undefined || propDef._def === undefined) return acc; const parsedDef = parseDef(propDef._def, { ...refs, currentPath: [...refs.currentPath, "properties", propName], propertyPath: [...refs.currentPath, "properties", propName], }); if (parsedDef === undefined) return acc; return { properties: { ...acc.properties, [propName]: parsedDef }, required: propDef.isOptional() ? acc.required : [...acc.required, propName], }; }, { properties: {}, required: [] }), additionalProperties: def.catchall._def.typeName === "ZodNever" ? def.unknownKeys === "passthrough" : parseDef(def.catchall._def, { ...refs, currentPath: [...refs.currentPath, "additionalProperties"], }) ?? true, }; if (!result.required.length) delete result.required; return result; }