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
22 lines (21 loc) • 1.05 kB
TypeScript
export declare const DATA_FOLDERS_ROOT: string;
export declare function importData(sfdmuPath: string, commandThis: any, options?: any): Promise<any>;
export declare function deleteData(sfdmuPath: string, commandThis: any, options?: any): Promise<void>;
export declare function exportData(sfdmuPath: string, commandThis: any, options?: any): Promise<void>;
export declare function findDataWorkspaceByName(projectName: string, throwIfNotFound?: boolean): Promise<string | null>;
export declare function hasDataWorkspaces(cwd?: string): Promise<boolean>;
export declare function selectDataWorkspace(opts?: {
selectDataLabel: string;
multiple?: boolean;
initial?: string | string[];
cwd?: string;
}): Promise<string | string[] | null>;
export declare function getDataWorkspaceDetail(dataWorkspace: string): Promise<{
full_label: string;
label: any;
description: any;
exportJson: any;
isDelete: boolean;
runnableInProduction: any;
} | null>;
export declare function isDeleteDataWorkspace(exportFileJson: any): boolean;