heroku 10.1.0 → 10.1.1-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.
@@ -533,125 +533,124 @@
533
533
  "update.js"
534
534
  ]
535
535
  },
536
- "apps:create": {
536
+ "addons:attach": {
537
537
  "aliases": [],
538
538
  "args": {
539
- "app": {
540
- "description": "name of app to create",
541
- "name": "app",
542
- "required": false
539
+ "addon_name": {
540
+ "description": "unique identifier or globally unique name of the add-on",
541
+ "name": "addon_name",
542
+ "required": true
543
543
  }
544
544
  },
545
- "description": "creates a new app",
546
- "examples": [
547
- "$ heroku apps:create\nCreating app... done, stack is heroku-24\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"
548
- ],
545
+ "description": "attach an existing add-on resource to an app",
549
546
  "flags": {
550
- "app": {
551
- "hidden": true,
552
- "name": "app",
547
+ "as": {
548
+ "description": "name for add-on attachment",
549
+ "name": "as",
553
550
  "hasDynamicHelp": false,
554
551
  "multiple": false,
555
552
  "type": "option"
556
553
  },
557
- "addons": {
558
- "description": "comma-delimited list of addons to install",
559
- "name": "addons",
554
+ "credential": {
555
+ "description": "credential name for scoped access to Heroku Postgres",
556
+ "name": "credential",
560
557
  "hasDynamicHelp": false,
561
558
  "multiple": false,
562
559
  "type": "option"
563
560
  },
564
- "buildpack": {
565
- "char": "b",
566
- "description": "buildpack url to use for this app",
567
- "name": "buildpack",
561
+ "confirm": {
562
+ "description": "overwrite existing add-on attachment with same name",
563
+ "name": "confirm",
568
564
  "hasDynamicHelp": false,
569
565
  "multiple": false,
570
566
  "type": "option"
571
567
  },
572
- "manifest": {
573
- "char": "m",
574
- "description": "use heroku.yml settings for this app",
575
- "hidden": true,
576
- "name": "manifest",
577
- "allowNo": false,
578
- "type": "boolean"
579
- },
580
- "no-remote": {
581
- "char": "n",
582
- "description": "do not create a git remote",
583
- "name": "no-remote",
584
- "allowNo": false,
585
- "type": "boolean"
568
+ "app": {
569
+ "char": "a",
570
+ "description": "app to run command against",
571
+ "name": "app",
572
+ "required": true,
573
+ "hasDynamicHelp": false,
574
+ "multiple": false,
575
+ "type": "option"
586
576
  },
587
577
  "remote": {
588
578
  "char": "r",
589
- "description": "the git remote to create, default \"heroku\"",
579
+ "description": "git remote of app to use",
590
580
  "name": "remote",
591
- "default": "heroku",
592
581
  "hasDynamicHelp": false,
593
582
  "multiple": false,
594
583
  "type": "option"
595
- },
596
- "stack": {
597
- "char": "s",
598
- "description": "the stack to create the app on",
599
- "name": "stack",
584
+ }
585
+ },
586
+ "hasDynamicHelp": false,
587
+ "hiddenAliases": [],
588
+ "id": "addons:attach",
589
+ "pluginAlias": "heroku",
590
+ "pluginName": "heroku",
591
+ "pluginType": "core",
592
+ "strict": true,
593
+ "topic": "addons",
594
+ "isESM": false,
595
+ "relativePath": [
596
+ "lib",
597
+ "commands",
598
+ "addons",
599
+ "attach.js"
600
+ ]
601
+ },
602
+ "addons:create": {
603
+ "aliases": [],
604
+ "args": {
605
+ "service:plan": {
606
+ "description": "unique identifier or unique name of the add-on service plan",
607
+ "name": "service:plan",
608
+ "required": true
609
+ }
610
+ },
611
+ "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",
612
+ "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",
613
+ "flags": {
614
+ "name": {
615
+ "description": "name for the add-on resource",
616
+ "name": "name",
600
617
  "hasDynamicHelp": false,
601
618
  "multiple": false,
602
619
  "type": "option"
603
620
  },
604
- "space": {
605
- "description": "the private space to create the app in",
606
- "name": "space",
621
+ "as": {
622
+ "description": "name for the initial add-on attachment",
623
+ "name": "as",
607
624
  "hasDynamicHelp": false,
608
625
  "multiple": false,
609
626
  "type": "option"
610
627
  },
611
- "region": {
612
- "description": "specify region for the app to run in",
613
- "name": "region",
628
+ "confirm": {
629
+ "description": "overwrite existing config vars or existing add-on attachments",
630
+ "name": "confirm",
614
631
  "hasDynamicHelp": false,
615
632
  "multiple": false,
616
633
  "type": "option"
617
634
  },
618
- "internal-routing": {
619
- "description": "private space-only. create as an Internal Web App that is only routable in the local network.",
620
- "hidden": true,
621
- "name": "internal-routing",
635
+ "wait": {
636
+ "description": "watch add-on creation status and exit when complete",
637
+ "name": "wait",
622
638
  "allowNo": false,
623
639
  "type": "boolean"
624
640
  },
625
- "features": {
626
- "hidden": true,
627
- "name": "features",
628
- "hasDynamicHelp": false,
629
- "multiple": false,
630
- "type": "option"
631
- },
632
- "kernel": {
633
- "hidden": true,
634
- "name": "kernel",
641
+ "app": {
642
+ "char": "a",
643
+ "description": "app to run command against",
644
+ "name": "app",
645
+ "required": true,
635
646
  "hasDynamicHelp": false,
636
647
  "multiple": false,
637
648
  "type": "option"
638
649
  },
639
- "locked": {
640
- "hidden": true,
641
- "name": "locked",
642
- "allowNo": false,
643
- "type": "boolean"
644
- },
645
- "json": {
646
- "description": "output in json format",
647
- "name": "json",
648
- "allowNo": false,
649
- "type": "boolean"
650
- },
651
- "team": {
652
- "char": "t",
653
- "description": "team to use",
654
- "name": "team",
650
+ "remote": {
651
+ "char": "r",
652
+ "description": "git remote of app to use",
653
+ "name": "remote",
655
654
  "hasDynamicHelp": false,
656
655
  "multiple": false,
657
656
  "type": "option"
@@ -659,31 +658,57 @@
659
658
  },
660
659
  "hasDynamicHelp": false,
661
660
  "hiddenAliases": [
662
- "create"
661
+ "addons:add"
663
662
  ],
664
- "id": "apps:create",
663
+ "id": "addons:create",
665
664
  "pluginAlias": "heroku",
666
665
  "pluginName": "heroku",
667
666
  "pluginType": "core",
668
- "strict": true,
667
+ "strict": false,
668
+ "topic": "addons",
669
+ "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",
669
670
  "isESM": false,
670
671
  "relativePath": [
671
672
  "lib",
672
673
  "commands",
673
- "apps",
674
+ "addons",
674
675
  "create.js"
675
676
  ]
676
677
  },
677
- "apps:destroy": {
678
+ "addons:destroy": {
678
679
  "aliases": [],
679
680
  "args": {
680
- "app": {
681
- "hidden": true,
682
- "name": "app"
681
+ "addonName": {
682
+ "description": "unique identifier or globally unique name of the add-on",
683
+ "name": "addonName",
684
+ "required": true
683
685
  }
684
686
  },
685
- "description": "permanently destroy an app",
687
+ "description": "permanently destroy an add-on resource",
688
+ "examples": [
689
+ "addons:destroy [ADDON]... [flags]"
690
+ ],
686
691
  "flags": {
692
+ "force": {
693
+ "char": "f",
694
+ "description": "allow destruction even if connected to other apps",
695
+ "name": "force",
696
+ "allowNo": false,
697
+ "type": "boolean"
698
+ },
699
+ "confirm": {
700
+ "char": "c",
701
+ "name": "confirm",
702
+ "hasDynamicHelp": false,
703
+ "multiple": false,
704
+ "type": "option"
705
+ },
706
+ "wait": {
707
+ "description": "watch add-on destruction status and exit when complete",
708
+ "name": "wait",
709
+ "allowNo": false,
710
+ "type": "boolean"
711
+ },
687
712
  "app": {
688
713
  "char": "a",
689
714
  "description": "app to run command against",
@@ -699,38 +724,36 @@
699
724
  "hasDynamicHelp": false,
700
725
  "multiple": false,
701
726
  "type": "option"
702
- },
703
- "confirm": {
704
- "char": "c",
705
- "name": "confirm",
706
- "hasDynamicHelp": false,
707
- "multiple": false,
708
- "type": "option"
709
727
  }
710
728
  },
711
729
  "hasDynamicHelp": false,
712
730
  "hiddenAliases": [
713
- "destroy",
714
- "apps:delete"
731
+ "addons:remove"
715
732
  ],
716
- "id": "apps:destroy",
733
+ "id": "addons:destroy",
717
734
  "pluginAlias": "heroku",
718
735
  "pluginName": "heroku",
719
736
  "pluginType": "core",
720
- "strict": true,
721
- "help": "This will also destroy all add-ons on the app.",
737
+ "strict": false,
738
+ "topic": "addons",
722
739
  "isESM": false,
723
740
  "relativePath": [
724
741
  "lib",
725
742
  "commands",
726
- "apps",
743
+ "addons",
727
744
  "destroy.js"
728
745
  ]
729
746
  },
730
- "apps:errors": {
747
+ "addons:detach": {
731
748
  "aliases": [],
732
- "args": {},
733
- "description": "view app errors",
749
+ "args": {
750
+ "attachment_name": {
751
+ "description": "unique identifier of the add-on attachment",
752
+ "name": "attachment_name",
753
+ "required": true
754
+ }
755
+ },
756
+ "description": "detach an existing add-on resource from an app",
734
757
  "flags": {
735
758
  "app": {
736
759
  "char": "a",
@@ -748,136 +771,96 @@
748
771
  "hasDynamicHelp": false,
749
772
  "multiple": false,
750
773
  "type": "option"
751
- },
752
- "json": {
753
- "description": "output in json format",
754
- "name": "json",
755
- "allowNo": false,
756
- "type": "boolean"
757
- },
758
- "hours": {
759
- "description": "number of hours to look back (default 24)",
760
- "name": "hours",
761
- "default": "24",
762
- "hasDynamicHelp": false,
763
- "multiple": false,
764
- "type": "option"
765
- },
766
- "router": {
767
- "description": "show only router errors",
768
- "name": "router",
769
- "allowNo": false,
770
- "type": "boolean"
771
- },
772
- "dyno": {
773
- "description": "show only dyno errors",
774
- "name": "dyno",
775
- "allowNo": false,
776
- "type": "boolean"
777
774
  }
778
775
  },
779
776
  "hasDynamicHelp": false,
780
777
  "hiddenAliases": [],
781
- "id": "apps:errors",
778
+ "id": "addons:detach",
782
779
  "pluginAlias": "heroku",
783
780
  "pluginName": "heroku",
784
781
  "pluginType": "core",
785
782
  "strict": true,
783
+ "topic": "addons",
786
784
  "isESM": false,
787
785
  "relativePath": [
788
786
  "lib",
789
787
  "commands",
790
- "apps",
791
- "errors.js"
788
+ "addons",
789
+ "detach.js"
792
790
  ]
793
791
  },
794
- "apps": {
792
+ "addons:docs": {
795
793
  "aliases": [],
796
- "args": {},
797
- "description": "list your apps",
798
- "examples": [
799
- "$ heroku apps"
800
- ],
794
+ "args": {
795
+ "addon": {
796
+ "description": "unique identifier or globally unique name of the add-on",
797
+ "name": "addon",
798
+ "required": true
799
+ }
800
+ },
801
+ "description": "open an add-on's Dev Center documentation in your browser",
801
802
  "flags": {
802
- "all": {
803
- "char": "A",
804
- "description": "include apps in all teams",
805
- "name": "all",
806
- "allowNo": false,
807
- "type": "boolean"
808
- },
809
- "json": {
810
- "char": "j",
811
- "description": "output in json format",
812
- "name": "json",
803
+ "show-url": {
804
+ "description": "show URL, do not open browser",
805
+ "name": "show-url",
813
806
  "allowNo": false,
814
807
  "type": "boolean"
815
808
  },
816
- "space": {
817
- "char": "s",
818
- "description": "filter by space",
819
- "name": "space",
809
+ "app": {
810
+ "char": "a",
811
+ "description": "app to run command against",
812
+ "name": "app",
820
813
  "hasDynamicHelp": false,
821
814
  "multiple": false,
822
815
  "type": "option"
823
816
  },
824
- "personal": {
825
- "char": "p",
826
- "description": "list apps in personal account when a default team is set",
827
- "name": "personal",
828
- "allowNo": false,
829
- "type": "boolean"
830
- },
831
- "internal-routing": {
832
- "char": "i",
833
- "description": "filter to Internal Web Apps",
834
- "hidden": true,
835
- "name": "internal-routing",
836
- "allowNo": false,
837
- "type": "boolean"
838
- },
839
- "team": {
840
- "char": "t",
841
- "description": "team to use",
842
- "name": "team",
817
+ "remote": {
818
+ "char": "r",
819
+ "description": "git remote of app to use",
820
+ "name": "remote",
843
821
  "hasDynamicHelp": false,
844
822
  "multiple": false,
845
823
  "type": "option"
846
824
  }
847
825
  },
848
826
  "hasDynamicHelp": false,
849
- "hiddenAliases": [
850
- "list",
851
- "apps:list"
852
- ],
853
- "id": "apps",
827
+ "hiddenAliases": [],
828
+ "id": "addons:docs",
854
829
  "pluginAlias": "heroku",
855
830
  "pluginName": "heroku",
856
831
  "pluginType": "core",
857
832
  "strict": true,
858
- "topic": "apps",
833
+ "topic": "addons",
859
834
  "isESM": false,
860
835
  "relativePath": [
861
836
  "lib",
862
837
  "commands",
863
- "apps",
864
- "index.js"
838
+ "addons",
839
+ "docs.js"
865
840
  ]
866
841
  },
867
- "apps:info": {
842
+ "addons": {
868
843
  "aliases": [],
869
- "args": {
870
- "app": {
871
- "hidden": true,
872
- "name": "app"
873
- }
874
- },
875
- "description": "show detailed app information",
844
+ "args": {},
845
+ "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 ",
876
846
  "examples": [
877
- "$ heroku apps:info",
878
- "$ heroku apps:info --shell"
847
+ "$ heroku addons --all",
848
+ "$ heroku addons --app acme-inc-www"
879
849
  ],
880
850
  "flags": {
851
+ "all": {
852
+ "char": "A",
853
+ "description": "show add-ons and attachments for all accessible apps",
854
+ "name": "all",
855
+ "allowNo": false,
856
+ "type": "boolean"
857
+ },
858
+ "json": {
859
+ "description": "return add-ons in json format",
860
+ "name": "json",
861
+ "allowNo": false,
862
+ "type": "boolean"
863
+ },
881
864
  "app": {
882
865
  "char": "a",
883
866
  "description": "app to run command against",
@@ -893,60 +876,40 @@
893
876
  "hasDynamicHelp": false,
894
877
  "multiple": false,
895
878
  "type": "option"
896
- },
897
- "shell": {
898
- "char": "s",
899
- "description": "output more shell friendly key/value pairs",
900
- "name": "shell",
901
- "allowNo": false,
902
- "type": "boolean"
903
- },
904
- "extended": {
905
- "char": "x",
906
- "hidden": true,
907
- "name": "extended",
908
- "allowNo": false,
909
- "type": "boolean"
910
- },
911
- "json": {
912
- "char": "j",
913
- "description": "output in json format",
914
- "name": "json",
915
- "allowNo": false,
916
- "type": "boolean"
917
879
  }
918
880
  },
919
881
  "hasDynamicHelp": false,
920
- "hiddenAliases": [
921
- "info"
922
- ],
923
- "id": "apps:info",
882
+ "hiddenAliases": [],
883
+ "id": "addons",
924
884
  "pluginAlias": "heroku",
925
885
  "pluginName": "heroku",
926
886
  "pluginType": "core",
927
887
  "strict": true,
928
- "topic": "apps",
929
- "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...",
888
+ "usage": "addons [--all|--app APP]",
889
+ "topic": "addons",
930
890
  "isESM": false,
931
891
  "relativePath": [
932
892
  "lib",
933
893
  "commands",
934
- "apps",
935
- "info.js"
894
+ "addons",
895
+ "index.js"
936
896
  ]
937
897
  },
938
- "apps:join": {
939
- "aliases": [
940
- "join"
941
- ],
942
- "args": {},
943
- "description": "add yourself to a team app",
898
+ "addons:info": {
899
+ "aliases": [],
900
+ "args": {
901
+ "addon": {
902
+ "description": "unique identifier or globally unique name of the add-on",
903
+ "name": "addon",
904
+ "required": true
905
+ }
906
+ },
907
+ "description": "show detailed add-on resource and attachment information",
944
908
  "flags": {
945
909
  "app": {
946
910
  "char": "a",
947
911
  "description": "app to run command against",
948
912
  "name": "app",
949
- "required": true,
950
913
  "hasDynamicHelp": false,
951
914
  "multiple": false,
952
915
  "type": "option"
@@ -962,33 +925,42 @@
962
925
  },
963
926
  "hasDynamicHelp": false,
964
927
  "hiddenAliases": [],
965
- "id": "apps:join",
928
+ "id": "addons:info",
966
929
  "pluginAlias": "heroku",
967
930
  "pluginName": "heroku",
968
931
  "pluginType": "core",
969
932
  "strict": true,
970
- "topic": "apps",
933
+ "usage": "addons:info ADDON",
934
+ "topic": "addons",
971
935
  "isESM": false,
972
936
  "relativePath": [
973
937
  "lib",
974
938
  "commands",
975
- "apps",
976
- "join.js"
939
+ "addons",
940
+ "info.js"
977
941
  ]
978
942
  },
979
- "apps:leave": {
980
- "aliases": [
981
- "leave"
982
- ],
983
- "args": {},
984
- "description": "remove yourself from a team app",
985
- "examples": "heroku apps:leave -a APP",
943
+ "addons:open": {
944
+ "aliases": [],
945
+ "args": {
946
+ "addon": {
947
+ "description": "unique identifier or globally unique name of the add-on",
948
+ "name": "addon",
949
+ "required": true
950
+ }
951
+ },
952
+ "description": "open an add-on's dashboard in your browser",
986
953
  "flags": {
954
+ "show-url": {
955
+ "description": "show URL, do not open browser",
956
+ "name": "show-url",
957
+ "allowNo": false,
958
+ "type": "boolean"
959
+ },
987
960
  "app": {
988
961
  "char": "a",
989
962
  "description": "app to run command against",
990
963
  "name": "app",
991
- "required": true,
992
964
  "hasDynamicHelp": false,
993
965
  "multiple": false,
994
966
  "type": "option"
@@ -1004,82 +976,138 @@
1004
976
  },
1005
977
  "hasDynamicHelp": false,
1006
978
  "hiddenAliases": [],
1007
- "id": "apps:leave",
979
+ "id": "addons:open",
1008
980
  "pluginAlias": "heroku",
1009
981
  "pluginName": "heroku",
1010
982
  "pluginType": "core",
1011
983
  "strict": true,
1012
- "topic": "apps",
1013
- "example": "heroku apps:leave -a APP",
984
+ "topic": "addons",
1014
985
  "isESM": false,
1015
986
  "relativePath": [
1016
987
  "lib",
1017
988
  "commands",
1018
- "apps",
1019
- "leave.js"
989
+ "addons",
990
+ "open.js"
1020
991
  ]
1021
992
  },
1022
- "apps:lock": {
1023
- "aliases": [
1024
- "lock"
1025
- ],
1026
- "args": {},
1027
- "description": "prevent team members from joining an app",
993
+ "addons:plans": {
994
+ "aliases": [],
995
+ "args": {
996
+ "service": {
997
+ "description": "unique identifier or globally unique name of the add-on",
998
+ "name": "service",
999
+ "required": true
1000
+ }
1001
+ },
1002
+ "description": "list all available plans for an add-on service",
1028
1003
  "flags": {
1029
- "app": {
1030
- "char": "a",
1031
- "description": "app to run command against",
1032
- "name": "app",
1033
- "required": true,
1034
- "hasDynamicHelp": false,
1035
- "multiple": false,
1036
- "type": "option"
1004
+ "json": {
1005
+ "description": "output in json format",
1006
+ "name": "json",
1007
+ "allowNo": false,
1008
+ "type": "boolean"
1009
+ }
1010
+ },
1011
+ "hasDynamicHelp": false,
1012
+ "hiddenAliases": [],
1013
+ "id": "addons:plans",
1014
+ "pluginAlias": "heroku",
1015
+ "pluginName": "heroku",
1016
+ "pluginType": "core",
1017
+ "strict": true,
1018
+ "topic": "addons",
1019
+ "isESM": false,
1020
+ "relativePath": [
1021
+ "lib",
1022
+ "commands",
1023
+ "addons",
1024
+ "plans.js"
1025
+ ]
1026
+ },
1027
+ "addons:rename": {
1028
+ "aliases": [],
1029
+ "args": {
1030
+ "addon_name": {
1031
+ "description": "unique identifier or globally unique name of the add-on",
1032
+ "name": "addon_name",
1033
+ "required": true
1037
1034
  },
1038
- "remote": {
1039
- "char": "r",
1040
- "description": "git remote of app to use",
1041
- "name": "remote",
1042
- "hasDynamicHelp": false,
1043
- "multiple": false,
1044
- "type": "option"
1035
+ "new_name": {
1036
+ "description": "new globally unique name of the add-on",
1037
+ "name": "new_name",
1038
+ "required": true
1045
1039
  }
1046
1040
  },
1041
+ "description": "rename an add-on",
1042
+ "flags": {},
1047
1043
  "hasDynamicHelp": false,
1048
1044
  "hiddenAliases": [],
1049
- "id": "apps:lock",
1045
+ "id": "addons:rename",
1050
1046
  "pluginAlias": "heroku",
1051
1047
  "pluginName": "heroku",
1052
1048
  "pluginType": "core",
1053
1049
  "strict": true,
1054
- "topic": "apps",
1050
+ "topic": "addons",
1055
1051
  "isESM": false,
1056
1052
  "relativePath": [
1057
1053
  "lib",
1058
1054
  "commands",
1059
- "apps",
1060
- "lock.js"
1055
+ "addons",
1056
+ "rename.js"
1061
1057
  ]
1062
1058
  },
1063
- "apps:open": {
1059
+ "addons:services": {
1064
1060
  "aliases": [],
1061
+ "args": {},
1062
+ "description": "list all available add-on services",
1063
+ "flags": {
1064
+ "json": {
1065
+ "description": "output in json format",
1066
+ "name": "json",
1067
+ "allowNo": false,
1068
+ "type": "boolean"
1069
+ }
1070
+ },
1071
+ "hasDynamicHelp": false,
1072
+ "hiddenAliases": [],
1073
+ "id": "addons:services",
1074
+ "pluginAlias": "heroku",
1075
+ "pluginName": "heroku",
1076
+ "pluginType": "core",
1077
+ "strict": true,
1078
+ "topic": "addons",
1079
+ "isESM": false,
1080
+ "relativePath": [
1081
+ "lib",
1082
+ "commands",
1083
+ "addons",
1084
+ "services.js"
1085
+ ]
1086
+ },
1087
+ "addons:upgrade": {
1088
+ "aliases": [
1089
+ "addons:downgrade"
1090
+ ],
1065
1091
  "args": {
1066
- "path": {
1067
- "description": "base URL path of app",
1068
- "name": "path",
1069
- "required": false
1092
+ "addon": {
1093
+ "description": "unique identifier or globally unique name of the add-on",
1094
+ "name": "addon",
1095
+ "required": true
1096
+ },
1097
+ "plan": {
1098
+ "description": "unique identifier or name of the plan",
1099
+ "name": "plan"
1070
1100
  }
1071
1101
  },
1072
- "description": "open the app in a web browser",
1102
+ "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 ",
1073
1103
  "examples": [
1074
- "$ heroku open -a myapp",
1075
- "$ heroku open -a myapp /foo"
1104
+ "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"
1076
1105
  ],
1077
1106
  "flags": {
1078
1107
  "app": {
1079
1108
  "char": "a",
1080
1109
  "description": "app to run command against",
1081
1110
  "name": "app",
1082
- "required": true,
1083
1111
  "hasDynamicHelp": false,
1084
1112
  "multiple": false,
1085
1113
  "type": "option"
@@ -1094,42 +1122,42 @@
1094
1122
  }
1095
1123
  },
1096
1124
  "hasDynamicHelp": false,
1097
- "hiddenAliases": [
1098
- "open"
1099
- ],
1100
- "id": "apps:open",
1125
+ "hiddenAliases": [],
1126
+ "id": "addons:upgrade",
1101
1127
  "pluginAlias": "heroku",
1102
1128
  "pluginName": "heroku",
1103
1129
  "pluginType": "core",
1104
1130
  "strict": true,
1105
- "topic": "apps",
1131
+ "topic": "addons",
1106
1132
  "isESM": false,
1107
1133
  "relativePath": [
1108
1134
  "lib",
1109
1135
  "commands",
1110
- "apps",
1111
- "open.js"
1136
+ "addons",
1137
+ "upgrade.js"
1112
1138
  ]
1113
1139
  },
1114
- "apps:rename": {
1140
+ "addons:wait": {
1115
1141
  "aliases": [],
1116
1142
  "args": {
1117
- "newname": {
1118
- "description": "new unique name of the app",
1119
- "name": "newname",
1120
- "required": true
1143
+ "addon": {
1144
+ "description": "unique identifier or globally unique name of the add-on",
1145
+ "name": "addon"
1121
1146
  }
1122
1147
  },
1123
- "description": "rename an app",
1124
- "examples": [
1125
- "$ heroku apps:rename --app oldname newname"
1126
- ],
1148
+ "description": "show provisioning status of the add-ons on the app",
1127
1149
  "flags": {
1150
+ "wait-interval": {
1151
+ "description": "how frequently to poll in seconds",
1152
+ "name": "wait-interval",
1153
+ "hasDynamicHelp": false,
1154
+ "multiple": false,
1155
+ "type": "option"
1156
+ },
1128
1157
  "app": {
1129
1158
  "char": "a",
1130
1159
  "description": "app to run command against",
1131
1160
  "name": "app",
1132
- "required": true,
1133
1161
  "hasDynamicHelp": false,
1134
1162
  "multiple": false,
1135
1163
  "type": "option"
@@ -1144,106 +1172,176 @@
1144
1172
  }
1145
1173
  },
1146
1174
  "hasDynamicHelp": false,
1147
- "hiddenAliases": [
1148
- "rename"
1149
- ],
1150
- "id": "apps:rename",
1175
+ "hiddenAliases": [],
1176
+ "id": "addons:wait",
1151
1177
  "pluginAlias": "heroku",
1152
1178
  "pluginName": "heroku",
1153
1179
  "pluginType": "core",
1154
1180
  "strict": true,
1155
- "help": "This will locally update the git remote if it is set to the old app.",
1156
- "topic": "apps",
1181
+ "topic": "addons",
1157
1182
  "isESM": false,
1158
1183
  "relativePath": [
1159
1184
  "lib",
1160
1185
  "commands",
1161
- "apps",
1162
- "rename.js"
1186
+ "addons",
1187
+ "wait.js"
1163
1188
  ]
1164
1189
  },
1165
- "apps:transfer": {
1190
+ "apps:create": {
1166
1191
  "aliases": [],
1167
1192
  "args": {
1168
- "recipient": {
1169
- "description": "user or team to transfer applications to",
1170
- "name": "recipient",
1171
- "required": true
1193
+ "app": {
1194
+ "description": "name of app to create",
1195
+ "name": "app",
1196
+ "required": false
1172
1197
  }
1173
1198
  },
1174
- "description": "transfer applications to another user or team",
1199
+ "description": "creates a new app",
1175
1200
  "examples": [
1176
- "$ 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..."
1201
+ "$ heroku apps:create\nCreating app... done, stack is heroku-24\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"
1177
1202
  ],
1178
1203
  "flags": {
1179
- "locked": {
1180
- "char": "l",
1181
- "description": "lock the app upon transfer",
1182
- "name": "locked",
1183
- "required": false,
1204
+ "app": {
1205
+ "hidden": true,
1206
+ "name": "app",
1207
+ "hasDynamicHelp": false,
1208
+ "multiple": false,
1209
+ "type": "option"
1210
+ },
1211
+ "addons": {
1212
+ "description": "comma-delimited list of addons to install",
1213
+ "name": "addons",
1214
+ "hasDynamicHelp": false,
1215
+ "multiple": false,
1216
+ "type": "option"
1217
+ },
1218
+ "buildpack": {
1219
+ "char": "b",
1220
+ "description": "buildpack url to use for this app",
1221
+ "name": "buildpack",
1222
+ "hasDynamicHelp": false,
1223
+ "multiple": false,
1224
+ "type": "option"
1225
+ },
1226
+ "manifest": {
1227
+ "char": "m",
1228
+ "description": "use heroku.yml settings for this app",
1229
+ "hidden": true,
1230
+ "name": "manifest",
1184
1231
  "allowNo": false,
1185
1232
  "type": "boolean"
1186
1233
  },
1187
- "bulk": {
1188
- "description": "transfer applications in bulk",
1189
- "name": "bulk",
1190
- "required": false,
1234
+ "no-remote": {
1235
+ "char": "n",
1236
+ "description": "do not create a git remote",
1237
+ "name": "no-remote",
1191
1238
  "allowNo": false,
1192
1239
  "type": "boolean"
1193
1240
  },
1194
- "app": {
1195
- "char": "a",
1196
- "description": "app to run command against",
1197
- "name": "app",
1241
+ "remote": {
1242
+ "char": "r",
1243
+ "description": "the git remote to create, default \"heroku\"",
1244
+ "name": "remote",
1245
+ "default": "heroku",
1198
1246
  "hasDynamicHelp": false,
1199
1247
  "multiple": false,
1200
1248
  "type": "option"
1201
1249
  },
1202
- "remote": {
1203
- "char": "r",
1204
- "description": "git remote of app to use",
1205
- "name": "remote",
1250
+ "stack": {
1251
+ "char": "s",
1252
+ "description": "the stack to create the app on",
1253
+ "name": "stack",
1206
1254
  "hasDynamicHelp": false,
1207
1255
  "multiple": false,
1208
1256
  "type": "option"
1209
1257
  },
1210
- "confirm": {
1211
- "char": "c",
1258
+ "space": {
1259
+ "description": "the private space to create the app in",
1260
+ "name": "space",
1261
+ "hasDynamicHelp": false,
1262
+ "multiple": false,
1263
+ "type": "option"
1264
+ },
1265
+ "region": {
1266
+ "description": "specify region for the app to run in",
1267
+ "name": "region",
1268
+ "hasDynamicHelp": false,
1269
+ "multiple": false,
1270
+ "type": "option"
1271
+ },
1272
+ "internal-routing": {
1273
+ "description": "private space-only. create as an Internal Web App that is only routable in the local network.",
1212
1274
  "hidden": true,
1213
- "name": "confirm",
1275
+ "name": "internal-routing",
1276
+ "allowNo": false,
1277
+ "type": "boolean"
1278
+ },
1279
+ "features": {
1280
+ "hidden": true,
1281
+ "name": "features",
1282
+ "hasDynamicHelp": false,
1283
+ "multiple": false,
1284
+ "type": "option"
1285
+ },
1286
+ "kernel": {
1287
+ "hidden": true,
1288
+ "name": "kernel",
1289
+ "hasDynamicHelp": false,
1290
+ "multiple": false,
1291
+ "type": "option"
1292
+ },
1293
+ "locked": {
1294
+ "hidden": true,
1295
+ "name": "locked",
1296
+ "allowNo": false,
1297
+ "type": "boolean"
1298
+ },
1299
+ "json": {
1300
+ "description": "output in json format",
1301
+ "name": "json",
1302
+ "allowNo": false,
1303
+ "type": "boolean"
1304
+ },
1305
+ "team": {
1306
+ "char": "t",
1307
+ "description": "team to use",
1308
+ "name": "team",
1214
1309
  "hasDynamicHelp": false,
1215
1310
  "multiple": false,
1216
1311
  "type": "option"
1217
1312
  }
1218
1313
  },
1219
1314
  "hasDynamicHelp": false,
1220
- "hiddenAliases": [],
1221
- "id": "apps:transfer",
1315
+ "hiddenAliases": [
1316
+ "create"
1317
+ ],
1318
+ "id": "apps:create",
1222
1319
  "pluginAlias": "heroku",
1223
1320
  "pluginName": "heroku",
1224
1321
  "pluginType": "core",
1225
1322
  "strict": true,
1226
- "topic": "apps",
1227
1323
  "isESM": false,
1228
1324
  "relativePath": [
1229
1325
  "lib",
1230
1326
  "commands",
1231
1327
  "apps",
1232
- "transfer.js"
1328
+ "create.js"
1233
1329
  ]
1234
1330
  },
1235
- "apps:unlock": {
1236
- "aliases": [
1237
- "unlock"
1238
- ],
1239
- "args": {},
1240
- "description": "unlock an app so any team member can join",
1331
+ "apps:destroy": {
1332
+ "aliases": [],
1333
+ "args": {
1334
+ "app": {
1335
+ "hidden": true,
1336
+ "name": "app"
1337
+ }
1338
+ },
1339
+ "description": "permanently destroy an app",
1241
1340
  "flags": {
1242
1341
  "app": {
1243
1342
  "char": "a",
1244
1343
  "description": "app to run command against",
1245
1344
  "name": "app",
1246
- "required": true,
1247
1345
  "hasDynamicHelp": false,
1248
1346
  "multiple": false,
1249
1347
  "type": "option"
@@ -1255,56 +1353,39 @@
1255
1353
  "hasDynamicHelp": false,
1256
1354
  "multiple": false,
1257
1355
  "type": "option"
1356
+ },
1357
+ "confirm": {
1358
+ "char": "c",
1359
+ "name": "confirm",
1360
+ "hasDynamicHelp": false,
1361
+ "multiple": false,
1362
+ "type": "option"
1258
1363
  }
1259
1364
  },
1260
1365
  "hasDynamicHelp": false,
1261
- "hiddenAliases": [],
1262
- "id": "apps:unlock",
1366
+ "hiddenAliases": [
1367
+ "destroy",
1368
+ "apps:delete"
1369
+ ],
1370
+ "id": "apps:destroy",
1263
1371
  "pluginAlias": "heroku",
1264
1372
  "pluginName": "heroku",
1265
1373
  "pluginType": "core",
1266
1374
  "strict": true,
1267
- "topic": "apps",
1375
+ "help": "This will also destroy all add-ons on the app.",
1268
1376
  "isESM": false,
1269
1377
  "relativePath": [
1270
1378
  "lib",
1271
1379
  "commands",
1272
1380
  "apps",
1273
- "unlock.js"
1381
+ "destroy.js"
1274
1382
  ]
1275
1383
  },
1276
- "addons:attach": {
1384
+ "apps:errors": {
1277
1385
  "aliases": [],
1278
- "args": {
1279
- "addon_name": {
1280
- "description": "unique identifier or globally unique name of the add-on",
1281
- "name": "addon_name",
1282
- "required": true
1283
- }
1284
- },
1285
- "description": "attach an existing add-on resource to an app",
1386
+ "args": {},
1387
+ "description": "view app errors",
1286
1388
  "flags": {
1287
- "as": {
1288
- "description": "name for add-on attachment",
1289
- "name": "as",
1290
- "hasDynamicHelp": false,
1291
- "multiple": false,
1292
- "type": "option"
1293
- },
1294
- "credential": {
1295
- "description": "credential name for scoped access to Heroku Postgres",
1296
- "name": "credential",
1297
- "hasDynamicHelp": false,
1298
- "multiple": false,
1299
- "type": "option"
1300
- },
1301
- "confirm": {
1302
- "description": "overwrite existing add-on attachment with same name",
1303
- "name": "confirm",
1304
- "hasDynamicHelp": false,
1305
- "multiple": false,
1306
- "type": "option"
1307
- },
1308
1389
  "app": {
1309
1390
  "char": "a",
1310
1391
  "description": "app to run command against",
@@ -1321,76 +1402,98 @@
1321
1402
  "hasDynamicHelp": false,
1322
1403
  "multiple": false,
1323
1404
  "type": "option"
1405
+ },
1406
+ "json": {
1407
+ "description": "output in json format",
1408
+ "name": "json",
1409
+ "allowNo": false,
1410
+ "type": "boolean"
1411
+ },
1412
+ "hours": {
1413
+ "description": "number of hours to look back (default 24)",
1414
+ "name": "hours",
1415
+ "default": "24",
1416
+ "hasDynamicHelp": false,
1417
+ "multiple": false,
1418
+ "type": "option"
1419
+ },
1420
+ "router": {
1421
+ "description": "show only router errors",
1422
+ "name": "router",
1423
+ "allowNo": false,
1424
+ "type": "boolean"
1425
+ },
1426
+ "dyno": {
1427
+ "description": "show only dyno errors",
1428
+ "name": "dyno",
1429
+ "allowNo": false,
1430
+ "type": "boolean"
1324
1431
  }
1325
1432
  },
1326
1433
  "hasDynamicHelp": false,
1327
1434
  "hiddenAliases": [],
1328
- "id": "addons:attach",
1435
+ "id": "apps:errors",
1329
1436
  "pluginAlias": "heroku",
1330
1437
  "pluginName": "heroku",
1331
1438
  "pluginType": "core",
1332
1439
  "strict": true,
1333
- "topic": "addons",
1334
1440
  "isESM": false,
1335
1441
  "relativePath": [
1336
1442
  "lib",
1337
1443
  "commands",
1338
- "addons",
1339
- "attach.js"
1444
+ "apps",
1445
+ "errors.js"
1340
1446
  ]
1341
1447
  },
1342
- "addons:create": {
1448
+ "apps": {
1343
1449
  "aliases": [],
1344
- "args": {
1345
- "service:plan": {
1346
- "description": "unique identifier or unique name of the add-on service plan",
1347
- "name": "service:plan",
1348
- "required": true
1349
- }
1350
- },
1351
- "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",
1352
- "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",
1450
+ "args": {},
1451
+ "description": "list your apps",
1452
+ "examples": [
1453
+ "$ heroku apps"
1454
+ ],
1353
1455
  "flags": {
1354
- "name": {
1355
- "description": "name for the add-on resource",
1356
- "name": "name",
1357
- "hasDynamicHelp": false,
1358
- "multiple": false,
1359
- "type": "option"
1456
+ "all": {
1457
+ "char": "A",
1458
+ "description": "include apps in all teams",
1459
+ "name": "all",
1460
+ "allowNo": false,
1461
+ "type": "boolean"
1360
1462
  },
1361
- "as": {
1362
- "description": "name for the initial add-on attachment",
1363
- "name": "as",
1364
- "hasDynamicHelp": false,
1365
- "multiple": false,
1366
- "type": "option"
1463
+ "json": {
1464
+ "char": "j",
1465
+ "description": "output in json format",
1466
+ "name": "json",
1467
+ "allowNo": false,
1468
+ "type": "boolean"
1367
1469
  },
1368
- "confirm": {
1369
- "description": "overwrite existing config vars or existing add-on attachments",
1370
- "name": "confirm",
1470
+ "space": {
1471
+ "char": "s",
1472
+ "description": "filter by space",
1473
+ "name": "space",
1371
1474
  "hasDynamicHelp": false,
1372
1475
  "multiple": false,
1373
1476
  "type": "option"
1374
1477
  },
1375
- "wait": {
1376
- "description": "watch add-on creation status and exit when complete",
1377
- "name": "wait",
1478
+ "personal": {
1479
+ "char": "p",
1480
+ "description": "list apps in personal account when a default team is set",
1481
+ "name": "personal",
1378
1482
  "allowNo": false,
1379
1483
  "type": "boolean"
1380
1484
  },
1381
- "app": {
1382
- "char": "a",
1383
- "description": "app to run command against",
1384
- "name": "app",
1385
- "required": true,
1386
- "hasDynamicHelp": false,
1387
- "multiple": false,
1388
- "type": "option"
1485
+ "internal-routing": {
1486
+ "char": "i",
1487
+ "description": "filter to Internal Web Apps",
1488
+ "hidden": true,
1489
+ "name": "internal-routing",
1490
+ "allowNo": false,
1491
+ "type": "boolean"
1389
1492
  },
1390
- "remote": {
1391
- "char": "r",
1392
- "description": "git remote of app to use",
1393
- "name": "remote",
1493
+ "team": {
1494
+ "char": "t",
1495
+ "description": "team to use",
1496
+ "name": "team",
1394
1497
  "hasDynamicHelp": false,
1395
1498
  "multiple": false,
1396
1499
  "type": "option"
@@ -1398,57 +1501,37 @@
1398
1501
  },
1399
1502
  "hasDynamicHelp": false,
1400
1503
  "hiddenAliases": [
1401
- "addons:add"
1504
+ "list",
1505
+ "apps:list"
1402
1506
  ],
1403
- "id": "addons:create",
1507
+ "id": "apps",
1404
1508
  "pluginAlias": "heroku",
1405
1509
  "pluginName": "heroku",
1406
1510
  "pluginType": "core",
1407
- "strict": false,
1408
- "topic": "addons",
1409
- "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",
1511
+ "strict": true,
1512
+ "topic": "apps",
1410
1513
  "isESM": false,
1411
1514
  "relativePath": [
1412
1515
  "lib",
1413
1516
  "commands",
1414
- "addons",
1415
- "create.js"
1517
+ "apps",
1518
+ "index.js"
1416
1519
  ]
1417
1520
  },
1418
- "addons:destroy": {
1521
+ "apps:info": {
1419
1522
  "aliases": [],
1420
1523
  "args": {
1421
- "addonName": {
1422
- "description": "unique identifier or globally unique name of the add-on",
1423
- "name": "addonName",
1424
- "required": true
1524
+ "app": {
1525
+ "hidden": true,
1526
+ "name": "app"
1425
1527
  }
1426
1528
  },
1427
- "description": "permanently destroy an add-on resource",
1529
+ "description": "show detailed app information",
1428
1530
  "examples": [
1429
- "addons:destroy [ADDON]... [flags]"
1531
+ "$ heroku apps:info",
1532
+ "$ heroku apps:info --shell"
1430
1533
  ],
1431
1534
  "flags": {
1432
- "force": {
1433
- "char": "f",
1434
- "description": "allow destruction even if connected to other apps",
1435
- "name": "force",
1436
- "allowNo": false,
1437
- "type": "boolean"
1438
- },
1439
- "confirm": {
1440
- "char": "c",
1441
- "name": "confirm",
1442
- "hasDynamicHelp": false,
1443
- "multiple": false,
1444
- "type": "option"
1445
- },
1446
- "wait": {
1447
- "description": "watch add-on destruction status and exit when complete",
1448
- "name": "wait",
1449
- "allowNo": false,
1450
- "type": "boolean"
1451
- },
1452
1535
  "app": {
1453
1536
  "char": "a",
1454
1537
  "description": "app to run command against",
@@ -1464,36 +1547,54 @@
1464
1547
  "hasDynamicHelp": false,
1465
1548
  "multiple": false,
1466
1549
  "type": "option"
1550
+ },
1551
+ "shell": {
1552
+ "char": "s",
1553
+ "description": "output more shell friendly key/value pairs",
1554
+ "name": "shell",
1555
+ "allowNo": false,
1556
+ "type": "boolean"
1557
+ },
1558
+ "extended": {
1559
+ "char": "x",
1560
+ "hidden": true,
1561
+ "name": "extended",
1562
+ "allowNo": false,
1563
+ "type": "boolean"
1564
+ },
1565
+ "json": {
1566
+ "char": "j",
1567
+ "description": "output in json format",
1568
+ "name": "json",
1569
+ "allowNo": false,
1570
+ "type": "boolean"
1467
1571
  }
1468
1572
  },
1469
1573
  "hasDynamicHelp": false,
1470
1574
  "hiddenAliases": [
1471
- "addons:remove"
1575
+ "info"
1472
1576
  ],
1473
- "id": "addons:destroy",
1577
+ "id": "apps:info",
1474
1578
  "pluginAlias": "heroku",
1475
1579
  "pluginName": "heroku",
1476
1580
  "pluginType": "core",
1477
- "strict": false,
1478
- "topic": "addons",
1581
+ "strict": true,
1582
+ "topic": "apps",
1583
+ "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...",
1479
1584
  "isESM": false,
1480
1585
  "relativePath": [
1481
1586
  "lib",
1482
1587
  "commands",
1483
- "addons",
1484
- "destroy.js"
1588
+ "apps",
1589
+ "info.js"
1485
1590
  ]
1486
1591
  },
1487
- "addons:detach": {
1488
- "aliases": [],
1489
- "args": {
1490
- "attachment_name": {
1491
- "description": "unique identifier of the add-on attachment",
1492
- "name": "attachment_name",
1493
- "required": true
1494
- }
1495
- },
1496
- "description": "detach an existing add-on resource from an app",
1592
+ "apps:join": {
1593
+ "aliases": [
1594
+ "join"
1595
+ ],
1596
+ "args": {},
1597
+ "description": "add yourself to a team app",
1497
1598
  "flags": {
1498
1599
  "app": {
1499
1600
  "char": "a",
@@ -1515,41 +1616,33 @@
1515
1616
  },
1516
1617
  "hasDynamicHelp": false,
1517
1618
  "hiddenAliases": [],
1518
- "id": "addons:detach",
1619
+ "id": "apps:join",
1519
1620
  "pluginAlias": "heroku",
1520
1621
  "pluginName": "heroku",
1521
1622
  "pluginType": "core",
1522
1623
  "strict": true,
1523
- "topic": "addons",
1624
+ "topic": "apps",
1524
1625
  "isESM": false,
1525
1626
  "relativePath": [
1526
1627
  "lib",
1527
1628
  "commands",
1528
- "addons",
1529
- "detach.js"
1629
+ "apps",
1630
+ "join.js"
1530
1631
  ]
1531
1632
  },
1532
- "addons:docs": {
1533
- "aliases": [],
1534
- "args": {
1535
- "addon": {
1536
- "description": "unique identifier or globally unique name of the add-on",
1537
- "name": "addon",
1538
- "required": true
1539
- }
1540
- },
1541
- "description": "open an add-on's Dev Center documentation in your browser",
1633
+ "apps:leave": {
1634
+ "aliases": [
1635
+ "leave"
1636
+ ],
1637
+ "args": {},
1638
+ "description": "remove yourself from a team app",
1639
+ "examples": "heroku apps:leave -a APP",
1542
1640
  "flags": {
1543
- "show-url": {
1544
- "description": "show URL, do not open browser",
1545
- "name": "show-url",
1546
- "allowNo": false,
1547
- "type": "boolean"
1548
- },
1549
1641
  "app": {
1550
1642
  "char": "a",
1551
1643
  "description": "app to run command against",
1552
1644
  "name": "app",
1645
+ "required": true,
1553
1646
  "hasDynamicHelp": false,
1554
1647
  "multiple": false,
1555
1648
  "type": "option"
@@ -1565,46 +1658,33 @@
1565
1658
  },
1566
1659
  "hasDynamicHelp": false,
1567
1660
  "hiddenAliases": [],
1568
- "id": "addons:docs",
1661
+ "id": "apps:leave",
1569
1662
  "pluginAlias": "heroku",
1570
1663
  "pluginName": "heroku",
1571
1664
  "pluginType": "core",
1572
1665
  "strict": true,
1573
- "topic": "addons",
1666
+ "topic": "apps",
1667
+ "example": "heroku apps:leave -a APP",
1574
1668
  "isESM": false,
1575
1669
  "relativePath": [
1576
1670
  "lib",
1577
1671
  "commands",
1578
- "addons",
1579
- "docs.js"
1672
+ "apps",
1673
+ "leave.js"
1580
1674
  ]
1581
1675
  },
1582
- "addons": {
1583
- "aliases": [],
1584
- "args": {},
1585
- "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 ",
1586
- "examples": [
1587
- "$ heroku addons --all",
1588
- "$ heroku addons --app acme-inc-www"
1676
+ "apps:lock": {
1677
+ "aliases": [
1678
+ "lock"
1589
1679
  ],
1680
+ "args": {},
1681
+ "description": "prevent team members from joining an app",
1590
1682
  "flags": {
1591
- "all": {
1592
- "char": "A",
1593
- "description": "show add-ons and attachments for all accessible apps",
1594
- "name": "all",
1595
- "allowNo": false,
1596
- "type": "boolean"
1597
- },
1598
- "json": {
1599
- "description": "return add-ons in json format",
1600
- "name": "json",
1601
- "allowNo": false,
1602
- "type": "boolean"
1603
- },
1604
1683
  "app": {
1605
1684
  "char": "a",
1606
1685
  "description": "app to run command against",
1607
1686
  "name": "app",
1687
+ "required": true,
1608
1688
  "hasDynamicHelp": false,
1609
1689
  "multiple": false,
1610
1690
  "type": "option"
@@ -1620,36 +1700,40 @@
1620
1700
  },
1621
1701
  "hasDynamicHelp": false,
1622
1702
  "hiddenAliases": [],
1623
- "id": "addons",
1703
+ "id": "apps:lock",
1624
1704
  "pluginAlias": "heroku",
1625
1705
  "pluginName": "heroku",
1626
1706
  "pluginType": "core",
1627
1707
  "strict": true,
1628
- "usage": "addons [--all|--app APP]",
1629
- "topic": "addons",
1708
+ "topic": "apps",
1630
1709
  "isESM": false,
1631
1710
  "relativePath": [
1632
1711
  "lib",
1633
1712
  "commands",
1634
- "addons",
1635
- "index.js"
1713
+ "apps",
1714
+ "lock.js"
1636
1715
  ]
1637
1716
  },
1638
- "addons:info": {
1717
+ "apps:open": {
1639
1718
  "aliases": [],
1640
1719
  "args": {
1641
- "addon": {
1642
- "description": "unique identifier or globally unique name of the add-on",
1643
- "name": "addon",
1644
- "required": true
1720
+ "path": {
1721
+ "description": "base URL path of app",
1722
+ "name": "path",
1723
+ "required": false
1645
1724
  }
1646
1725
  },
1647
- "description": "show detailed add-on resource and attachment information",
1726
+ "description": "open the app in a web browser",
1727
+ "examples": [
1728
+ "$ heroku open -a myapp",
1729
+ "$ heroku open -a myapp /foo"
1730
+ ],
1648
1731
  "flags": {
1649
1732
  "app": {
1650
1733
  "char": "a",
1651
1734
  "description": "app to run command against",
1652
1735
  "name": "app",
1736
+ "required": true,
1653
1737
  "hasDynamicHelp": false,
1654
1738
  "multiple": false,
1655
1739
  "type": "option"
@@ -1664,43 +1748,42 @@
1664
1748
  }
1665
1749
  },
1666
1750
  "hasDynamicHelp": false,
1667
- "hiddenAliases": [],
1668
- "id": "addons:info",
1751
+ "hiddenAliases": [
1752
+ "open"
1753
+ ],
1754
+ "id": "apps:open",
1669
1755
  "pluginAlias": "heroku",
1670
1756
  "pluginName": "heroku",
1671
1757
  "pluginType": "core",
1672
1758
  "strict": true,
1673
- "usage": "addons:info ADDON",
1674
- "topic": "addons",
1759
+ "topic": "apps",
1675
1760
  "isESM": false,
1676
1761
  "relativePath": [
1677
1762
  "lib",
1678
1763
  "commands",
1679
- "addons",
1680
- "info.js"
1764
+ "apps",
1765
+ "open.js"
1681
1766
  ]
1682
1767
  },
1683
- "addons:open": {
1768
+ "apps:rename": {
1684
1769
  "aliases": [],
1685
1770
  "args": {
1686
- "addon": {
1687
- "description": "unique identifier or globally unique name of the add-on",
1688
- "name": "addon",
1771
+ "newname": {
1772
+ "description": "new unique name of the app",
1773
+ "name": "newname",
1689
1774
  "required": true
1690
1775
  }
1691
1776
  },
1692
- "description": "open an add-on's dashboard in your browser",
1777
+ "description": "rename an app",
1778
+ "examples": [
1779
+ "$ heroku apps:rename --app oldname newname"
1780
+ ],
1693
1781
  "flags": {
1694
- "show-url": {
1695
- "description": "show URL, do not open browser",
1696
- "name": "show-url",
1697
- "allowNo": false,
1698
- "type": "boolean"
1699
- },
1700
1782
  "app": {
1701
1783
  "char": "a",
1702
1784
  "description": "app to run command against",
1703
1785
  "name": "app",
1786
+ "required": true,
1704
1787
  "hasDynamicHelp": false,
1705
1788
  "multiple": false,
1706
1789
  "type": "option"
@@ -1715,135 +1798,53 @@
1715
1798
  }
1716
1799
  },
1717
1800
  "hasDynamicHelp": false,
1718
- "hiddenAliases": [],
1719
- "id": "addons:open",
1720
- "pluginAlias": "heroku",
1721
- "pluginName": "heroku",
1722
- "pluginType": "core",
1723
- "strict": true,
1724
- "topic": "addons",
1725
- "isESM": false,
1726
- "relativePath": [
1727
- "lib",
1728
- "commands",
1729
- "addons",
1730
- "open.js"
1731
- ]
1732
- },
1733
- "addons:plans": {
1734
- "aliases": [],
1735
- "args": {
1736
- "service": {
1737
- "description": "unique identifier or globally unique name of the add-on",
1738
- "name": "service",
1739
- "required": true
1740
- }
1741
- },
1742
- "description": "list all available plans for an add-on service",
1743
- "flags": {
1744
- "json": {
1745
- "description": "output in json format",
1746
- "name": "json",
1747
- "allowNo": false,
1748
- "type": "boolean"
1749
- }
1750
- },
1751
- "hasDynamicHelp": false,
1752
- "hiddenAliases": [],
1753
- "id": "addons:plans",
1754
- "pluginAlias": "heroku",
1755
- "pluginName": "heroku",
1756
- "pluginType": "core",
1757
- "strict": true,
1758
- "topic": "addons",
1759
- "isESM": false,
1760
- "relativePath": [
1761
- "lib",
1762
- "commands",
1763
- "addons",
1764
- "plans.js"
1765
- ]
1766
- },
1767
- "addons:rename": {
1768
- "aliases": [],
1769
- "args": {
1770
- "addon_name": {
1771
- "description": "unique identifier or globally unique name of the add-on",
1772
- "name": "addon_name",
1773
- "required": true
1774
- },
1775
- "new_name": {
1776
- "description": "new globally unique name of the add-on",
1777
- "name": "new_name",
1778
- "required": true
1779
- }
1780
- },
1781
- "description": "rename an add-on",
1782
- "flags": {},
1783
- "hasDynamicHelp": false,
1784
- "hiddenAliases": [],
1785
- "id": "addons:rename",
1786
- "pluginAlias": "heroku",
1787
- "pluginName": "heroku",
1788
- "pluginType": "core",
1789
- "strict": true,
1790
- "topic": "addons",
1791
- "isESM": false,
1792
- "relativePath": [
1793
- "lib",
1794
- "commands",
1795
- "addons",
1796
- "rename.js"
1797
- ]
1798
- },
1799
- "addons:services": {
1800
- "aliases": [],
1801
- "args": {},
1802
- "description": "list all available add-on services",
1803
- "flags": {
1804
- "json": {
1805
- "description": "output in json format",
1806
- "name": "json",
1807
- "allowNo": false,
1808
- "type": "boolean"
1809
- }
1810
- },
1811
- "hasDynamicHelp": false,
1812
- "hiddenAliases": [],
1813
- "id": "addons:services",
1801
+ "hiddenAliases": [
1802
+ "rename"
1803
+ ],
1804
+ "id": "apps:rename",
1814
1805
  "pluginAlias": "heroku",
1815
1806
  "pluginName": "heroku",
1816
1807
  "pluginType": "core",
1817
1808
  "strict": true,
1818
- "topic": "addons",
1809
+ "help": "This will locally update the git remote if it is set to the old app.",
1810
+ "topic": "apps",
1819
1811
  "isESM": false,
1820
1812
  "relativePath": [
1821
1813
  "lib",
1822
1814
  "commands",
1823
- "addons",
1824
- "services.js"
1815
+ "apps",
1816
+ "rename.js"
1825
1817
  ]
1826
1818
  },
1827
- "addons:upgrade": {
1828
- "aliases": [
1829
- "addons:downgrade"
1830
- ],
1819
+ "apps:transfer": {
1820
+ "aliases": [],
1831
1821
  "args": {
1832
- "addon": {
1833
- "description": "unique identifier or globally unique name of the add-on",
1834
- "name": "addon",
1822
+ "recipient": {
1823
+ "description": "user or team to transfer applications to",
1824
+ "name": "recipient",
1835
1825
  "required": true
1836
- },
1837
- "plan": {
1838
- "description": "unique identifier or name of the plan",
1839
- "name": "plan"
1840
1826
  }
1841
1827
  },
1842
- "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 ",
1828
+ "description": "transfer applications to another user or team",
1843
1829
  "examples": [
1844
- "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"
1830
+ "$ 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..."
1845
1831
  ],
1846
1832
  "flags": {
1833
+ "locked": {
1834
+ "char": "l",
1835
+ "description": "lock the app upon transfer",
1836
+ "name": "locked",
1837
+ "required": false,
1838
+ "allowNo": false,
1839
+ "type": "boolean"
1840
+ },
1841
+ "bulk": {
1842
+ "description": "transfer applications in bulk",
1843
+ "name": "bulk",
1844
+ "required": false,
1845
+ "allowNo": false,
1846
+ "type": "boolean"
1847
+ },
1847
1848
  "app": {
1848
1849
  "char": "a",
1849
1850
  "description": "app to run command against",
@@ -1859,45 +1860,44 @@
1859
1860
  "hasDynamicHelp": false,
1860
1861
  "multiple": false,
1861
1862
  "type": "option"
1863
+ },
1864
+ "confirm": {
1865
+ "char": "c",
1866
+ "hidden": true,
1867
+ "name": "confirm",
1868
+ "hasDynamicHelp": false,
1869
+ "multiple": false,
1870
+ "type": "option"
1862
1871
  }
1863
1872
  },
1864
1873
  "hasDynamicHelp": false,
1865
1874
  "hiddenAliases": [],
1866
- "id": "addons:upgrade",
1875
+ "id": "apps:transfer",
1867
1876
  "pluginAlias": "heroku",
1868
1877
  "pluginName": "heroku",
1869
1878
  "pluginType": "core",
1870
1879
  "strict": true,
1871
- "topic": "addons",
1880
+ "topic": "apps",
1872
1881
  "isESM": false,
1873
1882
  "relativePath": [
1874
1883
  "lib",
1875
1884
  "commands",
1876
- "addons",
1877
- "upgrade.js"
1885
+ "apps",
1886
+ "transfer.js"
1878
1887
  ]
1879
1888
  },
1880
- "addons:wait": {
1881
- "aliases": [],
1882
- "args": {
1883
- "addon": {
1884
- "description": "unique identifier or globally unique name of the add-on",
1885
- "name": "addon"
1886
- }
1887
- },
1888
- "description": "show provisioning status of the add-ons on the app",
1889
+ "apps:unlock": {
1890
+ "aliases": [
1891
+ "unlock"
1892
+ ],
1893
+ "args": {},
1894
+ "description": "unlock an app so any team member can join",
1889
1895
  "flags": {
1890
- "wait-interval": {
1891
- "description": "how frequently to poll in seconds",
1892
- "name": "wait-interval",
1893
- "hasDynamicHelp": false,
1894
- "multiple": false,
1895
- "type": "option"
1896
- },
1897
1896
  "app": {
1898
1897
  "char": "a",
1899
1898
  "description": "app to run command against",
1900
1899
  "name": "app",
1900
+ "required": true,
1901
1901
  "hasDynamicHelp": false,
1902
1902
  "multiple": false,
1903
1903
  "type": "option"
@@ -1913,18 +1913,18 @@
1913
1913
  },
1914
1914
  "hasDynamicHelp": false,
1915
1915
  "hiddenAliases": [],
1916
- "id": "addons:wait",
1916
+ "id": "apps:unlock",
1917
1917
  "pluginAlias": "heroku",
1918
1918
  "pluginName": "heroku",
1919
1919
  "pluginType": "core",
1920
1920
  "strict": true,
1921
- "topic": "addons",
1921
+ "topic": "apps",
1922
1922
  "isESM": false,
1923
1923
  "relativePath": [
1924
1924
  "lib",
1925
1925
  "commands",
1926
- "addons",
1927
- "wait.js"
1926
+ "apps",
1927
+ "unlock.js"
1928
1928
  ]
1929
1929
  },
1930
1930
  "auth:login": {
@@ -5502,10 +5502,182 @@
5502
5502
  "multiple": false,
5503
5503
  "type": "option"
5504
5504
  },
5505
- "remote": {
5506
- "char": "r",
5507
- "description": "git remote of app to use",
5508
- "name": "remote",
5505
+ "remote": {
5506
+ "char": "r",
5507
+ "description": "git remote of app to use",
5508
+ "name": "remote",
5509
+ "hasDynamicHelp": false,
5510
+ "multiple": false,
5511
+ "type": "option"
5512
+ }
5513
+ },
5514
+ "hasDynamicHelp": false,
5515
+ "hiddenAliases": [],
5516
+ "id": "labs:enable",
5517
+ "pluginAlias": "heroku",
5518
+ "pluginName": "heroku",
5519
+ "pluginType": "core",
5520
+ "strict": true,
5521
+ "topic": "labs",
5522
+ "isESM": false,
5523
+ "relativePath": [
5524
+ "lib",
5525
+ "commands",
5526
+ "labs",
5527
+ "enable.js"
5528
+ ]
5529
+ },
5530
+ "labs": {
5531
+ "aliases": [],
5532
+ "args": {},
5533
+ "description": "list experimental features",
5534
+ "flags": {
5535
+ "app": {
5536
+ "char": "a",
5537
+ "description": "app to run command against",
5538
+ "name": "app",
5539
+ "required": false,
5540
+ "hasDynamicHelp": false,
5541
+ "multiple": false,
5542
+ "type": "option"
5543
+ },
5544
+ "remote": {
5545
+ "char": "r",
5546
+ "description": "git remote of app to use",
5547
+ "name": "remote",
5548
+ "hasDynamicHelp": false,
5549
+ "multiple": false,
5550
+ "type": "option"
5551
+ },
5552
+ "json": {
5553
+ "description": "display as json",
5554
+ "name": "json",
5555
+ "required": false,
5556
+ "allowNo": false,
5557
+ "type": "boolean"
5558
+ }
5559
+ },
5560
+ "hasDynamicHelp": false,
5561
+ "hiddenAliases": [],
5562
+ "id": "labs",
5563
+ "pluginAlias": "heroku",
5564
+ "pluginName": "heroku",
5565
+ "pluginType": "core",
5566
+ "strict": true,
5567
+ "topic": "labs",
5568
+ "isESM": false,
5569
+ "relativePath": [
5570
+ "lib",
5571
+ "commands",
5572
+ "labs",
5573
+ "index.js"
5574
+ ]
5575
+ },
5576
+ "labs:info": {
5577
+ "aliases": [],
5578
+ "args": {
5579
+ "feature": {
5580
+ "description": "unique identifier or name of the account feature",
5581
+ "name": "feature",
5582
+ "required": true
5583
+ }
5584
+ },
5585
+ "description": "show feature info",
5586
+ "flags": {
5587
+ "app": {
5588
+ "char": "a",
5589
+ "description": "app to run command against",
5590
+ "name": "app",
5591
+ "required": false,
5592
+ "hasDynamicHelp": false,
5593
+ "multiple": false,
5594
+ "type": "option"
5595
+ },
5596
+ "remote": {
5597
+ "char": "r",
5598
+ "description": "git remote of app to use",
5599
+ "name": "remote",
5600
+ "hasDynamicHelp": false,
5601
+ "multiple": false,
5602
+ "type": "option"
5603
+ },
5604
+ "json": {
5605
+ "description": "display as json",
5606
+ "name": "json",
5607
+ "required": false,
5608
+ "allowNo": false,
5609
+ "type": "boolean"
5610
+ }
5611
+ },
5612
+ "hasDynamicHelp": false,
5613
+ "hiddenAliases": [],
5614
+ "id": "labs:info",
5615
+ "pluginAlias": "heroku",
5616
+ "pluginName": "heroku",
5617
+ "pluginType": "core",
5618
+ "strict": true,
5619
+ "topic": "labs",
5620
+ "isESM": false,
5621
+ "relativePath": [
5622
+ "lib",
5623
+ "commands",
5624
+ "labs",
5625
+ "info.js"
5626
+ ]
5627
+ },
5628
+ "local": {
5629
+ "aliases": [
5630
+ "local:start"
5631
+ ],
5632
+ "args": {
5633
+ "processname": {
5634
+ "description": "name of the process",
5635
+ "name": "processname",
5636
+ "required": false
5637
+ }
5638
+ },
5639
+ "description": "run heroku app locally\nStart the application specified by a Procfile (defaults to ./Procfile)",
5640
+ "examples": [
5641
+ "$ heroku local\n$ heroku local web\n$ heroku local web=2\n$ heroku local web=1,worker=2"
5642
+ ],
5643
+ "flags": {
5644
+ "procfile": {
5645
+ "char": "f",
5646
+ "description": "use a different Procfile",
5647
+ "name": "procfile",
5648
+ "hasDynamicHelp": false,
5649
+ "multiple": false,
5650
+ "type": "option"
5651
+ },
5652
+ "env": {
5653
+ "char": "e",
5654
+ "description": "location of env file (defaults to .env)",
5655
+ "name": "env",
5656
+ "hasDynamicHelp": false,
5657
+ "multiple": false,
5658
+ "type": "option"
5659
+ },
5660
+ "port": {
5661
+ "char": "p",
5662
+ "description": "port to listen on",
5663
+ "name": "port",
5664
+ "hasDynamicHelp": false,
5665
+ "multiple": false,
5666
+ "type": "option"
5667
+ },
5668
+ "restart": {
5669
+ "char": "r",
5670
+ "description": "restart process if it dies",
5671
+ "hidden": true,
5672
+ "name": "restart",
5673
+ "allowNo": false,
5674
+ "type": "boolean"
5675
+ },
5676
+ "concurrency": {
5677
+ "char": "c",
5678
+ "description": "number of processes to start",
5679
+ "hidden": true,
5680
+ "name": "concurrency",
5509
5681
  "hasDynamicHelp": false,
5510
5682
  "multiple": false,
5511
5683
  "type": "option"
@@ -5513,116 +5685,75 @@
5513
5685
  },
5514
5686
  "hasDynamicHelp": false,
5515
5687
  "hiddenAliases": [],
5516
- "id": "labs:enable",
5688
+ "id": "local",
5517
5689
  "pluginAlias": "heroku",
5518
5690
  "pluginName": "heroku",
5519
5691
  "pluginType": "core",
5520
5692
  "strict": true,
5521
- "topic": "labs",
5522
5693
  "isESM": false,
5523
5694
  "relativePath": [
5524
5695
  "lib",
5525
5696
  "commands",
5526
- "labs",
5527
- "enable.js"
5697
+ "local",
5698
+ "index.js"
5528
5699
  ]
5529
5700
  },
5530
- "labs": {
5701
+ "local:run": {
5531
5702
  "aliases": [],
5532
5703
  "args": {},
5533
- "description": "list experimental features",
5704
+ "description": "run a one-off command",
5705
+ "examples": [
5706
+ "$ heroku local:run bin/migrate"
5707
+ ],
5534
5708
  "flags": {
5535
- "app": {
5536
- "char": "a",
5537
- "description": "app to run command against",
5538
- "name": "app",
5539
- "required": false,
5709
+ "env": {
5710
+ "char": "e",
5711
+ "name": "env",
5540
5712
  "hasDynamicHelp": false,
5541
5713
  "multiple": false,
5542
5714
  "type": "option"
5543
5715
  },
5544
- "remote": {
5545
- "char": "r",
5546
- "description": "git remote of app to use",
5547
- "name": "remote",
5716
+ "port": {
5717
+ "char": "p",
5718
+ "name": "port",
5548
5719
  "hasDynamicHelp": false,
5549
5720
  "multiple": false,
5550
5721
  "type": "option"
5551
- },
5552
- "json": {
5553
- "description": "display as json",
5554
- "name": "json",
5555
- "required": false,
5556
- "allowNo": false,
5557
- "type": "boolean"
5558
5722
  }
5559
5723
  },
5560
5724
  "hasDynamicHelp": false,
5561
5725
  "hiddenAliases": [],
5562
- "id": "labs",
5726
+ "id": "local:run",
5563
5727
  "pluginAlias": "heroku",
5564
5728
  "pluginName": "heroku",
5565
5729
  "pluginType": "core",
5566
- "strict": true,
5567
- "topic": "labs",
5730
+ "strict": false,
5568
5731
  "isESM": false,
5569
5732
  "relativePath": [
5570
5733
  "lib",
5571
5734
  "commands",
5572
- "labs",
5573
- "index.js"
5735
+ "local",
5736
+ "run.js"
5574
5737
  ]
5575
5738
  },
5576
- "labs:info": {
5739
+ "local:version": {
5577
5740
  "aliases": [],
5578
- "args": {
5579
- "feature": {
5580
- "description": "unique identifier or name of the account feature",
5581
- "name": "feature",
5582
- "required": true
5583
- }
5584
- },
5585
- "description": "show feature info",
5586
- "flags": {
5587
- "app": {
5588
- "char": "a",
5589
- "description": "app to run command against",
5590
- "name": "app",
5591
- "required": false,
5592
- "hasDynamicHelp": false,
5593
- "multiple": false,
5594
- "type": "option"
5595
- },
5596
- "remote": {
5597
- "char": "r",
5598
- "description": "git remote of app to use",
5599
- "name": "remote",
5600
- "hasDynamicHelp": false,
5601
- "multiple": false,
5602
- "type": "option"
5603
- },
5604
- "json": {
5605
- "description": "display as json",
5606
- "name": "json",
5607
- "required": false,
5608
- "allowNo": false,
5609
- "type": "boolean"
5610
- }
5611
- },
5741
+ "args": {},
5742
+ "description": "display node-foreman version",
5743
+ "flags": {},
5612
5744
  "hasDynamicHelp": false,
5613
5745
  "hiddenAliases": [],
5614
- "id": "labs:info",
5746
+ "id": "local:version",
5615
5747
  "pluginAlias": "heroku",
5616
5748
  "pluginName": "heroku",
5617
5749
  "pluginType": "core",
5618
5750
  "strict": true,
5619
- "topic": "labs",
5620
5751
  "isESM": false,
5621
5752
  "relativePath": [
5622
5753
  "lib",
5623
5754
  "commands",
5624
- "labs",
5625
- "info.js"
5755
+ "local",
5756
+ "version.js"
5626
5757
  ]
5627
5758
  },
5628
5759
  "maintenance": {
@@ -5848,159 +5979,7 @@
5848
5979
  "char": "t",
5849
5980
  "description": "team to use",
5850
5981
  "name": "team",
5851
- "required": true,
5852
- "hasDynamicHelp": false,
5853
- "multiple": false,
5854
- "type": "option"
5855
- }
5856
- },
5857
- "hasDynamicHelp": false,
5858
- "hiddenAliases": [],
5859
- "id": "members:remove",
5860
- "pluginAlias": "heroku",
5861
- "pluginName": "heroku",
5862
- "pluginType": "core",
5863
- "strict": false,
5864
- "topic": "members",
5865
- "isESM": false,
5866
- "relativePath": [
5867
- "lib",
5868
- "commands",
5869
- "members",
5870
- "remove.js"
5871
- ]
5872
- },
5873
- "members:set": {
5874
- "aliases": [],
5875
- "args": {},
5876
- "description": "sets a members role in a team",
5877
- "flags": {
5878
- "role": {
5879
- "char": "r",
5880
- "description": "member role (admin, collaborator, member, owner)",
5881
- "name": "role",
5882
- "required": true,
5883
- "hasDynamicHelp": false,
5884
- "multiple": false,
5885
- "type": "option"
5886
- },
5887
- "team": {
5888
- "char": "t",
5889
- "description": "team to use",
5890
- "name": "team",
5891
- "required": true,
5892
- "hasDynamicHelp": false,
5893
- "multiple": false,
5894
- "type": "option"
5895
- }
5896
- },
5897
- "hasDynamicHelp": false,
5898
- "hiddenAliases": [],
5899
- "id": "members:set",
5900
- "pluginAlias": "heroku",
5901
- "pluginName": "heroku",
5902
- "pluginType": "core",
5903
- "strict": false,
5904
- "topic": "members",
5905
- "isESM": false,
5906
- "relativePath": [
5907
- "lib",
5908
- "commands",
5909
- "members",
5910
- "set.js"
5911
- ]
5912
- },
5913
- "local": {
5914
- "aliases": [
5915
- "local:start"
5916
- ],
5917
- "args": {
5918
- "processname": {
5919
- "description": "name of the process",
5920
- "name": "processname",
5921
- "required": false
5922
- }
5923
- },
5924
- "description": "run heroku app locally\nStart the application specified by a Procfile (defaults to ./Procfile)",
5925
- "examples": [
5926
- "$ heroku local\n$ heroku local web\n$ heroku local web=2\n$ heroku local web=1,worker=2"
5927
- ],
5928
- "flags": {
5929
- "procfile": {
5930
- "char": "f",
5931
- "description": "use a different Procfile",
5932
- "name": "procfile",
5933
- "hasDynamicHelp": false,
5934
- "multiple": false,
5935
- "type": "option"
5936
- },
5937
- "env": {
5938
- "char": "e",
5939
- "description": "location of env file (defaults to .env)",
5940
- "name": "env",
5941
- "hasDynamicHelp": false,
5942
- "multiple": false,
5943
- "type": "option"
5944
- },
5945
- "port": {
5946
- "char": "p",
5947
- "description": "port to listen on",
5948
- "name": "port",
5949
- "hasDynamicHelp": false,
5950
- "multiple": false,
5951
- "type": "option"
5952
- },
5953
- "restart": {
5954
- "char": "r",
5955
- "description": "restart process if it dies",
5956
- "hidden": true,
5957
- "name": "restart",
5958
- "allowNo": false,
5959
- "type": "boolean"
5960
- },
5961
- "concurrency": {
5962
- "char": "c",
5963
- "description": "number of processes to start",
5964
- "hidden": true,
5965
- "name": "concurrency",
5966
- "hasDynamicHelp": false,
5967
- "multiple": false,
5968
- "type": "option"
5969
- }
5970
- },
5971
- "hasDynamicHelp": false,
5972
- "hiddenAliases": [],
5973
- "id": "local",
5974
- "pluginAlias": "heroku",
5975
- "pluginName": "heroku",
5976
- "pluginType": "core",
5977
- "strict": true,
5978
- "isESM": false,
5979
- "relativePath": [
5980
- "lib",
5981
- "commands",
5982
- "local",
5983
- "index.js"
5984
- ]
5985
- },
5986
- "local:run": {
5987
- "aliases": [],
5988
- "args": {},
5989
- "description": "run a one-off command",
5990
- "examples": [
5991
- "$ heroku local:run bin/migrate"
5992
- ],
5993
- "flags": {
5994
- "env": {
5995
- "char": "e",
5996
- "name": "env",
5997
- "hasDynamicHelp": false,
5998
- "multiple": false,
5999
- "type": "option"
6000
- },
6001
- "port": {
6002
- "char": "p",
6003
- "name": "port",
5982
+ "required": true,
6004
5983
  "hasDynamicHelp": false,
6005
5984
  "multiple": false,
6006
5985
  "type": "option"
@@ -6008,37 +5987,58 @@
6008
5987
  },
6009
5988
  "hasDynamicHelp": false,
6010
5989
  "hiddenAliases": [],
6011
- "id": "local:run",
5990
+ "id": "members:remove",
6012
5991
  "pluginAlias": "heroku",
6013
5992
  "pluginName": "heroku",
6014
5993
  "pluginType": "core",
6015
5994
  "strict": false,
5995
+ "topic": "members",
6016
5996
  "isESM": false,
6017
5997
  "relativePath": [
6018
5998
  "lib",
6019
5999
  "commands",
6020
- "local",
6021
- "run.js"
6000
+ "members",
6001
+ "remove.js"
6022
6002
  ]
6023
6003
  },
6024
- "local:version": {
6004
+ "members:set": {
6025
6005
  "aliases": [],
6026
6006
  "args": {},
6027
- "description": "display node-foreman version",
6028
- "flags": {},
6007
+ "description": "sets a members role in a team",
6008
+ "flags": {
6009
+ "role": {
6010
+ "char": "r",
6011
+ "description": "member role (admin, collaborator, member, owner)",
6012
+ "name": "role",
6013
+ "required": true,
6014
+ "hasDynamicHelp": false,
6015
+ "multiple": false,
6016
+ "type": "option"
6017
+ },
6018
+ "team": {
6019
+ "char": "t",
6020
+ "description": "team to use",
6021
+ "name": "team",
6022
+ "required": true,
6023
+ "hasDynamicHelp": false,
6024
+ "multiple": false,
6025
+ "type": "option"
6026
+ }
6027
+ },
6029
6028
  "hasDynamicHelp": false,
6030
6029
  "hiddenAliases": [],
6031
- "id": "local:version",
6030
+ "id": "members:set",
6032
6031
  "pluginAlias": "heroku",
6033
6032
  "pluginName": "heroku",
6034
6033
  "pluginType": "core",
6035
- "strict": true,
6034
+ "strict": false,
6035
+ "topic": "members",
6036
6036
  "isESM": false,
6037
6037
  "relativePath": [
6038
6038
  "lib",
6039
6039
  "commands",
6040
- "local",
6041
- "version.js"
6040
+ "members",
6041
+ "set.js"
6042
6042
  ]
6043
6043
  },
6044
6044
  "notifications": {
@@ -12407,15 +12407,19 @@
12407
12407
  "index.js"
12408
12408
  ]
12409
12409
  },
12410
- "pg:maintenance": {
12410
+ "pg:settings:auto-explain": {
12411
12411
  "aliases": [],
12412
12412
  "args": {
12413
12413
  "database": {
12414
12414
  "description": "config var containing the connection string, unique name, ID, or alias of the database. To access another app's database, prepend the app name to the config var or alias with `APP_NAME::` . If omitted, we use DATABASE_URL.",
12415
12415
  "name": "database"
12416
+ },
12417
+ "value": {
12418
+ "description": "boolean indicating if execution plans of queries will be logged for future connections",
12419
+ "name": "value"
12416
12420
  }
12417
12421
  },
12418
- "description": "show current maintenance information",
12422
+ "description": "Automatically log execution plans of queries without running EXPLAIN by hand.\nThe auto_explain module is loaded at session-time so existing connections will not be logged.\nRestart your Heroku app and/or restart existing connections for logging to start taking place.\n",
12419
12423
  "flags": {
12420
12424
  "app": {
12421
12425
  "char": "a",
@@ -12437,37 +12441,35 @@
12437
12441
  },
12438
12442
  "hasDynamicHelp": false,
12439
12443
  "hiddenAliases": [],
12440
- "id": "pg:maintenance",
12444
+ "id": "pg:settings:auto-explain",
12441
12445
  "pluginAlias": "heroku",
12442
12446
  "pluginName": "heroku",
12443
12447
  "pluginType": "core",
12444
- "strict": true,
12448
+ "strict": false,
12445
12449
  "topic": "pg",
12446
12450
  "isESM": false,
12447
12451
  "relativePath": [
12448
12452
  "lib",
12449
12453
  "commands",
12450
12454
  "pg",
12451
- "maintenance",
12452
- "index.js"
12455
+ "settings",
12456
+ "auto-explain.js"
12453
12457
  ]
12454
12458
  },
12455
- "pg:maintenance:run": {
12459
+ "pg:settings:explain-data-connector-details": {
12456
12460
  "aliases": [],
12457
12461
  "args": {
12458
12462
  "database": {
12459
12463
  "description": "config var containing the connection string, unique name, ID, or alias of the database. To access another app's database, prepend the app name to the config var or alias with `APP_NAME::` . If omitted, we use DATABASE_URL.",
12460
12464
  "name": "database"
12465
+ },
12466
+ "value": {
12467
+ "description": "boolean indicating if data replication slot details get logged",
12468
+ "name": "value"
12461
12469
  }
12462
12470
  },
12463
- "description": "start maintenance",
12471
+ "description": "displays stats on replication slots on your database, the default value is \"off\"\n",
12464
12472
  "flags": {
12465
- "force": {
12466
- "char": "f",
12467
- "name": "force",
12468
- "allowNo": false,
12469
- "type": "boolean"
12470
- },
12471
12473
  "app": {
12472
12474
  "char": "a",
12473
12475
  "description": "app to run command against",
@@ -12488,36 +12490,29 @@
12488
12490
  },
12489
12491
  "hasDynamicHelp": false,
12490
12492
  "hiddenAliases": [],
12491
- "id": "pg:maintenance:run",
12493
+ "id": "pg:settings:explain-data-connector-details",
12492
12494
  "pluginAlias": "heroku",
12493
12495
  "pluginName": "heroku",
12494
12496
  "pluginType": "core",
12495
- "strict": true,
12496
12497
  "topic": "pg",
12497
12498
  "isESM": false,
12498
12499
  "relativePath": [
12499
12500
  "lib",
12500
12501
  "commands",
12501
12502
  "pg",
12502
- "maintenance",
12503
- "run.js"
12503
+ "settings",
12504
+ "explain-data-connector-details.js"
12504
12505
  ]
12505
12506
  },
12506
- "pg:maintenance:window": {
12507
+ "pg:settings": {
12507
12508
  "aliases": [],
12508
12509
  "args": {
12509
- "window": {
12510
- "description": "timestamp of the maintenance window",
12511
- "name": "window",
12512
- "required": true
12513
- },
12514
12510
  "database": {
12515
12511
  "description": "config var containing the connection string, unique name, ID, or alias of the database. To access another app's database, prepend the app name to the config var or alias with `APP_NAME::` . If omitted, we use DATABASE_URL.",
12516
12512
  "name": "database"
12517
12513
  }
12518
12514
  },
12519
- "description": "Set weekly maintenance window.\nAll times are in UTC.\n",
12520
- "examples": "$ heroku pg:maintenance:window \"Sunday 06:00\" postgres-slippery-100",
12515
+ "description": "show your current database settings",
12521
12516
  "flags": {
12522
12517
  "app": {
12523
12518
  "char": "a",
@@ -12539,23 +12534,22 @@
12539
12534
  },
12540
12535
  "hasDynamicHelp": false,
12541
12536
  "hiddenAliases": [],
12542
- "id": "pg:maintenance:window",
12537
+ "id": "pg:settings",
12543
12538
  "pluginAlias": "heroku",
12544
12539
  "pluginName": "heroku",
12545
12540
  "pluginType": "core",
12546
12541
  "strict": true,
12547
12542
  "topic": "pg",
12548
- "example": "$ heroku pg:maintenance:window \"Sunday 06:00\" postgres-slippery-100",
12549
12543
  "isESM": false,
12550
12544
  "relativePath": [
12551
12545
  "lib",
12552
12546
  "commands",
12553
12547
  "pg",
12554
- "maintenance",
12555
- "window.js"
12548
+ "settings",
12549
+ "index.js"
12556
12550
  ]
12557
12551
  },
12558
- "pg:settings:auto-explain": {
12552
+ "pg:settings:log-connections": {
12559
12553
  "aliases": [],
12560
12554
  "args": {
12561
12555
  "database": {
@@ -12563,11 +12557,11 @@
12563
12557
  "name": "database"
12564
12558
  },
12565
12559
  "value": {
12566
- "description": "boolean indicating if execution plans of queries will be logged for future connections",
12560
+ "description": "boolean indicating if database login attempts get logged",
12567
12561
  "name": "value"
12568
12562
  }
12569
12563
  },
12570
- "description": "Automatically log execution plans of queries without running EXPLAIN by hand.\nThe auto_explain module is loaded at session-time so existing connections will not be logged.\nRestart your Heroku app and/or restart existing connections for logging to start taking place.\n",
12564
+ "description": "Controls whether a log message is produced when a login attempt is made. Default is true.\nSetting log_connections to false stops emitting log messages for all attempts to login to the database.",
12571
12565
  "flags": {
12572
12566
  "app": {
12573
12567
  "char": "a",
@@ -12589,11 +12583,10 @@
12589
12583
  },
12590
12584
  "hasDynamicHelp": false,
12591
12585
  "hiddenAliases": [],
12592
- "id": "pg:settings:auto-explain",
12586
+ "id": "pg:settings:log-connections",
12593
12587
  "pluginAlias": "heroku",
12594
12588
  "pluginName": "heroku",
12595
12589
  "pluginType": "core",
12596
- "strict": false,
12597
12590
  "topic": "pg",
12598
12591
  "isESM": false,
12599
12592
  "relativePath": [
@@ -12601,10 +12594,10 @@
12601
12594
  "commands",
12602
12595
  "pg",
12603
12596
  "settings",
12604
- "auto-explain.js"
12597
+ "log-connections.js"
12605
12598
  ]
12606
12599
  },
12607
- "pg:settings:explain-data-connector-details": {
12600
+ "pg:settings:log-lock-waits": {
12608
12601
  "aliases": [],
12609
12602
  "args": {
12610
12603
  "database": {
@@ -12612,11 +12605,11 @@
12612
12605
  "name": "database"
12613
12606
  },
12614
12607
  "value": {
12615
- "description": "boolean indicating if data replication slot details get logged",
12608
+ "description": "boolean indicating if a message gets logged when a session waits longer than the deadlock_timeout to acquire a lock",
12616
12609
  "name": "value"
12617
12610
  }
12618
12611
  },
12619
- "description": "displays stats on replication slots on your database, the default value is \"off\"\n",
12612
+ "description": "Controls whether a log message is produced when a session waits longer than the deadlock_timeout to acquire a lock. deadlock_timeout is set to 1 second\nDelays due to lock contention occur when multiple transactions are trying to access the same resource at the same time.\nApplications and their query patterns should try to avoid changes to many different tables within the same transaction.\n",
12620
12613
  "flags": {
12621
12614
  "app": {
12622
12615
  "char": "a",
@@ -12638,7 +12631,7 @@
12638
12631
  },
12639
12632
  "hasDynamicHelp": false,
12640
12633
  "hiddenAliases": [],
12641
- "id": "pg:settings:explain-data-connector-details",
12634
+ "id": "pg:settings:log-lock-waits",
12642
12635
  "pluginAlias": "heroku",
12643
12636
  "pluginName": "heroku",
12644
12637
  "pluginType": "core",
@@ -12649,18 +12642,22 @@
12649
12642
  "commands",
12650
12643
  "pg",
12651
12644
  "settings",
12652
- "explain-data-connector-details.js"
12645
+ "log-lock-waits.js"
12653
12646
  ]
12654
12647
  },
12655
- "pg:settings": {
12648
+ "pg:settings:log-min-duration-statement": {
12656
12649
  "aliases": [],
12657
12650
  "args": {
12658
12651
  "database": {
12659
12652
  "description": "config var containing the connection string, unique name, ID, or alias of the database. To access another app's database, prepend the app name to the config var or alias with `APP_NAME::` . If omitted, we use DATABASE_URL.",
12660
12653
  "name": "database"
12654
+ },
12655
+ "value": {
12656
+ "description": "milliseconds to wait for a statement to complete before logging it",
12657
+ "name": "value"
12661
12658
  }
12662
12659
  },
12663
- "description": "show your current database settings",
12660
+ "description": "The duration of each completed statement will be logged if the statement completes after the time specified by VALUE.\nVALUE needs to specified as a whole number, in milliseconds.\nSetting log_min_duration_statement to zero prints all statement durations and -1 will disable logging statement durations.\n",
12664
12661
  "flags": {
12665
12662
  "app": {
12666
12663
  "char": "a",
@@ -12682,11 +12679,10 @@
12682
12679
  },
12683
12680
  "hasDynamicHelp": false,
12684
12681
  "hiddenAliases": [],
12685
- "id": "pg:settings",
12682
+ "id": "pg:settings:log-min-duration-statement",
12686
12683
  "pluginAlias": "heroku",
12687
12684
  "pluginName": "heroku",
12688
12685
  "pluginType": "core",
12689
- "strict": true,
12690
12686
  "topic": "pg",
12691
12687
  "isESM": false,
12692
12688
  "relativePath": [
@@ -12694,10 +12690,10 @@
12694
12690
  "commands",
12695
12691
  "pg",
12696
12692
  "settings",
12697
- "index.js"
12693
+ "log-min-duration-statement.js"
12698
12694
  ]
12699
12695
  },
12700
- "pg:settings:log-connections": {
12696
+ "pg:settings:log-min-error-statement": {
12701
12697
  "aliases": [],
12702
12698
  "args": {
12703
12699
  "database": {
@@ -12705,11 +12701,16 @@
12705
12701
  "name": "database"
12706
12702
  },
12707
12703
  "value": {
12708
- "description": "boolean indicating if database login attempts get logged",
12709
- "name": "value"
12704
+ "name": "value",
12705
+ "options": [
12706
+ "error",
12707
+ "log",
12708
+ "fatal",
12709
+ "panic"
12710
+ ]
12710
12711
  }
12711
12712
  },
12712
- "description": "Controls whether a log message is produced when a login attempt is made. Default is true.\nSetting log_connections to false stops emitting log messages for all attempts to login to the database.",
12713
+ "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",
12713
12714
  "flags": {
12714
12715
  "app": {
12715
12716
  "char": "a",
@@ -12731,7 +12732,7 @@
12731
12732
  },
12732
12733
  "hasDynamicHelp": false,
12733
12734
  "hiddenAliases": [],
12734
- "id": "pg:settings:log-connections",
12735
+ "id": "pg:settings:log-min-error-statement",
12735
12736
  "pluginAlias": "heroku",
12736
12737
  "pluginName": "heroku",
12737
12738
  "pluginType": "core",
@@ -12742,10 +12743,10 @@
12742
12743
  "commands",
12743
12744
  "pg",
12744
12745
  "settings",
12745
- "log-connections.js"
12746
+ "log-min-error-statement.js"
12746
12747
  ]
12747
12748
  },
12748
- "pg:settings:log-lock-waits": {
12749
+ "pg:settings:log-statement": {
12749
12750
  "aliases": [],
12750
12751
  "args": {
12751
12752
  "database": {
@@ -12753,11 +12754,17 @@
12753
12754
  "name": "database"
12754
12755
  },
12755
12756
  "value": {
12756
- "description": "boolean indicating if a message gets logged when a session waits longer than the deadlock_timeout to acquire a lock",
12757
- "name": "value"
12757
+ "description": "type of SQL statements to log\n<options: none|ddl|mod|all>",
12758
+ "name": "value",
12759
+ "options": [
12760
+ "none",
12761
+ "ddl",
12762
+ "mod",
12763
+ "all"
12764
+ ]
12758
12765
  }
12759
12766
  },
12760
- "description": "Controls whether a log message is produced when a session waits longer than the deadlock_timeout to acquire a lock. deadlock_timeout is set to 1 second\nDelays due to lock contention occur when multiple transactions are trying to access the same resource at the same time.\nApplications and their query patterns should try to avoid changes to many different tables within the same transaction.\n",
12767
+ "description": "log_statement controls which SQL statements are logged.\nValid values for VALUE:\nnone - No statements are logged\nddl - All data definition statements, such as CREATE, ALTER and DROP will be logged\nmod - Includes all statements from ddl as well as data-modifying statements such as INSERT, UPDATE, DELETE, TRUNCATE, COPY\nall - All statements are logged\n",
12761
12768
  "flags": {
12762
12769
  "app": {
12763
12770
  "char": "a",
@@ -12779,7 +12786,7 @@
12779
12786
  },
12780
12787
  "hasDynamicHelp": false,
12781
12788
  "hiddenAliases": [],
12782
- "id": "pg:settings:log-lock-waits",
12789
+ "id": "pg:settings:log-statement",
12783
12790
  "pluginAlias": "heroku",
12784
12791
  "pluginName": "heroku",
12785
12792
  "pluginType": "core",
@@ -12790,10 +12797,10 @@
12790
12797
  "commands",
12791
12798
  "pg",
12792
12799
  "settings",
12793
- "log-lock-waits.js"
12800
+ "log-statement.js"
12794
12801
  ]
12795
12802
  },
12796
- "pg:settings:log-min-duration-statement": {
12803
+ "pg:settings:track-functions": {
12797
12804
  "aliases": [],
12798
12805
  "args": {
12799
12806
  "database": {
@@ -12801,11 +12808,16 @@
12801
12808
  "name": "database"
12802
12809
  },
12803
12810
  "value": {
12804
- "description": "milliseconds to wait for a statement to complete before logging it",
12805
- "name": "value"
12811
+ "description": "function type to track\n<options: none|pl|all>",
12812
+ "name": "value",
12813
+ "options": [
12814
+ "none",
12815
+ "pl",
12816
+ "all"
12817
+ ]
12806
12818
  }
12807
12819
  },
12808
- "description": "The duration of each completed statement will be logged if the statement completes after the time specified by VALUE.\nVALUE needs to specified as a whole number, in milliseconds.\nSetting log_min_duration_statement to zero prints all statement durations and -1 will disable logging statement durations.\n",
12820
+ "description": "track_functions controls tracking of function call counts and time used. Default is none.\nValid values for VALUE:\nnone - No functions are tracked (default)\npl - Only procedural language functions are tracked\nall - All functions, including SQL and C language functions, are tracked. Simple SQL-language that are inlined are not tracked",
12809
12821
  "flags": {
12810
12822
  "app": {
12811
12823
  "char": "a",
@@ -12827,7 +12839,7 @@
12827
12839
  },
12828
12840
  "hasDynamicHelp": false,
12829
12841
  "hiddenAliases": [],
12830
- "id": "pg:settings:log-min-duration-statement",
12842
+ "id": "pg:settings:track-functions",
12831
12843
  "pluginAlias": "heroku",
12832
12844
  "pluginName": "heroku",
12833
12845
  "pluginType": "core",
@@ -12838,27 +12850,18 @@
12838
12850
  "commands",
12839
12851
  "pg",
12840
12852
  "settings",
12841
- "log-min-duration-statement.js"
12853
+ "track-functions.js"
12842
12854
  ]
12843
12855
  },
12844
- "pg:settings:log-min-error-statement": {
12856
+ "pg:maintenance": {
12845
12857
  "aliases": [],
12846
12858
  "args": {
12847
12859
  "database": {
12848
12860
  "description": "config var containing the connection string, unique name, ID, or alias of the database. To access another app's database, prepend the app name to the config var or alias with `APP_NAME::` . If omitted, we use DATABASE_URL.",
12849
12861
  "name": "database"
12850
- },
12851
- "value": {
12852
- "name": "value",
12853
- "options": [
12854
- "error",
12855
- "log",
12856
- "fatal",
12857
- "panic"
12858
- ]
12859
12862
  }
12860
12863
  },
12861
- "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",
12864
+ "description": "show current maintenance information",
12862
12865
  "flags": {
12863
12866
  "app": {
12864
12867
  "char": "a",
@@ -12880,40 +12883,37 @@
12880
12883
  },
12881
12884
  "hasDynamicHelp": false,
12882
12885
  "hiddenAliases": [],
12883
- "id": "pg:settings:log-min-error-statement",
12886
+ "id": "pg:maintenance",
12884
12887
  "pluginAlias": "heroku",
12885
12888
  "pluginName": "heroku",
12886
12889
  "pluginType": "core",
12890
+ "strict": true,
12887
12891
  "topic": "pg",
12888
12892
  "isESM": false,
12889
12893
  "relativePath": [
12890
12894
  "lib",
12891
12895
  "commands",
12892
12896
  "pg",
12893
- "settings",
12894
- "log-min-error-statement.js"
12897
+ "maintenance",
12898
+ "index.js"
12895
12899
  ]
12896
12900
  },
12897
- "pg:settings:log-statement": {
12901
+ "pg:maintenance:run": {
12898
12902
  "aliases": [],
12899
12903
  "args": {
12900
12904
  "database": {
12901
12905
  "description": "config var containing the connection string, unique name, ID, or alias of the database. To access another app's database, prepend the app name to the config var or alias with `APP_NAME::` . If omitted, we use DATABASE_URL.",
12902
12906
  "name": "database"
12903
- },
12904
- "value": {
12905
- "description": "type of SQL statements to log\n<options: none|ddl|mod|all>",
12906
- "name": "value",
12907
- "options": [
12908
- "none",
12909
- "ddl",
12910
- "mod",
12911
- "all"
12912
- ]
12913
12907
  }
12914
12908
  },
12915
- "description": "log_statement controls which SQL statements are logged.\nValid values for VALUE:\nnone - No statements are logged\nddl - All data definition statements, such as CREATE, ALTER and DROP will be logged\nmod - Includes all statements from ddl as well as data-modifying statements such as INSERT, UPDATE, DELETE, TRUNCATE, COPY\nall - All statements are logged\n",
12909
+ "description": "start maintenance",
12916
12910
  "flags": {
12911
+ "force": {
12912
+ "char": "f",
12913
+ "name": "force",
12914
+ "allowNo": false,
12915
+ "type": "boolean"
12916
+ },
12917
12917
  "app": {
12918
12918
  "char": "a",
12919
12919
  "description": "app to run command against",
@@ -12934,38 +12934,36 @@
12934
12934
  },
12935
12935
  "hasDynamicHelp": false,
12936
12936
  "hiddenAliases": [],
12937
- "id": "pg:settings:log-statement",
12937
+ "id": "pg:maintenance:run",
12938
12938
  "pluginAlias": "heroku",
12939
12939
  "pluginName": "heroku",
12940
12940
  "pluginType": "core",
12941
+ "strict": true,
12941
12942
  "topic": "pg",
12942
12943
  "isESM": false,
12943
12944
  "relativePath": [
12944
12945
  "lib",
12945
12946
  "commands",
12946
12947
  "pg",
12947
- "settings",
12948
- "log-statement.js"
12948
+ "maintenance",
12949
+ "run.js"
12949
12950
  ]
12950
12951
  },
12951
- "pg:settings:track-functions": {
12952
+ "pg:maintenance:window": {
12952
12953
  "aliases": [],
12953
12954
  "args": {
12955
+ "window": {
12956
+ "description": "timestamp of the maintenance window",
12957
+ "name": "window",
12958
+ "required": true
12959
+ },
12954
12960
  "database": {
12955
12961
  "description": "config var containing the connection string, unique name, ID, or alias of the database. To access another app's database, prepend the app name to the config var or alias with `APP_NAME::` . If omitted, we use DATABASE_URL.",
12956
12962
  "name": "database"
12957
- },
12958
- "value": {
12959
- "description": "function type to track\n<options: none|pl|all>",
12960
- "name": "value",
12961
- "options": [
12962
- "none",
12963
- "pl",
12964
- "all"
12965
- ]
12966
12963
  }
12967
12964
  },
12968
- "description": "track_functions controls tracking of function call counts and time used. Default is none.\nValid values for VALUE:\nnone - No functions are tracked (default)\npl - Only procedural language functions are tracked\nall - All functions, including SQL and C language functions, are tracked. Simple SQL-language that are inlined are not tracked",
12965
+ "description": "Set weekly maintenance window.\nAll times are in UTC.\n",
12966
+ "examples": "$ heroku pg:maintenance:window \"Sunday 06:00\" postgres-slippery-100",
12969
12967
  "flags": {
12970
12968
  "app": {
12971
12969
  "char": "a",
@@ -12987,18 +12985,20 @@
12987
12985
  },
12988
12986
  "hasDynamicHelp": false,
12989
12987
  "hiddenAliases": [],
12990
- "id": "pg:settings:track-functions",
12988
+ "id": "pg:maintenance:window",
12991
12989
  "pluginAlias": "heroku",
12992
12990
  "pluginName": "heroku",
12993
12991
  "pluginType": "core",
12992
+ "strict": true,
12994
12993
  "topic": "pg",
12994
+ "example": "$ heroku pg:maintenance:window \"Sunday 06:00\" postgres-slippery-100",
12995
12995
  "isESM": false,
12996
12996
  "relativePath": [
12997
12997
  "lib",
12998
12998
  "commands",
12999
12999
  "pg",
13000
- "settings",
13001
- "track-functions.js"
13000
+ "maintenance",
13001
+ "window.js"
13002
13002
  ]
13003
13003
  },
13004
13004
  "ps:autoscale:disable": {
@@ -14450,5 +14450,5 @@
14450
14450
  ]
14451
14451
  }
14452
14452
  },
14453
- "version": "10.1.0"
14453
+ "version": "10.1.1-beta.0"
14454
14454
  }