@salesforce/plugin-signups 2.6.56 → 2.6.57
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/LICENSE.txt +1 -1
- package/README.md +7 -7
- package/lib/commands/org/create/shape.js +1 -1
- package/lib/commands/org/create/snapshot.js +1 -1
- package/lib/commands/org/delete/shape.js +1 -1
- package/lib/commands/org/delete/snapshot.js +1 -1
- package/lib/commands/org/get/snapshot.js +1 -1
- package/lib/commands/org/list/shape.js +1 -1
- package/lib/commands/org/list/snapshot.js +1 -1
- package/lib/index.js +1 -1
- package/lib/shared/deleteUtils.js +1 -1
- package/lib/shared/orgShapeListUtils.js +1 -1
- package/lib/shared/snapshot.js +1 -1
- package/npm-shrinkwrap.json +659 -638
- package/oclif.lock +723 -704
- package/oclif.manifest.json +213 -213
- package/package.json +4 -4
package/oclif.manifest.json
CHANGED
|
@@ -265,143 +265,16 @@
|
|
|
265
265
|
"snapshot:create:org"
|
|
266
266
|
]
|
|
267
267
|
},
|
|
268
|
-
"org:
|
|
269
|
-
"aliases": [
|
|
270
|
-
"force:org:shape:delete"
|
|
271
|
-
],
|
|
272
|
-
"args": {},
|
|
273
|
-
"deprecateAliases": true,
|
|
274
|
-
"description": "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 one, the previous shape is marked inactive and replaced by a new active shape. If you don’t want to create scratch orgs based on this shape, you can delete the org shape.",
|
|
275
|
-
"examples": [
|
|
276
|
-
"Delete all org shapes for the source org with alias SourceOrg:\n<%= config.bin %> <%= command.id %> --target-org SourceOrg",
|
|
277
|
-
"Delete all org shapes without prompting:\n<%= config.bin %> <%= command.id %> --target-org SourceOrg --no-prompt"
|
|
278
|
-
],
|
|
279
|
-
"flags": {
|
|
280
|
-
"json": {
|
|
281
|
-
"description": "Format output as json.",
|
|
282
|
-
"helpGroup": "GLOBAL",
|
|
283
|
-
"name": "json",
|
|
284
|
-
"allowNo": false,
|
|
285
|
-
"type": "boolean"
|
|
286
|
-
},
|
|
287
|
-
"flags-dir": {
|
|
288
|
-
"helpGroup": "GLOBAL",
|
|
289
|
-
"name": "flags-dir",
|
|
290
|
-
"summary": "Import flag values from a directory.",
|
|
291
|
-
"hasDynamicHelp": false,
|
|
292
|
-
"multiple": false,
|
|
293
|
-
"type": "option"
|
|
294
|
-
},
|
|
295
|
-
"target-org": {
|
|
296
|
-
"aliases": [
|
|
297
|
-
"targetusername",
|
|
298
|
-
"u"
|
|
299
|
-
],
|
|
300
|
-
"char": "o",
|
|
301
|
-
"deprecateAliases": true,
|
|
302
|
-
"name": "target-org",
|
|
303
|
-
"noCacheDefault": true,
|
|
304
|
-
"required": true,
|
|
305
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
306
|
-
"hasDynamicHelp": true,
|
|
307
|
-
"multiple": false,
|
|
308
|
-
"type": "option"
|
|
309
|
-
},
|
|
310
|
-
"api-version": {
|
|
311
|
-
"aliases": [
|
|
312
|
-
"apiversion"
|
|
313
|
-
],
|
|
314
|
-
"deprecateAliases": true,
|
|
315
|
-
"description": "Override the api version used for api requests made by this command",
|
|
316
|
-
"name": "api-version",
|
|
317
|
-
"hasDynamicHelp": false,
|
|
318
|
-
"multiple": false,
|
|
319
|
-
"type": "option"
|
|
320
|
-
},
|
|
321
|
-
"loglevel": {
|
|
322
|
-
"deprecated": {
|
|
323
|
-
"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."
|
|
324
|
-
},
|
|
325
|
-
"hidden": true,
|
|
326
|
-
"name": "loglevel",
|
|
327
|
-
"hasDynamicHelp": false,
|
|
328
|
-
"multiple": false,
|
|
329
|
-
"type": "option"
|
|
330
|
-
},
|
|
331
|
-
"no-prompt": {
|
|
332
|
-
"aliases": [
|
|
333
|
-
"noprompt"
|
|
334
|
-
],
|
|
335
|
-
"char": "p",
|
|
336
|
-
"deprecateAliases": true,
|
|
337
|
-
"name": "no-prompt",
|
|
338
|
-
"summary": "Don't prompt for confirmation.",
|
|
339
|
-
"allowNo": false,
|
|
340
|
-
"type": "boolean"
|
|
341
|
-
}
|
|
342
|
-
},
|
|
343
|
-
"hasDynamicHelp": true,
|
|
344
|
-
"hiddenAliases": [],
|
|
345
|
-
"id": "org:delete:shape",
|
|
346
|
-
"pluginAlias": "@salesforce/plugin-signups",
|
|
347
|
-
"pluginName": "@salesforce/plugin-signups",
|
|
348
|
-
"pluginType": "core",
|
|
349
|
-
"strict": true,
|
|
350
|
-
"summary": "Delete all org shapes for a target org.",
|
|
351
|
-
"enableJsonFlag": true,
|
|
352
|
-
"isESM": true,
|
|
353
|
-
"relativePath": [
|
|
354
|
-
"lib",
|
|
355
|
-
"commands",
|
|
356
|
-
"org",
|
|
357
|
-
"delete",
|
|
358
|
-
"shape.js"
|
|
359
|
-
],
|
|
360
|
-
"aliasPermutations": [
|
|
361
|
-
"force:org:shape:delete",
|
|
362
|
-
"org:force:shape:delete",
|
|
363
|
-
"org:shape:force:delete",
|
|
364
|
-
"org:shape:delete:force",
|
|
365
|
-
"force:shape:org:delete",
|
|
366
|
-
"shape:force:org:delete",
|
|
367
|
-
"shape:org:force:delete",
|
|
368
|
-
"shape:org:delete:force",
|
|
369
|
-
"force:shape:delete:org",
|
|
370
|
-
"shape:force:delete:org",
|
|
371
|
-
"shape:delete:force:org",
|
|
372
|
-
"shape:delete:org:force",
|
|
373
|
-
"force:org:delete:shape",
|
|
374
|
-
"org:force:delete:shape",
|
|
375
|
-
"org:delete:force:shape",
|
|
376
|
-
"org:delete:shape:force",
|
|
377
|
-
"force:delete:org:shape",
|
|
378
|
-
"delete:force:org:shape",
|
|
379
|
-
"delete:org:force:shape",
|
|
380
|
-
"delete:org:shape:force",
|
|
381
|
-
"force:delete:shape:org",
|
|
382
|
-
"delete:force:shape:org",
|
|
383
|
-
"delete:shape:force:org",
|
|
384
|
-
"delete:shape:org:force"
|
|
385
|
-
],
|
|
386
|
-
"permutations": [
|
|
387
|
-
"org:delete:shape",
|
|
388
|
-
"delete:org:shape",
|
|
389
|
-
"delete:shape:org",
|
|
390
|
-
"org:shape:delete",
|
|
391
|
-
"shape:org:delete",
|
|
392
|
-
"shape:delete:org"
|
|
393
|
-
]
|
|
394
|
-
},
|
|
395
|
-
"org:delete:snapshot": {
|
|
268
|
+
"org:get:snapshot": {
|
|
396
269
|
"aliases": [
|
|
397
|
-
"force:org:snapshot:
|
|
270
|
+
"force:org:snapshot:get"
|
|
398
271
|
],
|
|
399
272
|
"args": {},
|
|
400
273
|
"deprecateAliases": true,
|
|
401
|
-
"description": "
|
|
274
|
+
"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\".",
|
|
402
275
|
"examples": [
|
|
403
|
-
"
|
|
404
|
-
"
|
|
276
|
+
"Get snapshot details using its ID and the default Dev Hub org:\n<%= config.bin %> <%= command.id %> --snapshot 0Oo...",
|
|
277
|
+
"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"
|
|
405
278
|
],
|
|
406
279
|
"flags": {
|
|
407
280
|
"json": {
|
|
@@ -459,69 +332,62 @@
|
|
|
459
332
|
"description": "The IDs of scratch org snapshots start with 0Oo.",
|
|
460
333
|
"name": "snapshot",
|
|
461
334
|
"required": true,
|
|
462
|
-
"summary": "Name or ID of snapshot to
|
|
335
|
+
"summary": "Name or ID of snapshot to retrieve.",
|
|
463
336
|
"hasDynamicHelp": false,
|
|
464
337
|
"multiple": false,
|
|
465
338
|
"type": "option"
|
|
466
|
-
},
|
|
467
|
-
"no-prompt": {
|
|
468
|
-
"char": "p",
|
|
469
|
-
"name": "no-prompt",
|
|
470
|
-
"summary": "Don't prompt the user to confirm the deletion.",
|
|
471
|
-
"allowNo": false,
|
|
472
|
-
"type": "boolean"
|
|
473
339
|
}
|
|
474
340
|
},
|
|
475
341
|
"hasDynamicHelp": true,
|
|
476
342
|
"hiddenAliases": [],
|
|
477
|
-
"id": "org:
|
|
343
|
+
"id": "org:get:snapshot",
|
|
478
344
|
"pluginAlias": "@salesforce/plugin-signups",
|
|
479
345
|
"pluginName": "@salesforce/plugin-signups",
|
|
480
346
|
"pluginType": "core",
|
|
481
347
|
"strict": true,
|
|
482
|
-
"summary": "
|
|
348
|
+
"summary": "Get details about a scratch org snapshot.",
|
|
483
349
|
"enableJsonFlag": true,
|
|
484
350
|
"isESM": true,
|
|
485
351
|
"relativePath": [
|
|
486
352
|
"lib",
|
|
487
353
|
"commands",
|
|
488
354
|
"org",
|
|
489
|
-
"
|
|
355
|
+
"get",
|
|
490
356
|
"snapshot.js"
|
|
491
357
|
],
|
|
492
358
|
"aliasPermutations": [
|
|
493
|
-
"force:org:snapshot:
|
|
494
|
-
"org:force:snapshot:
|
|
495
|
-
"org:snapshot:force:
|
|
496
|
-
"org:snapshot:
|
|
497
|
-
"force:snapshot:org:
|
|
498
|
-
"snapshot:force:org:
|
|
499
|
-
"snapshot:org:force:
|
|
500
|
-
"snapshot:org:
|
|
501
|
-
"force:snapshot:
|
|
502
|
-
"snapshot:force:
|
|
503
|
-
"snapshot:
|
|
504
|
-
"snapshot:
|
|
505
|
-
"force:org:
|
|
506
|
-
"org:force:
|
|
507
|
-
"org:
|
|
508
|
-
"org:
|
|
509
|
-
"force:
|
|
510
|
-
"
|
|
511
|
-
"
|
|
512
|
-
"
|
|
513
|
-
"force:
|
|
514
|
-
"
|
|
515
|
-
"
|
|
516
|
-
"
|
|
359
|
+
"force:org:snapshot:get",
|
|
360
|
+
"org:force:snapshot:get",
|
|
361
|
+
"org:snapshot:force:get",
|
|
362
|
+
"org:snapshot:get:force",
|
|
363
|
+
"force:snapshot:org:get",
|
|
364
|
+
"snapshot:force:org:get",
|
|
365
|
+
"snapshot:org:force:get",
|
|
366
|
+
"snapshot:org:get:force",
|
|
367
|
+
"force:snapshot:get:org",
|
|
368
|
+
"snapshot:force:get:org",
|
|
369
|
+
"snapshot:get:force:org",
|
|
370
|
+
"snapshot:get:org:force",
|
|
371
|
+
"force:org:get:snapshot",
|
|
372
|
+
"org:force:get:snapshot",
|
|
373
|
+
"org:get:force:snapshot",
|
|
374
|
+
"org:get:snapshot:force",
|
|
375
|
+
"force:get:org:snapshot",
|
|
376
|
+
"get:force:org:snapshot",
|
|
377
|
+
"get:org:force:snapshot",
|
|
378
|
+
"get:org:snapshot:force",
|
|
379
|
+
"force:get:snapshot:org",
|
|
380
|
+
"get:force:snapshot:org",
|
|
381
|
+
"get:snapshot:force:org",
|
|
382
|
+
"get:snapshot:org:force"
|
|
517
383
|
],
|
|
518
384
|
"permutations": [
|
|
519
|
-
"org:
|
|
520
|
-
"
|
|
521
|
-
"
|
|
522
|
-
"org:snapshot:
|
|
523
|
-
"snapshot:org:
|
|
524
|
-
"snapshot:
|
|
385
|
+
"org:get:snapshot",
|
|
386
|
+
"get:org:snapshot",
|
|
387
|
+
"get:snapshot:org",
|
|
388
|
+
"org:snapshot:get",
|
|
389
|
+
"snapshot:org:get",
|
|
390
|
+
"snapshot:get:org"
|
|
525
391
|
]
|
|
526
392
|
},
|
|
527
393
|
"org:list:shape": {
|
|
@@ -736,16 +602,143 @@
|
|
|
736
602
|
"snapshot:list:org"
|
|
737
603
|
]
|
|
738
604
|
},
|
|
739
|
-
"org:
|
|
605
|
+
"org:delete:shape": {
|
|
740
606
|
"aliases": [
|
|
741
|
-
"force:org:
|
|
607
|
+
"force:org:shape:delete"
|
|
742
608
|
],
|
|
743
609
|
"args": {},
|
|
744
610
|
"deprecateAliases": true,
|
|
745
|
-
"description": "
|
|
611
|
+
"description": "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 one, the previous shape is marked inactive and replaced by a new active shape. If you don’t want to create scratch orgs based on this shape, you can delete the org shape.",
|
|
746
612
|
"examples": [
|
|
747
|
-
"
|
|
748
|
-
"
|
|
613
|
+
"Delete all org shapes for the source org with alias SourceOrg:\n<%= config.bin %> <%= command.id %> --target-org SourceOrg",
|
|
614
|
+
"Delete all org shapes without prompting:\n<%= config.bin %> <%= command.id %> --target-org SourceOrg --no-prompt"
|
|
615
|
+
],
|
|
616
|
+
"flags": {
|
|
617
|
+
"json": {
|
|
618
|
+
"description": "Format output as json.",
|
|
619
|
+
"helpGroup": "GLOBAL",
|
|
620
|
+
"name": "json",
|
|
621
|
+
"allowNo": false,
|
|
622
|
+
"type": "boolean"
|
|
623
|
+
},
|
|
624
|
+
"flags-dir": {
|
|
625
|
+
"helpGroup": "GLOBAL",
|
|
626
|
+
"name": "flags-dir",
|
|
627
|
+
"summary": "Import flag values from a directory.",
|
|
628
|
+
"hasDynamicHelp": false,
|
|
629
|
+
"multiple": false,
|
|
630
|
+
"type": "option"
|
|
631
|
+
},
|
|
632
|
+
"target-org": {
|
|
633
|
+
"aliases": [
|
|
634
|
+
"targetusername",
|
|
635
|
+
"u"
|
|
636
|
+
],
|
|
637
|
+
"char": "o",
|
|
638
|
+
"deprecateAliases": true,
|
|
639
|
+
"name": "target-org",
|
|
640
|
+
"noCacheDefault": true,
|
|
641
|
+
"required": true,
|
|
642
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
643
|
+
"hasDynamicHelp": true,
|
|
644
|
+
"multiple": false,
|
|
645
|
+
"type": "option"
|
|
646
|
+
},
|
|
647
|
+
"api-version": {
|
|
648
|
+
"aliases": [
|
|
649
|
+
"apiversion"
|
|
650
|
+
],
|
|
651
|
+
"deprecateAliases": true,
|
|
652
|
+
"description": "Override the api version used for api requests made by this command",
|
|
653
|
+
"name": "api-version",
|
|
654
|
+
"hasDynamicHelp": false,
|
|
655
|
+
"multiple": false,
|
|
656
|
+
"type": "option"
|
|
657
|
+
},
|
|
658
|
+
"loglevel": {
|
|
659
|
+
"deprecated": {
|
|
660
|
+
"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."
|
|
661
|
+
},
|
|
662
|
+
"hidden": true,
|
|
663
|
+
"name": "loglevel",
|
|
664
|
+
"hasDynamicHelp": false,
|
|
665
|
+
"multiple": false,
|
|
666
|
+
"type": "option"
|
|
667
|
+
},
|
|
668
|
+
"no-prompt": {
|
|
669
|
+
"aliases": [
|
|
670
|
+
"noprompt"
|
|
671
|
+
],
|
|
672
|
+
"char": "p",
|
|
673
|
+
"deprecateAliases": true,
|
|
674
|
+
"name": "no-prompt",
|
|
675
|
+
"summary": "Don't prompt for confirmation.",
|
|
676
|
+
"allowNo": false,
|
|
677
|
+
"type": "boolean"
|
|
678
|
+
}
|
|
679
|
+
},
|
|
680
|
+
"hasDynamicHelp": true,
|
|
681
|
+
"hiddenAliases": [],
|
|
682
|
+
"id": "org:delete:shape",
|
|
683
|
+
"pluginAlias": "@salesforce/plugin-signups",
|
|
684
|
+
"pluginName": "@salesforce/plugin-signups",
|
|
685
|
+
"pluginType": "core",
|
|
686
|
+
"strict": true,
|
|
687
|
+
"summary": "Delete all org shapes for a target org.",
|
|
688
|
+
"enableJsonFlag": true,
|
|
689
|
+
"isESM": true,
|
|
690
|
+
"relativePath": [
|
|
691
|
+
"lib",
|
|
692
|
+
"commands",
|
|
693
|
+
"org",
|
|
694
|
+
"delete",
|
|
695
|
+
"shape.js"
|
|
696
|
+
],
|
|
697
|
+
"aliasPermutations": [
|
|
698
|
+
"force:org:shape:delete",
|
|
699
|
+
"org:force:shape:delete",
|
|
700
|
+
"org:shape:force:delete",
|
|
701
|
+
"org:shape:delete:force",
|
|
702
|
+
"force:shape:org:delete",
|
|
703
|
+
"shape:force:org:delete",
|
|
704
|
+
"shape:org:force:delete",
|
|
705
|
+
"shape:org:delete:force",
|
|
706
|
+
"force:shape:delete:org",
|
|
707
|
+
"shape:force:delete:org",
|
|
708
|
+
"shape:delete:force:org",
|
|
709
|
+
"shape:delete:org:force",
|
|
710
|
+
"force:org:delete:shape",
|
|
711
|
+
"org:force:delete:shape",
|
|
712
|
+
"org:delete:force:shape",
|
|
713
|
+
"org:delete:shape:force",
|
|
714
|
+
"force:delete:org:shape",
|
|
715
|
+
"delete:force:org:shape",
|
|
716
|
+
"delete:org:force:shape",
|
|
717
|
+
"delete:org:shape:force",
|
|
718
|
+
"force:delete:shape:org",
|
|
719
|
+
"delete:force:shape:org",
|
|
720
|
+
"delete:shape:force:org",
|
|
721
|
+
"delete:shape:org:force"
|
|
722
|
+
],
|
|
723
|
+
"permutations": [
|
|
724
|
+
"org:delete:shape",
|
|
725
|
+
"delete:org:shape",
|
|
726
|
+
"delete:shape:org",
|
|
727
|
+
"org:shape:delete",
|
|
728
|
+
"shape:org:delete",
|
|
729
|
+
"shape:delete:org"
|
|
730
|
+
]
|
|
731
|
+
},
|
|
732
|
+
"org:delete:snapshot": {
|
|
733
|
+
"aliases": [
|
|
734
|
+
"force:org:snapshot:delete"
|
|
735
|
+
],
|
|
736
|
+
"args": {},
|
|
737
|
+
"deprecateAliases": true,
|
|
738
|
+
"description": "Dev Hub admins can delete any snapshot. Users can delete only their own snapshots, unless a Dev Hub admin gives the user Modify All permission, which works only with the Salesforce license.",
|
|
739
|
+
"examples": [
|
|
740
|
+
"Delete a snapshot from the default Dev Hub using the snapshot ID:\n<%= config.bin %> <%= command.id %> --snapshot 0Oo...",
|
|
741
|
+
"Delete a snapshot from the specified Dev Hub using the snapshot name:\n<%= config.bin %> <%= command.id %> --snapshot BaseSnapshot --target-dev-hub SnapshotDevHub"
|
|
749
742
|
],
|
|
750
743
|
"flags": {
|
|
751
744
|
"json": {
|
|
@@ -803,64 +796,71 @@
|
|
|
803
796
|
"description": "The IDs of scratch org snapshots start with 0Oo.",
|
|
804
797
|
"name": "snapshot",
|
|
805
798
|
"required": true,
|
|
806
|
-
"summary": "Name or ID of snapshot to
|
|
799
|
+
"summary": "Name or ID of snapshot to delete.",
|
|
807
800
|
"hasDynamicHelp": false,
|
|
808
801
|
"multiple": false,
|
|
809
802
|
"type": "option"
|
|
803
|
+
},
|
|
804
|
+
"no-prompt": {
|
|
805
|
+
"char": "p",
|
|
806
|
+
"name": "no-prompt",
|
|
807
|
+
"summary": "Don't prompt the user to confirm the deletion.",
|
|
808
|
+
"allowNo": false,
|
|
809
|
+
"type": "boolean"
|
|
810
810
|
}
|
|
811
811
|
},
|
|
812
812
|
"hasDynamicHelp": true,
|
|
813
813
|
"hiddenAliases": [],
|
|
814
|
-
"id": "org:
|
|
814
|
+
"id": "org:delete:snapshot",
|
|
815
815
|
"pluginAlias": "@salesforce/plugin-signups",
|
|
816
816
|
"pluginName": "@salesforce/plugin-signups",
|
|
817
817
|
"pluginType": "core",
|
|
818
818
|
"strict": true,
|
|
819
|
-
"summary": "
|
|
819
|
+
"summary": "Delete a scratch org snapshot.",
|
|
820
820
|
"enableJsonFlag": true,
|
|
821
821
|
"isESM": true,
|
|
822
822
|
"relativePath": [
|
|
823
823
|
"lib",
|
|
824
824
|
"commands",
|
|
825
825
|
"org",
|
|
826
|
-
"
|
|
826
|
+
"delete",
|
|
827
827
|
"snapshot.js"
|
|
828
828
|
],
|
|
829
829
|
"aliasPermutations": [
|
|
830
|
-
"force:org:snapshot:
|
|
831
|
-
"org:force:snapshot:
|
|
832
|
-
"org:snapshot:force:
|
|
833
|
-
"org:snapshot:
|
|
834
|
-
"force:snapshot:org:
|
|
835
|
-
"snapshot:force:org:
|
|
836
|
-
"snapshot:org:force:
|
|
837
|
-
"snapshot:org:
|
|
838
|
-
"force:snapshot:
|
|
839
|
-
"snapshot:force:
|
|
840
|
-
"snapshot:
|
|
841
|
-
"snapshot:
|
|
842
|
-
"force:org:
|
|
843
|
-
"org:force:
|
|
844
|
-
"org:
|
|
845
|
-
"org:
|
|
846
|
-
"force:
|
|
847
|
-
"
|
|
848
|
-
"
|
|
849
|
-
"
|
|
850
|
-
"force:
|
|
851
|
-
"
|
|
852
|
-
"
|
|
853
|
-
"
|
|
830
|
+
"force:org:snapshot:delete",
|
|
831
|
+
"org:force:snapshot:delete",
|
|
832
|
+
"org:snapshot:force:delete",
|
|
833
|
+
"org:snapshot:delete:force",
|
|
834
|
+
"force:snapshot:org:delete",
|
|
835
|
+
"snapshot:force:org:delete",
|
|
836
|
+
"snapshot:org:force:delete",
|
|
837
|
+
"snapshot:org:delete:force",
|
|
838
|
+
"force:snapshot:delete:org",
|
|
839
|
+
"snapshot:force:delete:org",
|
|
840
|
+
"snapshot:delete:force:org",
|
|
841
|
+
"snapshot:delete:org:force",
|
|
842
|
+
"force:org:delete:snapshot",
|
|
843
|
+
"org:force:delete:snapshot",
|
|
844
|
+
"org:delete:force:snapshot",
|
|
845
|
+
"org:delete:snapshot:force",
|
|
846
|
+
"force:delete:org:snapshot",
|
|
847
|
+
"delete:force:org:snapshot",
|
|
848
|
+
"delete:org:force:snapshot",
|
|
849
|
+
"delete:org:snapshot:force",
|
|
850
|
+
"force:delete:snapshot:org",
|
|
851
|
+
"delete:force:snapshot:org",
|
|
852
|
+
"delete:snapshot:force:org",
|
|
853
|
+
"delete:snapshot:org:force"
|
|
854
854
|
],
|
|
855
855
|
"permutations": [
|
|
856
|
-
"org:
|
|
857
|
-
"
|
|
858
|
-
"
|
|
859
|
-
"org:snapshot:
|
|
860
|
-
"snapshot:org:
|
|
861
|
-
"snapshot:
|
|
856
|
+
"org:delete:snapshot",
|
|
857
|
+
"delete:org:snapshot",
|
|
858
|
+
"delete:snapshot:org",
|
|
859
|
+
"org:snapshot:delete",
|
|
860
|
+
"snapshot:org:delete",
|
|
861
|
+
"snapshot:delete:org"
|
|
862
862
|
]
|
|
863
863
|
}
|
|
864
864
|
},
|
|
865
|
-
"version": "2.6.
|
|
865
|
+
"version": "2.6.57"
|
|
866
866
|
}
|
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": "2.6.
|
|
4
|
+
"version": "2.6.57",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
7
|
"dependencies": {
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"chai-string": "^1.6.0",
|
|
24
24
|
"eslint-plugin-sf-plugin": "^1.20.33",
|
|
25
25
|
"jsforce": "^2.0.0-beta.28",
|
|
26
|
-
"oclif": "^4.22.
|
|
26
|
+
"oclif": "^4.22.59",
|
|
27
27
|
"ts-node": "^10.9.2",
|
|
28
28
|
"typescript": "^5.5.4"
|
|
29
29
|
},
|
|
@@ -220,7 +220,7 @@
|
|
|
220
220
|
"exports": "./lib/index.js",
|
|
221
221
|
"type": "module",
|
|
222
222
|
"sfdx": {
|
|
223
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/2.6.
|
|
224
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/2.6.
|
|
223
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/2.6.57.crt",
|
|
224
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/2.6.57.sig"
|
|
225
225
|
}
|
|
226
226
|
}
|