@salesforce/b2c-cli 0.7.0 → 0.7.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/dist/commands/sandbox/clone/create.d.ts +3 -0
- package/dist/commands/sandbox/clone/create.js +60 -7
- package/dist/commands/sandbox/clone/create.js.map +1 -1
- package/dist/commands/setup/inspect.d.ts +3 -1
- package/dist/commands/setup/inspect.js +9 -1
- package/dist/commands/setup/inspect.js.map +1 -1
- package/oclif.manifest.json +3269 -3235
- package/package.json +14 -4
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/b2c-cli",
|
|
3
3
|
"description": "A Salesforce B2C Commerce CLI",
|
|
4
|
-
"version": "0.7.
|
|
4
|
+
"version": "0.7.2",
|
|
5
5
|
"author": "Charles Lavery",
|
|
6
6
|
"bin": {
|
|
7
7
|
"b2c": "./bin/run.js"
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"marked": "15.0.12",
|
|
26
26
|
"marked-terminal": "7.3.0",
|
|
27
27
|
"open": "11.0.0",
|
|
28
|
-
"@salesforce/b2c-tooling-sdk": "0.8.
|
|
28
|
+
"@salesforce/b2c-tooling-sdk": "0.8.2"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@eslint/compat": "^1",
|
|
@@ -156,8 +156,18 @@
|
|
|
156
156
|
"description": "Manage On-Demand Sandboxes\n\nDocs: https://salesforcecommercecloud.github.io/b2c-developer-tooling/cli/sandbox.html"
|
|
157
157
|
},
|
|
158
158
|
"ods": {
|
|
159
|
-
"description": "Alias for 'sandbox' commands.
|
|
160
|
-
"
|
|
159
|
+
"description": "Alias for 'sandbox' commands.",
|
|
160
|
+
"subtopics": {
|
|
161
|
+
"clone": {
|
|
162
|
+
"description": "Create and manage sandbox clones (alias for 'sandbox clone')"
|
|
163
|
+
},
|
|
164
|
+
"alias": {
|
|
165
|
+
"description": "Manage sandbox aliases (alias for 'sandbox alias')"
|
|
166
|
+
},
|
|
167
|
+
"realm": {
|
|
168
|
+
"description": "Manage sandbox realms (alias for 'sandbox realm')"
|
|
169
|
+
}
|
|
170
|
+
}
|
|
161
171
|
},
|
|
162
172
|
"sites": {
|
|
163
173
|
"description": "List and inspect storefront sites\n\nDocs: https://salesforcecommercecloud.github.io/b2c-developer-tooling/cli/sites.html"
|