heroku 8.7.1 → 9.0.0-alpha.1

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 (96) hide show
  1. package/README.md +4 -1
  2. package/lib/commands/apps/create.d.ts +28 -0
  3. package/lib/commands/apps/create.js +194 -0
  4. package/lib/commands/apps/destroy.d.ts +14 -0
  5. package/lib/commands/apps/destroy.js +46 -0
  6. package/lib/commands/apps/errors.d.ts +12 -0
  7. package/lib/commands/apps/errors.js +119 -0
  8. package/lib/commands/apps/favorites/add.d.ts +9 -0
  9. package/lib/commands/apps/favorites/add.js +37 -0
  10. package/lib/commands/apps/favorites/index.d.ts +9 -0
  11. package/lib/commands/apps/favorites/index.js +25 -0
  12. package/lib/commands/apps/favorites/remove.d.ts +9 -0
  13. package/lib/commands/apps/favorites/remove.js +27 -0
  14. package/lib/commands/apps/index.d.ts +16 -0
  15. package/lib/commands/apps/index.js +119 -0
  16. package/lib/commands/apps/info.d.ts +18 -0
  17. package/lib/commands/apps/info.js +163 -0
  18. package/lib/commands/apps/open.d.ts +14 -0
  19. package/lib/commands/apps/open.js +29 -0
  20. package/lib/commands/apps/rename.d.ts +15 -0
  21. package/lib/commands/apps/rename.js +50 -0
  22. package/lib/commands/apps/stacks/index.d.ts +10 -0
  23. package/lib/commands/apps/stacks/index.js +43 -0
  24. package/lib/commands/apps/stacks/set.d.ts +14 -0
  25. package/lib/commands/apps/stacks/set.js +41 -0
  26. package/lib/commands/auth/logout.js +1 -0
  27. package/lib/commands/ci/config/get.d.ts +16 -0
  28. package/lib/commands/ci/config/get.js +37 -0
  29. package/lib/commands/ci/config/index.d.ts +12 -0
  30. package/lib/commands/ci/config/index.js +43 -0
  31. package/lib/commands/ci/config/set.d.ts +12 -0
  32. package/lib/commands/ci/config/set.js +48 -0
  33. package/lib/commands/ci/config/unset.d.ts +13 -0
  34. package/lib/commands/ci/config/unset.js +35 -0
  35. package/lib/commands/ci/debug.d.ts +13 -0
  36. package/lib/commands/ci/debug.js +105 -0
  37. package/lib/commands/ci/index.js +1 -1
  38. package/lib/commands/ci/info.js +1 -1
  39. package/lib/commands/ci/last.js +1 -1
  40. package/lib/commands/ci/migrate-manifest.d.ts +7 -0
  41. package/lib/commands/ci/migrate-manifest.js +74 -0
  42. package/lib/commands/ci/open.d.ts +12 -0
  43. package/lib/commands/ci/open.js +23 -0
  44. package/lib/commands/ci/rerun.js +1 -1
  45. package/lib/commands/ci/run.js +1 -1
  46. package/lib/commands/config/set.d.ts +11 -0
  47. package/lib/commands/config/set.js +59 -0
  48. package/lib/commands/domains/index.d.ts +1 -1
  49. package/lib/commands/drains/add.d.ts +11 -0
  50. package/lib/commands/drains/add.js +22 -0
  51. package/lib/commands/drains/index.d.ts +10 -0
  52. package/lib/commands/drains/index.js +49 -0
  53. package/lib/commands/drains/remove.d.ts +12 -0
  54. package/lib/commands/drains/remove.js +21 -0
  55. package/lib/commands/pipelines/add.js +1 -1
  56. package/lib/commands/pipelines/connect.js +1 -1
  57. package/lib/commands/pipelines/create.js +1 -1
  58. package/lib/commands/pipelines/destroy.js +1 -1
  59. package/lib/commands/pipelines/diff.js +1 -1
  60. package/lib/commands/pipelines/info.js +1 -1
  61. package/lib/commands/pipelines/promote.js +1 -1
  62. package/lib/commands/pipelines/remove.js +1 -1
  63. package/lib/commands/pipelines/rename.js +1 -1
  64. package/lib/commands/pipelines/setup.js +1 -1
  65. package/lib/commands/pipelines/transfer.js +1 -1
  66. package/lib/commands/pipelines/update.js +1 -1
  67. package/lib/lib/{pipelines/api.d.ts → api.d.ts} +10 -5
  68. package/lib/lib/{pipelines/api.js → api.js} +48 -4
  69. package/lib/lib/apps/confirm-app.d.ts +1 -0
  70. package/lib/lib/apps/confirm-app.js +23 -0
  71. package/lib/lib/apps/error_info.d.ts +7 -0
  72. package/lib/lib/apps/error_info.js +185 -0
  73. package/lib/lib/buildpacks/buildpacks.js +3 -4
  74. package/lib/lib/ci/git.d.ts +7 -1
  75. package/lib/lib/ci/git.js +44 -1
  76. package/lib/lib/ci/pipelines.d.ts +3 -3
  77. package/lib/lib/ci/pipelines.js +10 -9
  78. package/lib/lib/ci/test-run.d.ts +1 -0
  79. package/lib/lib/ci/test-run.js +2 -1
  80. package/lib/lib/ci/validate.d.ts +2 -0
  81. package/lib/lib/ci/validate.js +10 -0
  82. package/lib/lib/git/git.d.ts +11 -0
  83. package/lib/lib/git/git.js +38 -0
  84. package/lib/lib/git/push.d.ts +1 -0
  85. package/lib/lib/git/push.js +6 -0
  86. package/lib/lib/pipelines/disambiguate.js +1 -1
  87. package/lib/lib/pipelines/ownership.js +1 -1
  88. package/lib/lib/pipelines/setup/create-apps.d.ts +2 -1
  89. package/lib/lib/pipelines/setup/create-apps.js +1 -1
  90. package/lib/lib/pipelines/setup/poll-app-setups.js +1 -1
  91. package/lib/lib/types/favorites.d.ts +7 -0
  92. package/lib/lib/types/favorites.js +2 -0
  93. package/oclif.manifest.json +879 -11
  94. package/package.json +8 -4
  95. package/lib/lib/buildpacks/push.d.ts +0 -0
  96. package/lib/lib/buildpacks/push.js +0 -4
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "8.7.1",
2
+ "version": "9.0.0-alpha.1",
3
3
  "commands": {
4
4
  "console": {
5
5
  "id": "console",
@@ -220,6 +220,386 @@
220
220
  },
221
221
  "args": {}
222
222
  },
