(schema: z.ZodTypeAny)
| 53 | * @returns JSON Schema object |
| 54 | */ |
| 55 | export function generateJsonSchema(schema: z.ZodTypeAny): Record<string, unknown> { |
| 56 | const jsonSchema = zodToJsonSchema(schema); |
| 57 | |
| 58 | return jsonSchema; |
| 59 | } |
| 60 | |
| 61 | /** |
| 62 | * Convert Zod schema to JSON Schema format |
nothing calls this directly
no test coverage detected