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
28 lines (27 loc) • 972 B
TypeScript
import { SfCommand } from '@salesforce/sf-plugins-core';
import { AnyJson } from '@salesforce/ts-types';
export default class OrgPurgeFlow extends SfCommand<any> {
static title: string;
static description: string;
static examples: string[];
static flags: any;
static requiresProject: boolean;
protected debugMode: boolean;
protected statusFilter: string[];
protected nameFilter: string | null;
protected username: string;
protected promptUser: boolean;
protected deleteFlowInterviews: boolean;
protected allowPurgeFailure: boolean;
protected flowRecordsRaw: any[];
protected flowRecords: any[];
protected deletedRecords: any[];
protected deletedErrors: any[];
run(): Promise<AnyJson>;
private processDeleteFlowVersions;
private manageDeleteFlowInterviews;
private formatFlowRecords;
private listFlowVersionsToDelete;
private getFlowsScope;
private displayFlowInterviewToDelete;
}