@salesforce/source-tracking
Version:
API for tracking local and remote Salesforce metadata changes
15 lines (14 loc) • 587 B
TypeScript
import { RegistryAccess } from '@salesforce/source-deploy-retrieve';
import { ChangeResult } from './types';
/**
* Will build a component set, crawling your local directory, to get paths for remote changes
*
* @param elements ChangeResults that may or may not have filepaths in their filenames parameters
* @param packageDirPaths Array of paths from PackageDirectories
* @returns
*/
export declare const populateFilePaths: ({ elements, packageDirPaths, registry, }: {
elements: ChangeResult[];
packageDirPaths: string[];
registry: RegistryAccess;
}) => ChangeResult[];