223
+ "apps:create": {
224
+ "id": "apps:create",
225
+ "description": "creates a new app",
226
+ "strict": true,
227
+ "pluginName": "heroku",
228
+ "pluginAlias": "heroku",
229
+ "pluginType": "core",
230
+ "aliases": [
231
+ "create"
232
+ ],
233
+ "examples": [
234
+ "$ heroku apps:create\nCreating app... done, stack is heroku-22\nhttps://floating-dragon-42.heroku.com/ | https://git.heroku.com/floating-dragon-42.git\n\n# or just\n$ heroku create\n\n# use a heroku.yml manifest file\n$ heroku apps:create --manifest\n\n# specify a buildpack\n$ heroku apps:create --buildpack https://github.com/some/buildpack.git\n\n# specify a name\n$ heroku apps:create example\n\n# create a staging app\n$ heroku apps:create example-staging --remote staging\n\n# create an app in the eu region\n$ heroku apps:create --region eu"
235
+ ],
236
+ "flags": {
237
+ "app": {
238
+ "name": "app",
239
+ "type": "option",
240
+ "hidden": true,
241
+ "multiple": false
242
+ },
243
+ "addons": {
244
+ "name": "addons",
245
+ "type": "option",
246
+ "description": "comma-delimited list of addons to install",
247
+ "multiple": false
248
+ },
249
+ "buildpack": {
250
+ "name": "buildpack",
251
+ "type": "option",
252
+ "char": "b",
253
+ "description": "buildpack url to use for this app",
254
+ "multiple": false
255
+ },
256
+ "manifest": {
257
+ "name": "manifest",
258
+ "type": "boolean",
259
+ "char": "m",
260
+ "description": "use heroku.yml settings for this app",
261
+ "hidden": true,
262
+ "allowNo": false
263
+ },
264
+ "no-remote": {
265
+ "name": "no-remote",
266
+ "type": "boolean",
267
+ "char": "n",
268
+ "description": "do not create a git remote",
269
+ "allowNo": false
270
+ },
271
+ "remote": {
272
+ "name": "remote",
273
+ "type": "option",
274
+ "char": "r",
275
+ "description": "the git remote to create, default \"heroku\"",
276
+ "multiple": false,
277
+ "default": "heroku"
278
+ },
279
+ "stack": {
280
+ "name": "stack",
281
+ "type": "option",
282
+ "char": "s",
283
+ "description": "the stack to create the app on",
284
+ "multiple": false
285
+ },
286
+ "space": {
287
+ "name": "space",
288
+ "type": "option",
289
+ "description": "the private space to create the app in",
290
+ "multiple": false
291
+ },
292
+ "region": {
293
+ "name": "region",
294
+ "type": "option",
295
+ "description": "specify region for the app to run in",
296
+ "multiple": false
297
+ },
298
+ "internal-routing": {
299
+ "name": "internal-routing",
300
+ "type": "boolean",
301
+ "description": "private space-only. create as an Internal Web App that is only routable in the local network.",
302
+ "hidden": true,
303
+ "allowNo": false
304
+ },
305
+ "features": {
306
+ "name": "features",
307
+ "type": "option",
308
+ "hidden": true,
309
+ "multiple": false
310
+ },
311
+ "kernel": {
312
+ "name": "kernel",
313
+ "type": "option",
314
+ "hidden": true,
315
+ "multiple": false
316
+ },
317
+ "locked": {
318
+ "name": "locked",
319
+ "type": "boolean",
320
+ "hidden": true,
321
+ "allowNo": false
322
+ },
323
+ "json": {
324
+ "name": "json",
325
+ "type": "boolean",
326
+ "description": "output in json format",
327
+ "allowNo": false
328
+ },
329
+ "team": {
330
+ "name": "team",
331
+ "type": "option",
332
+ "char": "t",
333
+ "description": "team to use",
334
+ "multiple": false
335
+ }
336
+ },
337
+ "args": {
338
+ "apps": {
339
+ "name": "apps",
340
+ "description": "name of app to create",
341
+ "required": false
342
+ }
343
+ }
344
+ },
345
+ "apps:destroy": {
346
+ "id": "apps:destroy",
347
+ "description": "permanently destroy an app",
348
+ "strict": true,
349
+ "pluginName": "heroku",
350
+ "pluginAlias": "heroku",
351
+ "pluginType": "core",
352
+ "aliases": [
353
+ "destroy",
354
+ "apps:delete"
355
+ ],
356
+ "flags": {
357
+ "app": {
358
+ "name": "app",
359
+ "type": "option",
360
+ "char": "a",
361
+ "description": "app to run command against",
362
+ "multiple": false
363
+ },
364
+ "confirm": {
365
+ "name": "confirm",
366
+ "type": "option",
367
+ "char": "c",
368
+ "multiple": false
369
+ }
370
+ },
371
+ "args": {
372
+ "app": {
373
+ "name": "app",
374
+ "hidden": true
375
+ }
376
+ },
377
+ "help": "This will also destroy all add-ons on the app."
378
+ },
379
+ "apps:errors": {
380
+ "id": "apps:errors",
381
+ "description": "view app errors",
382
+ "strict": true,
383
+ "pluginName": "heroku",
384
+ "pluginAlias": "heroku",
385
+ "pluginType": "core",
386
+ "aliases": [],
387
+ "flags": {
388
+ "app": {
389
+ "name": "app",
390
+ "type": "option",
391
+ "char": "a",
392
+ "description": "app to run command against",
393
+ "required": true,
394
+ "multiple": false
395
+ },
396
+ "json": {
397
+ "name": "json",
398
+ "type": "boolean",
399
+ "description": "output in json format",
400
+ "allowNo": false
401
+ },
402
+ "hours": {
403
+ "name": "hours",
404
+ "type": "option",
405
+ "description": "number of hours to look back (default 24)",
406
+ "multiple": false,
407
+ "default": "24"
408
+ },
409
+ "router": {
410
+ "name": "router",
411
+ "type": "boolean",
412
+ "description": "show only router errors",
413
+ "allowNo": false
414
+ },
415
+ "dyno": {
416
+ "name": "dyno",
417
+ "type": "boolean",
418
+ "description": "show only dyno errors",
419
+ "allowNo": false
420
+ }
421
+ },
422
+ "args": {}
423
+ },
424
+ "apps": {
425
+ "id": "apps",
426
+ "description": "list your apps",
427
+ "strict": true,
428
+ "pluginName": "heroku",
429
+ "pluginAlias": "heroku",
430
+ "pluginType": "core",
431
+ "aliases": [
432
+ "list",
433
+ "apps:list"
434
+ ],
435
+ "examples": [
436
+ "$ heroku apps"
437
+ ],
438
+ "flags": {
439
+ "all": {
440
+ "name": "all",
441
+ "type": "boolean",
442
+ "char": "A",
443
+ "description": "include apps in all teams",
444
+ "allowNo": false
445
+ },
446
+ "json": {
447
+ "name": "json",
448
+ "type": "boolean",
449
+ "char": "j",
450
+ "description": "output in json format",
451
+ "allowNo": false
452
+ },
453
+ "space": {
454
+ "name": "space",
455
+ "type": "option",
456
+ "char": "s",
457
+ "description": "filter by space",
458
+ "multiple": false
459
+ },
460
+ "personal": {
461
+ "name": "personal",
462
+ "type": "boolean",
463
+ "char": "p",
464
+ "description": "list apps in personal account when a default team is set",
465
+ "allowNo": false
466
+ },
467
+ "internal-routing": {
468
+ "name": "internal-routing",
469
+ "type": "boolean",
470
+ "char": "i",
471
+ "description": "filter to Internal Web Apps",
472
+ "hidden": true,
473
+ "allowNo": false
474
+ },
475
+ "team": {
476
+ "name": "team",
477
+ "type": "option",
478
+ "char": "t",
479
+ "description": "team to use",
480
+ "multiple": false
481
+ }
482
+ },
483
+ "args": {},
484
+ "topic": "apps"
485
+ },
486
+ "apps:info": {
487
+ "id": "apps:info",
488
+ "description": "show detailed app information",
489
+ "strict": true,
490
+ "pluginName": "heroku",
491
+ "pluginAlias": "heroku",
492
+ "pluginType": "core",
493
+ "aliases": [
494
+ "info"
495
+ ],
496
+ "examples": [
497
+ "$ heroku apps:info",
498
+ "$ heroku apps:info --shell"
499
+ ],
500
+ "flags": {
501
+ "app": {
502
+ "name": "app",
503
+ "type": "option",
504
+ "char": "a",
505
+ "description": "app to run command against",
506
+ "multiple": false
507
+ },
508
+ "shell": {
509
+ "name": "shell",
510
+ "type": "boolean",
511
+ "char": "s",
512
+ "description": "output more shell friendly key/value pairs",
513
+ "allowNo": false
514
+ },
515
+ "extended": {
516
+ "name": "extended",
517
+ "type": "boolean",
518
+ "char": "x",
519
+ "hidden": true,
520
+ "allowNo": false
521
+ },
522
+ "json": {
523
+ "name": "json",
524
+ "type": "boolean",
525
+ "char": "j",
526
+ "description": "output in json format",
527
+ "allowNo": false
528
+ }
529
+ },
530
+ "args": {
531
+ "app": {
532
+ "name": "app",
533
+ "hidden": true
534
+ }
535
+ },
536
+ "topic": "apps",
537
+ "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..."
538
+ },
539
+ "apps:open": {
540
+ "id": "apps:open",
541
+ "description": "open the app in a web browser",
542
+ "strict": true,
543
+ "pluginName": "heroku",
544
+ "pluginAlias": "heroku",
545
+ "pluginType": "core",
546
+ "aliases": [
547
+ "open"
548
+ ],
549
+ "examples": [
550
+ "$ heroku open -a myapp",
551
+ "$ heroku open -a myapp /foo"
552
+ ],
553
+ "flags": {
554
+ "app": {
555
+ "name": "app",
556
+ "type": "option",
557
+ "char": "a",
558
+ "description": "app to run command against",
559
+ "required": true,
560
+ "multiple": false
561
+ }
562
+ },
563
+ "args": {
564
+ "path": {
565
+ "name": "path",
566
+ "required": false
567
+ }
568
+ },
569
+ "topic": "apps"
570
+ },
571
+ "apps:rename": {
572
+ "id": "apps:rename",
573
+ "description": "rename an app",
574
+ "strict": true,
575
+ "pluginName": "heroku",
576
+ "pluginAlias": "heroku",
577
+ "pluginType": "core",
578
+ "aliases": [
579
+ "rename"
580
+ ],
581
+ "examples": [
582
+ "$ heroku apps:rename --app oldname newname"
583
+ ],
584
+ "flags": {
585
+ "app": {
586
+ "name": "app",
587
+ "type": "option",
588
+ "char": "a",
589
+ "description": "app to run command against",
590
+ "required": true,
591
+ "multiple": false
592
+ }
593
+ },
594
+ "args": {
595
+ "newname": {
596
+ "name": "newname",
597
+ "required": true
598
+ }
599
+ },
600
+ "help": "This will locally update the git remote if it is set to the old app.",
601
+ "topic": "apps"
602
+ },
223
603
  "auth:login": {
224
604
  "id": "auth:login",
225
605
  "description": "login with your Heroku credentials",
@@ -836,6 +1216,46 @@
836
1216
  }
