@salesforce/plugin-org 5.2.42 → 5.4.0
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 +55 -27
- package/lib/commands/org/create/sandbox.js +9 -10
- package/lib/commands/org/create/sandbox.js.map +1 -1
- package/lib/commands/org/create/scratch.d.ts +1 -0
- package/lib/commands/org/create/scratch.js +10 -0
- package/lib/commands/org/create/scratch.js.map +1 -1
- package/lib/commands/org/refresh/sandbox.js +8 -5
- package/lib/commands/org/refresh/sandbox.js.map +1 -1
- package/lib/commands/org/resume/sandbox.js +9 -6
- package/lib/commands/org/resume/sandbox.js.map +1 -1
- package/lib/shared/sandboxCommandBase.d.ts +9 -9
- package/lib/shared/sandboxCommandBase.js +38 -58
- package/lib/shared/sandboxCommandBase.js.map +1 -1
- package/lib/shared/sandboxStages.d.ts +17 -0
- package/lib/shared/sandboxStages.js +64 -0
- package/lib/shared/sandboxStages.js.map +1 -0
- package/lib/shared/scratchOrgRequest.js +1 -0
- package/lib/shared/scratchOrgRequest.js.map +1 -1
- package/messages/create_scratch.md +27 -6
- package/messages/sandboxbase.md +2 -3
- package/oclif.manifest.json +578 -554
- package/package.json +3 -3
- package/lib/shared/sandboxProgress.d.ts +0 -33
- package/lib/shared/sandboxProgress.js +0 -98
- package/lib/shared/sandboxProgress.js.map +0 -1
- package/lib/shared/sandboxReporter.d.ts +0 -11
- package/lib/shared/sandboxReporter.js +0 -36
- package/lib/shared/sandboxReporter.js.map +0 -1
- package/lib/shared/stagedProgress.d.ts +0 -33
- package/lib/shared/stagedProgress.js +0 -98
- package/lib/shared/stagedProgress.js.map +0 -1
- package/lib/shared/timeUtils.d.ts +0 -10
- package/lib/shared/timeUtils.js +0 -31
- package/lib/shared/timeUtils.js.map +0 -1
package/oclif.manifest.json
CHANGED
|
@@ -385,237 +385,6 @@
|
|
|
385
385
|
"open:org"
|
|
386
386
|
]
|
|
387
387
|
},
|
|
388
|
-
"org:delete:sandbox": {
|
|
389
|
-
"aliases": [
|
|
390
|
-
"env:delete:sandbox"
|
|
391
|
-
],
|
|
392
|
-
"args": {},
|
|
393
|
-
"deprecateAliases": true,
|
|
394
|
-
"description": "Salesforce CLI marks the org for deletion in the production org that contains the sandbox licenses and then deletes all local references to the org from your computer.\nSpecify a sandbox with either the username you used when you logged into it, or the alias you gave the sandbox when you created it. Run \"<%= config.bin %> org list\" to view all your orgs, including sandboxes, and their aliases.\nBoth the sandbox and the associated production org must already be authenticated with the CLI to successfully delete the sandbox.",
|
|
395
|
-
"examples": [
|
|
396
|
-
"Delete a sandbox with alias my-sandbox:\n<%= config.bin %> <%= command.id %> --target-org my-sandbox",
|
|
397
|
-
"Specify a username instead of an alias:\n<%= config.bin %> <%= command.id %> --target-org myusername@example.com.qa",
|
|
398
|
-
"Delete the sandbox without prompting to confirm:\n<%= config.bin %> <%= command.id %> --target-org my-sandbox --no-prompt"
|
|
399
|
-
],
|
|
400
|
-
"flags": {
|
|
401
|
-
"json": {
|
|
402
|
-
"description": "Format output as json.",
|
|
403
|
-
"helpGroup": "GLOBAL",
|
|
404
|
-
"name": "json",
|
|
405
|
-
"allowNo": false,
|
|
406
|
-
"type": "boolean"
|
|
407
|
-
},
|
|
408
|
-
"flags-dir": {
|
|
409
|
-
"helpGroup": "GLOBAL",
|
|
410
|
-
"name": "flags-dir",
|
|
411
|
-
"summary": "Import flag values from a directory.",
|
|
412
|
-
"hasDynamicHelp": false,
|
|
413
|
-
"multiple": false,
|
|
414
|
-
"type": "option"
|
|
415
|
-
},
|
|
416
|
-
"target-org": {
|
|
417
|
-
"aliases": [
|
|
418
|
-
"targetusername",
|
|
419
|
-
"u"
|
|
420
|
-
],
|
|
421
|
-
"char": "o",
|
|
422
|
-
"deprecateAliases": true,
|
|
423
|
-
"name": "target-org",
|
|
424
|
-
"required": true,
|
|
425
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
426
|
-
"hasDynamicHelp": true,
|
|
427
|
-
"multiple": false,
|
|
428
|
-
"type": "option"
|
|
429
|
-
},
|
|
430
|
-
"no-prompt": {
|
|
431
|
-
"char": "p",
|
|
432
|
-
"name": "no-prompt",
|
|
433
|
-
"summary": "Don't prompt the user to confirm the deletion.",
|
|
434
|
-
"allowNo": false,
|
|
435
|
-
"type": "boolean"
|
|
436
|
-
}
|
|
437
|
-
},
|
|
438
|
-
"hasDynamicHelp": true,
|
|
439
|
-
"hiddenAliases": [],
|
|
440
|
-
"id": "org:delete:sandbox",
|
|
441
|
-
"pluginAlias": "@salesforce/plugin-org",
|
|
442
|
-
"pluginName": "@salesforce/plugin-org",
|
|
443
|
-
"pluginType": "core",
|
|
444
|
-
"strict": true,
|
|
445
|
-
"summary": "Delete a sandbox.",
|
|
446
|
-
"enableJsonFlag": true,
|
|
447
|
-
"isESM": true,
|
|
448
|
-
"relativePath": [
|
|
449
|
-
"lib",
|
|
450
|
-
"commands",
|
|
451
|
-
"org",
|
|
452
|
-
"delete",
|
|
453
|
-
"sandbox.js"
|
|
454
|
-
],
|
|
455
|
-
"aliasPermutations": [
|
|
456
|
-
"env:delete:sandbox",
|
|
457
|
-
"delete:env:sandbox",
|
|
458
|
-
"delete:sandbox:env",
|
|
459
|
-
"env:sandbox:delete",
|
|
460
|
-
"sandbox:env:delete",
|
|
461
|
-
"sandbox:delete:env"
|
|
462
|
-
],
|
|
463
|
-
"permutations": [
|
|
464
|
-
"org:delete:sandbox",
|
|
465
|
-
"delete:org:sandbox",
|
|
466
|
-
"delete:sandbox:org",
|
|
467
|
-
"org:sandbox:delete",
|
|
468
|
-
"sandbox:org:delete",
|
|
469
|
-
"sandbox:delete:org"
|
|
470
|
-
]
|
|
471
|
-
},
|
|
472
|
-
"org:delete:scratch": {
|
|
473
|
-
"aliases": [
|
|
474
|
-
"env:delete:scratch"
|
|
475
|
-
],
|
|
476
|
-
"args": {},
|
|
477
|
-
"deprecateAliases": true,
|
|
478
|
-
"description": "Salesforce CLI marks the org for deletion in the Dev Hub org and then deletes all local references to the org from your computer.\nSpecify a scratch org with either the username or the alias you gave the scratch org when you created it. Run \"<%= config.bin %> org list\" to view all your orgs, including scratch orgs, and their aliases.",
|
|
479
|
-
"examples": [
|
|
480
|
-
"Delete a scratch org with alias my-scratch-org:\n<%= config.bin %> <%= command.id %> --target-org my-scratch-org",
|
|
481
|
-
"Specify a username instead of an alias:\n<%= config.bin %> <%= command.id %> --target-org test-123456-abcdefg@example.com",
|
|
482
|
-
"Delete the scratch org without prompting to confirm :\n<%= config.bin %> <%= command.id %> --target-org my-scratch-org --no-prompt"
|
|
483
|
-
],
|
|
484
|
-
"flags": {
|
|
485
|
-
"json": {
|
|
486
|
-
"description": "Format output as json.",
|
|
487
|
-
"helpGroup": "GLOBAL",
|
|
488
|
-
"name": "json",
|
|
489
|
-
"allowNo": false,
|
|
490
|
-
"type": "boolean"
|
|
491
|
-
},
|
|
492
|
-
"flags-dir": {
|
|
493
|
-
"helpGroup": "GLOBAL",
|
|
494
|
-
"name": "flags-dir",
|
|
495
|
-
"summary": "Import flag values from a directory.",
|
|
496
|
-
"hasDynamicHelp": false,
|
|
497
|
-
"multiple": false,
|
|
498
|
-
"type": "option"
|
|
499
|
-
},
|
|
500
|
-
"target-org": {
|
|
501
|
-
"aliases": [
|
|
502
|
-
"targetusername",
|
|
503
|
-
"u"
|
|
504
|
-
],
|
|
505
|
-
"char": "o",
|
|
506
|
-
"deprecateAliases": true,
|
|
507
|
-
"name": "target-org",
|
|
508
|
-
"required": true,
|
|
509
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
510
|
-
"hasDynamicHelp": true,
|
|
511
|
-
"multiple": false,
|
|
512
|
-
"type": "option"
|
|
513
|
-
},
|
|
514
|
-
"no-prompt": {
|
|
515
|
-
"char": "p",
|
|
516
|
-
"name": "no-prompt",
|
|
517
|
-
"summary": "Don't prompt the user to confirm the deletion.",
|
|
518
|
-
"allowNo": false,
|
|
519
|
-
"type": "boolean"
|
|
520
|
-
}
|
|
521
|
-
},
|
|
522
|
-
"hasDynamicHelp": true,
|
|
523
|
-
"hiddenAliases": [],
|
|
524
|
-
"id": "org:delete:scratch",
|
|
525
|
-
"pluginAlias": "@salesforce/plugin-org",
|
|
526
|
-
"pluginName": "@salesforce/plugin-org",
|
|
527
|
-
"pluginType": "core",
|
|
528
|
-
"strict": true,
|
|
529
|
-
"summary": "Delete a scratch org.",
|
|
530
|
-
"enableJsonFlag": true,
|
|
531
|
-
"isESM": true,
|
|
532
|
-
"relativePath": [
|
|
533
|
-
"lib",
|
|
534
|
-
"commands",
|
|
535
|
-
"org",
|
|
536
|
-
"delete",
|
|
537
|
-
"scratch.js"
|
|
538
|
-
],
|
|
539
|
-
"aliasPermutations": [
|
|
540
|
-
"env:delete:scratch",
|
|
541
|
-
"delete:env:scratch",
|
|
542
|
-
"delete:scratch:env",
|
|
543
|
-
"env:scratch:delete",
|
|
544
|
-
"scratch:env:delete",
|
|
545
|
-
"scratch:delete:env"
|
|
546
|
-
],
|
|
547
|
-
"permutations": [
|
|
548
|
-
"org:delete:scratch",
|
|
549
|
-
"delete:org:scratch",
|
|
550
|
-
"delete:scratch:org",
|
|
551
|
-
"org:scratch:delete",
|
|
552
|
-
"scratch:org:delete",
|
|
553
|
-
"scratch:delete:org"
|
|
554
|
-
]
|
|
555
|
-
},
|
|
556
|
-
"org:disable:tracking": {
|
|
557
|
-
"aliases": [],
|
|
558
|
-
"args": {},
|
|
559
|
-
"description": "Disabling source tracking has no direct effect on the org, it affects only your local environment. Specifically, Salesforce CLI stores the setting in the org's local configuration file so that no source tracking operations are executed when working with the org.",
|
|
560
|
-
"examples": [
|
|
561
|
-
"Disable source tracking for an org with alias \"myscratch\":\n<%= config.bin %> <%= command.id %> --target-org myscratch",
|
|
562
|
-
"Disable source tracking for an org using a username:\n<%= config.bin %> <%= command.id %> --target-org you@example.com",
|
|
563
|
-
"Disable source tracking for your default org:\n<%= config.bin %> <%= command.id %>"
|
|
564
|
-
],
|
|
565
|
-
"flags": {
|
|
566
|
-
"json": {
|
|
567
|
-
"description": "Format output as json.",
|
|
568
|
-
"helpGroup": "GLOBAL",
|
|
569
|
-
"name": "json",
|
|
570
|
-
"allowNo": false,
|
|
571
|
-
"type": "boolean"
|
|
572
|
-
},
|
|
573
|
-
"flags-dir": {
|
|
574
|
-
"helpGroup": "GLOBAL",
|
|
575
|
-
"name": "flags-dir",
|
|
576
|
-
"summary": "Import flag values from a directory.",
|
|
577
|
-
"hasDynamicHelp": false,
|
|
578
|
-
"multiple": false,
|
|
579
|
-
"type": "option"
|
|
580
|
-
},
|
|
581
|
-
"target-org": {
|
|
582
|
-
"char": "o",
|
|
583
|
-
"name": "target-org",
|
|
584
|
-
"noCacheDefault": true,
|
|
585
|
-
"required": true,
|
|
586
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
587
|
-
"hasDynamicHelp": true,
|
|
588
|
-
"multiple": false,
|
|
589
|
-
"type": "option"
|
|
590
|
-
}
|
|
591
|
-
},
|
|
592
|
-
"hasDynamicHelp": true,
|
|
593
|
-
"hiddenAliases": [],
|
|
594
|
-
"id": "org:disable:tracking",
|
|
595
|
-
"pluginAlias": "@salesforce/plugin-org",
|
|
596
|
-
"pluginName": "@salesforce/plugin-org",
|
|
597
|
-
"pluginType": "core",
|
|
598
|
-
"strict": true,
|
|
599
|
-
"summary": "Prevent Salesforce CLI from tracking changes in your source files between your project and an org.",
|
|
600
|
-
"enableJsonFlag": true,
|
|
601
|
-
"isESM": true,
|
|
602
|
-
"relativePath": [
|
|
603
|
-
"lib",
|
|
604
|
-
"commands",
|
|
605
|
-
"org",
|
|
606
|
-
"disable",
|
|
607
|
-
"tracking.js"
|
|
608
|
-
],
|
|
609
|
-
"aliasPermutations": [],
|
|
610
|
-
"permutations": [
|
|
611
|
-
"org:disable:tracking",
|
|
612
|
-
"disable:org:tracking",
|
|
613
|
-
"disable:tracking:org",
|
|
614
|
-
"org:tracking:disable",
|
|
615
|
-
"tracking:org:disable",
|
|
616
|
-
"tracking:disable:org"
|
|
617
|
-
]
|
|
618
|
-
},
|
|
619
388
|
"org:create:sandbox": {
|
|
620
389
|
"aliases": [
|
|
621
390
|
"env:create:sandbox"
|
|
@@ -824,11 +593,12 @@
|
|
|
824
593
|
],
|
|
825
594
|
"args": {},
|
|
826
595
|
"deprecateAliases": true,
|
|
827
|
-
"description": "There are
|
|
596
|
+
"description": "There are four ways to create a scratch org:\n\n * Specify a definition file that contains the scratch org options.\n * Use the --edition flag to specify the one required option; this method doesn't require a defintion file.\n * Use the --snapshot flag to create a scratch org from a snapshot. Snapshots are a point-in-time copy of a scratch org; you create a snapshot with the \"sf org create snapshot\" command.\n * Use the --source-org flag to create a scratch org from an org shape. Org shapes mimic the baseline setup of a source org without the extraneous data and metadata; you create an org shape with the \"sf org create shape\" command.\n\nThe --edition, --snapshot, and --source-org flags are mutually exclusive, which means if you specify one, you can't also specify the others.\n\nFor any of the methods, you can also use these flags; if you use them with --definition-file, they override their equivalent option in the scratch org definition file:\n\n * --description\n * --name (equivalent to the \"orgName\" option)\n * --username\n * --release\n * --admin-email (equivalent to the \"adminEmail\" option)\n\nIf you want to set options such as org features or settings, you must use a definition file.\n\nYou must specify a Dev Hub to create a scratch org, either with the --target-dev-hub flag or by setting your default Dev Hub with the target-dev-hub configuration variable.",
|
|
828
597
|
"examples": [
|
|
829
598
|
"Create a Developer edition scratch org using your default Dev Hub and give the scratch org an alias:\n<%= config.bin %> <%= command.id %> --edition developer --alias my-scratch-org",
|
|
830
599
|
"Create a scratch org with a definition file. Specify the Dev Hub using its alias, set the scratch org as your default, and specify that it expires in 3 days:\n<%= config.bin %> <%= command.id %> --target-dev-hub MyHub --definition-file config/project-scratch-def.json --set-default --duration-days 3",
|
|
831
|
-
"Create a preview Enterprise edition scratch org; for use only during Salesforce release transition periods:\n<%= config.bin %> <%= command.id %> --edition enterprise --alias my-scratch-org --target-dev-hub MyHub --release preview"
|
|
600
|
+
"Create a preview Enterprise edition scratch org; for use only during Salesforce release transition periods:\n<%= config.bin %> <%= command.id %> --edition enterprise --alias my-scratch-org --target-dev-hub MyHub --release preview",
|
|
601
|
+
"Create a scratch org from a snapshot called \"NightlyBranch\"; be sure you specify the same Dev Hub org associated with the snapshot. We recommend you increase the --wait time because creating a scratch org from a snapshot can take a while:\n<%= config.bin %> <%= command.id %> --alias my-scratch-org --target-dev-hub MyHub --snapshot NightlyBranch --wait 10"
|
|
832
602
|
],
|
|
833
603
|
"flags": {
|
|
834
604
|
"json": {
|
|
@@ -900,6 +670,10 @@
|
|
|
900
670
|
"edition": {
|
|
901
671
|
"char": "e",
|
|
902
672
|
"description": "The editions that begin with \"partner-\" are available only if the Dev Hub org is a Partner Business Org.",
|
|
673
|
+
"exclusive": [
|
|
674
|
+
"snapshot",
|
|
675
|
+
"source-org"
|
|
676
|
+
],
|
|
903
677
|
"helpGroup": "Definition File Override",
|
|
904
678
|
"name": "edition",
|
|
905
679
|
"summary": "Salesforce edition of the scratch org. Overrides the value of the \"edition\" option in the definition file, if set.",
|
|
@@ -917,6 +691,20 @@
|
|
|
917
691
|
],
|
|
918
692
|
"type": "option"
|
|
919
693
|
},
|
|
694
|
+
"snapshot": {
|
|
695
|
+
"char": "s",
|
|
696
|
+
"description": "To view the names of the available snapshots for a given Dev Hub org, run the \"sf org list snapshot\" command.",
|
|
697
|
+
"exclusive": [
|
|
698
|
+
"edition",
|
|
699
|
+
"source-org"
|
|
700
|
+
],
|
|
701
|
+
"helpGroup": "Definition File Override",
|
|
702
|
+
"name": "snapshot",
|
|
703
|
+
"summary": "Name of the snapshot to use when creating this scratch org. Overrides the value of the \"snapshot\" option in the defintion file, if set.",
|
|
704
|
+
"hasDynamicHelp": false,
|
|
705
|
+
"multiple": false,
|
|
706
|
+
"type": "option"
|
|
707
|
+
},
|
|
920
708
|
"no-namespace": {
|
|
921
709
|
"char": "m",
|
|
922
710
|
"helpGroup": "Packaging",
|
|
@@ -1014,9 +802,14 @@
|
|
|
1014
802
|
"type": "option"
|
|
1015
803
|
},
|
|
1016
804
|
"source-org": {
|
|
805
|
+
"description": "To view the names of the available org shapes for a given Dev Hub org, run the \"sf org list shape\" command.",
|
|
806
|
+
"exclusive": [
|
|
807
|
+
"edition",
|
|
808
|
+
"snapshot"
|
|
809
|
+
],
|
|
1017
810
|
"helpGroup": "Definition File Override",
|
|
1018
811
|
"name": "source-org",
|
|
1019
|
-
"summary": "15-character ID of the org
|
|
812
|
+
"summary": "15-character ID of the org shape that the new scratch org is based on. Overrides the value of the \"sourceOrg\" option in the definition file, if set.",
|
|
1020
813
|
"hasDynamicHelp": false,
|
|
1021
814
|
"multiple": false,
|
|
1022
815
|
"type": "option"
|
|
@@ -1056,15 +849,18 @@
|
|
|
1056
849
|
"scratch:create:org"
|
|
1057
850
|
]
|
|
1058
851
|
},
|
|
1059
|
-
"org:
|
|
1060
|
-
"aliases": [
|
|
852
|
+
"org:delete:sandbox": {
|
|
853
|
+
"aliases": [
|
|
854
|
+
"env:delete:sandbox"
|
|
855
|
+
],
|
|
1061
856
|
"args": {},
|
|
1062
|
-
"
|
|
857
|
+
"deprecateAliases": true,
|
|
858
|
+
"description": "Salesforce CLI marks the org for deletion in the production org that contains the sandbox licenses and then deletes all local references to the org from your computer.\nSpecify a sandbox with either the username you used when you logged into it, or the alias you gave the sandbox when you created it. Run \"<%= config.bin %> org list\" to view all your orgs, including sandboxes, and their aliases.\nBoth the sandbox and the associated production org must already be authenticated with the CLI to successfully delete the sandbox.",
|
|
1063
859
|
"examples": [
|
|
1064
|
-
"
|
|
1065
|
-
"
|
|
1066
|
-
"
|
|
1067
|
-
],
|
|
860
|
+
"Delete a sandbox with alias my-sandbox:\n<%= config.bin %> <%= command.id %> --target-org my-sandbox",
|
|
861
|
+
"Specify a username instead of an alias:\n<%= config.bin %> <%= command.id %> --target-org myusername@example.com.qa",
|
|
862
|
+
"Delete the sandbox without prompting to confirm:\n<%= config.bin %> <%= command.id %> --target-org my-sandbox --no-prompt"
|
|
863
|
+
],
|
|
1068
864
|
"flags": {
|
|
1069
865
|
"json": {
|
|
1070
866
|
"description": "Format output as json.",
|
|
@@ -1082,51 +878,72 @@
|
|
|
1082
878
|
"type": "option"
|
|
1083
879
|
},
|
|
1084
880
|
"target-org": {
|
|
881
|
+
"aliases": [
|
|
882
|
+
"targetusername",
|
|
883
|
+
"u"
|
|
884
|
+
],
|
|
1085
885
|
"char": "o",
|
|
886
|
+
"deprecateAliases": true,
|
|
1086
887
|
"name": "target-org",
|
|
1087
|
-
"noCacheDefault": true,
|
|
1088
888
|
"required": true,
|
|
1089
889
|
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
1090
890
|
"hasDynamicHelp": true,
|
|
1091
891
|
"multiple": false,
|
|
1092
892
|
"type": "option"
|
|
893
|
+
},
|
|
894
|
+
"no-prompt": {
|
|
895
|
+
"char": "p",
|
|
896
|
+
"name": "no-prompt",
|
|
897
|
+
"summary": "Don't prompt the user to confirm the deletion.",
|
|
898
|
+
"allowNo": false,
|
|
899
|
+
"type": "boolean"
|
|
1093
900
|
}
|
|
1094
901
|
},
|
|
1095
902
|
"hasDynamicHelp": true,
|
|
1096
903
|
"hiddenAliases": [],
|
|
1097
|
-
"id": "org:
|
|
904
|
+
"id": "org:delete:sandbox",
|
|
1098
905
|
"pluginAlias": "@salesforce/plugin-org",
|
|
1099
906
|
"pluginName": "@salesforce/plugin-org",
|
|
1100
907
|
"pluginType": "core",
|
|
1101
908
|
"strict": true,
|
|
1102
|
-
"summary": "
|
|
909
|
+
"summary": "Delete a sandbox.",
|
|
1103
910
|
"enableJsonFlag": true,
|
|
1104
911
|
"isESM": true,
|
|
1105
912
|
"relativePath": [
|
|
1106
913
|
"lib",
|
|
1107
914
|
"commands",
|
|
1108
915
|
"org",
|
|
1109
|
-
"
|
|
1110
|
-
"
|
|
916
|
+
"delete",
|
|
917
|
+
"sandbox.js"
|
|
918
|
+
],
|
|
919
|
+
"aliasPermutations": [
|
|
920
|
+
"env:delete:sandbox",
|
|
921
|
+
"delete:env:sandbox",
|
|
922
|
+
"delete:sandbox:env",
|
|
923
|
+
"env:sandbox:delete",
|
|
924
|
+
"sandbox:env:delete",
|
|
925
|
+
"sandbox:delete:env"
|
|
1111
926
|
],
|
|
1112
|
-
"aliasPermutations": [],
|
|
1113
927
|
"permutations": [
|
|
1114
|
-
"org:
|
|
1115
|
-
"
|
|
1116
|
-
"
|
|
1117
|
-
"org:
|
|
1118
|
-
"
|
|
1119
|
-
"
|
|
928
|
+
"org:delete:sandbox",
|
|
929
|
+
"delete:org:sandbox",
|
|
930
|
+
"delete:sandbox:org",
|
|
931
|
+
"org:sandbox:delete",
|
|
932
|
+
"sandbox:org:delete",
|
|
933
|
+
"sandbox:delete:org"
|
|
1120
934
|
]
|
|
1121
935
|
},
|
|
1122
|
-
"org:
|
|
1123
|
-
"aliases": [
|
|
936
|
+
"org:delete:scratch": {
|
|
937
|
+
"aliases": [
|
|
938
|
+
"env:delete:scratch"
|
|
939
|
+
],
|
|
1124
940
|
"args": {},
|
|
1125
|
-
"
|
|
941
|
+
"deprecateAliases": true,
|
|
942
|
+
"description": "Salesforce CLI marks the org for deletion in the Dev Hub org and then deletes all local references to the org from your computer.\nSpecify a scratch org with either the username or the alias you gave the scratch org when you created it. Run \"<%= config.bin %> org list\" to view all your orgs, including scratch orgs, and their aliases.",
|
|
1126
943
|
"examples": [
|
|
1127
|
-
"
|
|
1128
|
-
"
|
|
1129
|
-
"
|
|
944
|
+
"Delete a scratch org with alias my-scratch-org:\n<%= config.bin %> <%= command.id %> --target-org my-scratch-org",
|
|
945
|
+
"Specify a username instead of an alias:\n<%= config.bin %> <%= command.id %> --target-org test-123456-abcdefg@example.com",
|
|
946
|
+
"Delete the scratch org without prompting to confirm :\n<%= config.bin %> <%= command.id %> --target-org my-scratch-org --no-prompt"
|
|
1130
947
|
],
|
|
1131
948
|
"flags": {
|
|
1132
949
|
"json": {
|
|
@@ -1145,106 +962,69 @@
|
|
|
1145
962
|
"type": "option"
|
|
1146
963
|
},
|
|
1147
964
|
"target-org": {
|
|
965
|
+
"aliases": [
|
|
966
|
+
"targetusername",
|
|
967
|
+
"u"
|
|
968
|
+
],
|
|
1148
969
|
"char": "o",
|
|
970
|
+
"deprecateAliases": true,
|
|
1149
971
|
"name": "target-org",
|
|
1150
|
-
"noCacheDefault": true,
|
|
1151
972
|
"required": true,
|
|
1152
973
|
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
1153
974
|
"hasDynamicHelp": true,
|
|
1154
975
|
"multiple": false,
|
|
1155
976
|
"type": "option"
|
|
1156
977
|
},
|
|
1157
|
-
"
|
|
1158
|
-
"
|
|
1159
|
-
"name": "
|
|
1160
|
-
"
|
|
1161
|
-
"multiple": false,
|
|
1162
|
-
"type": "option"
|
|
1163
|
-
},
|
|
1164
|
-
"name": {
|
|
1165
|
-
"char": "n",
|
|
1166
|
-
"name": "name",
|
|
1167
|
-
"required": true,
|
|
1168
|
-
"summary": "API name, also known as developer name, of the agent you want to open in the org's Agent Builder UI.",
|
|
1169
|
-
"hasDynamicHelp": false,
|
|
1170
|
-
"multiple": false,
|
|
1171
|
-
"type": "option"
|
|
1172
|
-
},
|
|
1173
|
-
"private": {
|
|
1174
|
-
"exclusive": [
|
|
1175
|
-
"url-only",
|
|
1176
|
-
"browser"
|
|
1177
|
-
],
|
|
1178
|
-
"name": "private",
|
|
1179
|
-
"summary": "Open the org in the default browser using private (incognito) mode.",
|
|
1180
|
-
"allowNo": false,
|
|
1181
|
-
"type": "boolean"
|
|
1182
|
-
},
|
|
1183
|
-
"browser": {
|
|
1184
|
-
"char": "b",
|
|
1185
|
-
"exclusive": [
|
|
1186
|
-
"url-only",
|
|
1187
|
-
"private"
|
|
1188
|
-
],
|
|
1189
|
-
"name": "browser",
|
|
1190
|
-
"summary": "Browser where the org opens.",
|
|
1191
|
-
"hasDynamicHelp": false,
|
|
1192
|
-
"multiple": false,
|
|
1193
|
-
"options": [
|
|
1194
|
-
"chrome",
|
|
1195
|
-
"edge",
|
|
1196
|
-
"firefox"
|
|
1197
|
-
],
|
|
1198
|
-
"type": "option"
|
|
1199
|
-
},
|
|
1200
|
-
"url-only": {
|
|
1201
|
-
"aliases": [
|
|
1202
|
-
"urlonly"
|
|
1203
|
-
],
|
|
1204
|
-
"char": "r",
|
|
1205
|
-
"deprecateAliases": true,
|
|
1206
|
-
"name": "url-only",
|
|
1207
|
-
"summary": "Display navigation URL, but don’t launch browser.",
|
|
978
|
+
"no-prompt": {
|
|
979
|
+
"char": "p",
|
|
980
|
+
"name": "no-prompt",
|
|
981
|
+
"summary": "Don't prompt the user to confirm the deletion.",
|
|
1208
982
|
"allowNo": false,
|
|
1209
983
|
"type": "boolean"
|
|
1210
984
|
}
|
|
1211
985
|
},
|
|
1212
986
|
"hasDynamicHelp": true,
|
|
1213
987
|
"hiddenAliases": [],
|
|
1214
|
-
"id": "org:
|
|
988
|
+
"id": "org:delete:scratch",
|
|
1215
989
|
"pluginAlias": "@salesforce/plugin-org",
|
|
1216
990
|
"pluginName": "@salesforce/plugin-org",
|
|
1217
991
|
"pluginType": "core",
|
|
1218
|
-
"state": "beta",
|
|
1219
992
|
"strict": true,
|
|
1220
|
-
"summary": "
|
|
993
|
+
"summary": "Delete a scratch org.",
|
|
1221
994
|
"enableJsonFlag": true,
|
|
1222
995
|
"isESM": true,
|
|
1223
996
|
"relativePath": [
|
|
1224
997
|
"lib",
|
|
1225
998
|
"commands",
|
|
1226
999
|
"org",
|
|
1227
|
-
"
|
|
1228
|
-
"
|
|
1000
|
+
"delete",
|
|
1001
|
+
"scratch.js"
|
|
1002
|
+
],
|
|
1003
|
+
"aliasPermutations": [
|
|
1004
|
+
"env:delete:scratch",
|
|
1005
|
+
"delete:env:scratch",
|
|
1006
|
+
"delete:scratch:env",
|
|
1007
|
+
"env:scratch:delete",
|
|
1008
|
+
"scratch:env:delete",
|
|
1009
|
+
"scratch:delete:env"
|
|
1229
1010
|
],
|
|
1230
|
-
"aliasPermutations": [],
|
|
1231
1011
|
"permutations": [
|
|
1232
|
-
"org:
|
|
1233
|
-
"
|
|
1234
|
-
"
|
|
1235
|
-
"org:
|
|
1236
|
-
"
|
|
1237
|
-
"
|
|
1012
|
+
"org:delete:scratch",
|
|
1013
|
+
"delete:org:scratch",
|
|
1014
|
+
"delete:scratch:org",
|
|
1015
|
+
"org:scratch:delete",
|
|
1016
|
+
"scratch:org:delete",
|
|
1017
|
+
"scratch:delete:org"
|
|
1238
1018
|
]
|
|
1239
1019
|
},
|
|
1240
|
-
"org:
|
|
1020
|
+
"org:enable:tracking": {
|
|
1241
1021
|
"aliases": [],
|
|
1242
1022
|
"args": {},
|
|
1243
|
-
"description": "
|
|
1023
|
+
"description": "Enabling source tracking has no direct effect on the org, it affects only your local environment. Specifically, Salesforce CLI stores the setting in the org's local configuration file so that source tracking operations are executed when working with the org.\n\nThis command throws an error if the org doesn't support tracking. Examples of orgs that don't support source tracking include Developer Edition orgs, production orgs, Partial Copy sandboxes, and Full sandboxes.",
|
|
1244
1024
|
"examples": [
|
|
1245
|
-
"
|
|
1246
|
-
"
|
|
1247
|
-
"
|
|
1025
|
+
"Enable source tracking for an org with alias \"myscratch\":\n<%= config.bin %> <%= command.id %> --target-org myscratch",
|
|
1026
|
+
"Enable source tracking for an org using a username:\n<%= config.bin %> <%= command.id %> --target-org you@example.com",
|
|
1027
|
+
"Enable source tracking for your default org:\n<%= config.bin %> <%= command.id %>"
|
|
1248
1028
|
],
|
|
1249
1029
|
"flags": {
|
|
1250
1030
|
"json": {
|
|
@@ -1262,120 +1042,52 @@
|
|
|
1262
1042
|
"multiple": false,
|
|
1263
1043
|
"type": "option"
|
|
1264
1044
|
},
|
|
1265
|
-
"no-auto-activate": {
|
|
1266
|
-
"description": "By default, a sandbox auto-activates after a refresh. Use this flag to control sandbox activation manually.",
|
|
1267
|
-
"name": "no-auto-activate",
|
|
1268
|
-
"summary": "Disable auto-activation of the sandbox after a successful refresh.",
|
|
1269
|
-
"allowNo": false,
|
|
1270
|
-
"type": "boolean"
|
|
1271
|
-
},
|
|
1272
|
-
"wait": {
|
|
1273
|
-
"char": "w",
|
|
1274
|
-
"description": "If the command continues to run after the wait period, the CLI returns control of the terminal to you and displays the \"<%= config.bin %> org resume sandbox\" command for you run to check the status of the refresh. The displayed command includes the job ID for the running sandbox refresh.",
|
|
1275
|
-
"exclusive": [
|
|
1276
|
-
"async"
|
|
1277
|
-
],
|
|
1278
|
-
"name": "wait",
|
|
1279
|
-
"summary": "Number of minutes to poll for sandbox refresh status.",
|
|
1280
|
-
"hasDynamicHelp": true,
|
|
1281
|
-
"helpValue": "<minutes>",
|
|
1282
|
-
"multiple": false,
|
|
1283
|
-
"type": "option"
|
|
1284
|
-
},
|
|
1285
|
-
"poll-interval": {
|
|
1286
|
-
"char": "i",
|
|
1287
|
-
"exclusive": [
|
|
1288
|
-
"async"
|
|
1289
|
-
],
|
|
1290
|
-
"name": "poll-interval",
|
|
1291
|
-
"summary": "Number of seconds to wait between status polling requests.",
|
|
1292
|
-
"hasDynamicHelp": true,
|
|
1293
|
-
"helpValue": "<seconds>",
|
|
1294
|
-
"multiple": false,
|
|
1295
|
-
"type": "option"
|
|
1296
|
-
},
|
|
1297
|
-
"async": {
|
|
1298
|
-
"description": "The command immediately displays the job ID and returns control of the terminal to you. This way, you can continue to use the CLI. To check the status of the sandbox refresh, run \"<%= config.bin %> org resume sandbox\".",
|
|
1299
|
-
"exclusive": [
|
|
1300
|
-
"wait",
|
|
1301
|
-
"poll-interval"
|
|
1302
|
-
],
|
|
1303
|
-
"name": "async",
|
|
1304
|
-
"summary": "Request the sandbox refresh, but don't wait for it to complete.",
|
|
1305
|
-
"allowNo": false,
|
|
1306
|
-
"type": "boolean"
|
|
1307
|
-
},
|
|
1308
|
-
"name": {
|
|
1309
|
-
"char": "n",
|
|
1310
|
-
"name": "name",
|
|
1311
|
-
"summary": "Name of the existing sandbox org in your production org that you want to refresh.",
|
|
1312
|
-
"hasDynamicHelp": false,
|
|
1313
|
-
"multiple": false,
|
|
1314
|
-
"type": "option"
|
|
1315
|
-
},
|
|
1316
|
-
"definition-file": {
|
|
1317
|
-
"char": "f",
|
|
1318
|
-
"description": "The sandbox definition file is a blueprint for the sandbox; use the file to change the sandbox configuration during a refresh. If you don't want to change the sandbox configuration when you refresh it, then simply use the --name flag to specify the sandbox and don't use this flag. See <https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_sandbox_definition.htm> for all the options you can specify in the definition file.",
|
|
1319
|
-
"name": "definition-file",
|
|
1320
|
-
"summary": "Path to a sandbox definition file for overriding its configuration when you refresh it.",
|
|
1321
|
-
"hasDynamicHelp": false,
|
|
1322
|
-
"multiple": false,
|
|
1323
|
-
"type": "option"
|
|
1324
|
-
},
|
|
1325
1045
|
"target-org": {
|
|
1326
1046
|
"char": "o",
|
|
1327
1047
|
"name": "target-org",
|
|
1328
1048
|
"noCacheDefault": true,
|
|
1329
1049
|
"required": true,
|
|
1330
|
-
"summary": "Username or alias of the
|
|
1050
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
1331
1051
|
"hasDynamicHelp": true,
|
|
1332
1052
|
"multiple": false,
|
|
1333
1053
|
"type": "option"
|
|
1334
|
-
},
|
|
1335
|
-
"no-prompt": {
|
|
1336
|
-
"name": "no-prompt",
|
|
1337
|
-
"summary": "Don't prompt for confirmation about the sandbox refresh.",
|
|
1338
|
-
"allowNo": false,
|
|
1339
|
-
"type": "boolean"
|
|
1340
1054
|
}
|
|
1341
1055
|
},
|
|
1342
1056
|
"hasDynamicHelp": true,
|
|
1343
1057
|
"hiddenAliases": [],
|
|
1344
|
-
"id": "org:
|
|
1058
|
+
"id": "org:enable:tracking",
|
|
1345
1059
|
"pluginAlias": "@salesforce/plugin-org",
|
|
1346
1060
|
"pluginName": "@salesforce/plugin-org",
|
|
1347
1061
|
"pluginType": "core",
|
|
1348
1062
|
"strict": true,
|
|
1349
|
-
"summary": "
|
|
1063
|
+
"summary": "Allow Salesforce CLI to track changes in your source files between your project and an org.",
|
|
1064
|
+
"enableJsonFlag": true,
|
|
1350
1065
|
"isESM": true,
|
|
1351
1066
|
"relativePath": [
|
|
1352
1067
|
"lib",
|
|
1353
1068
|
"commands",
|
|
1354
1069
|
"org",
|
|
1355
|
-
"
|
|
1356
|
-
"
|
|
1070
|
+
"enable",
|
|
1071
|
+
"tracking.js"
|
|
1357
1072
|
],
|
|
1358
1073
|
"aliasPermutations": [],
|
|
1359
1074
|
"permutations": [
|
|
1360
|
-
"org:
|
|
1361
|
-
"
|
|
1362
|
-
"
|
|
1363
|
-
"org:
|
|
1364
|
-
"
|
|
1365
|
-
"
|
|
1075
|
+
"org:enable:tracking",
|
|
1076
|
+
"enable:org:tracking",
|
|
1077
|
+
"enable:tracking:org",
|
|
1078
|
+
"org:tracking:enable",
|
|
1079
|
+
"tracking:org:enable",
|
|
1080
|
+
"tracking:enable:org"
|
|
1366
1081
|
]
|
|
1367
1082
|
},
|
|
1368
|
-
"org:
|
|
1369
|
-
"aliases": [
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
"args": {},
|
|
1373
|
-
"deprecateAliases": true,
|
|
1374
|
-
"description": "Sandbox creation can take a long time. If the original \"<%= config.bin %> org create sandbox\" command either times out, or you specified the --async flag, the command displays a job ID. Use this job ID to check whether the sandbox creation is complete, and if it is, the command then logs into it.\n\nYou can also use the sandbox name to check the status or the --use-most-recent flag to use the job ID of the most recent sandbox creation.",
|
|
1083
|
+
"org:disable:tracking": {
|
|
1084
|
+
"aliases": [],
|
|
1085
|
+
"args": {},
|
|
1086
|
+
"description": "Disabling source tracking has no direct effect on the org, it affects only your local environment. Specifically, Salesforce CLI stores the setting in the org's local configuration file so that no source tracking operations are executed when working with the org.",
|
|
1375
1087
|
"examples": [
|
|
1376
|
-
"
|
|
1377
|
-
"
|
|
1378
|
-
"
|
|
1088
|
+
"Disable source tracking for an org with alias \"myscratch\":\n<%= config.bin %> <%= command.id %> --target-org myscratch",
|
|
1089
|
+
"Disable source tracking for an org using a username:\n<%= config.bin %> <%= command.id %> --target-org you@example.com",
|
|
1090
|
+
"Disable source tracking for your default org:\n<%= config.bin %> <%= command.id %>"
|
|
1379
1091
|
],
|
|
1380
1092
|
"flags": {
|
|
1381
1093
|
"json": {
|
|
@@ -1393,53 +1105,12 @@
|
|
|
1393
1105
|
"multiple": false,
|
|
1394
1106
|
"type": "option"
|
|
1395
1107
|
},
|
|
1396
|
-
"wait": {
|
|
1397
|
-
"char": "w",
|
|
1398
|
-
"description": "If the command continues to run after the wait period, the CLI returns control of the terminal window to you and returns the job ID. To resume checking the sandbox creation, rerun this command.",
|
|
1399
|
-
"name": "wait",
|
|
1400
|
-
"summary": "Number of minutes to wait for the sandbox org to be ready.",
|
|
1401
|
-
"default": "0 minutes",
|
|
1402
|
-
"hasDynamicHelp": true,
|
|
1403
|
-
"helpValue": "<minutes>",
|
|
1404
|
-
"multiple": false,
|
|
1405
|
-
"type": "option"
|
|
1406
|
-
},
|
|
1407
|
-
"name": {
|
|
1408
|
-
"char": "n",
|
|
1409
|
-
"exclusive": [
|
|
1410
|
-
"job-id"
|
|
1411
|
-
],
|
|
1412
|
-
"name": "name",
|
|
1413
|
-
"summary": "Name of the sandbox org.",
|
|
1414
|
-
"hasDynamicHelp": false,
|
|
1415
|
-
"multiple": false,
|
|
1416
|
-
"type": "option"
|
|
1417
|
-
},
|
|
1418
|
-
"job-id": {
|
|
1419
|
-
"char": "i",
|
|
1420
|
-
"description": "The job ID is valid for 24 hours after you start the sandbox creation.",
|
|
1421
|
-
"exclusive": [
|
|
1422
|
-
"name"
|
|
1423
|
-
],
|
|
1424
|
-
"name": "job-id",
|
|
1425
|
-
"summary": "Job ID of the incomplete sandbox creation that you want to check the status of.",
|
|
1426
|
-
"hasDynamicHelp": false,
|
|
1427
|
-
"multiple": false,
|
|
1428
|
-
"type": "option"
|
|
1429
|
-
},
|
|
1430
|
-
"use-most-recent": {
|
|
1431
|
-
"char": "l",
|
|
1432
|
-
"name": "use-most-recent",
|
|
1433
|
-
"summary": "Use the most recent sandbox create request.",
|
|
1434
|
-
"allowNo": false,
|
|
1435
|
-
"type": "boolean"
|
|
1436
|
-
},
|
|
1437
1108
|
"target-org": {
|
|
1438
1109
|
"char": "o",
|
|
1439
|
-
"description": "When it creates the sandbox org, Salesforce copies the metadata, and optionally data, from your production org to the new sandbox org.",
|
|
1440
1110
|
"name": "target-org",
|
|
1441
1111
|
"noCacheDefault": true,
|
|
1442
|
-
"
|
|
1112
|
+
"required": true,
|
|
1113
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
1443
1114
|
"hasDynamicHelp": true,
|
|
1444
1115
|
"multiple": false,
|
|
1445
1116
|
"type": "option"
|
|
@@ -1447,113 +1118,29 @@
|
|
|
1447
1118
|
},
|
|
1448
1119
|
"hasDynamicHelp": true,
|
|
1449
1120
|
"hiddenAliases": [],
|
|
1450
|
-
"id": "org:
|
|
1451
|
-
"pluginAlias": "@salesforce/plugin-org",
|
|
1452
|
-
"pluginName": "@salesforce/plugin-org",
|
|
1453
|
-
"pluginType": "core",
|
|
1454
|
-
"strict": true,
|
|
1455
|
-
"summary": "Check the status of a sandbox creation, and log in to it if it's ready.",
|
|
1456
|
-
"isESM": true,
|
|
1457
|
-
"relativePath": [
|
|
1458
|
-
"lib",
|
|
1459
|
-
"commands",
|
|
1460
|
-
"org",
|
|
1461
|
-
"resume",
|
|
1462
|
-
"sandbox.js"
|
|
1463
|
-
],
|
|
1464
|
-
"aliasPermutations": [
|
|
1465
|
-
"env:resume:sandbox",
|
|
1466
|
-
"resume:env:sandbox",
|
|
1467
|
-
"resume:sandbox:env",
|
|
1468
|
-
"env:sandbox:resume",
|
|
1469
|
-
"sandbox:env:resume",
|
|
1470
|
-
"sandbox:resume:env"
|
|
1471
|
-
],
|
|
1472
|
-
"permutations": [
|
|
1473
|
-
"org:resume:sandbox",
|
|
1474
|
-
"resume:org:sandbox",
|
|
1475
|
-
"resume:sandbox:org",
|
|
1476
|
-
"org:sandbox:resume",
|
|
1477
|
-
"sandbox:org:resume",
|
|
1478
|
-
"sandbox:resume:org"
|
|
1479
|
-
]
|
|
1480
|
-
},
|
|
1481
|
-
"org:resume:scratch": {
|
|
1482
|
-
"aliases": [
|
|
1483
|
-
"env:resume:scratch"
|
|
1484
|
-
],
|
|
1485
|
-
"args": {},
|
|
1486
|
-
"deprecateAliases": true,
|
|
1487
|
-
"description": "When the original \"<%= config.bin %> org create scratch\" command either times out or is run with the --async flag, it displays a job ID.\n\nRun this command by either passing it a job ID or using the --use-most-recent flag to specify the most recent incomplete scratch org.",
|
|
1488
|
-
"examples": [
|
|
1489
|
-
"Resume a scratch org create with a job ID:\n<%= config.bin %> <%= command.id %> --job-id 2SR3u0000008fBDGAY",
|
|
1490
|
-
"Resume your most recent incomplete scratch org:\n<%= config.bin %> <%= command.id %> --use-most-recent"
|
|
1491
|
-
],
|
|
1492
|
-
"flags": {
|
|
1493
|
-
"json": {
|
|
1494
|
-
"description": "Format output as json.",
|
|
1495
|
-
"helpGroup": "GLOBAL",
|
|
1496
|
-
"name": "json",
|
|
1497
|
-
"allowNo": false,
|
|
1498
|
-
"type": "boolean"
|
|
1499
|
-
},
|
|
1500
|
-
"flags-dir": {
|
|
1501
|
-
"helpGroup": "GLOBAL",
|
|
1502
|
-
"name": "flags-dir",
|
|
1503
|
-
"summary": "Import flag values from a directory.",
|
|
1504
|
-
"hasDynamicHelp": false,
|
|
1505
|
-
"multiple": false,
|
|
1506
|
-
"type": "option"
|
|
1507
|
-
},
|
|
1508
|
-
"job-id": {
|
|
1509
|
-
"char": "i",
|
|
1510
|
-
"description": "The job ID is the same as the record ID of the incomplete scratch org in the ScratchOrgInfo object of the Dev Hub.\n\nThe job ID is valid for 24 hours after you start the scratch org creation.",
|
|
1511
|
-
"name": "job-id",
|
|
1512
|
-
"summary": "Job ID of the incomplete scratch org create that you want to resume.",
|
|
1513
|
-
"hasDynamicHelp": false,
|
|
1514
|
-
"multiple": false,
|
|
1515
|
-
"type": "option"
|
|
1516
|
-
},
|
|
1517
|
-
"use-most-recent": {
|
|
1518
|
-
"char": "r",
|
|
1519
|
-
"name": "use-most-recent",
|
|
1520
|
-
"summary": "Use the job ID of the most recent incomplete scratch org.",
|
|
1521
|
-
"allowNo": false,
|
|
1522
|
-
"type": "boolean"
|
|
1523
|
-
}
|
|
1524
|
-
},
|
|
1525
|
-
"hasDynamicHelp": false,
|
|
1526
|
-
"hiddenAliases": [],
|
|
1527
|
-
"id": "org:resume:scratch",
|
|
1121
|
+
"id": "org:disable:tracking",
|
|
1528
1122
|
"pluginAlias": "@salesforce/plugin-org",
|
|
1529
1123
|
"pluginName": "@salesforce/plugin-org",
|
|
1530
1124
|
"pluginType": "core",
|
|
1531
1125
|
"strict": true,
|
|
1532
|
-
"summary": "
|
|
1126
|
+
"summary": "Prevent Salesforce CLI from tracking changes in your source files between your project and an org.",
|
|
1533
1127
|
"enableJsonFlag": true,
|
|
1534
1128
|
"isESM": true,
|
|
1535
1129
|
"relativePath": [
|
|
1536
1130
|
"lib",
|
|
1537
1131
|
"commands",
|
|
1538
1132
|
"org",
|
|
1539
|
-
"
|
|
1540
|
-
"
|
|
1541
|
-
],
|
|
1542
|
-
"aliasPermutations": [
|
|
1543
|
-
"env:resume:scratch",
|
|
1544
|
-
"resume:env:scratch",
|
|
1545
|
-
"resume:scratch:env",
|
|
1546
|
-
"env:scratch:resume",
|
|
1547
|
-
"scratch:env:resume",
|
|
1548
|
-
"scratch:resume:env"
|
|
1133
|
+
"disable",
|
|
1134
|
+
"tracking.js"
|
|
1549
1135
|
],
|
|
1136
|
+
"aliasPermutations": [],
|
|
1550
1137
|
"permutations": [
|
|
1551
|
-
"org:
|
|
1552
|
-
"
|
|
1553
|
-
"
|
|
1554
|
-
"org:
|
|
1555
|
-
"
|
|
1556
|
-
"
|
|
1138
|
+
"org:disable:tracking",
|
|
1139
|
+
"disable:org:tracking",
|
|
1140
|
+
"disable:tracking:org",
|
|
1141
|
+
"org:tracking:disable",
|
|
1142
|
+
"tracking:org:disable",
|
|
1143
|
+
"tracking:disable:org"
|
|
1557
1144
|
]
|
|
1558
1145
|
},
|
|
1559
1146
|
"org:list:metadata-types": {
|
|
@@ -1814,7 +1401,444 @@
|
|
|
1814
1401
|
"metadata:org:list",
|
|
1815
1402
|
"metadata:list:org"
|
|
1816
1403
|
]
|
|
1404
|
+
},
|
|
1405
|
+
"org:open:agent": {
|
|
1406
|
+
"aliases": [],
|
|
1407
|
+
"args": {},
|
|
1408
|
+
"description": "Use the --name flag to open an agent using its API name in the Agent Builder UI of your org. To find the agent's API name, go to Setup in your org and navigate to the agent's details page.\n\nTo generate the URL but not launch it in your browser, specify --url-only.\n\nTo open Agent Builder in a specific browser, use the --browser flag. Supported browsers are \"chrome\", \"edge\", and \"firefox\". If you don't specify --browser, the org opens in your default browser.",
|
|
1409
|
+
"examples": [
|
|
1410
|
+
"Open the agent with API name Coral_Cloud_Agent in your default org using your default browser:\n$ <%= config.bin %> <%= command.id %> --name Coral_Cloud_Agent",
|
|
1411
|
+
"Open the agent in an incognito window of your default browser:\n$ <%= config.bin %> <%= command.id %> --private --name Coral_Cloud_Agent:",
|
|
1412
|
+
"Open the agent in an org with alias MyTestOrg1 using the Firefox browser:\n$ <%= config.bin %> <%= command.id %> --target-org MyTestOrg1 --browser firefox --name Coral_Cloud_Agent"
|
|
1413
|
+
],
|
|
1414
|
+
"flags": {
|
|
1415
|
+
"json": {
|
|
1416
|
+
"description": "Format output as json.",
|
|
1417
|
+
"helpGroup": "GLOBAL",
|
|
1418
|
+
"name": "json",
|
|
1419
|
+
"allowNo": false,
|
|
1420
|
+
"type": "boolean"
|
|
1421
|
+
},
|
|
1422
|
+
"flags-dir": {
|
|
1423
|
+
"helpGroup": "GLOBAL",
|
|
1424
|
+
"name": "flags-dir",
|
|
1425
|
+
"summary": "Import flag values from a directory.",
|
|
1426
|
+
"hasDynamicHelp": false,
|
|
1427
|
+
"multiple": false,
|
|
1428
|
+
"type": "option"
|
|
1429
|
+
},
|
|
1430
|
+
"target-org": {
|
|
1431
|
+
"char": "o",
|
|
1432
|
+
"name": "target-org",
|
|
1433
|
+
"noCacheDefault": true,
|
|
1434
|
+
"required": true,
|
|
1435
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
1436
|
+
"hasDynamicHelp": true,
|
|
1437
|
+
"multiple": false,
|
|
1438
|
+
"type": "option"
|
|
1439
|
+
},
|
|
1440
|
+
"api-version": {
|
|
1441
|
+
"description": "Override the api version used for api requests made by this command",
|
|
1442
|
+
"name": "api-version",
|
|
1443
|
+
"hasDynamicHelp": false,
|
|
1444
|
+
"multiple": false,
|
|
1445
|
+
"type": "option"
|
|
1446
|
+
},
|
|
1447
|
+
"name": {
|
|
1448
|
+
"char": "n",
|
|
1449
|
+
"name": "name",
|
|
1450
|
+
"required": true,
|
|
1451
|
+
"summary": "API name, also known as developer name, of the agent you want to open in the org's Agent Builder UI.",
|
|
1452
|
+
"hasDynamicHelp": false,
|
|
1453
|
+
"multiple": false,
|
|
1454
|
+
"type": "option"
|
|
1455
|
+
},
|
|
1456
|
+
"private": {
|
|
1457
|
+
"exclusive": [
|
|
1458
|
+
"url-only",
|
|
1459
|
+
"browser"
|
|
1460
|
+
],
|
|
1461
|
+
"name": "private",
|
|
1462
|
+
"summary": "Open the org in the default browser using private (incognito) mode.",
|
|
1463
|
+
"allowNo": false,
|
|
1464
|
+
"type": "boolean"
|
|
1465
|
+
},
|
|
1466
|
+
"browser": {
|
|
1467
|
+
"char": "b",
|
|
1468
|
+
"exclusive": [
|
|
1469
|
+
"url-only",
|
|
1470
|
+
"private"
|
|
1471
|
+
],
|
|
1472
|
+
"name": "browser",
|
|
1473
|
+
"summary": "Browser where the org opens.",
|
|
1474
|
+
"hasDynamicHelp": false,
|
|
1475
|
+
"multiple": false,
|
|
1476
|
+
"options": [
|
|
1477
|
+
"chrome",
|
|
1478
|
+
"edge",
|
|
1479
|
+
"firefox"
|
|
1480
|
+
],
|
|
1481
|
+
"type": "option"
|
|
1482
|
+
},
|
|
1483
|
+
"url-only": {
|
|
1484
|
+
"aliases": [
|
|
1485
|
+
"urlonly"
|
|
1486
|
+
],
|
|
1487
|
+
"char": "r",
|
|
1488
|
+
"deprecateAliases": true,
|
|
1489
|
+
"name": "url-only",
|
|
1490
|
+
"summary": "Display navigation URL, but don’t launch browser.",
|
|
1491
|
+
"allowNo": false,
|
|
1492
|
+
"type": "boolean"
|
|
1493
|
+
}
|
|
1494
|
+
},
|
|
1495
|
+
"hasDynamicHelp": true,
|
|
1496
|
+
"hiddenAliases": [],
|
|
1497
|
+
"id": "org:open:agent",
|
|
1498
|
+
"pluginAlias": "@salesforce/plugin-org",
|
|
1499
|
+
"pluginName": "@salesforce/plugin-org",
|
|
1500
|
+
"pluginType": "core",
|
|
1501
|
+
"state": "beta",
|
|
1502
|
+
"strict": true,
|
|
1503
|
+
"summary": "Open an agent in your org's Agent Builder UI in a browser.",
|
|
1504
|
+
"enableJsonFlag": true,
|
|
1505
|
+
"isESM": true,
|
|
1506
|
+
"relativePath": [
|
|
1507
|
+
"lib",
|
|
1508
|
+
"commands",
|
|
1509
|
+
"org",
|
|
1510
|
+
"open",
|
|
1511
|
+
"agent.js"
|
|
1512
|
+
],
|
|
1513
|
+
"aliasPermutations": [],
|
|
1514
|
+
"permutations": [
|
|
1515
|
+
"org:open:agent",
|
|
1516
|
+
"open:org:agent",
|
|
1517
|
+
"open:agent:org",
|
|
1518
|
+
"org:agent:open",
|
|
1519
|
+
"agent:org:open",
|
|
1520
|
+
"agent:open:org"
|
|
1521
|
+
]
|
|
1522
|
+
},
|
|
1523
|
+
"org:refresh:sandbox": {
|
|
1524
|
+
"aliases": [],
|
|
1525
|
+
"args": {},
|
|
1526
|
+
"description": "Refreshing a sandbox copies the metadata, and optionally data, from your source org to the refreshed sandbox org. You can optionally specify a definition file if you want to change the configuration of the refreshed sandbox, such as its license type or template ID.\n\nYou're not allowed to change the sandbox name when you refresh it with this command. If you want to change the sandbox name, first delete it with the \"org delete sandbox\" command. And then recreate it with the \"org create sandbox\" command and give it a new name.",
|
|
1527
|
+
"examples": [
|
|
1528
|
+
"Refresh the sandbox named \"devSbx1\". The production org that contains the sandbox license has the alias \"prodOrg\".\n<%= config.bin %> <%= command.id %> --name devSbx1 --target-org prodOrg",
|
|
1529
|
+
"Refresh the sandbox named \"devSbx2\", and override the configuration of the refreshed sandbox with the properties in the specified defintion file. The default target org is the production org, so you don't need to specify the `--target-org` flag in this case.\n<%= config.bin %> <%= command.id %> --name devSbx2 --definition-file devSbx2-config.json",
|
|
1530
|
+
"Refresh the sandbox using the name defined in the definition file. The production org that contains the sandbox license has the alias \"prodOrg\".\n<%= config.bin %> <%= command.id %> --definition-file devSbx3-config.json --target-org prodOrg"
|
|
1531
|
+
],
|
|
1532
|
+
"flags": {
|
|
1533
|
+
"json": {
|
|
1534
|
+
"description": "Format output as json.",
|
|
1535
|
+
"helpGroup": "GLOBAL",
|
|
1536
|
+
"name": "json",
|
|
1537
|
+
"allowNo": false,
|
|
1538
|
+
"type": "boolean"
|
|
1539
|
+
},
|
|
1540
|
+
"flags-dir": {
|
|
1541
|
+
"helpGroup": "GLOBAL",
|
|
1542
|
+
"name": "flags-dir",
|
|
1543
|
+
"summary": "Import flag values from a directory.",
|
|
1544
|
+
"hasDynamicHelp": false,
|
|
1545
|
+
"multiple": false,
|
|
1546
|
+
"type": "option"
|
|
1547
|
+
},
|
|
1548
|
+
"no-auto-activate": {
|
|
1549
|
+
"description": "By default, a sandbox auto-activates after a refresh. Use this flag to control sandbox activation manually.",
|
|
1550
|
+
"name": "no-auto-activate",
|
|
1551
|
+
"summary": "Disable auto-activation of the sandbox after a successful refresh.",
|
|
1552
|
+
"allowNo": false,
|
|
1553
|
+
"type": "boolean"
|
|
1554
|
+
},
|
|
1555
|
+
"wait": {
|
|
1556
|
+
"char": "w",
|
|
1557
|
+
"description": "If the command continues to run after the wait period, the CLI returns control of the terminal to you and displays the \"<%= config.bin %> org resume sandbox\" command for you run to check the status of the refresh. The displayed command includes the job ID for the running sandbox refresh.",
|
|
1558
|
+
"exclusive": [
|
|
1559
|
+
"async"
|
|
1560
|
+
],
|
|
1561
|
+
"name": "wait",
|
|
1562
|
+
"summary": "Number of minutes to poll for sandbox refresh status.",
|
|
1563
|
+
"hasDynamicHelp": true,
|
|
1564
|
+
"helpValue": "<minutes>",
|
|
1565
|
+
"multiple": false,
|
|
1566
|
+
"type": "option"
|
|
1567
|
+
},
|
|
1568
|
+
"poll-interval": {
|
|
1569
|
+
"char": "i",
|
|
1570
|
+
"exclusive": [
|
|
1571
|
+
"async"
|
|
1572
|
+
],
|
|
1573
|
+
"name": "poll-interval",
|
|
1574
|
+
"summary": "Number of seconds to wait between status polling requests.",
|
|
1575
|
+
"hasDynamicHelp": true,
|
|
1576
|
+
"helpValue": "<seconds>",
|
|
1577
|
+
"multiple": false,
|
|
1578
|
+
"type": "option"
|
|
1579
|
+
},
|
|
1580
|
+
"async": {
|
|
1581
|
+
"description": "The command immediately displays the job ID and returns control of the terminal to you. This way, you can continue to use the CLI. To check the status of the sandbox refresh, run \"<%= config.bin %> org resume sandbox\".",
|
|
1582
|
+
"exclusive": [
|
|
1583
|
+
"wait",
|
|
1584
|
+
"poll-interval"
|
|
1585
|
+
],
|
|
1586
|
+
"name": "async",
|
|
1587
|
+
"summary": "Request the sandbox refresh, but don't wait for it to complete.",
|
|
1588
|
+
"allowNo": false,
|
|
1589
|
+
"type": "boolean"
|
|
1590
|
+
},
|
|
1591
|
+
"name": {
|
|
1592
|
+
"char": "n",
|
|
1593
|
+
"name": "name",
|
|
1594
|
+
"summary": "Name of the existing sandbox org in your production org that you want to refresh.",
|
|
1595
|
+
"hasDynamicHelp": false,
|
|
1596
|
+
"multiple": false,
|
|
1597
|
+
"type": "option"
|
|
1598
|
+
},
|
|
1599
|
+
"definition-file": {
|
|
1600
|
+
"char": "f",
|
|
1601
|
+
"description": "The sandbox definition file is a blueprint for the sandbox; use the file to change the sandbox configuration during a refresh. If you don't want to change the sandbox configuration when you refresh it, then simply use the --name flag to specify the sandbox and don't use this flag. See <https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_sandbox_definition.htm> for all the options you can specify in the definition file.",
|
|
1602
|
+
"name": "definition-file",
|
|
1603
|
+
"summary": "Path to a sandbox definition file for overriding its configuration when you refresh it.",
|
|
1604
|
+
"hasDynamicHelp": false,
|
|
1605
|
+
"multiple": false,
|
|
1606
|
+
"type": "option"
|
|
1607
|
+
},
|
|
1608
|
+
"target-org": {
|
|
1609
|
+
"char": "o",
|
|
1610
|
+
"name": "target-org",
|
|
1611
|
+
"noCacheDefault": true,
|
|
1612
|
+
"required": true,
|
|
1613
|
+
"summary": "Username or alias of the production org that contains the sandbox license.",
|
|
1614
|
+
"hasDynamicHelp": true,
|
|
1615
|
+
"multiple": false,
|
|
1616
|
+
"type": "option"
|
|
1617
|
+
},
|
|
1618
|
+
"no-prompt": {
|
|
1619
|
+
"name": "no-prompt",
|
|
1620
|
+
"summary": "Don't prompt for confirmation about the sandbox refresh.",
|
|
1621
|
+
"allowNo": false,
|
|
1622
|
+
"type": "boolean"
|
|
1623
|
+
}
|
|
1624
|
+
},
|
|
1625
|
+
"hasDynamicHelp": true,
|
|
1626
|
+
"hiddenAliases": [],
|
|
1627
|
+
"id": "org:refresh:sandbox",
|
|
1628
|
+
"pluginAlias": "@salesforce/plugin-org",
|
|
1629
|
+
"pluginName": "@salesforce/plugin-org",
|
|
1630
|
+
"pluginType": "core",
|
|
1631
|
+
"strict": true,
|
|
1632
|
+
"summary": "Refresh a sandbox org using the sandbox name.",
|
|
1633
|
+
"isESM": true,
|
|
1634
|
+
"relativePath": [
|
|
1635
|
+
"lib",
|
|
1636
|
+
"commands",
|
|
1637
|
+
"org",
|
|
1638
|
+
"refresh",
|
|
1639
|
+
"sandbox.js"
|
|
1640
|
+
],
|
|
1641
|
+
"aliasPermutations": [],
|
|
1642
|
+
"permutations": [
|
|
1643
|
+
"org:refresh:sandbox",
|
|
1644
|
+
"refresh:org:sandbox",
|
|
1645
|
+
"refresh:sandbox:org",
|
|
1646
|
+
"org:sandbox:refresh",
|
|
1647
|
+
"sandbox:org:refresh",
|
|
1648
|
+
"sandbox:refresh:org"
|
|
1649
|
+
]
|
|
1650
|
+
},
|
|
1651
|
+
"org:resume:sandbox": {
|
|
1652
|
+
"aliases": [
|
|
1653
|
+
"env:resume:sandbox"
|
|
1654
|
+
],
|
|
1655
|
+
"args": {},
|
|
1656
|
+
"deprecateAliases": true,
|
|
1657
|
+
"description": "Sandbox creation can take a long time. If the original \"<%= config.bin %> org create sandbox\" command either times out, or you specified the --async flag, the command displays a job ID. Use this job ID to check whether the sandbox creation is complete, and if it is, the command then logs into it.\n\nYou can also use the sandbox name to check the status or the --use-most-recent flag to use the job ID of the most recent sandbox creation.",
|
|
1658
|
+
"examples": [
|
|
1659
|
+
"Check the status of a sandbox creation using its name and specify a production org with alias \"prodOrg\":\n<%= config.bin %> <%= command.id %> --name mysandbox --target-org prodOrg",
|
|
1660
|
+
"Check the status using the job ID:\n<%= config.bin %> <%= command.id %> --job-id 0GRxxxxxxxx",
|
|
1661
|
+
"Check the status of the most recent sandbox create request:\n<%= config.bin %> <%= command.id %> --use-most-recent"
|
|
1662
|
+
],
|
|
1663
|
+
"flags": {
|
|
1664
|
+
"json": {
|
|
1665
|
+
"description": "Format output as json.",
|
|
1666
|
+
"helpGroup": "GLOBAL",
|
|
1667
|
+
"name": "json",
|
|
1668
|
+
"allowNo": false,
|
|
1669
|
+
"type": "boolean"
|
|
1670
|
+
},
|
|
1671
|
+
"flags-dir": {
|
|
1672
|
+
"helpGroup": "GLOBAL",
|
|
1673
|
+
"name": "flags-dir",
|
|
1674
|
+
"summary": "Import flag values from a directory.",
|
|
1675
|
+
"hasDynamicHelp": false,
|
|
1676
|
+
"multiple": false,
|
|
1677
|
+
"type": "option"
|
|
1678
|
+
},
|
|
1679
|
+
"wait": {
|
|
1680
|
+
"char": "w",
|
|
1681
|
+
"description": "If the command continues to run after the wait period, the CLI returns control of the terminal window to you and returns the job ID. To resume checking the sandbox creation, rerun this command.",
|
|
1682
|
+
"name": "wait",
|
|
1683
|
+
"summary": "Number of minutes to wait for the sandbox org to be ready.",
|
|
1684
|
+
"default": "0 minutes",
|
|
1685
|
+
"hasDynamicHelp": true,
|
|
1686
|
+
"helpValue": "<minutes>",
|
|
1687
|
+
"multiple": false,
|
|
1688
|
+
"type": "option"
|
|
1689
|
+
},
|
|
1690
|
+
"name": {
|
|
1691
|
+
"char": "n",
|
|
1692
|
+
"exclusive": [
|
|
1693
|
+
"job-id"
|
|
1694
|
+
],
|
|
1695
|
+
"name": "name",
|
|
1696
|
+
"summary": "Name of the sandbox org.",
|
|
1697
|
+
"hasDynamicHelp": false,
|
|
1698
|
+
"multiple": false,
|
|
1699
|
+
"type": "option"
|
|
1700
|
+
},
|
|
1701
|
+
"job-id": {
|
|
1702
|
+
"char": "i",
|
|
1703
|
+
"description": "The job ID is valid for 24 hours after you start the sandbox creation.",
|
|
1704
|
+
"exclusive": [
|
|
1705
|
+
"name"
|
|
1706
|
+
],
|
|
1707
|
+
"name": "job-id",
|
|
1708
|
+
"summary": "Job ID of the incomplete sandbox creation that you want to check the status of.",
|
|
1709
|
+
"hasDynamicHelp": false,
|
|
1710
|
+
"multiple": false,
|
|
1711
|
+
"type": "option"
|
|
1712
|
+
},
|
|
1713
|
+
"use-most-recent": {
|
|
1714
|
+
"char": "l",
|
|
1715
|
+
"name": "use-most-recent",
|
|
1716
|
+
"summary": "Use the most recent sandbox create request.",
|
|
1717
|
+
"allowNo": false,
|
|
1718
|
+
"type": "boolean"
|
|
1719
|
+
},
|
|
1720
|
+
"target-org": {
|
|
1721
|
+
"char": "o",
|
|
1722
|
+
"description": "When it creates the sandbox org, Salesforce copies the metadata, and optionally data, from your production org to the new sandbox org.",
|
|
1723
|
+
"name": "target-org",
|
|
1724
|
+
"noCacheDefault": true,
|
|
1725
|
+
"summary": "Username or alias of the production org that contains the sandbox license.",
|
|
1726
|
+
"hasDynamicHelp": true,
|
|
1727
|
+
"multiple": false,
|
|
1728
|
+
"type": "option"
|
|
1729
|
+
}
|
|
1730
|
+
},
|
|
1731
|
+
"hasDynamicHelp": true,
|
|
1732
|
+
"hiddenAliases": [],
|
|
1733
|
+
"id": "org:resume:sandbox",
|
|
1734
|
+
"pluginAlias": "@salesforce/plugin-org",
|
|
1735
|
+
"pluginName": "@salesforce/plugin-org",
|
|
1736
|
+
"pluginType": "core",
|
|
1737
|
+
"strict": true,
|
|
1738
|
+
"summary": "Check the status of a sandbox creation, and log in to it if it's ready.",
|
|
1739
|
+
"isESM": true,
|
|
1740
|
+
"relativePath": [
|
|
1741
|
+
"lib",
|
|
1742
|
+
"commands",
|
|
1743
|
+
"org",
|
|
1744
|
+
"resume",
|
|
1745
|
+
"sandbox.js"
|
|
1746
|
+
],
|
|
1747
|
+
"aliasPermutations": [
|
|
1748
|
+
"env:resume:sandbox",
|
|
1749
|
+
"resume:env:sandbox",
|
|
1750
|
+
"resume:sandbox:env",
|
|
1751
|
+
"env:sandbox:resume",
|
|
1752
|
+
"sandbox:env:resume",
|
|
1753
|
+
"sandbox:resume:env"
|
|
1754
|
+
],
|
|
1755
|
+
"permutations": [
|
|
1756
|
+
"org:resume:sandbox",
|
|
1757
|
+
"resume:org:sandbox",
|
|
1758
|
+
"resume:sandbox:org",
|
|
1759
|
+
"org:sandbox:resume",
|
|
1760
|
+
"sandbox:org:resume",
|
|
1761
|
+
"sandbox:resume:org"
|
|
1762
|
+
]
|
|
1763
|
+
},
|
|
1764
|
+
"org:resume:scratch": {
|
|
1765
|
+
"aliases": [
|
|
1766
|
+
"env:resume:scratch"
|
|
1767
|
+
],
|
|
1768
|
+
"args": {},
|
|
1769
|
+
"deprecateAliases": true,
|
|
1770
|
+
"description": "When the original \"<%= config.bin %> org create scratch\" command either times out or is run with the --async flag, it displays a job ID.\n\nRun this command by either passing it a job ID or using the --use-most-recent flag to specify the most recent incomplete scratch org.",
|
|
1771
|
+
"examples": [
|
|
1772
|
+
"Resume a scratch org create with a job ID:\n<%= config.bin %> <%= command.id %> --job-id 2SR3u0000008fBDGAY",
|
|
1773
|
+
"Resume your most recent incomplete scratch org:\n<%= config.bin %> <%= command.id %> --use-most-recent"
|
|
1774
|
+
],
|
|
1775
|
+
"flags": {
|
|
1776
|
+
"json": {
|
|
1777
|
+
"description": "Format output as json.",
|
|
1778
|
+
"helpGroup": "GLOBAL",
|
|
1779
|
+
"name": "json",
|
|
1780
|
+
"allowNo": false,
|
|
1781
|
+
"type": "boolean"
|
|
1782
|
+
},
|
|
1783
|
+
"flags-dir": {
|
|
1784
|
+
"helpGroup": "GLOBAL",
|
|
1785
|
+
"name": "flags-dir",
|
|
1786
|
+
"summary": "Import flag values from a directory.",
|
|
1787
|
+
"hasDynamicHelp": false,
|
|
1788
|
+
"multiple": false,
|
|
1789
|
+
"type": "option"
|
|
1790
|
+
},
|
|
1791
|
+
"job-id": {
|
|
1792
|
+
"char": "i",
|
|
1793
|
+
"description": "The job ID is the same as the record ID of the incomplete scratch org in the ScratchOrgInfo object of the Dev Hub.\n\nThe job ID is valid for 24 hours after you start the scratch org creation.",
|
|
1794
|
+
"name": "job-id",
|
|
1795
|
+
"summary": "Job ID of the incomplete scratch org create that you want to resume.",
|
|
1796
|
+
"hasDynamicHelp": false,
|
|
1797
|
+
"multiple": false,
|
|
1798
|
+
"type": "option"
|
|
1799
|
+
},
|
|
1800
|
+
"use-most-recent": {
|
|
1801
|
+
"char": "r",
|
|
1802
|
+
"name": "use-most-recent",
|
|
1803
|
+
"summary": "Use the job ID of the most recent incomplete scratch org.",
|
|
1804
|
+
"allowNo": false,
|
|
1805
|
+
"type": "boolean"
|
|
1806
|
+
}
|
|
1807
|
+
},
|
|
1808
|
+
"hasDynamicHelp": false,
|
|
1809
|
+
"hiddenAliases": [],
|
|
1810
|
+
"id": "org:resume:scratch",
|
|
1811
|
+
"pluginAlias": "@salesforce/plugin-org",
|
|
1812
|
+
"pluginName": "@salesforce/plugin-org",
|
|
1813
|
+
"pluginType": "core",
|
|
1814
|
+
"strict": true,
|
|
1815
|
+
"summary": "Resume the creation of an incomplete scratch org.",
|
|
1816
|
+
"enableJsonFlag": true,
|
|
1817
|
+
"isESM": true,
|
|
1818
|
+
"relativePath": [
|
|
1819
|
+
"lib",
|
|
1820
|
+
"commands",
|
|
1821
|
+
"org",
|
|
1822
|
+
"resume",
|
|
1823
|
+
"scratch.js"
|
|
1824
|
+
],
|
|
1825
|
+
"aliasPermutations": [
|
|
1826
|
+
"env:resume:scratch",
|
|
1827
|
+
"resume:env:scratch",
|
|
1828
|
+
"resume:scratch:env",
|
|
1829
|
+
"env:scratch:resume",
|
|
1830
|
+
"scratch:env:resume",
|
|
1831
|
+
"scratch:resume:env"
|
|
1832
|
+
],
|
|
1833
|
+
"permutations": [
|
|
1834
|
+
"org:resume:scratch",
|
|
1835
|
+
"resume:org:scratch",
|
|
1836
|
+
"resume:scratch:org",
|
|
1837
|
+
"org:scratch:resume",
|
|
1838
|
+
"scratch:org:resume",
|
|
1839
|
+
"scratch:resume:org"
|
|
1840
|
+
]
|
|
1817
1841
|
}
|
|
1818
1842
|
},
|
|
1819
|
-
"version": "5.
|
|
1843
|
+
"version": "5.4.0"
|
|
1820
1844
|
}
|