@flxbl-io/sfp
Version:
sfp is a CLI tool to help you manage your Salesforce projects in an artifact centric model
15 lines (14 loc) • 388 B
TypeScript
export type PackageInstallationResult = {
result: PackageInstallationStatus;
deploy_id?: string;
message?: string;
elapsedTime?: number;
isPreScriptExecutionSuceeded?: boolean;
isPostScriptExecutionSuceeeded?: boolean;
numberOfComponentsDeployed?: number;
};
export declare enum PackageInstallationStatus {
Skipped = 0,
Succeeded = 1,
Failed = 2
}