837
1217
  }
838
1218
  },
1219
+ "ci:debug": {
1220
+ "id": "ci:debug",
1221
+ "description": "opens an interactive test debugging session with the contents of the current directory",
1222
+ "strict": true,
1223
+ "pluginName": "heroku",
1224
+ "pluginAlias": "heroku",
1225
+ "pluginType": "core",
1226
+ "aliases": [],
1227
+ "flags": {
1228
+ "app": {
1229
+ "name": "app",
1230
+ "type": "option",
1231
+ "char": "a",
1232
+ "description": "app to run command against",
1233
+ "multiple": false
1234
+ },
1235
+ "no-cache": {
1236
+ "name": "no-cache",
1237
+ "type": "boolean",
1238
+ "description": "start test run with an empty cache",
1239
+ "allowNo": false
1240
+ },
1241
+ "no-setup": {
1242
+ "name": "no-setup",
1243
+ "type": "boolean",
1244
+ "description": "start test dyno without running test-setup",
1245
+ "allowNo": false
1246
+ },
1247
+ "pipeline": {
1248
+ "name": "pipeline",
1249
+ "type": "option",
1250
+ "char": "p",
1251
+ "description": "name of pipeline",
1252
+ "multiple": false
1253
+ }
1254
+ },
1255
+ "args": {},
1256
+ "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",
1257
+ "topic": "ci"
1258
+ },
839
1259
  "ci": {
840
1260
  "id": "ci",
841
1261
  "description": "display the most recent CI runs for the given pipeline",
@@ -959,6 +1379,60 @@
959
1379
  },
