@salesforce/plugin-signups 1.5.0 → 1.5.1

Sign up to get free protection for your applications and to get access to all the features.
package/README.md CHANGED
@@ -78,269 +78,299 @@ sfdx plugins
78
78
 
79
79
  <!-- commands -->
80
80
 
81
- - [`sfdx force:org:shape:create [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sfdx-forceorgshapecreate--u-string---apiversion-string---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal)
82
- - [`sfdx force:org:shape:delete [-p] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sfdx-forceorgshapedelete--p--u-string---apiversion-string---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal)
83
- - [`sfdx force:org:shape:list [--verbose] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sfdx-forceorgshapelist---verbose---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal)
84
- - [`sfdx force:org:snapshot:create -o <string> -n <string> [-d <string>] [-v <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sfdx-forceorgsnapshotcreate--o-string--n-string--d-string--v-string---apiversion-string---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal)
85
- - [`sfdx force:org:snapshot:delete -s <string> [-v <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sfdx-forceorgsnapshotdelete--s-string--v-string---apiversion-string---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal)
86
- - [`sfdx force:org:snapshot:get -s <string> [-v <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sfdx-forceorgsnapshotget--s-string--v-string---apiversion-string---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal)
87
- - [`sfdx force:org:snapshot:list [-v <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sfdx-forceorgsnapshotlist--v-string---apiversion-string---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal)
81
+ - [`sfdx org:create:shape`](#sfdx-orgcreateshape)
82
+ - [`sfdx org:create:snapshot`](#sfdx-orgcreatesnapshot)
83
+ - [`sfdx org:delete:shape`](#sfdx-orgdeleteshape)
84
+ - [`sfdx org:delete:snapshot`](#sfdx-orgdeletesnapshot)
85
+ - [`sfdx org:get:snapshot`](#sfdx-orggetsnapshot)
86
+ - [`sfdx org:list:shape`](#sfdx-orglistshape)
87
+ - [`sfdx org:list:snapshot`](#sfdx-orglistsnapshot)
88
88
 
89
- ## `sfdx force:org:shape:create [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
89
+ ## `sfdx org:create:shape`
90
90
 
91
- Create a scratch org configuration (shape) based on the specified source org
91
+ Create a scratch org configuration (shape) based on the specified source org.
92
92
 
93
93
  ```
94
94
  USAGE
95
- $ sfdx force:org:shape:create [-u <string>] [--apiversion <string>] [--json] [--loglevel
96
- trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]
95
+ $ sfdx org:create:shape -o <value> [--json] [--api-version <value>]
97
96
 
98
97
  FLAGS
99
- -u, --targetusername=<value> username or alias for the target
100
- org; overrides default target org
101
- --apiversion=<value> override the api version used for
102
- api requests made by this command
103
- --json format output as json
104
- --loglevel=(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL) [default: warn] logging level for
105
- this command invocation
98
+ -o, --target-org=<value> (required) Username or alias of the target org.
99
+ --api-version=<value> Override the api version used for api requests made by this command
100
+
101
+ GLOBAL FLAGS
102
+ --json Format output as json.
106
103
 
107
104
  DESCRIPTION
108
- Create a scratch org configuration (shape) based on the specified source org
105
+ Create a scratch org configuration (shape) based on the specified source org.
106
+
107
+ Scratch org shapes mimic the baseline setup (features, limits, edition, and Metadata API settings) of a source org
108
+ without the extraneous data and metadata.
109
+
110
+ Run "sfdx org list shape" to view the available org shapes and their IDs.
111
+
112
+ To create a scratch org from an org shape, include the "sourceOrg" property in the scratch org definition file and set
113
+ it to the org ID of the source org. Then create a scratch org with the "sfdx force:org:create" command.
114
+
115
+ ALIASES
116
+ $ sfdx force:org:shape:create
109
117
 
110
118
  EXAMPLES
111
- $ sfdx force:org:shape:create -u me@my.org
119
+ Create an org shape for the source org with alias SourceOrg:
112
120
 
113
- $ sfdx force:org:shape:create -u me@my.org --json --loglevel debug
121
+ $ sfdx org:create:shape --target-org SourceOrg
114
122
  ```
115
123
 
116
- _See code: [src/commands/force/org/shape/create.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.2/src/commands/force/org/shape/create.ts)_
124
+ _See code: [src/commands/org/create/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/1.5.1/src/commands/org/create/shape.ts)_
117
125
 
118
- ## `sfdx force:org:shape:delete [-p] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
126
+ ## `sfdx org:create:snapshot`
119
127
 
120
- Delete all org shapes for a target org
128
+ Create a snapshot of a scratch org.
121
129
 
122
130
  ```
123
131
  USAGE
124
- $ sfdx force:org:shape:delete [-p] [-u <string>] [--apiversion <string>] [--json] [--loglevel
125
- trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]
132
+ $ sfdx org:create:snapshot -v <value> -o <value> -n <value> [--json] [--api-version <value>] [-d <value>]
126
133
 
127
134
  FLAGS
128
- -p, --noprompt do not prompt for confirmation
129
- -u, --targetusername=<value> username or alias for the target
130
- org; overrides default target org
131
- --apiversion=<value> override the api version used for
132
- api requests made by this command
133
- --json format output as json
134
- --loglevel=(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL) [default: warn] logging level for
135
- this command invocation
135
+ -d, --description=<value> Description of snapshot.
136
+ -n, --name=<value> (required) Unique name of snapshot.
137
+ -o, --source-org=<value> (required) ID or locally authenticated username or alias of scratch org to snapshot.
138
+ -v, --target-dev-hub=<value> (required) Username or alias of the Dev Hub org.
139
+ --api-version=<value> Override the api version used for api requests made by this command
140
+
141
+ GLOBAL FLAGS
142
+ --json Format output as json.
136
143
 
137
144
  DESCRIPTION
138
- Delete all org shapes for a target org
145
+ Create a snapshot of a scratch org.
146
+
147
+ A snapshot is a point-in-time copy of a scratch org. The copy is referenced by its unique name in a scratch org
148
+ definition file.
149
+
150
+ Use "sfdx org get snapshot" to get details, including status, about a snapshot creation request.
151
+
152
+ To create a scratch org from a snapshot, include the "snapshot" option (instead of "edition") in the scratch org
153
+ definition file and set it to the name of the snapshot. Then use "sfdx force:org:create" to create the scratch org.
154
+
155
+ ALIASES
156
+ $ sfdx force:org:snapshot:create
139
157
 
140
158
  EXAMPLES
141
- $ sfdx force:org:shape:delete -u me@my.org
159
+ Create a snapshot called "Dependencies" using the source scratch org ID and your default Dev Hub org:
142
160
 
143
- $ sfdx force:org:shape:delete -u MyOrgAlias -p
161
+ $ sfdx org:create:snapshot --source-org 00Dxx0000000000 --name Dependencies --description 'Contains PackageA \
162
+ v1.1.0'
144
163
 
145
- $ sfdx force:org:shape:delete -u me@my.org --json
164
+ Create a snapshot called "NightlyBranch" using the source scratch org username and a Dev Hub org with alias
165
+ NightlyDevHub:
146
166
 
147
- $ sfdx force:org:shape:delete -u me@my.org -p --json > tmp/MyOrgShapeDelete.json
167
+ $ sfdx org:create:snapshot --source-org myuser@myorg --name NightlyBranch --description 'Contains PkgA v2.1.0 \
168
+ and PkgB 3.3.0' --target-dev-hub NightlyDevHub
169
+
170
+ FLAG DESCRIPTIONS
171
+ -d, --description=<value> Description of snapshot.
172
+
173
+ Use this description to document the contents of the snapshot. We suggest that you include a reference point, such
174
+ as a version control system tag or commit ID.
148
175
  ```
149
176
 
150
- _See code: [src/commands/force/org/shape/delete.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.2/src/commands/force/org/shape/delete.ts)_
177
+ _See code: [src/commands/org/create/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/1.5.1/src/commands/org/create/snapshot.ts)_
151
178
 
152
- ## `sfdx force:org:shape:list [--verbose] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
179
+ ## `sfdx org:delete:shape`
153
180
 
154
- List all org shapes you’ve created
181
+ Delete all org shapes for a target org.
155
182
 
156
183
  ```
157
184
  USAGE
158
- $ sfdx force:org:shape:list [--verbose] [--json] [--loglevel
159
- trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]
185
+ $ sfdx org:delete:shape -o <value> [--json] [--api-version <value>] [-p]
160
186
 
161
187
  FLAGS
162
- --json format output as json
163
- --loglevel=(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL) [default: warn] logging level for
164
- this command invocation
165
- --verbose list more information about each org
166
- shape
188
+ -o, --target-org=<value> (required) Username or alias of the target org.
189
+ -p, --no-prompt Don't prompt for confirmation.
190
+ --api-version=<value> Override the api version used for api requests made by this command
191
+
192
+ GLOBAL FLAGS
193
+ --json Format output as json.
167
194
 
168
195
  DESCRIPTION
169
- List all org shapes you’ve created
196
+ Delete all org shapes for a target org.
197
+
198
+ A source org can have only one active org shape. If you try to create an org shape for a source org that already has
199
+ one, the previous shape is marked inactive and replaced by a new active shape. If you don’t want to create scratch
200
+ orgs based on this shape, you can delete the org shape.
201
+
202
+ ALIASES
203
+ $ sfdx force:org:shape:delete
170
204
 
171
205
  EXAMPLES
172
- $ sfdx force:org:shape:list
206
+ Delete all org shapes for the source org with alias SourceOrg:
207
+
208
+ $ sfdx org:delete:shape --target-org SourceOrg
173
209
 
174
- $ sfdx force:org:shape:list --json
210
+ Delete all org shapes without prompting:
175
211
 
176
- $ sfdx force:org:shape:list --json > tmp/MyOrgShapeList.json
212
+ $ sfdx org:delete:shape --target-org SourceOrg --no-prompt
177
213
  ```
178
214
 
179
- _See code: [src/commands/force/org/shape/list.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.2/src/commands/force/org/shape/list.ts)_
215
+ _See code: [src/commands/org/delete/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/1.5.1/src/commands/org/delete/shape.ts)_
180
216
 
181
- ## `sfdx force:org:snapshot:create -o <string> -n <string> [-d <string>] [-v <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
217
+ ## `sfdx org:delete:snapshot`
182
218
 
183
- create a snapshot of a scratch org
219
+ Delete a scratch org snapshot.
184
220
 
185
221
  ```
186
222
  USAGE
187
- $ sfdx force:org:snapshot:create -o <string> -n <string> [-d <string>] [-v <string>] [--apiversion <string>] [--json]
188
- [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]
223
+ $ sfdx org:delete:snapshot -v <value> -s <value> [--json] [--api-version <value>]
189
224
 
190
225
  FLAGS
191
- -d, --description=<value> description of snapshot
192
- -n, --snapshotname=<value> (required) unique name of snapshot
193
- -o, --sourceorg=<value> (required) ID or locally
194
- authenticated username or alias of
195
- scratch org to snapshot
196
- -v, --targetdevhubusername=<value> username or alias for the dev hub
197
- org; overrides default dev hub org
198
- --apiversion=<value> override the api version used for
199
- api requests made by this command
200
- --json format output as json
201
- --loglevel=(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL) [default: warn] logging level for
202
- this command invocation
226
+ -s, --snapshot=<value> (required) Name or ID of snapshot to delete.
227
+ -v, --target-dev-hub=<value> (required) Username or alias of the Dev Hub org.
228
+ --api-version=<value> Override the api version used for api requests made by this command
203
229
 
204
- DESCRIPTION
205
- create a snapshot of a scratch org
230
+ GLOBAL FLAGS
231
+ --json Format output as json.
206
232
 
207
- A snapshot is a point-in-time copy of a scratch org. The copy is stored in Salesforce and referenced by its unique
208
- name in a scratch org definition file.
233
+ DESCRIPTION
234
+ Delete a scratch org snapshot.
209
235
 
210
- Use "sfdx force:org:snapshot:get" to get details, including status, about a snapshot creation request.
236
+ Dev Hub admins can delete any snapshot, while users can delete only their own unless a Dev Hub admin gives the user
237
+ Modify All permissions.
211
238
 
212
- To create a scratch org from a snapshot, include the "snapshot" entry (instead of "edition") in the scratch org
213
- definition file and set it to the name of the snapshot. Then use "sfdx force:org:create" to create the scratch org.
239
+ ALIASES
240
+ $ sfdx force:org:snapshot:delete
214
241
 
215
242
  EXAMPLES
216
- Create a snapshot called "Dependencies" using the source scratch org ID:
243
+ Delete a snapshot from the default Dev Hub using the snapshot ID:
244
+
245
+ $ sfdx org:delete:snapshot --snapshot 0Oo...
217
246
 
218
- $ sfdx force:org:snapshot:create --sourceorg 00Dxx0000000000 --snapshotname Dependencies --description 'Contains PackageA v1.1.0'
247
+ Delete a snapshot from the specified Dev Hub using the snapshot name:
248
+
249
+ $ sfdx org:delete:snapshot --snapshot BaseSnapshot --target-dev-hub SnapshotDevHub
219
250
 
220
- Create a snapshot called "NightlyBranch" using the source scratch org username:
251
+ FLAG DESCRIPTIONS
252
+ -s, --snapshot=<value> Name or ID of snapshot to delete.
221
253
 
222
- $ sfdx force:org:snapshot:create -o myuser@myorg -n NightlyBranch -d 'Contains PkgA v2.1.0 and PkgB 3.3.0'
254
+ The IDs of scratch org snapshots start with 0Oo.
223
255
  ```
224
256
 
225
- _See code: [src/commands/force/org/snapshot/create.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.2/src/commands/force/org/snapshot/create.ts)_
257
+ _See code: [src/commands/org/delete/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/1.5.1/src/commands/org/delete/snapshot.ts)_
226
258
 
227
- ## `sfdx force:org:snapshot:delete -s <string> [-v <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
259
+ ## `sfdx org:get:snapshot`
228
260
 
229
- delete a scratch org snapshot
261
+ Get details about a scratch org snapshot.
230
262
 
231
263
  ```
232
264
  USAGE
233
- $ sfdx force:org:snapshot:delete -s <string> [-v <string>] [--apiversion <string>] [--json] [--loglevel
234
- trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]
265
+ $ sfdx org:get:snapshot -v <value> -s <value> [--json] [--api-version <value>]
235
266
 
236
267
  FLAGS
237
- -s, --snapshot=<value> (required) name or ID of snapshot to
238
- delete
239
- -v, --targetdevhubusername=<value> username or alias for the dev hub
240
- org; overrides default dev hub org
241
- --apiversion=<value> override the api version used for
242
- api requests made by this command
243
- --json format output as json
244
- --loglevel=(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL) [default: warn] logging level for
245
- this command invocation
268
+ -s, --snapshot=<value> (required) Name or ID of snapshot to retrieve.
269
+ -v, --target-dev-hub=<value> (required) Username or alias of the Dev Hub org.
270
+ --api-version=<value> Override the api version used for api requests made by this command
271
+
272
+ GLOBAL FLAGS
273
+ --json Format output as json.
246
274
 
247
275
  DESCRIPTION
248
- delete a scratch org snapshot
276
+ Get details about a scratch org snapshot.
249
277
 
250
- Dev Hub admins can delete any snapshot, while users can delete only theirs unless a Dev Hub admin gives the user
251
- Modify All permissions.
278
+ Snapshot creation can take a while. Use this command with the snapshot name or ID to check its creation status. After
279
+ the status changes to Active, you can use the snapshot to create scratch orgs.
280
+
281
+ To create a snapshot, use the "sfdx org create snapshot" command. To retrieve a list of all snapshots, use "sfdx org
282
+ list snapshot".
283
+
284
+ ALIASES
285
+ $ sfdx force:org:snapshot:get
252
286
 
253
287
  EXAMPLES
254
- Delete a snapshot from the default Dev Hub using the snapshot ID:
288
+ Get snapshot details using its ID and the default Dev Hub org:
255
289
 
256
- $ sfdx force:org:snapshot:delete --snapshot 0Oo...
290
+ $ sfdx org:get:snapshot --snapshot 0Oo...
257
291
 
258
- Delete a snapshot from the specified Dev Hub using the snapshot name:
292
+ Get snapshot details using its name from a Dev Hub org with alias SnapshotDevHub:
293
+
294
+ $ sfdx org:get:snapshot --snapshot Dependencies --target-dev-hub SnapshotDevHub
295
+
296
+ FLAG DESCRIPTIONS
297
+ -s, --snapshot=<value> Name or ID of snapshot to retrieve.
259
298
 
260
- $ sfdx force:org:snapshot:delete -s BaseSnapshot -v SnapshotDevHub
299
+ The IDs of scratch org snapshots start with 0Oo.
261
300
  ```
262
301
 
263
- _See code: [src/commands/force/org/snapshot/delete.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.2/src/commands/force/org/snapshot/delete.ts)_
302
+ _See code: [src/commands/org/get/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/1.5.1/src/commands/org/get/snapshot.ts)_
264
303
 
265
- ## `sfdx force:org:snapshot:get -s <string> [-v <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
304
+ ## `sfdx org:list:shape`
266
305
 
267
- get details about a scratch org snapshot
306
+ List all org shapes you’ve created.
268
307
 
269
308
  ```
270
309
  USAGE
271
- $ sfdx force:org:snapshot:get -s <string> [-v <string>] [--apiversion <string>] [--json] [--loglevel
272
- trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]
310
+ $ sfdx org:list:shape [--json]
273
311
 
274
- FLAGS
275
- -s, --snapshot=<value> (required) name or ID of snapshot to
276
- retrieve
277
- -v, --targetdevhubusername=<value> username or alias for the dev hub
278
- org; overrides default dev hub org
279
- --apiversion=<value> override the api version used for
280
- api requests made by this command
281
- --json format output as json
282
- --loglevel=(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL) [default: warn] logging level for
283
- this command invocation
312
+ GLOBAL FLAGS
313
+ --json Format output as json.
284
314
 
285
315
  DESCRIPTION
286
- get details about a scratch org snapshot
316
+ List all org shapes you’ve created.
287
317
 
288
- Snapshot creation can take a while. Use this command with the snapshot name or ID to check its creation status. Once
289
- the status changes to Active, you can use the snapshot to create scratch orgs.
318
+ The output includes the alias, username, and ID of the source org, the status of the org shape creation, and more. Use
319
+ the org ID to update your scratch org configuration file so you can create a scratch org based on this org shape.
290
320
 
291
- To create a snapshot, use the "sfdx force:org:snapshot:create" command. To retrieve a list of all snapshots, use "sfdx
292
- force:org:snapshot:list".
321
+ ALIASES
322
+ $ sfdx force:org:shape:list
293
323
 
294
324
  EXAMPLES
295
- Get snapshot details using its ID:
325
+ List all org shapes you've created:
296
326
 
297
- $ sfdx force:org:snapshot:get --snapshot 0Oo...
327
+ $ sfdx org:list:shape
298
328
 
299
- Get snapshot details using its name:
329
+ List all org shapes in JSON format and write the output to a file:
300
330
 
301
- $ sfdx force:org:snapshot:get -s Dependencies
331
+ $ sfdx org:list:shape --json > tmp/MyOrgShapeList.json
302
332
  ```
303
333
 
304
- _See code: [src/commands/force/org/snapshot/get.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.2/src/commands/force/org/snapshot/get.ts)_
334
+ _See code: [src/commands/org/list/shape.ts](https://github.com/salesforcecli/plugin-signups/blob/1.5.1/src/commands/org/list/shape.ts)_
305
335
 
306
- ## `sfdx force:org:snapshot:list [-v <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
336
+ ## `sfdx org:list:snapshot`
307
337
 
308
- list scratch org snapshots
338
+ List scratch org snapshots.
309
339
 
310
340
  ```
311
341
  USAGE
312
- $ sfdx force:org:snapshot:list [-v <string>] [--apiversion <string>] [--json] [--loglevel
313
- trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]
342
+ $ sfdx org:list:snapshot -v <value> [--json] [--api-version <value>]
314
343
 
315
344
  FLAGS
316
- -v, --targetdevhubusername=<value> username or alias for the dev hub
317
- org; overrides default dev hub org
318
- --apiversion=<value> override the api version used for
319
- api requests made by this command
320
- --json format output as json
321
- --loglevel=(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL) [default: warn] logging level for
322
- this command invocation
345
+ -v, --target-dev-hub=<value> (required) Username or alias of the Dev Hub org.
346
+ --api-version=<value> Override the api version used for api requests made by this command
347
+
348
+ GLOBAL FLAGS
349
+ --json Format output as json.
323
350
 
324
351
  DESCRIPTION
325
- list scratch org snapshots
352
+ List scratch org snapshots.
326
353
 
327
354
  You can view all the snapshots in a Dev Hub that you have access to. If you’re an admin, you can see all snapshots
328
355
  associated with the Dev Hub org. If you’re a user, you can see only your snapshots unless a Dev Hub admin gives you
329
356
  View All permissions.
330
357
 
331
- To create a snapshot, use the "sfdx force:org:snapshot:create" command. To get details about a snapshot request, use
332
- "sfdx force:org:snapshot:get".
358
+ To create a snapshot, use the "sfdx org create snapshot" command. To get details about a snapshot request, use "sfdx
359
+ org get snapshot".
360
+
361
+ ALIASES
362
+ $ sfdx force:org:snapshot:list
333
363
 
334
364
  EXAMPLES
335
365
  List snapshots in the default Dev Hub:
336
366
 
337
- $ sfdx force:org:snapshot:list
367
+ $ sfdx org:list:snapshot
338
368
 
339
- List snapshots in the Dev Hub with the specified username:
369
+ List snapshots in the Dev Hub with alias SnapshotDevHub:
340
370
 
341
- $ sfdx force:org:snapshot:list -v OtherDevHub@example.com
371
+ $ sfdx org:list:snapshot --target-dev-hub SnapshotDevHub
342
372
  ```
343
373
 
344
- _See code: [src/commands/force/org/snapshot/list.ts](https://github.com/salesforcecli/plugin-signups/blob/v1.1.2/src/commands/force/org/snapshot/list.ts)_
374
+ _See code: [src/commands/org/list/snapshot.ts](https://github.com/salesforcecli/plugin-signups/blob/1.5.1/src/commands/org/list/snapshot.ts)_
345
375
 
346
376
  <!-- commandsstop -->
package/oclif.lock CHANGED
@@ -414,20 +414,20 @@
414
414
  minimatch "^3.1.2"
415
415
  strip-json-comments "^3.1.1"
416
416
 
417
- "@eslint/js@^8.47.0":
418
- version "8.47.0"
419
- resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.47.0.tgz#5478fdf443ff8158f9de171c704ae45308696c7d"
420
- integrity sha512-P6omY1zv5MItm93kLM8s2vr1HICJH8v0dvddDhysbIuZ+vcjOHg5Zbkf1mTkcmi2JA9oBG2anOkRnW8WJTS8Og==
417
+ "@eslint/js@8.49.0":
418
+ version "8.49.0"
419
+ resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.49.0.tgz#86f79756004a97fa4df866835093f1df3d03c333"
420
+ integrity sha512-1S8uAY/MTJqVx0SC4epBq+N2yhuwtNwLbJYNZyhL2pO1ZVKn5HFXav5T41Ryzy9K9V7ZId2JB2oy/W4aCd9/2w==
421
421
 
422
422
  "@gar/promisify@^1.0.1", "@gar/promisify@^1.1.3":
423
423
  version "1.1.3"
424
424
  resolved "https://registry.yarnpkg.com/@gar/promisify/-/promisify-1.1.3.tgz#555193ab2e3bb3b6adc3d551c9c030d9e860daf6"
425
425
  integrity sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==
426
426
 
427
- "@humanwhocodes/config-array@^0.11.10":
428
- version "0.11.10"
429
- resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.10.tgz#5a3ffe32cc9306365fb3fd572596cd602d5e12d2"
430
- integrity sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==
427
+ "@humanwhocodes/config-array@^0.11.11":
428
+ version "0.11.11"
429
+ resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.11.tgz#88a04c570dbbc7dd943e4712429c3df09bc32844"
430
+ integrity sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==
431
431
  dependencies:
432
432
  "@humanwhocodes/object-schema" "^1.2.1"
433
433
  debug "^4.1.1"
@@ -867,43 +867,44 @@
867
867
  dependencies:
868
868
  "@octokit/openapi-types" "^12.11.0"
869
869
 
870
- "@salesforce/cli-plugins-testkit@^4.3.0":
871
- version "4.3.0"
872
- resolved "https://registry.yarnpkg.com/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-4.3.0.tgz#253079d476569fbc4977c8100b3bf201b3e4a788"
873
- integrity sha512-kW59i4muO49evQ76waWTfDUXpTfyBUQ0N1QIF4ZFB+aSAdVGG5N/oTMYz882ScS/SwB0XP0H119wT4cLoJI+Mw==
870
+ "@salesforce/cli-plugins-testkit@^4.3.5":
871
+ version "4.3.5"
872
+ resolved "https://registry.yarnpkg.com/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-4.3.5.tgz#3efd4433c57f51dcf0acbcda4337cf530c5b3b33"
873
+ integrity sha512-pP9PpyLtwXKj3jvkdVGpuxOAgqML+JcTVmyjuORyiOg4BLTQVGnju/e1GXirasNrIA3Wh1DLVymFDqN4HAc32w==
874
874
  dependencies:
875
- "@salesforce/core" "^5.2.0"
876
- "@salesforce/kit" "^3.0.9"
875
+ "@salesforce/core" "^5.2.7"
876
+ "@salesforce/kit" "^3.0.11"
877
877
  "@salesforce/ts-types" "^2.0.6"
878
878
  "@types/shelljs" "^0.8.12"
879
879
  debug "^4.3.1"
880
880
  jszip "^3.10.1"
881
881
  shelljs "^0.8.4"
882
882
  strip-ansi "6.0.1"
883
- ts-retry-promise "^0.7.0"
883
+ ts-retry-promise "^0.7.1"
884
884
 
885
- "@salesforce/core@^5.2.0", "@salesforce/core@^5.2.1":
886
- version "5.2.1"
887
- resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-5.2.1.tgz#299bddae7d0705c773b194be8994e5730735e2b4"
888
- integrity sha512-QMx11A0KA/Vl+Ckmz83cw+fiUCMOmsUD8CA3987wAkfJOgxtqyhT4R1R8tj7ad8flQydKUyL3o4UE/2u82tXOw==
885
+ "@salesforce/core@^5.2.1", "@salesforce/core@^5.2.7", "@salesforce/core@^5.2.9":
886
+ version "5.2.10"
887
+ resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-5.2.10.tgz#7f4824ddcef108b6ccec24434260c620de39012e"
888
+ integrity sha512-Xj1QRajmHWgl0ahivjKFGKJlGXwe9yFOZ3PwF91qEupGbO74XrCJ8OUM7EVlk53LKy9LlPZQFuy2ATX9MyEDKA==
889
889
  dependencies:
890
- "@salesforce/kit" "^3.0.9"
890
+ "@salesforce/kit" "^3.0.11"
891
891
  "@salesforce/schemas" "^1.6.0"
892
- "@salesforce/ts-types" "^2.0.5"
893
- "@types/semver" "^7.5.0"
892
+ "@salesforce/ts-types" "^2.0.7"
893
+ "@types/semver" "^7.5.2"
894
894
  ajv "^8.12.0"
895
895
  change-case "^4.1.2"
896
896
  faye "^1.4.0"
897
897
  form-data "^4.0.0"
898
898
  js2xmlparser "^4.0.1"
899
899
  jsforce "^2.0.0-beta.27"
900
- jsonwebtoken "9.0.1"
900
+ jsonwebtoken "9.0.2"
901
901
  jszip "3.10.1"
902
- pino "^8.14.2"
902
+ pino "^8.15.1"
903
903
  pino-abstract-transport "^1.0.0"
904
904
  pino-pretty "^10.2.0"
905
905
  proper-lockfile "^4.1.2"
906
- ts-retry-promise "^0.7.0"
906
+ semver "^7.5.4"
907
+ ts-retry-promise "^0.7.1"
907
908
 
908
909
  "@salesforce/dev-config@^4.0.1":
909
910
  version "4.0.1"
@@ -981,13 +982,13 @@
981
982
  resolved "https://registry.yarnpkg.com/@salesforce/schemas/-/schemas-1.6.0.tgz#14505ebad2fb2d4f7b14837545d662766d293561"
982
983
  integrity sha512-SwhDTLucj/GRbPpxlEoDZeqlX22o+G6fiebTXTu1cZKmd1oE0W2L7SlTTgJnWck8bhTeBIgQi9cpD8c2t5ISKA==
983
984
 
984
- "@salesforce/sf-plugins-core@^3.1.18", "@salesforce/sf-plugins-core@^3.1.20":
985
- version "3.1.21"
986
- resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-3.1.21.tgz#f6cf4d8623ef8756c381e1584d0ed58760c0ed31"
987
- integrity sha512-ZAVkfEu/BcjROmDihcp5I03M7El/NsYIoQs2UfbQsY9wsRmS6LRcYkfTn4YeWxGkltSP7vlTAbKX0+mWvN/Gsw==
985
+ "@salesforce/sf-plugins-core@^3.1.18", "@salesforce/sf-plugins-core@^3.1.23":
986
+ version "3.1.23"
987
+ resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-3.1.23.tgz#c458b4a24d16d6bf1de084cf76cf085623cfcb7c"
988
+ integrity sha512-cGa1jh6VBQhiqz2LyBqNkex0rVLmK1Xl/jRCj0odr6CApWz10AqgshqusQX2JEqkP/uxiH4n0aDZ/3y+n+ny/A==
988
989
  dependencies:
989
990
  "@oclif/core" "^2.15.0"
990
- "@salesforce/core" "^5.2.1"
991
+ "@salesforce/core" "^5.2.9"
991
992
  "@salesforce/kit" "^3.0.11"
992
993
  "@salesforce/ts-types" "^2.0.7"
993
994
  chalk "^4"
@@ -1002,7 +1003,7 @@
1002
1003
  sinon "^5.1.1"
1003
1004
  tslib "^2.6.1"
1004
1005
 
1005
- "@salesforce/ts-types@^2.0.5", "@salesforce/ts-types@^2.0.6", "@salesforce/ts-types@^2.0.7":
1006
+ "@salesforce/ts-types@^2.0.6", "@salesforce/ts-types@^2.0.7":
1006
1007
  version "2.0.7"
1007
1008
  resolved "https://registry.yarnpkg.com/@salesforce/ts-types/-/ts-types-2.0.7.tgz#02a6999d0b0e7bcd6c6d8ce621c79fa61af24701"
1008
1009
  integrity sha512-8csXgstPuy6QXL3JavkIi/f8DOWHBNCvWeszrFu5sbVlcKO3YqOOCE+rDFGPkrZsYv5OywV6H8kEi877bWOz6Q==
@@ -1216,10 +1217,10 @@
1216
1217
  dependencies:
1217
1218
  "@types/chai" "*"
1218
1219
 
1219
- "@types/chai-string@^1.4.2":
1220
- version "1.4.2"
1221
- resolved "https://registry.yarnpkg.com/@types/chai-string/-/chai-string-1.4.2.tgz#0f116504a666b6c6a3c42becf86634316c9a19ac"
1222
- integrity sha512-ld/1hV5qcPRGuwlPdvRfvM3Ka/iofOk2pH4VkasK4b1JJP1LjNmWWn0LsISf6RRzyhVOvs93rb9tM09e+UuF8Q==
1220
+ "@types/chai-string@^1.4.3":
1221
+ version "1.4.3"
1222
+ resolved "https://registry.yarnpkg.com/@types/chai-string/-/chai-string-1.4.3.tgz#06e02d74deed77c2bfccccae44ece6e57a8ecedd"
1223
+ integrity sha512-bLp5xMQ7Ml0fWa05IPpLjIznTkNbuBE3GtRTzKrp0d10IavlBFcu9vXP2liWaXta79unO693q3kuRxD7g2YYGw==
1223
1224
  dependencies:
1224
1225
  "@types/chai" "*"
1225
1226
 
@@ -1335,11 +1336,16 @@
1335
1336
  dependencies:
1336
1337
  "@types/node" "*"
1337
1338
 
1338
- "@types/semver@^7.3.12", "@types/semver@^7.5.0":
1339
+ "@types/semver@^7.3.12":
1339
1340
  version "7.5.0"
1340
1341
  resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.0.tgz#591c1ce3a702c45ee15f47a42ade72c2fd78978a"
1341
1342
  integrity sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==
1342
1343
 
1344
+ "@types/semver@^7.5.2":
1345
+ version "7.5.2"
1346
+ resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.2.tgz#31f6eec1ed7ec23f4f05608d3a2d381df041f564"
1347
+ integrity sha512-7aqorHYgdNO4DM36stTiGO3DvKoex9TQRwsJU6vMaFGyqpBA1MNZkz+PG3gaNUPpTAOYhT1WR7M1JyA3fbS9Cw==
1348
+
1343
1349
  "@types/shelljs@^0.8.12":
1344
1350
  version "0.8.12"
1345
1351
  resolved "https://registry.yarnpkg.com/@types/shelljs/-/shelljs-0.8.12.tgz#79dc9632af7d5ca1b5afb65a6bfc1422d79b5fa0"
@@ -1754,6 +1760,13 @@ astral-regex@^2.0.0:
1754
1760
  resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31"
1755
1761
  integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==
1756
1762
 
1763
+ async-retry@^1.3.3:
1764
+ version "1.3.3"
1765
+ resolved "https://registry.yarnpkg.com/async-retry/-/async-retry-1.3.3.tgz#0e7f36c04d8478e7a58bdbed80cedf977785f280"
1766
+ integrity sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==
1767
+ dependencies:
1768
+ retry "0.13.1"
1769
+
1757
1770
  async@^3.2.3:
1758
1771
  version "3.2.4"
1759
1772
  resolved "https://registry.yarnpkg.com/async/-/async-3.2.4.tgz#2d22e00f8cddeb5fde5dd33522b56d1cf569a81c"
@@ -2968,16 +2981,16 @@ eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4
2968
2981
  resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800"
2969
2982
  integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==
2970
2983
 
2971
- eslint@^8.41.0, eslint@^8.47.0:
2972
- version "8.47.0"
2973
- resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.47.0.tgz#c95f9b935463fb4fad7005e626c7621052e90806"
2974
- integrity sha512-spUQWrdPt+pRVP1TTJLmfRNJJHHZryFmptzcafwSvHsceV81djHOdnEeDmkdotZyLNjDhrOasNK8nikkoG1O8Q==
2984
+ eslint@^8.41.0, eslint@^8.49.0:
2985
+ version "8.49.0"
2986
+ resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.49.0.tgz#09d80a89bdb4edee2efcf6964623af1054bf6d42"
2987
+ integrity sha512-jw03ENfm6VJI0jA9U+8H5zfl5b+FvuU3YYvZRdZHOlU2ggJkxrlkJH4HcDrZpj6YwD8kuYqvQM8LyesoazrSOQ==
2975
2988
  dependencies:
2976
2989
  "@eslint-community/eslint-utils" "^4.2.0"
2977
2990
  "@eslint-community/regexpp" "^4.6.1"
2978
2991
  "@eslint/eslintrc" "^2.1.2"
2979
- "@eslint/js" "^8.47.0"
2980
- "@humanwhocodes/config-array" "^0.11.10"
2992
+ "@eslint/js" "8.49.0"
2993
+ "@humanwhocodes/config-array" "^0.11.11"
2981
2994
  "@humanwhocodes/module-importer" "^1.0.1"
2982
2995
  "@nodelib/fs.walk" "^1.2.8"
2983
2996
  ajv "^6.12.4"
@@ -4433,15 +4446,21 @@ jsonparse@^1.2.0, jsonparse@^1.3.1:
4433
4446
  resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280"
4434
4447
  integrity sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==
4435
4448
 
4436
- jsonwebtoken@9.0.1:
4437
- version "9.0.1"
4438
- resolved "https://registry.yarnpkg.com/jsonwebtoken/-/jsonwebtoken-9.0.1.tgz#81d8c901c112c24e497a55daf6b2be1225b40145"
4439
- integrity sha512-K8wx7eJ5TPvEjuiVSkv167EVboBDv9PZdDoF7BgeQnBLVvZWW9clr2PsQHVJDTKaEIH5JBIwHujGcHp7GgI2eg==
4449
+ jsonwebtoken@9.0.2:
4450
+ version "9.0.2"
4451
+ resolved "https://registry.yarnpkg.com/jsonwebtoken/-/jsonwebtoken-9.0.2.tgz#65ff91f4abef1784697d40952bb1998c504caaf3"
4452
+ integrity sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==
4440
4453
  dependencies:
4441
4454
  jws "^3.2.2"
4442
- lodash "^4.17.21"
4455
+ lodash.includes "^4.3.0"
4456
+ lodash.isboolean "^3.0.3"
4457
+ lodash.isinteger "^4.0.4"
4458
+ lodash.isnumber "^3.0.3"
4459
+ lodash.isplainobject "^4.0.6"
4460
+ lodash.isstring "^4.0.1"
4461
+ lodash.once "^4.0.0"
4443
4462
  ms "^2.1.1"
4444
- semver "^7.3.8"
4463
+ semver "^7.5.4"
4445
4464
 
4446
4465
  jszip@3.10.1, jszip@^3.10.1:
4447
4466
  version "3.10.1"
@@ -4556,16 +4575,41 @@ lodash.get@^4.4.2:
4556
4575
  resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99"
4557
4576
  integrity sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==
4558
4577
 
4578
+ lodash.includes@^4.3.0:
4579
+ version "4.3.0"
4580
+ resolved "https://registry.yarnpkg.com/lodash.includes/-/lodash.includes-4.3.0.tgz#60bb98a87cb923c68ca1e51325483314849f553f"
4581
+ integrity sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==
4582
+
4583
+ lodash.isboolean@^3.0.3:
4584
+ version "3.0.3"
4585
+ resolved "https://registry.yarnpkg.com/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz#6c2e171db2a257cd96802fd43b01b20d5f5870f6"
4586
+ integrity sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==
4587
+
4559
4588
  lodash.isfunction@^3.0.9:
4560
4589
  version "3.0.9"
4561
4590
  resolved "https://registry.yarnpkg.com/lodash.isfunction/-/lodash.isfunction-3.0.9.tgz#06de25df4db327ac931981d1bdb067e5af68d051"
4562
4591
  integrity sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==
4563
4592
 
4593
+ lodash.isinteger@^4.0.4:
4594
+ version "4.0.4"
4595
+ resolved "https://registry.yarnpkg.com/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz#619c0af3d03f8b04c31f5882840b77b11cd68343"
4596
+ integrity sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==
4597
+
4598
+ lodash.isnumber@^3.0.3:
4599
+ version "3.0.3"
4600
+ resolved "https://registry.yarnpkg.com/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz#3ce76810c5928d03352301ac287317f11c0b1ffc"
4601
+ integrity sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==
4602
+
4564
4603
  lodash.isplainobject@^4.0.6:
4565
4604
  version "4.0.6"
4566
4605
  resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb"
4567
4606
  integrity sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==
4568
4607
 
4608
+ lodash.isstring@^4.0.1:
4609
+ version "4.0.1"
4610
+ resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451"
4611
+ integrity sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==
4612
+
4569
4613
  lodash.kebabcase@^4.1.1:
4570
4614
  version "4.1.1"
4571
4615
  resolved "https://registry.yarnpkg.com/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz#8489b1cb0d29ff88195cceca448ff6d6cc295c36"
@@ -4581,6 +4625,11 @@ lodash.mergewith@^4.6.2:
4581
4625
  resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz#617121f89ac55f59047c7aec1ccd6654c6590f55"
4582
4626
  integrity sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==
4583
4627
 
4628
+ lodash.once@^4.0.0:
4629
+ version "4.1.1"
4630
+ resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac"
4631
+ integrity sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==
4632
+
4584
4633
  lodash.snakecase@^4.1.1:
4585
4634
  version "4.1.1"
4586
4635
  resolved "https://registry.yarnpkg.com/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz#39d714a35357147837aefd64b5dcbb16becd8f8d"
@@ -5371,15 +5420,16 @@ object.values@^1.1.6:
5371
5420
  define-properties "^1.1.4"
5372
5421
  es-abstract "^1.20.4"
5373
5422
 
5374
- oclif@^3.14.0:
5375
- version "3.14.0"
5376
- resolved "https://registry.yarnpkg.com/oclif/-/oclif-3.14.0.tgz#d0a0cd2f4c3e6135aff6de1733ff0704000a95b3"
5377
- integrity sha512-IlTb6WcbL7DxKSBp/TlC+wj7FhelIVu5AHBoW5+ABJ9GjXMv27sAY6F+RfEXqQaMu8OwRP9t/1sAKR+3wMlX8w==
5423
+ oclif@^3.16.0:
5424
+ version "3.16.0"
5425
+ resolved "https://registry.yarnpkg.com/oclif/-/oclif-3.16.0.tgz#b1983f310cbb25944d7da02125aa0c095aa7669d"
5426
+ integrity sha512-qbPJ9SifBDPeMnuYIyJc0+kGyXmLubJs/lOD1wjrvAiKqTWQ1xy/EFlNMgBGETCf7RQf1iSJmvf+s22ZkLc7Ow==
5378
5427
  dependencies:
5379
5428
  "@oclif/core" "^2.11.4"
5380
5429
  "@oclif/plugin-help" "^5.2.14"
5381
5430
  "@oclif/plugin-not-found" "^2.3.32"
5382
5431
  "@oclif/plugin-warn-if-update-available" "^2.0.44"
5432
+ async-retry "^1.3.3"
5383
5433
  aws-sdk "^2.1231.0"
5384
5434
  concurrently "^7.6.0"
5385
5435
  debug "^4.3.3"
@@ -5702,7 +5752,7 @@ pify@^4.0.1:
5702
5752
  resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231"
5703
5753
  integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==
5704
5754
 
5705
- pino-abstract-transport@^1.0.0, pino-abstract-transport@v1.0.0:
5755
+ pino-abstract-transport@^1.0.0:
5706
5756
  version "1.0.0"
5707
5757
  resolved "https://registry.yarnpkg.com/pino-abstract-transport/-/pino-abstract-transport-1.0.0.tgz#cc0d6955fffcadb91b7b49ef220a6cc111d48bb3"
5708
5758
  integrity sha512-c7vo5OpW4wIS42hUVcT5REsL8ZljsUfBjqV/e2sFxmFEFZiq1XLUp5EYLtuDH6PEHq9W1egWqRbnLUP5FuZmOA==
@@ -5710,6 +5760,14 @@ pino-abstract-transport@^1.0.0, pino-abstract-transport@v1.0.0:
5710
5760
  readable-stream "^4.0.0"
5711
5761
  split2 "^4.0.0"
5712
5762
 
5763
+ pino-abstract-transport@v1.1.0:
5764
+ version "1.1.0"
5765
+ resolved "https://registry.yarnpkg.com/pino-abstract-transport/-/pino-abstract-transport-1.1.0.tgz#083d98f966262164504afb989bccd05f665937a8"
5766
+ integrity sha512-lsleG3/2a/JIWUtf9Q5gUNErBqwIu1tUKTT3dUzaf5DySw9ra1wcqKjJjLX1VTY64Wk1eEOYsVGSaGfCK85ekA==
5767
+ dependencies:
5768
+ readable-stream "^4.0.0"
5769
+ split2 "^4.0.0"
5770
+
5713
5771
  pino-pretty@^10.2.0:
5714
5772
  version "10.2.0"
5715
5773
  resolved "https://registry.yarnpkg.com/pino-pretty/-/pino-pretty-10.2.0.tgz#c674a153e15c08d7032a826d0051d786feace1d9"
@@ -5735,15 +5793,15 @@ pino-std-serializers@^6.0.0:
5735
5793
  resolved "https://registry.yarnpkg.com/pino-std-serializers/-/pino-std-serializers-6.2.2.tgz#d9a9b5f2b9a402486a5fc4db0a737570a860aab3"
5736
5794
  integrity sha512-cHjPPsE+vhj/tnhCy/wiMh3M3z3h/j15zHQX+S9GkTBgqJuTuJzYJ4gUyACLhDaJ7kk9ba9iRDmbH2tJU03OiA==
5737
5795
 
5738
- pino@^8.14.2:
5739
- version "8.15.0"
5740
- resolved "https://registry.yarnpkg.com/pino/-/pino-8.15.0.tgz#67c61d5e397bf297e5a0433976a7f7b8aa6f876b"
5741
- integrity sha512-olUADJByk4twxccmAxb1RiGKOSvddHugCV3wkqjyv+3Sooa2KLrmXrKEWOKi0XPCLasRR5jBXxioE1jxUa4KzQ==
5796
+ pino@^8.15.1:
5797
+ version "8.15.1"
5798
+ resolved "https://registry.yarnpkg.com/pino/-/pino-8.15.1.tgz#04b815ff7aa4e46b1bbab88d8010aaa2b17eaba4"
5799
+ integrity sha512-Cp4QzUQrvWCRJaQ8Lzv0mJzXVk4z2jlq8JNKMGaixC2Pz5L4l2p95TkuRvYbrEbe85NQsDKrAd4zalf7Ml6WiA==
5742
5800
  dependencies:
5743
5801
  atomic-sleep "^1.0.0"
5744
5802
  fast-redact "^3.1.1"
5745
5803
  on-exit-leak-free "^2.1.0"
5746
- pino-abstract-transport v1.0.0
5804
+ pino-abstract-transport v1.1.0
5747
5805
  pino-std-serializers "^6.0.0"
5748
5806
  process-warning "^2.0.0"
5749
5807
  quick-format-unescaped "^4.0.3"
@@ -6126,6 +6184,11 @@ restore-cursor@^3.1.0:
6126
6184
  onetime "^5.1.0"
6127
6185
  signal-exit "^3.0.2"
6128
6186
 
6187
+ retry@0.13.1:
6188
+ version "0.13.1"
6189
+ resolved "https://registry.yarnpkg.com/retry/-/retry-0.13.1.tgz#185b1587acf67919d63b357349e03537b2484658"
6190
+ integrity sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==
6191
+
6129
6192
  retry@^0.12.0:
6130
6193
  version "0.12.0"
6131
6194
  resolved "https://registry.yarnpkg.com/retry/-/retry-0.12.0.tgz#1b42a6266a21f07421d1b0b54b7dc167b01c013b"
@@ -6824,10 +6887,10 @@ ts-node@^10.0.0, ts-node@^10.2.1, ts-node@^10.8.1, ts-node@^10.9.1:
6824
6887
  v8-compile-cache-lib "^3.0.1"
6825
6888
  yn "3.1.1"
6826
6889
 
6827
- ts-retry-promise@^0.7.0:
6828
- version "0.7.0"
6829
- resolved "https://registry.yarnpkg.com/ts-retry-promise/-/ts-retry-promise-0.7.0.tgz#08f2dcbbf5d2981495841cb63389a268324e8147"
6830
- integrity sha512-x6yWZXC4BfXy4UyMweOFvbS1yJ/Y5biSz/mEPiILtJZLrqD3ZxIpzVOGGgifHHdaSe3WxzFRtsRbychI6zofOg==
6890
+ ts-retry-promise@^0.7.1:
6891
+ version "0.7.1"
6892
+ resolved "https://registry.yarnpkg.com/ts-retry-promise/-/ts-retry-promise-0.7.1.tgz#176d6eee6415f07b6c7c286d3657355e284a6906"
6893
+ integrity sha512-NhHOCZ2AQORvH42hOPO5UZxShlcuiRtm7P2jIq2L2RY3PBxw2mLnUsEdHrIslVBFya1v5aZmrR55lWkzo13LrQ==
6831
6894
 
6832
6895
  tsconfig-paths@^3.14.2:
6833
6896
  version "3.14.2"
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.5.0",
2
+ "version": "1.5.1",
3
3
  "commands": {
4
4
  "org:create:shape": {
5
5
  "id": "org:create:shape",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@salesforce/plugin-signups",
3
3
  "description": "Commands to interact with org shapes",
4
- "version": "1.5.0",
4
+ "version": "1.5.1",
5
5
  "author": "Salesforce",
6
6
  "main": "lib/index.js",
7
7
  "bugs": "https://github.com/forcedotcom/cli/issues",
@@ -9,14 +9,14 @@
9
9
  "@oclif/core": "^2.15.0",
10
10
  "@salesforce/core": "^5.2.1",
11
11
  "@salesforce/kit": "^3.0.9",
12
- "@salesforce/sf-plugins-core": "^3.1.20",
12
+ "@salesforce/sf-plugins-core": "^3.1.23",
13
13
  "chalk": "^4.1.2",
14
14
  "change-case": "^4.1.2",
15
15
  "tslib": "^2"
16
16
  },
17
17
  "devDependencies": {
18
18
  "@oclif/plugin-command-snapshot": "^4.0.14",
19
- "@salesforce/cli-plugins-testkit": "^4.3.0",
19
+ "@salesforce/cli-plugins-testkit": "^4.3.5",
20
20
  "@salesforce/dev-config": "^4.0.1",
21
21
  "@salesforce/dev-scripts": "^5.10.0",
22
22
  "@salesforce/plugin-command-reference": "^3.0.29",
@@ -25,7 +25,7 @@
25
25
  "@salesforce/ts-types": "^2.0.6",
26
26
  "@swc/core": "^1.3.39",
27
27
  "@types/chai-as-promised": "^7.1.6",
28
- "@types/chai-string": "^1.4.2",
28
+ "@types/chai-string": "^1.4.3",
29
29
  "@types/inquirer": "^9.0.3",
30
30
  "@types/shelljs": "^0.8.12",
31
31
  "@typescript-eslint/eslint-plugin": "^5.62.0",
@@ -33,7 +33,7 @@
33
33
  "chai": "^4.3.8",
34
34
  "chai-as-promised": "7.1.1",
35
35
  "chai-string": "^1.5.0",
36
- "eslint": "^8.47.0",
36
+ "eslint": "^8.49.0",
37
37
  "eslint-config-prettier": "^8.10.0",
38
38
  "eslint-config-salesforce": "^2.0.2",
39
39
  "eslint-config-salesforce-license": "^0.2.0",
@@ -45,7 +45,7 @@
45
45
  "husky": "^7.0.4",
46
46
  "mocha": "^9.1.3",
47
47
  "nyc": "^15.1.0",
48
- "oclif": "^3.14.0",
48
+ "oclif": "^3.16.0",
49
49
  "prettier": "^2.8.8",
50
50
  "pretty-quick": "^3.1.0",
51
51
  "shx": "0.3.4",
@@ -265,7 +265,7 @@
265
265
  }
266
266
  },
267
267
  "sfdx": {
268
- "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/1.5.0.crt",
269
- "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/1.5.0.sig"
268
+ "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/1.5.1.crt",
269
+ "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/1.5.1.sig"
270
270
  }
271
271
  }