@flxbl-io/sfp
Version:
sfp is a CLI tool to help you manage your Salesforce projects in an artifact centric model
25 lines (24 loc) • 773 B
TypeScript
export default interface ReleaseConfig {
releaseName?: string;
pool?: string;
includeOnlyArtifacts?: string[];
excludeArtifacts?: string[];
excludeArtifactsWithTag?: string[];
excludeAllPackageDependencies?: boolean;
excludePackageDependencies?: string[];
includeOnlyPackageDependencies?: string[];
dependencyOn?: string[];
releasedefinitionProperties?: {
skipIfAlreadyInstalled: boolean;
skipArtifactUpdate: boolean;
baselineOrg?: string;
promotePackagesBeforeDeploymentToOrg?: string;
changelog?: {
repoUrl?: string;
workItemFilters?: string[];
workItemUrl?: string;
limit?: number;
showAllArtifacts?: boolean;
};
};
}