UNPKG

@salesforce/source-deploy-retrieve

Version:

JavaScript library to run Salesforce metadata deploys and retrieves

14 lines (13 loc) 435 B
import { RegistryAccess } from '../registry/registryAccess'; import { TreeContainer } from '../resolve/treeContainers'; /** * File system path to a source file of a metadata component. */ export type SourcePath = string; export type TreeOptions = { tree: TreeContainer; }; export type RegistryOptions = { registry: RegistryAccess; }; export type OptionalTreeRegistryOptions = Partial<TreeOptions> & Partial<RegistryOptions>;