/** * H-ear MCP tool schemas — JSON Schema derivation from the shared Zod source. * * The Zod shapes and descriptions live in @h-ear/core (single source of truth * shared with @h-ear/openclaw). This file ONLY adds the wire-format JSON * Schema derivation that mcp-server needs for the APIM REST-as-MCP passthrough * (api-version 2025-03-01-preview), which auto-generates tool schemas from * APIM operations but DROPS query/header parameters — so filters like * `listClasses(category: "Animal")` silently vanish on the https transport * unless we patch explicit inputSchemas into `mcpTools[]`. * * Flow: @h-ear/core SHAPE → zod-to-json-schema → toolSchemas → * consumed by stdio tool files AND by scripts/userMcp.root-status.mjs * when PATCHing APIM. */ export { toolShapes, toolDescriptions, toolNames, HEALTH_CHECK_SHAPE, USAGE_SHAPE, LIST_WEBHOOKS_SHAPE, LIST_CLASSES_SHAPE, LIST_JOBS_SHAPE, GET_JOB_SHAPE, GET_JOB_EVENTS_SHAPE, GET_JOB_AUDIO_SHAPE, GET_JOB_WAVEFORM_SHAPE, GET_UPLOAD_STATUS_SHAPE, CLASSIFY_AUDIO_SHAPE, CLASSIFY_BATCH_SHAPE, CREATE_WEBHOOK_SHAPE, UPDATE_WEBHOOK_SHAPE, GET_WEBHOOK_SHAPE, DELETE_WEBHOOK_SHAPE, PING_WEBHOOK_SHAPE, LIST_WEBHOOK_DELIVERIES_SHAPE, GET_JOB_REPORT_SHAPE, GET_JOB_RAW_ANALYSIS_V1_SHAPE, } from '@h-ear/core'; export declare const toolSchemas: Readonly>; //# sourceMappingURL=index.d.ts.map