//#region src/cli/commands/api/api-call.d.ts export interface ApiCallOptions { profile?: string; endpoint: string; body?: string; } export interface ApiCallResult { status: number; data: unknown; } /** * Call Tailor Platform API endpoints directly. * If the endpoint doesn't contain "/", it defaults to `tailor.v1.OperatorService/{endpoint}`. * @param options - API call options (profile, endpoint, body) * @returns Response status and data */ export declare function apiCall(options: ApiCallOptions): Promise; //#endregion