UNPKG

breathe-api

Version:

Model Context Protocol server for Breathe HR APIs with Swagger/OpenAPI support - also works with custom APIs

20 lines 607 B
import { Password } from '../types/security.js'; declare class CredentialManager { private credentials; private initialized; initialize(): void; getBreatheCredentials(): { username: string; password: Password; } | null; getElmoCredentials(): { username: string; password: Password; } | null; hasCredentials(api: 'breathe' | 'elmo'): boolean; getCredentialStatus(): Record<string, string>; clearCredentials(): void; } export declare const credentialManager: CredentialManager; export {}; //# sourceMappingURL=credential-manager.d.ts.map