sfdx-hardis
Version:
Swiss-army-knife Toolbox for Salesforce. Allows you to define a complete CD/CD Pipeline. Orchestrate base commands and assist users with interactive wizards
26 lines (25 loc) • 1.05 kB
TypeScript
import { Connection } from '@salesforce/core';
export declare function restoreListViewMine(listViewStrings: Array<string>, conn: any, options?: any): Promise<{
error: any;
success?: undefined;
failed?: undefined;
unnecessary?: undefined;
} | {
success: any[];
failed: any[];
unnecessary: any[];
error?: undefined;
}>;
export declare function listMajorOrgs(): Promise<any>;
export declare function isProduction(branchName: any): any;
export declare function isPreprod(branchName: any): any;
export declare function isUat(branchName: any): any;
export declare function isIntegration(branchName: any): any;
export declare function isUatRun(branchName: any): any;
export declare function checkSfdxHardisTraceAvailable(conn: Connection): Promise<void>;
/**
* Get the Chrome/Chromium executable path for Puppeteer
* This is used by various commands that need browser automation
* @returns string - Path to Chrome executable, or empty string if not found
*/
export declare function getChromeExecutablePath(): string;