heroku 11.0.0-alpha.10 → 11.0.0-alpha.11

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.
Files changed (2) hide show
  1. package/oclif.manifest.json +1622 -1622
  2. package/package.json +2 -2
@@ -711,124 +711,125 @@
711
711
  "set.js"
712
712
  ]
713
713
  },
714
- "addons:attach": {
714
+ "apps:create": {
715
715
  "aliases": [],
716
716
  "args": {
717
- "addon_name": {
718
- "description": "unique identifier or globally unique name of the add-on",
719
- "name": "addon_name",
720
- "required": true
717
+ "app": {
718
+ "description": "name of app to create",
719
+ "name": "app",
720
+ "required": false
721
721
  }
722
722
  },
723
- "description": "attach an existing add-on resource to an app",
723
+ "description": "creates a new app",
724
+ "examples": [
725
+ "$ 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"
726
+ ],
724
727
  "flags": {
725
- "as": {
726
- "description": "name for add-on attachment",
727
- "name": "as",
728
+ "app": {
729
+ "hidden": true,
730
+ "name": "app",
728
731
  "hasDynamicHelp": false,
729
732
  "multiple": false,
730
733
  "type": "option"
731
734
  },
732
- "credential": {
733
- "description": "credential name for scoped access to Heroku Postgres",
734
- "name": "credential",
735
+ "addons": {
736
+ "description": "comma-delimited list of addons to install",
737
+ "name": "addons",
735
738
  "hasDynamicHelp": false,
736
739
  "multiple": false,
737
740
  "type": "option"
738
741
  },
739
- "confirm": {
740
- "description": "overwrite existing add-on attachment with same name",
741
- "name": "confirm",
742
+ "buildpack": {
743
+ "char": "b",
744
+ "description": "buildpack url to use for this app",
745
+ "name": "buildpack",
742
746
  "hasDynamicHelp": false,
743
747
  "multiple": false,
744
748
  "type": "option"
745
749
  },
746
- "app": {
747
- "char": "a",
748
- "description": "app to run command against",
749
- "name": "app",
750
- "required": true,
751
- "hasDynamicHelp": false,
752
- "multiple": false,
753
- "type": "option"
750
+ "manifest": {
751
+ "char": "m",
752
+ "description": "use heroku.yml settings for this app",
753
+ "hidden": true,
754
+ "name": "manifest",
755
+ "allowNo": false,
756
+ "type": "boolean"
757
+ },
758
+ "no-remote": {
759
+ "char": "n",
760
+ "description": "do not create a git remote",
761
+ "name": "no-remote",
762
+ "allowNo": false,
763
+ "type": "boolean"
754
764
  },
755
765
  "remote": {
756
766
  "char": "r",
757
- "description": "git remote of app to use",
767
+ "description": "the git remote to create, default \"heroku\"",
758
768
  "name": "remote",
769
+ "default": "heroku",
759
770
  "hasDynamicHelp": false,
760
771
  "multiple": false,
761
772
  "type": "option"
762
- }
763
- },
764
- "hasDynamicHelp": false,
765
- "hiddenAliases": [],
766
- "id": "addons:attach",
767
- "pluginAlias": "heroku",
768
- "pluginName": "heroku",
769
- "pluginType": "core",
770
- "strict": true,
771
- "topic": "addons",
772
- "isESM": true,
773
- "relativePath": [
774
- "lib",
775
- "commands",
776
- "addons",
777
- "attach.js"
778
- ]
779
- },
780
- "addons:create": {
781
- "aliases": [],
782
- "args": {
783
- "service:plan": {
784
- "description": "unique identifier or unique name of the add-on service plan",
785
- "name": "service:plan",
786
- "required": true
787
- }
788
- },
789
- "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",
790
- "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",
791
- "flags": {
792
- "name": {
793
- "description": "name for the add-on resource",
794
- "name": "name",
773
+ },
774
+ "stack": {
775
+ "char": "s",
776
+ "description": "the stack to create the app on",
777
+ "name": "stack",
795
778
  "hasDynamicHelp": false,
796
779
  "multiple": false,
797
780
  "type": "option"
798
781
  },
799
- "as": {
800
- "description": "name for the initial add-on attachment",
801
- "name": "as",
782
+ "space": {
783
+ "description": "the private space to create the app in",
784
+ "name": "space",
802
785
  "hasDynamicHelp": false,
803
786
  "multiple": false,
804
787
  "type": "option"
805
788
  },
806
- "confirm": {
807
- "description": "overwrite existing config vars or existing add-on attachments",
808
- "name": "confirm",
789
+ "region": {
790
+ "description": "specify region for the app to run in",
791
+ "name": "region",
809
792
  "hasDynamicHelp": false,
810
793
  "multiple": false,
811
794
  "type": "option"
812
795
  },
813
- "wait": {
814
- "description": "watch add-on creation status and exit when complete",
815
- "name": "wait",
796
+ "internal-routing": {
797
+ "description": "private space-only. create as an Internal Web App that is only routable in the local network.",
798
+ "hidden": true,
799
+ "name": "internal-routing",
816
800
  "allowNo": false,
817
801
  "type": "boolean"
818
802
  },
819
- "app": {
820
- "char": "a",
821
- "description": "app to run command against",
822
- "name": "app",
823
- "required": true,
803
+ "features": {
804
+ "hidden": true,
805
+ "name": "features",
824
806
  "hasDynamicHelp": false,
825
807
  "multiple": false,
826
808
  "type": "option"
827
809
  },
828
- "remote": {
829
- "char": "r",
830
- "description": "git remote of app to use",
831
- "name": "remote",
810
+ "kernel": {
811
+ "hidden": true,
812
+ "name": "kernel",
813
+ "hasDynamicHelp": false,
814
+ "multiple": false,
815
+ "type": "option"
816
+ },
817
+ "locked": {
818
+ "hidden": true,
819
+ "name": "locked",
820
+ "allowNo": false,
821
+ "type": "boolean"
822
+ },
823
+ "json": {
824
+ "description": "output in json format",
825
+ "name": "json",
826
+ "allowNo": false,
827
+ "type": "boolean"
828
+ },
829
+ "team": {
830
+ "char": "t",
831
+ "description": "team to use",
832
+ "name": "team",
832
833
  "hasDynamicHelp": false,
833
834
  "multiple": false,
834
835
  "type": "option"
@@ -836,57 +837,31 @@
836
837
  },
837
838
  "hasDynamicHelp": false,
838
839
  "hiddenAliases": [
839
- "addons:add"
840
+ "create"
840
841
  ],
841
- "id": "addons:create",
842
+ "id": "apps:create",
842
843
  "pluginAlias": "heroku",
843
844
  "pluginName": "heroku",
844
845
  "pluginType": "core",
845
- "strict": false,
846
- "topic": "addons",
847
- "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",
846
+ "strict": true,
848
847
  "isESM": true,
849
848
  "relativePath": [
850
849
  "lib",
851
850
  "commands",
852
- "addons",
851
+ "apps",
853
852
  "create.js"
854
853
  ]
855
854
  },
856
- "addons:destroy": {
855
+ "apps:destroy": {
857
856
  "aliases": [],
858
857
  "args": {
859
- "addonName": {
860
- "description": "unique identifier or globally unique name of the add-on",
861
- "name": "addonName",
862
- "required": true
858
+ "app": {
859
+ "hidden": true,
860
+ "name": "app"
863
861
  }
864
862
  },
865
- "description": "permanently destroy an add-on resource",
866
- "examples": [
867
- "addons:destroy [ADDON]... [flags]"
868
- ],
863
+ "description": "permanently destroy an app",
869
864
  "flags": {
870
- "force": {
871
- "char": "f",
872
- "description": "allow destruction even if connected to other apps",
873
- "name": "force",
874
- "allowNo": false,
875
- "type": "boolean"
876
- },
877
- "confirm": {
878
- "char": "c",
879
- "name": "confirm",
880
- "hasDynamicHelp": false,
881
- "multiple": false,
882
- "type": "option"
883
- },
884
- "wait": {
885
- "description": "watch add-on destruction status and exit when complete",
886
- "name": "wait",
887
- "allowNo": false,
888
- "type": "boolean"
889
- },
890
865
  "app": {
891
866
  "char": "a",
892
867
  "description": "app to run command against",
@@ -902,36 +877,38 @@
902
877
  "hasDynamicHelp": false,
903
878
  "multiple": false,
904
879
  "type": "option"
880
+ },
881
+ "confirm": {
882
+ "char": "c",
883
+ "name": "confirm",
884
+ "hasDynamicHelp": false,
885
+ "multiple": false,
886
+ "type": "option"
905
887
  }
906
888
  },
907
889
  "hasDynamicHelp": false,
908
890
  "hiddenAliases": [
909
- "addons:remove"
891
+ "destroy",
892
+ "apps:delete"
910
893
  ],
911
- "id": "addons:destroy",
894
+ "id": "apps:destroy",
912
895
  "pluginAlias": "heroku",
913
896
  "pluginName": "heroku",
914
897
  "pluginType": "core",
915
- "strict": false,
916
- "topic": "addons",
898
+ "strict": true,
899
+ "help": "This will also destroy all add-ons on the app.",
917
900
  "isESM": true,
918
901
  "relativePath": [
919
902
  "lib",
920
903
  "commands",
921
- "addons",
904
+ "apps",
922
905
  "destroy.js"
923
906
  ]
924
907
  },
925
- "addons:detach": {
908
+ "apps:errors": {
926
909
  "aliases": [],
927
- "args": {
928
- "attachment_name": {
929
- "description": "unique identifier of the add-on attachment",
930
- "name": "attachment_name",
931
- "required": true
932
- }
933
- },
934
- "description": "detach an existing add-on resource from an app",
910
+ "args": {},
911
+ "description": "view app errors",
935
912
  "flags": {
936
913
  "app": {
937
914
  "char": "a",
@@ -949,96 +926,136 @@
949
926
  "hasDynamicHelp": false,
950
927
  "multiple": false,
951
928
  "type": "option"
929
+ },
930
+ "json": {
931
+ "description": "output in json format",
932
+ "name": "json",
933
+ "allowNo": false,
934
+ "type": "boolean"
935
+ },
936
+ "hours": {
937
+ "description": "number of hours to look back (default 24)",
938
+ "name": "hours",
939
+ "default": "24",
940
+ "hasDynamicHelp": false,
941
+ "multiple": false,
942
+ "type": "option"
943
+ },
944
+ "router": {
945
+ "description": "show only router errors",
946
+ "name": "router",
947
+ "allowNo": false,
948
+ "type": "boolean"
949
+ },
950
+ "dyno": {
951
+ "description": "show only dyno errors",
952
+ "name": "dyno",
953
+ "allowNo": false,
954
+ "type": "boolean"
952
955
  }
953
956
  },
954
957
  "hasDynamicHelp": false,
955
958
  "hiddenAliases": [],
956
- "id": "addons:detach",
959
+ "id": "apps:errors",
957
960
  "pluginAlias": "heroku",
958
961
  "pluginName": "heroku",
959
962
  "pluginType": "core",
960
963
  "strict": true,
961
- "topic": "addons",
962
964
  "isESM": true,
963
965
  "relativePath": [
964
966
  "lib",
965
967
  "commands",
966
- "addons",
967
- "detach.js"
968
+ "apps",
969
+ "errors.js"
968
970
  ]
969
971
  },
970
- "addons:docs": {
972
+ "apps": {
971
973
  "aliases": [],
972
- "args": {
973
- "addon": {
974
- "description": "unique identifier or globally unique name of the add-on",
975
- "name": "addon",
976
- "required": true
977
- }
978
- },
979
- "description": "open an add-on's Dev Center documentation in your browser",
974
+ "args": {},
975
+ "description": "list your apps",
976
+ "examples": [
977
+ "$ heroku apps"
978
+ ],
980
979
  "flags": {
981
- "show-url": {
982
- "description": "show URL, do not open browser",
983
- "name": "show-url",
980
+ "all": {
981
+ "char": "A",
982
+ "description": "include apps in all teams",
983
+ "name": "all",
984
984
  "allowNo": false,
985
985
  "type": "boolean"
986
986
  },
987
- "app": {
988
- "char": "a",
989
- "description": "app to run command against",
990
- "name": "app",
987
+ "json": {
988
+ "char": "j",
989
+ "description": "output in json format",
990
+ "name": "json",
991
+ "allowNo": false,
992
+ "type": "boolean"
993
+ },
994
+ "space": {
995
+ "char": "s",
996
+ "description": "filter by space",
997
+ "name": "space",
991
998
  "hasDynamicHelp": false,
992
999
  "multiple": false,
993
1000
  "type": "option"
994
1001
  },
995
- "remote": {
996
- "char": "r",
997
- "description": "git remote of app to use",
998
- "name": "remote",
1002
+ "personal": {
1003
+ "char": "p",
1004
+ "description": "list apps in personal account when a default team is set",
1005
+ "name": "personal",
1006
+ "allowNo": false,
1007
+ "type": "boolean"
1008
+ },
1009
+ "internal-routing": {
1010
+ "char": "i",
1011
+ "description": "filter to Internal Web Apps",
1012
+ "hidden": true,
1013
+ "name": "internal-routing",
1014
+ "allowNo": false,
1015
+ "type": "boolean"
1016
+ },
1017
+ "team": {
1018
+ "char": "t",
1019
+ "description": "team to use",
1020
+ "name": "team",
999
1021
  "hasDynamicHelp": false,
1000
1022
  "multiple": false,
1001
1023
  "type": "option"
1002
1024
  }
1003
1025
  },
1004
1026
  "hasDynamicHelp": false,
1005
- "hiddenAliases": [],
1006
- "id": "addons:docs",
1027
+ "hiddenAliases": [
1028
+ "list",
1029
+ "apps:list"
1030
+ ],
1031
+ "id": "apps",
1007
1032
  "pluginAlias": "heroku",
1008
1033
  "pluginName": "heroku",
1009
1034
  "pluginType": "core",
1010
1035
  "strict": true,
1011
- "topic": "addons",
1036
+ "topic": "apps",
1012
1037
  "isESM": true,
1013
1038
  "relativePath": [
1014
1039
  "lib",
1015
1040
  "commands",
1016
- "addons",
1017
- "docs.js"
1041
+ "apps",
1042
+ "index.js"
1018
1043
  ]
1019
1044
  },
1020
- "addons": {
1045
+ "apps:info": {
1021
1046
  "aliases": [],
1022
- "args": {},
1023
- "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 ",
1047
+ "args": {
1048
+ "app": {
1049
+ "hidden": true,
1050
+ "name": "app"
1051
+ }
1052
+ },
1053
+ "description": "show detailed app information",
1024
1054
  "examples": [
1025
- "$ heroku addons --all",
1026
- "$ heroku addons --app acme-inc-www"
1055
+ "$ heroku apps:info",
1056
+ "$ heroku apps:info --shell"
1027
1057
  ],
1028
1058
  "flags": {
1029
- "all": {
1030
- "char": "A",
1031
- "description": "show add-ons and attachments for all accessible apps",
1032
- "name": "all",
1033
- "allowNo": false,
1034
- "type": "boolean"
1035
- },
1036
- "json": {
1037
- "description": "return add-ons in json format",
1038
- "name": "json",
1039
- "allowNo": false,
1040
- "type": "boolean"
1041
- },
1042
1059
  "app": {
1043
1060
  "char": "a",
1044
1061
  "description": "app to run command against",
@@ -1054,40 +1071,60 @@
1054
1071
  "hasDynamicHelp": false,
1055
1072
  "multiple": false,
1056
1073
  "type": "option"
1074
+ },
1075
+ "shell": {
1076
+ "char": "s",
1077
+ "description": "output more shell friendly key/value pairs",
1078
+ "name": "shell",
1079
+ "allowNo": false,
1080
+ "type": "boolean"
1081
+ },
1082
+ "extended": {
1083
+ "char": "x",
1084
+ "hidden": true,
1085
+ "name": "extended",
1086
+ "allowNo": false,
1087
+ "type": "boolean"
1088
+ },
1089
+ "json": {
1090
+ "char": "j",
1091
+ "description": "output in json format",
1092
+ "name": "json",
1093
+ "allowNo": false,
1094
+ "type": "boolean"
1057
1095
  }
1058
1096
  },
1059
1097
  "hasDynamicHelp": false,
1060
- "hiddenAliases": [],
1061
- "id": "addons",
1098
+ "hiddenAliases": [
1099
+ "info"
1100
+ ],
1101
+ "id": "apps:info",
1062
1102
  "pluginAlias": "heroku",
1063
1103
  "pluginName": "heroku",
1064
1104
  "pluginType": "core",
1065
1105
  "strict": true,
1066
- "usage": "addons [--all|--app APP]",
1067
- "topic": "addons",
1106
+ "topic": "apps",
1107
+ "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...",
1068
1108
  "isESM": true,
1069
1109
  "relativePath": [
1070
1110
  "lib",
1071
1111
  "commands",
1072
- "addons",
1073
- "index.js"
1112
+ "apps",
1113
+ "info.js"
1074
1114
  ]
1075
1115
  },
1076
- "addons:info": {
1077
- "aliases": [],
1078
- "args": {
1079
- "addon": {
1080
- "description": "unique identifier or globally unique name of the add-on",
1081
- "name": "addon",
1082
- "required": true
1083
- }
1084
- },
1085
- "description": "show detailed add-on resource and attachment information",
1116
+ "apps:join": {
1117
+ "aliases": [
1118
+ "join"
1119
+ ],
1120
+ "args": {},
1121
+ "description": "add yourself to a team app",
1086
1122
  "flags": {
1087
1123
  "app": {
1088
1124
  "char": "a",
1089
1125
  "description": "app to run command against",
1090
1126
  "name": "app",
1127
+ "required": true,
1091
1128
  "hasDynamicHelp": false,
1092
1129
  "multiple": false,
1093
1130
  "type": "option"
@@ -1103,42 +1140,33 @@
1103
1140
  },
1104
1141
  "hasDynamicHelp": false,
1105
1142
  "hiddenAliases": [],
1106
- "id": "addons:info",
1143
+ "id": "apps:join",
1107
1144
  "pluginAlias": "heroku",
1108
1145
  "pluginName": "heroku",
1109
1146
  "pluginType": "core",
1110
1147
  "strict": true,
1111
- "usage": "addons:info ADDON",
1112
- "topic": "addons",
1148
+ "topic": "apps",
1113
1149
  "isESM": true,
1114
1150
  "relativePath": [
1115
1151
  "lib",
1116
1152
  "commands",
1117
- "addons",
1118
- "info.js"
1153
+ "apps",
1154
+ "join.js"
1119
1155
  ]
1120
1156
  },
1121
- "addons:open": {
1122
- "aliases": [],
1123
- "args": {
1124
- "addon": {
1125
- "description": "unique identifier or globally unique name of the add-on",
1126
- "name": "addon",
1127
- "required": true
1128
- }
1129
- },
1130
- "description": "open an add-on's dashboard in your browser",
1157
+ "apps:leave": {
1158
+ "aliases": [
1159
+ "leave"
1160
+ ],
1161
+ "args": {},
1162
+ "description": "remove yourself from a team app",
1163
+ "examples": "heroku apps:leave -a APP",
1131
1164
  "flags": {
1132
- "show-url": {
1133
- "description": "show URL, do not open browser",
1134
- "name": "show-url",
1135
- "allowNo": false,
1136
- "type": "boolean"
1137
- },
1138
1165
  "app": {
1139
1166
  "char": "a",
1140
1167
  "description": "app to run command against",
1141
1168
  "name": "app",
1169
+ "required": true,
1142
1170
  "hasDynamicHelp": false,
1143
1171
  "multiple": false,
1144
1172
  "type": "option"
@@ -1154,138 +1182,82 @@
1154
1182
  },
1155
1183
  "hasDynamicHelp": false,
1156
1184
  "hiddenAliases": [],
1157
- "id": "addons:open",
1185
+ "id": "apps:leave",
1158
1186
  "pluginAlias": "heroku",
1159
1187
  "pluginName": "heroku",
1160
1188
  "pluginType": "core",
1161
1189
  "strict": true,
1162
- "topic": "addons",
1190
+ "topic": "apps",
1191
+ "example": "heroku apps:leave -a APP",
1163
1192
  "isESM": true,
1164
1193
  "relativePath": [
1165
1194
  "lib",
1166
1195
  "commands",
1167
- "addons",
1168
- "open.js"
1196
+ "apps",
1197
+ "leave.js"
1169
1198
  ]
1170
1199
  },
1171
- "addons:plans": {
1172
- "aliases": [],
1173
- "args": {
1174
- "service": {
1175
- "description": "unique identifier or globally unique name of the add-on",
1176
- "name": "service",
1177
- "required": true
1178
- }
1179
- },
1180
- "description": "list all available plans for an add-on service",
1200
+ "apps:lock": {
1201
+ "aliases": [
1202
+ "lock"
1203
+ ],
1204
+ "args": {},
1205
+ "description": "prevent team members from joining an app",
1181
1206
  "flags": {
1182
- "json": {
1183
- "description": "output in json format",
1184
- "name": "json",
1185
- "allowNo": false,
1186
- "type": "boolean"
1207
+ "app": {
1208
+ "char": "a",
1209
+ "description": "app to run command against",
1210
+ "name": "app",
1211
+ "required": true,
1212
+ "hasDynamicHelp": false,
1213
+ "multiple": false,
1214
+ "type": "option"
1215
+ },
1216
+ "remote": {
1217
+ "char": "r",
1218
+ "description": "git remote of app to use",
1219
+ "name": "remote",
1220
+ "hasDynamicHelp": false,
1221
+ "multiple": false,
1222
+ "type": "option"
1187
1223
  }
1188
1224
  },
1189
1225
  "hasDynamicHelp": false,
1190
1226
  "hiddenAliases": [],
1191
- "id": "addons:plans",
1227
+ "id": "apps:lock",
1192
1228
  "pluginAlias": "heroku",
1193
1229
  "pluginName": "heroku",
1194
1230
  "pluginType": "core",
1195
1231
  "strict": true,
1196
- "topic": "addons",
1232
+ "topic": "apps",
1197
1233
  "isESM": true,
1198
1234
  "relativePath": [
1199
1235
  "lib",
1200
1236
  "commands",
1201
- "addons",
1202
- "plans.js"
1237
+ "apps",
1238
+ "lock.js"
1203
1239
  ]
1204
1240
  },
1205
- "addons:rename": {
1241
+ "apps:open": {
1206
1242
  "aliases": [],
1207
1243
  "args": {
1208
- "addon_name": {
1209
- "description": "unique identifier or globally unique name of the add-on",
1210
- "name": "addon_name",
1211
- "required": true
1212
- },
1213
- "new_name": {
1214
- "description": "new globally unique name of the add-on",
1215
- "name": "new_name",
1216
- "required": true
1217
- }
1218
- },
1219
- "description": "rename an add-on",
1220
- "flags": {},
1221
- "hasDynamicHelp": false,
1222
- "hiddenAliases": [],
1223
- "id": "addons:rename",
1224
- "pluginAlias": "heroku",
1225
- "pluginName": "heroku",
1226
- "pluginType": "core",
1227
- "strict": true,
1228
- "topic": "addons",
1229
- "isESM": true,
1230
- "relativePath": [
1231
- "lib",
1232
- "commands",
1233
- "addons",
1234
- "rename.js"
1235
- ]
1236
- },
1237
- "addons:services": {
1238
- "aliases": [],
1239
- "args": {},
1240
- "description": "list all available add-on services",
1241
- "flags": {
1242
- "json": {
1243
- "description": "output in json format",
1244
- "name": "json",
1245
- "allowNo": false,
1246
- "type": "boolean"
1247
- }
1248
- },
1249
- "hasDynamicHelp": false,
1250
- "hiddenAliases": [],
1251
- "id": "addons:services",
1252
- "pluginAlias": "heroku",
1253
- "pluginName": "heroku",
1254
- "pluginType": "core",
1255
- "strict": true,
1256
- "topic": "addons",
1257
- "isESM": true,
1258
- "relativePath": [
1259
- "lib",
1260
- "commands",
1261
- "addons",
1262
- "services.js"
1263
- ]
1264
- },
1265
- "addons:upgrade": {
1266
- "aliases": [
1267
- "addons:downgrade"
1268
- ],
1269
- "args": {
1270
- "addon": {
1271
- "description": "unique identifier or globally unique name of the add-on",
1272
- "name": "addon",
1273
- "required": true
1274
- },
1275
- "plan": {
1276
- "description": "unique identifier or name of the plan",
1277
- "name": "plan"
1244
+ "path": {
1245
+ "description": "base URL path of app",
1246
+ "name": "path",
1247
+ "required": false
1278
1248
  }
1279
1249
  },
1280
- "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 ",
1250
+ "description": "open the app in a web browser",
1281
1251
  "examples": [
1282
- "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"
1252
+ "$ heroku open -a myapp",
1253
+ "$ heroku open -a myapp /foo"
1283
1254
  ],
1284
1255
  "flags": {
1285
1256
  "app": {
1286
1257
  "char": "a",
1287
1258
  "description": "app to run command against",
1288
1259
  "name": "app",
1260
+ "required": true,
1289
1261
  "hasDynamicHelp": false,
1290
1262
  "multiple": false,
1291
1263
  "type": "option"
@@ -1300,269 +1272,36 @@
1300
1272
  }
1301
1273
  },
1302
1274
  "hasDynamicHelp": false,
1303
- "hiddenAliases": [],
1304
- "id": "addons:upgrade",
1305
- "pluginAlias": "heroku",
1306
- "pluginName": "heroku",
1307
- "pluginType": "core",
1308
- "strict": true,
1309
- "topic": "addons",
1310
- "isESM": true,
1311
- "relativePath": [
1312
- "lib",
1313
- "commands",
1314
- "addons",
1315
- "upgrade.js"
1316
- ]
1317
- },
1318
- "addons:wait": {
1319
- "aliases": [],
1320
- "args": {
1321
- "addon": {
1322
- "description": "unique identifier or globally unique name of the add-on",
1323
- "name": "addon"
1324
- }
1325
- },
1326
- "description": "show provisioning status of the add-ons on the app",
1327
- "flags": {
1328
- "wait-interval": {
1329
- "description": "how frequently to poll in seconds",
1330
- "name": "wait-interval",
1331
- "hasDynamicHelp": false,
1332
- "multiple": false,
1333
- "type": "option"
1334
- },
1335
- "app": {
1336
- "char": "a",
1337
- "description": "app to run command against",
1338
- "name": "app",
1339
- "hasDynamicHelp": false,
1340
- "multiple": false,
1341
- "type": "option"
1342
- },
1343
- "remote": {
1344
- "char": "r",
1345
- "description": "git remote of app to use",
1346
- "name": "remote",
1347
- "hasDynamicHelp": false,
1348
- "multiple": false,
1349
- "type": "option"
1350
- }
1351
- },
1352
- "hasDynamicHelp": false,
1353
- "hiddenAliases": [],
1354
- "id": "addons:wait",
1355
- "pluginAlias": "heroku",
1356
- "pluginName": "heroku",
1357
- "pluginType": "core",
1358
- "strict": true,
1359
- "topic": "addons",
1360
- "isESM": true,
1361
- "relativePath": [
1362
- "lib",
1363
- "commands",
1364
- "addons",
1365
- "wait.js"
1366
- ]
1367
- },
1368
- "apps:create": {
1369
- "aliases": [],
1370
- "args": {
1371
- "app": {
1372
- "description": "name of app to create",
1373
- "name": "app",
1374
- "required": false
1375
- }
1376
- },
1377
- "description": "creates a new app",
1378
- "examples": [
1379
- "$ 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"
1380
- ],
1381
- "flags": {
1382
- "app": {
1383
- "hidden": true,
1384
- "name": "app",
1385
- "hasDynamicHelp": false,
1386
- "multiple": false,
1387
- "type": "option"
1388
- },
1389
- "addons": {
1390
- "description": "comma-delimited list of addons to install",
1391
- "name": "addons",
1392
- "hasDynamicHelp": false,
1393
- "multiple": false,
1394
- "type": "option"
1395
- },
1396
- "buildpack": {
1397
- "char": "b",
1398
- "description": "buildpack url to use for this app",
1399
- "name": "buildpack",
1400
- "hasDynamicHelp": false,
1401
- "multiple": false,
1402
- "type": "option"
1403
- },
1404
- "manifest": {
1405
- "char": "m",
1406
- "description": "use heroku.yml settings for this app",
1407
- "hidden": true,
1408
- "name": "manifest",
1409
- "allowNo": false,
1410
- "type": "boolean"
1411
- },
1412
- "no-remote": {
1413
- "char": "n",
1414
- "description": "do not create a git remote",
1415
- "name": "no-remote",
1416
- "allowNo": false,
1417
- "type": "boolean"
1418
- },
1419
- "remote": {
1420
- "char": "r",
1421
- "description": "the git remote to create, default \"heroku\"",
1422
- "name": "remote",
1423
- "default": "heroku",
1424
- "hasDynamicHelp": false,
1425
- "multiple": false,
1426
- "type": "option"
1427
- },
1428
- "stack": {
1429
- "char": "s",
1430
- "description": "the stack to create the app on",
1431
- "name": "stack",
1432
- "hasDynamicHelp": false,
1433
- "multiple": false,
1434
- "type": "option"
1435
- },
1436
- "space": {
1437
- "description": "the private space to create the app in",
1438
- "name": "space",
1439
- "hasDynamicHelp": false,
1440
- "multiple": false,
1441
- "type": "option"
1442
- },
1443
- "region": {
1444
- "description": "specify region for the app to run in",
1445
- "name": "region",
1446
- "hasDynamicHelp": false,
1447
- "multiple": false,
1448
- "type": "option"
1449
- },
1450
- "internal-routing": {
1451
- "description": "private space-only. create as an Internal Web App that is only routable in the local network.",
1452
- "hidden": true,
1453
- "name": "internal-routing",
1454
- "allowNo": false,
1455
- "type": "boolean"
1456
- },
1457
- "features": {
1458
- "hidden": true,
1459
- "name": "features",
1460
- "hasDynamicHelp": false,
1461
- "multiple": false,
1462
- "type": "option"
1463
- },
1464
- "kernel": {
1465
- "hidden": true,
1466
- "name": "kernel",
1467
- "hasDynamicHelp": false,
1468
- "multiple": false,
1469
- "type": "option"
1470
- },
1471
- "locked": {
1472
- "hidden": true,
1473
- "name": "locked",
1474
- "allowNo": false,
1475
- "type": "boolean"
1476
- },
1477
- "json": {
1478
- "description": "output in json format",
1479
- "name": "json",
1480
- "allowNo": false,
1481
- "type": "boolean"
1482
- },
1483
- "team": {
1484
- "char": "t",
1485
- "description": "team to use",
1486
- "name": "team",
1487
- "hasDynamicHelp": false,
1488
- "multiple": false,
1489
- "type": "option"
1490
- }
1491
- },
1492
- "hasDynamicHelp": false,
1493
1275
  "hiddenAliases": [
1494
- "create"
1276
+ "open"
1495
1277
  ],
1496
- "id": "apps:create",
1278
+ "id": "apps:open",
1497
1279
  "pluginAlias": "heroku",
1498
1280
  "pluginName": "heroku",
1499
1281
  "pluginType": "core",
1500
1282
  "strict": true,
1283
+ "topic": "apps",
1501
1284
  "isESM": true,
1502
1285
  "relativePath": [
1503
1286
  "lib",
1504
1287
  "commands",
1505
1288
  "apps",
1506
- "create.js"
1289
+ "open.js"
1507
1290
  ]
1508
1291
  },
1509
- "apps:destroy": {
1292
+ "apps:rename": {
1510
1293
  "aliases": [],
1511
1294
  "args": {
1512
- "app": {
1513
- "hidden": true,
1514
- "name": "app"
1515
- }
1516
- },
1517
- "description": "permanently destroy an app",
1518
- "flags": {
1519
- "app": {
1520
- "char": "a",
1521
- "description": "app to run command against",
1522
- "name": "app",
1523
- "hasDynamicHelp": false,
1524
- "multiple": false,
1525
- "type": "option"
1526
- },
1527
- "remote": {
1528
- "char": "r",
1529
- "description": "git remote of app to use",
1530
- "name": "remote",
1531
- "hasDynamicHelp": false,
1532
- "multiple": false,
1533
- "type": "option"
1534
- },
1535
- "confirm": {
1536
- "char": "c",
1537
- "name": "confirm",
1538
- "hasDynamicHelp": false,
1539
- "multiple": false,
1540
- "type": "option"
1295
+ "newname": {
1296
+ "description": "new unique name of the app",
1297
+ "name": "newname",
1298
+ "required": true
1541
1299
  }
1542
1300
  },
1543
- "hasDynamicHelp": false,
1544
- "hiddenAliases": [
1545
- "destroy",
1546
- "apps:delete"
1301
+ "description": "rename an app",
1302
+ "examples": [
1303
+ "$ heroku apps:rename --app oldname newname"
1547
1304
  ],
1548
- "id": "apps:destroy",
1549
- "pluginAlias": "heroku",
1550
- "pluginName": "heroku",
1551
- "pluginType": "core",
1552
- "strict": true,
1553
- "help": "This will also destroy all add-ons on the app.",
1554
- "isESM": true,
1555
- "relativePath": [
1556
- "lib",
1557
- "commands",
1558
- "apps",
1559
- "destroy.js"
1560
- ]
1561
- },
1562
- "apps:errors": {
1563
- "aliases": [],
1564
- "args": {},
1565
- "description": "view app errors",
1566
1305
  "flags": {
1567
1306
  "app": {
1568
1307
  "char": "a",
@@ -1571,107 +1310,12 @@
1571
1310
  "required": true,
1572
1311
  "hasDynamicHelp": false,
1573
1312
  "multiple": false,
1574
- "type": "option"
1575
- },
1576
- "remote": {
1577
- "char": "r",
1578
- "description": "git remote of app to use",
1579
- "name": "remote",
1580
- "hasDynamicHelp": false,
1581
- "multiple": false,
1582
- "type": "option"
1583
- },
1584
- "json": {
1585
- "description": "output in json format",
1586
- "name": "json",
1587
- "allowNo": false,
1588
- "type": "boolean"
1589
- },
1590
- "hours": {
1591
- "description": "number of hours to look back (default 24)",
1592
- "name": "hours",
1593
- "default": "24",
1594
- "hasDynamicHelp": false,
1595
- "multiple": false,
1596
- "type": "option"
1597
- },
1598
- "router": {
1599
- "description": "show only router errors",
1600
- "name": "router",
1601
- "allowNo": false,
1602
- "type": "boolean"
1603
- },
1604
- "dyno": {
1605
- "description": "show only dyno errors",
1606
- "name": "dyno",
1607
- "allowNo": false,
1608
- "type": "boolean"
1609
- }
1610
- },
1611
- "hasDynamicHelp": false,
1612
- "hiddenAliases": [],
1613
- "id": "apps:errors",
1614
- "pluginAlias": "heroku",
1615
- "pluginName": "heroku",
1616
- "pluginType": "core",
1617
- "strict": true,
1618
- "isESM": true,
1619
- "relativePath": [
1620
- "lib",
1621
- "commands",
1622
- "apps",
1623
- "errors.js"
1624
- ]
1625
- },
1626
- "apps": {
1627
- "aliases": [],
1628
- "args": {},
1629
- "description": "list your apps",
1630
- "examples": [
1631
- "$ heroku apps"
1632
- ],
1633
- "flags": {
1634
- "all": {
1635
- "char": "A",
1636
- "description": "include apps in all teams",
1637
- "name": "all",
1638
- "allowNo": false,
1639
- "type": "boolean"
1640
- },
1641
- "json": {
1642
- "char": "j",
1643
- "description": "output in json format",
1644
- "name": "json",
1645
- "allowNo": false,
1646
- "type": "boolean"
1647
- },
1648
- "space": {
1649
- "char": "s",
1650
- "description": "filter by space",
1651
- "name": "space",
1652
- "hasDynamicHelp": false,
1653
- "multiple": false,
1654
- "type": "option"
1655
- },
1656
- "personal": {
1657
- "char": "p",
1658
- "description": "list apps in personal account when a default team is set",
1659
- "name": "personal",
1660
- "allowNo": false,
1661
- "type": "boolean"
1662
- },
1663
- "internal-routing": {
1664
- "char": "i",
1665
- "description": "filter to Internal Web Apps",
1666
- "hidden": true,
1667
- "name": "internal-routing",
1668
- "allowNo": false,
1669
- "type": "boolean"
1670
- },
1671
- "team": {
1672
- "char": "t",
1673
- "description": "team to use",
1674
- "name": "team",
1313
+ "type": "option"
1314
+ },
1315
+ "remote": {
1316
+ "char": "r",
1317
+ "description": "git remote of app to use",
1318
+ "name": "remote",
1675
1319
  "hasDynamicHelp": false,
1676
1320
  "multiple": false,
1677
1321
  "type": "option"
@@ -1679,37 +1323,52 @@
1679
1323
  },
1680
1324
  "hasDynamicHelp": false,
1681
1325
  "hiddenAliases": [
1682
- "list",
1683
- "apps:list"
1326
+ "rename"
1684
1327
  ],
1685
- "id": "apps",
1328
+ "id": "apps:rename",
1686
1329
  "pluginAlias": "heroku",
1687
1330
  "pluginName": "heroku",
1688
1331
  "pluginType": "core",
1689
1332
  "strict": true,
1333
+ "help": "This will locally update the git remote if it is set to the old app.",
1690
1334
  "topic": "apps",
1691
1335
  "isESM": true,
1692
1336
  "relativePath": [
1693
1337
  "lib",
1694
1338
  "commands",
1695
1339
  "apps",
1696
- "index.js"
1340
+ "rename.js"
1697
1341
  ]
1698
1342
  },
1699
- "apps:info": {
1343
+ "apps:transfer": {
1700
1344
  "aliases": [],
1701
1345
  "args": {
1702
- "app": {
1703
- "hidden": true,
1704
- "name": "app"
1346
+ "recipient": {
1347
+ "description": "user or team to transfer applications to",
1348
+ "name": "recipient",
1349
+ "required": true
1705
1350
  }
1706
1351
  },
1707
- "description": "show detailed app information",
1352
+ "description": "transfer applications to another user or team",
1708
1353
  "examples": [
1709
- "$ heroku apps:info",
1710
- "$ heroku apps:info --shell"
1354
+ "$ 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..."
1711
1355
  ],
1712
1356
  "flags": {
1357
+ "locked": {
1358
+ "char": "l",
1359
+ "description": "lock the app upon transfer",
1360
+ "name": "locked",
1361
+ "required": false,
1362
+ "allowNo": false,
1363
+ "type": "boolean"
1364
+ },
1365
+ "bulk": {
1366
+ "description": "transfer applications in bulk",
1367
+ "name": "bulk",
1368
+ "required": false,
1369
+ "allowNo": false,
1370
+ "type": "boolean"
1371
+ },
1713
1372
  "app": {
1714
1373
  "char": "a",
1715
1374
  "description": "app to run command against",
@@ -1726,53 +1385,37 @@
1726
1385
  "multiple": false,
1727
1386
  "type": "option"
1728
1387
  },
1729
- "shell": {
1730
- "char": "s",
1731
- "description": "output more shell friendly key/value pairs",
1732
- "name": "shell",
1733
- "allowNo": false,
1734
- "type": "boolean"
1735
- },
1736
- "extended": {
1737
- "char": "x",
1388
+ "confirm": {
1389
+ "char": "c",
1738
1390
  "hidden": true,
1739
- "name": "extended",
1740
- "allowNo": false,
1741
- "type": "boolean"
1742
- },
1743
- "json": {
1744
- "char": "j",
1745
- "description": "output in json format",
1746
- "name": "json",
1747
- "allowNo": false,
1748
- "type": "boolean"
1391
+ "name": "confirm",
1392
+ "hasDynamicHelp": false,
1393
+ "multiple": false,
1394
+ "type": "option"
1749
1395
  }
1750
1396
  },
1751
1397
  "hasDynamicHelp": false,
1752
- "hiddenAliases": [
1753
- "info"
1754
- ],
1755
- "id": "apps:info",
1398
+ "hiddenAliases": [],
1399
+ "id": "apps:transfer",
1756
1400
  "pluginAlias": "heroku",
1757
1401
  "pluginName": "heroku",
1758
1402
  "pluginType": "core",
1759
1403
  "strict": true,
1760
1404
  "topic": "apps",
1761
- "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...",
1762
1405
  "isESM": true,
1763
1406
  "relativePath": [
1764
1407
  "lib",
1765
1408
  "commands",
1766
1409
  "apps",
1767
- "info.js"
1410
+ "transfer.js"
1768
1411
  ]
1769
1412
  },
1770
- "apps:join": {
1413
+ "apps:unlock": {
1771
1414
  "aliases": [
1772
- "join"
1415
+ "unlock"
1773
1416
  ],
1774
1417
  "args": {},
1775
- "description": "add yourself to a team app",
1418
+ "description": "unlock an app so any team member can join",
1776
1419
  "flags": {
1777
1420
  "app": {
1778
1421
  "char": "a",
@@ -1794,7 +1437,7 @@
1794
1437
  },
1795
1438
  "hasDynamicHelp": false,
1796
1439
  "hiddenAliases": [],
1797
- "id": "apps:join",
1440
+ "id": "apps:unlock",
1798
1441
  "pluginAlias": "heroku",
1799
1442
  "pluginName": "heroku",
1800
1443
  "pluginType": "core",
@@ -1805,30 +1448,42 @@
1805
1448
  "lib",
1806
1449
  "commands",
1807
1450
  "apps",
1808
- "join.js"
1451
+ "unlock.js"
1809
1452
  ]
1810
1453
  },
1811
- "apps:leave": {
1454
+ "auth:login": {
1812
1455
  "aliases": [
1813
- "leave"
1456
+ "login"
1814
1457
  ],
1815
1458
  "args": {},
1816
- "description": "remove yourself from a team app",
1817
- "examples": "heroku apps:leave -a APP",
1459
+ "description": "login with your Heroku credentials",
1818
1460
  "flags": {
1819
- "app": {
1820
- "char": "a",
1821
- "description": "app to run command against",
1822
- "name": "app",
1823
- "required": true,
1461
+ "browser": {
1462
+ "description": "browser to open SSO with (example: \"firefox\", \"safari\")",
1463
+ "name": "browser",
1824
1464
  "hasDynamicHelp": false,
1825
1465
  "multiple": false,
1826
1466
  "type": "option"
1827
1467
  },
1828
- "remote": {
1829
- "char": "r",
1830
- "description": "git remote of app to use",
1831
- "name": "remote",
1468
+ "sso": {
1469
+ "char": "s",
1470
+ "description": "login for enterprise users under SSO",
1471
+ "hidden": true,
1472
+ "name": "sso",
1473
+ "allowNo": false,
1474
+ "type": "boolean"
1475
+ },
1476
+ "interactive": {
1477
+ "char": "i",
1478
+ "description": "login with username/password",
1479
+ "name": "interactive",
1480
+ "allowNo": false,
1481
+ "type": "boolean"
1482
+ },
1483
+ "expires-in": {
1484
+ "char": "e",
1485
+ "description": "duration of token in seconds (default 30 days)",
1486
+ "name": "expires-in",
1832
1487
  "hasDynamicHelp": false,
1833
1488
  "multiple": false,
1834
1489
  "type": "option"
@@ -1836,77 +1491,115 @@
1836
1491
  },
1837
1492
  "hasDynamicHelp": false,
1838
1493
  "hiddenAliases": [],
1839
- "id": "apps:leave",
1494
+ "id": "auth:login",
1840
1495
  "pluginAlias": "heroku",
1841
1496
  "pluginName": "heroku",
1842
1497
  "pluginType": "core",
1843
1498
  "strict": true,
1844
- "topic": "apps",
1845
- "example": "heroku apps:leave -a APP",
1846
1499
  "isESM": true,
1847
1500
  "relativePath": [
1848
1501
  "lib",
1849
1502
  "commands",
1850
- "apps",
1851
- "leave.js"
1503
+ "auth",
1504
+ "login.js"
1852
1505
  ]
1853
1506
  },
1854
- "apps:lock": {
1507
+ "auth:logout": {
1855
1508
  "aliases": [
1856
- "lock"
1509
+ "logout"
1857
1510
  ],
1858
1511
  "args": {},
1859
- "description": "prevent team members from joining an app",
1860
- "flags": {
1861
- "app": {
1862
- "char": "a",
1863
- "description": "app to run command against",
1864
- "name": "app",
1865
- "required": true,
1866
- "hasDynamicHelp": false,
1867
- "multiple": false,
1868
- "type": "option"
1869
- },
1870
- "remote": {
1871
- "char": "r",
1872
- "description": "git remote of app to use",
1873
- "name": "remote",
1874
- "hasDynamicHelp": false,
1875
- "multiple": false,
1876
- "type": "option"
1877
- }
1878
- },
1512
+ "description": "clears local login credentials and invalidates API session",
1513
+ "flags": {},
1879
1514
  "hasDynamicHelp": false,
1880
1515
  "hiddenAliases": [],
1881
- "id": "apps:lock",
1516
+ "id": "auth:logout",
1882
1517
  "pluginAlias": "heroku",
1883
1518
  "pluginName": "heroku",
1884
1519
  "pluginType": "core",
1885
1520
  "strict": true,
1886
- "topic": "apps",
1887
1521
  "isESM": true,
1888
1522
  "relativePath": [
1889
1523
  "lib",
1890
1524
  "commands",
1891
- "apps",
1892
- "lock.js"
1525
+ "auth",
1526
+ "logout.js"
1893
1527
  ]
1894
1528
  },
1895
- "apps:open": {
1529
+ "auth:token": {
1530
+ "aliases": [],
1531
+ "args": {},
1532
+ "description": "outputs current CLI authentication token.\nBy default, the CLI auth token is only valid for 1 year. To generate a long-lived token, use heroku authorizations:create",
1533
+ "flags": {},
1534
+ "hasDynamicHelp": false,
1535
+ "hiddenAliases": [],
1536
+ "id": "auth:token",
1537
+ "pluginAlias": "heroku",
1538
+ "pluginName": "heroku",
1539
+ "pluginType": "core",
1540
+ "strict": true,
1541
+ "isESM": true,
1542
+ "relativePath": [
1543
+ "lib",
1544
+ "commands",
1545
+ "auth",
1546
+ "token.js"
1547
+ ]
1548
+ },
1549
+ "auth:whoami": {
1550
+ "aliases": [
1551
+ "whoami"
1552
+ ],
1553
+ "args": {},
1554
+ "description": "display the current logged in user",
1555
+ "flags": {},
1556
+ "hasDynamicHelp": false,
1557
+ "hiddenAliases": [],
1558
+ "id": "auth:whoami",
1559
+ "pluginAlias": "heroku",
1560
+ "pluginName": "heroku",
1561
+ "pluginType": "core",
1562
+ "strict": true,
1563
+ "isESM": true,
1564
+ "relativePath": [
1565
+ "lib",
1566
+ "commands",
1567
+ "auth",
1568
+ "whoami.js"
1569
+ ]
1570
+ },
1571
+ "addons:attach": {
1896
1572
  "aliases": [],
1897
1573
  "args": {
1898
- "path": {
1899
- "description": "base URL path of app",
1900
- "name": "path",
1901
- "required": false
1574
+ "addon_name": {
1575
+ "description": "unique identifier or globally unique name of the add-on",
1576
+ "name": "addon_name",
1577
+ "required": true
1902
1578
  }
1903
1579
  },
1904
- "description": "open the app in a web browser",
1905
- "examples": [
1906
- "$ heroku open -a myapp",
1907
- "$ heroku open -a myapp /foo"
1908
- ],
1580
+ "description": "attach an existing add-on resource to an app",
1909
1581
  "flags": {
1582
+ "as": {
1583
+ "description": "name for add-on attachment",
1584
+ "name": "as",
1585
+ "hasDynamicHelp": false,
1586
+ "multiple": false,
1587
+ "type": "option"
1588
+ },
1589
+ "credential": {
1590
+ "description": "credential name for scoped access to Heroku Postgres",
1591
+ "name": "credential",
1592
+ "hasDynamicHelp": false,
1593
+ "multiple": false,
1594
+ "type": "option"
1595
+ },
1596
+ "confirm": {
1597
+ "description": "overwrite existing add-on attachment with same name",
1598
+ "name": "confirm",
1599
+ "hasDynamicHelp": false,
1600
+ "multiple": false,
1601
+ "type": "option"
1602
+ },
1910
1603
  "app": {
1911
1604
  "char": "a",
1912
1605
  "description": "app to run command against",
@@ -1926,37 +1619,60 @@
1926
1619
  }
1927
1620
  },
1928
1621
  "hasDynamicHelp": false,
1929
- "hiddenAliases": [
1930
- "open"
1931
- ],
1932
- "id": "apps:open",
1622
+ "hiddenAliases": [],
1623
+ "id": "addons:attach",
1933
1624
  "pluginAlias": "heroku",
1934
1625
  "pluginName": "heroku",
1935
1626
  "pluginType": "core",
1936
1627
  "strict": true,
1937
- "topic": "apps",
1628
+ "topic": "addons",
1938
1629
  "isESM": true,
1939
1630
  "relativePath": [
1940
1631
  "lib",
1941
1632
  "commands",
1942
- "apps",
1943
- "open.js"
1633
+ "addons",
1634
+ "attach.js"
1944
1635
  ]
1945
1636
  },
1946
- "apps:rename": {
1637
+ "addons:create": {
1947
1638
  "aliases": [],
1948
1639
  "args": {
1949
- "newname": {
1950
- "description": "new unique name of the app",
1951
- "name": "newname",
1640
+ "service:plan": {
1641
+ "description": "unique identifier or unique name of the add-on service plan",
1642
+ "name": "service:plan",
1952
1643
  "required": true
1953
1644
  }
1954
1645
  },
1955
- "description": "rename an app",
1956
- "examples": [
1957
- "$ heroku apps:rename --app oldname newname"
1958
- ],
1646
+ "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",
1647
+ "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",
1959
1648
  "flags": {
1649
+ "name": {
1650
+ "description": "name for the add-on resource",
1651
+ "name": "name",
1652
+ "hasDynamicHelp": false,
1653
+ "multiple": false,
1654
+ "type": "option"
1655
+ },
1656
+ "as": {
1657
+ "description": "name for the initial add-on attachment",
1658
+ "name": "as",
1659
+ "hasDynamicHelp": false,
1660
+ "multiple": false,
1661
+ "type": "option"
1662
+ },
1663
+ "confirm": {
1664
+ "description": "overwrite existing config vars or existing add-on attachments",
1665
+ "name": "confirm",
1666
+ "hasDynamicHelp": false,
1667
+ "multiple": false,
1668
+ "type": "option"
1669
+ },
1670
+ "wait": {
1671
+ "description": "watch add-on creation status and exit when complete",
1672
+ "name": "wait",
1673
+ "allowNo": false,
1674
+ "type": "boolean"
1675
+ },
1960
1676
  "app": {
1961
1677
  "char": "a",
1962
1678
  "description": "app to run command against",
@@ -1977,49 +1693,54 @@
1977
1693
  },
1978
1694
  "hasDynamicHelp": false,
1979
1695
  "hiddenAliases": [
1980
- "rename"
1696
+ "addons:add"
1981
1697
  ],
1982
- "id": "apps:rename",
1698
+ "id": "addons:create",
1983
1699
  "pluginAlias": "heroku",
1984
1700
  "pluginName": "heroku",
1985
1701
  "pluginType": "core",
1986
- "strict": true,
1987
- "help": "This will locally update the git remote if it is set to the old app.",
1988
- "topic": "apps",
1702
+ "strict": false,
1703
+ "topic": "addons",
1704
+ "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",
1989
1705
  "isESM": true,
1990
1706
  "relativePath": [
1991
1707
  "lib",
1992
1708
  "commands",
1993
- "apps",
1994
- "rename.js"
1709
+ "addons",
1710
+ "create.js"
1995
1711
  ]
1996
1712
  },
1997
- "apps:transfer": {
1713
+ "addons:destroy": {
1998
1714
  "aliases": [],
1999
1715
  "args": {
2000
- "recipient": {
2001
- "description": "user or team to transfer applications to",
2002
- "name": "recipient",
1716
+ "addonName": {
1717
+ "description": "unique identifier or globally unique name of the add-on",
1718
+ "name": "addonName",
2003
1719
  "required": true
2004
1720
  }
2005
1721
  },
2006
- "description": "transfer applications to another user or team",
1722
+ "description": "permanently destroy an add-on resource",
2007
1723
  "examples": [
2008
- "$ 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..."
1724
+ "addons:destroy [ADDON]... [flags]"
2009
1725
  ],
2010
1726
  "flags": {
2011
- "locked": {
2012
- "char": "l",
2013
- "description": "lock the app upon transfer",
2014
- "name": "locked",
2015
- "required": false,
1727
+ "force": {
1728
+ "char": "f",
1729
+ "description": "allow destruction even if connected to other apps",
1730
+ "name": "force",
2016
1731
  "allowNo": false,
2017
1732
  "type": "boolean"
2018
1733
  },
2019
- "bulk": {
2020
- "description": "transfer applications in bulk",
2021
- "name": "bulk",
2022
- "required": false,
1734
+ "confirm": {
1735
+ "char": "c",
1736
+ "name": "confirm",
1737
+ "hasDynamicHelp": false,
1738
+ "multiple": false,
1739
+ "type": "option"
1740
+ },
1741
+ "wait": {
1742
+ "description": "watch add-on destruction status and exit when complete",
1743
+ "name": "wait",
2023
1744
  "allowNo": false,
2024
1745
  "type": "boolean"
2025
1746
  },
@@ -2038,38 +1759,36 @@
2038
1759
  "hasDynamicHelp": false,
2039
1760
  "multiple": false,
2040
1761
  "type": "option"
2041
- },
2042
- "confirm": {
2043
- "char": "c",
2044
- "hidden": true,
2045
- "name": "confirm",
2046
- "hasDynamicHelp": false,
2047
- "multiple": false,
2048
- "type": "option"
2049
1762
  }
2050
1763
  },
2051
1764
  "hasDynamicHelp": false,
2052
- "hiddenAliases": [],
2053
- "id": "apps:transfer",
1765
+ "hiddenAliases": [
1766
+ "addons:remove"
1767
+ ],
1768
+ "id": "addons:destroy",
2054
1769
  "pluginAlias": "heroku",
2055
1770
  "pluginName": "heroku",
2056
1771
  "pluginType": "core",
2057
- "strict": true,
2058
- "topic": "apps",
1772
+ "strict": false,
1773
+ "topic": "addons",
2059
1774
  "isESM": true,
2060
1775
  "relativePath": [
2061
1776
  "lib",
2062
1777
  "commands",
2063
- "apps",
2064
- "transfer.js"
1778
+ "addons",
1779
+ "destroy.js"
2065
1780
  ]
2066
1781
  },
2067
- "apps:unlock": {
2068
- "aliases": [
2069
- "unlock"
2070
- ],
2071
- "args": {},
2072
- "description": "unlock an app so any team member can join",
1782
+ "addons:detach": {
1783
+ "aliases": [],
1784
+ "args": {
1785
+ "attachment_name": {
1786
+ "description": "unique identifier of the add-on attachment",
1787
+ "name": "attachment_name",
1788
+ "required": true
1789
+ }
1790
+ },
1791
+ "description": "detach an existing add-on resource from an app",
2073
1792
  "flags": {
2074
1793
  "app": {
2075
1794
  "char": "a",
@@ -2091,179 +1810,49 @@
2091
1810
  },
2092
1811
  "hasDynamicHelp": false,
2093
1812
  "hiddenAliases": [],
2094
- "id": "apps:unlock",
2095
- "pluginAlias": "heroku",
2096
- "pluginName": "heroku",
2097
- "pluginType": "core",
2098
- "strict": true,
2099
- "topic": "apps",
2100
- "isESM": true,
2101
- "relativePath": [
2102
- "lib",
2103
- "commands",
2104
- "apps",
2105
- "unlock.js"
2106
- ]
2107
- },
2108
- "auth:login": {
2109
- "aliases": [
2110
- "login"
2111
- ],
2112
- "args": {},
2113
- "description": "login with your Heroku credentials",
2114
- "flags": {
2115
- "browser": {
2116
- "description": "browser to open SSO with (example: \"firefox\", \"safari\")",
2117
- "name": "browser",
2118
- "hasDynamicHelp": false,
2119
- "multiple": false,
2120
- "type": "option"
2121
- },
2122
- "sso": {
2123
- "char": "s",
2124
- "description": "login for enterprise users under SSO",
2125
- "hidden": true,
2126
- "name": "sso",
2127
- "allowNo": false,
2128
- "type": "boolean"
2129
- },
2130
- "interactive": {
2131
- "char": "i",
2132
- "description": "login with username/password",
2133
- "name": "interactive",
2134
- "allowNo": false,
2135
- "type": "boolean"
2136
- },
2137
- "expires-in": {
2138
- "char": "e",
2139
- "description": "duration of token in seconds (default 30 days)",
2140
- "name": "expires-in",
2141
- "hasDynamicHelp": false,
2142
- "multiple": false,
2143
- "type": "option"
2144
- }
2145
- },
2146
- "hasDynamicHelp": false,
2147
- "hiddenAliases": [],
2148
- "id": "auth:login",
2149
- "pluginAlias": "heroku",
2150
- "pluginName": "heroku",
2151
- "pluginType": "core",
2152
- "strict": true,
2153
- "isESM": true,
2154
- "relativePath": [
2155
- "lib",
2156
- "commands",
2157
- "auth",
2158
- "login.js"
2159
- ]
2160
- },
2161
- "auth:logout": {
2162
- "aliases": [
2163
- "logout"
2164
- ],
2165
- "args": {},
2166
- "description": "clears local login credentials and invalidates API session",
2167
- "flags": {},
2168
- "hasDynamicHelp": false,
2169
- "hiddenAliases": [],
2170
- "id": "auth:logout",
2171
- "pluginAlias": "heroku",
2172
- "pluginName": "heroku",
2173
- "pluginType": "core",
2174
- "strict": true,
2175
- "isESM": true,
2176
- "relativePath": [
2177
- "lib",
2178
- "commands",
2179
- "auth",
2180
- "logout.js"
2181
- ]
2182
- },
2183
- "auth:token": {
2184
- "aliases": [],
2185
- "args": {},
2186
- "description": "outputs current CLI authentication token.\nBy default, the CLI auth token is only valid for 1 year. To generate a long-lived token, use heroku authorizations:create",
2187
- "flags": {},
2188
- "hasDynamicHelp": false,
2189
- "hiddenAliases": [],
2190
- "id": "auth:token",
2191
- "pluginAlias": "heroku",
2192
- "pluginName": "heroku",
2193
- "pluginType": "core",
2194
- "strict": true,
2195
- "isESM": true,
2196
- "relativePath": [
2197
- "lib",
2198
- "commands",
2199
- "auth",
2200
- "token.js"
2201
- ]
2202
- },
2203
- "auth:whoami": {
2204
- "aliases": [
2205
- "whoami"
2206
- ],
2207
- "args": {},
2208
- "description": "display the current logged in user",
2209
- "flags": {},
2210
- "hasDynamicHelp": false,
2211
- "hiddenAliases": [],
2212
- "id": "auth:whoami",
1813
+ "id": "addons:detach",
2213
1814
  "pluginAlias": "heroku",
2214
1815
  "pluginName": "heroku",
2215
1816
  "pluginType": "core",
2216
1817
  "strict": true,
1818
+ "topic": "addons",
2217
1819
  "isESM": true,
2218
1820
  "relativePath": [
2219
1821
  "lib",
2220
1822
  "commands",
2221
- "auth",
2222
- "whoami.js"
1823
+ "addons",
1824
+ "detach.js"
2223
1825
  ]
2224
1826
  },
2225
- "authorizations:create": {
1827
+ "addons:docs": {
2226
1828
  "aliases": [],
2227
- "args": {},
2228
- "description": "create a new OAuth authorization",
2229
- "examples": [
2230
- "$ heroku authorizations:create --description \"For use with Anvil\""
2231
- ],
1829
+ "args": {
1830
+ "addon": {
1831
+ "description": "unique identifier or globally unique name of the add-on",
1832
+ "name": "addon",
1833
+ "required": true
1834
+ }
1835
+ },
1836
+ "description": "open an add-on's Dev Center documentation in your browser",
2232
1837
  "flags": {
2233
- "description": {
2234
- "char": "d",
2235
- "description": "set a custom authorization",
2236
- "name": "description",
2237
- "hasDynamicHelp": false,
2238
- "multiple": false,
2239
- "type": "option"
2240
- },
2241
- "short": {
2242
- "char": "S",
2243
- "description": "only output token",
2244
- "name": "short",
2245
- "allowNo": false,
2246
- "type": "boolean"
2247
- },
2248
- "json": {
2249
- "char": "j",
2250
- "description": "output in json format",
2251
- "name": "json",
1838
+ "show-url": {
1839
+ "description": "show URL, do not open browser",
1840
+ "name": "show-url",
2252
1841
  "allowNo": false,
2253
1842
  "type": "boolean"
2254
1843
  },
2255
- "scope": {
2256
- "char": "s",
2257
- "description": "set custom OAuth scopes",
2258
- "name": "scope",
1844
+ "app": {
1845
+ "char": "a",
1846
+ "description": "app to run command against",
1847
+ "name": "app",
2259
1848
  "hasDynamicHelp": false,
2260
1849
  "multiple": false,
2261
1850
  "type": "option"
2262
1851
  },
2263
- "expires-in": {
2264
- "char": "e",
2265
- "description": "set expiration in seconds (default no expiration)",
2266
- "name": "expires-in",
1852
+ "remote": {
1853
+ "char": "r",
1854
+ "description": "git remote of app to use",
1855
+ "name": "remote",
2267
1856
  "hasDynamicHelp": false,
2268
1857
  "multiple": false,
2269
1858
  "type": "option"
@@ -2271,213 +1860,289 @@
2271
1860
  },
2272
1861
  "hasDynamicHelp": false,
2273
1862
  "hiddenAliases": [],
2274
- "id": "authorizations:create",
1863
+ "id": "addons:docs",
2275
1864
  "pluginAlias": "heroku",
2276
1865
  "pluginName": "heroku",
2277
1866
  "pluginType": "core",
2278
1867
  "strict": true,
1868
+ "topic": "addons",
2279
1869
  "isESM": true,
2280
1870
  "relativePath": [
2281
1871
  "lib",
2282
1872
  "commands",
2283
- "authorizations",
2284
- "create.js"
1873
+ "addons",
1874
+ "docs.js"
2285
1875
  ]
2286
1876
  },
2287
- "authorizations": {
1877
+ "addons": {
2288
1878
  "aliases": [],
2289
1879
  "args": {},
2290
- "description": "list OAuth authorizations",
1880
+ "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 ",
2291
1881
  "examples": [
2292
- "$ heroku authorizations"
1882
+ "$ heroku addons --all",
1883
+ "$ heroku addons --app acme-inc-www"
2293
1884
  ],
2294
1885
  "flags": {
1886
+ "all": {
1887
+ "char": "A",
1888
+ "description": "show add-ons and attachments for all accessible apps",
1889
+ "name": "all",
1890
+ "allowNo": false,
1891
+ "type": "boolean"
1892
+ },
2295
1893
  "json": {
2296
- "char": "j",
2297
- "description": "output in json format",
1894
+ "description": "return add-ons in json format",
2298
1895
  "name": "json",
2299
1896
  "allowNo": false,
2300
1897
  "type": "boolean"
1898
+ },
1899
+ "app": {
1900
+ "char": "a",
1901
+ "description": "app to run command against",
1902
+ "name": "app",
1903
+ "hasDynamicHelp": false,
1904
+ "multiple": false,
1905
+ "type": "option"
1906
+ },
1907
+ "remote": {
1908
+ "char": "r",
1909
+ "description": "git remote of app to use",
1910
+ "name": "remote",
1911
+ "hasDynamicHelp": false,
1912
+ "multiple": false,
1913
+ "type": "option"
2301
1914
  }
2302
1915
  },
2303
1916
  "hasDynamicHelp": false,
2304
1917
  "hiddenAliases": [],
2305
- "id": "authorizations",
1918
+ "id": "addons",
2306
1919
  "pluginAlias": "heroku",
2307
1920
  "pluginName": "heroku",
2308
1921
  "pluginType": "core",
2309
1922
  "strict": true,
1923
+ "usage": "addons [--all|--app APP]",
1924
+ "topic": "addons",
2310
1925
  "isESM": true,
2311
1926
  "relativePath": [
2312
1927
  "lib",
2313
1928
  "commands",
2314
- "authorizations",
1929
+ "addons",
2315
1930
  "index.js"
2316
1931
  ]
2317
1932
  },
2318
- "authorizations:info": {
1933
+ "addons:info": {
2319
1934
  "aliases": [],
2320
1935
  "args": {
2321
- "id": {
2322
- "description": "ID of the authorization",
2323
- "name": "id",
1936
+ "addon": {
1937
+ "description": "unique identifier or globally unique name of the add-on",
1938
+ "name": "addon",
2324
1939
  "required": true
2325
1940
  }
2326
1941
  },
2327
- "description": "show an existing OAuth authorization",
1942
+ "description": "show detailed add-on resource and attachment information",
2328
1943
  "flags": {
2329
- "json": {
2330
- "char": "j",
2331
- "description": "output in json format",
2332
- "name": "json",
2333
- "allowNo": false,
2334
- "type": "boolean"
1944
+ "app": {
1945
+ "char": "a",
1946
+ "description": "app to run command against",
1947
+ "name": "app",
1948
+ "hasDynamicHelp": false,
1949
+ "multiple": false,
1950
+ "type": "option"
1951
+ },
1952
+ "remote": {
1953
+ "char": "r",
1954
+ "description": "git remote of app to use",
1955
+ "name": "remote",
1956
+ "hasDynamicHelp": false,
1957
+ "multiple": false,
1958
+ "type": "option"
2335
1959
  }
2336
1960
  },
2337
1961
  "hasDynamicHelp": false,
2338
1962
  "hiddenAliases": [],
2339
- "id": "authorizations:info",
1963
+ "id": "addons:info",
2340
1964
  "pluginAlias": "heroku",
2341
1965
  "pluginName": "heroku",
2342
1966
  "pluginType": "core",
2343
1967
  "strict": true,
1968
+ "usage": "addons:info ADDON",
1969
+ "topic": "addons",
2344
1970
  "isESM": true,
2345
1971
  "relativePath": [
2346
1972
  "lib",
2347
1973
  "commands",
2348
- "authorizations",
1974
+ "addons",
2349
1975
  "info.js"
2350
1976
  ]
2351
1977
  },
2352
- "authorizations:revoke": {
2353
- "aliases": [
2354
- "authorizations:revoke",
2355
- "authorizations:destroy"
2356
- ],
1978
+ "addons:open": {
1979
+ "aliases": [],
2357
1980
  "args": {
2358
- "id": {
2359
- "description": "ID of the authorization",
2360
- "name": "id",
1981
+ "addon": {
1982
+ "description": "unique identifier or globally unique name of the add-on",
1983
+ "name": "addon",
2361
1984
  "required": true
2362
1985
  }
2363
1986
  },
2364
- "description": "revoke OAuth authorization",
2365
- "examples": [
2366
- "$ heroku authorizations:revoke 105a7bfa-34c3-476e-873a-b1ac3fdc12fb"
2367
- ],
2368
- "flags": {},
1987
+ "description": "open an add-on's dashboard in your browser",
1988
+ "flags": {
1989
+ "show-url": {
1990
+ "description": "show URL, do not open browser",
1991
+ "name": "show-url",
1992
+ "allowNo": false,
1993
+ "type": "boolean"
1994
+ },
1995
+ "app": {
1996
+ "char": "a",
1997
+ "description": "app to run command against",
1998
+ "name": "app",
1999
+ "hasDynamicHelp": false,
2000
+ "multiple": false,
2001
+ "type": "option"
2002
+ },
2003
+ "remote": {
2004
+ "char": "r",
2005
+ "description": "git remote of app to use",
2006
+ "name": "remote",
2007
+ "hasDynamicHelp": false,
2008
+ "multiple": false,
2009
+ "type": "option"
2010
+ }
2011
+ },
2369
2012
  "hasDynamicHelp": false,
2370
2013
  "hiddenAliases": [],
2371
- "id": "authorizations:revoke",
2014
+ "id": "addons:open",
2372
2015
  "pluginAlias": "heroku",
2373
2016
  "pluginName": "heroku",
2374
2017
  "pluginType": "core",
2375
2018
  "strict": true,
2019
+ "topic": "addons",
2376
2020
  "isESM": true,
2377
2021
  "relativePath": [
2378
2022
  "lib",
2379
2023
  "commands",
2380
- "authorizations",
2381
- "revoke.js"
2024
+ "addons",
2025
+ "open.js"
2382
2026
  ]
2383
2027
  },
2384
- "authorizations:rotate": {
2028
+ "addons:plans": {
2385
2029
  "aliases": [],
2386
2030
  "args": {
2387
- "id": {
2388
- "description": "ID of the authorization",
2389
- "name": "id",
2031
+ "service": {
2032
+ "description": "unique identifier or globally unique name of the add-on",
2033
+ "name": "service",
2390
2034
  "required": true
2391
2035
  }
2392
2036
  },
2393
- "description": "updates an OAuth authorization token",
2394
- "flags": {},
2037
+ "description": "list all available plans for an add-on service",
2038
+ "flags": {
2039
+ "json": {
2040
+ "description": "output in json format",
2041
+ "name": "json",
2042
+ "allowNo": false,
2043
+ "type": "boolean"
2044
+ }
2045
+ },
2395
2046
  "hasDynamicHelp": false,
2396
2047
  "hiddenAliases": [],
2397
- "id": "authorizations:rotate",
2048
+ "id": "addons:plans",
2398
2049
  "pluginAlias": "heroku",
2399
2050
  "pluginName": "heroku",
2400
2051
  "pluginType": "core",
2401
2052
  "strict": true,
2053
+ "topic": "addons",
2402
2054
  "isESM": true,
2403
2055
  "relativePath": [
2404
2056
  "lib",
2405
2057
  "commands",
2406
- "authorizations",
2407
- "rotate.js"
2058
+ "addons",
2059
+ "plans.js"
2408
2060
  ]
2409
2061
  },
2410
- "authorizations:update": {
2062
+ "addons:rename": {
2411
2063
  "aliases": [],
2412
2064
  "args": {
2413
- "id": {
2414
- "description": "ID of the authorization",
2415
- "name": "id",
2065
+ "addon_name": {
2066
+ "description": "unique identifier or globally unique name of the add-on",
2067
+ "name": "addon_name",
2068
+ "required": true
2069
+ },
2070
+ "new_name": {
2071
+ "description": "new globally unique name of the add-on",
2072
+ "name": "new_name",
2416
2073
  "required": true
2417
2074
  }
2418
2075
  },
2419
- "description": "updates an OAuth authorization",
2420
- "flags": {
2421
- "description": {
2422
- "char": "d",
2423
- "description": "set a custom authorization description",
2424
- "name": "description",
2425
- "hasDynamicHelp": false,
2426
- "multiple": false,
2427
- "type": "option"
2428
- },
2429
- "client-id": {
2430
- "dependsOn": [
2431
- "client-secret"
2432
- ],
2433
- "description": "identifier of OAuth client to set",
2434
- "name": "client-id",
2435
- "hasDynamicHelp": false,
2436
- "multiple": false,
2437
- "type": "option"
2438
- },
2439
- "client-secret": {
2440
- "dependsOn": [
2441
- "client-id"
2442
- ],
2443
- "description": "secret of OAuth client to set",
2444
- "name": "client-secret",
2445
- "hasDynamicHelp": false,
2446
- "multiple": false,
2447
- "type": "option"
2076
+ "description": "rename an add-on",
2077
+ "flags": {},
2078
+ "hasDynamicHelp": false,
2079
+ "hiddenAliases": [],
2080
+ "id": "addons:rename",
2081
+ "pluginAlias": "heroku",
2082
+ "pluginName": "heroku",
2083
+ "pluginType": "core",
2084
+ "strict": true,
2085
+ "topic": "addons",
2086
+ "isESM": true,
2087
+ "relativePath": [
2088
+ "lib",
2089
+ "commands",
2090
+ "addons",
2091
+ "rename.js"
2092
+ ]
2093
+ },
2094
+ "addons:services": {
2095
+ "aliases": [],
2096
+ "args": {},
2097
+ "description": "list all available add-on services",
2098
+ "flags": {
2099
+ "json": {
2100
+ "description": "output in json format",
2101
+ "name": "json",
2102
+ "allowNo": false,
2103
+ "type": "boolean"
2448
2104
  }
2449
2105
  },
2450
2106
  "hasDynamicHelp": false,
2451
2107
  "hiddenAliases": [],
2452
- "id": "authorizations:update",
2108
+ "id": "addons:services",
2453
2109
  "pluginAlias": "heroku",
2454
2110
  "pluginName": "heroku",
2455
2111
  "pluginType": "core",
2456
2112
  "strict": true,
2113
+ "topic": "addons",
2457
2114
  "isESM": true,
2458
2115
  "relativePath": [
2459
2116
  "lib",
2460
2117
  "commands",
2461
- "authorizations",
2462
- "update.js"
2118
+ "addons",
2119
+ "services.js"
2463
2120
  ]
2464
2121
  },
2465
- "buildpacks:add": {
2466
- "aliases": [],
2122
+ "addons:upgrade": {
2123
+ "aliases": [
2124
+ "addons:downgrade"
2125
+ ],
2467
2126
  "args": {
2468
- "buildpack": {
2469
- "description": "namespace/name of the buildpack",
2470
- "name": "buildpack",
2127
+ "addon": {
2128
+ "description": "unique identifier or globally unique name of the add-on",
2129
+ "name": "addon",
2471
2130
  "required": true
2131
+ },
2132
+ "plan": {
2133
+ "description": "unique identifier or name of the plan",
2134
+ "name": "plan"
2472
2135
  }
2473
2136
  },
2474
- "description": "add new app buildpack, inserting into list of buildpacks if necessary",
2137
+ "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 ",
2138
+ "examples": [
2139
+ "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"
2140
+ ],
2475
2141
  "flags": {
2476
2142
  "app": {
2477
2143
  "char": "a",
2478
2144
  "description": "app to run command against",
2479
2145
  "name": "app",
2480
- "required": true,
2481
2146
  "hasDynamicHelp": false,
2482
2147
  "multiple": false,
2483
2148
  "type": "option"
@@ -2489,41 +2154,45 @@
2489
2154
  "hasDynamicHelp": false,
2490
2155
  "multiple": false,
2491
2156
  "type": "option"
2492
- },
2493
- "index": {
2494
- "char": "i",
2495
- "description": "the 1-based index of the URL in the list of URLs",
2496
- "name": "index",
2497
- "hasDynamicHelp": false,
2498
- "multiple": false,
2499
- "type": "option"
2500
2157
  }
2501
2158
  },
2502
2159
  "hasDynamicHelp": false,
2503
2160
  "hiddenAliases": [],
2504
- "id": "buildpacks:add",
2161
+ "id": "addons:upgrade",
2505
2162
  "pluginAlias": "heroku",
2506
2163
  "pluginName": "heroku",
2507
2164
  "pluginType": "core",
2508
2165
  "strict": true,
2166
+ "topic": "addons",
2509
2167
  "isESM": true,
2510
2168
  "relativePath": [
2511
2169
  "lib",
2512
2170
  "commands",
2513
- "buildpacks",
2514
- "add.js"
2171
+ "addons",
2172
+ "upgrade.js"
2515
2173
  ]
2516
2174
  },
2517
- "buildpacks:clear": {
2175
+ "addons:wait": {
2518
2176
  "aliases": [],
2519
- "args": {},
2520
- "description": "clear all buildpacks set on the app",
2177
+ "args": {
2178
+ "addon": {
2179
+ "description": "unique identifier or globally unique name of the add-on",
2180
+ "name": "addon"
2181
+ }
2182
+ },
2183
+ "description": "show provisioning status of the add-ons on the app",
2521
2184
  "flags": {
2185
+ "wait-interval": {
2186
+ "description": "how frequently to poll in seconds",
2187
+ "name": "wait-interval",
2188
+ "hasDynamicHelp": false,
2189
+ "multiple": false,
2190
+ "type": "option"
2191
+ },
2522
2192
  "app": {
2523
2193
  "char": "a",
2524
2194
  "description": "app to run command against",
2525
2195
  "name": "app",
2526
- "required": true,
2527
2196
  "hasDynamicHelp": false,
2528
2197
  "multiple": false,
2529
2198
  "type": "option"
@@ -2539,37 +2208,62 @@
2539
2208
  },
2540
2209
  "hasDynamicHelp": false,
2541
2210
  "hiddenAliases": [],
2542
- "id": "buildpacks:clear",
2211
+ "id": "addons:wait",
2543
2212
  "pluginAlias": "heroku",
2544
2213
  "pluginName": "heroku",
2545
2214
  "pluginType": "core",
2546
2215
  "strict": true,
2216
+ "topic": "addons",
2547
2217
  "isESM": true,
2548
2218
  "relativePath": [
2549
2219
  "lib",
2550
2220
  "commands",
2551
- "buildpacks",
2552
- "clear.js"
2221
+ "addons",
2222
+ "wait.js"
2553
2223
  ]
2554
2224
  },
2555
- "buildpacks": {
2225
+ "authorizations:create": {
2556
2226
  "aliases": [],
2557
2227
  "args": {},
2558
- "description": "list the buildpacks on an app",
2228
+ "description": "create a new OAuth authorization",
2229
+ "examples": [
2230
+ "$ heroku authorizations:create --description \"For use with Anvil\""
2231
+ ],
2559
2232
  "flags": {
2560
- "app": {
2561
- "char": "a",
2562
- "description": "app to run command against",
2563
- "name": "app",
2564
- "required": true,
2233
+ "description": {
2234
+ "char": "d",
2235
+ "description": "set a custom authorization",
2236
+ "name": "description",
2565
2237
  "hasDynamicHelp": false,
2566
2238
  "multiple": false,
2567
2239
  "type": "option"
2568
2240
  },
2569
- "remote": {
2570
- "char": "r",
2571
- "description": "git remote of app to use",
2572
- "name": "remote",
2241
+ "short": {
2242
+ "char": "S",
2243
+ "description": "only output token",
2244
+ "name": "short",
2245
+ "allowNo": false,
2246
+ "type": "boolean"
2247
+ },
2248
+ "json": {
2249
+ "char": "j",
2250
+ "description": "output in json format",
2251
+ "name": "json",
2252
+ "allowNo": false,
2253
+ "type": "boolean"
2254
+ },
2255
+ "scope": {
2256
+ "char": "s",
2257
+ "description": "set custom OAuth scopes",
2258
+ "name": "scope",
2259
+ "hasDynamicHelp": false,
2260
+ "multiple": false,
2261
+ "type": "option"
2262
+ },
2263
+ "expires-in": {
2264
+ "char": "e",
2265
+ "description": "set expiration in seconds (default no expiration)",
2266
+ "name": "expires-in",
2573
2267
  "hasDynamicHelp": false,
2574
2268
  "multiple": false,
2575
2269
  "type": "option"
@@ -2577,7 +2271,7 @@
2577
2271
  },
2578
2272
  "hasDynamicHelp": false,
2579
2273
  "hiddenAliases": [],
2580
- "id": "buildpacks",
2274
+ "id": "authorizations:create",
2581
2275
  "pluginAlias": "heroku",
2582
2276
  "pluginName": "heroku",
2583
2277
  "pluginType": "core",
@@ -2586,24 +2280,29 @@
2586
2280
  "relativePath": [
2587
2281
  "lib",
2588
2282
  "commands",
2589
- "buildpacks",
2590
- "index.js"
2283
+ "authorizations",
2284
+ "create.js"
2591
2285
  ]
2592
2286
  },
2593
- "buildpacks:info": {
2287
+ "authorizations": {
2594
2288
  "aliases": [],
2595
- "args": {
2596
- "buildpack": {
2597
- "description": "namespace/name of the buildpack",
2598
- "name": "buildpack",
2599
- "required": true
2289
+ "args": {},
2290
+ "description": "list OAuth authorizations",
2291
+ "examples": [
2292
+ "$ heroku authorizations"
2293
+ ],
2294
+ "flags": {
2295
+ "json": {
2296
+ "char": "j",
2297
+ "description": "output in json format",
2298
+ "name": "json",
2299
+ "allowNo": false,
2300
+ "type": "boolean"
2600
2301
  }
2601
2302
  },
2602
- "description": "fetch info about a buildpack",
2603
- "flags": {},
2604
2303
  "hasDynamicHelp": false,
2605
2304
  "hiddenAliases": [],
2606
- "id": "buildpacks:info",
2305
+ "id": "authorizations",
2607
2306
  "pluginAlias": "heroku",
2608
2307
  "pluginName": "heroku",
2609
2308
  "pluginType": "core",
@@ -2612,49 +2311,32 @@
2612
2311
  "relativePath": [
2613
2312
  "lib",
2614
2313
  "commands",
2615
- "buildpacks",
2616
- "info.js"
2314
+ "authorizations",
2315
+ "index.js"
2617
2316
  ]
2618
2317
  },
2619
- "buildpacks:remove": {
2318
+ "authorizations:info": {
2620
2319
  "aliases": [],
2621
2320
  "args": {
2622
- "buildpack": {
2623
- "description": "namespace/name of the buildpack",
2624
- "name": "buildpack"
2321
+ "id": {
2322
+ "description": "ID of the authorization",
2323
+ "name": "id",
2324
+ "required": true
2625
2325
  }
2626
2326
  },
2627
- "description": "remove a buildpack set on the app",
2327
+ "description": "show an existing OAuth authorization",
2628
2328
  "flags": {
2629
- "app": {
2630
- "char": "a",
2631
- "description": "app to run command against",
2632
- "name": "app",
2633
- "required": true,
2634
- "hasDynamicHelp": false,
2635
- "multiple": false,
2636
- "type": "option"
2637
- },
2638
- "remote": {
2639
- "char": "r",
2640
- "description": "git remote of app to use",
2641
- "name": "remote",
2642
- "hasDynamicHelp": false,
2643
- "multiple": false,
2644
- "type": "option"
2645
- },
2646
- "index": {
2647
- "char": "i",
2648
- "description": "the 1-based index of the URL to remove from the list of URLs",
2649
- "name": "index",
2650
- "hasDynamicHelp": false,
2651
- "multiple": false,
2652
- "type": "option"
2329
+ "json": {
2330
+ "char": "j",
2331
+ "description": "output in json format",
2332
+ "name": "json",
2333
+ "allowNo": false,
2334
+ "type": "boolean"
2653
2335
  }
2654
2336
  },
2655
2337
  "hasDynamicHelp": false,
2656
2338
  "hiddenAliases": [],
2657
- "id": "buildpacks:remove",
2339
+ "id": "authorizations:info",
2658
2340
  "pluginAlias": "heroku",
2659
2341
  "pluginName": "heroku",
2660
2342
  "pluginType": "core",
@@ -2663,45 +2345,30 @@
2663
2345
  "relativePath": [
2664
2346
  "lib",
2665
2347
  "commands",
2666
- "buildpacks",
2667
- "remove.js"
2348
+ "authorizations",
2349
+ "info.js"
2668
2350
  ]
2669
2351
  },
2670
- "buildpacks:search": {
2671
- "aliases": [],
2352
+ "authorizations:revoke": {
2353
+ "aliases": [
2354
+ "authorizations:revoke",
2355
+ "authorizations:destroy"
2356
+ ],
2672
2357
  "args": {
2673
- "term": {
2674
- "description": "search term that searches across name, namespace, and description",
2675
- "name": "term"
2676
- }
2677
- },
2678
- "description": "search for buildpacks",
2679
- "flags": {
2680
- "namespace": {
2681
- "description": "buildpack namespaces to filter on using a comma separated list",
2682
- "name": "namespace",
2683
- "hasDynamicHelp": false,
2684
- "multiple": false,
2685
- "type": "option"
2686
- },
2687
- "name": {
2688
- "description": "buildpack names to filter on using a comma separated list ",
2689
- "name": "name",
2690
- "hasDynamicHelp": false,
2691
- "multiple": false,
2692
- "type": "option"
2693
- },
2694
- "description": {
2695
- "description": "buildpack description to filter on",
2696
- "name": "description",
2697
- "hasDynamicHelp": false,
2698
- "multiple": false,
2699
- "type": "option"
2358
+ "id": {
2359
+ "description": "ID of the authorization",
2360
+ "name": "id",
2361
+ "required": true
2700
2362
  }
2701
2363
  },
2364
+ "description": "revoke OAuth authorization",
2365
+ "examples": [
2366
+ "$ heroku authorizations:revoke 105a7bfa-34c3-476e-873a-b1ac3fdc12fb"
2367
+ ],
2368
+ "flags": {},
2702
2369
  "hasDynamicHelp": false,
2703
2370
  "hiddenAliases": [],
2704
- "id": "buildpacks:search",
2371
+ "id": "authorizations:revoke",
2705
2372
  "pluginAlias": "heroku",
2706
2373
  "pluginName": "heroku",
2707
2374
  "pluginType": "core",
@@ -2710,49 +2377,24 @@
2710
2377
  "relativePath": [
2711
2378
  "lib",
2712
2379
  "commands",
2713
- "buildpacks",
2714
- "search.js"
2380
+ "authorizations",
2381
+ "revoke.js"
2715
2382
  ]
2716
2383
  },
2717
- "buildpacks:set": {
2384
+ "authorizations:rotate": {
2718
2385
  "aliases": [],
2719
2386
  "args": {
2720
- "buildpack": {
2721
- "description": "namespace/name of the buildpack",
2722
- "name": "buildpack",
2387
+ "id": {
2388
+ "description": "ID of the authorization",
2389
+ "name": "id",
2723
2390
  "required": true
2724
2391
  }
2725
2392
  },
2726
- "flags": {
2727
- "app": {
2728
- "char": "a",
2729
- "description": "app to run command against",
2730
- "name": "app",
2731
- "required": true,
2732
- "hasDynamicHelp": false,
2733
- "multiple": false,
2734
- "type": "option"
2735
- },
2736
- "remote": {
2737
- "char": "r",
2738
- "description": "git remote of app to use",
2739
- "name": "remote",
2740
- "hasDynamicHelp": false,
2741
- "multiple": false,
2742
- "type": "option"
2743
- },
2744
- "index": {
2745
- "char": "i",
2746
- "description": "the 1-based index of the URL in the list of URLs",
2747
- "name": "index",
2748
- "hasDynamicHelp": false,
2749
- "multiple": false,
2750
- "type": "option"
2751
- }
2752
- },
2393
+ "description": "updates an OAuth authorization token",
2394
+ "flags": {},
2753
2395
  "hasDynamicHelp": false,
2754
2396
  "hiddenAliases": [],
2755
- "id": "buildpacks:set",
2397
+ "id": "authorizations:rotate",
2756
2398
  "pluginAlias": "heroku",
2757
2399
  "pluginName": "heroku",
2758
2400
  "pluginType": "core",
@@ -2761,24 +2403,53 @@
2761
2403
  "relativePath": [
2762
2404
  "lib",
2763
2405
  "commands",
2764
- "buildpacks",
2765
- "set.js"
2406
+ "authorizations",
2407
+ "rotate.js"
2766
2408
  ]
2767
2409
  },
2768
- "buildpacks:versions": {
2410
+ "authorizations:update": {
2769
2411
  "aliases": [],
2770
2412
  "args": {
2771
- "buildpack": {
2772
- "description": "namespace/name of the buildpack",
2773
- "name": "buildpack",
2413
+ "id": {
2414
+ "description": "ID of the authorization",
2415
+ "name": "id",
2774
2416
  "required": true
2775
2417
  }
2776
2418
  },
2777
- "description": "list versions of a buildpack",
2778
- "flags": {},
2419
+ "description": "updates an OAuth authorization",
2420
+ "flags": {
2421
+ "description": {
2422
+ "char": "d",
2423
+ "description": "set a custom authorization description",
2424
+ "name": "description",
2425
+ "hasDynamicHelp": false,
2426
+ "multiple": false,
2427
+ "type": "option"
2428
+ },
2429
+ "client-id": {
2430
+ "dependsOn": [
2431
+ "client-secret"
2432
+ ],
2433
+ "description": "identifier of OAuth client to set",
2434
+ "name": "client-id",
2435
+ "hasDynamicHelp": false,
2436
+ "multiple": false,
2437
+ "type": "option"
2438
+ },
2439
+ "client-secret": {
2440
+ "dependsOn": [
2441
+ "client-id"
2442
+ ],
2443
+ "description": "secret of OAuth client to set",
2444
+ "name": "client-secret",
2445
+ "hasDynamicHelp": false,
2446
+ "multiple": false,
2447
+ "type": "option"
2448
+ }
2449
+ },
2779
2450
  "hasDynamicHelp": false,
2780
2451
  "hiddenAliases": [],
2781
- "id": "buildpacks:versions",
2452
+ "id": "authorizations:update",
2782
2453
  "pluginAlias": "heroku",
2783
2454
  "pluginName": "heroku",
2784
2455
  "pluginType": "core",
@@ -2787,8 +2458,8 @@
2787
2458
  "relativePath": [
2788
2459
  "lib",
2789
2460
  "commands",
2790
- "buildpacks",
2791
- "versions.js"
2461
+ "authorizations",
2462
+ "update.js"
2792
2463
  ]
2793
2464
  },
2794
2465
  "certs:add": {
@@ -2931,26 +2602,219 @@
2931
2602
  },
2932
2603
  "hasDynamicHelp": false,
2933
2604
  "hiddenAliases": [],
2934
- "id": "certs:generate",
2605
+ "id": "certs:generate",
2606
+ "pluginAlias": "heroku",
2607
+ "pluginName": "heroku",
2608
+ "pluginType": "core",
2609
+ "strict": true,
2610
+ "topic": "certs",
2611
+ "help": "Generate a key and certificate signing request (or self-signed certificate)\nfor an app. Prompts for information to put in the certificate unless --now\nis used, or at least one of the --subject, --owner, --country, --area, or\n--city options is specified.",
2612
+ "isESM": true,
2613
+ "relativePath": [
2614
+ "lib",
2615
+ "commands",
2616
+ "certs",
2617
+ "generate.js"
2618
+ ]
2619
+ },
2620
+ "certs": {
2621
+ "aliases": [],
2622
+ "args": {},
2623
+ "description": "list SSL certificates for an app",
2624
+ "flags": {
2625
+ "app": {
2626
+ "char": "a",
2627
+ "description": "app to run command against",
2628
+ "name": "app",
2629
+ "required": true,
2630
+ "hasDynamicHelp": false,
2631
+ "multiple": false,
2632
+ "type": "option"
2633
+ },
2634
+ "remote": {
2635
+ "char": "r",
2636
+ "description": "git remote of app to use",
2637
+ "name": "remote",
2638
+ "hasDynamicHelp": false,
2639
+ "multiple": false,
2640
+ "type": "option"
2641
+ }
2642
+ },
2643
+ "hasDynamicHelp": false,
2644
+ "hiddenAliases": [],
2645
+ "id": "certs",
2646
+ "pluginAlias": "heroku",
2647
+ "pluginName": "heroku",
2648
+ "pluginType": "core",
2649
+ "strict": true,
2650
+ "topic": "certs",
2651
+ "isESM": true,
2652
+ "relativePath": [
2653
+ "lib",
2654
+ "commands",
2655
+ "certs",
2656
+ "index.js"
2657
+ ]
2658
+ },
2659
+ "certs:info": {
2660
+ "aliases": [],
2661
+ "args": {},
2662
+ "description": "show certificate information for an SSL certificate",
2663
+ "flags": {
2664
+ "name": {
2665
+ "description": "name to check info on",
2666
+ "name": "name",
2667
+ "hasDynamicHelp": false,
2668
+ "multiple": false,
2669
+ "type": "option"
2670
+ },
2671
+ "endpoint": {
2672
+ "description": "endpoint to check info on",
2673
+ "name": "endpoint",
2674
+ "hasDynamicHelp": false,
2675
+ "multiple": false,
2676
+ "type": "option"
2677
+ },
2678
+ "show-domains": {
2679
+ "description": "show associated domains",
2680
+ "name": "show-domains",
2681
+ "allowNo": false,
2682
+ "type": "boolean"
2683
+ },
2684
+ "app": {
2685
+ "char": "a",
2686
+ "description": "app to run command against",
2687
+ "name": "app",
2688
+ "required": true,
2689
+ "hasDynamicHelp": false,
2690
+ "multiple": false,
2691
+ "type": "option"
2692
+ },
2693
+ "remote": {
2694
+ "char": "r",
2695
+ "description": "git remote of app to use",
2696
+ "name": "remote",
2697
+ "hasDynamicHelp": false,
2698
+ "multiple": false,
2699
+ "type": "option"
2700
+ }
2701
+ },
2702
+ "hasDynamicHelp": false,
2703
+ "hiddenAliases": [],
2704
+ "id": "certs:info",
2705
+ "pluginAlias": "heroku",
2706
+ "pluginName": "heroku",
2707
+ "pluginType": "core",
2708
+ "strict": true,
2709
+ "topic": "certs",
2710
+ "isESM": true,
2711
+ "relativePath": [
2712
+ "lib",
2713
+ "commands",
2714
+ "certs",
2715
+ "info.js"
2716
+ ]
2717
+ },
2718
+ "certs:remove": {
2719
+ "aliases": [],
2720
+ "args": {},
2721
+ "description": "remove an SSL certificate from an app",
2722
+ "flags": {
2723
+ "confirm": {
2724
+ "hidden": true,
2725
+ "name": "confirm",
2726
+ "hasDynamicHelp": false,
2727
+ "multiple": false,
2728
+ "type": "option"
2729
+ },
2730
+ "name": {
2731
+ "description": "name to remove",
2732
+ "name": "name",
2733
+ "hasDynamicHelp": false,
2734
+ "multiple": false,
2735
+ "type": "option"
2736
+ },
2737
+ "endpoint": {
2738
+ "description": "endpoint to remove",
2739
+ "name": "endpoint",
2740
+ "hasDynamicHelp": false,
2741
+ "multiple": false,
2742
+ "type": "option"
2743
+ },
2744
+ "app": {
2745
+ "char": "a",
2746
+ "description": "app to run command against",
2747
+ "name": "app",
2748
+ "required": true,
2749
+ "hasDynamicHelp": false,
2750
+ "multiple": false,
2751
+ "type": "option"
2752
+ },
2753
+ "remote": {
2754
+ "char": "r",
2755
+ "description": "git remote of app to use",
2756
+ "name": "remote",
2757
+ "hasDynamicHelp": false,
2758
+ "multiple": false,
2759
+ "type": "option"
2760
+ }
2761
+ },
2762
+ "hasDynamicHelp": false,
2763
+ "hiddenAliases": [],
2764
+ "id": "certs:remove",
2935
2765
  "pluginAlias": "heroku",
2936
2766
  "pluginName": "heroku",
2937
2767
  "pluginType": "core",
2938
2768
  "strict": true,
2939
2769
  "topic": "certs",
2940
- "help": "Generate a key and certificate signing request (or self-signed certificate)\nfor an app. Prompts for information to put in the certificate unless --now\nis used, or at least one of the --subject, --owner, --country, --area, or\n--city options is specified.",
2941
2770
  "isESM": true,
2942
2771
  "relativePath": [
2943
2772
  "lib",
2944
2773
  "commands",
2945
2774
  "certs",
2946
- "generate.js"
2775
+ "remove.js"
2947
2776
  ]
2948
2777
  },
2949
- "certs": {
2778
+ "certs:update": {
2950
2779
  "aliases": [],
2951
- "args": {},
2952
- "description": "list SSL certificates for an app",
2780
+ "args": {
2781
+ "CRT": {
2782
+ "description": "absolute path of the certificate file on disk",
2783
+ "name": "CRT",
2784
+ "required": true
2785
+ },
2786
+ "KEY": {
2787
+ "description": "absolute path of the key file on disk",
2788
+ "name": "KEY",
2789
+ "required": true
2790
+ }
2791
+ },
2792
+ "description": "update an SSL certificate on an app\nNote: certificates with PEM encoding are also valid\n",
2793
+ "examples": [
2794
+ "$ heroku certs:update example.com.crt example.com.key\n\n If you require intermediate certificates, refer to this article on merging certificates to get a complete chain:\n https://help.salesforce.com/s/articleView?id=000333504&type=1\n"
2795
+ ],
2953
2796
  "flags": {
2797
+ "confirm": {
2798
+ "hidden": true,
2799
+ "name": "confirm",
2800
+ "hasDynamicHelp": false,
2801
+ "multiple": false,
2802
+ "type": "option"
2803
+ },
2804
+ "name": {
2805
+ "description": "name to update",
2806
+ "name": "name",
2807
+ "hasDynamicHelp": false,
2808
+ "multiple": false,
2809
+ "type": "option"
2810
+ },
2811
+ "endpoint": {
2812
+ "description": "endpoint to update",
2813
+ "name": "endpoint",
2814
+ "hasDynamicHelp": false,
2815
+ "multiple": false,
2816
+ "type": "option"
2817
+ },
2954
2818
  "app": {
2955
2819
  "char": "a",
2956
2820
  "description": "app to run command against",
@@ -2971,7 +2835,7 @@
2971
2835
  },
2972
2836
  "hasDynamicHelp": false,
2973
2837
  "hiddenAliases": [],
2974
- "id": "certs",
2838
+ "id": "certs:update",
2975
2839
  "pluginAlias": "heroku",
2976
2840
  "pluginName": "heroku",
2977
2841
  "pluginType": "core",
@@ -2982,39 +2846,72 @@
2982
2846
  "lib",
2983
2847
  "commands",
2984
2848
  "certs",
2985
- "index.js"
2849
+ "update.js"
2986
2850
  ]
2987
2851
  },
2988
- "certs:info": {
2852
+ "ci:debug": {
2989
2853
  "aliases": [],
2990
2854
  "args": {},
2991
- "description": "show certificate information for an SSL certificate",
2855
+ "description": "opens an interactive test debugging session with the contents of the current directory",
2992
2856
  "flags": {
2993
- "name": {
2994
- "description": "name to check info on",
2995
- "name": "name",
2857
+ "app": {
2858
+ "char": "a",
2859
+ "description": "app to run command against",
2860
+ "name": "app",
2996
2861
  "hasDynamicHelp": false,
2997
2862
  "multiple": false,
2998
2863
  "type": "option"
2999
2864
  },
3000
- "endpoint": {
3001
- "description": "endpoint to check info on",
3002
- "name": "endpoint",
3003
- "hasDynamicHelp": false,
3004
- "multiple": false,
3005
- "type": "option"
2865
+ "no-cache": {
2866
+ "description": "start test run with an empty cache",
2867
+ "name": "no-cache",
2868
+ "allowNo": false,
2869
+ "type": "boolean"
3006
2870
  },
3007
- "show-domains": {
3008
- "description": "show associated domains",
3009
- "name": "show-domains",
2871
+ "no-setup": {
2872
+ "description": "start test dyno without running test-setup",
2873
+ "name": "no-setup",
3010
2874
  "allowNo": false,
3011
2875
  "type": "boolean"
3012
2876
  },
2877
+ "pipeline": {
2878
+ "char": "p",
2879
+ "description": "name of pipeline",
2880
+ "name": "pipeline",
2881
+ "hasDynamicHelp": false,
2882
+ "multiple": false,
2883
+ "type": "option"
2884
+ }
2885
+ },
2886
+ "hasDynamicHelp": false,
2887
+ "hiddenAliases": [],
2888
+ "id": "ci:debug",
2889
+ "pluginAlias": "heroku",
2890
+ "pluginName": "heroku",
2891
+ "pluginType": "core",
2892
+ "strict": true,
2893
+ "help": "Example:\n\n $ heroku ci:debug --pipeline PIPELINE\n Preparing source... done\n Creating test run... done\n Running setup and attaching to test dyno...\n\n~ $\n",
2894
+ "topic": "ci",
2895
+ "isESM": true,
2896
+ "relativePath": [
2897
+ "lib",
2898
+ "commands",
2899
+ "ci",
2900
+ "debug.js"
2901
+ ]
2902
+ },
2903
+ "ci": {
2904
+ "aliases": [],
2905
+ "args": {},
2906
+ "description": "display the most recent CI runs for the given pipeline",
2907
+ "examples": [
2908
+ "$ heroku ci --app murmuring-headland-14719\n"
2909
+ ],
2910
+ "flags": {
3013
2911
  "app": {
3014
2912
  "char": "a",
3015
2913
  "description": "app to run command against",
3016
2914
  "name": "app",
3017
- "required": true,
3018
2915
  "hasDynamicHelp": false,
3019
2916
  "multiple": false,
3020
2917
  "type": "option"
@@ -3026,55 +2923,121 @@
3026
2923
  "hasDynamicHelp": false,
3027
2924
  "multiple": false,
3028
2925
  "type": "option"
2926
+ },
2927
+ "watch": {
2928
+ "description": "keep running and watch for new and update tests",
2929
+ "name": "watch",
2930
+ "required": false,
2931
+ "allowNo": false,
2932
+ "type": "boolean"
2933
+ },
2934
+ "pipeline": {
2935
+ "char": "p",
2936
+ "description": "name of pipeline",
2937
+ "name": "pipeline",
2938
+ "required": false,
2939
+ "hasDynamicHelp": false,
2940
+ "multiple": false,
2941
+ "type": "option"
2942
+ },
2943
+ "json": {
2944
+ "description": "output in json format",
2945
+ "name": "json",
2946
+ "required": false,
2947
+ "allowNo": false,
2948
+ "type": "boolean"
3029
2949
  }
3030
2950
  },
3031
2951
  "hasDynamicHelp": false,
3032
2952
  "hiddenAliases": [],
3033
- "id": "certs:info",
2953
+ "id": "ci",
3034
2954
  "pluginAlias": "heroku",
3035
2955
  "pluginName": "heroku",
3036
2956
  "pluginType": "core",
3037
2957
  "strict": true,
3038
- "topic": "certs",
3039
2958
  "isESM": true,
3040
2959
  "relativePath": [
3041
2960
  "lib",
3042
2961
  "commands",
3043
- "certs",
3044
- "info.js"
2962
+ "ci",
2963
+ "index.js"
3045
2964
  ]
3046
2965
  },
3047
- "certs:remove": {
2966
+ "ci:info": {
3048
2967
  "aliases": [],
3049
- "args": {},
3050
- "description": "remove an SSL certificate from an app",
2968
+ "args": {
2969
+ "test-run": {
2970
+ "description": "auto-incremented test run number",
2971
+ "name": "test-run",
2972
+ "required": true
2973
+ }
2974
+ },
2975
+ "description": "show the status of a specific test run",
2976
+ "examples": [
2977
+ "$ heroku ci:info 1288 --app murmuring-headland-14719\n"
2978
+ ],
3051
2979
  "flags": {
3052
- "confirm": {
3053
- "hidden": true,
3054
- "name": "confirm",
2980
+ "app": {
2981
+ "char": "a",
2982
+ "description": "app to run command against",
2983
+ "name": "app",
3055
2984
  "hasDynamicHelp": false,
3056
2985
  "multiple": false,
3057
2986
  "type": "option"
3058
2987
  },
3059
- "name": {
3060
- "description": "name to remove",
3061
- "name": "name",
2988
+ "remote": {
2989
+ "char": "r",
2990
+ "description": "git remote of app to use",
2991
+ "name": "remote",
3062
2992
  "hasDynamicHelp": false,
3063
2993
  "multiple": false,
3064
2994
  "type": "option"
3065
2995
  },
3066
- "endpoint": {
3067
- "description": "endpoint to remove",
3068
- "name": "endpoint",
2996
+ "node": {
2997
+ "description": "the node number to show its setup and output",
2998
+ "name": "node",
2999
+ "required": false,
3069
3000
  "hasDynamicHelp": false,
3070
3001
  "multiple": false,
3071
3002
  "type": "option"
3072
3003
  },
3004
+ "pipeline": {
3005
+ "char": "p",
3006
+ "description": "name of pipeline",
3007
+ "name": "pipeline",
3008
+ "required": false,
3009
+ "hasDynamicHelp": false,
3010
+ "multiple": false,
3011
+ "type": "option"
3012
+ }
3013
+ },
3014
+ "hasDynamicHelp": false,
3015
+ "hiddenAliases": [],
3016
+ "id": "ci:info",
3017
+ "pluginAlias": "heroku",
3018
+ "pluginName": "heroku",
3019
+ "pluginType": "core",
3020
+ "strict": true,
3021
+ "isESM": true,
3022
+ "relativePath": [
3023
+ "lib",
3024
+ "commands",
3025
+ "ci",
3026
+ "info.js"
3027
+ ]
3028
+ },
3029
+ "ci:last": {
3030
+ "aliases": [],
3031
+ "args": {},
3032
+ "description": "looks for the most recent run and returns the output of that run",
3033
+ "examples": [
3034
+ "$ heroku ci:last --pipeline=my-pipeline --node 100\n"
3035
+ ],
3036
+ "flags": {
3073
3037
  "app": {
3074
3038
  "char": "a",
3075
3039
  "description": "app to run command against",
3076
3040
  "name": "app",
3077
- "required": true,
3078
3041
  "hasDynamicHelp": false,
3079
3042
  "multiple": false,
3080
3043
  "type": "option"
@@ -3086,69 +3049,76 @@
3086
3049
  "hasDynamicHelp": false,
3087
3050
  "multiple": false,
3088
3051
  "type": "option"
3052
+ },
3053
+ "node": {
3054
+ "description": "the node number to show its setup and output",
3055
+ "name": "node",
3056
+ "required": false,
3057
+ "hasDynamicHelp": false,
3058
+ "multiple": false,
3059
+ "type": "option"
3060
+ },
3061
+ "pipeline": {
3062
+ "char": "p",
3063
+ "description": "name of pipeline",
3064
+ "name": "pipeline",
3065
+ "required": false,
3066
+ "hasDynamicHelp": false,
3067
+ "multiple": false,
3068
+ "type": "option"
3089
3069
  }
3090
3070
  },
3091
3071
  "hasDynamicHelp": false,
3092
3072
  "hiddenAliases": [],
3093
- "id": "certs:remove",
3073
+ "id": "ci:last",
3074
+ "pluginAlias": "heroku",
3075
+ "pluginName": "heroku",
3076
+ "pluginType": "core",
3077
+ "strict": true,
3078
+ "isESM": true,
3079
+ "relativePath": [
3080
+ "lib",
3081
+ "commands",
3082
+ "ci",
3083
+ "last.js"
3084
+ ]
3085
+ },
3086
+ "ci:migrate-manifest": {
3087
+ "aliases": [],
3088
+ "args": {},
3089
+ "description": "app-ci.json is deprecated. Run this command to migrate to app.json with an environments key.",
3090
+ "examples": [
3091
+ "$ heroku ci:migrate-manifest"
3092
+ ],
3093
+ "flags": {},
3094
+ "hasDynamicHelp": false,
3095
+ "hiddenAliases": [],
3096
+ "id": "ci:migrate-manifest",
3094
3097
  "pluginAlias": "heroku",
3095
3098
  "pluginName": "heroku",
3096
3099
  "pluginType": "core",
3097
3100
  "strict": true,
3098
- "topic": "certs",
3101
+ "topic": "ci",
3099
3102
  "isESM": true,
3100
3103
  "relativePath": [
3101
3104
  "lib",
3102
3105
  "commands",
3103
- "certs",
3104
- "remove.js"
3106
+ "ci",
3107
+ "migrate-manifest.js"
3105
3108
  ]
3106
3109
  },
3107
- "certs:update": {
3110
+ "ci:open": {
3108
3111
  "aliases": [],
3109
- "args": {
3110
- "CRT": {
3111
- "description": "absolute path of the certificate file on disk",
3112
- "name": "CRT",
3113
- "required": true
3114
- },
3115
- "KEY": {
3116
- "description": "absolute path of the key file on disk",
3117
- "name": "KEY",
3118
- "required": true
3119
- }
3120
- },
3121
- "description": "update an SSL certificate on an app\nNote: certificates with PEM encoding are also valid\n",
3112
+ "args": {},
3113
+ "description": "open the Dashboard version of Heroku CI",
3122
3114
  "examples": [
3123
- "$ heroku certs:update example.com.crt example.com.key\n\n If you require intermediate certificates, refer to this article on merging certificates to get a complete chain:\n https://help.salesforce.com/s/articleView?id=000333504&type=1\n"
3115
+ "$ heroku ci:open --app murmuring-headland-14719"
3124
3116
  ],
3125
3117
  "flags": {
3126
- "confirm": {
3127
- "hidden": true,
3128
- "name": "confirm",
3129
- "hasDynamicHelp": false,
3130
- "multiple": false,
3131
- "type": "option"
3132
- },
3133
- "name": {
3134
- "description": "name to update",
3135
- "name": "name",
3136
- "hasDynamicHelp": false,
3137
- "multiple": false,
3138
- "type": "option"
3139
- },
3140
- "endpoint": {
3141
- "description": "endpoint to update",
3142
- "name": "endpoint",
3143
- "hasDynamicHelp": false,
3144
- "multiple": false,
3145
- "type": "option"
3146
- },
3147
3118
  "app": {
3148
3119
  "char": "a",
3149
3120
  "description": "app to run command against",
3150
3121
  "name": "app",
3151
- "required": true,
3152
3122
  "hasDynamicHelp": false,
3153
3123
  "multiple": false,
3154
3124
  "type": "option"
@@ -3160,28 +3130,46 @@
3160
3130
  "hasDynamicHelp": false,
3161
3131
  "multiple": false,
3162
3132
  "type": "option"
3133
+ },
3134
+ "pipeline": {
3135
+ "char": "p",
3136
+ "description": "name of pipeline",
3137
+ "name": "pipeline",
3138
+ "required": false,
3139
+ "hasDynamicHelp": false,
3140
+ "multiple": false,
3141
+ "type": "option"
3163
3142
  }
3164
3143
  },
3165
3144
  "hasDynamicHelp": false,
3166
3145
  "hiddenAliases": [],
3167
- "id": "certs:update",
3146
+ "id": "ci:open",
3168
3147
  "pluginAlias": "heroku",
3169
3148
  "pluginName": "heroku",
3170
3149
  "pluginType": "core",
3171
3150
  "strict": true,
3172
- "topic": "certs",
3151
+ "topic": "ci",
3173
3152
  "isESM": true,
3174
3153
  "relativePath": [
3175
3154
  "lib",
3176
3155
  "commands",
3177
- "certs",
3178
- "update.js"
3156
+ "ci",
3157
+ "open.js"
3179
3158
  ]
3180
3159
  },
3181
- "ci:debug": {
3160
+ "ci:rerun": {
3182
3161
  "aliases": [],
3183
- "args": {},
3184
- "description": "opens an interactive test debugging session with the contents of the current directory",
3162
+ "args": {
3163
+ "number": {
3164
+ "description": "auto-incremented test run number",
3165
+ "name": "number",
3166
+ "required": false
3167
+ }
3168
+ },
3169
+ "description": "rerun tests against current directory",
3170
+ "examples": [
3171
+ "$ heroku ci:rerun 985 --app murmuring-headland-14719\n"
3172
+ ],
3185
3173
  "flags": {
3186
3174
  "app": {
3187
3175
  "char": "a",
@@ -3191,22 +3179,19 @@
3191
3179
  "multiple": false,
3192
3180
  "type": "option"
3193
3181
  },
3194
- "no-cache": {
3195
- "description": "start test run with an empty cache",
3196
- "name": "no-cache",
3197
- "allowNo": false,
3198
- "type": "boolean"
3199
- },
3200
- "no-setup": {
3201
- "description": "start test dyno without running test-setup",
3202
- "name": "no-setup",
3203
- "allowNo": false,
3204
- "type": "boolean"
3182
+ "remote": {
3183
+ "char": "r",
3184
+ "description": "git remote of app to use",
3185
+ "name": "remote",
3186
+ "hasDynamicHelp": false,
3187
+ "multiple": false,
3188
+ "type": "option"
3205
3189
  },
3206
3190
  "pipeline": {
3207
3191
  "char": "p",
3208
3192
  "description": "name of pipeline",
3209
3193
  "name": "pipeline",
3194
+ "required": false,
3210
3195
  "hasDynamicHelp": false,
3211
3196
  "multiple": false,
3212
3197
  "type": "option"
@@ -3214,27 +3199,25 @@
3214
3199
  },
3215
3200
  "hasDynamicHelp": false,
3216
3201
  "hiddenAliases": [],
3217
- "id": "ci:debug",
3202
+ "id": "ci:rerun",
3218
3203
  "pluginAlias": "heroku",
3219
3204
  "pluginName": "heroku",
3220
3205
  "pluginType": "core",
3221
3206
  "strict": true,
3222
- "help": "Example:\n\n $ heroku ci:debug --pipeline PIPELINE\n Preparing source... done\n Creating test run... done\n Running setup and attaching to test dyno...\n\n~ $\n",
3223
- "topic": "ci",
3224
3207
  "isESM": true,
3225
3208
  "relativePath": [
3226
3209
  "lib",
3227
3210
  "commands",
3228
3211
  "ci",
3229
- "debug.js"
3212
+ "rerun.js"
3230
3213
  ]
3231
3214
  },
3232
- "ci": {
3215
+ "ci:run": {
3233
3216
  "aliases": [],
3234
3217
  "args": {},
3235
- "description": "display the most recent CI runs for the given pipeline",
3218
+ "description": "run tests against current directory",
3236
3219
  "examples": [
3237
- "$ heroku ci --app murmuring-headland-14719\n"
3220
+ "$ heroku ci:run --app murmuring-headland-14719\n"
3238
3221
  ],
3239
3222
  "flags": {
3240
3223
  "app": {
@@ -3253,13 +3236,6 @@
3253
3236
  "multiple": false,
3254
3237
  "type": "option"
3255
3238
  },
3256
- "watch": {
3257
- "description": "keep running and watch for new and update tests",
3258
- "name": "watch",
3259
- "required": false,
3260
- "allowNo": false,
3261
- "type": "boolean"
3262
- },
3263
3239
  "pipeline": {
3264
3240
  "char": "p",
3265
3241
  "description": "name of pipeline",
@@ -3268,18 +3244,11 @@
3268
3244
  "hasDynamicHelp": false,
3269
3245
  "multiple": false,
3270
3246
  "type": "option"
3271
- },
3272
- "json": {
3273
- "description": "output in json format",
3274
- "name": "json",
3275
- "required": false,
3276
- "allowNo": false,
3277
- "type": "boolean"
3278
3247
  }
3279
3248
  },
3280
3249
  "hasDynamicHelp": false,
3281
3250
  "hiddenAliases": [],
3282
- "id": "ci",
3251
+ "id": "ci:run",
3283
3252
  "pluginAlias": "heroku",
3284
3253
  "pluginName": "heroku",
3285
3254
  "pluginType": "core",
@@ -3289,27 +3258,25 @@
3289
3258
  "lib",
3290
3259
  "commands",
3291
3260
  "ci",
3292
- "index.js"
3261
+ "run.js"
3293
3262
  ]
3294
3263
  },
3295
- "ci:info": {
3264
+ "buildpacks:add": {
3296
3265
  "aliases": [],
3297
3266
  "args": {
3298
- "test-run": {
3299
- "description": "auto-incremented test run number",
3300
- "name": "test-run",
3267
+ "buildpack": {
3268
+ "description": "namespace/name of the buildpack",
3269
+ "name": "buildpack",
3301
3270
  "required": true
3302
3271
  }
3303
3272
  },
3304
- "description": "show the status of a specific test run",
3305
- "examples": [
3306
- "$ heroku ci:info 1288 --app murmuring-headland-14719\n"
3307
- ],
3273
+ "description": "add new app buildpack, inserting into list of buildpacks if necessary",
3308
3274
  "flags": {
3309
3275
  "app": {
3310
3276
  "char": "a",
3311
3277
  "description": "app to run command against",
3312
3278
  "name": "app",
3279
+ "required": true,
3313
3280
  "hasDynamicHelp": false,
3314
3281
  "multiple": false,
3315
3282
  "type": "option"
@@ -3322,19 +3289,10 @@
3322
3289
  "multiple": false,
3323
3290
  "type": "option"
3324
3291
  },
3325
- "node": {
3326
- "description": "the node number to show its setup and output",
3327
- "name": "node",
3328
- "required": false,
3329
- "hasDynamicHelp": false,
3330
- "multiple": false,
3331
- "type": "option"
3332
- },
3333
- "pipeline": {
3334
- "char": "p",
3335
- "description": "name of pipeline",
3336
- "name": "pipeline",
3337
- "required": false,
3292
+ "index": {
3293
+ "char": "i",
3294
+ "description": "the 1-based index of the URL in the list of URLs",
3295
+ "name": "index",
3338
3296
  "hasDynamicHelp": false,
3339
3297
  "multiple": false,
3340
3298
  "type": "option"
@@ -3342,7 +3300,7 @@
3342
3300
  },
3343
3301
  "hasDynamicHelp": false,
3344
3302
  "hiddenAliases": [],
3345
- "id": "ci:info",
3303
+ "id": "buildpacks:add",
3346
3304
  "pluginAlias": "heroku",
3347
3305
  "pluginName": "heroku",
3348
3306
  "pluginType": "core",
@@ -3351,22 +3309,20 @@
3351
3309
  "relativePath": [
3352
3310
  "lib",
3353
3311
  "commands",
3354
- "ci",
3355
- "info.js"
3312
+ "buildpacks",
3313
+ "add.js"
3356
3314
  ]
3357
3315
  },
3358
- "ci:last": {
3316
+ "buildpacks:clear": {
3359
3317
  "aliases": [],
3360
3318
  "args": {},
3361
- "description": "looks for the most recent run and returns the output of that run",
3362
- "examples": [
3363
- "$ heroku ci:last --pipeline=my-pipeline --node 100\n"
3364
- ],
3319
+ "description": "clear all buildpacks set on the app",
3365
3320
  "flags": {
3366
3321
  "app": {
3367
3322
  "char": "a",
3368
3323
  "description": "app to run command against",
3369
3324
  "name": "app",
3325
+ "required": true,
3370
3326
  "hasDynamicHelp": false,
3371
3327
  "multiple": false,
3372
3328
  "type": "option"
@@ -3378,20 +3334,41 @@
3378
3334
  "hasDynamicHelp": false,
3379
3335
  "multiple": false,
3380
3336
  "type": "option"
3381
- },
3382
- "node": {
3383
- "description": "the node number to show its setup and output",
3384
- "name": "node",
3385
- "required": false,
3337
+ }
3338
+ },
3339
+ "hasDynamicHelp": false,
3340
+ "hiddenAliases": [],
3341
+ "id": "buildpacks:clear",
3342
+ "pluginAlias": "heroku",
3343
+ "pluginName": "heroku",
3344
+ "pluginType": "core",
3345
+ "strict": true,
3346
+ "isESM": true,
3347
+ "relativePath": [
3348
+ "lib",
3349
+ "commands",
3350
+ "buildpacks",
3351
+ "clear.js"
3352
+ ]
3353
+ },
3354
+ "buildpacks": {
3355
+ "aliases": [],
3356
+ "args": {},
3357
+ "description": "list the buildpacks on an app",
3358
+ "flags": {
3359
+ "app": {
3360
+ "char": "a",
3361
+ "description": "app to run command against",
3362
+ "name": "app",
3363
+ "required": true,
3386
3364
  "hasDynamicHelp": false,
3387
3365
  "multiple": false,
3388
3366
  "type": "option"
3389
3367
  },
3390
- "pipeline": {
3391
- "char": "p",
3392
- "description": "name of pipeline",
3393
- "name": "pipeline",
3394
- "required": false,
3368
+ "remote": {
3369
+ "char": "r",
3370
+ "description": "git remote of app to use",
3371
+ "name": "remote",
3395
3372
  "hasDynamicHelp": false,
3396
3373
  "multiple": false,
3397
3374
  "type": "option"
@@ -3399,7 +3376,7 @@
3399
3376
  },
3400
3377
  "hasDynamicHelp": false,
3401
3378
  "hiddenAliases": [],
3402
- "id": "ci:last",
3379
+ "id": "buildpacks",
3403
3380
  "pluginAlias": "heroku",
3404
3381
  "pluginName": "heroku",
3405
3382
  "pluginType": "core",
@@ -3408,46 +3385,51 @@
3408
3385
  "relativePath": [
3409
3386
  "lib",
3410
3387
  "commands",
3411
- "ci",
3412
- "last.js"
3388
+ "buildpacks",
3389
+ "index.js"
3413
3390
  ]
3414
3391
  },
3415
- "ci:migrate-manifest": {
3392
+ "buildpacks:info": {
3416
3393
  "aliases": [],
3417
- "args": {},
3418
- "description": "app-ci.json is deprecated. Run this command to migrate to app.json with an environments key.",
3419
- "examples": [
3420
- "$ heroku ci:migrate-manifest"
3421
- ],
3394
+ "args": {
3395
+ "buildpack": {
3396
+ "description": "namespace/name of the buildpack",
3397
+ "name": "buildpack",
3398
+ "required": true
3399
+ }
3400
+ },
3401
+ "description": "fetch info about a buildpack",
3422
3402
  "flags": {},
3423
3403
  "hasDynamicHelp": false,
3424
3404
  "hiddenAliases": [],
3425
- "id": "ci:migrate-manifest",
3405
+ "id": "buildpacks:info",
3426
3406
  "pluginAlias": "heroku",
3427
3407
  "pluginName": "heroku",
3428
3408
  "pluginType": "core",
3429
3409
  "strict": true,
3430
- "topic": "ci",
3431
3410
  "isESM": true,
3432
3411
  "relativePath": [
3433
3412
  "lib",
3434
3413
  "commands",
3435
- "ci",
3436
- "migrate-manifest.js"
3414
+ "buildpacks",
3415
+ "info.js"
3437
3416
  ]
3438
3417
  },
3439
- "ci:open": {
3418
+ "buildpacks:remove": {
3440
3419
  "aliases": [],
3441
- "args": {},
3442
- "description": "open the Dashboard version of Heroku CI",
3443
- "examples": [
3444
- "$ heroku ci:open --app murmuring-headland-14719"
3445
- ],
3420
+ "args": {
3421
+ "buildpack": {
3422
+ "description": "namespace/name of the buildpack",
3423
+ "name": "buildpack"
3424
+ }
3425
+ },
3426
+ "description": "remove a buildpack set on the app",
3446
3427
  "flags": {
3447
3428
  "app": {
3448
3429
  "char": "a",
3449
3430
  "description": "app to run command against",
3450
3431
  "name": "app",
3432
+ "required": true,
3451
3433
  "hasDynamicHelp": false,
3452
3434
  "multiple": false,
3453
3435
  "type": "option"
@@ -3460,11 +3442,10 @@
3460
3442
  "multiple": false,
3461
3443
  "type": "option"
3462
3444
  },
3463
- "pipeline": {
3464
- "char": "p",
3465
- "description": "name of pipeline",
3466
- "name": "pipeline",
3467
- "required": false,
3445
+ "index": {
3446
+ "char": "i",
3447
+ "description": "the 1-based index of the URL to remove from the list of URLs",
3448
+ "name": "index",
3468
3449
  "hasDynamicHelp": false,
3469
3450
  "multiple": false,
3470
3451
  "type": "option"
@@ -3472,55 +3453,46 @@
3472
3453
  },
3473
3454
  "hasDynamicHelp": false,
3474
3455
  "hiddenAliases": [],
3475
- "id": "ci:open",
3456
+ "id": "buildpacks:remove",
3476
3457
  "pluginAlias": "heroku",
3477
3458
  "pluginName": "heroku",
3478
3459
  "pluginType": "core",
3479
3460
  "strict": true,
3480
- "topic": "ci",
3481
3461
  "isESM": true,
3482
3462
  "relativePath": [
3483
3463
  "lib",
3484
3464
  "commands",
3485
- "ci",
3486
- "open.js"
3465
+ "buildpacks",
3466
+ "remove.js"
3487
3467
  ]
3488
3468
  },
3489
- "ci:rerun": {
3469
+ "buildpacks:search": {
3490
3470
  "aliases": [],
3491
3471
  "args": {
3492
- "number": {
3493
- "description": "auto-incremented test run number",
3494
- "name": "number",
3495
- "required": false
3472
+ "term": {
3473
+ "description": "search term that searches across name, namespace, and description",
3474
+ "name": "term"
3496
3475
  }
3497
3476
  },
3498
- "description": "rerun tests against current directory",
3499
- "examples": [
3500
- "$ heroku ci:rerun 985 --app murmuring-headland-14719\n"
3501
- ],
3477
+ "description": "search for buildpacks",
3502
3478
  "flags": {
3503
- "app": {
3504
- "char": "a",
3505
- "description": "app to run command against",
3506
- "name": "app",
3479
+ "namespace": {
3480
+ "description": "buildpack namespaces to filter on using a comma separated list",
3481
+ "name": "namespace",
3507
3482
  "hasDynamicHelp": false,
3508
3483
  "multiple": false,
3509
3484
  "type": "option"
3510
3485
  },
3511
- "remote": {
3512
- "char": "r",
3513
- "description": "git remote of app to use",
3514
- "name": "remote",
3486
+ "name": {
3487
+ "description": "buildpack names to filter on using a comma separated list ",
3488
+ "name": "name",
3515
3489
  "hasDynamicHelp": false,
3516
3490
  "multiple": false,
3517
3491
  "type": "option"
3518
3492
  },
3519
- "pipeline": {
3520
- "char": "p",
3521
- "description": "name of pipeline",
3522
- "name": "pipeline",
3523
- "required": false,
3493
+ "description": {
3494
+ "description": "buildpack description to filter on",
3495
+ "name": "description",
3524
3496
  "hasDynamicHelp": false,
3525
3497
  "multiple": false,
3526
3498
  "type": "option"
@@ -3528,7 +3500,7 @@
3528
3500
  },
3529
3501
  "hasDynamicHelp": false,
3530
3502
  "hiddenAliases": [],
3531
- "id": "ci:rerun",
3503
+ "id": "buildpacks:search",
3532
3504
  "pluginAlias": "heroku",
3533
3505
  "pluginName": "heroku",
3534
3506
  "pluginType": "core",
@@ -3537,22 +3509,25 @@
3537
3509
  "relativePath": [
3538
3510
  "lib",
3539
3511
  "commands",
3540
- "ci",
3541
- "rerun.js"
3512
+ "buildpacks",
3513
+ "search.js"
3542
3514
  ]
3543
3515
  },
3544
- "ci:run": {
3516
+ "buildpacks:set": {
3545
3517
  "aliases": [],
3546
- "args": {},
3547
- "description": "run tests against current directory",
3548
- "examples": [
3549
- "$ heroku ci:run --app murmuring-headland-14719\n"
3550
- ],
3518
+ "args": {
3519
+ "buildpack": {
3520
+ "description": "namespace/name of the buildpack",
3521
+ "name": "buildpack",
3522
+ "required": true
3523
+ }
3524
+ },
3551
3525
  "flags": {
3552
3526
  "app": {
3553
3527
  "char": "a",
3554
3528
  "description": "app to run command against",
3555
3529
  "name": "app",
3530
+ "required": true,
3556
3531
  "hasDynamicHelp": false,
3557
3532
  "multiple": false,
3558
3533
  "type": "option"
@@ -3565,11 +3540,10 @@
3565
3540
  "multiple": false,
3566
3541
  "type": "option"
3567
3542
  },
3568
- "pipeline": {
3569
- "char": "p",
3570
- "description": "name of pipeline",
3571
- "name": "pipeline",
3572
- "required": false,
3543
+ "index": {
3544
+ "char": "i",
3545
+ "description": "the 1-based index of the URL in the list of URLs",
3546
+ "name": "index",
3573
3547
  "hasDynamicHelp": false,
3574
3548
  "multiple": false,
3575
3549
  "type": "option"
@@ -3577,7 +3551,7 @@
3577
3551
  },
3578
3552
  "hasDynamicHelp": false,
3579
3553
  "hiddenAliases": [],
3580
- "id": "ci:run",
3554
+ "id": "buildpacks:set",
3581
3555
  "pluginAlias": "heroku",
3582
3556
  "pluginName": "heroku",
3583
3557
  "pluginType": "core",
@@ -3586,8 +3560,34 @@
3586
3560
  "relativePath": [
3587
3561
  "lib",
3588
3562
  "commands",
3589
- "ci",
3590
- "run.js"
3563
+ "buildpacks",
3564
+ "set.js"
3565
+ ]
3566
+ },
3567
+ "buildpacks:versions": {
3568
+ "aliases": [],
3569
+ "args": {
3570
+ "buildpack": {
3571
+ "description": "namespace/name of the buildpack",
3572
+ "name": "buildpack",
3573
+ "required": true
3574
+ }
3575
+ },
3576
+ "description": "list versions of a buildpack",
3577
+ "flags": {},
3578
+ "hasDynamicHelp": false,
3579
+ "hiddenAliases": [],
3580
+ "id": "buildpacks:versions",
3581
+ "pluginAlias": "heroku",
3582
+ "pluginName": "heroku",
3583
+ "pluginType": "core",
3584
+ "strict": true,
3585
+ "isESM": true,
3586
+ "relativePath": [
3587
+ "lib",
3588
+ "commands",
3589
+ "buildpacks",
3590
+ "versions.js"
3591
3591
  ]
3592
3592
  },
3593
3593
  "clients:create": {
@@ -4229,25 +4229,177 @@
4229
4229
  },
4230
4230
  "hasDynamicHelp": false,
4231
4231
  "hiddenAliases": [],
4232
- "id": "container:push",
4232
+ "id": "container:push",
4233
+ "pluginAlias": "heroku",
4234
+ "pluginName": "heroku",
4235
+ "pluginType": "core",
4236
+ "strict": false,
4237
+ "topic": "container",
4238
+ "isESM": true,
4239
+ "relativePath": [
4240
+ "lib",
4241
+ "commands",
4242
+ "container",
4243
+ "push.js"
4244
+ ]
4245
+ },
4246
+ "container:release": {
4247
+ "aliases": [],
4248
+ "args": {},
4249
+ "description": "Releases previously pushed Docker images to your Heroku app",
4250
+ "examples": "\n heroku container:release web # Releases the previously pushed web process type\n heroku container:release web worker # Releases the previously pushed web and worker process types",
4251
+ "flags": {
4252
+ "app": {
4253
+ "char": "a",
4254
+ "description": "app to run command against",
4255
+ "name": "app",
4256
+ "required": true,
4257
+ "hasDynamicHelp": false,
4258
+ "multiple": false,
4259
+ "type": "option"
4260
+ },
4261
+ "remote": {
4262
+ "char": "r",
4263
+ "description": "git remote of app to use",
4264
+ "name": "remote",
4265
+ "hasDynamicHelp": false,
4266
+ "multiple": false,
4267
+ "type": "option"
4268
+ },
4269
+ "verbose": {
4270
+ "char": "v",
4271
+ "name": "verbose",
4272
+ "allowNo": false,
4273
+ "type": "boolean"
4274
+ }
4275
+ },
4276
+ "hasDynamicHelp": false,
4277
+ "hiddenAliases": [],
4278
+ "id": "container:release",
4279
+ "pluginAlias": "heroku",
4280
+ "pluginName": "heroku",
4281
+ "pluginType": "core",
4282
+ "strict": false,
4283
+ "usage": "container:release",
4284
+ "topic": "container",
4285
+ "example": "\n heroku container:release web # Releases the previously pushed web process type\n heroku container:release web worker # Releases the previously pushed web and worker process types",
4286
+ "isESM": true,
4287
+ "relativePath": [
4288
+ "lib",
4289
+ "commands",
4290
+ "container",
4291
+ "release.js"
4292
+ ]
4293
+ },
4294
+ "container:rm": {
4295
+ "aliases": [],
4296
+ "args": {},
4297
+ "description": "remove the process type from your app",
4298
+ "examples": "\n heroku container:rm web # Destroys the web container\n heroku container:rm web worker # Destroys the web and worker containers",
4299
+ "flags": {
4300
+ "app": {
4301
+ "char": "a",
4302
+ "description": "app to run command against",
4303
+ "name": "app",
4304
+ "required": true,
4305
+ "hasDynamicHelp": false,
4306
+ "multiple": false,
4307
+ "type": "option"
4308
+ },
4309
+ "remote": {
4310
+ "char": "r",
4311
+ "description": "git remote of app to use",
4312
+ "name": "remote",
4313
+ "hasDynamicHelp": false,
4314
+ "multiple": false,
4315
+ "type": "option"
4316
+ }
4317
+ },
4318
+ "hasDynamicHelp": false,
4319
+ "hiddenAliases": [],
4320
+ "id": "container:rm",
4321
+ "pluginAlias": "heroku",
4322
+ "pluginName": "heroku",
4323
+ "pluginType": "core",
4324
+ "strict": false,
4325
+ "usage": "container:rm -a APP [-v] PROCESS_TYPE...",
4326
+ "topic": "container",
4327
+ "example": "\n heroku container:rm web # Destroys the web container\n heroku container:rm web worker # Destroys the web and worker containers",
4328
+ "isESM": true,
4329
+ "relativePath": [
4330
+ "lib",
4331
+ "commands",
4332
+ "container",
4333
+ "rm.js"
4334
+ ]
4335
+ },
4336
+ "container:run": {
4337
+ "aliases": [],
4338
+ "args": {},
4339
+ "description": "builds, then runs the docker image locally",
4340
+ "examples": "\n $ heroku container:pull web # Pulls the web image from the app\n $ heroku container:pull web worker # Pulls both the web and worker images from the app\n $ heroku container:pull web:latest # Pulls the latest tag from the web image",
4341
+ "flags": {
4342
+ "app": {
4343
+ "char": "a",
4344
+ "description": "app to run command against",
4345
+ "name": "app",
4346
+ "required": true,
4347
+ "hasDynamicHelp": false,
4348
+ "multiple": false,
4349
+ "type": "option"
4350
+ },
4351
+ "remote": {
4352
+ "char": "r",
4353
+ "description": "git remote of app to use",
4354
+ "name": "remote",
4355
+ "hasDynamicHelp": false,
4356
+ "multiple": false,
4357
+ "type": "option"
4358
+ },
4359
+ "port": {
4360
+ "char": "p",
4361
+ "description": "port the app will run on",
4362
+ "name": "port",
4363
+ "default": 5000,
4364
+ "hasDynamicHelp": false,
4365
+ "multiple": false,
4366
+ "type": "option"
4367
+ },
4368
+ "verbose": {
4369
+ "char": "v",
4370
+ "name": "verbose",
4371
+ "allowNo": false,
4372
+ "type": "boolean"
4373
+ }
4374
+ },
4375
+ "hasDynamicHelp": false,
4376
+ "hiddenAliases": [],
4377
+ "id": "container:run",
4233
4378
  "pluginAlias": "heroku",
4234
4379
  "pluginName": "heroku",
4235
4380
  "pluginType": "core",
4236
4381
  "strict": false,
4382
+ "usage": "container:run -a APP [-v] PROCESS_TYPE...",
4237
4383
  "topic": "container",
4384
+ "example": "\n $ heroku container:pull web # Pulls the web image from the app\n $ heroku container:pull web worker # Pulls both the web and worker images from the app\n $ heroku container:pull web:latest # Pulls the latest tag from the web image",
4238
4385
  "isESM": true,
4239
4386
  "relativePath": [
4240
4387
  "lib",
4241
4388
  "commands",
4242
4389
  "container",
4243
- "push.js"
4390
+ "run.js"
4244
4391
  ]
4245
4392
  },
4246
- "container:release": {
4393
+ "drains:add": {
4247
4394
  "aliases": [],
4248
- "args": {},
4249
- "description": "Releases previously pushed Docker images to your Heroku app",
4250
- "examples": "\n heroku container:release web # Releases the previously pushed web process type\n heroku container:release web worker # Releases the previously pushed web and worker process types",
4395
+ "args": {
4396
+ "url": {
4397
+ "description": "URL of the log drain",
4398
+ "name": "url",
4399
+ "required": true
4400
+ }
4401
+ },
4402
+ "description": "adds a log drain to an app",
4251
4403
  "flags": {
4252
4404
  "app": {
4253
4405
  "char": "a",
@@ -4265,37 +4417,27 @@
4265
4417
  "hasDynamicHelp": false,
4266
4418
  "multiple": false,
4267
4419
  "type": "option"
4268
- },
4269
- "verbose": {
4270
- "char": "v",
4271
- "name": "verbose",
4272
- "allowNo": false,
4273
- "type": "boolean"
4274
4420
  }
4275
4421
  },
4276
4422
  "hasDynamicHelp": false,
4277
4423
  "hiddenAliases": [],
4278
- "id": "container:release",
4424
+ "id": "drains:add",
4279
4425
  "pluginAlias": "heroku",
4280
4426
  "pluginName": "heroku",
4281
4427
  "pluginType": "core",
4282
- "strict": false,
4283
- "usage": "container:release",
4284
- "topic": "container",
4285
- "example": "\n heroku container:release web # Releases the previously pushed web process type\n heroku container:release web worker # Releases the previously pushed web and worker process types",
4428
+ "strict": true,
4286
4429
  "isESM": true,
4287
4430
  "relativePath": [
4288
4431
  "lib",
4289
4432
  "commands",
4290
- "container",
4291
- "release.js"
4433
+ "drains",
4434
+ "add.js"
4292
4435
  ]
4293
4436
  },
4294
- "container:rm": {
4437
+ "drains": {
4295
4438
  "aliases": [],
4296
4439
  "args": {},
4297
- "description": "remove the process type from your app",
4298
- "examples": "\n heroku container:rm web # Destroys the web container\n heroku container:rm web worker # Destroys the web and worker containers",
4440
+ "description": "display the log drains of an app",
4299
4441
  "flags": {
4300
4442
  "app": {
4301
4443
  "char": "a",
@@ -4313,31 +4455,47 @@
4313
4455
  "hasDynamicHelp": false,
4314
4456
  "multiple": false,
4315
4457
  "type": "option"
4458
+ },
4459
+ "extended": {
4460
+ "char": "x",
4461
+ "hidden": true,
4462
+ "name": "extended",
4463
+ "allowNo": false,
4464
+ "type": "boolean"
4465
+ },
4466
+ "json": {
4467
+ "description": "output in json format",
4468
+ "name": "json",
4469
+ "allowNo": false,
4470
+ "type": "boolean"
4316
4471
  }
4317
4472
  },
4318
4473
  "hasDynamicHelp": false,
4319
4474
  "hiddenAliases": [],
4320
- "id": "container:rm",
4475
+ "id": "drains",
4321
4476
  "pluginAlias": "heroku",
4322
4477
  "pluginName": "heroku",
4323
4478
  "pluginType": "core",
4324
- "strict": false,
4325
- "usage": "container:rm -a APP [-v] PROCESS_TYPE...",
4326
- "topic": "container",
4327
- "example": "\n heroku container:rm web # Destroys the web container\n heroku container:rm web worker # Destroys the web and worker containers",
4479
+ "strict": true,
4328
4480
  "isESM": true,
4329
4481
  "relativePath": [
4330
4482
  "lib",
4331
4483
  "commands",
4332
- "container",
4333
- "rm.js"
4484
+ "drains",
4485
+ "index.js"
4334
4486
  ]
4335
4487
  },
4336
- "container:run": {
4488
+ "drains:remove": {
4337
4489
  "aliases": [],
4338
- "args": {},
4339
- "description": "builds, then runs the docker image locally",
4340
- "examples": "\n $ heroku container:pull web # Pulls the web image from the app\n $ heroku container:pull web worker # Pulls both the web and worker images from the app\n $ heroku container:pull web:latest # Pulls the latest tag from the web image",
4490
+ "args": {
4491
+ "url": {
4492
+ "description": "URL of the log drain",
4493
+ "name": "url",
4494
+ "required": true
4495
+ }
4496
+ },
4497
+ "description": "removes a log drain from an app",
4498
+ "examples": "drains:remove [URL|TOKEN]",
4341
4499
  "flags": {
4342
4500
  "app": {
4343
4501
  "char": "a",
@@ -4355,39 +4513,22 @@
4355
4513
  "hasDynamicHelp": false,
4356
4514
  "multiple": false,
4357
4515
  "type": "option"
4358
- },
4359
- "port": {
4360
- "char": "p",
4361
- "description": "port the app will run on",
4362
- "name": "port",
4363
- "default": 5000,
4364
- "hasDynamicHelp": false,
4365
- "multiple": false,
4366
- "type": "option"
4367
- },
4368
- "verbose": {
4369
- "char": "v",
4370
- "name": "verbose",
4371
- "allowNo": false,
4372
- "type": "boolean"
4373
4516
  }
4374
4517
  },
4375
4518
  "hasDynamicHelp": false,
4376
4519
  "hiddenAliases": [],
4377
- "id": "container:run",
4520
+ "id": "drains:remove",
4378
4521
  "pluginAlias": "heroku",
4379
4522
  "pluginName": "heroku",
4380
4523
  "pluginType": "core",
4381
- "strict": false,
4382
- "usage": "container:run -a APP [-v] PROCESS_TYPE...",
4383
- "topic": "container",
4384
- "example": "\n $ heroku container:pull web # Pulls the web image from the app\n $ heroku container:pull web worker # Pulls both the web and worker images from the app\n $ heroku container:pull web:latest # Pulls the latest tag from the web image",
4524
+ "strict": true,
4525
+ "example": "drains:remove [URL|TOKEN]",
4385
4526
  "isESM": true,
4386
4527
  "relativePath": [
4387
4528
  "lib",
4388
4529
  "commands",
4389
- "container",
4390
- "run.js"
4530
+ "drains",
4531
+ "remove.js"
4391
4532
  ]
4392
4533
  },
4393
4534
  "domains:add": {
@@ -4767,147 +4908,6 @@
4767
4908
  "wait.js"
4768
4909
  ]
4769
4910
  },
4770
- "drains:add": {
4771
- "aliases": [],
4772
- "args": {
4773
- "url": {
4774
- "description": "URL of the log drain",
4775
- "name": "url",
4776
- "required": true
4777
- }
4778
- },
4779
- "description": "adds a log drain to an app",
4780
- "flags": {
4781
- "app": {
4782
- "char": "a",
4783
- "description": "app to run command against",
4784
- "name": "app",
4785
- "required": true,
4786
- "hasDynamicHelp": false,
4787
- "multiple": false,
4788
- "type": "option"
4789
- },
4790
- "remote": {
4791
- "char": "r",
4792
- "description": "git remote of app to use",
4793
- "name": "remote",
4794
- "hasDynamicHelp": false,
4795
- "multiple": false,
4796
- "type": "option"
4797
- }
4798
- },
4799
- "hasDynamicHelp": false,
4800
- "hiddenAliases": [],
4801
- "id": "drains:add",
4802
- "pluginAlias": "heroku",
4803
- "pluginName": "heroku",
4804
- "pluginType": "core",
4805
- "strict": true,
4806
- "isESM": true,
4807
- "relativePath": [
4808
- "lib",
4809
- "commands",
4810
- "drains",
4811
- "add.js"
4812
- ]
4813
- },
4814
- "drains": {
4815
- "aliases": [],
4816
- "args": {},
4817
- "description": "display the log drains of an app",
4818
- "flags": {
4819
- "app": {
4820
- "char": "a",
4821
- "description": "app to run command against",
4822
- "name": "app",
4823
- "required": true,
4824
- "hasDynamicHelp": false,
4825
- "multiple": false,
4826
- "type": "option"
4827
- },
4828
- "remote": {
4829
- "char": "r",
4830
- "description": "git remote of app to use",
4831
- "name": "remote",
4832
- "hasDynamicHelp": false,
4833
- "multiple": false,
4834
- "type": "option"
4835
- },
4836
- "extended": {
4837
- "char": "x",
4838
- "hidden": true,
4839
- "name": "extended",
4840
- "allowNo": false,
4841
- "type": "boolean"
4842
- },
4843
- "json": {
4844
- "description": "output in json format",
4845
- "name": "json",
4846
- "allowNo": false,
4847
- "type": "boolean"
4848
- }
4849
- },
4850
- "hasDynamicHelp": false,
4851
- "hiddenAliases": [],
4852
- "id": "drains",
4853
- "pluginAlias": "heroku",
4854
- "pluginName": "heroku",
4855
- "pluginType": "core",
4856
- "strict": true,
4857
- "isESM": true,
4858
- "relativePath": [
4859
- "lib",
4860
- "commands",
4861
- "drains",
4862
- "index.js"
4863
- ]
4864
- },
4865
- "drains:remove": {
4866
- "aliases": [],
4867
- "args": {
4868
- "url": {
4869
- "description": "URL of the log drain",
4870
- "name": "url",
4871
- "required": true
4872
- }
4873
- },
4874
- "description": "removes a log drain from an app",
4875
- "examples": "drains:remove [URL|TOKEN]",
4876
- "flags": {
4877
- "app": {
4878
- "char": "a",
4879
- "description": "app to run command against",
4880
- "name": "app",
4881
- "required": true,
4882
- "hasDynamicHelp": false,
4883
- "multiple": false,
4884
- "type": "option"
4885
- },
4886
- "remote": {
4887
- "char": "r",
4888
- "description": "git remote of app to use",
4889
- "name": "remote",
4890
- "hasDynamicHelp": false,
4891
- "multiple": false,
4892
- "type": "option"
4893
- }
4894
- },
4895
- "hasDynamicHelp": false,
4896
- "hiddenAliases": [],
4897
- "id": "drains:remove",
4898
- "pluginAlias": "heroku",
4899
- "pluginName": "heroku",
4900
- "pluginType": "core",
4901
- "strict": true,
4902
- "example": "drains:remove [URL|TOKEN]",
4903
- "isESM": true,
4904
- "relativePath": [
4905
- "lib",
4906
- "commands",
4907
- "drains",
4908
- "remove.js"
4909
- ]
4910
- },
4911
4911
  "features:disable": {
4912
4912
  "aliases": [],
4913
4913
  "args": {
@@ -7569,5 +7569,5 @@
7569
7569
  ]
7570
7570
  }
7571
7571
  },
7572
- "version": "11.0.0-alpha.10"
7572
+ "version": "11.0.0-alpha.11"
7573
7573
  }