@salesforce/source-deploy-retrieve 11.6.8 → 11.6.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -22,6 +22,7 @@ type RecompositionState = Map<string, RecompositionStateValue>;
|
|
|
22
22
|
*/
|
|
23
23
|
export declare class RecompositionFinalizer extends ConvertTransactionFinalizer<RecompositionState> {
|
|
24
24
|
transactionState: RecompositionState;
|
|
25
|
+
private xmlCache;
|
|
25
26
|
finalize(): Promise<WriterFormat[]>;
|
|
26
27
|
}
|
|
27
28
|
/** composed function, exported from module for test */
|
|
@@ -16,7 +16,6 @@ const streams_1 = require("../streams");
|
|
|
16
16
|
const transactionFinalizer_1 = require("./transactionFinalizer");
|
|
17
17
|
;
|
|
18
18
|
const messages = new core_1.Messages('@salesforce/source-deploy-retrieve', 'sdr', new Map([["md_request_fail", "Metadata API request failed: %s"], ["error_convert_invalid_format", "Invalid conversion format '%s'"], ["error_could_not_infer_type", "%s: Could not infer a metadata type"], ["error_unexpected_child_type", "Unexpected child metadata [%s] found for parent type [%s]"], ["noParent", "Could not find parent type for %s (%s)"], ["error_expected_source_files", "%s: Expected source files for type '%s'"], ["error_failed_convert", "Component conversion failed: %s"], ["error_merge_metadata_target_unsupported", "Merge convert for metadata target format currently unsupported"], ["error_missing_adapter", "Missing adapter '%s' for metadata type '%s'"], ["error_missing_transformer", "Missing transformer '%s' for metadata type '%s'"], ["error_missing_type_definition", "Missing metadata type definition in registry for id '%s'."], ["error_missing_child_type_definition", "Type %s does not have a child type definition %s."], ["noChildTypes", "No child types found in registry for %s (reading %s at %s)"], ["error_no_metadata_xml_ignore", "Metadata xml file %s is forceignored but is required for %s."], ["noSourceIgnore", "%s metadata types require source files, but %s is forceignored."], ["noSourceIgnore.actions", "- Metadata types with content are composed of two files: a content file (ie MyApexClass.cls) and a -meta.xml file (i.e MyApexClass.cls-meta.xml). You must include both files in your .forceignore file. Or try appending \u201C\\*\u201D to your existing .forceignore entry.\n\nSee <https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_exclude_source.htm> for examples"], ["error_path_not_found", "%s: File or folder not found"], ["noContentFound", "SourceComponent %s (metadata type = %s) is missing its content file."], ["noContentFound.actions", ["Ensure the content file exists in the expected location.", "If the content file is in your .forceignore file, ensure the meta-xml file is also ignored to completely exclude it."]], ["error_parsing_xml", "SourceComponent %s (metadata type = %s) does not have an associated metadata xml to parse"], ["error_expected_file_path", "%s: path is to a directory, expected a file"], ["error_expected_directory_path", "%s: path is to a file, expected a directory"], ["error_directory_not_found_or_not_directory", "%s: path is not a directory"], ["error_no_directory_stream", "%s doesn't support readable streams on directories."], ["error_no_source_to_deploy", "No source-backed components present in the package."], ["error_no_components_to_retrieve", "No components in the package to retrieve."], ["error_static_resource_expected_archive_type", "A StaticResource directory must have a content type of application/zip or application/jar - found %s for %s."], ["error_static_resource_missing_resource_file", "A StaticResource must have an associated .resource file, missing %s.resource-meta.xml"], ["error_no_job_id", "The %s operation is missing a job ID. Initialize an operation with an ID, or start a new job."], ["missingApiVersion", "Could not determine an API version to use for the generated manifest. Tried looking for sourceApiVersion in sfdx-project.json, apiVersion from config vars, and the highest apiVersion from the APEX REST endpoint. Using API version 58.0 as a last resort."], ["invalid_xml_parsing", "error parsing %s due to:\\n message: %s\\n line: %s\\n code: %s"], ["zipBufferError", "Zip buffer was not created during conversion"], ["undefinedComponentSet", "Unable to construct a componentSet. Check the logs for more information."], ["replacementsFileNotRead", "The file \"%s\" specified in the \"replacements\" property of sfdx-project.json could not be read."], ["unsupportedBundleType", "Unsupported Bundle Type: %s"], ["filePathGeneratorNoTypeSupport", "Type not supported for filepath generation: %s"], ["missingFolderType", "The registry has %s as is inFolder but it does not have a folderType"], ["tooManyFiles", "Multiple files found for path: %s."], ["cantGetName", "Unable to calculate fullName from path: %s (%s)"], ["missingMetaFileSuffix", "The metadata registry is configured incorrectly for %s. Expected a metaFileSuffix."], ["uniqueIdElementNotInRegistry", "No uniqueIdElement found in registry for %s (reading %s at %s)."], ["uniqueIdElementNotInChild", "The uniqueIdElement %s was not found the child (reading %s at %s)."], ["suggest_type_header", "A metadata type lookup for \"%s\" found the following close matches:"], ["suggest_type_did_you_mean", "-- Did you mean \".%s%s\" instead for the \"%s\" metadata type?"], ["suggest_type_more_suggestions", "Additional suggestions:\nConfirm the file name, extension, and directory names are correct. Validate against the registry at:\n<https://github.com/forcedotcom/source-deploy-retrieve/blob/main/src/registry/metadataRegistry.json>\n\nIf the type is not listed in the registry, check that it has Metadata API support via the Metadata Coverage Report:\n<https://developer.salesforce.com/docs/metadata-coverage>\n\nIf the type is available via Metadata API but not in the registry\n\n- Open an issue <https://github.com/forcedotcom/cli/issues>\n- Add the type via PR. Instructions: <https://github.com/forcedotcom/source-deploy-retrieve/blob/main/contributing/metadata.md>"]]));
|
|
19
|
-
const xmlCache = new Map();
|
|
20
19
|
/**
|
|
21
20
|
* Merges child components that share the same parent in the conversion pipeline into a single file.
|
|
22
21
|
*
|
|
@@ -27,31 +26,34 @@ class RecompositionFinalizer extends transactionFinalizer_1.ConvertTransactionFi
|
|
|
27
26
|
constructor() {
|
|
28
27
|
super(...arguments);
|
|
29
28
|
this.transactionState = new Map();
|
|
29
|
+
this.xmlCache = new Map();
|
|
30
30
|
}
|
|
31
31
|
async finalize() {
|
|
32
|
-
return Promise.all([...this.transactionState.values()]
|
|
32
|
+
return Promise.all([...this.transactionState.values()]
|
|
33
|
+
.filter(ensureStateValueWithParent)
|
|
34
|
+
.map(stateValueToWriterFormat(this.xmlCache)));
|
|
33
35
|
}
|
|
34
36
|
}
|
|
35
37
|
exports.RecompositionFinalizer = RecompositionFinalizer;
|
|
36
|
-
const stateValueToWriterFormat = async (stateValue) => ({
|
|
38
|
+
const stateValueToWriterFormat = (cache) => async (stateValue) => ({
|
|
37
39
|
component: stateValue.component,
|
|
38
40
|
writeInfos: [
|
|
39
41
|
{
|
|
40
|
-
source: new streams_1.JsToXml(await recompose(stateValue)),
|
|
42
|
+
source: new streams_1.JsToXml(await recompose(cache)(stateValue)),
|
|
41
43
|
output: (0, node_path_1.join)(stateValue.component.type.directoryName, `${stateValue.component.fullName}.${stateValue.component.type.suffix}`),
|
|
42
44
|
},
|
|
43
45
|
],
|
|
44
46
|
});
|
|
45
|
-
const recompose = async (stateValue) => {
|
|
46
|
-
await getXmlFromCache(stateValue.component);
|
|
47
|
+
const recompose = (cache) => async (stateValue) => {
|
|
48
|
+
await getXmlFromCache(cache)(stateValue.component);
|
|
47
49
|
const childXmls = await Promise.all((stateValue.children?.toArray() ?? []).filter(ensureMetadataComponentWithParent).map(async (child) => ({
|
|
48
50
|
cmp: child,
|
|
49
|
-
xmlContents: await getXmlFromCache(child),
|
|
51
|
+
xmlContents: await getXmlFromCache(cache)(child),
|
|
50
52
|
groupName: (0, decomposed_1.getXmlElement)(child.type),
|
|
51
53
|
})));
|
|
52
54
|
const parentXmlContents = {
|
|
53
55
|
[constants_1.XML_NS_KEY]: constants_1.XML_NS_URL,
|
|
54
|
-
...(await getStartingXml(stateValue.component)),
|
|
56
|
+
...(await getStartingXml(cache)(stateValue.component)),
|
|
55
57
|
// group them into an object of arrays by groupName, then merge into parent
|
|
56
58
|
...toSortedGroups(childXmls),
|
|
57
59
|
};
|
|
@@ -60,9 +62,9 @@ const recompose = async (stateValue) => {
|
|
|
60
62
|
};
|
|
61
63
|
};
|
|
62
64
|
/** @returns {} if StartEmpty, otherwise gets the parent xml */
|
|
63
|
-
const getStartingXml = async (parent) => parent.type.strategies?.recomposition === "startEmpty" /* RecompositionStrategy.StartEmpty */
|
|
65
|
+
const getStartingXml = (cache) => async (parent) => parent.type.strategies?.recomposition === "startEmpty" /* RecompositionStrategy.StartEmpty */
|
|
64
66
|
? {}
|
|
65
|
-
: (0, exports.unwrapAndOmitNS)(parent.type.name)(await getXmlFromCache(parent)) ?? {};
|
|
67
|
+
: (0, exports.unwrapAndOmitNS)(parent.type.name)(await getXmlFromCache(cache)(parent)) ?? {};
|
|
66
68
|
/** throw if the parent component isn't in the state entry */
|
|
67
69
|
const ensureStateValueWithParent = (stateValue) => {
|
|
68
70
|
if (stateValue.component) {
|
|
@@ -100,13 +102,13 @@ const toSortedGroups = (items) => {
|
|
|
100
102
|
]));
|
|
101
103
|
};
|
|
102
104
|
/** wrapper around the xml cache. Handles the nonDecomposed "parse from parent" optimization */
|
|
103
|
-
const getXmlFromCache = async (cmp) => {
|
|
105
|
+
const getXmlFromCache = (xmlCache) => async (cmp) => {
|
|
104
106
|
if (!cmp.xml)
|
|
105
107
|
return {};
|
|
106
108
|
const key = `${cmp.xml}:${cmp.fullName}`;
|
|
107
109
|
if (!xmlCache.has(key)) {
|
|
108
110
|
const parsed = cmp.parent?.type.strategies?.transformer === 'nonDecomposed'
|
|
109
|
-
? cmp.parseFromParentXml({ [cmp.parent.type.name]: await getXmlFromCache(cmp.parent) })
|
|
111
|
+
? cmp.parseFromParentXml({ [cmp.parent.type.name]: await getXmlFromCache(xmlCache)(cmp.parent) })
|
|
110
112
|
: (0, exports.unwrapAndOmitNS)(cmp.type.name)(await cmp.parseXml()) ?? {};
|
|
111
113
|
xmlCache.set(key, parsed);
|
|
112
114
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"recompositionFinalizer.js","sourceRoot":"","sources":["../../../../src/convert/convertContext/recompositionFinalizer.ts"],"names":[],"mappings":";;;AAAA;;;;;GAKG;AACH,yCAAiC;AAEjC,2CAA4C;AAC5C,uDAAkF;AAElF,sDAAgE;AAGhE,mEAAgE;AAChE,wCAAqC;AAErC,iEAAqE;;AAGrE,MAAM,QAAQ,OAAG,eAAQ,CAAc,oCAAoC,EAAE,KAAK,6pKAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"recompositionFinalizer.js","sourceRoot":"","sources":["../../../../src/convert/convertContext/recompositionFinalizer.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/source-deploy-retrieve",
|
|
3
|
-
"version": "11.6.
|
|
3
|
+
"version": "11.6.10",
|
|
4
4
|
"description": "JavaScript library to run Salesforce metadata deploys and retrieves",
|
|
5
5
|
"main": "lib/src/index.js",
|
|
6
6
|
"author": "Salesforce",
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"node": ">=18.0.0"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@salesforce/core": "^7.
|
|
29
|
-
"@salesforce/kit": "^3.1.
|
|
28
|
+
"@salesforce/core": "^7.4.1",
|
|
29
|
+
"@salesforce/kit": "^3.1.6",
|
|
30
30
|
"@salesforce/ts-types": "^2.0.9",
|
|
31
31
|
"fast-levenshtein": "^3.0.0",
|
|
32
32
|
"fast-xml-parser": "^4.3.6",
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@jsforce/jsforce-node": "^3.2.0",
|
|
43
|
-
"@salesforce/cli-plugins-testkit": "^5.3.
|
|
44
|
-
"@salesforce/dev-scripts": "^10.1.
|
|
43
|
+
"@salesforce/cli-plugins-testkit": "^5.3.14",
|
|
44
|
+
"@salesforce/dev-scripts": "^10.1.1",
|
|
45
45
|
"@types/deep-equal-in-any-order": "^1.0.1",
|
|
46
46
|
"@types/fast-levenshtein": "^0.0.4",
|
|
47
47
|
"@types/graceful-fs": "^4.1.9",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"@types/minimatch": "^5.1.2",
|
|
50
50
|
"deep-equal-in-any-order": "^1.1.19",
|
|
51
51
|
"deepmerge": "^4.3.1",
|
|
52
|
-
"eslint-plugin-sf-plugin": "^1.18.
|
|
52
|
+
"eslint-plugin-sf-plugin": "^1.18.7",
|
|
53
53
|
"mocha-junit-reporter": "^1.23.3",
|
|
54
54
|
"mocha-snap": "^5.0.0",
|
|
55
55
|
"ts-node": "^10.9.2",
|