@salesforce/plugin-custom-metadata 3.3.18 → 3.3.19
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 +5 -5
- package/lib/commands/cmdt/generate/fromorg.js +28 -15
- package/lib/commands/cmdt/generate/fromorg.js.map +1 -1
- package/lib/shared/helpers/createUtil.js.map +1 -1
- package/lib/shared/helpers/fileWriter.d.ts +1 -1
- package/lib/shared/helpers/fileWriter.js +2 -5
- package/lib/shared/helpers/fileWriter.js.map +1 -1
- package/lib/shared/templates/templates.d.ts +3 -3
- package/lib/shared/templates/templates.js +6 -2
- package/lib/shared/templates/templates.js.map +1 -1
- package/lib/shared/types.d.ts +13 -0
- package/lib/shared/types.js +8 -0
- package/lib/shared/types.js.map +1 -0
- package/npm-shrinkwrap.json +2804 -5877
- package/oclif.lock +39 -385
- package/oclif.manifest.json +1 -1
- package/package.json +6 -5
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-custom-metadata",
|
|
3
3
|
"description": "Tools for working with custom metadata types and their records.",
|
|
4
|
-
"version": "3.3.
|
|
4
|
+
"version": "3.3.19",
|
|
5
5
|
"contributors": [
|
|
6
6
|
{
|
|
7
7
|
"name": "Carolyn Grabill",
|
|
@@ -42,14 +42,14 @@
|
|
|
42
42
|
],
|
|
43
43
|
"bugs": "https://github.com/salesforcecli/plugin-custom-metadata/issues",
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@oclif/core": "^4",
|
|
46
45
|
"@salesforce/core": "^8.1.0",
|
|
47
46
|
"@salesforce/sf-plugins-core": "^11.1.7",
|
|
48
47
|
"csv-parse": "^5.5.6",
|
|
49
48
|
"fast-xml-parser": "^4.4.0"
|
|
50
49
|
},
|
|
51
50
|
"devDependencies": {
|
|
52
|
-
"@jsforce/jsforce-node": "^3.2.
|
|
51
|
+
"@jsforce/jsforce-node": "^3.2.2",
|
|
52
|
+
"@oclif/core": "^4.0.7",
|
|
53
53
|
"@oclif/plugin-command-snapshot": "^5.2.5",
|
|
54
54
|
"@salesforce/cli-plugins-testkit": "^5.3.18",
|
|
55
55
|
"@salesforce/dev-scripts": "^10.2.2",
|
|
@@ -117,6 +117,7 @@
|
|
|
117
117
|
"test": "wireit",
|
|
118
118
|
"test:nuts": "nyc mocha \"**/*.nut.ts\" --slow 4500 --timeout 600000 --parallel --jobs 20",
|
|
119
119
|
"test:nuts:local": "nyc mocha \"**/local/*.nut.ts\" --slow 4500 --timeout 600000 --parallel --jobs 20",
|
|
120
|
+
"test:nuts:remote": "nyc mocha \"**/nuts/*.nut.ts\" --slow 4500 --timeout 600000 --parallel --jobs 20",
|
|
120
121
|
"test:only": "wireit",
|
|
121
122
|
"version": "oclif readme"
|
|
122
123
|
},
|
|
@@ -242,7 +243,7 @@
|
|
|
242
243
|
"type": "module",
|
|
243
244
|
"author": "Salesforce",
|
|
244
245
|
"sfdx": {
|
|
245
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-custom-metadata/3.3.
|
|
246
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-custom-metadata/3.3.
|
|
246
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-custom-metadata/3.3.19.crt",
|
|
247
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-custom-metadata/3.3.19.sig"
|
|
247
248
|
}
|
|
248
249
|
}
|