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) • 726 B
TypeScript
import { SfCommand } from '@salesforce/sf-plugins-core';
import { AnyJson } from '@salesforce/ts-types';
export default class NewTask extends SfCommand<any> {
static title: string;
static description: string;
static examples: string[];
static flags: any;
static requiresProject: boolean;
protected targetBranch: string;
protected debugMode: boolean;
run(): Promise<AnyJson>;
promptTaskName(validationRegex: string | null, taskNameExample: string | null): any;
selectOrCreateScratchOrg(branchName: any, flags: any): Promise<void>;
selectOrCreateSandbox(branchName: any, config: any, flags: any, selectedOrgType: "sandbox" | "currentOrg"): Promise<void>;
private promptSandbox;
}