960
1380
  "args": {}
961
1381
  },
1382
+ "ci:migrate-manifest": {
1383
+ "id": "ci:migrate-manifest",
1384
+ "description": "app-ci.json is deprecated. Run this command to migrate to app.json with an environments key.",
1385
+ "strict": true,
1386
+ "pluginName": "heroku",
1387
+ "pluginAlias": "heroku",
1388
+ "pluginType": "core",
1389
+ "aliases": [],
1390
+ "examples": [
1391
+ "$ heroku ci:migrate-manifest"
1392
+ ],
1393
+ "flags": {},
1394
+ "args": {},
1395
+ "topic": "ci"
1396
+ },
1397
+ "ci:open": {
1398
+ "id": "ci:open",
1399
+ "description": "open the Dashboard version of Heroku CI",
1400
+ "strict": true,
1401
+ "pluginName": "heroku",
1402
+ "pluginAlias": "heroku",
1403
+ "pluginType": "core",
1404
+ "aliases": [],
1405
+ "examples": [
1406
+ "$ heroku ci:open --app murmuring-headland-14719"
1407
+ ],
1408
+ "flags": {
1409
+ "help": {
1410
+ "name": "help",
1411
+ "type": "boolean",
1412
+ "char": "h",
1413
+ "description": "Show CLI help.",
1414
+ "allowNo": false
1415
+ },
1416
+ "app": {
1417
+ "name": "app",
1418
+ "type": "option",
1419
+ "char": "a",
1420
+ "description": "app to run command against",
1421
+ "required": true,
1422
+ "multiple": false
1423
+ },
1424
+ "pipeline": {
1425
+ "name": "pipeline",
1426
+ "type": "option",
1427
+ "char": "p",
1428
+ "description": "name of pipeline",
1429
+ "required": false,
1430
+ "multiple": false
1431
+ }
1432
+ },
1433
+ "args": {},
1434
+ "topic": "ci"
1435
+ },
962
1436
  "ci:rerun": {
963
1437
  "id": "ci:rerun",
964
1438
  "description": "rerun tests against current directory",
@@ -1316,6 +1790,31 @@
1316
1790
  },
