heroku 9.3.0-alpha.3 → 9.3.0-beta.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.
@@ -488,125 +488,122 @@
488
488
  "update.js"
489
489
  ]
490
490
  },
491
- "apps:create": {
491
+ "addons:attach": {
492
492
  "aliases": [],
493
493
  "args": {
494
- "app": {
495
- "description": "name of app to create",
496
- "name": "app",
497
- "required": false
494
+ "addon_name": {
495
+ "name": "addon_name",
496
+ "required": true
498
497
  }
499
498
  },
500
- "description": "creates a new app",
501
- "examples": [
502
- "$ heroku apps:create\nCreating app... done, stack is heroku-22\nhttps://floating-dragon-42.heroku.com/ | https://git.heroku.com/floating-dragon-42.git\n\n# or just\n$ heroku create\n\n# use a heroku.yml manifest file\n$ heroku apps:create --manifest\n\n# specify a buildpack\n$ heroku apps:create --buildpack https://github.com/some/buildpack.git\n\n# specify a name\n$ heroku apps:create example\n\n# create a staging app\n$ heroku apps:create example-staging --remote staging\n\n# create an app in the eu region\n$ heroku apps:create --region eu"
503
- ],
499
+ "description": "attach an existing add-on resource to an app",
504
500
  "flags": {
505
- "app": {
506
- "hidden": true,
507
- "name": "app",
501
+ "as": {
502
+ "description": "name for add-on attachment",
503
+ "name": "as",
508
504
  "hasDynamicHelp": false,
509
505
  "multiple": false,
510
506
  "type": "option"
511
507
  },
512
- "addons": {
513
- "description": "comma-delimited list of addons to install",
514
- "name": "addons",
508
+ "credential": {
509
+ "description": "credential name for scoped access to Heroku Postgres",
510
+ "name": "credential",
515
511
  "hasDynamicHelp": false,
516
512
  "multiple": false,
517
513
  "type": "option"
518
514
  },
519
- "buildpack": {
520
- "char": "b",
521
- "description": "buildpack url to use for this app",
522
- "name": "buildpack",
515
+ "confirm": {
516
+ "description": "overwrite existing add-on attachment with same name",
517
+ "name": "confirm",
523
518
  "hasDynamicHelp": false,
524
519
  "multiple": false,
525
520
  "type": "option"
526
521
  },
527
- "manifest": {
528
- "char": "m",
529
- "description": "use heroku.yml settings for this app",
530
- "hidden": true,
531
- "name": "manifest",
532
- "allowNo": false,
533
- "type": "boolean"
534
- },
535
- "no-remote": {
536
- "char": "n",
537
- "description": "do not create a git remote",
538
- "name": "no-remote",
539
- "allowNo": false,
540
- "type": "boolean"
522
+ "app": {
523
+ "char": "a",
524
+ "description": "app to run command against",
525
+ "name": "app",
526
+ "required": true,
527
+ "hasDynamicHelp": false,
528
+ "multiple": false,
529
+ "type": "option"
541
530
  },
542
531
  "remote": {
543
532
  "char": "r",
544
- "description": "the git remote to create, default \"heroku\"",
533
+ "description": "git remote of app to use",
545
534
  "name": "remote",
546
- "default": "heroku",
547
535
  "hasDynamicHelp": false,
548
536
  "multiple": false,
549
537
  "type": "option"
550
- },
551
- "stack": {
552
- "char": "s",
553
- "description": "the stack to create the app on",
554
- "name": "stack",
538
+ }
539
+ },
540
+ "hasDynamicHelp": false,
541
+ "hiddenAliases": [],
542
+ "id": "addons:attach",
543
+ "pluginAlias": "heroku",
544
+ "pluginName": "heroku",
545
+ "pluginType": "core",
546
+ "strict": true,
547
+ "topic": "addons",
548
+ "isESM": false,
549
+ "relativePath": [
550
+ "lib",
551
+ "commands",
552
+ "addons",
553
+ "attach.js"
554
+ ]
555
+ },
556
+ "addons:create": {
557
+ "aliases": [],
558
+ "args": {
559
+ "service:plan": {
560
+ "name": "service:plan",
561
+ "required": true
562
+ }
563
+ },
564
+ "description": "Create a new add-on resource.\n\nIn order to add additional config items, please place them at the end of the command after a double-dash (--).\n",
565
+ "examples": "Create an add-on resource:\n$heroku addons:create heroku-redis --app my-app\n\nCreate an add-on resource with additional config items:\n$heroku addons:create heroku-postgresql:standard-0 --app my-app -- --fork DATABASE\n",
566
+ "flags": {
567
+ "name": {
568
+ "description": "name for the add-on resource",
569
+ "name": "name",
555
570
  "hasDynamicHelp": false,
556
571
  "multiple": false,
557
572
  "type": "option"
558
573
  },
559
- "space": {
560
- "description": "the private space to create the app in",
561
- "name": "space",
574
+ "as": {
575
+ "description": "name for the initial add-on attachment",
576
+ "name": "as",
562
577
  "hasDynamicHelp": false,
563
578
  "multiple": false,
564
579
  "type": "option"
565
580
  },
566
- "region": {
567
- "description": "specify region for the app to run in",
568
- "name": "region",
581
+ "confirm": {
582
+ "description": "overwrite existing config vars or existing add-on attachments",
583
+ "name": "confirm",
569
584
  "hasDynamicHelp": false,
570
585
  "multiple": false,
571
586
  "type": "option"
572
587
  },
573
- "internal-routing": {
574
- "description": "private space-only. create as an Internal Web App that is only routable in the local network.",
575
- "hidden": true,
576
- "name": "internal-routing",
588
+ "wait": {
589
+ "description": "watch add-on creation status and exit when complete",
590
+ "name": "wait",
577
591
  "allowNo": false,
578
592
  "type": "boolean"
579
593
  },
580
- "features": {
581
- "hidden": true,
582
- "name": "features",
583
- "hasDynamicHelp": false,
584
- "multiple": false,
585
- "type": "option"
586
- },
587
- "kernel": {
588
- "hidden": true,
589
- "name": "kernel",
594
+ "app": {
595
+ "char": "a",
596
+ "description": "app to run command against",
597
+ "name": "app",
598
+ "required": true,
590
599
  "hasDynamicHelp": false,
591
600
  "multiple": false,
592
601
  "type": "option"
593
602
  },
594
- "locked": {
595
- "hidden": true,
596
- "name": "locked",
597
- "allowNo": false,
598
- "type": "boolean"
599
- },
600
- "json": {
601
- "description": "output in json format",
602
- "name": "json",
603
- "allowNo": false,
604
- "type": "boolean"
605
- },
606
- "team": {
607
- "char": "t",
608
- "description": "team to use",
609
- "name": "team",
603
+ "remote": {
604
+ "char": "r",
605
+ "description": "git remote of app to use",
606
+ "name": "remote",
610
607
  "hasDynamicHelp": false,
611
608
  "multiple": false,
612
609
  "type": "option"
@@ -614,31 +611,56 @@
614
611
  },
615
612
  "hasDynamicHelp": false,
616
613
  "hiddenAliases": [
617
- "create"
614
+ "addons:add"
618
615
  ],
619
- "id": "apps:create",
616
+ "id": "addons:create",
620
617
  "pluginAlias": "heroku",
621
618
  "pluginName": "heroku",
622
619
  "pluginType": "core",
623
- "strict": true,
620
+ "strict": false,
621
+ "topic": "addons",
622
+ "example": "Create an add-on resource:\n$heroku addons:create heroku-redis --app my-app\n\nCreate an add-on resource with additional config items:\n$heroku addons:create heroku-postgresql:standard-0 --app my-app -- --fork DATABASE\n",
624
623
  "isESM": false,
625
624
  "relativePath": [
626
625
  "lib",
627
626
  "commands",
628
- "apps",
627
+ "addons",
629
628
  "create.js"
630
629
  ]
631
630
  },
632
- "apps:destroy": {
631
+ "addons:destroy": {
633
632
  "aliases": [],
634
633
  "args": {
635
- "app": {
636
- "hidden": true,
637
- "name": "app"
634
+ "addonName": {
635
+ "name": "addonName",
636
+ "required": true
638
637
  }
639
638
  },
640
- "description": "permanently destroy an app",
639
+ "description": "permanently destroy an add-on resource",
640
+ "examples": [
641
+ "addons:destroy [ADDON]... [flags]"
642
+ ],
641
643
  "flags": {
644
+ "force": {
645
+ "char": "f",
646
+ "description": "allow destruction even if connected to other apps",
647
+ "name": "force",
648
+ "allowNo": false,
649
+ "type": "boolean"
650
+ },
651
+ "confirm": {
652
+ "char": "c",
653
+ "name": "confirm",
654
+ "hasDynamicHelp": false,
655
+ "multiple": false,
656
+ "type": "option"
657
+ },
658
+ "wait": {
659
+ "description": "watch add-on destruction status and exit when complete",
660
+ "name": "wait",
661
+ "allowNo": false,
662
+ "type": "boolean"
663
+ },
642
664
  "app": {
643
665
  "char": "a",
644
666
  "description": "app to run command against",
@@ -654,38 +676,35 @@
654
676
  "hasDynamicHelp": false,
655
677
  "multiple": false,
656
678
  "type": "option"
657
- },
658
- "confirm": {
659
- "char": "c",
660
- "name": "confirm",
661
- "hasDynamicHelp": false,
662
- "multiple": false,
663
- "type": "option"
664
679
  }
665
680
  },
666
681
  "hasDynamicHelp": false,
667
682
  "hiddenAliases": [
668
- "destroy",
669
- "apps:delete"
683
+ "addons:remove"
670
684
  ],
671
- "id": "apps:destroy",
685
+ "id": "addons:destroy",
672
686
  "pluginAlias": "heroku",
673
687
  "pluginName": "heroku",
674
688
  "pluginType": "core",
675
- "strict": true,
676
- "help": "This will also destroy all add-ons on the app.",
689
+ "strict": false,
690
+ "topic": "addons",
677
691
  "isESM": false,
678
692
  "relativePath": [
679
693
  "lib",
680
694
  "commands",
681
- "apps",
695
+ "addons",
682
696
  "destroy.js"
683
697
  ]
684
698
  },
685
- "apps:errors": {
699
+ "addons:detach": {
686
700
  "aliases": [],
687
- "args": {},
688
- "description": "view app errors",
701
+ "args": {
702
+ "attachment_name": {
703
+ "name": "attachment_name",
704
+ "required": true
705
+ }
706
+ },
707
+ "description": "detach an existing add-on resource from an app",
689
708
  "flags": {
690
709
  "app": {
691
710
  "char": "a",
@@ -703,205 +722,99 @@
703
722
  "hasDynamicHelp": false,
704
723
  "multiple": false,
705
724
  "type": "option"
706
- },
707
- "json": {
708
- "description": "output in json format",
709
- "name": "json",
710
- "allowNo": false,
711
- "type": "boolean"
712
- },
713
- "hours": {
714
- "description": "number of hours to look back (default 24)",
715
- "name": "hours",
716
- "default": "24",
717
- "hasDynamicHelp": false,
718
- "multiple": false,
719
- "type": "option"
720
- },
721
- "router": {
722
- "description": "show only router errors",
723
- "name": "router",
724
- "allowNo": false,
725
- "type": "boolean"
726
- },
727
- "dyno": {
728
- "description": "show only dyno errors",
729
- "name": "dyno",
730
- "allowNo": false,
731
- "type": "boolean"
732
725
  }
733
726
  },
734
727
  "hasDynamicHelp": false,
735
728
  "hiddenAliases": [],
736
- "id": "apps:errors",
729
+ "id": "addons:detach",
737
730
  "pluginAlias": "heroku",
738
731
  "pluginName": "heroku",
739
732
  "pluginType": "core",
740
733
  "strict": true,
734
+ "topic": "addons",
741
735
  "isESM": false,
742
736
  "relativePath": [
743
737
  "lib",
744
738
  "commands",
745
- "apps",
746
- "errors.js"
739
+ "addons",
740
+ "detach.js"
747
741
  ]
748
742
  },
749
- "apps": {
743
+ "addons:docs": {
750
744
  "aliases": [],
751
- "args": {},
752
- "description": "list your apps",
753
- "examples": [
754
- "$ heroku apps"
755
- ],
745
+ "args": {
746
+ "addon": {
747
+ "name": "addon",
748
+ "required": true
749
+ }
750
+ },
751
+ "description": "open an add-on's Dev Center documentation in your browser",
756
752
  "flags": {
757
- "all": {
758
- "char": "A",
759
- "description": "include apps in all teams",
760
- "name": "all",
761
- "allowNo": false,
762
- "type": "boolean"
763
- },
764
- "json": {
765
- "char": "j",
766
- "description": "output in json format",
767
- "name": "json",
753
+ "show-url": {
754
+ "description": "show URL, do not open browser",
755
+ "name": "show-url",
768
756
  "allowNo": false,
769
757
  "type": "boolean"
770
758
  },
771
- "space": {
772
- "char": "s",
773
- "description": "filter by space",
774
- "name": "space",
759
+ "app": {
760
+ "char": "a",
761
+ "description": "app to run command against",
762
+ "name": "app",
775
763
  "hasDynamicHelp": false,
776
764
  "multiple": false,
777
765
  "type": "option"
778
766
  },
779
- "personal": {
780
- "char": "p",
781
- "description": "list apps in personal account when a default team is set",
782
- "name": "personal",
783
- "allowNo": false,
784
- "type": "boolean"
785
- },
786
- "internal-routing": {
787
- "char": "i",
788
- "description": "filter to Internal Web Apps",
789
- "hidden": true,
790
- "name": "internal-routing",
791
- "allowNo": false,
792
- "type": "boolean"
793
- },
794
- "team": {
795
- "char": "t",
796
- "description": "team to use",
797
- "name": "team",
767
+ "remote": {
768
+ "char": "r",
769
+ "description": "git remote of app to use",
770
+ "name": "remote",
798
771
  "hasDynamicHelp": false,
799
772
  "multiple": false,
800
773
  "type": "option"
801
774
  }
802
775
  },
803
776
  "hasDynamicHelp": false,
804
- "hiddenAliases": [
805
- "list",
806
- "apps:list"
807
- ],
808
- "id": "apps",
777
+ "hiddenAliases": [],
778
+ "id": "addons:docs",
809
779
  "pluginAlias": "heroku",
810
780
  "pluginName": "heroku",
811
781
  "pluginType": "core",
812
782
  "strict": true,
813
- "topic": "apps",
783
+ "topic": "addons",
814
784
  "isESM": false,
815
785
  "relativePath": [
816
786
  "lib",
817
787
  "commands",
818
- "apps",
819
- "index.js"
788
+ "addons",
789
+ "docs.js"
820
790
  ]
821
791
  },
822
- "apps:info": {
792
+ "addons": {
823
793
  "aliases": [],
824
- "args": {
825
- "app": {
826
- "hidden": true,
827
- "name": "app"
828
- }
829
- },
830
- "description": "show detailed app information",
794
+ "args": {},
795
+ "description": "Lists your add-ons and attachments.\n\n The default filter applied depends on whether you are in a Heroku app\n directory. If so, the --app flag is implied. If not, the default of --all\n is implied. Explicitly providing either flag overrides the default\n behavior.\n ",
831
796
  "examples": [
832
- "$ heroku apps:info",
833
- "$ heroku apps:info --shell"
797
+ "$ heroku addons --all",
798
+ "$ heroku addons --app acme-inc-www"
834
799
  ],
835
800
  "flags": {
836
- "app": {
837
- "char": "a",
838
- "description": "app to run command against",
839
- "name": "app",
840
- "hasDynamicHelp": false,
841
- "multiple": false,
842
- "type": "option"
843
- },
844
- "remote": {
845
- "char": "r",
846
- "description": "git remote of app to use",
847
- "name": "remote",
848
- "hasDynamicHelp": false,
849
- "multiple": false,
850
- "type": "option"
851
- },
852
- "shell": {
853
- "char": "s",
854
- "description": "output more shell friendly key/value pairs",
855
- "name": "shell",
856
- "allowNo": false,
857
- "type": "boolean"
858
- },
859
- "extended": {
860
- "char": "x",
861
- "hidden": true,
862
- "name": "extended",
801
+ "all": {
802
+ "char": "A",
803
+ "description": "show add-ons and attachments for all accessible apps",
804
+ "name": "all",
863
805
  "allowNo": false,
864
806
  "type": "boolean"
865
807
  },
866
808
  "json": {
867
- "char": "j",
868
- "description": "output in json format",
809
+ "description": "return add-ons in json format",
869
810
  "name": "json",
870
811
  "allowNo": false,
871
812
  "type": "boolean"
872
- }
873
- },
874
- "hasDynamicHelp": false,
875
- "hiddenAliases": [
876
- "info"
877
- ],
878
- "id": "apps:info",
879
- "pluginAlias": "heroku",
880
- "pluginName": "heroku",
881
- "pluginType": "core",
882
- "strict": true,
883
- "topic": "apps",
884
- "help": "$ heroku apps:info\n=== example\nGit URL: https://git.heroku.com/example.git\nRepo Size: 5M\n...\n\n$ heroku apps:info --shell\ngit_url=https://git.heroku.com/example.git\nrepo_size=5000000\n...",
885
- "isESM": false,
886
- "relativePath": [
887
- "lib",
888
- "commands",
889
- "apps",
890
- "info.js"
891
- ]
892
- },
893
- "apps:join": {
894
- "aliases": [
895
- "join"
896
- ],
897
- "args": {},
898
- "description": "add yourself to a team app",
899
- "flags": {
813
+ },
900
814
  "app": {
901
815
  "char": "a",
902
816
  "description": "app to run command against",
903
817
  "name": "app",
904
- "required": true,
905
818
  "hasDynamicHelp": false,
906
819
  "multiple": false,
907
820
  "type": "option"
@@ -917,33 +830,35 @@
917
830
  },
918
831
  "hasDynamicHelp": false,
919
832
  "hiddenAliases": [],
920
- "id": "apps:join",
833
+ "id": "addons",
921
834
  "pluginAlias": "heroku",
922
835
  "pluginName": "heroku",
923
836
  "pluginType": "core",
924
837
  "strict": true,
925
- "topic": "apps",
838
+ "usage": "addons [--all|--app APP]",
839
+ "topic": "addons",
926
840
  "isESM": false,
927
841
  "relativePath": [
928
842
  "lib",
929
843
  "commands",
930
- "apps",
931
- "join.js"
844
+ "addons",
845
+ "index.js"
932
846
  ]
933
847
  },
934
- "apps:leave": {
935
- "aliases": [
936
- "leave"
937
- ],
938
- "args": {},
939
- "description": "remove yourself from a team app",
940
- "examples": "heroku apps:leave -a APP",
848
+ "addons:info": {
849
+ "aliases": [],
850
+ "args": {
851
+ "addon": {
852
+ "name": "addon",
853
+ "required": true
854
+ }
855
+ },
856
+ "description": "show detailed add-on resource and attachment information",
941
857
  "flags": {
942
858
  "app": {
943
859
  "char": "a",
944
860
  "description": "app to run command against",
945
861
  "name": "app",
946
- "required": true,
947
862
  "hasDynamicHelp": false,
948
863
  "multiple": false,
949
864
  "type": "option"
@@ -959,33 +874,41 @@
959
874
  },
960
875
  "hasDynamicHelp": false,
961
876
  "hiddenAliases": [],
962
- "id": "apps:leave",
877
+ "id": "addons:info",
963
878
  "pluginAlias": "heroku",
964
879
  "pluginName": "heroku",
965
880
  "pluginType": "core",
966
881
  "strict": true,
967
- "topic": "apps",
968
- "example": "heroku apps:leave -a APP",
882
+ "usage": "addons:info ADDON",
883
+ "topic": "addons",
969
884
  "isESM": false,
970
885
  "relativePath": [
971
886
  "lib",
972
887
  "commands",
973
- "apps",
974
- "leave.js"
888
+ "addons",
889
+ "info.js"
975
890
  ]
976
891
  },
977
- "apps:lock": {
978
- "aliases": [
979
- "lock"
980
- ],
981
- "args": {},
982
- "description": "prevent team members from joining an app",
892
+ "addons:open": {
893
+ "aliases": [],
894
+ "args": {
895
+ "addon": {
896
+ "name": "addon",
897
+ "required": true
898
+ }
899
+ },
900
+ "description": "open an add-on's dashboard in your browser",
983
901
  "flags": {
902
+ "show-url": {
903
+ "description": "show URL, do not open browser",
904
+ "name": "show-url",
905
+ "allowNo": false,
906
+ "type": "boolean"
907
+ },
984
908
  "app": {
985
909
  "char": "a",
986
910
  "description": "app to run command against",
987
911
  "name": "app",
988
- "required": true,
989
912
  "hasDynamicHelp": false,
990
913
  "multiple": false,
991
914
  "type": "option"
@@ -1001,202 +924,133 @@
1001
924
  },
1002
925
  "hasDynamicHelp": false,
1003
926
  "hiddenAliases": [],
1004
- "id": "apps:lock",
927
+ "id": "addons:open",
1005
928
  "pluginAlias": "heroku",
1006
929
  "pluginName": "heroku",
1007
930
  "pluginType": "core",
1008
931
  "strict": true,
1009
- "topic": "apps",
932
+ "topic": "addons",
1010
933
  "isESM": false,
1011
934
  "relativePath": [
1012
935
  "lib",
1013
936
  "commands",
1014
- "apps",
1015
- "lock.js"
937
+ "addons",
938
+ "open.js"
1016
939
  ]
1017
940
  },
1018
- "apps:open": {
941
+ "addons:plans": {
1019
942
  "aliases": [],
1020
943
  "args": {
1021
- "path": {
1022
- "name": "path",
1023
- "required": false
944
+ "service": {
945
+ "name": "service",
946
+ "required": true
1024
947
  }
1025
948
  },
1026
- "description": "open the app in a web browser",
1027
- "examples": [
1028
- "$ heroku open -a myapp",
1029
- "$ heroku open -a myapp /foo"
1030
- ],
949
+ "description": "list all available plans for an add-on service",
1031
950
  "flags": {
1032
- "app": {
1033
- "char": "a",
1034
- "description": "app to run command against",
1035
- "name": "app",
1036
- "required": true,
1037
- "hasDynamicHelp": false,
1038
- "multiple": false,
1039
- "type": "option"
1040
- },
1041
- "remote": {
1042
- "char": "r",
1043
- "description": "git remote of app to use",
1044
- "name": "remote",
1045
- "hasDynamicHelp": false,
1046
- "multiple": false,
1047
- "type": "option"
951
+ "json": {
952
+ "description": "output in json format",
953
+ "name": "json",
954
+ "allowNo": false,
955
+ "type": "boolean"
1048
956
  }
1049
957
  },
1050
958
  "hasDynamicHelp": false,
1051
- "hiddenAliases": [
1052
- "open"
1053
- ],
1054
- "id": "apps:open",
959
+ "hiddenAliases": [],
960
+ "id": "addons:plans",
1055
961
  "pluginAlias": "heroku",
1056
962
  "pluginName": "heroku",
1057
963
  "pluginType": "core",
1058
964
  "strict": true,
1059
- "topic": "apps",
965
+ "topic": "addons",
1060
966
  "isESM": false,
1061
967
  "relativePath": [
1062
968
  "lib",
1063
969
  "commands",
1064
- "apps",
1065
- "open.js"
970
+ "addons",
971
+ "plans.js"
1066
972
  ]
1067
973
  },
1068
- "apps:rename": {
974
+ "addons:rename": {
1069
975
  "aliases": [],
1070
976
  "args": {
1071
- "newname": {
1072
- "name": "newname",
977
+ "addon_name": {
978
+ "name": "addon_name",
1073
979
  "required": true
1074
- }
1075
- },
1076
- "description": "rename an app",
1077
- "examples": [
1078
- "$ heroku apps:rename --app oldname newname"
1079
- ],
1080
- "flags": {
1081
- "app": {
1082
- "char": "a",
1083
- "description": "app to run command against",
1084
- "name": "app",
1085
- "required": true,
1086
- "hasDynamicHelp": false,
1087
- "multiple": false,
1088
- "type": "option"
1089
980
  },
1090
- "remote": {
1091
- "char": "r",
1092
- "description": "git remote of app to use",
1093
- "name": "remote",
1094
- "hasDynamicHelp": false,
1095
- "multiple": false,
1096
- "type": "option"
981
+ "new_name": {
982
+ "name": "new_name",
983
+ "required": true
1097
984
  }
1098
985
  },
986
+ "description": "rename an add-on",
987
+ "flags": {},
1099
988
  "hasDynamicHelp": false,
1100
- "hiddenAliases": [
1101
- "rename"
1102
- ],
1103
- "id": "apps:rename",
989
+ "hiddenAliases": [],
990
+ "id": "addons:rename",
1104
991
  "pluginAlias": "heroku",
1105
992
  "pluginName": "heroku",
1106
993
  "pluginType": "core",
1107
994
  "strict": true,
1108
- "help": "This will locally update the git remote if it is set to the old app.",
1109
- "topic": "apps",
995
+ "topic": "addons",
1110
996
  "isESM": false,
1111
997
  "relativePath": [
1112
998
  "lib",
1113
999
  "commands",
1114
- "apps",
1000
+ "addons",
1115
1001
  "rename.js"
1116
1002
  ]
1117
1003
  },
1118
- "apps:transfer": {
1004
+ "addons:services": {
1119
1005
  "aliases": [],
1120
- "args": {
1121
- "recipient": {
1122
- "description": "user or team to transfer applications to",
1123
- "name": "recipient",
1124
- "required": true
1125
- }
1126
- },
1127
- "description": "transfer applications to another user or team",
1128
- "examples": [
1129
- "$ heroku apps:transfer collaborator@example.com\nTransferring example to collaborator@example.com... done\n\n$ heroku apps:transfer acme-widgets\nTransferring example to acme-widgets... done\n\n$ heroku apps:transfer --bulk acme-widgets\n..."
1130
- ],
1006
+ "args": {},
1007
+ "description": "list all available add-on services",
1131
1008
  "flags": {
1132
- "locked": {
1133
- "char": "l",
1134
- "description": "lock the app upon transfer",
1135
- "name": "locked",
1136
- "required": false,
1137
- "allowNo": false,
1138
- "type": "boolean"
1139
- },
1140
- "bulk": {
1141
- "description": "transfer applications in bulk",
1142
- "name": "bulk",
1143
- "required": false,
1009
+ "json": {
1010
+ "description": "output in json format",
1011
+ "name": "json",
1144
1012
  "allowNo": false,
1145
1013
  "type": "boolean"
1146
- },
1147
- "app": {
1148
- "char": "a",
1149
- "description": "app to run command against",
1150
- "name": "app",
1151
- "hasDynamicHelp": false,
1152
- "multiple": false,
1153
- "type": "option"
1154
- },
1155
- "remote": {
1156
- "char": "r",
1157
- "description": "git remote of app to use",
1158
- "name": "remote",
1159
- "hasDynamicHelp": false,
1160
- "multiple": false,
1161
- "type": "option"
1162
- },
1163
- "confirm": {
1164
- "char": "c",
1165
- "hidden": true,
1166
- "name": "confirm",
1167
- "hasDynamicHelp": false,
1168
- "multiple": false,
1169
- "type": "option"
1170
1014
  }
1171
1015
  },
1172
1016
  "hasDynamicHelp": false,
1173
1017
  "hiddenAliases": [],
1174
- "id": "apps:transfer",
1018
+ "id": "addons:services",
1175
1019
  "pluginAlias": "heroku",
1176
1020
  "pluginName": "heroku",
1177
1021
  "pluginType": "core",
1178
1022
  "strict": true,
1179
- "topic": "apps",
1023
+ "topic": "addons",
1180
1024
  "isESM": false,
1181
1025
  "relativePath": [
1182
1026
  "lib",
1183
1027
  "commands",
1184
- "apps",
1185
- "transfer.js"
1028
+ "addons",
1029
+ "services.js"
1186
1030
  ]
1187
1031
  },
1188
- "apps:unlock": {
1032
+ "addons:upgrade": {
1189
1033
  "aliases": [
1190
- "unlock"
1034
+ "addons:downgrade"
1035
+ ],
1036
+ "args": {
1037
+ "addon": {
1038
+ "name": "addon",
1039
+ "required": true
1040
+ },
1041
+ "plan": {
1042
+ "name": "plan"
1043
+ }
1044
+ },
1045
+ "description": "change add-on plan.\n See available plans with `heroku addons:plans SERVICE`.\n\n Note that `heroku addons:upgrade` and `heroku addons:downgrade` are the same. Either one can be used to change an add-on plan up or down.\n\n https://devcenter.heroku.com/articles/managing-add-ons\n ",
1046
+ "examples": [
1047
+ "Upgrade an add-on by service name:\n$ heroku addons:upgrade heroku-redis:premium-2\n\nUpgrade a specific add-on:\n$ heroku addons:upgrade swimming-briskly-123 heroku-redis:premium-2"
1191
1048
  ],
1192
- "args": {},
1193
- "description": "unlock an app so any team member can join",
1194
1049
  "flags": {
1195
1050
  "app": {
1196
1051
  "char": "a",
1197
1052
  "description": "app to run command against",
1198
1053
  "name": "app",
1199
- "required": true,
1200
1054
  "hasDynamicHelp": false,
1201
1055
  "multiple": false,
1202
1056
  "type": "option"
@@ -1212,47 +1066,32 @@
1212
1066
  },
1213
1067
  "hasDynamicHelp": false,
1214
1068
  "hiddenAliases": [],
1215
- "id": "apps:unlock",
1069
+ "id": "addons:upgrade",
1216
1070
  "pluginAlias": "heroku",
1217
1071
  "pluginName": "heroku",
1218
1072
  "pluginType": "core",
1219
1073
  "strict": true,
1220
- "topic": "apps",
1074
+ "topic": "addons",
1221
1075
  "isESM": false,
1222
1076
  "relativePath": [
1223
1077
  "lib",
1224
1078
  "commands",
1225
- "apps",
1226
- "unlock.js"
1079
+ "addons",
1080
+ "upgrade.js"
1227
1081
  ]
1228
1082
  },
1229
- "addons:attach": {
1083
+ "addons:wait": {
1230
1084
  "aliases": [],
1231
1085
  "args": {
1232
- "addon_name": {
1233
- "name": "addon_name",
1234
- "required": true
1086
+ "addon": {
1087
+ "name": "addon"
1235
1088
  }
1236
1089
  },
1237
- "description": "attach an existing add-on resource to an app",
1090
+ "description": "show provisioning status of the add-ons on the app",
1238
1091
  "flags": {
1239
- "as": {
1240
- "description": "name for add-on attachment",
1241
- "name": "as",
1242
- "hasDynamicHelp": false,
1243
- "multiple": false,
1244
- "type": "option"
1245
- },
1246
- "credential": {
1247
- "description": "credential name for scoped access to Heroku Postgres",
1248
- "name": "credential",
1249
- "hasDynamicHelp": false,
1250
- "multiple": false,
1251
- "type": "option"
1252
- },
1253
- "confirm": {
1254
- "description": "overwrite existing add-on attachment with same name",
1255
- "name": "confirm",
1092
+ "wait-interval": {
1093
+ "description": "how frequently to poll in seconds",
1094
+ "name": "wait-interval",
1256
1095
  "hasDynamicHelp": false,
1257
1096
  "multiple": false,
1258
1097
  "type": "option"
@@ -1261,7 +1100,6 @@
1261
1100
  "char": "a",
1262
1101
  "description": "app to run command against",
1263
1102
  "name": "app",
1264
- "required": true,
1265
1103
  "hasDynamicHelp": false,
1266
1104
  "multiple": false,
1267
1105
  "type": "option"
@@ -1277,7 +1115,7 @@
1277
1115
  },
1278
1116
  "hasDynamicHelp": false,
1279
1117
  "hiddenAliases": [],
1280
- "id": "addons:attach",
1118
+ "id": "addons:wait",
1281
1119
  "pluginAlias": "heroku",
1282
1120
  "pluginName": "heroku",
1283
1121
  "pluginType": "core",
@@ -1288,117 +1126,160 @@
1288
1126
  "lib",
1289
1127
  "commands",
1290
1128
  "addons",
1291
- "attach.js"
1129
+ "wait.js"
1292
1130
  ]
1293
1131
  },
1294
- "addons:create": {
1132
+ "apps:create": {
1295
1133
  "aliases": [],
1296
1134
  "args": {
1297
- "service:plan": {
1298
- "name": "service:plan",
1299
- "required": true
1135
+ "app": {
1136
+ "description": "name of app to create",
1137
+ "name": "app",
1138
+ "required": false
1300
1139
  }
1301
1140
  },
1302
- "description": "Create a new add-on resource.\n\nIn order to add additional config items, please place them at the end of the command after a double-dash (--).\n",
1303
- "examples": "Create an add-on resource:\n$heroku addons:create heroku-redis --app my-app\n\nCreate an add-on resource with additional config items:\n$heroku addons:create heroku-postgresql:standard-0 --app my-app -- --fork DATABASE\n",
1141
+ "description": "creates a new app",
1142
+ "examples": [
1143
+ "$ heroku apps:create\nCreating app... done, stack is heroku-22\nhttps://floating-dragon-42.heroku.com/ | https://git.heroku.com/floating-dragon-42.git\n\n# or just\n$ heroku create\n\n# use a heroku.yml manifest file\n$ heroku apps:create --manifest\n\n# specify a buildpack\n$ heroku apps:create --buildpack https://github.com/some/buildpack.git\n\n# specify a name\n$ heroku apps:create example\n\n# create a staging app\n$ heroku apps:create example-staging --remote staging\n\n# create an app in the eu region\n$ heroku apps:create --region eu"
1144
+ ],
1304
1145
  "flags": {
1305
- "name": {
1306
- "description": "name for the add-on resource",
1307
- "name": "name",
1146
+ "app": {
1147
+ "hidden": true,
1148
+ "name": "app",
1308
1149
  "hasDynamicHelp": false,
1309
1150
  "multiple": false,
1310
1151
  "type": "option"
1311
1152
  },
1312
- "as": {
1313
- "description": "name for the initial add-on attachment",
1314
- "name": "as",
1153
+ "addons": {
1154
+ "description": "comma-delimited list of addons to install",
1155
+ "name": "addons",
1315
1156
  "hasDynamicHelp": false,
1316
1157
  "multiple": false,
1317
1158
  "type": "option"
1318
1159
  },
1319
- "confirm": {
1320
- "description": "overwrite existing config vars or existing add-on attachments",
1321
- "name": "confirm",
1160
+ "buildpack": {
1161
+ "char": "b",
1162
+ "description": "buildpack url to use for this app",
1163
+ "name": "buildpack",
1322
1164
  "hasDynamicHelp": false,
1323
1165
  "multiple": false,
1324
1166
  "type": "option"
1325
1167
  },
1326
- "wait": {
1327
- "description": "watch add-on creation status and exit when complete",
1328
- "name": "wait",
1168
+ "manifest": {
1169
+ "char": "m",
1170
+ "description": "use heroku.yml settings for this app",
1171
+ "hidden": true,
1172
+ "name": "manifest",
1329
1173
  "allowNo": false,
1330
1174
  "type": "boolean"
1331
1175
  },
1332
- "app": {
1333
- "char": "a",
1334
- "description": "app to run command against",
1335
- "name": "app",
1336
- "required": true,
1337
- "hasDynamicHelp": false,
1338
- "multiple": false,
1339
- "type": "option"
1176
+ "no-remote": {
1177
+ "char": "n",
1178
+ "description": "do not create a git remote",
1179
+ "name": "no-remote",
1180
+ "allowNo": false,
1181
+ "type": "boolean"
1340
1182
  },
1341
1183
  "remote": {
1342
1184
  "char": "r",
1343
- "description": "git remote of app to use",
1185
+ "description": "the git remote to create, default \"heroku\"",
1344
1186
  "name": "remote",
1187
+ "default": "heroku",
1345
1188
  "hasDynamicHelp": false,
1346
1189
  "multiple": false,
1347
1190
  "type": "option"
1348
- }
1349
- },
1350
- "hasDynamicHelp": false,
1351
- "hiddenAliases": [
1352
- "addons:add"
1353
- ],
1354
- "id": "addons:create",
1355
- "pluginAlias": "heroku",
1356
- "pluginName": "heroku",
1357
- "pluginType": "core",
1358
- "strict": false,
1359
- "topic": "addons",
1360
- "example": "Create an add-on resource:\n$heroku addons:create heroku-redis --app my-app\n\nCreate an add-on resource with additional config items:\n$heroku addons:create heroku-postgresql:standard-0 --app my-app -- --fork DATABASE\n",
1361
- "isESM": false,
1362
- "relativePath": [
1363
- "lib",
1364
- "commands",
1365
- "addons",
1366
- "create.js"
1367
- ]
1368
- },
1369
- "addons:destroy": {
1370
- "aliases": [],
1371
- "args": {
1372
- "addonName": {
1373
- "name": "addonName",
1374
- "required": true
1375
- }
1376
- },
1377
- "description": "permanently destroy an add-on resource",
1378
- "examples": [
1379
- "addons:destroy [ADDON]... [flags]"
1380
- ],
1381
- "flags": {
1382
- "force": {
1383
- "char": "f",
1384
- "description": "allow destruction even if connected to other apps",
1385
- "name": "force",
1191
+ },
1192
+ "stack": {
1193
+ "char": "s",
1194
+ "description": "the stack to create the app on",
1195
+ "name": "stack",
1196
+ "hasDynamicHelp": false,
1197
+ "multiple": false,
1198
+ "type": "option"
1199
+ },
1200
+ "space": {
1201
+ "description": "the private space to create the app in",
1202
+ "name": "space",
1203
+ "hasDynamicHelp": false,
1204
+ "multiple": false,
1205
+ "type": "option"
1206
+ },
1207
+ "region": {
1208
+ "description": "specify region for the app to run in",
1209
+ "name": "region",
1210
+ "hasDynamicHelp": false,
1211
+ "multiple": false,
1212
+ "type": "option"
1213
+ },
1214
+ "internal-routing": {
1215
+ "description": "private space-only. create as an Internal Web App that is only routable in the local network.",
1216
+ "hidden": true,
1217
+ "name": "internal-routing",
1386
1218
  "allowNo": false,
1387
1219
  "type": "boolean"
1388
1220
  },
1389
- "confirm": {
1390
- "char": "c",
1391
- "name": "confirm",
1221
+ "features": {
1222
+ "hidden": true,
1223
+ "name": "features",
1392
1224
  "hasDynamicHelp": false,
1393
1225
  "multiple": false,
1394
1226
  "type": "option"
1395
1227
  },
1396
- "wait": {
1397
- "description": "watch add-on destruction status and exit when complete",
1398
- "name": "wait",
1228
+ "kernel": {
1229
+ "hidden": true,
1230
+ "name": "kernel",
1231
+ "hasDynamicHelp": false,
1232
+ "multiple": false,
1233
+ "type": "option"
1234
+ },
1235
+ "locked": {
1236
+ "hidden": true,
1237
+ "name": "locked",
1238
+ "allowNo": false,
1239
+ "type": "boolean"
1240
+ },
1241
+ "json": {
1242
+ "description": "output in json format",
1243
+ "name": "json",
1399
1244
  "allowNo": false,
1400
1245
  "type": "boolean"
1401
1246
  },
1247
+ "team": {
1248
+ "char": "t",
1249
+ "description": "team to use",
1250
+ "name": "team",
1251
+ "hasDynamicHelp": false,
1252
+ "multiple": false,
1253
+ "type": "option"
1254
+ }
1255
+ },
1256
+ "hasDynamicHelp": false,
1257
+ "hiddenAliases": [
1258
+ "create"
1259
+ ],
1260
+ "id": "apps:create",
1261
+ "pluginAlias": "heroku",
1262
+ "pluginName": "heroku",
1263
+ "pluginType": "core",
1264
+ "strict": true,
1265
+ "isESM": false,
1266
+ "relativePath": [
1267
+ "lib",
1268
+ "commands",
1269
+ "apps",
1270
+ "create.js"
1271
+ ]
1272
+ },
1273
+ "apps:destroy": {
1274
+ "aliases": [],
1275
+ "args": {
1276
+ "app": {
1277
+ "hidden": true,
1278
+ "name": "app"
1279
+ }
1280
+ },
1281
+ "description": "permanently destroy an app",
1282
+ "flags": {
1402
1283
  "app": {
1403
1284
  "char": "a",
1404
1285
  "description": "app to run command against",
@@ -1414,35 +1295,38 @@
1414
1295
  "hasDynamicHelp": false,
1415
1296
  "multiple": false,
1416
1297
  "type": "option"
1298
+ },
1299
+ "confirm": {
1300
+ "char": "c",
1301
+ "name": "confirm",
1302
+ "hasDynamicHelp": false,
1303
+ "multiple": false,
1304
+ "type": "option"
1417
1305
  }
1418
1306
  },
1419
1307
  "hasDynamicHelp": false,
1420
1308
  "hiddenAliases": [
1421
- "addons:remove"
1309
+ "destroy",
1310
+ "apps:delete"
1422
1311
  ],
1423
- "id": "addons:destroy",
1312
+ "id": "apps:destroy",
1424
1313
  "pluginAlias": "heroku",
1425
1314
  "pluginName": "heroku",
1426
1315
  "pluginType": "core",
1427
- "strict": false,
1428
- "topic": "addons",
1316
+ "strict": true,
1317
+ "help": "This will also destroy all add-ons on the app.",
1429
1318
  "isESM": false,
1430
1319
  "relativePath": [
1431
1320
  "lib",
1432
1321
  "commands",
1433
- "addons",
1322
+ "apps",
1434
1323
  "destroy.js"
1435
1324
  ]
1436
1325
  },
1437
- "addons:detach": {
1326
+ "apps:errors": {
1438
1327
  "aliases": [],
1439
- "args": {
1440
- "attachment_name": {
1441
- "name": "attachment_name",
1442
- "required": true
1443
- }
1444
- },
1445
- "description": "detach an existing add-on resource from an app",
1328
+ "args": {},
1329
+ "description": "view app errors",
1446
1330
  "flags": {
1447
1331
  "app": {
1448
1332
  "char": "a",
@@ -1460,44 +1344,205 @@
1460
1344
  "hasDynamicHelp": false,
1461
1345
  "multiple": false,
1462
1346
  "type": "option"
1347
+ },
1348
+ "json": {
1349
+ "description": "output in json format",
1350
+ "name": "json",
1351
+ "allowNo": false,
1352
+ "type": "boolean"
1353
+ },
1354
+ "hours": {
1355
+ "description": "number of hours to look back (default 24)",
1356
+ "name": "hours",
1357
+ "default": "24",
1358
+ "hasDynamicHelp": false,
1359
+ "multiple": false,
1360
+ "type": "option"
1361
+ },
1362
+ "router": {
1363
+ "description": "show only router errors",
1364
+ "name": "router",
1365
+ "allowNo": false,
1366
+ "type": "boolean"
1367
+ },
1368
+ "dyno": {
1369
+ "description": "show only dyno errors",
1370
+ "name": "dyno",
1371
+ "allowNo": false,
1372
+ "type": "boolean"
1463
1373
  }
1464
1374
  },
1465
1375
  "hasDynamicHelp": false,
1466
1376
  "hiddenAliases": [],
1467
- "id": "addons:detach",
1377
+ "id": "apps:errors",
1468
1378
  "pluginAlias": "heroku",
1469
1379
  "pluginName": "heroku",
1470
1380
  "pluginType": "core",
1471
1381
  "strict": true,
1472
- "topic": "addons",
1473
1382
  "isESM": false,
1474
1383
  "relativePath": [
1475
1384
  "lib",
1476
1385
  "commands",
1477
- "addons",
1478
- "detach.js"
1386
+ "apps",
1387
+ "errors.js"
1479
1388
  ]
1480
1389
  },
1481
- "addons:docs": {
1390
+ "apps": {
1391
+ "aliases": [],
1392
+ "args": {},
1393
+ "description": "list your apps",
1394
+ "examples": [
1395
+ "$ heroku apps"
1396
+ ],
1397
+ "flags": {
1398
+ "all": {
1399
+ "char": "A",
1400
+ "description": "include apps in all teams",
1401
+ "name": "all",
1402
+ "allowNo": false,
1403
+ "type": "boolean"
1404
+ },
1405
+ "json": {
1406
+ "char": "j",
1407
+ "description": "output in json format",
1408
+ "name": "json",
1409
+ "allowNo": false,
1410
+ "type": "boolean"
1411
+ },
1412
+ "space": {
1413
+ "char": "s",
1414
+ "description": "filter by space",
1415
+ "name": "space",
1416
+ "hasDynamicHelp": false,
1417
+ "multiple": false,
1418
+ "type": "option"
1419
+ },
1420
+ "personal": {
1421
+ "char": "p",
1422
+ "description": "list apps in personal account when a default team is set",
1423
+ "name": "personal",
1424
+ "allowNo": false,
1425
+ "type": "boolean"
1426
+ },
1427
+ "internal-routing": {
1428
+ "char": "i",
1429
+ "description": "filter to Internal Web Apps",
1430
+ "hidden": true,
1431
+ "name": "internal-routing",
1432
+ "allowNo": false,
1433
+ "type": "boolean"
1434
+ },
1435
+ "team": {
1436
+ "char": "t",
1437
+ "description": "team to use",
1438
+ "name": "team",
1439
+ "hasDynamicHelp": false,
1440
+ "multiple": false,
1441
+ "type": "option"
1442
+ }
1443
+ },
1444
+ "hasDynamicHelp": false,
1445
+ "hiddenAliases": [
1446
+ "list",
1447
+ "apps:list"
1448
+ ],
1449
+ "id": "apps",
1450
+ "pluginAlias": "heroku",
1451
+ "pluginName": "heroku",
1452
+ "pluginType": "core",
1453
+ "strict": true,
1454
+ "topic": "apps",
1455
+ "isESM": false,
1456
+ "relativePath": [
1457
+ "lib",
1458
+ "commands",
1459
+ "apps",
1460
+ "index.js"
1461
+ ]
1462
+ },
1463
+ "apps:info": {
1482
1464
  "aliases": [],
1483
1465
  "args": {
1484
- "addon": {
1485
- "name": "addon",
1486
- "required": true
1466
+ "app": {
1467
+ "hidden": true,
1468
+ "name": "app"
1487
1469
  }
1488
1470
  },
1489
- "description": "open an add-on's Dev Center documentation in your browser",
1471
+ "description": "show detailed app information",
1472
+ "examples": [
1473
+ "$ heroku apps:info",
1474
+ "$ heroku apps:info --shell"
1475
+ ],
1476
+ "flags": {
1477
+ "app": {
1478
+ "char": "a",
1479
+ "description": "app to run command against",
1480
+ "name": "app",
1481
+ "hasDynamicHelp": false,
1482
+ "multiple": false,
1483
+ "type": "option"
1484
+ },
1485
+ "remote": {
1486
+ "char": "r",
1487
+ "description": "git remote of app to use",
1488
+ "name": "remote",
1489
+ "hasDynamicHelp": false,
1490
+ "multiple": false,
1491
+ "type": "option"
1492
+ },
1493
+ "shell": {
1494
+ "char": "s",
1495
+ "description": "output more shell friendly key/value pairs",
1496
+ "name": "shell",
1497
+ "allowNo": false,
1498
+ "type": "boolean"
1499
+ },
1500
+ "extended": {
1501
+ "char": "x",
1502
+ "hidden": true,
1503
+ "name": "extended",
1504
+ "allowNo": false,
1505
+ "type": "boolean"
1506
+ },
1507
+ "json": {
1508
+ "char": "j",
1509
+ "description": "output in json format",
1510
+ "name": "json",
1511
+ "allowNo": false,
1512
+ "type": "boolean"
1513
+ }
1514
+ },
1515
+ "hasDynamicHelp": false,
1516
+ "hiddenAliases": [
1517
+ "info"
1518
+ ],
1519
+ "id": "apps:info",
1520
+ "pluginAlias": "heroku",
1521
+ "pluginName": "heroku",
1522
+ "pluginType": "core",
1523
+ "strict": true,
1524
+ "topic": "apps",
1525
+ "help": "$ heroku apps:info\n=== example\nGit URL: https://git.heroku.com/example.git\nRepo Size: 5M\n...\n\n$ heroku apps:info --shell\ngit_url=https://git.heroku.com/example.git\nrepo_size=5000000\n...",
1526
+ "isESM": false,
1527
+ "relativePath": [
1528
+ "lib",
1529
+ "commands",
1530
+ "apps",
1531
+ "info.js"
1532
+ ]
1533
+ },
1534
+ "apps:join": {
1535
+ "aliases": [
1536
+ "join"
1537
+ ],
1538
+ "args": {},
1539
+ "description": "add yourself to a team app",
1490
1540
  "flags": {
1491
- "show-url": {
1492
- "description": "show URL, do not open browser",
1493
- "name": "show-url",
1494
- "allowNo": false,
1495
- "type": "boolean"
1496
- },
1497
1541
  "app": {
1498
1542
  "char": "a",
1499
1543
  "description": "app to run command against",
1500
1544
  "name": "app",
1545
+ "required": true,
1501
1546
  "hasDynamicHelp": false,
1502
1547
  "multiple": false,
1503
1548
  "type": "option"
@@ -1513,46 +1558,33 @@
1513
1558
  },
1514
1559
  "hasDynamicHelp": false,
1515
1560
  "hiddenAliases": [],
1516
- "id": "addons:docs",
1561
+ "id": "apps:join",
1517
1562
  "pluginAlias": "heroku",
1518
1563
  "pluginName": "heroku",
1519
1564
  "pluginType": "core",
1520
1565
  "strict": true,
1521
- "topic": "addons",
1566
+ "topic": "apps",
1522
1567
  "isESM": false,
1523
1568
  "relativePath": [
1524
1569
  "lib",
1525
1570
  "commands",
1526
- "addons",
1527
- "docs.js"
1571
+ "apps",
1572
+ "join.js"
1528
1573
  ]
1529
1574
  },
1530
- "addons": {
1531
- "aliases": [],
1532
- "args": {},
1533
- "description": "Lists your add-ons and attachments.\n\n The default filter applied depends on whether you are in a Heroku app\n directory. If so, the --app flag is implied. If not, the default of --all\n is implied. Explicitly providing either flag overrides the default\n behavior.\n ",
1534
- "examples": [
1535
- "$ heroku addons --all",
1536
- "$ heroku addons --app acme-inc-www"
1575
+ "apps:leave": {
1576
+ "aliases": [
1577
+ "leave"
1537
1578
  ],
1579
+ "args": {},
1580
+ "description": "remove yourself from a team app",
1581
+ "examples": "heroku apps:leave -a APP",
1538
1582
  "flags": {
1539
- "all": {
1540
- "char": "A",
1541
- "description": "show add-ons and attachments for all accessible apps",
1542
- "name": "all",
1543
- "allowNo": false,
1544
- "type": "boolean"
1545
- },
1546
- "json": {
1547
- "description": "return add-ons in json format",
1548
- "name": "json",
1549
- "allowNo": false,
1550
- "type": "boolean"
1551
- },
1552
1583
  "app": {
1553
1584
  "char": "a",
1554
1585
  "description": "app to run command against",
1555
1586
  "name": "app",
1587
+ "required": true,
1556
1588
  "hasDynamicHelp": false,
1557
1589
  "multiple": false,
1558
1590
  "type": "option"
@@ -1568,35 +1600,33 @@
1568
1600
  },
1569
1601
  "hasDynamicHelp": false,
1570
1602
  "hiddenAliases": [],
1571
- "id": "addons",
1603
+ "id": "apps:leave",
1572
1604
  "pluginAlias": "heroku",
1573
1605
  "pluginName": "heroku",
1574
1606
  "pluginType": "core",
1575
1607
  "strict": true,
1576
- "usage": "addons [--all|--app APP]",
1577
- "topic": "addons",
1608
+ "topic": "apps",
1609
+ "example": "heroku apps:leave -a APP",
1578
1610
  "isESM": false,
1579
1611
  "relativePath": [
1580
1612
  "lib",
1581
1613
  "commands",
1582
- "addons",
1583
- "index.js"
1614
+ "apps",
1615
+ "leave.js"
1584
1616
  ]
1585
1617
  },
1586
- "addons:info": {
1587
- "aliases": [],
1588
- "args": {
1589
- "addon": {
1590
- "name": "addon",
1591
- "required": true
1592
- }
1593
- },
1594
- "description": "show detailed add-on resource and attachment information",
1618
+ "apps:lock": {
1619
+ "aliases": [
1620
+ "lock"
1621
+ ],
1622
+ "args": {},
1623
+ "description": "prevent team members from joining an app",
1595
1624
  "flags": {
1596
1625
  "app": {
1597
1626
  "char": "a",
1598
1627
  "description": "app to run command against",
1599
1628
  "name": "app",
1629
+ "required": true,
1600
1630
  "hasDynamicHelp": false,
1601
1631
  "multiple": false,
1602
1632
  "type": "option"
@@ -1612,41 +1642,39 @@
1612
1642
  },
1613
1643
  "hasDynamicHelp": false,
1614
1644
  "hiddenAliases": [],
1615
- "id": "addons:info",
1645
+ "id": "apps:lock",
1616
1646
  "pluginAlias": "heroku",
1617
1647
  "pluginName": "heroku",
1618
1648
  "pluginType": "core",
1619
1649
  "strict": true,
1620
- "usage": "addons:info ADDON",
1621
- "topic": "addons",
1650
+ "topic": "apps",
1622
1651
  "isESM": false,
1623
1652
  "relativePath": [
1624
1653
  "lib",
1625
1654
  "commands",
1626
- "addons",
1627
- "info.js"
1655
+ "apps",
1656
+ "lock.js"
1628
1657
  ]
1629
1658
  },
1630
- "addons:open": {
1659
+ "apps:open": {
1631
1660
  "aliases": [],
1632
1661
  "args": {
1633
- "addon": {
1634
- "name": "addon",
1635
- "required": true
1662
+ "path": {
1663
+ "name": "path",
1664
+ "required": false
1636
1665
  }
1637
1666
  },
1638
- "description": "open an add-on's dashboard in your browser",
1667
+ "description": "open the app in a web browser",
1668
+ "examples": [
1669
+ "$ heroku open -a myapp",
1670
+ "$ heroku open -a myapp /foo"
1671
+ ],
1639
1672
  "flags": {
1640
- "show-url": {
1641
- "description": "show URL, do not open browser",
1642
- "name": "show-url",
1643
- "allowNo": false,
1644
- "type": "boolean"
1645
- },
1646
1673
  "app": {
1647
1674
  "char": "a",
1648
1675
  "description": "app to run command against",
1649
1676
  "name": "app",
1677
+ "required": true,
1650
1678
  "hasDynamicHelp": false,
1651
1679
  "multiple": false,
1652
1680
  "type": "option"
@@ -1661,130 +1689,102 @@
1661
1689
  }
1662
1690
  },
1663
1691
  "hasDynamicHelp": false,
1664
- "hiddenAliases": [],
1665
- "id": "addons:open",
1692
+ "hiddenAliases": [
1693
+ "open"
1694
+ ],
1695
+ "id": "apps:open",
1666
1696
  "pluginAlias": "heroku",
1667
1697
  "pluginName": "heroku",
1668
1698
  "pluginType": "core",
1669
1699
  "strict": true,
1670
- "topic": "addons",
1700
+ "topic": "apps",
1671
1701
  "isESM": false,
1672
1702
  "relativePath": [
1673
1703
  "lib",
1674
1704
  "commands",
1675
- "addons",
1705
+ "apps",
1676
1706
  "open.js"
1677
1707
  ]
1678
1708
  },
1679
- "addons:plans": {
1709
+ "apps:rename": {
1680
1710
  "aliases": [],
1681
1711
  "args": {
1682
- "service": {
1683
- "name": "service",
1712
+ "newname": {
1713
+ "name": "newname",
1684
1714
  "required": true
1685
1715
  }
1686
1716
  },
1687
- "description": "list all available plans for an add-on service",
1717
+ "description": "rename an app",
1718
+ "examples": [
1719
+ "$ heroku apps:rename --app oldname newname"
1720
+ ],
1688
1721
  "flags": {
1689
- "json": {
1690
- "description": "output in json format",
1691
- "name": "json",
1692
- "allowNo": false,
1693
- "type": "boolean"
1694
- }
1695
- },
1696
- "hasDynamicHelp": false,
1697
- "hiddenAliases": [],
1698
- "id": "addons:plans",
1699
- "pluginAlias": "heroku",
1700
- "pluginName": "heroku",
1701
- "pluginType": "core",
1702
- "strict": true,
1703
- "topic": "addons",
1704
- "isESM": false,
1705
- "relativePath": [
1706
- "lib",
1707
- "commands",
1708
- "addons",
1709
- "plans.js"
1710
- ]
1711
- },
1712
- "addons:rename": {
1713
- "aliases": [],
1714
- "args": {
1715
- "addon_name": {
1716
- "name": "addon_name",
1717
- "required": true
1722
+ "app": {
1723
+ "char": "a",
1724
+ "description": "app to run command against",
1725
+ "name": "app",
1726
+ "required": true,
1727
+ "hasDynamicHelp": false,
1728
+ "multiple": false,
1729
+ "type": "option"
1718
1730
  },
1719
- "new_name": {
1720
- "name": "new_name",
1721
- "required": true
1731
+ "remote": {
1732
+ "char": "r",
1733
+ "description": "git remote of app to use",
1734
+ "name": "remote",
1735
+ "hasDynamicHelp": false,
1736
+ "multiple": false,
1737
+ "type": "option"
1722
1738
  }
1723
1739
  },
1724
- "description": "rename an add-on",
1725
- "flags": {},
1726
1740
  "hasDynamicHelp": false,
1727
- "hiddenAliases": [],
1728
- "id": "addons:rename",
1741
+ "hiddenAliases": [
1742
+ "rename"
1743
+ ],
1744
+ "id": "apps:rename",
1729
1745
  "pluginAlias": "heroku",
1730
1746
  "pluginName": "heroku",
1731
1747
  "pluginType": "core",
1732
1748
  "strict": true,
1733
- "topic": "addons",
1749
+ "help": "This will locally update the git remote if it is set to the old app.",
1750
+ "topic": "apps",
1734
1751
  "isESM": false,
1735
1752
  "relativePath": [
1736
1753
  "lib",
1737
1754
  "commands",
1738
- "addons",
1755
+ "apps",
1739
1756
  "rename.js"
1740
1757
  ]
1741
1758
  },
1742
- "addons:services": {
1759
+ "apps:transfer": {
1743
1760
  "aliases": [],
1744
- "args": {},
1745
- "description": "list all available add-on services",
1746
- "flags": {
1747
- "json": {
1748
- "description": "output in json format",
1749
- "name": "json",
1750
- "allowNo": false,
1751
- "type": "boolean"
1752
- }
1753
- },
1754
- "hasDynamicHelp": false,
1755
- "hiddenAliases": [],
1756
- "id": "addons:services",
1757
- "pluginAlias": "heroku",
1758
- "pluginName": "heroku",
1759
- "pluginType": "core",
1760
- "strict": true,
1761
- "topic": "addons",
1762
- "isESM": false,
1763
- "relativePath": [
1764
- "lib",
1765
- "commands",
1766
- "addons",
1767
- "services.js"
1768
- ]
1769
- },
1770
- "addons:upgrade": {
1771
- "aliases": [
1772
- "addons:downgrade"
1773
- ],
1774
1761
  "args": {
1775
- "addon": {
1776
- "name": "addon",
1762
+ "recipient": {
1763
+ "description": "user or team to transfer applications to",
1764
+ "name": "recipient",
1777
1765
  "required": true
1778
- },
1779
- "plan": {
1780
- "name": "plan"
1781
1766
  }
1782
1767
  },
1783
- "description": "change add-on plan.\n See available plans with `heroku addons:plans SERVICE`.\n\n Note that `heroku addons:upgrade` and `heroku addons:downgrade` are the same. Either one can be used to change an add-on plan up or down.\n\n https://devcenter.heroku.com/articles/managing-add-ons\n ",
1768
+ "description": "transfer applications to another user or team",
1784
1769
  "examples": [
1785
- "Upgrade an add-on by service name:\n$ heroku addons:upgrade heroku-redis:premium-2\n\nUpgrade a specific add-on:\n$ heroku addons:upgrade swimming-briskly-123 heroku-redis:premium-2"
1770
+ "$ heroku apps:transfer collaborator@example.com\nTransferring example to collaborator@example.com... done\n\n$ heroku apps:transfer acme-widgets\nTransferring example to acme-widgets... done\n\n$ heroku apps:transfer --bulk acme-widgets\n..."
1786
1771
  ],
1787
1772
  "flags": {
1773
+ "locked": {
1774
+ "char": "l",
1775
+ "description": "lock the app upon transfer",
1776
+ "name": "locked",
1777
+ "required": false,
1778
+ "allowNo": false,
1779
+ "type": "boolean"
1780
+ },
1781
+ "bulk": {
1782
+ "description": "transfer applications in bulk",
1783
+ "name": "bulk",
1784
+ "required": false,
1785
+ "allowNo": false,
1786
+ "type": "boolean"
1787
+ },
1788
1788
  "app": {
1789
1789
  "char": "a",
1790
1790
  "description": "app to run command against",
@@ -1800,44 +1800,44 @@
1800
1800
  "hasDynamicHelp": false,
1801
1801
  "multiple": false,
1802
1802
  "type": "option"
1803
+ },
1804
+ "confirm": {
1805
+ "char": "c",
1806
+ "hidden": true,
1807
+ "name": "confirm",
1808
+ "hasDynamicHelp": false,
1809
+ "multiple": false,
1810
+ "type": "option"
1803
1811
  }
1804
1812
  },
1805
1813
  "hasDynamicHelp": false,
1806
1814
  "hiddenAliases": [],
1807
- "id": "addons:upgrade",
1815
+ "id": "apps:transfer",
1808
1816
  "pluginAlias": "heroku",
1809
1817
  "pluginName": "heroku",
1810
1818
  "pluginType": "core",
1811
1819
  "strict": true,
1812
- "topic": "addons",
1820
+ "topic": "apps",
1813
1821
  "isESM": false,
1814
1822
  "relativePath": [
1815
1823
  "lib",
1816
1824
  "commands",
1817
- "addons",
1818
- "upgrade.js"
1825
+ "apps",
1826
+ "transfer.js"
1819
1827
  ]
1820
1828
  },
1821
- "addons:wait": {
1822
- "aliases": [],
1823
- "args": {
1824
- "addon": {
1825
- "name": "addon"
1826
- }
1827
- },
1828
- "description": "show provisioning status of the add-ons on the app",
1829
+ "apps:unlock": {
1830
+ "aliases": [
1831
+ "unlock"
1832
+ ],
1833
+ "args": {},
1834
+ "description": "unlock an app so any team member can join",
1829
1835
  "flags": {
1830
- "wait-interval": {
1831
- "description": "how frequently to poll in seconds",
1832
- "name": "wait-interval",
1833
- "hasDynamicHelp": false,
1834
- "multiple": false,
1835
- "type": "option"
1836
- },
1837
1836
  "app": {
1838
1837
  "char": "a",
1839
1838
  "description": "app to run command against",
1840
1839
  "name": "app",
1840
+ "required": true,
1841
1841
  "hasDynamicHelp": false,
1842
1842
  "multiple": false,
1843
1843
  "type": "option"
@@ -1853,18 +1853,18 @@
1853
1853
  },
1854
1854
  "hasDynamicHelp": false,
1855
1855
  "hiddenAliases": [],
1856
- "id": "addons:wait",
1856
+ "id": "apps:unlock",
1857
1857
  "pluginAlias": "heroku",
1858
1858
  "pluginName": "heroku",
1859
1859
  "pluginType": "core",
1860
1860
  "strict": true,
1861
- "topic": "addons",
1861
+ "topic": "apps",
1862
1862
  "isESM": false,
1863
1863
  "relativePath": [
1864
1864
  "lib",
1865
1865
  "commands",
1866
- "addons",
1867
- "wait.js"
1866
+ "apps",
1867
+ "unlock.js"
1868
1868
  ]
1869
1869
  },
1870
1870
  "auth:login": {
@@ -5108,6 +5108,117 @@
5108
5108
  "info.js"
5109
5109
  ]
5110
5110
  },
5111
+ "git:clone": {
5112
+ "aliases": [],
5113
+ "args": {
5114
+ "DIRECTORY": {
5115
+ "description": "where to clone the app",
5116
+ "name": "DIRECTORY"
5117
+ }
5118
+ },
5119
+ "description": "clones a heroku app to your local machine at DIRECTORY (defaults to app name)",
5120
+ "examples": "$ heroku git:clone -a example\nCloning into 'example'...\nremote: Counting objects: 42, done.\n...",
5121
+ "flags": {
5122
+ "app": {
5123
+ "char": "a",
5124
+ "description": "the Heroku app to use",
5125
+ "env": "HEROKU_APP",
5126
+ "name": "app",
5127
+ "required": true,
5128
+ "hasDynamicHelp": false,
5129
+ "multiple": false,
5130
+ "type": "option"
5131
+ },
5132
+ "remote": {
5133
+ "char": "r",
5134
+ "description": "the git remote to create, default \"heroku\"",
5135
+ "name": "remote",
5136
+ "hasDynamicHelp": false,
5137
+ "multiple": false,
5138
+ "type": "option"
5139
+ }
5140
+ },
5141
+ "hasDynamicHelp": false,
5142
+ "hiddenAliases": [],
5143
+ "id": "git:clone",
5144
+ "pluginAlias": "heroku",
5145
+ "pluginName": "heroku",
5146
+ "pluginType": "core",
5147
+ "strict": true,
5148
+ "example": "$ heroku git:clone -a example\nCloning into 'example'...\nremote: Counting objects: 42, done.\n...",
5149
+ "isESM": false,
5150
+ "relativePath": [
5151
+ "lib",
5152
+ "commands",
5153
+ "git",
5154
+ "clone.js"
5155
+ ]
5156
+ },
5157
+ "git:credentials": {
5158
+ "aliases": [],
5159
+ "args": {
5160
+ "command": {
5161
+ "name": "command",
5162
+ "required": true
5163
+ }
5164
+ },
5165
+ "description": "internal command for git-credentials",
5166
+ "flags": {},
5167
+ "hasDynamicHelp": false,
5168
+ "hidden": true,
5169
+ "hiddenAliases": [],
5170
+ "id": "git:credentials",
5171
+ "pluginAlias": "heroku",
5172
+ "pluginName": "heroku",
5173
+ "pluginType": "core",
5174
+ "strict": true,
5175
+ "isESM": false,
5176
+ "relativePath": [
5177
+ "lib",
5178
+ "commands",
5179
+ "git",
5180
+ "credentials.js"
5181
+ ]
5182
+ },
5183
+ "git:remote": {
5184
+ "aliases": [],
5185
+ "args": {},
5186
+ "description": "adds a git remote to an app repo\nextra arguments will be passed to git remote add\n",
5187
+ "examples": "# set git remote heroku to https://git.heroku.com/example.git\n $ heroku git:remote -a example\n\n # set git remote heroku-staging to https://git.heroku.com/example.git\n $ heroku git:remote --remote heroku-staging -a example",
5188
+ "flags": {
5189
+ "app": {
5190
+ "char": "a",
5191
+ "description": "the Heroku app to use",
5192
+ "name": "app",
5193
+ "hasDynamicHelp": false,
5194
+ "multiple": false,
5195
+ "type": "option"
5196
+ },
5197
+ "remote": {
5198
+ "char": "r",
5199
+ "description": "the git remote to create",
5200
+ "name": "remote",
5201
+ "hasDynamicHelp": false,
5202
+ "multiple": false,
5203
+ "type": "option"
5204
+ }
5205
+ },
5206
+ "hasDynamicHelp": false,
5207
+ "hiddenAliases": [],
5208
+ "id": "git:remote",
5209
+ "pluginAlias": "heroku",
5210
+ "pluginName": "heroku",
5211
+ "pluginType": "core",
5212
+ "strict": false,
5213
+ "example": "# set git remote heroku to https://git.heroku.com/example.git\n $ heroku git:remote -a example\n\n # set git remote heroku-staging to https://git.heroku.com/example.git\n $ heroku git:remote --remote heroku-staging -a example",
5214
+ "isESM": false,
5215
+ "relativePath": [
5216
+ "lib",
5217
+ "commands",
5218
+ "git",
5219
+ "remote.js"
5220
+ ]
5221
+ },
5111
5222
  "keys:add": {
5112
5223
  "aliases": [],
5113
5224
  "args": {
@@ -5216,129 +5327,18 @@
5216
5327
  "flags": {},
5217
5328
  "hasDynamicHelp": false,
5218
5329
  "hiddenAliases": [],
5219
- "id": "keys:remove",
5220
- "pluginAlias": "heroku",
5221
- "pluginName": "heroku",
5222
- "pluginType": "core",
5223
- "strict": true,
5224
- "example": "$ heroku keys:remove email@example.com\nRemoving email@example.com SSH key... done",
5225
- "isESM": false,
5226
- "relativePath": [
5227
- "lib",
5228
- "commands",
5229
- "keys",
5230
- "remove.js"
5231
- ]
5232
- },
5233
- "git:clone": {
5234
- "aliases": [],
5235
- "args": {
5236
- "DIRECTORY": {
5237
- "description": "where to clone the app",
5238
- "name": "DIRECTORY"
5239
- }
5240
- },
5241
- "description": "clones a heroku app to your local machine at DIRECTORY (defaults to app name)",
5242
- "examples": "$ heroku git:clone -a example\nCloning into 'example'...\nremote: Counting objects: 42, done.\n...",
5243
- "flags": {
5244
- "app": {
5245
- "char": "a",
5246
- "description": "the Heroku app to use",
5247
- "env": "HEROKU_APP",
5248
- "name": "app",
5249
- "required": true,
5250
- "hasDynamicHelp": false,
5251
- "multiple": false,
5252
- "type": "option"
5253
- },
5254
- "remote": {
5255
- "char": "r",
5256
- "description": "the git remote to create, default \"heroku\"",
5257
- "name": "remote",
5258
- "hasDynamicHelp": false,
5259
- "multiple": false,
5260
- "type": "option"
5261
- }
5262
- },
5263
- "hasDynamicHelp": false,
5264
- "hiddenAliases": [],
5265
- "id": "git:clone",
5266
- "pluginAlias": "heroku",
5267
- "pluginName": "heroku",
5268
- "pluginType": "core",
5269
- "strict": true,
5270
- "example": "$ heroku git:clone -a example\nCloning into 'example'...\nremote: Counting objects: 42, done.\n...",
5271
- "isESM": false,
5272
- "relativePath": [
5273
- "lib",
5274
- "commands",
5275
- "git",
5276
- "clone.js"
5277
- ]
5278
- },
5279
- "git:credentials": {
5280
- "aliases": [],
5281
- "args": {
5282
- "command": {
5283
- "name": "command",
5284
- "required": true
5285
- }
5286
- },
5287
- "description": "internal command for git-credentials",
5288
- "flags": {},
5289
- "hasDynamicHelp": false,
5290
- "hidden": true,
5291
- "hiddenAliases": [],
5292
- "id": "git:credentials",
5293
- "pluginAlias": "heroku",
5294
- "pluginName": "heroku",
5295
- "pluginType": "core",
5296
- "strict": true,
5297
- "isESM": false,
5298
- "relativePath": [
5299
- "lib",
5300
- "commands",
5301
- "git",
5302
- "credentials.js"
5303
- ]
5304
- },
5305
- "git:remote": {
5306
- "aliases": [],
5307
- "args": {},
5308
- "description": "adds a git remote to an app repo\nextra arguments will be passed to git remote add\n",
5309
- "examples": "# set git remote heroku to https://git.heroku.com/example.git\n $ heroku git:remote -a example\n\n # set git remote heroku-staging to https://git.heroku.com/example.git\n $ heroku git:remote --remote heroku-staging -a example",
5310
- "flags": {
5311
- "app": {
5312
- "char": "a",
5313
- "description": "the Heroku app to use",
5314
- "name": "app",
5315
- "hasDynamicHelp": false,
5316
- "multiple": false,
5317
- "type": "option"
5318
- },
5319
- "remote": {
5320
- "char": "r",
5321
- "description": "the git remote to create",
5322
- "name": "remote",
5323
- "hasDynamicHelp": false,
5324
- "multiple": false,
5325
- "type": "option"
5326
- }
5327
- },
5328
- "hasDynamicHelp": false,
5329
- "hiddenAliases": [],
5330
- "id": "git:remote",
5330
+ "id": "keys:remove",
5331
5331
  "pluginAlias": "heroku",
5332
5332
  "pluginName": "heroku",
5333
5333
  "pluginType": "core",
5334
- "strict": false,
5335
- "example": "# set git remote heroku to https://git.heroku.com/example.git\n $ heroku git:remote -a example\n\n # set git remote heroku-staging to https://git.heroku.com/example.git\n $ heroku git:remote --remote heroku-staging -a example",
5334
+ "strict": true,
5335
+ "example": "$ heroku keys:remove email@example.com\nRemoving email@example.com SSH key... done",
5336
5336
  "isESM": false,
5337
5337
  "relativePath": [
5338
5338
  "lib",
5339
5339
  "commands",
5340
- "git",
5341
- "remote.js"
5340
+ "keys",
5341
+ "remove.js"
5342
5342
  ]
5343
5343
  },
5344
5344
  "labs:disable": {
@@ -5945,6 +5945,63 @@
5945
5945
  "set.js"
5946
5946
  ]
5947
5947
  },
5948
+ "notifications": {
5949
+ "aliases": [],
5950
+ "args": {},
5951
+ "description": "display notifications",
5952
+ "flags": {
5953
+ "app": {
5954
+ "char": "a",
5955
+ "description": "app to run command against",
5956
+ "name": "app",
5957
+ "required": false,
5958
+ "hasDynamicHelp": false,
5959
+ "multiple": false,
5960
+ "type": "option"
5961
+ },
5962
+ "remote": {
5963
+ "char": "r",
5964
+ "description": "git remote of app to use",
5965
+ "name": "remote",
5966
+ "hasDynamicHelp": false,
5967
+ "multiple": false,
5968
+ "type": "option"
5969
+ },
5970
+ "all": {
5971
+ "description": "view all notifications (not just the ones for the current app)",
5972
+ "name": "all",
5973
+ "allowNo": false,
5974
+ "type": "boolean"
5975
+ },
5976
+ "json": {
5977
+ "description": "output in json format",
5978
+ "name": "json",
5979
+ "allowNo": false,
5980
+ "type": "boolean"
5981
+ },
5982
+ "read": {
5983
+ "description": "show notifications already read",
5984
+ "name": "read",
5985
+ "allowNo": false,
5986
+ "type": "boolean"
5987
+ }
5988
+ },
5989
+ "hasDynamicHelp": false,
5990
+ "hiddenAliases": [],
5991
+ "id": "notifications",
5992
+ "pluginAlias": "heroku",
5993
+ "pluginName": "heroku",
5994
+ "pluginType": "core",
5995
+ "strict": true,
5996
+ "topic": "notifications",
5997
+ "isESM": false,
5998
+ "relativePath": [
5999
+ "lib",
6000
+ "commands",
6001
+ "notifications",
6002
+ "index.js"
6003
+ ]
6004
+ },
5948
6005
  "orgs": {
5949
6006
  "aliases": [],
5950
6007
  "args": {},
@@ -6017,63 +6074,6 @@
6017
6074
  "open.js"
6018
6075
  ]
6019
6076
  },
6020
- "notifications": {
6021
- "aliases": [],
6022
- "args": {},
6023
- "description": "display notifications",
6024
- "flags": {
6025
- "app": {
6026
- "char": "a",
6027
- "description": "app to run command against",
6028
- "name": "app",
6029
- "required": false,
6030
- "hasDynamicHelp": false,
6031
- "multiple": false,
6032
- "type": "option"
6033
- },
6034
- "remote": {
6035
- "char": "r",
6036
- "description": "git remote of app to use",
6037
- "name": "remote",
6038
- "hasDynamicHelp": false,
6039
- "multiple": false,
6040
- "type": "option"
6041
- },
6042
- "all": {
6043
- "description": "view all notifications (not just the ones for the current app)",
6044
- "name": "all",
6045
- "allowNo": false,
6046
- "type": "boolean"
6047
- },
6048
- "json": {
6049
- "description": "output in json format",
6050
- "name": "json",
6051
- "allowNo": false,
6052
- "type": "boolean"
6053
- },
6054
- "read": {
6055
- "description": "show notifications already read",
6056
- "name": "read",
6057
- "allowNo": false,
6058
- "type": "boolean"
6059
- }
6060
- },
6061
- "hasDynamicHelp": false,
6062
- "hiddenAliases": [],
6063
- "id": "notifications",
6064
- "pluginAlias": "heroku",
6065
- "pluginName": "heroku",
6066
- "pluginType": "core",
6067
- "strict": true,
6068
- "topic": "notifications",
6069
- "isESM": false,
6070
- "relativePath": [
6071
- "lib",
6072
- "commands",
6073
- "notifications",
6074
- "index.js"
6075
- ]
6076
- },
6077
6077
  "pg:bloat": {
6078
6078
  "aliases": [],
6079
6079
  "args": {
@@ -12117,6 +12117,52 @@
12117
12117
  "auto-explain.js"
12118
12118
  ]
12119
12119
  },
12120
+ "pg:settings:explain-data-connector-details": {
12121
+ "aliases": [],
12122
+ "args": {
12123
+ "database": {
12124
+ "name": "database"
12125
+ },
12126
+ "value": {
12127
+ "name": "value"
12128
+ }
12129
+ },
12130
+ "description": "displays stats on replication slots on your database, the default value is \"off\"\n",
12131
+ "flags": {
12132
+ "app": {
12133
+ "char": "a",
12134
+ "description": "app to run command against",
12135
+ "name": "app",
12136
+ "required": true,
12137
+ "hasDynamicHelp": false,
12138
+ "multiple": false,
12139
+ "type": "option"
12140
+ },
12141
+ "remote": {
12142
+ "char": "r",
12143
+ "description": "git remote of app to use",
12144
+ "name": "remote",
12145
+ "hasDynamicHelp": false,
12146
+ "multiple": false,
12147
+ "type": "option"
12148
+ }
12149
+ },
12150
+ "hasDynamicHelp": false,
12151
+ "hiddenAliases": [],
12152
+ "id": "pg:settings:explain-data-connector-details",
12153
+ "pluginAlias": "heroku",
12154
+ "pluginName": "heroku",
12155
+ "pluginType": "core",
12156
+ "topic": "pg",
12157
+ "isESM": false,
12158
+ "relativePath": [
12159
+ "lib",
12160
+ "commands",
12161
+ "pg",
12162
+ "settings",
12163
+ "explain-data-connector-details.js"
12164
+ ]
12165
+ },
12120
12166
  "pg:settings": {
12121
12167
  "aliases": [],
12122
12168
  "args": {
@@ -12299,6 +12345,58 @@
12299
12345
  "log-min-duration-statement.js"
12300
12346
  ]
12301
12347
  },
12348
+ "pg:settings:log-min-error-statement": {
12349
+ "aliases": [],
12350
+ "args": {
12351
+ "database": {
12352
+ "name": "database"
12353
+ },
12354
+ "value": {
12355
+ "name": "value",
12356
+ "options": [
12357
+ "error",
12358
+ "log",
12359
+ "fatal",
12360
+ "panic"
12361
+ ]
12362
+ }
12363
+ },
12364
+ "description": "log-min-error-statement controls the logging of SQL statements that cause an error at a specified severity level.\nThis setting is useful to prevent logging SQL queries that might contain sensitive information.\nUse this setting to prevent logging SQL queries that contain sensitive information. Default is \"error\".\n",
12365
+ "flags": {
12366
+ "app": {
12367
+ "char": "a",
12368
+ "description": "app to run command against",
12369
+ "name": "app",
12370
+ "required": true,
12371
+ "hasDynamicHelp": false,
12372
+ "multiple": false,
12373
+ "type": "option"
12374
+ },
12375
+ "remote": {
12376
+ "char": "r",
12377
+ "description": "git remote of app to use",
12378
+ "name": "remote",
12379
+ "hasDynamicHelp": false,
12380
+ "multiple": false,
12381
+ "type": "option"
12382
+ }
12383
+ },
12384
+ "hasDynamicHelp": false,
12385
+ "hiddenAliases": [],
12386
+ "id": "pg:settings:log-min-error-statement",
12387
+ "pluginAlias": "heroku",
12388
+ "pluginName": "heroku",
12389
+ "pluginType": "core",
12390
+ "topic": "pg",
12391
+ "isESM": false,
12392
+ "relativePath": [
12393
+ "lib",
12394
+ "commands",
12395
+ "pg",
12396
+ "settings",
12397
+ "log-min-error-statement.js"
12398
+ ]
12399
+ },
12302
12400
  "pg:settings:log-statement": {
12303
12401
  "aliases": [],
12304
12402
  "args": {
@@ -13590,6 +13688,59 @@
13590
13688
  "log-buffers.js"
13591
13689
  ]
13592
13690
  },
13691
+ "pg:settings:auto-explain:log-format": {
13692
+ "aliases": [],
13693
+ "args": {
13694
+ "database": {
13695
+ "name": "database"
13696
+ },
13697
+ "value": {
13698
+ "name": "value",
13699
+ "options": [
13700
+ "text",
13701
+ "json",
13702
+ "yaml",
13703
+ "xml"
13704
+ ]
13705
+ }
13706
+ },
13707
+ "description": "selects the EXPLAIN output format to be used\nThe allowed values are text, xml, json, and yaml. The default is text.\n",
13708
+ "flags": {
13709
+ "app": {
13710
+ "char": "a",
13711
+ "description": "app to run command against",
13712
+ "name": "app",
13713
+ "required": true,
13714
+ "hasDynamicHelp": false,
13715
+ "multiple": false,
13716
+ "type": "option"
13717
+ },
13718
+ "remote": {
13719
+ "char": "r",
13720
+ "description": "git remote of app to use",
13721
+ "name": "remote",
13722
+ "hasDynamicHelp": false,
13723
+ "multiple": false,
13724
+ "type": "option"
13725
+ }
13726
+ },
13727
+ "hasDynamicHelp": false,
13728
+ "hiddenAliases": [],
13729
+ "id": "pg:settings:auto-explain:log-format",
13730
+ "pluginAlias": "heroku",
13731
+ "pluginName": "heroku",
13732
+ "pluginType": "core",
13733
+ "topic": "pg",
13734
+ "isESM": false,
13735
+ "relativePath": [
13736
+ "lib",
13737
+ "commands",
13738
+ "pg",
13739
+ "settings",
13740
+ "auto-explain",
13741
+ "log-format.js"
13742
+ ]
13743
+ },
13593
13744
  "pg:settings:auto-explain:log-min-duration": {
13594
13745
  "aliases": [],
13595
13746
  "args": {
@@ -13779,5 +13930,5 @@
13779
13930
  ]
13780
13931
  }
13781
13932
  },
13782
- "version": "9.3.0-alpha.3"
13933
+ "version": "9.3.0-beta.0"
13783
13934
  }