@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) • 393 B
TypeScript
import { MetadataApiDeployStatus } from "@salesforce/source-deploy-retrieve";
export default interface DeploymentExecutor {
exec(): Promise<DeploySourceResult>;
}
export interface DeploySourceResult {
deploy_id: string;
result: boolean;
message: string;
response?: MetadataApiDeployStatus;
}
export declare enum DeploymentType {
SOURCE_PUSH = 0,
MDAPI_DEPLOY = 1
}