@salesforce/plugin-data 5.1.2 → 5.1.3
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 +24 -24
- package/lib/api/data/tree/exportApi.js +1 -3
- package/lib/api/data/tree/exportApi.js.map +1 -1
- package/lib/batcher.js +2 -4
- package/lib/batcher.js.map +1 -1
- package/lib/bulkUtils.js +1 -1
- package/lib/bulkUtils.js.map +1 -1
- package/lib/commands/data/create/file.js +0 -2
- package/lib/commands/data/create/file.js.map +1 -1
- package/lib/commands/data/delete/record.js +1 -2
- package/lib/commands/data/delete/record.js.map +1 -1
- package/lib/commands/data/export/bulk.js.map +1 -1
- package/lib/commands/data/export/resume.js.map +1 -1
- package/lib/commands/data/get/record.js +1 -2
- package/lib/commands/data/get/record.js.map +1 -1
- package/lib/commands/data/query.js.map +1 -1
- package/lib/commands/data/update/record.js +1 -2
- package/lib/commands/data/update/record.js.map +1 -1
- package/lib/commands/force/data/bulk/delete.js +2 -2
- package/lib/commands/force/data/bulk/delete.js.map +1 -1
- package/lib/commands/force/data/bulk/upsert.js +3 -3
- package/lib/commands/force/data/bulk/upsert.js.map +1 -1
- package/lib/reporters/query/humanReporter.js +2 -2
- package/lib/reporters/query/humanReporter.js.map +1 -1
- package/oclif.manifest.json +301 -301
- package/package.json +12 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-data",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.3",
|
|
4
4
|
"description": "Plugin for salesforce data commands",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"homepage": "https://github.com/salesforcecli/plugin-data",
|
|
@@ -143,9 +143,15 @@
|
|
|
143
143
|
"@oclif/plugin-command-snapshot": "^5.3.34",
|
|
144
144
|
"@oclif/test": "^4.1.21",
|
|
145
145
|
"@salesforce/cli-plugins-testkit": "^5.3.64",
|
|
146
|
-
"@salesforce/dev-scripts": "^
|
|
147
|
-
"@salesforce/plugin-command-reference": "^3.1.
|
|
146
|
+
"@salesforce/dev-scripts": "^13.0.2",
|
|
147
|
+
"@salesforce/plugin-command-reference": "^3.1.131",
|
|
148
148
|
"@salesforce/types": "^1.8.0",
|
|
149
|
+
"@types/chai": "^4.3.17",
|
|
150
|
+
"@types/mocha": "^10.0.10",
|
|
151
|
+
"@types/node": "^18",
|
|
152
|
+
"@types/sinon": "^10.0.20",
|
|
153
|
+
"eslint": "^10.4.0",
|
|
154
|
+
"eslint-config-salesforce-typescript": "^6.0.0",
|
|
149
155
|
"eslint-plugin-sf-plugin": "^1.20.33",
|
|
150
156
|
"oclif": "^4.23.29",
|
|
151
157
|
"ts-node": "^10.9.2",
|
|
@@ -193,6 +199,7 @@
|
|
|
193
199
|
"src/**/*.ts",
|
|
194
200
|
"test/**/*.ts",
|
|
195
201
|
"messages/**",
|
|
202
|
+
"**/eslint.config.*",
|
|
196
203
|
"**/.eslint*",
|
|
197
204
|
"**/tsconfig.json"
|
|
198
205
|
],
|
|
@@ -274,7 +281,7 @@
|
|
|
274
281
|
"exports": "./lib/index.js",
|
|
275
282
|
"type": "module",
|
|
276
283
|
"sfdx": {
|
|
277
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/5.1.
|
|
278
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/5.1.
|
|
284
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/5.1.3.crt",
|
|
285
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/5.1.3.sig"
|
|
279
286
|
}
|
|
280
287
|
}
|