@salesforce/plugin-metadata-enrichment 0.0.3 → 0.0.4
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.
package/README.md
CHANGED
|
@@ -128,6 +128,6 @@ FLAG DESCRIPTIONS
|
|
|
128
128
|
Wildcards ("_") are supported as long as you use double quotes, such as "LightningComponentBundle:MyClass_".
|
|
129
129
|
```
|
|
130
130
|
|
|
131
|
-
_See code: [src/commands/metadata/enrich.ts](https://github.com/salesforcecli/plugin-metadata-enrichment/blob/0.0.
|
|
131
|
+
_See code: [src/commands/metadata/enrich.ts](https://github.com/salesforcecli/plugin-metadata-enrichment/blob/0.0.4/src/commands/metadata/enrich.ts)_
|
|
132
132
|
|
|
133
133
|
<!-- commandsstop -->
|
|
@@ -17,7 +17,7 @@ import { MultiStageOutput } from '@oclif/multi-stage-output';
|
|
|
17
17
|
import { Messages, SfProject } from '@salesforce/core';
|
|
18
18
|
import { Flags, SfCommand, Ux } from '@salesforce/sf-plugins-core';
|
|
19
19
|
import { ComponentSetBuilder } from '@salesforce/source-deploy-retrieve';
|
|
20
|
-
import {
|
|
20
|
+
import { SourceComponentProcessor, EnrichmentHandler, EnrichmentMetrics, EnrichmentRecords, EnrichmentStatus, FileProcessor } from '@salesforce/metadata-enrichment';
|
|
21
21
|
Messages.importMessagesDirectoryFromMetaUrl(import.meta.url);
|
|
22
22
|
const commandMessages = Messages.loadMessages('@salesforce/plugin-metadata-enrichment', 'metadata.enrich');
|
|
23
23
|
const metricsMessages = Messages.loadMessages('@salesforce/plugin-metadata-enrichment', 'metrics');
|
|
@@ -60,7 +60,7 @@ export default class MetadataEnrich extends SfCommand {
|
|
|
60
60
|
});
|
|
61
61
|
const projectSourceComponents = projectComponentSet.getSourceComponents().toArray();
|
|
62
62
|
const enrichmentRecords = new EnrichmentRecords(projectSourceComponents);
|
|
63
|
-
const componentsToSkip =
|
|
63
|
+
const componentsToSkip = SourceComponentProcessor.getComponentsToSkip(projectSourceComponents, metadataEntries, project.getPath());
|
|
64
64
|
enrichmentRecords.addSkippedComponents(componentsToSkip);
|
|
65
65
|
enrichmentRecords.updateWithStatus(componentsToSkip, EnrichmentStatus.SKIPPED);
|
|
66
66
|
enrichmentRecords.generateSkipReasons(componentsToSkip, projectSourceComponents);
|
|
@@ -79,7 +79,7 @@ export default class MetadataEnrich extends SfCommand {
|
|
|
79
79
|
const enrichmentResults = await EnrichmentHandler.enrich(connection, componentsEligibleToProcess);
|
|
80
80
|
enrichmentRecords.updateWithResults(enrichmentResults);
|
|
81
81
|
mso.next();
|
|
82
|
-
const fileUpdatedRecords = await FileProcessor.
|
|
82
|
+
const fileUpdatedRecords = await FileProcessor.updateMetadata(componentsEligibleToProcess, enrichmentRecords.recordSet);
|
|
83
83
|
enrichmentRecords.updateWithResults(Array.from(fileUpdatedRecords));
|
|
84
84
|
mso.stop();
|
|
85
85
|
const metrics = EnrichmentMetrics.createEnrichmentMetrics(Array.from(enrichmentRecords.recordSet));
|
|
@@ -91,18 +91,21 @@ export default class MetadataEnrich extends SfCommand {
|
|
|
91
91
|
status: 'Success',
|
|
92
92
|
type: c.typeName,
|
|
93
93
|
component: c.componentName,
|
|
94
|
+
requestId: c.requestId,
|
|
94
95
|
message: c.message,
|
|
95
96
|
})),
|
|
96
97
|
...metrics.skipped.components.map((c) => ({
|
|
97
98
|
status: 'Skipped',
|
|
98
99
|
type: c.typeName,
|
|
99
100
|
component: c.componentName,
|
|
101
|
+
requestId: c.requestId,
|
|
100
102
|
message: c.message,
|
|
101
103
|
})),
|
|
102
104
|
...metrics.fail.components.map((c) => ({
|
|
103
105
|
status: 'Failed',
|
|
104
106
|
type: c.typeName,
|
|
105
107
|
component: c.componentName,
|
|
108
|
+
requestId: c.requestId,
|
|
106
109
|
message: c.message,
|
|
107
110
|
})),
|
|
108
111
|
];
|
|
@@ -113,6 +116,7 @@ export default class MetadataEnrich extends SfCommand {
|
|
|
113
116
|
{ key: 'status', name: 'Status' },
|
|
114
117
|
{ key: 'type', name: 'Type' },
|
|
115
118
|
{ key: 'component', name: 'Component' },
|
|
119
|
+
{ key: 'requestId', name: 'Request ID' },
|
|
116
120
|
{ key: 'message', name: 'Message' },
|
|
117
121
|
],
|
|
118
122
|
data: tableRows,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"enrich.js","sourceRoot":"","sources":["../../../src/commands/metadata/enrich.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EAAE,gBAAgB,EAAE,MAAM,2BAA2B,CAAC;AAC7D,OAAO,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,EAAE,KAAK,EAAE,SAAS,EAAE,EAAE,EAAE,MAAM,6BAA6B,CAAC;AACnE,OAAO,EAAE,mBAAmB,EAAE,MAAM,oCAAoC,CAAC;AACzE,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"enrich.js","sourceRoot":"","sources":["../../../src/commands/metadata/enrich.ts"],"names":[],"mappings":"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"}
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-metadata-enrichment",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/plugin-metadata-enrichment",
|
|
9
|
-
"version": "0.0.
|
|
9
|
+
"version": "0.0.4",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@oclif/core": "^4",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"@oclif/table": "^0.5.1",
|
|
15
15
|
"@salesforce/core": "^8.24.0",
|
|
16
16
|
"@salesforce/kit": "^3.2.4",
|
|
17
|
-
"@salesforce/metadata-enrichment": "^0.0.
|
|
17
|
+
"@salesforce/metadata-enrichment": "^0.0.6",
|
|
18
18
|
"@salesforce/sf-plugins-core": "^12",
|
|
19
19
|
"@salesforce/source-deploy-retrieve": "^12.0.1"
|
|
20
20
|
},
|
|
@@ -1124,7 +1124,6 @@
|
|
|
1124
1124
|
"integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==",
|
|
1125
1125
|
"dev": true,
|
|
1126
1126
|
"license": "MIT",
|
|
1127
|
-
"peer": true,
|
|
1128
1127
|
"dependencies": {
|
|
1129
1128
|
"@babel/code-frame": "^7.29.0",
|
|
1130
1129
|
"@babel/generator": "^7.29.0",
|
|
@@ -1664,8 +1663,7 @@
|
|
|
1664
1663
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.1.tgz",
|
|
1665
1664
|
"integrity": "sha512-4tT2UrL5LBqDwoed9wZ6N3umC4Yhz3W3FloMmiiG4JwmUJWpie0c7lcnUNd4gtMKuDEO4wRVS8B6Xa0uMRsMKg==",
|
|
1666
1665
|
"dev": true,
|
|
1667
|
-
"license": "MIT"
|
|
1668
|
-
"peer": true
|
|
1666
|
+
"license": "MIT"
|
|
1669
1667
|
},
|
|
1670
1668
|
"node_modules/@commitlint/load/node_modules/cosmiconfig-typescript-loader": {
|
|
1671
1669
|
"version": "4.4.0",
|
|
@@ -4192,9 +4190,9 @@
|
|
|
4192
4190
|
}
|
|
4193
4191
|
},
|
|
4194
4192
|
"node_modules/@salesforce/metadata-enrichment": {
|
|
4195
|
-
"version": "0.0.
|
|
4196
|
-
"resolved": "https://registry.npmjs.org/@salesforce/metadata-enrichment/-/metadata-enrichment-0.0.
|
|
4197
|
-
"integrity": "sha512-
|
|
4193
|
+
"version": "0.0.6",
|
|
4194
|
+
"resolved": "https://registry.npmjs.org/@salesforce/metadata-enrichment/-/metadata-enrichment-0.0.6.tgz",
|
|
4195
|
+
"integrity": "sha512-pFH6vpJoXPTLS7679g3GaKeNbkfwCtJVKWrTJUoLi8aYP9dec6LRsnBB7/RU1pU5jZ51/C3lLILALVt5S7rdfA==",
|
|
4198
4196
|
"license": "Apache-2.0",
|
|
4199
4197
|
"dependencies": {
|
|
4200
4198
|
"@salesforce/core": "^8.24.0",
|
|
@@ -5795,7 +5793,6 @@
|
|
|
5795
5793
|
"integrity": "sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==",
|
|
5796
5794
|
"dev": true,
|
|
5797
5795
|
"license": "BSD-2-Clause",
|
|
5798
|
-
"peer": true,
|
|
5799
5796
|
"dependencies": {
|
|
5800
5797
|
"@typescript-eslint/scope-manager": "6.21.0",
|
|
5801
5798
|
"@typescript-eslint/types": "6.21.0",
|
|
@@ -5993,7 +5990,6 @@
|
|
|
5993
5990
|
"integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
|
|
5994
5991
|
"dev": true,
|
|
5995
5992
|
"license": "MIT",
|
|
5996
|
-
"peer": true,
|
|
5997
5993
|
"bin": {
|
|
5998
5994
|
"acorn": "bin/acorn"
|
|
5999
5995
|
},
|
|
@@ -6568,7 +6564,6 @@
|
|
|
6568
6564
|
}
|
|
6569
6565
|
],
|
|
6570
6566
|
"license": "MIT",
|
|
6571
|
-
"peer": true,
|
|
6572
6567
|
"dependencies": {
|
|
6573
6568
|
"baseline-browser-mapping": "^2.9.0",
|
|
6574
6569
|
"caniuse-lite": "^1.0.30001759",
|
|
@@ -7498,7 +7493,6 @@
|
|
|
7498
7493
|
"integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==",
|
|
7499
7494
|
"dev": true,
|
|
7500
7495
|
"license": "MIT",
|
|
7501
|
-
"peer": true,
|
|
7502
7496
|
"dependencies": {
|
|
7503
7497
|
"import-fresh": "^3.3.0",
|
|
7504
7498
|
"js-yaml": "^4.1.0",
|
|
@@ -8312,7 +8306,6 @@
|
|
|
8312
8306
|
"integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==",
|
|
8313
8307
|
"dev": true,
|
|
8314
8308
|
"license": "MIT",
|
|
8315
|
-
"peer": true,
|
|
8316
8309
|
"dependencies": {
|
|
8317
8310
|
"@eslint-community/eslint-utils": "^4.2.0",
|
|
8318
8311
|
"@eslint-community/regexpp": "^4.6.1",
|
|
@@ -13682,7 +13675,6 @@
|
|
|
13682
13675
|
"integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==",
|
|
13683
13676
|
"dev": true,
|
|
13684
13677
|
"license": "MIT",
|
|
13685
|
-
"peer": true,
|
|
13686
13678
|
"bin": {
|
|
13687
13679
|
"prettier": "bin-prettier.js"
|
|
13688
13680
|
},
|
|
@@ -13981,7 +13973,6 @@
|
|
|
13981
13973
|
"resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz",
|
|
13982
13974
|
"integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==",
|
|
13983
13975
|
"license": "MIT",
|
|
13984
|
-
"peer": true,
|
|
13985
13976
|
"dependencies": {
|
|
13986
13977
|
"loose-envify": "^1.1.0"
|
|
13987
13978
|
},
|
|
@@ -15568,7 +15559,6 @@
|
|
|
15568
15559
|
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
|
|
15569
15560
|
"integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
|
|
15570
15561
|
"license": "MIT",
|
|
15571
|
-
"peer": true,
|
|
15572
15562
|
"engines": {
|
|
15573
15563
|
"node": ">=12"
|
|
15574
15564
|
},
|
|
@@ -15750,7 +15740,6 @@
|
|
|
15750
15740
|
"integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==",
|
|
15751
15741
|
"dev": true,
|
|
15752
15742
|
"license": "MIT",
|
|
15753
|
-
"peer": true,
|
|
15754
15743
|
"dependencies": {
|
|
15755
15744
|
"@cspotcode/source-map-support": "^0.8.0",
|
|
15756
15745
|
"@tsconfig/node10": "^1.0.7",
|
|
@@ -15828,8 +15817,7 @@
|
|
|
15828
15817
|
"version": "2.8.1",
|
|
15829
15818
|
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
|
15830
15819
|
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
|
|
15831
|
-
"license": "0BSD"
|
|
15832
|
-
"peer": true
|
|
15820
|
+
"license": "0BSD"
|
|
15833
15821
|
},
|
|
15834
15822
|
"node_modules/tunnel-agent": {
|
|
15835
15823
|
"version": "0.6.0",
|
|
@@ -16019,7 +16007,6 @@
|
|
|
16019
16007
|
"integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
|
|
16020
16008
|
"dev": true,
|
|
16021
16009
|
"license": "Apache-2.0",
|
|
16022
|
-
"peer": true,
|
|
16023
16010
|
"bin": {
|
|
16024
16011
|
"tsc": "bin/tsc",
|
|
16025
16012
|
"tsserver": "bin/tsserver"
|
package/oclif.lock
CHANGED
|
@@ -1739,10 +1739,10 @@
|
|
|
1739
1739
|
dependencies:
|
|
1740
1740
|
"@salesforce/ts-types" "^2.0.12"
|
|
1741
1741
|
|
|
1742
|
-
"@salesforce/metadata-enrichment@^0.0.
|
|
1743
|
-
version "0.0.
|
|
1744
|
-
resolved "https://registry.yarnpkg.com/@salesforce/metadata-enrichment/-/metadata-enrichment-0.0.
|
|
1745
|
-
integrity sha512-
|
|
1742
|
+
"@salesforce/metadata-enrichment@^0.0.6":
|
|
1743
|
+
version "0.0.6"
|
|
1744
|
+
resolved "https://registry.yarnpkg.com/@salesforce/metadata-enrichment/-/metadata-enrichment-0.0.6.tgz#c80932f67c65c36ba6eae14e666dea141efaf495"
|
|
1745
|
+
integrity sha512-pFH6vpJoXPTLS7679g3GaKeNbkfwCtJVKWrTJUoLi8aYP9dec6LRsnBB7/RU1pU5jZ51/C3lLILALVt5S7rdfA==
|
|
1746
1746
|
dependencies:
|
|
1747
1747
|
"@salesforce/core" "^8.24.0"
|
|
1748
1748
|
"@salesforce/kit" "^3.2.4"
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-metadata-enrichment",
|
|
3
3
|
"description": "A Salesforce CLI plugin to enrich metadata for Salesforce resources",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.4",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
7
|
"dependencies": {
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"@oclif/table": "^0.5.1",
|
|
11
11
|
"@salesforce/core": "^8.24.0",
|
|
12
12
|
"@salesforce/kit": "^3.2.4",
|
|
13
|
-
"@salesforce/metadata-enrichment": "^0.0.
|
|
13
|
+
"@salesforce/metadata-enrichment": "^0.0.6",
|
|
14
14
|
"@salesforce/sf-plugins-core": "^12",
|
|
15
15
|
"@salesforce/source-deploy-retrieve": "^12.0.1"
|
|
16
16
|
},
|
|
@@ -203,7 +203,7 @@
|
|
|
203
203
|
"exports": "./lib/index.js",
|
|
204
204
|
"type": "module",
|
|
205
205
|
"sfdx": {
|
|
206
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-metadata-enrichment/0.0.
|
|
207
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-metadata-enrichment/0.0.
|
|
206
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-metadata-enrichment/0.0.4.crt",
|
|
207
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-metadata-enrichment/0.0.4.sig"
|
|
208
208
|
}
|
|
209
209
|
}
|