@salesforce/plugin-data 3.8.1 → 3.9.0
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 +22 -22
- package/lib/api/data/tree/importCommon.js +15 -0
- package/lib/api/data/tree/importCommon.js.map +1 -1
- package/lib/api/data/tree/importFiles.js +3 -2
- package/lib/api/data/tree/importFiles.js.map +1 -1
- package/lib/api/data/tree/importPlan.js +2 -1
- package/lib/api/data/tree/importPlan.js.map +1 -1
- package/lib/bulkOperationBase.js +6 -7
- package/lib/bulkOperationBase.js.map +1 -1
- package/lib/commands/data/import/legacy/tree.js +4 -5
- package/lib/commands/data/import/legacy/tree.js.map +1 -1
- package/lib/commands/data/import/tree.js +8 -5
- package/lib/commands/data/import/tree.js.map +1 -1
- package/lib/reporters/query/humanReporter.js +24 -19
- package/lib/reporters/query/humanReporter.js.map +1 -1
- package/lib/reporters/search/humanSearchReporter.js +3 -3
- package/lib/reporters/search/humanSearchReporter.js.map +1 -1
- package/messages/importApi.md +4 -0
- package/oclif.manifest.json +300 -300
- package/package.json +6 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-data",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.9.0",
|
|
4
4
|
"description": "Plugin for salesforce data commands",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"homepage": "https://github.com/salesforcecli/plugin-data",
|
|
@@ -113,7 +113,7 @@
|
|
|
113
113
|
"@oclif/multi-stage-output": "^0.7.5",
|
|
114
114
|
"@salesforce/core": "^8.6.1",
|
|
115
115
|
"@salesforce/kit": "^3.2.2",
|
|
116
|
-
"@salesforce/sf-plugins-core": "^
|
|
116
|
+
"@salesforce/sf-plugins-core": "^12.0.10",
|
|
117
117
|
"@salesforce/ts-types": "^2.0.11",
|
|
118
118
|
"ansis": "^3.2.0",
|
|
119
119
|
"change-case": "^5.4.4",
|
|
@@ -124,7 +124,8 @@
|
|
|
124
124
|
},
|
|
125
125
|
"devDependencies": {
|
|
126
126
|
"@oclif/core": "^4.0.19",
|
|
127
|
-
"@oclif/plugin-command-snapshot": "^5.2.
|
|
127
|
+
"@oclif/plugin-command-snapshot": "^5.2.15",
|
|
128
|
+
"@oclif/test": "^4.1.0",
|
|
128
129
|
"@salesforce/cli-plugins-testkit": "^5.3.34",
|
|
129
130
|
"@salesforce/dev-scripts": "^10.2.10",
|
|
130
131
|
"@salesforce/plugin-command-reference": "^3.1.27",
|
|
@@ -255,7 +256,7 @@
|
|
|
255
256
|
"exports": "./lib/index.js",
|
|
256
257
|
"type": "module",
|
|
257
258
|
"sfdx": {
|
|
258
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/3.
|
|
259
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/3.
|
|
259
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/3.9.0.crt",
|
|
260
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/3.9.0.sig"
|
|
260
261
|
}
|
|
261
262
|
}
|