@salesforce/plugin-deploy-retrieve 3.23.15 → 3.24.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.
@@ -405,18 +405,16 @@
405
405
  "source:convert:project"
406
406
  ]
407
407
  },
408
- "project:delete:source": {
408
+ "project:deploy:cancel": {
409
409
  "aliases": [
410
- "force:source:delete"
410
+ "deploy:metadata:cancel"
411
411
  ],
412
412
  "args": {},
413
413
  "deprecateAliases": true,
414
- "description": "Use this command to delete components from orgs that don’t have source tracking. To remove deleted items from orgs that have source tracking enabled, \"<%= config.bin %> project deploy start\".\n\nWhen you run this command, both the local source file and the metadata component in the org are deleted.\n\nTo delete multiple metadata components, either set multiple --metadata <name> flags or a single --metadata flag with multiple names separated by spaces. Enclose names that contain spaces in one set of double quotes. The same syntax applies to --source-dir.",
414
+ "description": "Use this command to cancel a deploy operation that hasn't yet completed in the org. Deploy operations include standard deploys, quick deploys, deploy validations, and deploy cancellations.\n\nRun this command by either passing it a job ID or specifying the --use-most-recent flag to use the job ID of the most recent deploy operation.",
415
415
  "examples": [
416
- "Delete all local Apex source files and all Apex classes from the org with alias \"my-scratch\":\n<%= config.bin %> <%= command.id %> --metadata ApexClass --target-org my-scratch",
417
- "Delete a specific Apex class and a Profile that has a space in it from your default org; don't prompt for confirmation:\n<%= config.bin %> <%= command.id %> --metadata ApexClass:MyFabulousApexClass --metadata \"Profile: My Profile\" --no-prompt",
418
- "Run the tests that aren’t in any managed packages as part of the deletion; if the delete succeeds, and the org has source-tracking enabled, update the source tracking information:\n<%= config.bin %> <%= command.id %> --metadata ApexClass --test-level RunLocalTests --track-source",
419
- "Delete the Apex source files in a directory and the corresponding components from your default org:\n<%= config.bin %> <%= command.id %> --source-dir force-app/main/default/classes"
416
+ "Cancel a deploy operation using a job ID:\n<%= config.bin %> <%= command.id %> --job-id 0Af0x000017yLUFCA2",
417
+ "Cancel the most recent deploy operation:\n<%= config.bin %> <%= command.id %> --use-most-recent"
420
418
  ],
421
419
  "flags": {
422
420
  "json": {
@@ -434,206 +432,103 @@
434
432
  "multiple": false,
435
433
  "type": "option"
436
434
  },
437
- "api-version": {
438
- "aliases": [
439
- "apiversion"
440
- ],
441
- "deprecateAliases": true,
442
- "description": "Override the api version used for api requests made by this command",
443
- "name": "api-version",
444
- "hasDynamicHelp": false,
445
- "multiple": false,
446
- "type": "option"
447
- },
448
- "loglevel": {
449
- "deprecated": {
450
- "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."
451
- },
452
- "hidden": true,
453
- "name": "loglevel",
454
- "hasDynamicHelp": false,
455
- "multiple": false,
456
- "type": "option"
457
- },
458
435
  "target-org": {
459
- "aliases": [
460
- "targetusername",
461
- "u"
462
- ],
463
436
  "char": "o",
464
- "deprecateAliases": true,
465
437
  "name": "target-org",
466
438
  "noCacheDefault": true,
467
- "required": true,
468
- "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
439
+ "summary": "Username or alias of the target org.",
469
440
  "hasDynamicHelp": true,
470
441
  "multiple": false,
471
442
  "type": "option"
472
443
  },
473
- "check-only": {
474
- "aliases": [
475
- "checkonly"
444
+ "async": {
445
+ "description": "The command immediately returns the control of the terminal to you. This way, you can continue to use the CLI. To resume watching the cancellation, run \"<%= config.bin %> project deploy resume\". To check the status of the cancellation, run \"<%= config.bin %> project deploy report\".",
446
+ "exclusive": [
447
+ "wait"
476
448
  ],
477
- "char": "c",
478
- "deprecateAliases": true,
479
- "description": "IMPORTANT: Where possible, we changed noninclusive terms to align with our company value of Equality. We maintained certain terms to avoid any effect on customer implementations.\n\nValidates the deleted metadata and runs all Apex tests, but prevents the deletion from being saved to the org.\n\nIf you change a field type from Master-Detail to Lookup or vice versa, that change isn’t supported when using the --check-only flag to test a deletion (validation). This kind of change isn’t supported for test deletions to avoid the risk of data loss or corruption. If a change that isn’t supported for test deletions is included in a deletion package, the test deletion fails and issues an error.\n\nIf your deletion package changes a field type from Master-Detail to Lookup or vice versa, you can still validate the changes prior to deploying to Production by performing a full deletion to another test Sandbox. A full deletion includes a validation of the changes as part of the deletion process.\n\nNote: A Metadata API deletion that includes Master-Detail relationships deletes all detail records in the Recycle Bin in the following cases.\n\n 1. For a deletion with a new Master-Detail field, soft delete (send to the Recycle Bin) all detail records before proceeding to delete the Master-Detail field, or the deletion fails. During the deletion, detail records are permanently deleted from the Recycle Bin and cannot be recovered.\n\n 2. For a deletion that converts a Lookup field relationship to a Master-Detail relationship, detail records must reference a master record or be soft-deleted (sent to the Recycle Bin) for the deletion to succeed. However, a successful deletion permanently deletes any detail records in the Recycle Bin.",
480
- "name": "check-only",
481
- "summary": "Validate delete command but don't delete anything from the org or the local project.",
449
+ "name": "async",
450
+ "summary": "Run the command asynchronously.",
482
451
  "allowNo": false,
483
452
  "type": "boolean"
484
453
  },
485
- "wait": {
486
- "char": "w",
487
- "description": "If the command continues to run after the wait period, the CLI returns control of the terminal window to you.",
488
- "name": "wait",
489
- "summary": "Number of minutes to wait for the command to finish.",
490
- "hasDynamicHelp": true,
491
- "multiple": false,
492
- "type": "option"
493
- },
494
- "tests": {
495
- "description": "If a test name contains a space, enclose it in double quotes.\nFor multiple test names, use one of the following formats:\n\n- Repeat the flag for multiple test names: --tests Test1 --tests Test2 --tests \"Test With Space\"\n- Separate the test names with spaces: --tests Test1 Test2 \"Test With Space\"",
496
- "helpGroup": "Test",
497
- "name": "tests",
498
- "summary": "Apex tests to run when --test-level is RunSpecifiedTests.",
499
- "hasDynamicHelp": false,
500
- "multiple": true,
501
- "type": "option"
502
- },
503
- "test-level": {
504
- "aliases": [
505
- "testlevel"
506
- ],
507
- "char": "l",
508
- "deprecateAliases": true,
509
- "description": "Valid values are:\n\n- NoTestRun — No tests are run. This test level applies only to deployments to development environments, such as sandbox, Developer Edition, or trial orgs. This test level is the default for development environments.\n\n- RunSpecifiedTests — Runs only the tests that you specify with the --tests flag. Code coverage requirements differ from the default coverage requirements when using this test level. Executed tests must comprise a minimum of 75% code coverage for each class and trigger in the deployment package. This coverage is computed for each class and trigger individually and is different than the overall coverage percentage.\n\n- RunLocalTests — All tests in your org are run, except the ones that originate from installed managed and unlocked packages. This test level is the default for production deployments that include Apex classes or triggers.\n\n- RunAllTestsInOrg — All tests in your org are run, including tests of managed packages.\n\nIf you don’t specify a test level, the default behavior depends on the contents of your deployment package and target org. For more information, see “Running Tests in a Deployment” in the Metadata API Developer Guide.",
510
- "helpGroup": "Test",
511
- "name": "test-level",
512
- "summary": "Deployment Apex testing level.",
454
+ "job-id": {
455
+ "char": "i",
456
+ "description": "These commands return a job ID if they time out or you specified the --async flag:\n\n- <%= config.bin %> project deploy start\n- <%= config.bin %> project deploy validate\n- <%= config.bin %> project deploy quick\n- <%= config.bin %> project deploy cancel\n\nThe job ID is valid for 10 days from when you started the deploy operation.",
457
+ "name": "job-id",
458
+ "summary": "Job ID of the deploy operation you want to cancel.",
513
459
  "hasDynamicHelp": false,
514
460
  "multiple": false,
515
- "options": [
516
- "NoTestRun",
517
- "RunSpecifiedTests",
518
- "RunLocalTests",
519
- "RunAllTestsInOrg"
520
- ],
521
461
  "type": "option"
522
462
  },
523
- "no-prompt": {
524
- "aliases": [
525
- "noprompt"
526
- ],
463
+ "use-most-recent": {
527
464
  "char": "r",
528
- "deprecateAliases": true,
529
- "name": "no-prompt",
530
- "summary": "Don't prompt for delete confirmation.",
465
+ "description": "For performance reasons, this flag uses job IDs for deploy operations that started only in the past 3 days or less. If your most recent deploy operations was more than 3 days ago, this flag won't find a job ID.",
466
+ "name": "use-most-recent",
467
+ "summary": "Use the job ID of the most recent deploy operation.",
531
468
  "allowNo": false,
532
469
  "type": "boolean"
533
470
  },
534
- "metadata": {
535
- "char": "m",
536
- "description": "If you specify this flag, don’t specify --source-dir.",
537
- "name": "metadata",
538
- "summary": "Metadata components to delete.",
539
- "delimiter": ",",
540
- "hasDynamicHelp": false,
541
- "multiple": true,
542
- "type": "option"
543
- },
544
- "source-dir": {
545
- "aliases": [
546
- "sourcepath"
547
- ],
548
- "char": "p",
549
- "deprecateAliases": true,
550
- "description": "The supplied paths can be a single file (in which case the operation is applied to only one file) or a folder (in which case the operation is applied to all metadata types in the directory and its sub-directories).\n\nIf you specify this flag, don’t specify --metadata.",
551
- "name": "source-dir",
552
- "summary": "Source file paths to delete.",
553
- "delimiter": ",",
554
- "hasDynamicHelp": false,
555
- "multiple": true,
556
- "type": "option"
557
- },
558
- "track-source": {
559
- "aliases": [
560
- "tracksource"
561
- ],
562
- "char": "t",
563
- "deprecateAliases": true,
471
+ "wait": {
472
+ "char": "w",
473
+ "description": "If the command continues to run after the wait period, the CLI returns control of the terminal window to you. To resume watching the cancellation, run \"<%= config.bin %> project deploy resume\". To check the status of the cancellation, run \"<%= config.bin %> project deploy report\".",
564
474
  "exclusive": [
565
- "check-only"
566
- ],
567
- "name": "track-source",
568
- "summary": "If the delete succeeds, update the source tracking information.",
569
- "allowNo": false,
570
- "type": "boolean"
571
- },
572
- "force-overwrite": {
573
- "aliases": [
574
- "forceoverwrite"
575
- ],
576
- "char": "f",
577
- "dependsOn": [
578
- "track-source"
475
+ "async"
579
476
  ],
580
- "deprecateAliases": true,
581
- "name": "force-overwrite",
582
- "summary": "Ignore conflict warnings and overwrite changes to the org.",
583
- "allowNo": false,
584
- "type": "boolean"
585
- },
586
- "verbose": {
587
- "name": "verbose",
588
- "summary": "Verbose output of the delete result.",
589
- "allowNo": false,
590
- "type": "boolean"
477
+ "name": "wait",
478
+ "summary": "Number of minutes to wait for the command to complete and display results.",
479
+ "hasDynamicHelp": true,
480
+ "helpValue": "<minutes>",
481
+ "multiple": false,
482
+ "type": "option"
591
483
  }
592
484
  },
593
485
  "hasDynamicHelp": true,
594
486
  "hiddenAliases": [],
595
- "id": "project:delete:source",
487
+ "id": "project:deploy:cancel",
596
488
  "pluginAlias": "@salesforce/plugin-deploy-retrieve",
597
489
  "pluginName": "@salesforce/plugin-deploy-retrieve",
598
490
  "pluginType": "core",
599
491
  "strict": true,
600
- "summary": "Delete source from your project and from a non-source-tracked org.",
492
+ "summary": "Cancel a deploy operation.",
601
493
  "enableJsonFlag": true,
602
- "requiresProject": true,
603
494
  "isESM": true,
604
495
  "relativePath": [
605
496
  "lib",
606
497
  "commands",
607
498
  "project",
608
- "delete",
609
- "source.js"
499
+ "deploy",
500
+ "cancel.js"
610
501
  ],
611
502
  "aliasPermutations": [
612
- "force:source:delete",
613
- "source:force:delete",
614
- "source:delete:force",
615
- "force:delete:source",
616
- "delete:force:source",
617
- "delete:source:force"
503
+ "deploy:metadata:cancel",
504
+ "metadata:deploy:cancel",
505
+ "metadata:cancel:deploy",
506
+ "deploy:cancel:metadata",
507
+ "cancel:deploy:metadata",
508
+ "cancel:metadata:deploy"
618
509
  ],
619
510
  "permutations": [
620
- "project:delete:source",
621
- "delete:project:source",
622
- "delete:source:project",
623
- "project:source:delete",
624
- "source:project:delete",
625
- "source:delete:project"
511
+ "project:deploy:cancel",
512
+ "deploy:project:cancel",
513
+ "deploy:cancel:project",
514
+ "project:cancel:deploy",
515
+ "cancel:project:deploy",
516
+ "cancel:deploy:project"
626
517
  ]
627
518
  },
628
- "project:delete:tracking": {
519
+ "project:deploy:preview": {
629
520
  "aliases": [
630
- "force:source:tracking:clear"
521
+ "deploy:metadata:preview"
631
522
  ],
632
523
  "args": {},
633
524
  "deprecateAliases": true,
634
- "description": "WARNING: This command deletes or overwrites all existing source tracking files. Use with extreme caution.\n\nDeletes all local source tracking information. When you next run 'project deploy preview', Salesforce CLI displays all local and remote files as changed, and any files with the same name are listed as conflicts.",
525
+ "description": "You must run this command from within a project.\n\nThe command outputs a table that describes what will happen if you run the \"<%= config.bin %> project deploy start\" command. The table lists the metadata components that will be deployed and deleted. The table also lists the current conflicts between files in your local project and components in the org. Finally, the table lists the files that won't be deployed because they're included in your .forceignore file.\n\nIf your org allows source tracking, then this command displays potential conflicts between the org and your local project. Some orgs, such as production org, never allow source tracking. Source tracking is enabled by default on scratch and sandbox orgs; you can disable source tracking when you create the orgs by specifying the --no-track-source flag on the \"<%= config.bin %> org create scratch|sandbox\" commands.\n\nTo preview the deployment of multiple metadata components, either set multiple --metadata <name> flags or a single --metadata flag with multiple names separated by spaces. Enclose names that contain spaces in one set of double quotes. The same syntax applies to --source-dir.",
635
526
  "examples": [
636
- "Delete local source tracking for the org with alias \"my-scratch\":\n$ <%= config.bin %> <%= command.id %> --target-org my-scratch"
527
+ "NOTE: The commands to preview a deployment and actually deploy it use similar flags. We provide a few preview examples here, but see the help for \"<%= config.bin %> project deploy start\" for more examples that you can adapt for previewing.",
528
+ "Preview the deployment of source files in a directory, such as force-app, to your default org:\n<%= config.bin %> <%= command.id %> --source-dir force-app",
529
+ "Preview the deployment of all Apex classes to an org with alias \"my-scratch\":\n<%= config.bin %> <%= command.id %> --metadata ApexClass --target-org my-scratch",
530
+ "Preview deployment of a specific Apex class:\n<%= config.bin %> <%= command.id %> --metadata ApexClass:MyApexClass",
531
+ "Preview deployment of all components listed in a manifest:\n<%= config.bin %> <%= command.id %> --manifest path/to/package.xml"
637
532
  ],
638
533
  "flags": {
639
534
  "json": {
@@ -651,279 +546,37 @@
651
546
  "multiple": false,
652
547
  "type": "option"
653
548
  },
654
- "api-version": {
655
- "aliases": [
656
- "apiversion"
549
+ "ignore-conflicts": {
550
+ "char": "c",
551
+ "description": "This flag applies only to orgs that allow source tracking. It has no effect on orgs that don't allow it, such as production orgs.",
552
+ "name": "ignore-conflicts",
553
+ "summary": "Don't display conflicts in preview of the deployment.",
554
+ "allowNo": false,
555
+ "type": "boolean"
556
+ },
557
+ "manifest": {
558
+ "char": "x",
559
+ "description": "All child components are included. If you specify this flag, don’t specify --metadata or --source-dir.",
560
+ "exclusive": [
561
+ "source-dir",
562
+ "metadata"
657
563
  ],
658
- "deprecateAliases": true,
659
- "description": "Override the api version used for api requests made by this command",
660
- "name": "api-version",
564
+ "name": "manifest",
565
+ "summary": "Full file path for manifest (package.xml) of components to preview.",
661
566
  "hasDynamicHelp": false,
662
567
  "multiple": false,
663
568
  "type": "option"
664
569
  },
665
- "loglevel": {
666
- "deprecated": {
667
- "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."
668
- },
669
- "hidden": true,
670
- "name": "loglevel",
570
+ "metadata": {
571
+ "char": "m",
572
+ "exclusive": [
573
+ "manifest",
574
+ "source-dir"
575
+ ],
576
+ "name": "metadata",
577
+ "summary": "Metadata component names to preview.",
671
578
  "hasDynamicHelp": false,
672
- "multiple": false,
673
- "type": "option"
674
- },
675
- "target-org": {
676
- "aliases": [
677
- "targetusername",
678
- "u"
679
- ],
680
- "char": "o",
681
- "deprecateAliases": true,
682
- "name": "target-org",
683
- "noCacheDefault": true,
684
- "required": true,
685
- "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
686
- "hasDynamicHelp": true,
687
- "multiple": false,
688
- "type": "option"
689
- },
690
- "no-prompt": {
691
- "aliases": [
692
- "noprompt"
693
- ],
694
- "char": "p",
695
- "deprecateAliases": true,
696
- "name": "no-prompt",
697
- "summary": "Don't prompt for source tracking override confirmation.",
698
- "allowNo": false,
699
- "type": "boolean"
700
- }
701
- },
702
- "hasDynamicHelp": true,
703
- "hiddenAliases": [],
704
- "id": "project:delete:tracking",
705
- "pluginAlias": "@salesforce/plugin-deploy-retrieve",
706
- "pluginName": "@salesforce/plugin-deploy-retrieve",
707
- "pluginType": "core",
708
- "strict": true,
709
- "summary": "Delete all local source tracking information.",
710
- "enableJsonFlag": true,
711
- "requiresProject": true,
712
- "isESM": true,
713
- "relativePath": [
714
- "lib",
715
- "commands",
716
- "project",
717
- "delete",
718
- "tracking.js"
719
- ],
720
- "aliasPermutations": [
721
- "force:source:tracking:clear",
722
- "source:force:tracking:clear",
723
- "source:tracking:force:clear",
724
- "source:tracking:clear:force",
725
- "force:tracking:source:clear",
726
- "tracking:force:source:clear",
727
- "tracking:source:force:clear",
728
- "tracking:source:clear:force",
729
- "force:tracking:clear:source",
730
- "tracking:force:clear:source",
731
- "tracking:clear:force:source",
732
- "tracking:clear:source:force",
733
- "force:source:clear:tracking",
734
- "source:force:clear:tracking",
735
- "source:clear:force:tracking",
736
- "source:clear:tracking:force",
737
- "force:clear:source:tracking",
738
- "clear:force:source:tracking",
739
- "clear:source:force:tracking",
740
- "clear:source:tracking:force",
741
- "force:clear:tracking:source",
742
- "clear:force:tracking:source",
743
- "clear:tracking:force:source",
744
- "clear:tracking:source:force"
745
- ],
746
- "permutations": [
747
- "project:delete:tracking",
748
- "delete:project:tracking",
749
- "delete:tracking:project",
750
- "project:tracking:delete",
751
- "tracking:project:delete",
752
- "tracking:delete:project"
753
- ]
754
- },
755
- "project:deploy:cancel": {
756
- "aliases": [
757
- "deploy:metadata:cancel"
758
- ],
759
- "args": {},
760
- "deprecateAliases": true,
761
- "description": "Use this command to cancel a deploy operation that hasn't yet completed in the org. Deploy operations include standard deploys, quick deploys, deploy validations, and deploy cancellations.\n\nRun this command by either passing it a job ID or specifying the --use-most-recent flag to use the job ID of the most recent deploy operation.",
762
- "examples": [
763
- "Cancel a deploy operation using a job ID:\n<%= config.bin %> <%= command.id %> --job-id 0Af0x000017yLUFCA2",
764
- "Cancel the most recent deploy operation:\n<%= config.bin %> <%= command.id %> --use-most-recent"
765
- ],
766
- "flags": {
767
- "json": {
768
- "description": "Format output as json.",
769
- "helpGroup": "GLOBAL",
770
- "name": "json",
771
- "allowNo": false,
772
- "type": "boolean"
773
- },
774
- "flags-dir": {
775
- "helpGroup": "GLOBAL",
776
- "name": "flags-dir",
777
- "summary": "Import flag values from a directory.",
778
- "hasDynamicHelp": false,
779
- "multiple": false,
780
- "type": "option"
781
- },
782
- "target-org": {
783
- "char": "o",
784
- "name": "target-org",
785
- "noCacheDefault": true,
786
- "summary": "Username or alias of the target org.",
787
- "hasDynamicHelp": true,
788
- "multiple": false,
789
- "type": "option"
790
- },
791
- "async": {
792
- "description": "The command immediately returns the control of the terminal to you. This way, you can continue to use the CLI. To resume watching the cancellation, run \"<%= config.bin %> project deploy resume\". To check the status of the cancellation, run \"<%= config.bin %> project deploy report\".",
793
- "exclusive": [
794
- "wait"
795
- ],
796
- "name": "async",
797
- "summary": "Run the command asynchronously.",
798
- "allowNo": false,
799
- "type": "boolean"
800
- },
801
- "job-id": {
802
- "char": "i",
803
- "description": "These commands return a job ID if they time out or you specified the --async flag:\n\n- <%= config.bin %> project deploy start\n- <%= config.bin %> project deploy validate\n- <%= config.bin %> project deploy quick\n- <%= config.bin %> project deploy cancel\n\nThe job ID is valid for 10 days from when you started the deploy operation.",
804
- "name": "job-id",
805
- "summary": "Job ID of the deploy operation you want to cancel.",
806
- "hasDynamicHelp": false,
807
- "multiple": false,
808
- "type": "option"
809
- },
810
- "use-most-recent": {
811
- "char": "r",
812
- "description": "For performance reasons, this flag uses job IDs for deploy operations that started only in the past 3 days or less. If your most recent deploy operations was more than 3 days ago, this flag won't find a job ID.",
813
- "name": "use-most-recent",
814
- "summary": "Use the job ID of the most recent deploy operation.",
815
- "allowNo": false,
816
- "type": "boolean"
817
- },
818
- "wait": {
819
- "char": "w",
820
- "description": "If the command continues to run after the wait period, the CLI returns control of the terminal window to you. To resume watching the cancellation, run \"<%= config.bin %> project deploy resume\". To check the status of the cancellation, run \"<%= config.bin %> project deploy report\".",
821
- "exclusive": [
822
- "async"
823
- ],
824
- "name": "wait",
825
- "summary": "Number of minutes to wait for the command to complete and display results.",
826
- "hasDynamicHelp": true,
827
- "helpValue": "<minutes>",
828
- "multiple": false,
829
- "type": "option"
830
- }
831
- },
832
- "hasDynamicHelp": true,
833
- "hiddenAliases": [],
834
- "id": "project:deploy:cancel",
835
- "pluginAlias": "@salesforce/plugin-deploy-retrieve",
836
- "pluginName": "@salesforce/plugin-deploy-retrieve",
837
- "pluginType": "core",
838
- "strict": true,
839
- "summary": "Cancel a deploy operation.",
840
- "enableJsonFlag": true,
841
- "isESM": true,
842
- "relativePath": [
843
- "lib",
844
- "commands",
845
- "project",
846
- "deploy",
847
- "cancel.js"
848
- ],
849
- "aliasPermutations": [
850
- "deploy:metadata:cancel",
851
- "metadata:deploy:cancel",
852
- "metadata:cancel:deploy",
853
- "deploy:cancel:metadata",
854
- "cancel:deploy:metadata",
855
- "cancel:metadata:deploy"
856
- ],
857
- "permutations": [
858
- "project:deploy:cancel",
859
- "deploy:project:cancel",
860
- "deploy:cancel:project",
861
- "project:cancel:deploy",
862
- "cancel:project:deploy",
863
- "cancel:deploy:project"
864
- ]
865
- },
866
- "project:deploy:preview": {
867
- "aliases": [
868
- "deploy:metadata:preview"
869
- ],
870
- "args": {},
871
- "deprecateAliases": true,
872
- "description": "You must run this command from within a project.\n\nThe command outputs a table that describes what will happen if you run the \"<%= config.bin %> project deploy start\" command. The table lists the metadata components that will be deployed and deleted. The table also lists the current conflicts between files in your local project and components in the org. Finally, the table lists the files that won't be deployed because they're included in your .forceignore file.\n\nIf your org allows source tracking, then this command displays potential conflicts between the org and your local project. Some orgs, such as production org, never allow source tracking. Source tracking is enabled by default on scratch and sandbox orgs; you can disable source tracking when you create the orgs by specifying the --no-track-source flag on the \"<%= config.bin %> org create scratch|sandbox\" commands.\n\nTo preview the deployment of multiple metadata components, either set multiple --metadata <name> flags or a single --metadata flag with multiple names separated by spaces. Enclose names that contain spaces in one set of double quotes. The same syntax applies to --source-dir.",
873
- "examples": [
874
- "NOTE: The commands to preview a deployment and actually deploy it use similar flags. We provide a few preview examples here, but see the help for \"<%= config.bin %> project deploy start\" for more examples that you can adapt for previewing.",
875
- "Preview the deployment of source files in a directory, such as force-app, to your default org:\n<%= config.bin %> <%= command.id %> --source-dir force-app",
876
- "Preview the deployment of all Apex classes to an org with alias \"my-scratch\":\n<%= config.bin %> <%= command.id %> --metadata ApexClass --target-org my-scratch",
877
- "Preview deployment of a specific Apex class:\n<%= config.bin %> <%= command.id %> --metadata ApexClass:MyApexClass",
878
- "Preview deployment of all components listed in a manifest:\n<%= config.bin %> <%= command.id %> --manifest path/to/package.xml"
879
- ],
880
- "flags": {
881
- "json": {
882
- "description": "Format output as json.",
883
- "helpGroup": "GLOBAL",
884
- "name": "json",
885
- "allowNo": false,
886
- "type": "boolean"
887
- },
888
- "flags-dir": {
889
- "helpGroup": "GLOBAL",
890
- "name": "flags-dir",
891
- "summary": "Import flag values from a directory.",
892
- "hasDynamicHelp": false,
893
- "multiple": false,
894
- "type": "option"
895
- },
896
- "ignore-conflicts": {
897
- "char": "c",
898
- "description": "This flag applies only to orgs that allow source tracking. It has no effect on orgs that don't allow it, such as production orgs.",
899
- "name": "ignore-conflicts",
900
- "summary": "Don't display conflicts in preview of the deployment.",
901
- "allowNo": false,
902
- "type": "boolean"
903
- },
904
- "manifest": {
905
- "char": "x",
906
- "description": "All child components are included. If you specify this flag, don’t specify --metadata or --source-dir.",
907
- "exclusive": [
908
- "source-dir",
909
- "metadata"
910
- ],
911
- "name": "manifest",
912
- "summary": "Full file path for manifest (package.xml) of components to preview.",
913
- "hasDynamicHelp": false,
914
- "multiple": false,
915
- "type": "option"
916
- },
917
- "metadata": {
918
- "char": "m",
919
- "exclusive": [
920
- "manifest",
921
- "source-dir"
922
- ],
923
- "name": "metadata",
924
- "summary": "Metadata component names to preview.",
925
- "hasDynamicHelp": false,
926
- "multiple": true,
579
+ "multiple": true,
927
580
  "type": "option"
928
581
  },
929
582
  "source-dir": {
@@ -1689,7 +1342,7 @@
1689
1342
  },
1690
1343
  "test-level": {
1691
1344
  "char": "l",
1692
- "description": "Valid values are:\n\n- NoTestRun — No tests are run. This test level applies only to deployments to development environments, such as sandbox, Developer Edition, or trial orgs. This test level is the default for development environments.\n\n- RunSpecifiedTests — Runs only the tests that you specify with the --tests flag. Code coverage requirements differ from the default coverage requirements when using this test level. Executed tests must comprise a minimum of 75% code coverage for each class and trigger in the deployment package. This coverage is computed for each class and trigger individually and is different than the overall coverage percentage.\n\n- RunLocalTests — All tests in your org are run, except the ones that originate from installed managed and unlocked packages. This test level is the default for production deployments that include Apex classes or triggers.\n\n- RunAllTestsInOrg — All tests in your org are run, including tests of managed packages.\n\n If you don’t specify a test level, the default behavior depends on the contents of your deployment package and target org. For more information, see [Running Tests in a Deployment](https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_deploy_running_tests.htm) in the \"Metadata API Developer Guide\".",
1345
+ "description": "Valid values are:\n\n- NoTestRun — No tests are run. This test level applies only to deployments to development environments, such as sandbox, Developer Edition, or trial orgs. This test level is the default for development environments.\n\n- RunSpecifiedTests — Runs only the tests that you specify with the --tests flag. Code coverage requirements differ from the default coverage requirements when using this test level. Executed tests must comprise a minimum of 75% code coverage for each class and trigger in the deployment package. This coverage is computed for each class and trigger individually and is different than the overall coverage percentage.\n\n- RunLocalTests — All tests in your org are run, except the ones that originate from installed managed and unlocked packages. This test level is the default for production deployments that include Apex classes or triggers.\n\n- RunAllTestsInOrg — All tests in your org are run, including tests of managed packages.\n\n- RunRelevantTests — Runs only tests that are relevant to the files being deployed.\n\n If you don’t specify a test level, the default behavior depends on the contents of your deployment package and target org. For more information, see [Running Tests in a Deployment](https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_deploy_running_tests.htm) in the \"Metadata API Developer Guide\".",
1693
1346
  "helpGroup": "Test",
1694
1347
  "name": "test-level",
1695
1348
  "summary": "Deployment Apex testing level.",
@@ -1699,7 +1352,8 @@
1699
1352
  "NoTestRun",
1700
1353
  "RunSpecifiedTests",
1701
1354
  "RunLocalTests",
1702
- "RunAllTestsInOrg"
1355
+ "RunAllTestsInOrg",
1356
+ "RunRelevantTests"
1703
1357
  ],
1704
1358
  "type": "option"
1705
1359
  },
@@ -2025,7 +1679,7 @@
2025
1679
  },
2026
1680
  "test-level": {
2027
1681
  "char": "l",
2028
- "description": "Valid values are:\n\n- RunSpecifiedTests — Runs only the tests that you specify with the --tests flag. Code coverage requirements differ from the default coverage requirements when using this test level. Executed tests must comprise a minimum of 75% code coverage for each class and trigger in the deployment package. This coverage is computed for each class and trigger individually and is different than the overall coverage percentage.\n\n- RunLocalTests — All tests in your org are run, except the ones that originate from installed managed and unlocked packages. This test level is the default.\n\n- RunAllTestsInOrg — All tests in your org are run, including tests of managed packages.",
1682
+ "description": "Valid values are:\n\n- RunSpecifiedTests — Runs only the tests that you specify with the --tests flag. Code coverage requirements differ from the default coverage requirements when using this test level. Executed tests must comprise a minimum of 75% code coverage for each class and trigger in the deployment package. This coverage is computed for each class and trigger individually and is different than the overall coverage percentage.\n\n- RunLocalTests — All tests in your org are run, except the ones that originate from installed managed and unlocked packages. This test level is the default.\n\n- RunAllTestsInOrg — All tests in your org are run, including tests of managed packages.\n\n- RunRelevantTests — Runs only tests that are relevant to the files being deployed.",
2029
1683
  "helpGroup": "Test",
2030
1684
  "name": "test-level",
2031
1685
  "summary": "Deployment Apex testing level.",
@@ -2035,7 +1689,8 @@
2035
1689
  "options": [
2036
1690
  "RunAllTestsInOrg",
2037
1691
  "RunLocalTests",
2038
- "RunSpecifiedTests"
1692
+ "RunSpecifiedTests",
1693
+ "RunRelevantTests"
2039
1694
  ],
2040
1695
  "type": "option"
2041
1696
  },
@@ -2247,6 +1902,354 @@
2247
1902
  "validate:deploy:project"
2248
1903
  ]
2249
1904
  },
1905
+ "project:delete:source": {
1906
+ "aliases": [
1907
+ "force:source:delete"
1908
+ ],
1909
+ "args": {},
1910
+ "deprecateAliases": true,
1911
+ "description": "Use this command to delete components from orgs that don’t have source tracking. To remove deleted items from orgs that have source tracking enabled, \"<%= config.bin %> project deploy start\".\n\nWhen you run this command, both the local source file and the metadata component in the org are deleted.\n\nTo delete multiple metadata components, either set multiple --metadata <name> flags or a single --metadata flag with multiple names separated by spaces. Enclose names that contain spaces in one set of double quotes. The same syntax applies to --source-dir.",
1912
+ "examples": [
1913
+ "Delete all local Apex source files and all Apex classes from the org with alias \"my-scratch\":\n<%= config.bin %> <%= command.id %> --metadata ApexClass --target-org my-scratch",
1914
+ "Delete a specific Apex class and a Profile that has a space in it from your default org; don't prompt for confirmation:\n<%= config.bin %> <%= command.id %> --metadata ApexClass:MyFabulousApexClass --metadata \"Profile: My Profile\" --no-prompt",
1915
+ "Run the tests that aren’t in any managed packages as part of the deletion; if the delete succeeds, and the org has source-tracking enabled, update the source tracking information:\n<%= config.bin %> <%= command.id %> --metadata ApexClass --test-level RunLocalTests --track-source",
1916
+ "Delete the Apex source files in a directory and the corresponding components from your default org:\n<%= config.bin %> <%= command.id %> --source-dir force-app/main/default/classes"
1917
+ ],
1918
+ "flags": {
1919
+ "json": {
1920
+ "description": "Format output as json.",
1921
+ "helpGroup": "GLOBAL",
1922
+ "name": "json",
1923
+ "allowNo": false,
1924
+ "type": "boolean"
1925
+ },
1926
+ "flags-dir": {
1927
+ "helpGroup": "GLOBAL",
1928
+ "name": "flags-dir",
1929
+ "summary": "Import flag values from a directory.",
1930
+ "hasDynamicHelp": false,
1931
+ "multiple": false,
1932
+ "type": "option"
1933
+ },
1934
+ "api-version": {
1935
+ "aliases": [
1936
+ "apiversion"
1937
+ ],
1938
+ "deprecateAliases": true,
1939
+ "description": "Override the api version used for api requests made by this command",
1940
+ "name": "api-version",
1941
+ "hasDynamicHelp": false,
1942
+ "multiple": false,
1943
+ "type": "option"
1944
+ },
1945
+ "loglevel": {
1946
+ "deprecated": {
1947
+ "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."
1948
+ },
1949
+ "hidden": true,
1950
+ "name": "loglevel",
1951
+ "hasDynamicHelp": false,
1952
+ "multiple": false,
1953
+ "type": "option"
1954
+ },
1955
+ "target-org": {
1956
+ "aliases": [
1957
+ "targetusername",
1958
+ "u"
1959
+ ],
1960
+ "char": "o",
1961
+ "deprecateAliases": true,
1962
+ "name": "target-org",
1963
+ "noCacheDefault": true,
1964
+ "required": true,
1965
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
1966
+ "hasDynamicHelp": true,
1967
+ "multiple": false,
1968
+ "type": "option"
1969
+ },
1970
+ "check-only": {
1971
+ "aliases": [
1972
+ "checkonly"
1973
+ ],
1974
+ "char": "c",
1975
+ "deprecateAliases": true,
1976
+ "description": "IMPORTANT: Where possible, we changed noninclusive terms to align with our company value of Equality. We maintained certain terms to avoid any effect on customer implementations.\n\nValidates the deleted metadata and runs all Apex tests, but prevents the deletion from being saved to the org.\n\nIf you change a field type from Master-Detail to Lookup or vice versa, that change isn’t supported when using the --check-only flag to test a deletion (validation). This kind of change isn’t supported for test deletions to avoid the risk of data loss or corruption. If a change that isn’t supported for test deletions is included in a deletion package, the test deletion fails and issues an error.\n\nIf your deletion package changes a field type from Master-Detail to Lookup or vice versa, you can still validate the changes prior to deploying to Production by performing a full deletion to another test Sandbox. A full deletion includes a validation of the changes as part of the deletion process.\n\nNote: A Metadata API deletion that includes Master-Detail relationships deletes all detail records in the Recycle Bin in the following cases.\n\n 1. For a deletion with a new Master-Detail field, soft delete (send to the Recycle Bin) all detail records before proceeding to delete the Master-Detail field, or the deletion fails. During the deletion, detail records are permanently deleted from the Recycle Bin and cannot be recovered.\n\n 2. For a deletion that converts a Lookup field relationship to a Master-Detail relationship, detail records must reference a master record or be soft-deleted (sent to the Recycle Bin) for the deletion to succeed. However, a successful deletion permanently deletes any detail records in the Recycle Bin.",
1977
+ "name": "check-only",
1978
+ "summary": "Validate delete command but don't delete anything from the org or the local project.",
1979
+ "allowNo": false,
1980
+ "type": "boolean"
1981
+ },
1982
+ "wait": {
1983
+ "char": "w",
1984
+ "description": "If the command continues to run after the wait period, the CLI returns control of the terminal window to you.",
1985
+ "name": "wait",
1986
+ "summary": "Number of minutes to wait for the command to finish.",
1987
+ "hasDynamicHelp": true,
1988
+ "multiple": false,
1989
+ "type": "option"
1990
+ },
1991
+ "tests": {
1992
+ "description": "If a test name contains a space, enclose it in double quotes.\nFor multiple test names, use one of the following formats:\n\n- Repeat the flag for multiple test names: --tests Test1 --tests Test2 --tests \"Test With Space\"\n- Separate the test names with spaces: --tests Test1 Test2 \"Test With Space\"",
1993
+ "helpGroup": "Test",
1994
+ "name": "tests",
1995
+ "summary": "Apex tests to run when --test-level is RunSpecifiedTests.",
1996
+ "hasDynamicHelp": false,
1997
+ "multiple": true,
1998
+ "type": "option"
1999
+ },
2000
+ "test-level": {
2001
+ "aliases": [
2002
+ "testlevel"
2003
+ ],
2004
+ "char": "l",
2005
+ "deprecateAliases": true,
2006
+ "description": "Valid values are:\n\n- NoTestRun — No tests are run. This test level applies only to deployments to development environments, such as sandbox, Developer Edition, or trial orgs. This test level is the default for development environments.\n\n- RunSpecifiedTests — Runs only the tests that you specify with the --tests flag. Code coverage requirements differ from the default coverage requirements when using this test level. Executed tests must comprise a minimum of 75% code coverage for each class and trigger in the deployment package. This coverage is computed for each class and trigger individually and is different than the overall coverage percentage.\n\n- RunLocalTests — All tests in your org are run, except the ones that originate from installed managed and unlocked packages. This test level is the default for production deployments that include Apex classes or triggers.\n\n- RunAllTestsInOrg — All tests in your org are run, including tests of managed packages.\n\nIf you don’t specify a test level, the default behavior depends on the contents of your deployment package and target org. For more information, see “Running Tests in a Deployment” in the Metadata API Developer Guide.",
2007
+ "helpGroup": "Test",
2008
+ "name": "test-level",
2009
+ "summary": "Deployment Apex testing level.",
2010
+ "hasDynamicHelp": false,
2011
+ "multiple": false,
2012
+ "options": [
2013
+ "NoTestRun",
2014
+ "RunSpecifiedTests",
2015
+ "RunLocalTests",
2016
+ "RunAllTestsInOrg",
2017
+ "RunRelevantTests"
2018
+ ],
2019
+ "type": "option"
2020
+ },
2021
+ "no-prompt": {
2022
+ "aliases": [
2023
+ "noprompt"
2024
+ ],
2025
+ "char": "r",
2026
+ "deprecateAliases": true,
2027
+ "name": "no-prompt",
2028
+ "summary": "Don't prompt for delete confirmation.",
2029
+ "allowNo": false,
2030
+ "type": "boolean"
2031
+ },
2032
+ "metadata": {
2033
+ "char": "m",
2034
+ "description": "If you specify this flag, don’t specify --source-dir.",
2035
+ "name": "metadata",
2036
+ "summary": "Metadata components to delete.",
2037
+ "delimiter": ",",
2038
+ "hasDynamicHelp": false,
2039
+ "multiple": true,
2040
+ "type": "option"
2041
+ },
2042
+ "source-dir": {
2043
+ "aliases": [
2044
+ "sourcepath"
2045
+ ],
2046
+ "char": "p",
2047
+ "deprecateAliases": true,
2048
+ "description": "The supplied paths can be a single file (in which case the operation is applied to only one file) or a folder (in which case the operation is applied to all metadata types in the directory and its sub-directories).\n\nIf you specify this flag, don’t specify --metadata.",
2049
+ "name": "source-dir",
2050
+ "summary": "Source file paths to delete.",
2051
+ "delimiter": ",",
2052
+ "hasDynamicHelp": false,
2053
+ "multiple": true,
2054
+ "type": "option"
2055
+ },
2056
+ "track-source": {
2057
+ "aliases": [
2058
+ "tracksource"
2059
+ ],
2060
+ "char": "t",
2061
+ "deprecateAliases": true,
2062
+ "exclusive": [
2063
+ "check-only"
2064
+ ],
2065
+ "name": "track-source",
2066
+ "summary": "If the delete succeeds, update the source tracking information.",
2067
+ "allowNo": false,
2068
+ "type": "boolean"
2069
+ },
2070
+ "force-overwrite": {
2071
+ "aliases": [
2072
+ "forceoverwrite"
2073
+ ],
2074
+ "char": "f",
2075
+ "dependsOn": [
2076
+ "track-source"
2077
+ ],
2078
+ "deprecateAliases": true,
2079
+ "name": "force-overwrite",
2080
+ "summary": "Ignore conflict warnings and overwrite changes to the org.",
2081
+ "allowNo": false,
2082
+ "type": "boolean"
2083
+ },
2084
+ "verbose": {
2085
+ "name": "verbose",
2086
+ "summary": "Verbose output of the delete result.",
2087
+ "allowNo": false,
2088
+ "type": "boolean"
2089
+ }
2090
+ },
2091
+ "hasDynamicHelp": true,
2092
+ "hiddenAliases": [],
2093
+ "id": "project:delete:source",
2094
+ "pluginAlias": "@salesforce/plugin-deploy-retrieve",
2095
+ "pluginName": "@salesforce/plugin-deploy-retrieve",
2096
+ "pluginType": "core",
2097
+ "strict": true,
2098
+ "summary": "Delete source from your project and from a non-source-tracked org.",
2099
+ "enableJsonFlag": true,
2100
+ "requiresProject": true,
2101
+ "isESM": true,
2102
+ "relativePath": [
2103
+ "lib",
2104
+ "commands",
2105
+ "project",
2106
+ "delete",
2107
+ "source.js"
2108
+ ],
2109
+ "aliasPermutations": [
2110
+ "force:source:delete",
2111
+ "source:force:delete",
2112
+ "source:delete:force",
2113
+ "force:delete:source",
2114
+ "delete:force:source",
2115
+ "delete:source:force"
2116
+ ],
2117
+ "permutations": [
2118
+ "project:delete:source",
2119
+ "delete:project:source",
2120
+ "delete:source:project",
2121
+ "project:source:delete",
2122
+ "source:project:delete",
2123
+ "source:delete:project"
2124
+ ]
2125
+ },
2126
+ "project:delete:tracking": {
2127
+ "aliases": [
2128
+ "force:source:tracking:clear"
2129
+ ],
2130
+ "args": {},
2131
+ "deprecateAliases": true,
2132
+ "description": "WARNING: This command deletes or overwrites all existing source tracking files. Use with extreme caution.\n\nDeletes all local source tracking information. When you next run 'project deploy preview', Salesforce CLI displays all local and remote files as changed, and any files with the same name are listed as conflicts.",
2133
+ "examples": [
2134
+ "Delete local source tracking for the org with alias \"my-scratch\":\n$ <%= config.bin %> <%= command.id %> --target-org my-scratch"
2135
+ ],
2136
+ "flags": {
2137
+ "json": {
2138
+ "description": "Format output as json.",
2139
+ "helpGroup": "GLOBAL",
2140
+ "name": "json",
2141
+ "allowNo": false,
2142
+ "type": "boolean"
2143
+ },
2144
+ "flags-dir": {
2145
+ "helpGroup": "GLOBAL",
2146
+ "name": "flags-dir",
2147
+ "summary": "Import flag values from a directory.",
2148
+ "hasDynamicHelp": false,
2149
+ "multiple": false,
2150
+ "type": "option"
2151
+ },
2152
+ "api-version": {
2153
+ "aliases": [
2154
+ "apiversion"
2155
+ ],
2156
+ "deprecateAliases": true,
2157
+ "description": "Override the api version used for api requests made by this command",
2158
+ "name": "api-version",
2159
+ "hasDynamicHelp": false,
2160
+ "multiple": false,
2161
+ "type": "option"
2162
+ },
2163
+ "loglevel": {
2164
+ "deprecated": {
2165
+ "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."
2166
+ },
2167
+ "hidden": true,
2168
+ "name": "loglevel",
2169
+ "hasDynamicHelp": false,
2170
+ "multiple": false,
2171
+ "type": "option"
2172
+ },
2173
+ "target-org": {
2174
+ "aliases": [
2175
+ "targetusername",
2176
+ "u"
2177
+ ],
2178
+ "char": "o",
2179
+ "deprecateAliases": true,
2180
+ "name": "target-org",
2181
+ "noCacheDefault": true,
2182
+ "required": true,
2183
+ "summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
2184
+ "hasDynamicHelp": true,
2185
+ "multiple": false,
2186
+ "type": "option"
2187
+ },
2188
+ "no-prompt": {
2189
+ "aliases": [
2190
+ "noprompt"
2191
+ ],
2192
+ "char": "p",
2193
+ "deprecateAliases": true,
2194
+ "name": "no-prompt",
2195
+ "summary": "Don't prompt for source tracking override confirmation.",
2196
+ "allowNo": false,
2197
+ "type": "boolean"
2198
+ }
2199
+ },
2200
+ "hasDynamicHelp": true,
2201
+ "hiddenAliases": [],
2202
+ "id": "project:delete:tracking",
2203
+ "pluginAlias": "@salesforce/plugin-deploy-retrieve",
2204
+ "pluginName": "@salesforce/plugin-deploy-retrieve",
2205
+ "pluginType": "core",
2206
+ "strict": true,
2207
+ "summary": "Delete all local source tracking information.",
2208
+ "enableJsonFlag": true,
2209
+ "requiresProject": true,
2210
+ "isESM": true,
2211
+ "relativePath": [
2212
+ "lib",
2213
+ "commands",
2214
+ "project",
2215
+ "delete",
2216
+ "tracking.js"
2217
+ ],
2218
+ "aliasPermutations": [
2219
+ "force:source:tracking:clear",
2220
+ "source:force:tracking:clear",
2221
+ "source:tracking:force:clear",
2222
+ "source:tracking:clear:force",
2223
+ "force:tracking:source:clear",
2224
+ "tracking:force:source:clear",
2225
+ "tracking:source:force:clear",
2226
+ "tracking:source:clear:force",
2227
+ "force:tracking:clear:source",
2228
+ "tracking:force:clear:source",
2229
+ "tracking:clear:force:source",
2230
+ "tracking:clear:source:force",
2231
+ "force:source:clear:tracking",
2232
+ "source:force:clear:tracking",
2233
+ "source:clear:force:tracking",
2234
+ "source:clear:tracking:force",
2235
+ "force:clear:source:tracking",
2236
+ "clear:force:source:tracking",
2237
+ "clear:source:force:tracking",
2238
+ "clear:source:tracking:force",
2239
+ "force:clear:tracking:source",
2240
+ "clear:force:tracking:source",
2241
+ "clear:tracking:force:source",
2242
+ "clear:tracking:source:force"
2243
+ ],
2244
+ "permutations": [
2245
+ "project:delete:tracking",
2246
+ "delete:project:tracking",
2247
+ "delete:tracking:project",
2248
+ "project:tracking:delete",
2249
+ "tracking:project:delete",
2250
+ "tracking:delete:project"
2251
+ ]
2252
+ },
2250
2253
  "project:generate:manifest": {
2251
2254
  "aliases": [
2252
2255
  "force:source:manifest:create"
@@ -3051,5 +3054,5 @@
3051
3054
  ]
3052
3055
  }
3053
3056
  },
3054
- "version": "3.23.15"
3057
+ "version": "3.24.0"
3055
3058
  }