@salesforce/plugin-sobject 1.1.21 → 1.2.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 +194 -2
- package/lib/commands/schema/generate/tab.js.map +1 -1
- package/lib/shared/prompts/fields/text.js +1 -1
- package/lib/shared/prompts/fields/text.js.map +1 -1
- package/npm-shrinkwrap.json +13355 -0
- package/oclif.lock +1296 -3932
- package/oclif.manifest.json +33 -1
- package/package.json +12 -13
package/oclif.manifest.json
CHANGED
|
@@ -12,6 +12,14 @@
|
|
|
12
12
|
"Specify the local path to the object's folder:\n<%= config.bin %> <%= command.id %> --label \"My Field\" --object force-app/main/default/objects/MyObject__c"
|
|
13
13
|
],
|
|
14
14
|
"flags": {
|
|
15
|
+
"flags-dir": {
|
|
16
|
+
"helpGroup": "GLOBAL",
|
|
17
|
+
"name": "flags-dir",
|
|
18
|
+
"summary": "Import flag values from a directory.",
|
|
19
|
+
"hasDynamicHelp": false,
|
|
20
|
+
"multiple": false,
|
|
21
|
+
"type": "option"
|
|
22
|
+
},
|
|
15
23
|
"label": {
|
|
16
24
|
"char": "l",
|
|
17
25
|
"name": "label",
|
|
@@ -77,6 +85,14 @@
|
|
|
77
85
|
"Create a platform event with the specified label:\n<%= config.bin %> <%= command.id %> --label \"My Platform Event\""
|
|
78
86
|
],
|
|
79
87
|
"flags": {
|
|
88
|
+
"flags-dir": {
|
|
89
|
+
"helpGroup": "GLOBAL",
|
|
90
|
+
"name": "flags-dir",
|
|
91
|
+
"summary": "Import flag values from a directory.",
|
|
92
|
+
"hasDynamicHelp": false,
|
|
93
|
+
"multiple": false,
|
|
94
|
+
"type": "option"
|
|
95
|
+
},
|
|
80
96
|
"label": {
|
|
81
97
|
"char": "l",
|
|
82
98
|
"name": "label",
|
|
@@ -134,6 +150,14 @@
|
|
|
134
150
|
"Create a custom object and enable optional features without prompting:\n<%= config.bin %> <%= command.id %> --label \"My Object\" --use-default-features"
|
|
135
151
|
],
|
|
136
152
|
"flags": {
|
|
153
|
+
"flags-dir": {
|
|
154
|
+
"helpGroup": "GLOBAL",
|
|
155
|
+
"name": "flags-dir",
|
|
156
|
+
"summary": "Import flag values from a directory.",
|
|
157
|
+
"hasDynamicHelp": false,
|
|
158
|
+
"multiple": false,
|
|
159
|
+
"type": "option"
|
|
160
|
+
},
|
|
137
161
|
"label": {
|
|
138
162
|
"char": "l",
|
|
139
163
|
"name": "label",
|
|
@@ -205,6 +229,14 @@
|
|
|
205
229
|
"allowNo": false,
|
|
206
230
|
"type": "boolean"
|
|
207
231
|
},
|
|
232
|
+
"flags-dir": {
|
|
233
|
+
"helpGroup": "GLOBAL",
|
|
234
|
+
"name": "flags-dir",
|
|
235
|
+
"summary": "Import flag values from a directory.",
|
|
236
|
+
"hasDynamicHelp": false,
|
|
237
|
+
"multiple": false,
|
|
238
|
+
"type": "option"
|
|
239
|
+
},
|
|
208
240
|
"object": {
|
|
209
241
|
"char": "o",
|
|
210
242
|
"description": "The API name for a custom object always ends in `__c`, such as `MyObject__c`.",
|
|
@@ -272,5 +304,5 @@
|
|
|
272
304
|
]
|
|
273
305
|
}
|
|
274
306
|
},
|
|
275
|
-
"version": "1.
|
|
307
|
+
"version": "1.2.0"
|
|
276
308
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-sobject",
|
|
3
3
|
"description": "Create objects, fields, tabs, etc",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.2.0",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
7
|
"dependencies": {
|
|
@@ -11,20 +11,19 @@
|
|
|
11
11
|
"@oclif/core": "^3.25.2",
|
|
12
12
|
"@salesforce/core": "^6.7.3",
|
|
13
13
|
"@salesforce/kit": "^3.0.15",
|
|
14
|
-
"@salesforce/sf-plugins-core": "^
|
|
14
|
+
"@salesforce/sf-plugins-core": "^8.0.1",
|
|
15
15
|
"fast-glob": "^3.3.2",
|
|
16
16
|
"fast-xml-parser": "^4.3.6",
|
|
17
17
|
"js2xmlparser": "^4.0.2"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@oclif/plugin-command-snapshot": "^5.1.
|
|
21
|
-
"@salesforce/cli-plugins-testkit": "^5.1.
|
|
22
|
-
"@salesforce/dev-scripts": "^8.
|
|
20
|
+
"@oclif/plugin-command-snapshot": "^5.1.3",
|
|
21
|
+
"@salesforce/cli-plugins-testkit": "^5.1.12",
|
|
22
|
+
"@salesforce/dev-scripts": "^8.4.2",
|
|
23
23
|
"@salesforce/plugin-command-reference": "^3.0.67",
|
|
24
24
|
"@types/inquirer": "^8.2.0",
|
|
25
25
|
"eslint-plugin-sf-plugin": "^1.17.4",
|
|
26
|
-
"oclif": "^4.
|
|
27
|
-
"shx": "0.3.4",
|
|
26
|
+
"oclif": "^4.6.2",
|
|
28
27
|
"ts-node": "^10.9.2",
|
|
29
28
|
"typescript": "^5.4.2"
|
|
30
29
|
},
|
|
@@ -35,9 +34,10 @@
|
|
|
35
34
|
"files": [
|
|
36
35
|
"/lib",
|
|
37
36
|
"/messages",
|
|
37
|
+
"/npm-shrinkwrap.json",
|
|
38
|
+
"/oclif.lock",
|
|
38
39
|
"/oclif.manifest.json",
|
|
39
|
-
"/schemas"
|
|
40
|
-
"/oclif.lock"
|
|
40
|
+
"/schemas"
|
|
41
41
|
],
|
|
42
42
|
"homepage": "https://github.com/salesforcecli/plugin-sobject",
|
|
43
43
|
"keywords": [
|
|
@@ -77,13 +77,12 @@
|
|
|
77
77
|
"build": "wireit",
|
|
78
78
|
"clean": "sf-clean",
|
|
79
79
|
"clean-all": "sf-clean all",
|
|
80
|
-
"clean:lib": "shx rm -rf lib && shx rm -rf coverage && shx rm -rf .nyc_output && shx rm -f oclif.manifest.json oclif.lock",
|
|
81
80
|
"compile": "wireit",
|
|
82
81
|
"docs": "sf-docs",
|
|
83
82
|
"format": "wireit",
|
|
84
83
|
"link-check": "wireit",
|
|
85
84
|
"lint": "wireit",
|
|
86
|
-
"postpack": "
|
|
85
|
+
"postpack": "sf-clean --ignore-signing-artifacts",
|
|
87
86
|
"prepack": "sf-prepack",
|
|
88
87
|
"prepare": "sf-install",
|
|
89
88
|
"test": "wireit",
|
|
@@ -212,7 +211,7 @@
|
|
|
212
211
|
"exports": "./lib/index.js",
|
|
213
212
|
"type": "module",
|
|
214
213
|
"sfdx": {
|
|
215
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-sobject/1.
|
|
216
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-sobject/1.
|
|
214
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-sobject/1.2.0.crt",
|
|
215
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-sobject/1.2.0.sig"
|
|
217
216
|
}
|
|
218
217
|
}
|