/** * CLI help text catalog for the Iranti CLI. * * Stores all help content as plain data — command strings, descriptions, * use-when conditions, and scenario examples. The renderer (cliHelpRenderer.ts) * consumes this data and formats it for output. * * Adding a new command: export a new HelpEntry[] constant and import it in * cliHelpRenderer.ts. Adding to an existing command: extend the relevant array. * * Key exports: * - START_HERE_HELP, SETUP_AND_RUNTIME_HELP, CONFIGURATION_HELP, ... — command arrays * - COMMON_FLOWS — multi-step flow sequences * - SETUP_OPTION_GUIDE, UNINSTALL_OPTION_GUIDE — option reference arrays * - HelpEntry, OptionGuideEntry — shared entry types */ export type HelpEntry = { command: string; description: string; useWhen?: string; scenario?: string; }; export type OptionGuideEntry = { option: string; meaning: string; useWhen: string; }; export declare const START_HERE_HELP: HelpEntry[]; export declare const SETUP_AND_RUNTIME_HELP: HelpEntry[]; export declare const CONFIGURATION_HELP: HelpEntry[]; export declare const KEY_HELP: HelpEntry[]; export declare const DIAGNOSTICS_HELP: HelpEntry[]; export declare const CONNECT_HELP: HelpEntry[]; export declare const INTEGRATIONS_HELP: HelpEntry[]; export declare const SETUP_COMMAND_HELP: HelpEntry[]; export declare const SETUP_OPTION_GUIDE: OptionGuideEntry[]; export declare const UNINSTALL_HELP: HelpEntry[]; export declare const UNINSTALL_OPTION_GUIDE: OptionGuideEntry[]; export declare const INSTANCE_HELP: HelpEntry[]; export declare const CONFIGURE_HELP: HelpEntry[]; export declare const AUTH_HELP: HelpEntry[]; export declare const INTEGRATE_HELP: HelpEntry[]; export declare const PROVIDER_KEY_HELP: HelpEntry[]; export declare const COMMON_FLOWS: { firstInstall: string[]; bindProject: string[]; workWithKeys: string[]; }; //# sourceMappingURL=cliHelpCatalog.d.ts.map