(schema: ZodTypeAny)
| 15 | * Converts a Zod v4 schema to JSON Schema format. |
| 16 | */ |
| 17 | export function zodToJsonSchema(schema: ZodTypeAny): JsonSchema7Type { |
| 18 | const hit = cache.get(schema) |
| 19 | if (hit) return hit |
| 20 | const result = toJSONSchema(schema) as JsonSchema7Type |
| 21 | cache.set(schema, result) |
| 22 | return result |
| 23 | } |
| 24 |
no test coverage detected