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
17 lines (16 loc) • 760 B
TypeScript
export declare const dataFolderRoot: string;
export declare function importData(sfdmuPath: string, commandThis: any, options?: any): Promise<void>;
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 selectDataWorkspace(opts?: {
selectDataLabel: string;
}): Promise<any>;
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;