UNPKG

@ace-sdk/cli

Version:

ACE CLI - Command-line tool for intelligent pattern learning and playbook management

28 lines 773 B
/** * Projects command - List all accessible projects across organizations * * Uses the new /api/v1/auth/projects endpoint (v4.5.8+) which works * with user tokens directly - no org-level API tokens required. * * @package @ace-sdk/cli * @since 3.8.0 */ /** * Projects command options */ interface ProjectsOptions { /** Filter to specific organization */ org?: string; } /** * ce-ace projects list * List all projects accessible to the current user */ export declare function projectsListCommand(options?: ProjectsOptions): Promise<void>; /** * Legacy alias for backwards compatibility * @deprecated Use projectsListCommand instead */ export declare const projectsCommand: typeof projectsListCommand; export {}; //# sourceMappingURL=projects.d.ts.map