@elevenlabs/convai-cli
Version:
CLI tool to manage ElevenLabs conversational AI agents
21 lines • 560 B
TypeScript
/**
* Simple credential management for CLI
* Just basic keychain storage + secure file permissions
*/
/**
* Store API key securely
*/
export declare function storeApiKey(apiKey: string): Promise<void>;
/**
* Retrieve API key from secure storage
*/
export declare function retrieveApiKey(): Promise<string | undefined>;
/**
* Remove API key from secure storage
*/
export declare function removeApiKey(): Promise<void>;
/**
* Check if user has API key stored
*/
export declare function hasApiKey(): Promise<boolean>;
//# sourceMappingURL=auth.d.ts.map