@salesforce/plugin-data 2.1.1 → 2.1.2
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/CHANGELOG.md +2 -0
- package/README.md +53 -14
- package/lib/api/data/tree/exportApi.js +12 -21
- package/lib/api/data/tree/exportApi.js.map +1 -1
- package/lib/commands/force/data/soql/bulk/report.d.ts +9 -0
- package/lib/commands/force/data/soql/bulk/report.js +45 -0
- package/lib/commands/force/data/soql/bulk/report.js.map +1 -0
- package/lib/commands/force/data/soql/query.d.ts +20 -2
- package/lib/commands/force/data/soql/query.js +72 -12
- package/lib/commands/force/data/soql/query.js.map +1 -1
- package/lib/commands/force/data/tree/import.js +1 -2
- package/lib/commands/force/data/tree/import.js.map +1 -1
- package/lib/dataCommand.js +2 -3
- package/lib/dataCommand.js.map +1 -1
- package/lib/dataSoqlQueryTypes.d.ts +3 -1
- package/lib/dataSoqlQueryTypes.js +1 -1
- package/lib/dataSoqlQueryTypes.js.map +1 -1
- package/lib/reporters.js +12 -11
- package/lib/reporters.js.map +1 -1
- package/messages/bulk.report.json +7 -0
- package/messages/soql.query.json +3 -0
- package/oclif.manifest.json +1 -1
- package/package.json +16 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-data",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.2",
|
|
4
4
|
"description": "Plugin for salesforce data commands",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -41,7 +41,12 @@
|
|
|
41
41
|
"description": "manipulate records using the enterprise API"
|
|
42
42
|
},
|
|
43
43
|
"soql": {
|
|
44
|
-
"description": "fetch records using SOQL"
|
|
44
|
+
"description": "fetch records using SOQL",
|
|
45
|
+
"subtopics": {
|
|
46
|
+
"bulk": {
|
|
47
|
+
"description": "fetch records using the bulk 2.0 API"
|
|
48
|
+
}
|
|
49
|
+
}
|
|
45
50
|
},
|
|
46
51
|
"tree": {
|
|
47
52
|
"description": "import/export records using the tree API"
|
|
@@ -78,18 +83,19 @@
|
|
|
78
83
|
"prepare": "sf-install",
|
|
79
84
|
"pretest": "sf-compile-test",
|
|
80
85
|
"test": "sf-test",
|
|
81
|
-
"test:command-reference": "./bin/
|
|
82
|
-
"test:deprecation-policy": "./bin/
|
|
86
|
+
"test:command-reference": "./bin/dev commandreference:generate --erroronwarnings",
|
|
87
|
+
"test:deprecation-policy": "./bin/dev snapshot:compare",
|
|
83
88
|
"test:nuts": "nyc mocha \"./test/**/*.nut.ts\" --slow 4500 --timeout 600000 --parallel",
|
|
84
89
|
"version": "oclif readme"
|
|
85
90
|
},
|
|
86
91
|
"dependencies": {
|
|
87
|
-
"@oclif/core": "^1.
|
|
88
|
-
"@salesforce/command": "^5.
|
|
89
|
-
"@salesforce/core": "^3.
|
|
92
|
+
"@oclif/core": "^1.13.10",
|
|
93
|
+
"@salesforce/command": "^5.2.4",
|
|
94
|
+
"@salesforce/core": "^3.26.1",
|
|
90
95
|
"@salesforce/ts-types": "^1.5.20",
|
|
91
96
|
"@types/fs-extra": "^9.0.13",
|
|
92
97
|
"chalk": "^4.1.0",
|
|
98
|
+
"jsforce": "beta",
|
|
93
99
|
"csv-parse": "^4.16.3",
|
|
94
100
|
"fs-extra": "^10.0.1",
|
|
95
101
|
"csv-stringify": "^6.0.5",
|
|
@@ -99,7 +105,7 @@
|
|
|
99
105
|
"@oclif/plugin-command-snapshot": "^3.1.3",
|
|
100
106
|
"@salesforce/cli-plugins-testkit": "^1.4.24",
|
|
101
107
|
"@salesforce/dev-config": "^3.0.1",
|
|
102
|
-
"@salesforce/dev-scripts": "2.0.
|
|
108
|
+
"@salesforce/dev-scripts": "2.0.4",
|
|
103
109
|
"@salesforce/plugin-command-reference": "^1.3.0",
|
|
104
110
|
"@salesforce/prettier-config": "^0.0.2",
|
|
105
111
|
"@salesforce/ts-sinon": "^1.3.15",
|
|
@@ -135,7 +141,7 @@
|
|
|
135
141
|
"typescript": "^4.4.4"
|
|
136
142
|
},
|
|
137
143
|
"sfdx": {
|
|
138
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/2.1.
|
|
139
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/2.1.
|
|
144
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/2.1.2.crt",
|
|
145
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/2.1.2.sig"
|
|
140
146
|
}
|
|
141
147
|
}
|