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
25 lines (24 loc) • 869 B
TypeScript
import { SfCommand } from '@salesforce/sf-plugins-core';
import { AnyJson } from '@salesforce/ts-types';
export default class ServiceNowReport extends SfCommand<any> {
static title: string;
static description: string;
static examples: string[];
static flags: any;
protected static supportsDevhubUsername: boolean;
static requiresProject: boolean;
protected configFile: string | undefined;
protected whereChoice: string | undefined;
protected outputFile: string;
protected outputFilesRes: any;
protected userStories: any[];
protected results: any[];
protected userStoriesConfig: any;
protected serviceNowConfig: any;
run(): Promise<AnyJson>;
private getServiceNowConfig;
private fetchUserStories;
private initializeConfiguration;
private buildServiceNowAuthHeaders;
private buildCsvFile;
}