@atlas-kitchen/atlas-mcp
Version:
Model Context Protocol server for Atlas restaurant management system - enables Claude to interact with restaurant orders, menus, and reports
19 lines • 602 B
TypeScript
import { AuthTokens } from './types/atlas.js';
export declare class AuthManager {
private tokens;
private merchantId;
private outletId;
private clientUuid;
constructor();
setTokens(tokens: AuthTokens): void;
getTokens(): AuthTokens | null;
getAccessToken(): string | null;
setMerchantContext(merchantId: string, outletId?: string): void;
getMerchantId(): string | null;
getOutletId(): string | null;
getClientUuid(): string;
getHeaders(): Record<string, string>;
clear(): void;
isAuthenticated(): boolean;
}
//# sourceMappingURL=auth.d.ts.map