heroku 9.0.0-alpha.0 → 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 (63) 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/index.d.ts +12 -0
  28. package/lib/commands/ci/config/index.js +43 -0
  29. package/lib/commands/ci/config/set.d.ts +2 -2
  30. package/lib/commands/ci/config/set.js +2 -6
  31. package/lib/commands/ci/config/unset.d.ts +13 -0
  32. package/lib/commands/ci/config/unset.js +35 -0
  33. package/lib/commands/ci/migrate-manifest.d.ts +7 -0
  34. package/lib/commands/ci/migrate-manifest.js +74 -0
  35. package/lib/commands/config/set.d.ts +11 -0
  36. package/lib/commands/config/set.js +59 -0
  37. package/lib/commands/domains/index.d.ts +1 -1
  38. package/lib/commands/drains/add.d.ts +11 -0
  39. package/lib/commands/drains/add.js +22 -0
  40. package/lib/commands/drains/index.d.ts +10 -0
  41. package/lib/commands/drains/index.js +49 -0
  42. package/lib/commands/drains/remove.d.ts +12 -0
  43. package/lib/commands/drains/remove.js +21 -0
  44. package/lib/lib/api.d.ts +1 -1
  45. package/lib/lib/apps/confirm-app.d.ts +1 -0
  46. package/lib/lib/apps/confirm-app.js +23 -0
  47. package/lib/lib/apps/error_info.d.ts +7 -0
  48. package/lib/lib/apps/error_info.js +185 -0
  49. package/lib/lib/buildpacks/buildpacks.js +3 -4
  50. package/lib/lib/ci/git.d.ts +7 -1
  51. package/lib/lib/ci/git.js +44 -1
  52. package/lib/lib/ci/validate.d.ts +2 -0
  53. package/lib/lib/ci/validate.js +10 -0
  54. package/lib/lib/git/git.d.ts +3 -0
  55. package/lib/lib/git/git.js +19 -0
  56. package/lib/lib/git/push.d.ts +1 -0
  57. package/lib/lib/git/push.js +6 -0
  58. package/lib/lib/types/favorites.d.ts +7 -0
  59. package/lib/lib/types/favorites.js +2 -0
  60. package/oclif.manifest.json +708 -1
  61. package/package.json +15 -11
  62. package/lib/lib/buildpacks/push.d.ts +0 -0
  63. package/lib/lib/buildpacks/push.js +0 -4
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "9.0.0-alpha.0",
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",
@@ -999,6 +1379,21 @@
999
1379
  },
1000
1380
  "args": {}
1001
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
+ },
1002
1397
  "ci:open": {
1003
1398
  "id": "ci:open",
1004
1399
  "description": "open the Dashboard version of Heroku CI",
@@ -1395,6 +1790,31 @@
1395
1790
  },
1396
1791
  "args": {}
1397
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
+ },
1398
1818
  "config:unset": {
1399
1819
  "id": "config:unset",
1400
1820
  "description": "unset one or more config vars",
@@ -1806,6 +2226,91 @@
1806
2226
  }
1807
2227
  }
1808
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
2304
+ }
2305
+ },
2306
+ "args": {
2307
+ "url": {
2308
+ "name": "url",
2309
+ "required": true
2310
+ }
2311
+ },
2312
+ "example": "drains:remove [URL|TOKEN]"
2313
+ },
1809
2314
  "git:clone": {
1810
2315
  "id": "git:clone",
1811
2316
  "description": "clones a heroku app to your local machine at DIRECTORY (defaults to app name)",
@@ -3159,6 +3664,127 @@
3159
3664
  }
3160
3665
  }
3161
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
+ },
3162
3788
  "auth:2fa:disable": {
3163
3789
  "id": "auth:2fa:disable",
3164
3790
  "description": "disables 2fa on account",
@@ -3260,6 +3886,48 @@
3260
3886
  },
3261
3887
  "topic": "ci"
3262
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
+ },
3263
3931
  "ci:config:set": {
3264
3932
  "id": "ci:config:set",
3265
3933
  "description": "set CI config vars",
@@ -3291,6 +3959,45 @@
3291
3959
  "args": {},
3292
3960
  "topic": "ci"
3293
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
+ },
3294
4001
  "ps:autoscale:disable": {
3295
4002
  "id": "ps:autoscale:disable",
3296
4003
  "description": "disable web dyno autoscaling",