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

23 lines (22 loc) 784 B
import { SfCommand } from '@salesforce/sf-plugins-core'; import { AnyJson } from '@salesforce/ts-types'; export default class MetadataStatus extends SfCommand<any> { static title: string; static description: string; static examples: string[]; static flags: any; protected static supportsDevhubUsername: boolean; static requiresProject: boolean; private objectFileDirectory; protected fieldsWithoutDescription: any[]; protected outputFile: string; protected outputFilesRes: any; private nonCustomSettingsFieldDirectories; private ignorePatterns; run(): Promise<AnyJson>; private filterOutCustomSettings; private verifyFieldDescriptions; private parseXmlStringAsync; private readFileAsync; private buildCsvFile; }