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) 330 B
export interface PoolError { success: number; failed: number; errorCode: PoolErrorCodes; message?: string; } export declare enum PoolErrorCodes { Max_Capacity = "MaxCapacity", No_Capacity = "NoCapacity", PrerequisiteMissing = "PrerequisitesMissing", UnableToProvisionAny = "UnableToProvisionAny" }