UNPKG

wrekenfile-converter

Version:

Convert OpenAPI and Postman specs into Wrekenfiles, with chunking for vector database storage

15 lines 525 B
export interface MiniWrekenfile { content: string; metadata: { endpoint?: string; interface?: string; source?: string; methods: string[]; structs: string[]; filename: string; canonicalId?: string; }; } export declare function generateMiniWrekenfiles(wrekenfileContent: string): MiniWrekenfile[]; export declare function saveMiniWrekenfiles(miniWrekenfiles: MiniWrekenfile[], outputDir?: string): void; //# sourceMappingURL=mini-wrekenfile-generator.d.ts.map