@salesforce/plugin-signups 2.3.4 → 2.3.6
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 +9 -9
- package/messages/shape.create.md +1 -1
- package/messages/snapshot.create.md +1 -1
- package/npm-shrinkwrap.json +1445 -215
- package/oclif.lock +575 -106
- package/oclif.manifest.json +3 -3
- package/package.json +7 -7
package/README.md
CHANGED
@@ -112,7 +112,7 @@ DESCRIPTION
|
|
112
112
|
Run "sf org list shape" to view the available org shapes and their IDs.
|
113
113
|
|
114
114
|
To create a scratch org from an org shape, include the "sourceOrg" property in the scratch org definition file and set
|
115
|
-
it to the org ID of the source org. Then create a scratch org with the "sf
|
115
|
+
it to the org ID of the source org. Then create a scratch org with the "sf org create scratch" command.
|
116
116
|
|
117
117
|
ALIASES
|
118
118
|
$ sf force org shape create
|
@@ -123,7 +123,7 @@ EXAMPLES
|
|
123
123
|
$ sf org create shape --target-org SourceOrg
|
124
124
|
```
|
125
125
|
|
126
|
-
_See code: [src/commands/org/create/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/2.3.
|
126
|
+
_See code: [src/commands/org/create/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/2.3.6/src/commands/org/create/shape.ts)_
|
127
127
|
|
128
128
|
## `sf org create snapshot`
|
129
129
|
|
@@ -155,7 +155,7 @@ DESCRIPTION
|
|
155
155
|
Use "sf org get snapshot" to get details, including status, about a snapshot creation request.
|
156
156
|
|
157
157
|
To create a scratch org from a snapshot, include the "snapshot" option (instead of "edition") in the scratch org
|
158
|
-
definition file and set it to the name of the snapshot. Then use "sf
|
158
|
+
definition file and set it to the name of the snapshot. Then use "sf org create scratch" to create the scratch org.
|
159
159
|
|
160
160
|
ALIASES
|
161
161
|
$ sf force org snapshot create
|
@@ -179,7 +179,7 @@ FLAG DESCRIPTIONS
|
|
179
179
|
as a version control system tag or commit ID.
|
180
180
|
```
|
181
181
|
|
182
|
-
_See code: [src/commands/org/create/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.3.
|
182
|
+
_See code: [src/commands/org/create/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.3.6/src/commands/org/create/snapshot.ts)_
|
183
183
|
|
184
184
|
## `sf org delete shape`
|
185
185
|
|
@@ -219,7 +219,7 @@ EXAMPLES
|
|
219
219
|
$ sf org delete shape --target-org SourceOrg --no-prompt
|
220
220
|
```
|
221
221
|
|
222
|
-
_See code: [src/commands/org/delete/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/2.3.
|
222
|
+
_See code: [src/commands/org/delete/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/2.3.6/src/commands/org/delete/shape.ts)_
|
223
223
|
|
224
224
|
## `sf org delete snapshot`
|
225
225
|
|
@@ -264,7 +264,7 @@ FLAG DESCRIPTIONS
|
|
264
264
|
The IDs of scratch org snapshots start with 0Oo.
|
265
265
|
```
|
266
266
|
|
267
|
-
_See code: [src/commands/org/delete/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.3.
|
267
|
+
_See code: [src/commands/org/delete/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.3.6/src/commands/org/delete/snapshot.ts)_
|
268
268
|
|
269
269
|
## `sf org get snapshot`
|
270
270
|
|
@@ -311,7 +311,7 @@ FLAG DESCRIPTIONS
|
|
311
311
|
The IDs of scratch org snapshots start with 0Oo.
|
312
312
|
```
|
313
313
|
|
314
|
-
_See code: [src/commands/org/get/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.3.
|
314
|
+
_See code: [src/commands/org/get/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.3.6/src/commands/org/get/snapshot.ts)_
|
315
315
|
|
316
316
|
## `sf org list shape`
|
317
317
|
|
@@ -344,7 +344,7 @@ EXAMPLES
|
|
344
344
|
$ sf org list shape --json > tmp/MyOrgShapeList.json
|
345
345
|
```
|
346
346
|
|
347
|
-
_See code: [src/commands/org/list/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/2.3.
|
347
|
+
_See code: [src/commands/org/list/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/2.3.6/src/commands/org/list/shape.ts)_
|
348
348
|
|
349
349
|
## `sf org list snapshot`
|
350
350
|
|
@@ -386,6 +386,6 @@ EXAMPLES
|
|
386
386
|
$ sf org list snapshot --target-dev-hub SnapshotDevHub
|
387
387
|
```
|
388
388
|
|
389
|
-
_See code: [src/commands/org/list/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.3.
|
389
|
+
_See code: [src/commands/org/list/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/2.3.6/src/commands/org/list/snapshot.ts)_
|
390
390
|
|
391
391
|
<!-- commandsstop -->
|
package/messages/shape.create.md
CHANGED
@@ -8,7 +8,7 @@ Scratch org shapes mimic the baseline setup (features, limits, edition, and Meta
|
|
8
8
|
|
9
9
|
Run "<%= config.bin %> org list shape" to view the available org shapes and their IDs.
|
10
10
|
|
11
|
-
To create a scratch org from an org shape, include the "sourceOrg" property in the scratch org definition file and set it to the org ID of the source org. Then create a scratch org with the "<%= config.bin %>
|
11
|
+
To create a scratch org from an org shape, include the "sourceOrg" property in the scratch org definition file and set it to the org ID of the source org. Then create a scratch org with the "<%= config.bin %> org create scratch" command.
|
12
12
|
|
13
13
|
# examples
|
14
14
|
|
@@ -8,7 +8,7 @@ A snapshot is a point-in-time copy of a scratch org. The copy is referenced by i
|
|
8
8
|
|
9
9
|
Use "<%= config.bin %> org get snapshot" to get details, including status, about a snapshot creation request.
|
10
10
|
|
11
|
-
To create a scratch org from a snapshot, include the "snapshot" option (instead of "edition") in the scratch org definition file and set it to the name of the snapshot. Then use "<%= config.bin %>
|
11
|
+
To create a scratch org from a snapshot, include the "snapshot" option (instead of "edition") in the scratch org definition file and set it to the name of the snapshot. Then use "<%= config.bin %> org create scratch" to create the scratch org.
|
12
12
|
|
13
13
|
# examples
|
14
14
|
|