chore: fix update-readme TS linting (#296)

This commit is contained in:
Max Schmitt
2025-04-29 16:12:17 +02:00
committed by GitHub
parent 80c9b93b72
commit 4147e21a3a

View File

@@ -112,7 +112,7 @@ function formatToolForReadme(tool) {
* @returns {ParsedToolSchema} * @returns {ParsedToolSchema}
*/ */
function processToolSchema(schema) { function processToolSchema(schema) {
const inputSchema = /** @type {import('zod-to-json-schema').JsonSchema7ObjectType} */ zodToJsonSchema(schema.inputSchema || {}); const inputSchema = /** @type {import('zod-to-json-schema').JsonSchema7ObjectType} */ (zodToJsonSchema(schema.inputSchema || {}));
if (inputSchema.type !== 'object') if (inputSchema.type !== 'object')
throw new Error(`Tool ${schema.name} input schema is not an object`); throw new Error(`Tool ${schema.name} input schema is not an object`);