breathe-api
Version:
Model Context Protocol server for Breathe HR APIs with Swagger/OpenAPI support - also works with custom APIs
16 lines • 471 B
TypeScript
import { SwaggerSpec, SwaggerDocument } from '../types/api.js';
export interface ParsedSwagger {
spec: SwaggerDocument;
paths: string[];
operations: Array<{
path: string;
method: string;
operationId?: string;
summary?: string;
}>;
schemas: string[];
baseUrl: string;
types?: string;
}
export declare function parseSwagger(input: SwaggerSpec): Promise<ParsedSwagger>;
//# sourceMappingURL=swagger-parser.d.ts.map