UNPKG

@flxbl-io/sfp

Version:

sfp is a CLI tool to help you manage your Salesforce projects in an artifact centric model

13 lines (12 loc) 568 B
import { Org } from '@salesforce/core'; import ScratchOrg from './ScratchOrg'; import { PoolConfig } from './pool/PoolConfig'; export default class ScratchOrgOperator { private hubOrg; constructor(hubOrg: Org); create(alias: string, config_file_path: string, expiry: number, waitTime: number, poolConfig: Partial<PoolConfig>): Promise<ScratchOrg>; delete(scratchOrgIds: string[]): Promise<void>; private requestAScratchOrg; shareScratchOrgThroughEmail(emailId: string, scratchOrg: ScratchOrg): Promise<void>; private setAliasForUsername; }