heroku 10.2.0 → 10.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -337,21 +337,38 @@
337
337
  "status.js"
338
338
  ]
339
339
  },
340
- "access:add": {
340
+ "addons:attach": {
341
341
  "aliases": [],
342
342
  "args": {
343
- "email": {
344
- "description": "email address of the team member",
345
- "name": "email",
343
+ "addon_name": {
344
+ "description": "unique identifier or globally unique name of the add-on",
345
+ "name": "addon_name",
346
346
  "required": true
347
347
  }
348
348
  },
349
- "description": "add new users to your app",
350
- "examples": [
351
- "$ heroku access:add user@email.com --app APP # add a collaborator to your app",
352
- "$ heroku access:add user@email.com --app APP --permissions deploy,manage,operate # permissions must be comma separated"
353
- ],
349
+ "description": "attach an existing add-on resource to an app",
354
350
  "flags": {
351
+ "as": {
352
+ "description": "name for add-on attachment",
353
+ "name": "as",
354
+ "hasDynamicHelp": false,
355
+ "multiple": false,
356
+ "type": "option"
357
+ },
358
+ "credential": {
359
+ "description": "credential name for scoped access to Heroku Postgres",
360
+ "name": "credential",
361
+ "hasDynamicHelp": false,
362
+ "multiple": false,
363
+ "type": "option"
364
+ },
365
+ "confirm": {
366
+ "description": "overwrite existing add-on attachment with same name",
367
+ "name": "confirm",
368
+ "hasDynamicHelp": false,
369
+ "multiple": false,
370
+ "type": "option"
371
+ },
355
372
  "app": {
356
373
  "char": "a",
357
374
  "description": "app to run command against",
@@ -368,36 +385,63 @@
368
385
  "hasDynamicHelp": false,
369
386
  "multiple": false,
370
387
  "type": "option"
371
- },
372
- "permissions": {
373
- "char": "p",
374
- "description": "list of permissions comma separated",
375
- "name": "permissions",
376
- "hasDynamicHelp": false,
377
- "multiple": false,
378
- "type": "option"
379
388
  }
380
389
  },
381
390
  "hasDynamicHelp": false,
382
391
  "hiddenAliases": [],
383
- "id": "access:add",
392
+ "id": "addons:attach",
384
393
  "pluginAlias": "heroku",
385
394
  "pluginName": "heroku",
386
395
  "pluginType": "core",
387
396
  "strict": true,
397
+ "topic": "addons",
388
398
  "isESM": false,
389
399
  "relativePath": [
390
400
  "lib",
391
401
  "commands",
392
- "access",
393
- "add.js"
402
+ "addons",
403
+ "attach.js"
394
404
  ]
395
405
  },
396
- "access": {
406
+ "addons:create": {
397
407
  "aliases": [],
398
- "args": {},
399
- "description": "list who has access to an app",
408
+ "args": {
409
+ "service:plan": {
410
+ "description": "unique identifier or unique name of the add-on service plan",
411
+ "name": "service:plan",
412
+ "required": true
413
+ }
414
+ },
415
+ "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",
416
+ "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",
400
417
  "flags": {
418
+ "name": {
419
+ "description": "name for the add-on resource",
420
+ "name": "name",
421
+ "hasDynamicHelp": false,
422
+ "multiple": false,
423
+ "type": "option"
424
+ },
425
+ "as": {
426
+ "description": "name for the initial add-on attachment",
427
+ "name": "as",
428
+ "hasDynamicHelp": false,
429
+ "multiple": false,
430
+ "type": "option"
431
+ },
432
+ "confirm": {
433
+ "description": "overwrite existing config vars or existing add-on attachments",
434
+ "name": "confirm",
435
+ "hasDynamicHelp": false,
436
+ "multiple": false,
437
+ "type": "option"
438
+ },
439
+ "wait": {
440
+ "description": "watch add-on creation status and exit when complete",
441
+ "name": "wait",
442
+ "allowNo": false,
443
+ "type": "boolean"
444
+ },
401
445
  "app": {
402
446
  "char": "a",
403
447
  "description": "app to run command against",
@@ -414,41 +458,65 @@
414
458
  "hasDynamicHelp": false,
415
459
  "multiple": false,
416
460
  "type": "option"
417
- },
418
- "json": {
419
- "description": "output in json format",
420
- "name": "json",
421
- "allowNo": false,
422
- "type": "boolean"
423
461
  }
424
462
  },
425
463
  "hasDynamicHelp": false,
426
- "hiddenAliases": [],
427
- "id": "access",
464
+ "hiddenAliases": [
465
+ "addons:add"
466
+ ],
467
+ "id": "addons:create",
428
468
  "pluginAlias": "heroku",
429
469
  "pluginName": "heroku",
430
470
  "pluginType": "core",
431
- "strict": true,
432
- "topic": "access",
471
+ "strict": false,
472
+ "topic": "addons",
473
+ "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",
433
474
  "isESM": false,
434
475
  "relativePath": [
435
476
  "lib",
436
477
  "commands",
437
- "access",
438
- "index.js"
478
+ "addons",
479
+ "create.js"
439
480
  ]
440
481
  },
441
- "access:remove": {
482
+ "addons:destroy": {
442
483
  "aliases": [],
443
- "args": {},
444
- "description": "remove users from a team app",
445
- "examples": "$ heroku access:remove user@email.com --app APP",
484
+ "args": {
485
+ "addonName": {
486
+ "description": "unique identifier or globally unique name of the add-on",
487
+ "name": "addonName",
488
+ "required": true
489
+ }
490
+ },
491
+ "description": "permanently destroy an add-on resource",
492
+ "examples": [
493
+ "addons:destroy [ADDON]... [flags]"
494
+ ],
446
495
  "flags": {
496
+ "force": {
497
+ "char": "f",
498
+ "description": "allow destruction even if connected to other apps",
499
+ "name": "force",
500
+ "allowNo": false,
501
+ "type": "boolean"
502
+ },
503
+ "confirm": {
504
+ "char": "c",
505
+ "name": "confirm",
506
+ "hasDynamicHelp": false,
507
+ "multiple": false,
508
+ "type": "option"
509
+ },
510
+ "wait": {
511
+ "description": "watch add-on destruction status and exit when complete",
512
+ "name": "wait",
513
+ "allowNo": false,
514
+ "type": "boolean"
515
+ },
447
516
  "app": {
448
517
  "char": "a",
449
518
  "description": "app to run command against",
450
519
  "name": "app",
451
- "required": true,
452
520
  "hasDynamicHelp": false,
453
521
  "multiple": false,
454
522
  "type": "option"
@@ -463,42 +531,34 @@
463
531
  }
464
532
  },
465
533
  "hasDynamicHelp": false,
466
- "hiddenAliases": [],
467
- "id": "access:remove",
534
+ "hiddenAliases": [
535
+ "addons:remove"
536
+ ],
537
+ "id": "addons:destroy",
468
538
  "pluginAlias": "heroku",
469
539
  "pluginName": "heroku",
470
540
  "pluginType": "core",
471
541
  "strict": false,
472
- "example": "$ heroku access:remove user@email.com --app APP",
473
- "topic": "access",
542
+ "topic": "addons",
474
543
  "isESM": false,
475
544
  "relativePath": [
476
545
  "lib",
477
546
  "commands",
478
- "access",
479
- "remove.js"
547
+ "addons",
548
+ "destroy.js"
480
549
  ]
481
550
  },
482
- "access:update": {
551
+ "addons:detach": {
483
552
  "aliases": [],
484
553
  "args": {
485
- "email": {
486
- "description": "email address of the team member",
487
- "name": "email",
554
+ "attachment_name": {
555
+ "description": "unique identifier of the add-on attachment",
556
+ "name": "attachment_name",
488
557
  "required": true
489
558
  }
490
559
  },
491
- "description": "update existing collaborators on an team app",
560
+ "description": "detach an existing add-on resource from an app",
492
561
  "flags": {
493
- "permissions": {
494
- "char": "p",
495
- "description": "comma-delimited list of permissions to update (deploy,manage,operate)",
496
- "name": "permissions",
497
- "required": true,
498
- "hasDynamicHelp": false,
499
- "multiple": false,
500
- "type": "option"
501
- },
502
562
  "app": {
503
563
  "char": "a",
504
564
  "description": "app to run command against",
@@ -519,170 +579,136 @@
519
579
  },
520
580
  "hasDynamicHelp": false,
521
581
  "hiddenAliases": [],
522
- "id": "access:update",
582
+ "id": "addons:detach",
523
583
  "pluginAlias": "heroku",
524
584
  "pluginName": "heroku",
525
585
  "pluginType": "core",
526
586
  "strict": true,
527
- "topic": "access",
587
+ "topic": "addons",
528
588
  "isESM": false,
529
589
  "relativePath": [
530
590
  "lib",
531
591
  "commands",
532
- "access",
533
- "update.js"
592
+ "addons",
593
+ "detach.js"
534
594
  ]
535
595
  },
536
- "apps:create": {
596
+ "addons:docs": {
537
597
  "aliases": [],
538
598
  "args": {
539
- "app": {
540
- "description": "name of app to create",
541
- "name": "app",
542
- "required": false
599
+ "addon": {
600
+ "description": "unique identifier or globally unique name of the add-on",
601
+ "name": "addon",
602
+ "required": true
543
603
  }
544
604
  },
545
- "description": "creates a new app",
546
- "examples": [
547
- "$ heroku apps:create\nCreating app... done, stack is heroku-24\nhttps://floating-dragon-42.heroku.com/ | https://git.heroku.com/floating-dragon-42.git\n\n# or just\n$ heroku create\n\n# use a heroku.yml manifest file\n$ heroku apps:create --manifest\n\n# specify a buildpack\n$ heroku apps:create --buildpack https://github.com/some/buildpack.git\n\n# specify a name\n$ heroku apps:create example\n\n# create a staging app\n$ heroku apps:create example-staging --remote staging\n\n# create an app in the eu region\n$ heroku apps:create --region eu"
548
- ],
605
+ "description": "open an add-on's Dev Center documentation in your browser",
549
606
  "flags": {
607
+ "show-url": {
608
+ "description": "show URL, do not open browser",
609
+ "name": "show-url",
610
+ "allowNo": false,
611
+ "type": "boolean"
612
+ },
550
613
  "app": {
551
- "hidden": true,
614
+ "char": "a",
615
+ "description": "app to run command against",
552
616
  "name": "app",
553
617
  "hasDynamicHelp": false,
554
618
  "multiple": false,
555
619
  "type": "option"
556
620
  },
557
- "addons": {
558
- "description": "comma-delimited list of addons to install",
559
- "name": "addons",
560
- "hasDynamicHelp": false,
561
- "multiple": false,
562
- "type": "option"
563
- },
564
- "buildpack": {
565
- "char": "b",
566
- "description": "buildpack url to use for this app",
567
- "name": "buildpack",
568
- "hasDynamicHelp": false,
569
- "multiple": false,
570
- "type": "option"
571
- },
572
- "manifest": {
573
- "char": "m",
574
- "description": "use heroku.yml settings for this app",
575
- "hidden": true,
576
- "name": "manifest",
577
- "allowNo": false,
578
- "type": "boolean"
579
- },
580
- "no-remote": {
581
- "char": "n",
582
- "description": "do not create a git remote",
583
- "name": "no-remote",
584
- "allowNo": false,
585
- "type": "boolean"
586
- },
587
621
  "remote": {
588
622
  "char": "r",
589
- "description": "the git remote to create, default \"heroku\"",
623
+ "description": "git remote of app to use",
590
624
  "name": "remote",
591
- "default": "heroku",
592
- "hasDynamicHelp": false,
593
- "multiple": false,
594
- "type": "option"
595
- },
596
- "stack": {
597
- "char": "s",
598
- "description": "the stack to create the app on",
599
- "name": "stack",
600
625
  "hasDynamicHelp": false,
601
626
  "multiple": false,
602
627
  "type": "option"
603
- },
604
- "space": {
605
- "description": "the private space to create the app in",
606
- "name": "space",
607
- "hasDynamicHelp": false,
608
- "multiple": false,
609
- "type": "option"
610
- },
611
- "region": {
612
- "description": "specify region for the app to run in",
613
- "name": "region",
614
- "hasDynamicHelp": false,
615
- "multiple": false,
616
- "type": "option"
617
- },
618
- "internal-routing": {
619
- "description": "private space-only. create as an Internal Web App that is only routable in the local network.",
620
- "hidden": true,
621
- "name": "internal-routing",
622
- "allowNo": false,
623
- "type": "boolean"
624
- },
625
- "features": {
626
- "hidden": true,
627
- "name": "features",
628
- "hasDynamicHelp": false,
629
- "multiple": false,
630
- "type": "option"
631
- },
632
- "kernel": {
633
- "hidden": true,
634
- "name": "kernel",
635
- "hasDynamicHelp": false,
636
- "multiple": false,
637
- "type": "option"
638
- },
639
- "locked": {
640
- "hidden": true,
641
- "name": "locked",
628
+ }
629
+ },
630
+ "hasDynamicHelp": false,
631
+ "hiddenAliases": [],
632
+ "id": "addons:docs",
633
+ "pluginAlias": "heroku",
634
+ "pluginName": "heroku",
635
+ "pluginType": "core",
636
+ "strict": true,
637
+ "topic": "addons",
638
+ "isESM": false,
639
+ "relativePath": [
640
+ "lib",
641
+ "commands",
642
+ "addons",
643
+ "docs.js"
644
+ ]
645
+ },
646
+ "addons": {
647
+ "aliases": [],
648
+ "args": {},
649
+ "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 ",
650
+ "examples": [
651
+ "$ heroku addons --all",
652
+ "$ heroku addons --app acme-inc-www"
653
+ ],
654
+ "flags": {
655
+ "all": {
656
+ "char": "A",
657
+ "description": "show add-ons and attachments for all accessible apps",
658
+ "name": "all",
642
659
  "allowNo": false,
643
660
  "type": "boolean"
644
661
  },
645
662
  "json": {
646
- "description": "output in json format",
663
+ "description": "return add-ons in json format",
647
664
  "name": "json",
648
665
  "allowNo": false,
649
666
  "type": "boolean"
650
667
  },
651
- "team": {
652
- "char": "t",
653
- "description": "team to use",
654
- "name": "team",
668
+ "app": {
669
+ "char": "a",
670
+ "description": "app to run command against",
671
+ "name": "app",
672
+ "hasDynamicHelp": false,
673
+ "multiple": false,
674
+ "type": "option"
675
+ },
676
+ "remote": {
677
+ "char": "r",
678
+ "description": "git remote of app to use",
679
+ "name": "remote",
655
680
  "hasDynamicHelp": false,
656
681
  "multiple": false,
657
682
  "type": "option"
658
683
  }
659
684
  },
660
685
  "hasDynamicHelp": false,
661
- "hiddenAliases": [
662
- "create"
663
- ],
664
- "id": "apps:create",
686
+ "hiddenAliases": [],
687
+ "id": "addons",
665
688
  "pluginAlias": "heroku",
666
689
  "pluginName": "heroku",
667
690
  "pluginType": "core",
668
691
  "strict": true,
692
+ "usage": "addons [--all|--app APP]",
693
+ "topic": "addons",
669
694
  "isESM": false,
670
695
  "relativePath": [
671
696
  "lib",
672
697
  "commands",
673
- "apps",
674
- "create.js"
698
+ "addons",
699
+ "index.js"
675
700
  ]
676
701
  },
677
- "apps:destroy": {
702
+ "addons:info": {
678
703
  "aliases": [],
679
704
  "args": {
680
- "app": {
681
- "hidden": true,
682
- "name": "app"
705
+ "addon": {
706
+ "description": "unique identifier or globally unique name of the add-on",
707
+ "name": "addon",
708
+ "required": true
683
709
  }
684
710
  },
685
- "description": "permanently destroy an app",
711
+ "description": "show detailed add-on resource and attachment information",
686
712
  "flags": {
687
713
  "app": {
688
714
  "char": "a",
@@ -699,44 +725,46 @@
699
725
  "hasDynamicHelp": false,
700
726
  "multiple": false,
701
727
  "type": "option"
702
- },
703
- "confirm": {
704
- "char": "c",
705
- "name": "confirm",
706
- "hasDynamicHelp": false,
707
- "multiple": false,
708
- "type": "option"
709
728
  }
710
729
  },
711
730
  "hasDynamicHelp": false,
712
- "hiddenAliases": [
713
- "destroy",
714
- "apps:delete"
715
- ],
716
- "id": "apps:destroy",
731
+ "hiddenAliases": [],
732
+ "id": "addons:info",
717
733
  "pluginAlias": "heroku",
718
734
  "pluginName": "heroku",
719
735
  "pluginType": "core",
720
736
  "strict": true,
721
- "help": "This will also destroy all add-ons on the app.",
737
+ "usage": "addons:info ADDON",
738
+ "topic": "addons",
722
739
  "isESM": false,
723
740
  "relativePath": [
724
741
  "lib",
725
742
  "commands",
726
- "apps",
727
- "destroy.js"
743
+ "addons",
744
+ "info.js"
728
745
  ]
729
746
  },
730
- "apps:errors": {
747
+ "addons:open": {
731
748
  "aliases": [],
732
- "args": {},
733
- "description": "view app errors",
749
+ "args": {
750
+ "addon": {
751
+ "description": "unique identifier or globally unique name of the add-on",
752
+ "name": "addon",
753
+ "required": true
754
+ }
755
+ },
756
+ "description": "open an add-on's dashboard in your browser",
734
757
  "flags": {
758
+ "show-url": {
759
+ "description": "show URL, do not open browser",
760
+ "name": "show-url",
761
+ "allowNo": false,
762
+ "type": "boolean"
763
+ },
735
764
  "app": {
736
765
  "char": "a",
737
766
  "description": "app to run command against",
738
767
  "name": "app",
739
- "required": true,
740
768
  "hasDynamicHelp": false,
741
769
  "multiple": false,
742
770
  "type": "option"
@@ -748,136 +776,188 @@
748
776
  "hasDynamicHelp": false,
749
777
  "multiple": false,
750
778
  "type": "option"
751
- },
779
+ }
780
+ },
781
+ "hasDynamicHelp": false,
782
+ "hiddenAliases": [],
783
+ "id": "addons:open",
784
+ "pluginAlias": "heroku",
785
+ "pluginName": "heroku",
786
+ "pluginType": "core",
787
+ "strict": true,
788
+ "topic": "addons",
789
+ "isESM": false,
790
+ "relativePath": [
791
+ "lib",
792
+ "commands",
793
+ "addons",
794
+ "open.js"
795
+ ]
796
+ },
797
+ "addons:plans": {
798
+ "aliases": [],
799
+ "args": {
800
+ "service": {
801
+ "description": "unique identifier or globally unique name of the add-on",
802
+ "name": "service",
803
+ "required": true
804
+ }
805
+ },
806
+ "description": "list all available plans for an add-on service",
807
+ "flags": {
752
808
  "json": {
753
809
  "description": "output in json format",
754
810
  "name": "json",
755
811
  "allowNo": false,
756
812
  "type": "boolean"
813
+ }
814
+ },
815
+ "hasDynamicHelp": false,
816
+ "hiddenAliases": [],
817
+ "id": "addons:plans",
818
+ "pluginAlias": "heroku",
819
+ "pluginName": "heroku",
820
+ "pluginType": "core",
821
+ "strict": true,
822
+ "topic": "addons",
823
+ "isESM": false,
824
+ "relativePath": [
825
+ "lib",
826
+ "commands",
827
+ "addons",
828
+ "plans.js"
829
+ ]
830
+ },
831
+ "addons:rename": {
832
+ "aliases": [],
833
+ "args": {
834
+ "addon_name": {
835
+ "description": "unique identifier or globally unique name of the add-on",
836
+ "name": "addon_name",
837
+ "required": true
757
838
  },
758
- "hours": {
759
- "description": "number of hours to look back (default 24)",
760
- "name": "hours",
761
- "default": "24",
762
- "hasDynamicHelp": false,
763
- "multiple": false,
764
- "type": "option"
765
- },
766
- "router": {
767
- "description": "show only router errors",
768
- "name": "router",
769
- "allowNo": false,
770
- "type": "boolean"
771
- },
772
- "dyno": {
773
- "description": "show only dyno errors",
774
- "name": "dyno",
775
- "allowNo": false,
776
- "type": "boolean"
839
+ "new_name": {
840
+ "description": "new globally unique name of the add-on",
841
+ "name": "new_name",
842
+ "required": true
777
843
  }
778
844
  },
845
+ "description": "rename an add-on",
846
+ "flags": {},
779
847
  "hasDynamicHelp": false,
780
848
  "hiddenAliases": [],
781
- "id": "apps:errors",
849
+ "id": "addons:rename",
782
850
  "pluginAlias": "heroku",
783
851
  "pluginName": "heroku",
784
852
  "pluginType": "core",
785
853
  "strict": true,
854
+ "topic": "addons",
786
855
  "isESM": false,
787
856
  "relativePath": [
788
857
  "lib",
789
858
  "commands",
790
- "apps",
791
- "errors.js"
859
+ "addons",
860
+ "rename.js"
792
861
  ]
793
862
  },
794
- "apps": {
863
+ "addons:services": {
795
864
  "aliases": [],
796
865
  "args": {},
797
- "description": "list your apps",
798
- "examples": [
799
- "$ heroku apps"
800
- ],
866
+ "description": "list all available add-on services",
801
867
  "flags": {
802
- "all": {
803
- "char": "A",
804
- "description": "include apps in all teams",
805
- "name": "all",
806
- "allowNo": false,
807
- "type": "boolean"
808
- },
809
868
  "json": {
810
- "char": "j",
811
869
  "description": "output in json format",
812
870
  "name": "json",
813
871
  "allowNo": false,
814
872
  "type": "boolean"
873
+ }
874
+ },
875
+ "hasDynamicHelp": false,
876
+ "hiddenAliases": [],
877
+ "id": "addons:services",
878
+ "pluginAlias": "heroku",
879
+ "pluginName": "heroku",
880
+ "pluginType": "core",
881
+ "strict": true,
882
+ "topic": "addons",
883
+ "isESM": false,
884
+ "relativePath": [
885
+ "lib",
886
+ "commands",
887
+ "addons",
888
+ "services.js"
889
+ ]
890
+ },
891
+ "addons:upgrade": {
892
+ "aliases": [
893
+ "addons:downgrade"
894
+ ],
895
+ "args": {
896
+ "addon": {
897
+ "description": "unique identifier or globally unique name of the add-on",
898
+ "name": "addon",
899
+ "required": true
815
900
  },
816
- "space": {
817
- "char": "s",
818
- "description": "filter by space",
819
- "name": "space",
901
+ "plan": {
902
+ "description": "unique identifier or name of the plan",
903
+ "name": "plan"
904
+ }
905
+ },
906
+ "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 ",
907
+ "examples": [
908
+ "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"
909
+ ],
910
+ "flags": {
911
+ "app": {
912
+ "char": "a",
913
+ "description": "app to run command against",
914
+ "name": "app",
820
915
  "hasDynamicHelp": false,
821
916
  "multiple": false,
822
917
  "type": "option"
823
918
  },
824
- "personal": {
825
- "char": "p",
826
- "description": "list apps in personal account when a default team is set",
827
- "name": "personal",
828
- "allowNo": false,
829
- "type": "boolean"
830
- },
831
- "internal-routing": {
832
- "char": "i",
833
- "description": "filter to Internal Web Apps",
834
- "hidden": true,
835
- "name": "internal-routing",
836
- "allowNo": false,
837
- "type": "boolean"
838
- },
839
- "team": {
840
- "char": "t",
841
- "description": "team to use",
842
- "name": "team",
919
+ "remote": {
920
+ "char": "r",
921
+ "description": "git remote of app to use",
922
+ "name": "remote",
843
923
  "hasDynamicHelp": false,
844
924
  "multiple": false,
845
925
  "type": "option"
846
926
  }
847
927
  },
848
928
  "hasDynamicHelp": false,
849
- "hiddenAliases": [
850
- "list",
851
- "apps:list"
852
- ],
853
- "id": "apps",
929
+ "hiddenAliases": [],
930
+ "id": "addons:upgrade",
854
931
  "pluginAlias": "heroku",
855
932
  "pluginName": "heroku",
856
933
  "pluginType": "core",
857
934
  "strict": true,
858
- "topic": "apps",
935
+ "topic": "addons",
859
936
  "isESM": false,
860
937
  "relativePath": [
861
938
  "lib",
862
939
  "commands",
863
- "apps",
864
- "index.js"
940
+ "addons",
941
+ "upgrade.js"
865
942
  ]
866
943
  },
867
- "apps:info": {
944
+ "addons:wait": {
868
945
  "aliases": [],
869
946
  "args": {
870
- "app": {
871
- "hidden": true,
872
- "name": "app"
947
+ "addon": {
948
+ "description": "unique identifier or globally unique name of the add-on",
949
+ "name": "addon"
873
950
  }
874
951
  },
875
- "description": "show detailed app information",
876
- "examples": [
877
- "$ heroku apps:info",
878
- "$ heroku apps:info --shell"
879
- ],
952
+ "description": "show provisioning status of the add-ons on the app",
880
953
  "flags": {
954
+ "wait-interval": {
955
+ "description": "how frequently to poll in seconds",
956
+ "name": "wait-interval",
957
+ "hasDynamicHelp": false,
958
+ "multiple": false,
959
+ "type": "option"
960
+ },
881
961
  "app": {
882
962
  "char": "a",
883
963
  "description": "app to run command against",
@@ -893,193 +973,179 @@
893
973
  "hasDynamicHelp": false,
894
974
  "multiple": false,
895
975
  "type": "option"
896
- },
897
- "shell": {
898
- "char": "s",
899
- "description": "output more shell friendly key/value pairs",
900
- "name": "shell",
901
- "allowNo": false,
902
- "type": "boolean"
903
- },
904
- "extended": {
905
- "char": "x",
906
- "hidden": true,
907
- "name": "extended",
908
- "allowNo": false,
909
- "type": "boolean"
910
- },
911
- "json": {
912
- "char": "j",
913
- "description": "output in json format",
914
- "name": "json",
915
- "allowNo": false,
916
- "type": "boolean"
917
976
  }
918
977
  },
919
978
  "hasDynamicHelp": false,
920
- "hiddenAliases": [
921
- "info"
922
- ],
923
- "id": "apps:info",
979
+ "hiddenAliases": [],
980
+ "id": "addons:wait",
924
981
  "pluginAlias": "heroku",
925
982
  "pluginName": "heroku",
926
983
  "pluginType": "core",
927
984
  "strict": true,
928
- "topic": "apps",
929
- "help": "$ heroku apps:info\n=== example\nGit URL: https://git.heroku.com/example.git\nRepo Size: 5M\n...\n\n$ heroku apps:info --shell\ngit_url=https://git.heroku.com/example.git\nrepo_size=5000000\n...",
985
+ "topic": "addons",
930
986
  "isESM": false,
931
987
  "relativePath": [
932
988
  "lib",
933
989
  "commands",
934
- "apps",
935
- "info.js"
990
+ "addons",
991
+ "wait.js"
936
992
  ]
937
993
  },
938
- "apps:join": {
939
- "aliases": [
940
- "join"
994
+ "apps:create": {
995
+ "aliases": [],
996
+ "args": {
997
+ "app": {
998
+ "description": "name of app to create",
999
+ "name": "app",
1000
+ "required": false
1001
+ }
1002
+ },
1003
+ "description": "creates a new app",
1004
+ "examples": [
1005
+ "$ 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"
941
1006
  ],
942
- "args": {},
943
- "description": "add yourself to a team app",
944
1007
  "flags": {
945
1008
  "app": {
946
- "char": "a",
947
- "description": "app to run command against",
1009
+ "hidden": true,
948
1010
  "name": "app",
949
- "required": true,
950
1011
  "hasDynamicHelp": false,
951
1012
  "multiple": false,
952
1013
  "type": "option"
953
1014
  },
1015
+ "addons": {
1016
+ "description": "comma-delimited list of addons to install",
1017
+ "name": "addons",
1018
+ "hasDynamicHelp": false,
1019
+ "multiple": false,
1020
+ "type": "option"
1021
+ },
1022
+ "buildpack": {
1023
+ "char": "b",
1024
+ "description": "buildpack url to use for this app",
1025
+ "name": "buildpack",
1026
+ "hasDynamicHelp": false,
1027
+ "multiple": false,
1028
+ "type": "option"
1029
+ },
1030
+ "manifest": {
1031
+ "char": "m",
1032
+ "description": "use heroku.yml settings for this app",
1033
+ "hidden": true,
1034
+ "name": "manifest",
1035
+ "allowNo": false,
1036
+ "type": "boolean"
1037
+ },
1038
+ "no-remote": {
1039
+ "char": "n",
1040
+ "description": "do not create a git remote",
1041
+ "name": "no-remote",
1042
+ "allowNo": false,
1043
+ "type": "boolean"
1044
+ },
954
1045
  "remote": {
955
1046
  "char": "r",
956
- "description": "git remote of app to use",
1047
+ "description": "the git remote to create, default \"heroku\"",
957
1048
  "name": "remote",
1049
+ "default": "heroku",
1050
+ "hasDynamicHelp": false,
1051
+ "multiple": false,
1052
+ "type": "option"
1053
+ },
1054
+ "stack": {
1055
+ "char": "s",
1056
+ "description": "the stack to create the app on",
1057
+ "name": "stack",
1058
+ "hasDynamicHelp": false,
1059
+ "multiple": false,
1060
+ "type": "option"
1061
+ },
1062
+ "space": {
1063
+ "description": "the private space to create the app in",
1064
+ "name": "space",
958
1065
  "hasDynamicHelp": false,
959
1066
  "multiple": false,
960
1067
  "type": "option"
961
- }
962
- },
963
- "hasDynamicHelp": false,
964
- "hiddenAliases": [],
965
- "id": "apps:join",
966
- "pluginAlias": "heroku",
967
- "pluginName": "heroku",
968
- "pluginType": "core",
969
- "strict": true,
970
- "topic": "apps",
971
- "isESM": false,
972
- "relativePath": [
973
- "lib",
974
- "commands",
975
- "apps",
976
- "join.js"
977
- ]
978
- },
979
- "apps:leave": {
980
- "aliases": [
981
- "leave"
982
- ],
983
- "args": {},
984
- "description": "remove yourself from a team app",
985
- "examples": "heroku apps:leave -a APP",
986
- "flags": {
987
- "app": {
988
- "char": "a",
989
- "description": "app to run command against",
990
- "name": "app",
991
- "required": true,
1068
+ },
1069
+ "region": {
1070
+ "description": "specify region for the app to run in",
1071
+ "name": "region",
992
1072
  "hasDynamicHelp": false,
993
1073
  "multiple": false,
994
1074
  "type": "option"
995
1075
  },
996
- "remote": {
997
- "char": "r",
998
- "description": "git remote of app to use",
999
- "name": "remote",
1076
+ "internal-routing": {
1077
+ "description": "private space-only. create as an Internal Web App that is only routable in the local network.",
1078
+ "hidden": true,
1079
+ "name": "internal-routing",
1080
+ "allowNo": false,
1081
+ "type": "boolean"
1082
+ },
1083
+ "features": {
1084
+ "hidden": true,
1085
+ "name": "features",
1000
1086
  "hasDynamicHelp": false,
1001
1087
  "multiple": false,
1002
1088
  "type": "option"
1003
- }
1004
- },
1005
- "hasDynamicHelp": false,
1006
- "hiddenAliases": [],
1007
- "id": "apps:leave",
1008
- "pluginAlias": "heroku",
1009
- "pluginName": "heroku",
1010
- "pluginType": "core",
1011
- "strict": true,
1012
- "topic": "apps",
1013
- "example": "heroku apps:leave -a APP",
1014
- "isESM": false,
1015
- "relativePath": [
1016
- "lib",
1017
- "commands",
1018
- "apps",
1019
- "leave.js"
1020
- ]
1021
- },
1022
- "apps:lock": {
1023
- "aliases": [
1024
- "lock"
1025
- ],
1026
- "args": {},
1027
- "description": "prevent team members from joining an app",
1028
- "flags": {
1029
- "app": {
1030
- "char": "a",
1031
- "description": "app to run command against",
1032
- "name": "app",
1033
- "required": true,
1089
+ },
1090
+ "kernel": {
1091
+ "hidden": true,
1092
+ "name": "kernel",
1034
1093
  "hasDynamicHelp": false,
1035
1094
  "multiple": false,
1036
1095
  "type": "option"
1037
1096
  },
1038
- "remote": {
1039
- "char": "r",
1040
- "description": "git remote of app to use",
1041
- "name": "remote",
1097
+ "locked": {
1098
+ "hidden": true,
1099
+ "name": "locked",
1100
+ "allowNo": false,
1101
+ "type": "boolean"
1102
+ },
1103
+ "json": {
1104
+ "description": "output in json format",
1105
+ "name": "json",
1106
+ "allowNo": false,
1107
+ "type": "boolean"
1108
+ },
1109
+ "team": {
1110
+ "char": "t",
1111
+ "description": "team to use",
1112
+ "name": "team",
1042
1113
  "hasDynamicHelp": false,
1043
1114
  "multiple": false,
1044
1115
  "type": "option"
1045
1116
  }
1046
1117
  },
1047
1118
  "hasDynamicHelp": false,
1048
- "hiddenAliases": [],
1049
- "id": "apps:lock",
1119
+ "hiddenAliases": [
1120
+ "create"
1121
+ ],
1122
+ "id": "apps:create",
1050
1123
  "pluginAlias": "heroku",
1051
1124
  "pluginName": "heroku",
1052
1125
  "pluginType": "core",
1053
1126
  "strict": true,
1054
- "topic": "apps",
1055
1127
  "isESM": false,
1056
1128
  "relativePath": [
1057
1129
  "lib",
1058
1130
  "commands",
1059
1131
  "apps",
1060
- "lock.js"
1132
+ "create.js"
1061
1133
  ]
1062
1134
  },
1063
- "apps:open": {
1135
+ "apps:destroy": {
1064
1136
  "aliases": [],
1065
1137
  "args": {
1066
- "path": {
1067
- "description": "base URL path of app",
1068
- "name": "path",
1069
- "required": false
1138
+ "app": {
1139
+ "hidden": true,
1140
+ "name": "app"
1070
1141
  }
1071
1142
  },
1072
- "description": "open the app in a web browser",
1073
- "examples": [
1074
- "$ heroku open -a myapp",
1075
- "$ heroku open -a myapp /foo"
1076
- ],
1143
+ "description": "permanently destroy an app",
1077
1144
  "flags": {
1078
1145
  "app": {
1079
1146
  "char": "a",
1080
1147
  "description": "app to run command against",
1081
1148
  "name": "app",
1082
- "required": true,
1083
1149
  "hasDynamicHelp": false,
1084
1150
  "multiple": false,
1085
1151
  "type": "option"
@@ -1091,39 +1157,38 @@
1091
1157
  "hasDynamicHelp": false,
1092
1158
  "multiple": false,
1093
1159
  "type": "option"
1160
+ },
1161
+ "confirm": {
1162
+ "char": "c",
1163
+ "name": "confirm",
1164
+ "hasDynamicHelp": false,
1165
+ "multiple": false,
1166
+ "type": "option"
1094
1167
  }
1095
1168
  },
1096
1169
  "hasDynamicHelp": false,
1097
1170
  "hiddenAliases": [
1098
- "open"
1171
+ "destroy",
1172
+ "apps:delete"
1099
1173
  ],
1100
- "id": "apps:open",
1174
+ "id": "apps:destroy",
1101
1175
  "pluginAlias": "heroku",
1102
1176
  "pluginName": "heroku",
1103
1177
  "pluginType": "core",
1104
1178
  "strict": true,
1105
- "topic": "apps",
1179
+ "help": "This will also destroy all add-ons on the app.",
1106
1180
  "isESM": false,
1107
1181
  "relativePath": [
1108
1182
  "lib",
1109
1183
  "commands",
1110
1184
  "apps",
1111
- "open.js"
1185
+ "destroy.js"
1112
1186
  ]
1113
1187
  },
1114
- "apps:rename": {
1188
+ "apps:errors": {
1115
1189
  "aliases": [],
1116
- "args": {
1117
- "newname": {
1118
- "description": "new unique name of the app",
1119
- "name": "newname",
1120
- "required": true
1121
- }
1122
- },
1123
- "description": "rename an app",
1124
- "examples": [
1125
- "$ heroku apps:rename --app oldname newname"
1126
- ],
1190
+ "args": {},
1191
+ "description": "view app errors",
1127
1192
  "flags": {
1128
1193
  "app": {
1129
1194
  "char": "a",
@@ -1141,84 +1206,109 @@
1141
1206
  "hasDynamicHelp": false,
1142
1207
  "multiple": false,
1143
1208
  "type": "option"
1209
+ },
1210
+ "json": {
1211
+ "description": "output in json format",
1212
+ "name": "json",
1213
+ "allowNo": false,
1214
+ "type": "boolean"
1215
+ },
1216
+ "hours": {
1217
+ "description": "number of hours to look back (default 24)",
1218
+ "name": "hours",
1219
+ "default": "24",
1220
+ "hasDynamicHelp": false,
1221
+ "multiple": false,
1222
+ "type": "option"
1223
+ },
1224
+ "router": {
1225
+ "description": "show only router errors",
1226
+ "name": "router",
1227
+ "allowNo": false,
1228
+ "type": "boolean"
1229
+ },
1230
+ "dyno": {
1231
+ "description": "show only dyno errors",
1232
+ "name": "dyno",
1233
+ "allowNo": false,
1234
+ "type": "boolean"
1144
1235
  }
1145
1236
  },
1146
1237
  "hasDynamicHelp": false,
1147
- "hiddenAliases": [
1148
- "rename"
1149
- ],
1150
- "id": "apps:rename",
1238
+ "hiddenAliases": [],
1239
+ "id": "apps:errors",
1151
1240
  "pluginAlias": "heroku",
1152
1241
  "pluginName": "heroku",
1153
1242
  "pluginType": "core",
1154
1243
  "strict": true,
1155
- "help": "This will locally update the git remote if it is set to the old app.",
1156
- "topic": "apps",
1157
1244
  "isESM": false,
1158
1245
  "relativePath": [
1159
1246
  "lib",
1160
1247
  "commands",
1161
1248
  "apps",
1162
- "rename.js"
1249
+ "errors.js"
1163
1250
  ]
1164
1251
  },
1165
- "apps:transfer": {
1252
+ "apps": {
1166
1253
  "aliases": [],
1167
- "args": {
1168
- "recipient": {
1169
- "description": "user or team to transfer applications to",
1170
- "name": "recipient",
1171
- "required": true
1172
- }
1173
- },
1174
- "description": "transfer applications to another user or team",
1254
+ "args": {},
1255
+ "description": "list your apps",
1175
1256
  "examples": [
1176
- "$ heroku apps:transfer collaborator@example.com\nTransferring example to collaborator@example.com... done\n\n$ heroku apps:transfer acme-widgets\nTransferring example to acme-widgets... done\n\n$ heroku apps:transfer --bulk acme-widgets\n..."
1257
+ "$ heroku apps"
1177
1258
  ],
1178
1259
  "flags": {
1179
- "locked": {
1180
- "char": "l",
1181
- "description": "lock the app upon transfer",
1182
- "name": "locked",
1183
- "required": false,
1260
+ "all": {
1261
+ "char": "A",
1262
+ "description": "include apps in all teams",
1263
+ "name": "all",
1184
1264
  "allowNo": false,
1185
1265
  "type": "boolean"
1186
1266
  },
1187
- "bulk": {
1188
- "description": "transfer applications in bulk",
1189
- "name": "bulk",
1190
- "required": false,
1267
+ "json": {
1268
+ "char": "j",
1269
+ "description": "output in json format",
1270
+ "name": "json",
1191
1271
  "allowNo": false,
1192
1272
  "type": "boolean"
1193
1273
  },
1194
- "app": {
1195
- "char": "a",
1196
- "description": "app to run command against",
1197
- "name": "app",
1274
+ "space": {
1275
+ "char": "s",
1276
+ "description": "filter by space",
1277
+ "name": "space",
1198
1278
  "hasDynamicHelp": false,
1199
1279
  "multiple": false,
1200
1280
  "type": "option"
1201
1281
  },
1202
- "remote": {
1203
- "char": "r",
1204
- "description": "git remote of app to use",
1205
- "name": "remote",
1206
- "hasDynamicHelp": false,
1207
- "multiple": false,
1208
- "type": "option"
1282
+ "personal": {
1283
+ "char": "p",
1284
+ "description": "list apps in personal account when a default team is set",
1285
+ "name": "personal",
1286
+ "allowNo": false,
1287
+ "type": "boolean"
1288
+ },
1289
+ "internal-routing": {
1290
+ "char": "i",
1291
+ "description": "filter to Internal Web Apps",
1292
+ "hidden": true,
1293
+ "name": "internal-routing",
1294
+ "allowNo": false,
1295
+ "type": "boolean"
1209
1296
  },
1210
- "confirm": {
1211
- "char": "c",
1212
- "hidden": true,
1213
- "name": "confirm",
1297
+ "team": {
1298
+ "char": "t",
1299
+ "description": "team to use",
1300
+ "name": "team",
1214
1301
  "hasDynamicHelp": false,
1215
1302
  "multiple": false,
1216
1303
  "type": "option"
1217
1304
  }
1218
1305
  },
1219
1306
  "hasDynamicHelp": false,
1220
- "hiddenAliases": [],
1221
- "id": "apps:transfer",
1307
+ "hiddenAliases": [
1308
+ "list",
1309
+ "apps:list"
1310
+ ],
1311
+ "id": "apps",
1222
1312
  "pluginAlias": "heroku",
1223
1313
  "pluginName": "heroku",
1224
1314
  "pluginType": "core",
@@ -1229,21 +1319,27 @@
1229
1319
  "lib",
1230
1320
  "commands",
1231
1321
  "apps",
1232
- "transfer.js"
1322
+ "index.js"
1233
1323
  ]
1234
1324
  },
1235
- "apps:unlock": {
1236
- "aliases": [
1237
- "unlock"
1325
+ "apps:info": {
1326
+ "aliases": [],
1327
+ "args": {
1328
+ "app": {
1329
+ "hidden": true,
1330
+ "name": "app"
1331
+ }
1332
+ },
1333
+ "description": "show detailed app information",
1334
+ "examples": [
1335
+ "$ heroku apps:info",
1336
+ "$ heroku apps:info --shell"
1238
1337
  ],
1239
- "args": {},
1240
- "description": "unlock an app so any team member can join",
1241
1338
  "flags": {
1242
1339
  "app": {
1243
1340
  "char": "a",
1244
1341
  "description": "app to run command against",
1245
1342
  "name": "app",
1246
- "required": true,
1247
1343
  "hasDynamicHelp": false,
1248
1344
  "multiple": false,
1249
1345
  "type": "option"
@@ -1255,56 +1351,55 @@
1255
1351
  "hasDynamicHelp": false,
1256
1352
  "multiple": false,
1257
1353
  "type": "option"
1354
+ },
1355
+ "shell": {
1356
+ "char": "s",
1357
+ "description": "output more shell friendly key/value pairs",
1358
+ "name": "shell",
1359
+ "allowNo": false,
1360
+ "type": "boolean"
1361
+ },
1362
+ "extended": {
1363
+ "char": "x",
1364
+ "hidden": true,
1365
+ "name": "extended",
1366
+ "allowNo": false,
1367
+ "type": "boolean"
1368
+ },
1369
+ "json": {
1370
+ "char": "j",
1371
+ "description": "output in json format",
1372
+ "name": "json",
1373
+ "allowNo": false,
1374
+ "type": "boolean"
1258
1375
  }
1259
1376
  },
1260
1377
  "hasDynamicHelp": false,
1261
- "hiddenAliases": [],
1262
- "id": "apps:unlock",
1378
+ "hiddenAliases": [
1379
+ "info"
1380
+ ],
1381
+ "id": "apps:info",
1263
1382
  "pluginAlias": "heroku",
1264
1383
  "pluginName": "heroku",
1265
1384
  "pluginType": "core",
1266
1385
  "strict": true,
1267
1386
  "topic": "apps",
1387
+ "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...",
1268
1388
  "isESM": false,
1269
1389
  "relativePath": [
1270
1390
  "lib",
1271
1391
  "commands",
1272
1392
  "apps",
1273
- "unlock.js"
1393
+ "info.js"
1274
1394
  ]
1275
1395
  },
1276
- "addons:attach": {
1277
- "aliases": [],
1278
- "args": {
1279
- "addon_name": {
1280
- "description": "unique identifier or globally unique name of the add-on",
1281
- "name": "addon_name",
1282
- "required": true
1283
- }
1284
- },
1285
- "description": "attach an existing add-on resource to an app",
1396
+ "apps:join": {
1397
+ "aliases": [
1398
+ "join"
1399
+ ],
1400
+ "args": {},
1401
+ "description": "add yourself to a team app",
1286
1402
  "flags": {
1287
- "as": {
1288
- "description": "name for add-on attachment",
1289
- "name": "as",
1290
- "hasDynamicHelp": false,
1291
- "multiple": false,
1292
- "type": "option"
1293
- },
1294
- "credential": {
1295
- "description": "credential name for scoped access to Heroku Postgres",
1296
- "name": "credential",
1297
- "hasDynamicHelp": false,
1298
- "multiple": false,
1299
- "type": "option"
1300
- },
1301
- "confirm": {
1302
- "description": "overwrite existing add-on attachment with same name",
1303
- "name": "confirm",
1304
- "hasDynamicHelp": false,
1305
- "multiple": false,
1306
- "type": "option"
1307
- },
1308
1403
  "app": {
1309
1404
  "char": "a",
1310
1405
  "description": "app to run command against",
@@ -1325,59 +1420,28 @@
1325
1420
  },
1326
1421
  "hasDynamicHelp": false,
1327
1422
  "hiddenAliases": [],
1328
- "id": "addons:attach",
1423
+ "id": "apps:join",
1329
1424
  "pluginAlias": "heroku",
1330
1425
  "pluginName": "heroku",
1331
1426
  "pluginType": "core",
1332
1427
  "strict": true,
1333
- "topic": "addons",
1428
+ "topic": "apps",
1334
1429
  "isESM": false,
1335
1430
  "relativePath": [
1336
1431
  "lib",
1337
1432
  "commands",
1338
- "addons",
1339
- "attach.js"
1433
+ "apps",
1434
+ "join.js"
1340
1435
  ]
1341
1436
  },
1342
- "addons:create": {
1343
- "aliases": [],
1344
- "args": {
1345
- "service:plan": {
1346
- "description": "unique identifier or unique name of the add-on service plan",
1347
- "name": "service:plan",
1348
- "required": true
1349
- }
1350
- },
1351
- "description": "Create a new add-on resource.\n\nIn order to add additional config items, please place them at the end of the command after a double-dash (--).\n",
1352
- "examples": "Create an add-on resource:\n$heroku addons:create heroku-redis --app my-app\n\nCreate an add-on resource with additional config items:\n$heroku addons:create heroku-postgresql:standard-0 --app my-app -- --fork DATABASE\n",
1437
+ "apps:leave": {
1438
+ "aliases": [
1439
+ "leave"
1440
+ ],
1441
+ "args": {},
1442
+ "description": "remove yourself from a team app",
1443
+ "examples": "heroku apps:leave -a APP",
1353
1444
  "flags": {
1354
- "name": {
1355
- "description": "name for the add-on resource",
1356
- "name": "name",
1357
- "hasDynamicHelp": false,
1358
- "multiple": false,
1359
- "type": "option"
1360
- },
1361
- "as": {
1362
- "description": "name for the initial add-on attachment",
1363
- "name": "as",
1364
- "hasDynamicHelp": false,
1365
- "multiple": false,
1366
- "type": "option"
1367
- },
1368
- "confirm": {
1369
- "description": "overwrite existing config vars or existing add-on attachments",
1370
- "name": "confirm",
1371
- "hasDynamicHelp": false,
1372
- "multiple": false,
1373
- "type": "option"
1374
- },
1375
- "wait": {
1376
- "description": "watch add-on creation status and exit when complete",
1377
- "name": "wait",
1378
- "allowNo": false,
1379
- "type": "boolean"
1380
- },
1381
1445
  "app": {
1382
1446
  "char": "a",
1383
1447
  "description": "app to run command against",
@@ -1397,62 +1461,34 @@
1397
1461
  }
1398
1462
  },
1399
1463
  "hasDynamicHelp": false,
1400
- "hiddenAliases": [
1401
- "addons:add"
1402
- ],
1403
- "id": "addons:create",
1464
+ "hiddenAliases": [],
1465
+ "id": "apps:leave",
1404
1466
  "pluginAlias": "heroku",
1405
1467
  "pluginName": "heroku",
1406
1468
  "pluginType": "core",
1407
- "strict": false,
1408
- "topic": "addons",
1409
- "example": "Create an add-on resource:\n$heroku addons:create heroku-redis --app my-app\n\nCreate an add-on resource with additional config items:\n$heroku addons:create heroku-postgresql:standard-0 --app my-app -- --fork DATABASE\n",
1469
+ "strict": true,
1470
+ "topic": "apps",
1471
+ "example": "heroku apps:leave -a APP",
1410
1472
  "isESM": false,
1411
1473
  "relativePath": [
1412
1474
  "lib",
1413
1475
  "commands",
1414
- "addons",
1415
- "create.js"
1476
+ "apps",
1477
+ "leave.js"
1416
1478
  ]
1417
1479
  },
1418
- "addons:destroy": {
1419
- "aliases": [],
1420
- "args": {
1421
- "addonName": {
1422
- "description": "unique identifier or globally unique name of the add-on",
1423
- "name": "addonName",
1424
- "required": true
1425
- }
1426
- },
1427
- "description": "permanently destroy an add-on resource",
1428
- "examples": [
1429
- "addons:destroy [ADDON]... [flags]"
1480
+ "apps:lock": {
1481
+ "aliases": [
1482
+ "lock"
1430
1483
  ],
1484
+ "args": {},
1485
+ "description": "prevent team members from joining an app",
1431
1486
  "flags": {
1432
- "force": {
1433
- "char": "f",
1434
- "description": "allow destruction even if connected to other apps",
1435
- "name": "force",
1436
- "allowNo": false,
1437
- "type": "boolean"
1438
- },
1439
- "confirm": {
1440
- "char": "c",
1441
- "name": "confirm",
1442
- "hasDynamicHelp": false,
1443
- "multiple": false,
1444
- "type": "option"
1445
- },
1446
- "wait": {
1447
- "description": "watch add-on destruction status and exit when complete",
1448
- "name": "wait",
1449
- "allowNo": false,
1450
- "type": "boolean"
1451
- },
1452
1487
  "app": {
1453
1488
  "char": "a",
1454
1489
  "description": "app to run command against",
1455
1490
  "name": "app",
1491
+ "required": true,
1456
1492
  "hasDynamicHelp": false,
1457
1493
  "multiple": false,
1458
1494
  "type": "option"
@@ -1467,33 +1503,35 @@
1467
1503
  }
1468
1504
  },
1469
1505
  "hasDynamicHelp": false,
1470
- "hiddenAliases": [
1471
- "addons:remove"
1472
- ],
1473
- "id": "addons:destroy",
1506
+ "hiddenAliases": [],
1507
+ "id": "apps:lock",
1474
1508
  "pluginAlias": "heroku",
1475
1509
  "pluginName": "heroku",
1476
1510
  "pluginType": "core",
1477
- "strict": false,
1478
- "topic": "addons",
1511
+ "strict": true,
1512
+ "topic": "apps",
1479
1513
  "isESM": false,
1480
1514
  "relativePath": [
1481
1515
  "lib",
1482
1516
  "commands",
1483
- "addons",
1484
- "destroy.js"
1517
+ "apps",
1518
+ "lock.js"
1485
1519
  ]
1486
1520
  },
1487
- "addons:detach": {
1521
+ "apps:open": {
1488
1522
  "aliases": [],
1489
1523
  "args": {
1490
- "attachment_name": {
1491
- "description": "unique identifier of the add-on attachment",
1492
- "name": "attachment_name",
1493
- "required": true
1524
+ "path": {
1525
+ "description": "base URL path of app",
1526
+ "name": "path",
1527
+ "required": false
1494
1528
  }
1495
1529
  },
1496
- "description": "detach an existing add-on resource from an app",
1530
+ "description": "open the app in a web browser",
1531
+ "examples": [
1532
+ "$ heroku open -a myapp",
1533
+ "$ heroku open -a myapp /foo"
1534
+ ],
1497
1535
  "flags": {
1498
1536
  "app": {
1499
1537
  "char": "a",
@@ -1514,42 +1552,42 @@
1514
1552
  }
1515
1553
  },
1516
1554
  "hasDynamicHelp": false,
1517
- "hiddenAliases": [],
1518
- "id": "addons:detach",
1555
+ "hiddenAliases": [
1556
+ "open"
1557
+ ],
1558
+ "id": "apps:open",
1519
1559
  "pluginAlias": "heroku",
1520
1560
  "pluginName": "heroku",
1521
1561
  "pluginType": "core",
1522
1562
  "strict": true,
1523
- "topic": "addons",
1563
+ "topic": "apps",
1524
1564
  "isESM": false,
1525
1565
  "relativePath": [
1526
1566
  "lib",
1527
1567
  "commands",
1528
- "addons",
1529
- "detach.js"
1568
+ "apps",
1569
+ "open.js"
1530
1570
  ]
1531
1571
  },
1532
- "addons:docs": {
1572
+ "apps:rename": {
1533
1573
  "aliases": [],
1534
1574
  "args": {
1535
- "addon": {
1536
- "description": "unique identifier or globally unique name of the add-on",
1537
- "name": "addon",
1575
+ "newname": {
1576
+ "description": "new unique name of the app",
1577
+ "name": "newname",
1538
1578
  "required": true
1539
1579
  }
1540
1580
  },
1541
- "description": "open an add-on's Dev Center documentation in your browser",
1581
+ "description": "rename an app",
1582
+ "examples": [
1583
+ "$ heroku apps:rename --app oldname newname"
1584
+ ],
1542
1585
  "flags": {
1543
- "show-url": {
1544
- "description": "show URL, do not open browser",
1545
- "name": "show-url",
1546
- "allowNo": false,
1547
- "type": "boolean"
1548
- },
1549
1586
  "app": {
1550
1587
  "char": "a",
1551
1588
  "description": "app to run command against",
1552
1589
  "name": "app",
1590
+ "required": true,
1553
1591
  "hasDynamicHelp": false,
1554
1592
  "multiple": false,
1555
1593
  "type": "option"
@@ -1564,40 +1602,50 @@
1564
1602
  }
1565
1603
  },
1566
1604
  "hasDynamicHelp": false,
1567
- "hiddenAliases": [],
1568
- "id": "addons:docs",
1605
+ "hiddenAliases": [
1606
+ "rename"
1607
+ ],
1608
+ "id": "apps:rename",
1569
1609
  "pluginAlias": "heroku",
1570
1610
  "pluginName": "heroku",
1571
1611
  "pluginType": "core",
1572
1612
  "strict": true,
1573
- "topic": "addons",
1613
+ "help": "This will locally update the git remote if it is set to the old app.",
1614
+ "topic": "apps",
1574
1615
  "isESM": false,
1575
1616
  "relativePath": [
1576
1617
  "lib",
1577
1618
  "commands",
1578
- "addons",
1579
- "docs.js"
1619
+ "apps",
1620
+ "rename.js"
1580
1621
  ]
1581
1622
  },
1582
- "addons": {
1623
+ "apps:transfer": {
1583
1624
  "aliases": [],
1584
- "args": {},
1585
- "description": "Lists your add-ons and attachments.\n\n The default filter applied depends on whether you are in a Heroku app\n directory. If so, the --app flag is implied. If not, the default of --all\n is implied. Explicitly providing either flag overrides the default\n behavior.\n ",
1625
+ "args": {
1626
+ "recipient": {
1627
+ "description": "user or team to transfer applications to",
1628
+ "name": "recipient",
1629
+ "required": true
1630
+ }
1631
+ },
1632
+ "description": "transfer applications to another user or team",
1586
1633
  "examples": [
1587
- "$ heroku addons --all",
1588
- "$ heroku addons --app acme-inc-www"
1634
+ "$ 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..."
1589
1635
  ],
1590
1636
  "flags": {
1591
- "all": {
1592
- "char": "A",
1593
- "description": "show add-ons and attachments for all accessible apps",
1594
- "name": "all",
1637
+ "locked": {
1638
+ "char": "l",
1639
+ "description": "lock the app upon transfer",
1640
+ "name": "locked",
1641
+ "required": false,
1595
1642
  "allowNo": false,
1596
1643
  "type": "boolean"
1597
1644
  },
1598
- "json": {
1599
- "description": "return add-ons in json format",
1600
- "name": "json",
1645
+ "bulk": {
1646
+ "description": "transfer applications in bulk",
1647
+ "name": "bulk",
1648
+ "required": false,
1601
1649
  "allowNo": false,
1602
1650
  "type": "boolean"
1603
1651
  },
@@ -1616,40 +1664,44 @@
1616
1664
  "hasDynamicHelp": false,
1617
1665
  "multiple": false,
1618
1666
  "type": "option"
1667
+ },
1668
+ "confirm": {
1669
+ "char": "c",
1670
+ "hidden": true,
1671
+ "name": "confirm",
1672
+ "hasDynamicHelp": false,
1673
+ "multiple": false,
1674
+ "type": "option"
1619
1675
  }
1620
1676
  },
1621
1677
  "hasDynamicHelp": false,
1622
1678
  "hiddenAliases": [],
1623
- "id": "addons",
1679
+ "id": "apps:transfer",
1624
1680
  "pluginAlias": "heroku",
1625
1681
  "pluginName": "heroku",
1626
1682
  "pluginType": "core",
1627
1683
  "strict": true,
1628
- "usage": "addons [--all|--app APP]",
1629
- "topic": "addons",
1684
+ "topic": "apps",
1630
1685
  "isESM": false,
1631
1686
  "relativePath": [
1632
1687
  "lib",
1633
1688
  "commands",
1634
- "addons",
1635
- "index.js"
1689
+ "apps",
1690
+ "transfer.js"
1636
1691
  ]
1637
1692
  },
1638
- "addons:info": {
1639
- "aliases": [],
1640
- "args": {
1641
- "addon": {
1642
- "description": "unique identifier or globally unique name of the add-on",
1643
- "name": "addon",
1644
- "required": true
1645
- }
1646
- },
1647
- "description": "show detailed add-on resource and attachment information",
1693
+ "apps:unlock": {
1694
+ "aliases": [
1695
+ "unlock"
1696
+ ],
1697
+ "args": {},
1698
+ "description": "unlock an app so any team member can join",
1648
1699
  "flags": {
1649
1700
  "app": {
1650
1701
  "char": "a",
1651
1702
  "description": "app to run command against",
1652
1703
  "name": "app",
1704
+ "required": true,
1653
1705
  "hasDynamicHelp": false,
1654
1706
  "multiple": false,
1655
1707
  "type": "option"
@@ -1665,42 +1717,40 @@
1665
1717
  },
1666
1718
  "hasDynamicHelp": false,
1667
1719
  "hiddenAliases": [],
1668
- "id": "addons:info",
1720
+ "id": "apps:unlock",
1669
1721
  "pluginAlias": "heroku",
1670
1722
  "pluginName": "heroku",
1671
1723
  "pluginType": "core",
1672
1724
  "strict": true,
1673
- "usage": "addons:info ADDON",
1674
- "topic": "addons",
1725
+ "topic": "apps",
1675
1726
  "isESM": false,
1676
1727
  "relativePath": [
1677
1728
  "lib",
1678
1729
  "commands",
1679
- "addons",
1680
- "info.js"
1730
+ "apps",
1731
+ "unlock.js"
1681
1732
  ]
1682
1733
  },
1683
- "addons:open": {
1734
+ "access:add": {
1684
1735
  "aliases": [],
1685
1736
  "args": {
1686
- "addon": {
1687
- "description": "unique identifier or globally unique name of the add-on",
1688
- "name": "addon",
1737
+ "email": {
1738
+ "description": "email address of the team member",
1739
+ "name": "email",
1689
1740
  "required": true
1690
1741
  }
1691
1742
  },
1692
- "description": "open an add-on's dashboard in your browser",
1743
+ "description": "add new users to your app",
1744
+ "examples": [
1745
+ "$ heroku access:add user@email.com --app APP # add a collaborator to your app",
1746
+ "$ heroku access:add user@email.com --app APP --permissions deploy,manage,operate # permissions must be comma separated"
1747
+ ],
1693
1748
  "flags": {
1694
- "show-url": {
1695
- "description": "show URL, do not open browser",
1696
- "name": "show-url",
1697
- "allowNo": false,
1698
- "type": "boolean"
1699
- },
1700
1749
  "app": {
1701
1750
  "char": "a",
1702
1751
  "description": "app to run command against",
1703
1752
  "name": "app",
1753
+ "required": true,
1704
1754
  "hasDynamicHelp": false,
1705
1755
  "multiple": false,
1706
1756
  "type": "option"
@@ -1712,95 +1762,53 @@
1712
1762
  "hasDynamicHelp": false,
1713
1763
  "multiple": false,
1714
1764
  "type": "option"
1715
- }
1716
- },
1717
- "hasDynamicHelp": false,
1718
- "hiddenAliases": [],
1719
- "id": "addons:open",
1720
- "pluginAlias": "heroku",
1721
- "pluginName": "heroku",
1722
- "pluginType": "core",
1723
- "strict": true,
1724
- "topic": "addons",
1725
- "isESM": false,
1726
- "relativePath": [
1727
- "lib",
1728
- "commands",
1729
- "addons",
1730
- "open.js"
1731
- ]
1732
- },
1733
- "addons:plans": {
1734
- "aliases": [],
1735
- "args": {
1736
- "service": {
1737
- "description": "unique identifier or globally unique name of the add-on",
1738
- "name": "service",
1739
- "required": true
1740
- }
1741
- },
1742
- "description": "list all available plans for an add-on service",
1743
- "flags": {
1744
- "json": {
1745
- "description": "output in json format",
1746
- "name": "json",
1747
- "allowNo": false,
1748
- "type": "boolean"
1749
- }
1750
- },
1751
- "hasDynamicHelp": false,
1752
- "hiddenAliases": [],
1753
- "id": "addons:plans",
1754
- "pluginAlias": "heroku",
1755
- "pluginName": "heroku",
1756
- "pluginType": "core",
1757
- "strict": true,
1758
- "topic": "addons",
1759
- "isESM": false,
1760
- "relativePath": [
1761
- "lib",
1762
- "commands",
1763
- "addons",
1764
- "plans.js"
1765
- ]
1766
- },
1767
- "addons:rename": {
1768
- "aliases": [],
1769
- "args": {
1770
- "addon_name": {
1771
- "description": "unique identifier or globally unique name of the add-on",
1772
- "name": "addon_name",
1773
- "required": true
1774
1765
  },
1775
- "new_name": {
1776
- "description": "new globally unique name of the add-on",
1777
- "name": "new_name",
1778
- "required": true
1766
+ "permissions": {
1767
+ "char": "p",
1768
+ "description": "list of permissions comma separated",
1769
+ "name": "permissions",
1770
+ "hasDynamicHelp": false,
1771
+ "multiple": false,
1772
+ "type": "option"
1779
1773
  }
1780
1774
  },
1781
- "description": "rename an add-on",
1782
- "flags": {},
1783
1775
  "hasDynamicHelp": false,
1784
1776
  "hiddenAliases": [],
1785
- "id": "addons:rename",
1777
+ "id": "access:add",
1786
1778
  "pluginAlias": "heroku",
1787
1779
  "pluginName": "heroku",
1788
1780
  "pluginType": "core",
1789
1781
  "strict": true,
1790
- "topic": "addons",
1791
1782
  "isESM": false,
1792
1783
  "relativePath": [
1793
1784
  "lib",
1794
1785
  "commands",
1795
- "addons",
1796
- "rename.js"
1786
+ "access",
1787
+ "add.js"
1797
1788
  ]
1798
1789
  },
1799
- "addons:services": {
1790
+ "access": {
1800
1791
  "aliases": [],
1801
1792
  "args": {},
1802
- "description": "list all available add-on services",
1793
+ "description": "list who has access to an app",
1803
1794
  "flags": {
1795
+ "app": {
1796
+ "char": "a",
1797
+ "description": "app to run command against",
1798
+ "name": "app",
1799
+ "required": true,
1800
+ "hasDynamicHelp": false,
1801
+ "multiple": false,
1802
+ "type": "option"
1803
+ },
1804
+ "remote": {
1805
+ "char": "r",
1806
+ "description": "git remote of app to use",
1807
+ "name": "remote",
1808
+ "hasDynamicHelp": false,
1809
+ "multiple": false,
1810
+ "type": "option"
1811
+ },
1804
1812
  "json": {
1805
1813
  "description": "output in json format",
1806
1814
  "name": "json",
@@ -1810,44 +1818,31 @@
1810
1818
  },
1811
1819
  "hasDynamicHelp": false,
1812
1820
  "hiddenAliases": [],
1813
- "id": "addons:services",
1814
- "pluginAlias": "heroku",
1815
- "pluginName": "heroku",
1816
- "pluginType": "core",
1817
- "strict": true,
1818
- "topic": "addons",
1819
- "isESM": false,
1820
- "relativePath": [
1821
- "lib",
1822
- "commands",
1823
- "addons",
1824
- "services.js"
1825
- ]
1826
- },
1827
- "addons:upgrade": {
1828
- "aliases": [
1829
- "addons:downgrade"
1830
- ],
1831
- "args": {
1832
- "addon": {
1833
- "description": "unique identifier or globally unique name of the add-on",
1834
- "name": "addon",
1835
- "required": true
1836
- },
1837
- "plan": {
1838
- "description": "unique identifier or name of the plan",
1839
- "name": "plan"
1840
- }
1841
- },
1842
- "description": "change add-on plan.\n See available plans with `heroku addons:plans SERVICE`.\n\n Note that `heroku addons:upgrade` and `heroku addons:downgrade` are the same. Either one can be used to change an add-on plan up or down.\n\n https://devcenter.heroku.com/articles/managing-add-ons\n ",
1843
- "examples": [
1844
- "Upgrade an add-on by service name:\n$ heroku addons:upgrade heroku-redis:premium-2\n\nUpgrade a specific add-on:\n$ heroku addons:upgrade swimming-briskly-123 heroku-redis:premium-2"
1845
- ],
1821
+ "id": "access",
1822
+ "pluginAlias": "heroku",
1823
+ "pluginName": "heroku",
1824
+ "pluginType": "core",
1825
+ "strict": true,
1826
+ "topic": "access",
1827
+ "isESM": false,
1828
+ "relativePath": [
1829
+ "lib",
1830
+ "commands",
1831
+ "access",
1832
+ "index.js"
1833
+ ]
1834
+ },
1835
+ "access:remove": {
1836
+ "aliases": [],
1837
+ "args": {},
1838
+ "description": "remove users from a team app",
1839
+ "examples": "$ heroku access:remove user@email.com --app APP",
1846
1840
  "flags": {
1847
1841
  "app": {
1848
1842
  "char": "a",
1849
1843
  "description": "app to run command against",
1850
1844
  "name": "app",
1845
+ "required": true,
1851
1846
  "hasDynamicHelp": false,
1852
1847
  "multiple": false,
1853
1848
  "type": "option"
@@ -1863,33 +1858,37 @@
1863
1858
  },
1864
1859
  "hasDynamicHelp": false,
1865
1860
  "hiddenAliases": [],
1866
- "id": "addons:upgrade",
1861
+ "id": "access:remove",
1867
1862
  "pluginAlias": "heroku",
1868
1863
  "pluginName": "heroku",
1869
1864
  "pluginType": "core",
1870
- "strict": true,
1871
- "topic": "addons",
1865
+ "strict": false,
1866
+ "example": "$ heroku access:remove user@email.com --app APP",
1867
+ "topic": "access",
1872
1868
  "isESM": false,
1873
1869
  "relativePath": [
1874
1870
  "lib",
1875
1871
  "commands",
1876
- "addons",
1877
- "upgrade.js"
1872
+ "access",
1873
+ "remove.js"
1878
1874
  ]
1879
1875
  },
1880
- "addons:wait": {
1876
+ "access:update": {
1881
1877
  "aliases": [],
1882
1878
  "args": {
1883
- "addon": {
1884
- "description": "unique identifier or globally unique name of the add-on",
1885
- "name": "addon"
1879
+ "email": {
1880
+ "description": "email address of the team member",
1881
+ "name": "email",
1882
+ "required": true
1886
1883
  }
1887
1884
  },
1888
- "description": "show provisioning status of the add-ons on the app",
1885
+ "description": "update existing collaborators on an team app",
1889
1886
  "flags": {
1890
- "wait-interval": {
1891
- "description": "how frequently to poll in seconds",
1892
- "name": "wait-interval",
1887
+ "permissions": {
1888
+ "char": "p",
1889
+ "description": "comma-delimited list of permissions to update (deploy,manage,operate)",
1890
+ "name": "permissions",
1891
+ "required": true,
1893
1892
  "hasDynamicHelp": false,
1894
1893
  "multiple": false,
1895
1894
  "type": "option"
@@ -1898,6 +1897,7 @@
1898
1897
  "char": "a",
1899
1898
  "description": "app to run command against",
1900
1899
  "name": "app",
1900
+ "required": true,
1901
1901
  "hasDynamicHelp": false,
1902
1902
  "multiple": false,
1903
1903
  "type": "option"
@@ -1913,18 +1913,18 @@
1913
1913
  },
1914
1914
  "hasDynamicHelp": false,
1915
1915
  "hiddenAliases": [],
1916
- "id": "addons:wait",
1916
+ "id": "access:update",
1917
1917
  "pluginAlias": "heroku",
1918
1918
  "pluginName": "heroku",
1919
1919
  "pluginType": "core",
1920
1920
  "strict": true,
1921
- "topic": "addons",
1921
+ "topic": "access",
1922
1922
  "isESM": false,
1923
1923
  "relativePath": [
1924
1924
  "lib",
1925
1925
  "commands",
1926
- "addons",
1927
- "wait.js"
1926
+ "access",
1927
+ "update.js"
1928
1928
  ]
1929
1929
  },
1930
1930
  "auth:login": {
@@ -2543,7 +2543,7 @@
2543
2543
  "buildpacks": {
2544
2544
  "aliases": [],
2545
2545
  "args": {},
2546
- "description": "display the buildpacks for an app",
2546
+ "description": "list the buildpacks on an app",
2547
2547
  "flags": {
2548
2548
  "app": {
2549
2549
  "char": "a",
@@ -10078,6 +10078,7 @@
10078
10078
  "type": "option"
10079
10079
  },
10080
10080
  "app": {
10081
+ "char": "a",
10081
10082
  "description": "filter by app name",
10082
10083
  "name": "app",
10083
10084
  "hasDynamicHelp": false,
@@ -10800,32 +10801,242 @@
10800
10801
  "flags": {},
10801
10802
  "hasDynamicHelp": false,
10802
10803
  "hiddenAliases": [],
10803
- "id": "auth:2fa:disable",
10804
+ "id": "auth:2fa:disable",
10805
+ "pluginAlias": "heroku",
10806
+ "pluginName": "heroku",
10807
+ "pluginType": "core",
10808
+ "strict": true,
10809
+ "example": "$ heroku auth:2fa:disable",
10810
+ "isESM": false,
10811
+ "relativePath": [
10812
+ "lib",
10813
+ "commands",
10814
+ "auth",
10815
+ "2fa",
10816
+ "disable.js"
10817
+ ]
10818
+ },
10819
+ "auth:2fa": {
10820
+ "aliases": [
10821
+ "2fa",
10822
+ "twofactor"
10823
+ ],
10824
+ "args": {},
10825
+ "description": "check 2fa status",
10826
+ "flags": {},
10827
+ "hasDynamicHelp": false,
10828
+ "hiddenAliases": [],
10829
+ "id": "auth:2fa",
10830
+ "pluginAlias": "heroku",
10831
+ "pluginName": "heroku",
10832
+ "pluginType": "core",
10833
+ "strict": true,
10834
+ "isESM": false,
10835
+ "relativePath": [
10836
+ "lib",
10837
+ "commands",
10838
+ "auth",
10839
+ "2fa",
10840
+ "index.js"
10841
+ ]
10842
+ },
10843
+ "certs:auto:disable": {
10844
+ "aliases": [],
10845
+ "args": {},
10846
+ "description": "disable ACM for an app",
10847
+ "flags": {
10848
+ "confirm": {
10849
+ "char": "c",
10850
+ "hidden": true,
10851
+ "name": "confirm",
10852
+ "hasDynamicHelp": false,
10853
+ "multiple": false,
10854
+ "type": "option"
10855
+ },
10856
+ "app": {
10857
+ "char": "a",
10858
+ "description": "app to run command against",
10859
+ "name": "app",
10860
+ "required": true,
10861
+ "hasDynamicHelp": false,
10862
+ "multiple": false,
10863
+ "type": "option"
10864
+ },
10865
+ "remote": {
10866
+ "char": "r",
10867
+ "description": "git remote of app to use",
10868
+ "name": "remote",
10869
+ "hasDynamicHelp": false,
10870
+ "multiple": false,
10871
+ "type": "option"
10872
+ }
10873
+ },
10874
+ "hasDynamicHelp": false,
10875
+ "hiddenAliases": [],
10876
+ "id": "certs:auto:disable",
10877
+ "pluginAlias": "heroku",
10878
+ "pluginName": "heroku",
10879
+ "pluginType": "core",
10880
+ "strict": true,
10881
+ "topic": "certs",
10882
+ "isESM": false,
10883
+ "relativePath": [
10884
+ "lib",
10885
+ "commands",
10886
+ "certs",
10887
+ "auto",
10888
+ "disable.js"
10889
+ ]
10890
+ },
10891
+ "certs:auto:enable": {
10892
+ "aliases": [],
10893
+ "args": {},
10894
+ "description": "enable ACM status for an app",
10895
+ "flags": {
10896
+ "wait": {
10897
+ "description": "watch ACM status and exit when complete",
10898
+ "name": "wait",
10899
+ "allowNo": false,
10900
+ "type": "boolean"
10901
+ },
10902
+ "app": {
10903
+ "char": "a",
10904
+ "description": "app to run command against",
10905
+ "name": "app",
10906
+ "required": true,
10907
+ "hasDynamicHelp": false,
10908
+ "multiple": false,
10909
+ "type": "option"
10910
+ },
10911
+ "remote": {
10912
+ "char": "r",
10913
+ "description": "git remote of app to use",
10914
+ "name": "remote",
10915
+ "hasDynamicHelp": false,
10916
+ "multiple": false,
10917
+ "type": "option"
10918
+ }
10919
+ },
10920
+ "hasDynamicHelp": false,
10921
+ "hiddenAliases": [],
10922
+ "id": "certs:auto:enable",
10923
+ "pluginAlias": "heroku",
10924
+ "pluginName": "heroku",
10925
+ "pluginType": "core",
10926
+ "strict": true,
10927
+ "topic": "certs",
10928
+ "isESM": false,
10929
+ "relativePath": [
10930
+ "lib",
10931
+ "commands",
10932
+ "certs",
10933
+ "auto",
10934
+ "enable.js"
10935
+ ]
10936
+ },
10937
+ "certs:auto": {
10938
+ "aliases": [],
10939
+ "args": {},
10940
+ "description": "show ACM status for an app",
10941
+ "flags": {
10942
+ "wait": {
10943
+ "description": "watch ACM status and display the status when complete",
10944
+ "name": "wait",
10945
+ "allowNo": false,
10946
+ "type": "boolean"
10947
+ },
10948
+ "app": {
10949
+ "char": "a",
10950
+ "description": "app to run command against",
10951
+ "name": "app",
10952
+ "required": true,
10953
+ "hasDynamicHelp": false,
10954
+ "multiple": false,
10955
+ "type": "option"
10956
+ },
10957
+ "remote": {
10958
+ "char": "r",
10959
+ "description": "git remote of app to use",
10960
+ "name": "remote",
10961
+ "hasDynamicHelp": false,
10962
+ "multiple": false,
10963
+ "type": "option"
10964
+ }
10965
+ },
10966
+ "hasDynamicHelp": false,
10967
+ "hiddenAliases": [],
10968
+ "id": "certs:auto",
10969
+ "pluginAlias": "heroku",
10970
+ "pluginName": "heroku",
10971
+ "pluginType": "core",
10972
+ "strict": true,
10973
+ "topic": "certs",
10974
+ "isESM": false,
10975
+ "relativePath": [
10976
+ "lib",
10977
+ "commands",
10978
+ "certs",
10979
+ "auto",
10980
+ "index.js"
10981
+ ]
10982
+ },
10983
+ "certs:auto:refresh": {
10984
+ "aliases": [],
10985
+ "args": {},
10986
+ "description": "refresh ACM for an app",
10987
+ "flags": {
10988
+ "app": {
10989
+ "char": "a",
10990
+ "description": "app to run command against",
10991
+ "name": "app",
10992
+ "required": true,
10993
+ "hasDynamicHelp": false,
10994
+ "multiple": false,
10995
+ "type": "option"
10996
+ },
10997
+ "remote": {
10998
+ "char": "r",
10999
+ "description": "git remote of app to use",
11000
+ "name": "remote",
11001
+ "hasDynamicHelp": false,
11002
+ "multiple": false,
11003
+ "type": "option"
11004
+ }
11005
+ },
11006
+ "hasDynamicHelp": false,
11007
+ "hiddenAliases": [],
11008
+ "id": "certs:auto:refresh",
10804
11009
  "pluginAlias": "heroku",
10805
11010
  "pluginName": "heroku",
10806
11011
  "pluginType": "core",
10807
11012
  "strict": true,
10808
- "example": "$ heroku auth:2fa:disable",
11013
+ "topic": "certs",
10809
11014
  "isESM": false,
10810
11015
  "relativePath": [
10811
11016
  "lib",
10812
11017
  "commands",
10813
- "auth",
10814
- "2fa",
10815
- "disable.js"
11018
+ "certs",
11019
+ "auto",
11020
+ "refresh.js"
10816
11021
  ]
10817
11022
  },
10818
- "auth:2fa": {
10819
- "aliases": [
10820
- "2fa",
10821
- "twofactor"
10822
- ],
11023
+ "certs:auto:wait": {
11024
+ "aliases": [],
10823
11025
  "args": {},
10824
- "description": "check 2fa status",
10825
- "flags": {},
11026
+ "description": "waits for the certificate to be activated",
11027
+ "flags": {
11028
+ "help": {
11029
+ "char": "h",
11030
+ "description": "Show CLI help.",
11031
+ "name": "help",
11032
+ "allowNo": false,
11033
+ "type": "boolean"
11034
+ }
11035
+ },
10826
11036
  "hasDynamicHelp": false,
11037
+ "hidden": true,
10827
11038
  "hiddenAliases": [],
10828
- "id": "auth:2fa",
11039
+ "id": "certs:auto:wait",
10829
11040
  "pluginAlias": "heroku",
10830
11041
  "pluginName": "heroku",
10831
11042
  "pluginType": "core",
@@ -10834,9 +11045,9 @@
10834
11045
  "relativePath": [
10835
11046
  "lib",
10836
11047
  "commands",
10837
- "auth",
10838
- "2fa",
10839
- "index.js"
11048
+ "certs",
11049
+ "auto",
11050
+ "wait.js"
10840
11051
  ]
10841
11052
  },
10842
11053
  "ci:config:get": {
@@ -11071,216 +11282,6 @@
11071
11282
  "unset.js"
11072
11283
  ]
11073
11284
  },
11074
- "certs:auto:disable": {
11075
- "aliases": [],
11076
- "args": {},
11077
- "description": "disable ACM for an app",
11078
- "flags": {
11079
- "confirm": {
11080
- "char": "c",
11081
- "hidden": true,
11082
- "name": "confirm",
11083
- "hasDynamicHelp": false,
11084
- "multiple": false,
11085
- "type": "option"
11086
- },
11087
- "app": {
11088
- "char": "a",
11089
- "description": "app to run command against",
11090
- "name": "app",
11091
- "required": true,
11092
- "hasDynamicHelp": false,
11093
- "multiple": false,
11094
- "type": "option"
11095
- },
11096
- "remote": {
11097
- "char": "r",
11098
- "description": "git remote of app to use",
11099
- "name": "remote",
11100
- "hasDynamicHelp": false,
11101
- "multiple": false,
11102
- "type": "option"
11103
- }
11104
- },
11105
- "hasDynamicHelp": false,
11106
- "hiddenAliases": [],
11107
- "id": "certs:auto:disable",
11108
- "pluginAlias": "heroku",
11109
- "pluginName": "heroku",
11110
- "pluginType": "core",
11111
- "strict": true,
11112
- "topic": "certs",
11113
- "isESM": false,
11114
- "relativePath": [
11115
- "lib",
11116
- "commands",
11117
- "certs",
11118
- "auto",
11119
- "disable.js"
11120
- ]
11121
- },
11122
- "certs:auto:enable": {
11123
- "aliases": [],
11124
- "args": {},
11125
- "description": "enable ACM status for an app",
11126
- "flags": {
11127
- "wait": {
11128
- "description": "watch ACM status and exit when complete",
11129
- "name": "wait",
11130
- "allowNo": false,
11131
- "type": "boolean"
11132
- },
11133
- "app": {
11134
- "char": "a",
11135
- "description": "app to run command against",
11136
- "name": "app",
11137
- "required": true,
11138
- "hasDynamicHelp": false,
11139
- "multiple": false,
11140
- "type": "option"
11141
- },
11142
- "remote": {
11143
- "char": "r",
11144
- "description": "git remote of app to use",
11145
- "name": "remote",
11146
- "hasDynamicHelp": false,
11147
- "multiple": false,
11148
- "type": "option"
11149
- }
11150
- },
11151
- "hasDynamicHelp": false,
11152
- "hiddenAliases": [],
11153
- "id": "certs:auto:enable",
11154
- "pluginAlias": "heroku",
11155
- "pluginName": "heroku",
11156
- "pluginType": "core",
11157
- "strict": true,
11158
- "topic": "certs",
11159
- "isESM": false,
11160
- "relativePath": [
11161
- "lib",
11162
- "commands",
11163
- "certs",
11164
- "auto",
11165
- "enable.js"
11166
- ]
11167
- },
11168
- "certs:auto": {
11169
- "aliases": [],
11170
- "args": {},
11171
- "description": "show ACM status for an app",
11172
- "flags": {
11173
- "wait": {
11174
- "description": "watch ACM status and display the status when complete",
11175
- "name": "wait",
11176
- "allowNo": false,
11177
- "type": "boolean"
11178
- },
11179
- "app": {
11180
- "char": "a",
11181
- "description": "app to run command against",
11182
- "name": "app",
11183
- "required": true,
11184
- "hasDynamicHelp": false,
11185
- "multiple": false,
11186
- "type": "option"
11187
- },
11188
- "remote": {
11189
- "char": "r",
11190
- "description": "git remote of app to use",
11191
- "name": "remote",
11192
- "hasDynamicHelp": false,
11193
- "multiple": false,
11194
- "type": "option"
11195
- }
11196
- },
11197
- "hasDynamicHelp": false,
11198
- "hiddenAliases": [],
11199
- "id": "certs:auto",
11200
- "pluginAlias": "heroku",
11201
- "pluginName": "heroku",
11202
- "pluginType": "core",
11203
- "strict": true,
11204
- "topic": "certs",
11205
- "isESM": false,
11206
- "relativePath": [
11207
- "lib",
11208
- "commands",
11209
- "certs",
11210
- "auto",
11211
- "index.js"
11212
- ]
11213
- },
11214
- "certs:auto:refresh": {
11215
- "aliases": [],
11216
- "args": {},
11217
- "description": "refresh ACM for an app",
11218
- "flags": {
11219
- "app": {
11220
- "char": "a",
11221
- "description": "app to run command against",
11222
- "name": "app",
11223
- "required": true,
11224
- "hasDynamicHelp": false,
11225
- "multiple": false,
11226
- "type": "option"
11227
- },
11228
- "remote": {
11229
- "char": "r",
11230
- "description": "git remote of app to use",
11231
- "name": "remote",
11232
- "hasDynamicHelp": false,
11233
- "multiple": false,
11234
- "type": "option"
11235
- }
11236
- },
11237
- "hasDynamicHelp": false,
11238
- "hiddenAliases": [],
11239
- "id": "certs:auto:refresh",
11240
- "pluginAlias": "heroku",
11241
- "pluginName": "heroku",
11242
- "pluginType": "core",
11243
- "strict": true,
11244
- "topic": "certs",
11245
- "isESM": false,
11246
- "relativePath": [
11247
- "lib",
11248
- "commands",
11249
- "certs",
11250
- "auto",
11251
- "refresh.js"
11252
- ]
11253
- },
11254
- "certs:auto:wait": {
11255
- "aliases": [],
11256
- "args": {},
11257
- "description": "waits for the certificate to be activated",
11258
- "flags": {
11259
- "help": {
11260
- "char": "h",
11261
- "description": "Show CLI help.",
11262
- "name": "help",
11263
- "allowNo": false,
11264
- "type": "boolean"
11265
- }
11266
- },
11267
- "hasDynamicHelp": false,
11268
- "hidden": true,
11269
- "hiddenAliases": [],
11270
- "id": "certs:auto:wait",
11271
- "pluginAlias": "heroku",
11272
- "pluginName": "heroku",
11273
- "pluginType": "core",
11274
- "strict": true,
11275
- "isESM": false,
11276
- "relativePath": [
11277
- "lib",
11278
- "commands",
11279
- "certs",
11280
- "auto",
11281
- "wait.js"
11282
- ]
11283
- },
11284
11285
  "pg:backups:cancel": {
11285
11286
  "aliases": [],
11286
11287
  "args": {
@@ -14450,5 +14451,5 @@
14450
14451
  ]
14451
14452
  }
14452
14453
  },
14453
- "version": "10.2.0"
14454
+ "version": "10.3.0"
14454
14455
  }