1317
1791
  "args": {}
1318
1792
  },
1793
+ "config:set": {
1794
+ "id": "config:set",
1795
+ "description": "set one or more config vars",
1796
+ "strict": false,
1797
+ "pluginName": "heroku",
1798
+ "pluginAlias": "heroku",
1799
+ "pluginType": "core",
1800
+ "aliases": [
1801
+ "config:add"
1802
+ ],
1803
+ "examples": [
1804
+ "$ heroku config:set RAILS_ENV=staging\nSetting config vars and restarting example... done, v10\nRAILS_ENV: staging\n\n$ heroku config:set RAILS_ENV=staging RACK_ENV=staging\nSetting config vars and restarting example... done, v11\nRAILS_ENV: staging\nRACK_ENV: staging"
1805
+ ],
1806
+ "flags": {
1807
+ "app": {
1808
+ "name": "app",
1809
+ "type": "option",
1810
+ "char": "a",
1811
+ "description": "app to run command against",
1812
+ "required": true,
1813
+ "multiple": false
1814
+ }
1815
+ },
1816
+ "args": {}
1817
+ },
1319
1818
  "config:unset": {
1320
1819
  "id": "config:unset",
1321
1820
  "description": "unset one or more config vars",
@@ -1712,20 +2211,105 @@
1712
2211
  "description": "app to run command against",
1713
2212
  "required": true,
1714
2213
  "multiple": false
1715
- },
1716
- "remote": {
1717
- "name": "remote",
1718
- "type": "option",
1719
- "char": "r",
1720
- "description": "git remote of app to use",
1721
- "multiple": false
2214
+ },
2215
+ "remote": {
2216
+ "name": "remote",
2217
+ "type": "option",
2218
+ "char": "r",
2219
+ "description": "git remote of app to use",
2220
+ "multiple": false
2221
+ }
2222
+ },
2223
+ "args": {
2224
+ "hostname": {
2225
+ "name": "hostname"
2226
+ }
2227
+ }
2228
+ },
2229
+ "drains:add": {
2230
+ "id": "drains:add",
2231
+ "description": "adds a log drain to an app",
2232
+ "strict": true,
2233
+ "pluginName": "heroku",
2234
+ "pluginAlias": "heroku",
2235
+ "pluginType": "core",
2236
+ "aliases": [],
2237
+ "flags": {
2238
+ "app": {
2239
+ "name": "app",
2240
+ "type": "option",
2241
+ "char": "a",
2242
+ "description": "app to run command against",
2243
+ "required": true,
2244
+ "multiple": false
2245
+ }
2246
+ },
2247
+ "args": {
2248
+ "url": {
2249
+ "name": "url",
2250
+ "required": true
2251
+ }
2252
+ }
2253
+ },
2254
+ "drains": {
2255
+ "id": "drains",
2256
+ "description": "display the log drains of an app",
2257
+ "strict": true,
2258
+ "pluginName": "heroku",
2259
+ "pluginAlias": "heroku",
2260
+ "pluginType": "core",
2261
+ "aliases": [],
2262
+ "flags": {
2263
+ "app": {
2264
+ "name": "app",
2265
+ "type": "option",
2266
+ "char": "a",
2267
+ "description": "app to run command against",
2268
+ "required": true,
2269
+ "multiple": false
2270
+ },
2271
+ "extended": {
2272
+ "name": "extended",
2273
+ "type": "boolean",
2274
+ "char": "x",
2275
+ "hidden": true,
2276
+ "allowNo": false
2277
+ },
2278
+ "json": {
2279
+ "name": "json",
2280
+ "type": "boolean",
2281
+ "description": "output in json format",
2282
+ "allowNo": false
2283
+ }
2284
+ },
2285
+ "args": {}
2286
+ },
2287
+ "drains:remove": {
2288
+ "id": "drains:remove",
2289
+ "description": "removes a log drain from an app",
2290
+ "strict": true,
2291
+ "pluginName": "heroku",
2292
+ "pluginAlias": "heroku",
2293
+ "pluginType": "core",
2294
+ "aliases": [],
2295
+ "examples": "drains:remove [URL|TOKEN]",
2296
+ "flags": {
2297
+ "app": {
2298
+ "name": "app",
2299
+ "type": "option",
2300
+ "char": "a",
2301
+ "description": "app to run command against",
2302
+ "required": true,
2303
+ "multiple": false
1722
2304
  }
1723
2305
  },
1724
2306
  "args": {
1725
- "hostname": {
1726
- "name": "hostname"
2307
+ "url": {
2308
+ "name": "url",
2309
+ "required": true
1727
2310
  }
1728
- }
2311
+ },
2312
+ "example": "drains:remove [URL|TOKEN]"
1729
2313
  },
