@salesforce/plugin-signups 2.0.30 → 2.1.0
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +307 -2
- package/lib/commands/org/create/shape.js.map +1 -1
- package/lib/commands/org/create/snapshot.js.map +1 -1
- package/lib/commands/org/delete/snapshot.js.map +1 -1
- package/lib/commands/org/get/snapshot.js.map +1 -1
- package/lib/commands/org/list/shape.js.map +1 -1
- package/lib/commands/org/list/snapshot.js.map +1 -1
- package/lib/shared/deleteUtils.js.map +1 -1
- package/lib/shared/orgShapeListUtils.js.map +1 -1
- package/lib/shared/snapshot.js.map +1 -1
- package/npm-shrinkwrap.json +592 -1211
- package/oclif.lock +51 -470
- package/oclif.manifest.json +175 -119
- package/package.json +5 -5
package/oclif.manifest.json
CHANGED
@@ -18,6 +18,14 @@
|
|
18
18
|
"allowNo": false,
|
19
19
|
"type": "boolean"
|
20
20
|
},
|
21
|
+
"flags-dir": {
|
22
|
+
"helpGroup": "GLOBAL",
|
23
|
+
"name": "flags-dir",
|
24
|
+
"summary": "Import flag values from a directory.",
|
25
|
+
"hasDynamicHelp": false,
|
26
|
+
"multiple": false,
|
27
|
+
"type": "option"
|
28
|
+
},
|
21
29
|
"target-org": {
|
22
30
|
"aliases": [
|
23
31
|
"targetusername",
|
@@ -126,6 +134,14 @@
|
|
126
134
|
"allowNo": false,
|
127
135
|
"type": "boolean"
|
128
136
|
},
|
137
|
+
"flags-dir": {
|
138
|
+
"helpGroup": "GLOBAL",
|
139
|
+
"name": "flags-dir",
|
140
|
+
"summary": "Import flag values from a directory.",
|
141
|
+
"hasDynamicHelp": false,
|
142
|
+
"multiple": false,
|
143
|
+
"type": "option"
|
144
|
+
},
|
129
145
|
"target-dev-hub": {
|
130
146
|
"aliases": [
|
131
147
|
"targetdevhubusername"
|
@@ -250,124 +266,6 @@
|
|
250
266
|
"snapshot:create:org"
|
251
267
|
]
|
252
268
|
},
|
253
|
-
"org:get:snapshot": {
|
254
|
-
"aliases": [
|
255
|
-
"force:org:snapshot:get"
|
256
|
-
],
|
257
|
-
"args": {},
|
258
|
-
"deprecateAliases": true,
|
259
|
-
"description": "Snapshot creation can take a while. Use this command with the snapshot name or ID to check its creation status. After the status changes to Active, you can use the snapshot to create scratch orgs.\n\nTo create a snapshot, use the \"<%= config.bin %> org create snapshot\" command. To retrieve a list of all snapshots, use \"<%= config.bin %> org list snapshot\".",
|
260
|
-
"examples": [
|
261
|
-
"Get snapshot details using its ID and the default Dev Hub org:\n<%= config.bin %> <%= command.id %> --snapshot 0Oo...",
|
262
|
-
"Get snapshot details using its name from a Dev Hub org with alias SnapshotDevHub:\n<%= config.bin %> <%= command.id %> --snapshot Dependencies --target-dev-hub SnapshotDevHub"
|
263
|
-
],
|
264
|
-
"flags": {
|
265
|
-
"json": {
|
266
|
-
"description": "Format output as json.",
|
267
|
-
"helpGroup": "GLOBAL",
|
268
|
-
"name": "json",
|
269
|
-
"allowNo": false,
|
270
|
-
"type": "boolean"
|
271
|
-
},
|
272
|
-
"target-dev-hub": {
|
273
|
-
"aliases": [
|
274
|
-
"targetdevhubusername"
|
275
|
-
],
|
276
|
-
"char": "v",
|
277
|
-
"deprecateAliases": true,
|
278
|
-
"name": "target-dev-hub",
|
279
|
-
"noCacheDefault": true,
|
280
|
-
"required": true,
|
281
|
-
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
282
|
-
"hasDynamicHelp": true,
|
283
|
-
"multiple": false,
|
284
|
-
"type": "option"
|
285
|
-
},
|
286
|
-
"api-version": {
|
287
|
-
"aliases": [
|
288
|
-
"apiversion"
|
289
|
-
],
|
290
|
-
"deprecateAliases": true,
|
291
|
-
"description": "Override the api version used for api requests made by this command",
|
292
|
-
"name": "api-version",
|
293
|
-
"hasDynamicHelp": false,
|
294
|
-
"multiple": false,
|
295
|
-
"type": "option"
|
296
|
-
},
|
297
|
-
"loglevel": {
|
298
|
-
"deprecated": {
|
299
|
-
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
300
|
-
},
|
301
|
-
"hidden": true,
|
302
|
-
"name": "loglevel",
|
303
|
-
"hasDynamicHelp": false,
|
304
|
-
"multiple": false,
|
305
|
-
"type": "option"
|
306
|
-
},
|
307
|
-
"snapshot": {
|
308
|
-
"char": "s",
|
309
|
-
"description": "The IDs of scratch org snapshots start with 0Oo.",
|
310
|
-
"name": "snapshot",
|
311
|
-
"required": true,
|
312
|
-
"summary": "Name or ID of snapshot to retrieve.",
|
313
|
-
"hasDynamicHelp": false,
|
314
|
-
"multiple": false,
|
315
|
-
"type": "option"
|
316
|
-
}
|
317
|
-
},
|
318
|
-
"hasDynamicHelp": true,
|
319
|
-
"hiddenAliases": [],
|
320
|
-
"id": "org:get:snapshot",
|
321
|
-
"pluginAlias": "@salesforce/plugin-signups",
|
322
|
-
"pluginName": "@salesforce/plugin-signups",
|
323
|
-
"pluginType": "core",
|
324
|
-
"state": "beta",
|
325
|
-
"strict": true,
|
326
|
-
"summary": "Get details about a scratch org snapshot.",
|
327
|
-
"enableJsonFlag": true,
|
328
|
-
"isESM": true,
|
329
|
-
"relativePath": [
|
330
|
-
"lib",
|
331
|
-
"commands",
|
332
|
-
"org",
|
333
|
-
"get",
|
334
|
-
"snapshot.js"
|
335
|
-
],
|
336
|
-
"aliasPermutations": [
|
337
|
-
"force:org:snapshot:get",
|
338
|
-
"org:force:snapshot:get",
|
339
|
-
"org:snapshot:force:get",
|
340
|
-
"org:snapshot:get:force",
|
341
|
-
"force:snapshot:org:get",
|
342
|
-
"snapshot:force:org:get",
|
343
|
-
"snapshot:org:force:get",
|
344
|
-
"snapshot:org:get:force",
|
345
|
-
"force:snapshot:get:org",
|
346
|
-
"snapshot:force:get:org",
|
347
|
-
"snapshot:get:force:org",
|
348
|
-
"snapshot:get:org:force",
|
349
|
-
"force:org:get:snapshot",
|
350
|
-
"org:force:get:snapshot",
|
351
|
-
"org:get:force:snapshot",
|
352
|
-
"org:get:snapshot:force",
|
353
|
-
"force:get:org:snapshot",
|
354
|
-
"get:force:org:snapshot",
|
355
|
-
"get:org:force:snapshot",
|
356
|
-
"get:org:snapshot:force",
|
357
|
-
"force:get:snapshot:org",
|
358
|
-
"get:force:snapshot:org",
|
359
|
-
"get:snapshot:force:org",
|
360
|
-
"get:snapshot:org:force"
|
361
|
-
],
|
362
|
-
"permutations": [
|
363
|
-
"org:get:snapshot",
|
364
|
-
"get:org:snapshot",
|
365
|
-
"get:snapshot:org",
|
366
|
-
"org:snapshot:get",
|
367
|
-
"snapshot:org:get",
|
368
|
-
"snapshot:get:org"
|
369
|
-
]
|
370
|
-
},
|
371
269
|
"org:delete:shape": {
|
372
270
|
"aliases": [
|
373
271
|
"force:org:shape:delete"
|
@@ -387,6 +285,14 @@
|
|
387
285
|
"allowNo": false,
|
388
286
|
"type": "boolean"
|
389
287
|
},
|
288
|
+
"flags-dir": {
|
289
|
+
"helpGroup": "GLOBAL",
|
290
|
+
"name": "flags-dir",
|
291
|
+
"summary": "Import flag values from a directory.",
|
292
|
+
"hasDynamicHelp": false,
|
293
|
+
"multiple": false,
|
294
|
+
"type": "option"
|
295
|
+
},
|
390
296
|
"target-org": {
|
391
297
|
"aliases": [
|
392
298
|
"targetusername",
|
@@ -506,6 +412,14 @@
|
|
506
412
|
"allowNo": false,
|
507
413
|
"type": "boolean"
|
508
414
|
},
|
415
|
+
"flags-dir": {
|
416
|
+
"helpGroup": "GLOBAL",
|
417
|
+
"name": "flags-dir",
|
418
|
+
"summary": "Import flag values from a directory.",
|
419
|
+
"hasDynamicHelp": false,
|
420
|
+
"multiple": false,
|
421
|
+
"type": "option"
|
422
|
+
},
|
509
423
|
"target-dev-hub": {
|
510
424
|
"aliases": [
|
511
425
|
"targetdevhubusername"
|
@@ -605,6 +519,132 @@
|
|
605
519
|
"snapshot:delete:org"
|
606
520
|
]
|
607
521
|
},
|
522
|
+
"org:get:snapshot": {
|
523
|
+
"aliases": [
|
524
|
+
"force:org:snapshot:get"
|
525
|
+
],
|
526
|
+
"args": {},
|
527
|
+
"deprecateAliases": true,
|
528
|
+
"description": "Snapshot creation can take a while. Use this command with the snapshot name or ID to check its creation status. After the status changes to Active, you can use the snapshot to create scratch orgs.\n\nTo create a snapshot, use the \"<%= config.bin %> org create snapshot\" command. To retrieve a list of all snapshots, use \"<%= config.bin %> org list snapshot\".",
|
529
|
+
"examples": [
|
530
|
+
"Get snapshot details using its ID and the default Dev Hub org:\n<%= config.bin %> <%= command.id %> --snapshot 0Oo...",
|
531
|
+
"Get snapshot details using its name from a Dev Hub org with alias SnapshotDevHub:\n<%= config.bin %> <%= command.id %> --snapshot Dependencies --target-dev-hub SnapshotDevHub"
|
532
|
+
],
|
533
|
+
"flags": {
|
534
|
+
"json": {
|
535
|
+
"description": "Format output as json.",
|
536
|
+
"helpGroup": "GLOBAL",
|
537
|
+
"name": "json",
|
538
|
+
"allowNo": false,
|
539
|
+
"type": "boolean"
|
540
|
+
},
|
541
|
+
"flags-dir": {
|
542
|
+
"helpGroup": "GLOBAL",
|
543
|
+
"name": "flags-dir",
|
544
|
+
"summary": "Import flag values from a directory.",
|
545
|
+
"hasDynamicHelp": false,
|
546
|
+
"multiple": false,
|
547
|
+
"type": "option"
|
548
|
+
},
|
549
|
+
"target-dev-hub": {
|
550
|
+
"aliases": [
|
551
|
+
"targetdevhubusername"
|
552
|
+
],
|
553
|
+
"char": "v",
|
554
|
+
"deprecateAliases": true,
|
555
|
+
"name": "target-dev-hub",
|
556
|
+
"noCacheDefault": true,
|
557
|
+
"required": true,
|
558
|
+
"summary": "Username or alias of the Dev Hub org. Not required if the `target-dev-hub` configuration variable is already set.",
|
559
|
+
"hasDynamicHelp": true,
|
560
|
+
"multiple": false,
|
561
|
+
"type": "option"
|
562
|
+
},
|
563
|
+
"api-version": {
|
564
|
+
"aliases": [
|
565
|
+
"apiversion"
|
566
|
+
],
|
567
|
+
"deprecateAliases": true,
|
568
|
+
"description": "Override the api version used for api requests made by this command",
|
569
|
+
"name": "api-version",
|
570
|
+
"hasDynamicHelp": false,
|
571
|
+
"multiple": false,
|
572
|
+
"type": "option"
|
573
|
+
},
|
574
|
+
"loglevel": {
|
575
|
+
"deprecated": {
|
576
|
+
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
577
|
+
},
|
578
|
+
"hidden": true,
|
579
|
+
"name": "loglevel",
|
580
|
+
"hasDynamicHelp": false,
|
581
|
+
"multiple": false,
|
582
|
+
"type": "option"
|
583
|
+
},
|
584
|
+
"snapshot": {
|
585
|
+
"char": "s",
|
586
|
+
"description": "The IDs of scratch org snapshots start with 0Oo.",
|
587
|
+
"name": "snapshot",
|
588
|
+
"required": true,
|
589
|
+
"summary": "Name or ID of snapshot to retrieve.",
|
590
|
+
"hasDynamicHelp": false,
|
591
|
+
"multiple": false,
|
592
|
+
"type": "option"
|
593
|
+
}
|
594
|
+
},
|
595
|
+
"hasDynamicHelp": true,
|
596
|
+
"hiddenAliases": [],
|
597
|
+
"id": "org:get:snapshot",
|
598
|
+
"pluginAlias": "@salesforce/plugin-signups",
|
599
|
+
"pluginName": "@salesforce/plugin-signups",
|
600
|
+
"pluginType": "core",
|
601
|
+
"state": "beta",
|
602
|
+
"strict": true,
|
603
|
+
"summary": "Get details about a scratch org snapshot.",
|
604
|
+
"enableJsonFlag": true,
|
605
|
+
"isESM": true,
|
606
|
+
"relativePath": [
|
607
|
+
"lib",
|
608
|
+
"commands",
|
609
|
+
"org",
|
610
|
+
"get",
|
611
|
+
"snapshot.js"
|
612
|
+
],
|
613
|
+
"aliasPermutations": [
|
614
|
+
"force:org:snapshot:get",
|
615
|
+
"org:force:snapshot:get",
|
616
|
+
"org:snapshot:force:get",
|
617
|
+
"org:snapshot:get:force",
|
618
|
+
"force:snapshot:org:get",
|
619
|
+
"snapshot:force:org:get",
|
620
|
+
"snapshot:org:force:get",
|
621
|
+
"snapshot:org:get:force",
|
622
|
+
"force:snapshot:get:org",
|
623
|
+
"snapshot:force:get:org",
|
624
|
+
"snapshot:get:force:org",
|
625
|
+
"snapshot:get:org:force",
|
626
|
+
"force:org:get:snapshot",
|
627
|
+
"org:force:get:snapshot",
|
628
|
+
"org:get:force:snapshot",
|
629
|
+
"org:get:snapshot:force",
|
630
|
+
"force:get:org:snapshot",
|
631
|
+
"get:force:org:snapshot",
|
632
|
+
"get:org:force:snapshot",
|
633
|
+
"get:org:snapshot:force",
|
634
|
+
"force:get:snapshot:org",
|
635
|
+
"get:force:snapshot:org",
|
636
|
+
"get:snapshot:force:org",
|
637
|
+
"get:snapshot:org:force"
|
638
|
+
],
|
639
|
+
"permutations": [
|
640
|
+
"org:get:snapshot",
|
641
|
+
"get:org:snapshot",
|
642
|
+
"get:snapshot:org",
|
643
|
+
"org:snapshot:get",
|
644
|
+
"snapshot:org:get",
|
645
|
+
"snapshot:get:org"
|
646
|
+
]
|
647
|
+
},
|
608
648
|
"org:list:shape": {
|
609
649
|
"aliases": [
|
610
650
|
"force:org:shape:list"
|
@@ -624,6 +664,14 @@
|
|
624
664
|
"allowNo": false,
|
625
665
|
"type": "boolean"
|
626
666
|
},
|
667
|
+
"flags-dir": {
|
668
|
+
"helpGroup": "GLOBAL",
|
669
|
+
"name": "flags-dir",
|
670
|
+
"summary": "Import flag values from a directory.",
|
671
|
+
"hasDynamicHelp": false,
|
672
|
+
"multiple": false,
|
673
|
+
"type": "option"
|
674
|
+
},
|
627
675
|
"verbose": {
|
628
676
|
"hidden": true,
|
629
677
|
"name": "verbose",
|
@@ -713,6 +761,14 @@
|
|
713
761
|
"allowNo": false,
|
714
762
|
"type": "boolean"
|
715
763
|
},
|
764
|
+
"flags-dir": {
|
765
|
+
"helpGroup": "GLOBAL",
|
766
|
+
"name": "flags-dir",
|
767
|
+
"summary": "Import flag values from a directory.",
|
768
|
+
"hasDynamicHelp": false,
|
769
|
+
"multiple": false,
|
770
|
+
"type": "option"
|
771
|
+
},
|
716
772
|
"target-dev-hub": {
|
717
773
|
"aliases": [
|
718
774
|
"targetdevhubusername"
|
@@ -803,5 +859,5 @@
|
|
803
859
|
]
|
804
860
|
}
|
805
861
|
},
|
806
|
-
"version": "2.0
|
862
|
+
"version": "2.1.0"
|
807
863
|
}
|
package/package.json
CHANGED
@@ -1,19 +1,19 @@
|
|
1
1
|
{
|
2
2
|
"name": "@salesforce/plugin-signups",
|
3
3
|
"description": "Commands to interact with org shapes",
|
4
|
-
"version": "2.0
|
4
|
+
"version": "2.1.0",
|
5
5
|
"author": "Salesforce",
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
7
7
|
"dependencies": {
|
8
8
|
"@oclif/core": "^3.20.0",
|
9
9
|
"@salesforce/core": "^6.7.1",
|
10
10
|
"@salesforce/kit": "^3.0.15",
|
11
|
-
"@salesforce/sf-plugins-core": "^
|
11
|
+
"@salesforce/sf-plugins-core": "^8.0.1",
|
12
12
|
"chalk": "^5.3.0",
|
13
13
|
"change-case": "^5.4.3"
|
14
14
|
},
|
15
15
|
"devDependencies": {
|
16
|
-
"@oclif/plugin-command-snapshot": "^5.1.
|
16
|
+
"@oclif/plugin-command-snapshot": "^5.1.2",
|
17
17
|
"@salesforce/cli-plugins-testkit": "^5.1.11",
|
18
18
|
"@salesforce/dev-scripts": "^8.4.2",
|
19
19
|
"@salesforce/plugin-command-reference": "^3.0.71",
|
@@ -256,7 +256,7 @@
|
|
256
256
|
"exports": "./lib/index.js",
|
257
257
|
"type": "module",
|
258
258
|
"sfdx": {
|
259
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/2.0.
|
260
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/2.0.
|
259
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/2.1.0.crt",
|
260
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/2.1.0.sig"
|
261
261
|
}
|
262
262
|
}
|