UNPKG

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

20 lines (19 loc) 780 B
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>;