sfdx-experiences-plugin
Version:
SFDX plugin to manage ExperienceBundle metadata
10 lines (9 loc) • 508 B
TypeScript
/**
* Returns a mapping of the app page IDs in the source bundle to the corresponding IDs in the target bundle.
*
* @param {string} sourceBundlePath Path to the source bundle.
* @param {string} targetBundlePath Path to the target bundle.
* @returns {Map<string, string>} Mapping of app page IDs with keys from the source bundle assigned to values from the
* target bundle.
*/
export default function getAppPageIdMap(sourceBundlePath: string, targetBundlePath: string): Map<string, string>;