UNPKG

@nestbox-ai/cli

Version:

The cli tools that helps developers to build agents

23 lines (22 loc) 537 B
/** * Get authentication token for a specific domain */ export declare function getAuthToken(domain?: string): { token: string; serverUrl: string; accessToken?: string; } | null; /** * List all saved credentials */ export declare function listCredentials(): Array<{ domain: string; email: string; name?: string; authMethod?: string; lastUsed?: number; }>; /** * Remove credentials for a domain/email combination */ export declare function removeCredentials(domain: string, email?: string): boolean;