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

17 lines (16 loc) 591 B
import { SfCommand } from '@salesforce/sf-plugins-core'; import { AnyJson } from '@salesforce/ts-types'; export default class OrgMissingItems extends SfCommand<any> { static title: string; static description: string; static examples: string[]; static flags: any; static requiresProject: boolean; protected folder: string; protected targetOrgUsernameAlias: string | null; protected packageXmlFull: string | null; protected debugMode: boolean; protected standardFields: string[]; protected standardSuffixes: string[]; run(): Promise<AnyJson>; }