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
24 lines (23 loc) • 806 B
TypeScript
import { SfCommand } from '@salesforce/sf-plugins-core';
import { AnyJson } from '@salesforce/ts-types';
export default class DiagnoseUnusedApexClasses extends SfCommand<any> {
static title: string;
static description: string;
static examples: string[];
static flags: any;
static requiresProject: boolean;
protected debugMode: boolean;
protected outputFile: any;
protected outputFilesRes: any;
protected lastNdays: number;
protected asyncClassList: any[];
protected unusedNumber: number;
protected statusCode: number;
run(): Promise<AnyJson>;
private findCronTriggers;
private displaySummaryOutput;
private matchClassesWithJobs;
private findLatestApexJobsForEachClass;
private listAsyncApexClasses;
private manageNotifications;
}