import { OdsCommand } from '@salesforce/b2c-tooling-sdk/cli'; import type { OdsComponents } from '@salesforce/b2c-tooling-sdk'; type UserInfoSpec = OdsComponents['schemas']['UserInfoSpec']; type SystemInfoSpec = OdsComponents['schemas']['SystemInfoSpec']; /** * Combined response type for the info command. */ interface OdsInfoResponse { user: undefined | UserInfoSpec; system: SystemInfoSpec | undefined; } /** * Command to display ODS user and system information. * Combines data from getUserInfo and getSystemInfo API endpoints. */ export default class SandboxInfo extends OdsCommand { static aliases: string[]; static description: string; static enableJsonFlag: boolean; static examples: string[]; run(): Promise; private printInfo; private renderArrayField; private renderField; private renderSystemInfo; private renderUserInfo; } export {};