@salesforce/plugin-data 2.3.9 → 2.3.10
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/oclif.manifest.json +1 -1
- package/package.json +17 -17
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-data",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.10",
|
|
4
4
|
"description": "Plugin for salesforce data commands",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -24,14 +24,14 @@
|
|
|
24
24
|
],
|
|
25
25
|
"topics": {
|
|
26
26
|
"force": {
|
|
27
|
-
"description": "
|
|
27
|
+
"description": "Legacy commands for backward compatibility.",
|
|
28
28
|
"subtopics": {
|
|
29
29
|
"data": {
|
|
30
|
-
"description": "
|
|
30
|
+
"description": "Manage records in your org using Bulk API V1.",
|
|
31
31
|
"longDescription": "Use the data commands to insert and delete data in your orgs using V1 of Bulk API, using CSV files as input.",
|
|
32
32
|
"subtopics": {
|
|
33
33
|
"bulk": {
|
|
34
|
-
"description": "
|
|
34
|
+
"description": "Bulk manage records in your org using Bulk API V1",
|
|
35
35
|
"longDescription": "Use the data commands to insert and delete data in your orgs using V1 of Bulk API, using CSV files as input."
|
|
36
36
|
}
|
|
37
37
|
}
|
|
@@ -39,32 +39,32 @@
|
|
|
39
39
|
}
|
|
40
40
|
},
|
|
41
41
|
"data": {
|
|
42
|
-
"description": "
|
|
42
|
+
"description": "Manage records in your org.",
|
|
43
43
|
"longDescription": "Use the data commands to manipulate records in your org. Commands are available to help you work with various APIs. Import CSV files with the Bulk API V2. Export and import data with the SObject Tree Save API. Perform simple CRUD operations on individual records with the REST API.",
|
|
44
44
|
"subtopics": {
|
|
45
45
|
"create": {
|
|
46
|
-
"description": "
|
|
46
|
+
"description": "Create a record."
|
|
47
47
|
},
|
|
48
48
|
"delete": {
|
|
49
|
-
"description": "
|
|
49
|
+
"description": "Delete a single record or multiple records in bulk."
|
|
50
50
|
},
|
|
51
51
|
"export": {
|
|
52
|
-
"description": "
|
|
52
|
+
"description": "Export data from your org."
|
|
53
53
|
},
|
|
54
54
|
"get": {
|
|
55
|
-
"description": "
|
|
55
|
+
"description": "Get a single record."
|
|
56
56
|
},
|
|
57
57
|
"import": {
|
|
58
|
-
"description": "
|
|
58
|
+
"description": "Import data to your org."
|
|
59
59
|
},
|
|
60
60
|
"query": {
|
|
61
|
-
"description": "
|
|
61
|
+
"description": "Query records."
|
|
62
62
|
},
|
|
63
63
|
"update": {
|
|
64
|
-
"description": "
|
|
64
|
+
"description": "Update a single record."
|
|
65
65
|
},
|
|
66
66
|
"upsert": {
|
|
67
|
-
"description": "
|
|
67
|
+
"description": "Upsert many records."
|
|
68
68
|
}
|
|
69
69
|
}
|
|
70
70
|
}
|
|
@@ -114,7 +114,7 @@
|
|
|
114
114
|
},
|
|
115
115
|
"devDependencies": {
|
|
116
116
|
"@oclif/plugin-command-snapshot": "^3.3.10",
|
|
117
|
-
"@salesforce/cli-plugins-testkit": "^3.
|
|
117
|
+
"@salesforce/cli-plugins-testkit": "^3.3.1",
|
|
118
118
|
"@salesforce/dev-config": "^3.0.1",
|
|
119
119
|
"@salesforce/dev-scripts": "^4.1.3",
|
|
120
120
|
"@salesforce/plugin-command-reference": "^2.4.1",
|
|
@@ -135,7 +135,7 @@
|
|
|
135
135
|
"eslint-config-salesforce-typescript": "^1.1.1",
|
|
136
136
|
"eslint-plugin-header": "^3.1.1",
|
|
137
137
|
"eslint-plugin-import": "^2.27.5",
|
|
138
|
-
"eslint-plugin-jsdoc": "^40.
|
|
138
|
+
"eslint-plugin-jsdoc": "^40.1.1",
|
|
139
139
|
"eslint-plugin-sf-plugin": "^1.14.0",
|
|
140
140
|
"fast-xml-parser": "^3.20.3",
|
|
141
141
|
"husky": "^7.0.4",
|
|
@@ -258,7 +258,7 @@
|
|
|
258
258
|
}
|
|
259
259
|
},
|
|
260
260
|
"sfdx": {
|
|
261
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/2.3.
|
|
262
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/2.3.
|
|
261
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/2.3.10.crt",
|
|
262
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/2.3.10.sig"
|
|
263
263
|
}
|
|
264
264
|
}
|