1730
2314
  "git:clone": {
1731
2315
  "id": "git:clone",
@@ -3080,6 +3664,127 @@
3080
3664
  }
3081
3665
  }
3082
3666
  },
3667
+ "apps:favorites:add": {
3668
+ "id": "apps:favorites:add",
3669
+ "description": "favorites an app",
3670
+ "strict": true,
3671
+ "pluginName": "heroku",
3672
+ "pluginAlias": "heroku",
3673
+ "pluginType": "core",
3674
+ "aliases": [],
3675
+ "flags": {
3676
+ "app": {
3677
+ "name": "app",
3678
+ "type": "option",
3679
+ "char": "a",
3680
+ "description": "app to run command against",
3681
+ "required": true,
3682
+ "multiple": false
3683
+ }
3684
+ },
3685
+ "args": {},
3686
+ "topic": "apps"
3687
+ },
3688
+ "apps:favorites": {
3689
+ "id": "apps:favorites",
3690
+ "description": "list favorited apps",
3691
+ "strict": true,
3692
+ "pluginName": "heroku",
3693
+ "pluginAlias": "heroku",
3694
+ "pluginType": "core",
3695
+ "aliases": [],
3696
+ "flags": {
3697
+ "json": {
3698
+ "name": "json",
3699
+ "type": "boolean",
3700
+ "char": "j",
3701
+ "description": "output in json format",
3702
+ "allowNo": false
3703
+ }
3704
+ },
3705
+ "args": {},
3706
+ "topic": "apps"
3707
+ },
3708
+ "apps:favorites:remove": {
3709
+ "id": "apps:favorites:remove",
3710
+ "description": "unfavorites an app",
3711
+ "strict": true,
3712
+ "pluginName": "heroku",
3713
+ "pluginAlias": "heroku",
3714
+ "pluginType": "core",
3715
+ "aliases": [],
3716
+ "flags": {
3717
+ "app": {
3718
+ "name": "app",
3719
+ "type": "option",
3720
+ "char": "a",
3721
+ "description": "app to run command against",
3722
+ "required": true,
3723
+ "multiple": false
3724
+ }
3725
+ },
3726
+ "args": {},
3727
+ "topic": "apps"
3728
+ },
3729
+ "apps:stacks": {
3730
+ "id": "apps:stacks",
3731
+ "description": "show the list of available stacks",
3732
+ "strict": true,
3733
+ "pluginName": "heroku",
3734
+ "pluginAlias": "heroku",
3735
+ "pluginType": "core",
3736
+ "aliases": [
3737
+ "stack"
3738
+ ],
3739
+ "flags": {
3740
+ "app": {
3741
+ "name": "app",
3742
+ "type": "option",
3743
+ "char": "a",
3744
+ "description": "app to run command against",
3745
+ "required": true,
3746
+ "multiple": false
3747
+ }
3748
+ },
3749
+ "args": {},
3750
+ "topic": "apps"
3751
+ },
3752
+ "apps:stacks:set": {
3753
+ "id": "apps:stacks:set",
3754
+ "description": "set the stack of an app",
3755
+ "strict": true,
3756
+ "pluginName": "heroku",
3757
+ "pluginAlias": "heroku",
3758
+ "pluginType": "core",
3759
+ "aliases": [
3760
+ "stack:set"
3761
+ ],
3762
+ "examples": "$ heroku stack:set heroku-22 -a myapp\nSetting stack to heroku-22... done\nYou will need to redeploy myapp for the change to take effect.\nRun git push heroku main to trigger a new build on myapp.",
3763
+ "flags": {
3764
+ "app": {
3765
+ "name": "app",
3766
+ "type": "option",
3767
+ "char": "a",
3768
+ "description": "app to run command against",
3769
+ "required": true,
3770
+ "multiple": false
3771
+ },
3772
+ "remote": {
3773
+ "name": "remote",
3774
+ "type": "option",
3775
+ "char": "r",
3776
+ "description": "git remote of app to use",
3777
+ "multiple": false
3778
+ }
3779
+ },
3780
+ "args": {
3781
+ "stack": {
3782
+ "name": "stack",
3783
+ "required": true
3784
+ }
3785
+ },
3786
+ "example": "$ heroku stack:set heroku-22 -a myapp\nSetting stack to heroku-22... done\nYou will need to redeploy myapp for the change to take effect.\nRun git push heroku main to trigger a new build on myapp."
3787
+ },
3083
3788
  "auth:2fa:disable": {
3084
3789
  "id": "auth:2fa:disable",
3085
3790
  "description": "disables 2fa on account",
@@ -3130,6 +3835,169 @@
3130
3835
  },
