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

37 lines (36 loc) 1.62 kB
import { SfCommand } from '@salesforce/sf-plugins-core'; import { Connection } from '@salesforce/core'; import { AnyJson } from '@salesforce/ts-types'; export default class OrgRefreshAfterRefresh extends SfCommand<AnyJson> { static title: string; static description: string; static examples: string[]; static flags: { "target-org": import("@oclif/core/interfaces").OptionFlag<import("@salesforce/core").Org, import("@oclif/core/interfaces").CustomOptions>; name: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>; all: import("@oclif/core/interfaces").BooleanFlag<boolean>; websocket: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>; skipauth: import("@oclif/core/interfaces").BooleanFlag<boolean>; }; static requiresProject: boolean; protected refreshSandboxConfig: any; protected saveProjectPath: string; protected result: any; protected orgUsername: string; protected nameFilter: string | undefined; protected processAll: boolean; protected conn: Connection; protected instanceUrl: any; protected orgId: string; run(): Promise<AnyJson>; private restoreCertificates; private restoreOtherMetadata; private restoreSamlSsoConfig; private restoreCustomSettings; private restoreRecords; private restoreConnectedApps; private findConnectedAppsInProject; private selectConnectedApps; private deleteExistingConnectedApps; private deployConnectedApps; }