3131
3836
  "args": {}
3132
3837
  },
3838
+ "ci:config:get": {
3839
+ "id": "ci:config:get",
3840
+ "description": "get a CI config var",
3841
+ "strict": true,
3842
+ "pluginName": "heroku",
3843
+ "pluginAlias": "heroku",
3844
+ "pluginType": "core",
3845
+ "aliases": [],
3846
+ "examples": [
3847
+ "$ heroku ci:config:get --pipeline=PIPELINE RAILS_ENV\n test"
3848
+ ],
3849
+ "flags": {
3850
+ "help": {
3851
+ "name": "help",
3852
+ "type": "boolean",
3853
+ "char": "h",
3854
+ "description": "Show CLI help.",
3855
+ "allowNo": false
3856
+ },
3857
+ "app": {
3858
+ "name": "app",
3859
+ "type": "option",
3860
+ "char": "a",
3861
+ "description": "app to run command against",
3862
+ "required": false,
3863
+ "multiple": false
3864
+ },
3865
+ "pipeline": {
3866
+ "name": "pipeline",
3867
+ "type": "option",
3868
+ "char": "p",
3869
+ "description": "name of pipeline",
3870
+ "required": false,
3871
+ "multiple": false
3872
+ },
3873
+ "shell": {
3874
+ "name": "shell",
3875
+ "type": "boolean",
3876
+ "char": "s",
3877
+ "description": "output config var in shell format",
3878
+ "allowNo": false
3879
+ }
3880
+ },
3881
+ "args": {
3882
+ "key": {
3883
+ "name": "key",
3884
+ "required": true
3885
+ }
3886
+ },
3887
+ "topic": "ci"
3888
+ },
3889
+ "ci:config": {
3890
+ "id": "ci:config",
3891
+ "description": "display CI config vars",
3892
+ "strict": true,
3893
+ "pluginName": "heroku",
3894
+ "pluginAlias": "heroku",
3895
+ "pluginType": "core",
3896
+ "aliases": [],
3897
+ "examples": [
3898
+ "$ heroku ci:config --app murmuring-headland-14719 --json\n"
3899
+ ],
3900
+ "flags": {
3901
+ "app": {
3902
+ "name": "app",
3903
+ "type": "option",
3904
+ "char": "a",
3905
+ "description": "app name",
3906
+ "multiple": false
3907
+ },
3908
+ "shell": {
3909
+ "name": "shell",
3910
+ "type": "boolean",
3911
+ "char": "s",
3912
+ "description": "output config vars in shell format",
3913
+ "allowNo": false
3914
+ },
3915
+ "json": {
3916
+ "name": "json",
3917
+ "type": "boolean",
3918
+ "description": "output config vars in json format",
3919
+ "allowNo": false
3920
+ },
3921
+ "pipeline": {
3922
+ "name": "pipeline",
3923
+ "type": "option",
3924
+ "char": "p",
3925
+ "description": "name of pipeline",
3926
+ "multiple": false
3927
+ }
3928
+ },
3929
+ "args": {}
3930
+ },
3931
+ "ci:config:set": {
3932
+ "id": "ci:config:set",
3933
+ "description": "set CI config vars",
3934
+ "strict": false,
3935
+ "pluginName": "heroku",
3936
+ "pluginAlias": "heroku",
3937
+ "pluginType": "core",
3938
+ "aliases": [],
3939
+ "examples": [
3940
+ "$ heroku ci:config:set --pipeline PIPELINE RAILS_ENV=test\n Setting test config vars... done\n RAILS_ENV: test"
3941
+ ],
3942
+ "flags": {
3943
+ "app": {
3944
+ "name": "app",
3945
+ "type": "option",
3946
+ "char": "a",
3947
+ "description": "app to run command against",
3948
+ "multiple": false
3949
+ },
3950
+ "pipeline": {
3951
+ "name": "pipeline",
3952
+ "type": "option",
3953
+ "char": "p",
3954
+ "description": "name of pipeline",
3955
+ "required": true,
3956
+ "multiple": false
3957
+ }
3958
+ },
3959
+ "args": {},
3960
+ "topic": "ci"
3961
+ },
3962
+ "ci:config:unset": {
3963
+ "id": "ci:config:unset",
3964
+ "description": "unset CI config vars",
3965
+ "strict": false,
3966
+ "pluginName": "heroku",
3967
+ "pluginAlias": "heroku",
3968
+ "pluginType": "core",
3969
+ "aliases": [],
3970
+ "examples": [
3971
+ "$ heroku ci:config:unset RAILS_ENV"
3972
+ ],
3973
+ "flags": {
3974
+ "help": {
3975
+ "name": "help",
3976
+ "type": "boolean",
3977
+ "char": "h",
3978
+ "description": "Show CLI help.",
3979
+ "allowNo": false
3980
+ },
3981
+ "app": {
3982
+ "name": "app",
3983
+ "type": "option",
3984
+ "char": "a",
3985
+ "description": "app to run command against",
3986
+ "required": false,
3987
+ "multiple": false
3988
+ },
3989
+ "pipeline": {
3990
+ "name": "pipeline",
3991
+ "type": "option",
3992
+ "char": "p",
3993
+ "description": "name of pipeline",
3994
+ "required": false,
3995
+ "multiple": false
3996
+ }
3997
+ },
3998
+ "args": {},
3999
+ "topic": "ci"
4000
+ },
3133
4001
  "ps:autoscale:disable": {
3134
4002
  "id": "ps:autoscale:disable",
3135
4003
  "description": "disable web dyno autoscaling",