heroku 11.0.2 → 11.1.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.
- package/CHANGELOG.md +12 -0
- package/README.md +14 -16
- package/bin/run.js +13 -49
- package/dist/commands/domains/add.d.ts +1 -1
- package/dist/commands/pg/backups/schedule.d.ts +1 -1
- package/dist/commands/spaces/index.d.ts +1 -1
- package/dist/commands/spaces/vpn/connections.d.ts +1 -1
- package/dist/hooks/command_not_found/performance_analytics.js +5 -4
- package/dist/hooks/finally/sentry.d.ts +3 -0
- package/dist/hooks/finally/sentry.js +42 -0
- package/dist/hooks/init/performance_analytics.js +5 -4
- package/dist/hooks/postrun/performance_analytics.js +6 -6
- package/dist/hooks/prerun/analytics.js +14 -7
- package/dist/lib/analytics-telemetry/global-telemetry.d.ts +30 -0
- package/dist/lib/analytics-telemetry/global-telemetry.js +103 -0
- package/dist/lib/analytics-telemetry/honeycomb-client.d.ts +15 -0
- package/dist/lib/analytics-telemetry/honeycomb-client.js +135 -0
- package/dist/lib/analytics-telemetry/sentry-client.d.ts +9 -0
- package/dist/lib/analytics-telemetry/sentry-client.js +58 -0
- package/dist/lib/analytics-telemetry/telemetry-utils.d.ts +68 -0
- package/dist/lib/analytics-telemetry/telemetry-utils.js +115 -0
- package/dist/lib/analytics-telemetry/telemetry-worker.d.ts +5 -0
- package/dist/lib/analytics-telemetry/telemetry-worker.js +37 -0
- package/dist/lib/analytics-telemetry/worker-client.d.ts +15 -0
- package/dist/lib/analytics-telemetry/worker-client.js +44 -0
- package/dist/lib/api.d.ts +1 -1
- package/dist/lib/apps/app-transfer.d.ts +1 -1
- package/dist/lib/apps/error_info.d.ts +1 -1
- package/dist/lib/apps/generation.d.ts +3 -3
- package/dist/lib/buildpacks/buildpacks.d.ts +1 -1
- package/dist/lib/container/docker_helper.d.ts +4 -4
- package/dist/lib/data/types.d.ts +37 -37
- package/dist/lib/domains/domains.js +15 -8
- package/dist/lib/pg/download.d.ts +1 -1
- package/dist/lib/pg/push_pull.d.ts +1 -1
- package/dist/lib/pg/setter.d.ts +1 -1
- package/dist/lib/pg/types.d.ts +31 -31
- package/dist/lib/pipelines/setup/validate.d.ts +1 -1
- package/dist/lib/redis/api.d.ts +7 -7
- package/dist/lib/spaces/hosts.d.ts +1 -1
- package/dist/lib/types/app_errors.d.ts +1 -1
- package/dist/lib/types/completion.d.ts +1 -1
- package/dist/lib/types/favorites.d.ts +2 -2
- package/dist/lib/types/notifications.d.ts +3 -3
- package/dist/lib/utils/multisort.d.ts +1 -1
- package/npm-shrinkwrap.json +837 -842
- package/oclif.manifest.json +1018 -1018
- package/package.json +7 -5
- package/dist/global_telemetry.d.ts +0 -62
- package/dist/global_telemetry.js +0 -216
package/oclif.manifest.json
CHANGED
|
@@ -632,168 +632,6 @@
|
|
|
632
632
|
"update.js"
|
|
633
633
|
]
|
|
634
634
|
},
|
|
635
|
-
"accounts:add": {
|
|
636
|
-
"aliases": [],
|
|
637
|
-
"args": {
|
|
638
|
-
"name": {
|
|
639
|
-
"description": "name of Heroku account to add",
|
|
640
|
-
"name": "name",
|
|
641
|
-
"required": true
|
|
642
|
-
}
|
|
643
|
-
},
|
|
644
|
-
"description": "add a Heroku account to your cache",
|
|
645
|
-
"examples": "\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku accounts:add my-account \u001b[22m\u001b[39m\u001b[49m",
|
|
646
|
-
"flags": {
|
|
647
|
-
"prompt": {
|
|
648
|
-
"description": "interactively prompt for command arguments and flags",
|
|
649
|
-
"helpGroup": "GLOBAL",
|
|
650
|
-
"name": "prompt",
|
|
651
|
-
"allowNo": false,
|
|
652
|
-
"type": "boolean"
|
|
653
|
-
}
|
|
654
|
-
},
|
|
655
|
-
"hasDynamicHelp": false,
|
|
656
|
-
"hiddenAliases": [],
|
|
657
|
-
"id": "accounts:add",
|
|
658
|
-
"pluginAlias": "heroku",
|
|
659
|
-
"pluginName": "heroku",
|
|
660
|
-
"pluginType": "core",
|
|
661
|
-
"strict": true,
|
|
662
|
-
"enableJsonFlag": false,
|
|
663
|
-
"promptFlagActive": true,
|
|
664
|
-
"example": "\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku accounts:add my-account \u001b[22m\u001b[39m\u001b[49m",
|
|
665
|
-
"isESM": true,
|
|
666
|
-
"relativePath": [
|
|
667
|
-
"dist",
|
|
668
|
-
"commands",
|
|
669
|
-
"accounts",
|
|
670
|
-
"add.js"
|
|
671
|
-
]
|
|
672
|
-
},
|
|
673
|
-
"accounts:current": {
|
|
674
|
-
"aliases": [],
|
|
675
|
-
"args": {},
|
|
676
|
-
"description": "display the current Heroku account",
|
|
677
|
-
"examples": "\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku accounts:current \u001b[22m\u001b[39m\u001b[49m",
|
|
678
|
-
"flags": {},
|
|
679
|
-
"hasDynamicHelp": false,
|
|
680
|
-
"hiddenAliases": [],
|
|
681
|
-
"id": "accounts:current",
|
|
682
|
-
"pluginAlias": "heroku",
|
|
683
|
-
"pluginName": "heroku",
|
|
684
|
-
"pluginType": "core",
|
|
685
|
-
"strict": true,
|
|
686
|
-
"enableJsonFlag": false,
|
|
687
|
-
"promptFlagActive": false,
|
|
688
|
-
"example": "\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku accounts:current \u001b[22m\u001b[39m\u001b[49m",
|
|
689
|
-
"isESM": true,
|
|
690
|
-
"relativePath": [
|
|
691
|
-
"dist",
|
|
692
|
-
"commands",
|
|
693
|
-
"accounts",
|
|
694
|
-
"current.js"
|
|
695
|
-
]
|
|
696
|
-
},
|
|
697
|
-
"accounts": {
|
|
698
|
-
"aliases": [],
|
|
699
|
-
"args": {},
|
|
700
|
-
"description": "list the Heroku accounts in your cache",
|
|
701
|
-
"examples": "\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku accounts \u001b[22m\u001b[39m\u001b[49m",
|
|
702
|
-
"flags": {},
|
|
703
|
-
"hasDynamicHelp": false,
|
|
704
|
-
"hiddenAliases": [],
|
|
705
|
-
"id": "accounts",
|
|
706
|
-
"pluginAlias": "heroku",
|
|
707
|
-
"pluginName": "heroku",
|
|
708
|
-
"pluginType": "core",
|
|
709
|
-
"strict": true,
|
|
710
|
-
"enableJsonFlag": false,
|
|
711
|
-
"promptFlagActive": false,
|
|
712
|
-
"example": "\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku accounts \u001b[22m\u001b[39m\u001b[49m",
|
|
713
|
-
"isESM": true,
|
|
714
|
-
"relativePath": [
|
|
715
|
-
"dist",
|
|
716
|
-
"commands",
|
|
717
|
-
"accounts",
|
|
718
|
-
"index.js"
|
|
719
|
-
]
|
|
720
|
-
},
|
|
721
|
-
"accounts:remove": {
|
|
722
|
-
"aliases": [],
|
|
723
|
-
"args": {
|
|
724
|
-
"name": {
|
|
725
|
-
"description": "name of Heroku account to remove",
|
|
726
|
-
"name": "name",
|
|
727
|
-
"required": true
|
|
728
|
-
}
|
|
729
|
-
},
|
|
730
|
-
"description": "remove a Heroku account from your cache",
|
|
731
|
-
"examples": "\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku accounts:remove my-account \u001b[22m\u001b[39m\u001b[49m",
|
|
732
|
-
"flags": {
|
|
733
|
-
"prompt": {
|
|
734
|
-
"description": "interactively prompt for command arguments and flags",
|
|
735
|
-
"helpGroup": "GLOBAL",
|
|
736
|
-
"name": "prompt",
|
|
737
|
-
"allowNo": false,
|
|
738
|
-
"type": "boolean"
|
|
739
|
-
}
|
|
740
|
-
},
|
|
741
|
-
"hasDynamicHelp": false,
|
|
742
|
-
"hiddenAliases": [],
|
|
743
|
-
"id": "accounts:remove",
|
|
744
|
-
"pluginAlias": "heroku",
|
|
745
|
-
"pluginName": "heroku",
|
|
746
|
-
"pluginType": "core",
|
|
747
|
-
"strict": true,
|
|
748
|
-
"enableJsonFlag": false,
|
|
749
|
-
"promptFlagActive": true,
|
|
750
|
-
"example": "\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku accounts:remove my-account \u001b[22m\u001b[39m\u001b[49m",
|
|
751
|
-
"isESM": true,
|
|
752
|
-
"relativePath": [
|
|
753
|
-
"dist",
|
|
754
|
-
"commands",
|
|
755
|
-
"accounts",
|
|
756
|
-
"remove.js"
|
|
757
|
-
]
|
|
758
|
-
},
|
|
759
|
-
"accounts:set": {
|
|
760
|
-
"aliases": [],
|
|
761
|
-
"args": {
|
|
762
|
-
"name": {
|
|
763
|
-
"description": "name of account to set",
|
|
764
|
-
"name": "name",
|
|
765
|
-
"required": true
|
|
766
|
-
}
|
|
767
|
-
},
|
|
768
|
-
"description": "set the current Heroku account from your cache",
|
|
769
|
-
"examples": "\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku accounts:set my-account \u001b[22m\u001b[39m\u001b[49m",
|
|
770
|
-
"flags": {
|
|
771
|
-
"prompt": {
|
|
772
|
-
"description": "interactively prompt for command arguments and flags",
|
|
773
|
-
"helpGroup": "GLOBAL",
|
|
774
|
-
"name": "prompt",
|
|
775
|
-
"allowNo": false,
|
|
776
|
-
"type": "boolean"
|
|
777
|
-
}
|
|
778
|
-
},
|
|
779
|
-
"hasDynamicHelp": false,
|
|
780
|
-
"hiddenAliases": [],
|
|
781
|
-
"id": "accounts:set",
|
|
782
|
-
"pluginAlias": "heroku",
|
|
783
|
-
"pluginName": "heroku",
|
|
784
|
-
"pluginType": "core",
|
|
785
|
-
"strict": true,
|
|
786
|
-
"enableJsonFlag": false,
|
|
787
|
-
"promptFlagActive": true,
|
|
788
|
-
"example": "\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku accounts:set my-account \u001b[22m\u001b[39m\u001b[49m",
|
|
789
|
-
"isESM": true,
|
|
790
|
-
"relativePath": [
|
|
791
|
-
"dist",
|
|
792
|
-
"commands",
|
|
793
|
-
"accounts",
|
|
794
|
-
"set.js"
|
|
795
|
-
]
|
|
796
|
-
},
|
|
797
635
|
"addons:attach": {
|
|
798
636
|
"aliases": [],
|
|
799
637
|
"args": {
|
|
@@ -1568,25 +1406,17 @@
|
|
|
1568
1406
|
"wait.js"
|
|
1569
1407
|
]
|
|
1570
1408
|
},
|
|
1571
|
-
"
|
|
1409
|
+
"accounts:add": {
|
|
1572
1410
|
"aliases": [],
|
|
1573
1411
|
"args": {
|
|
1574
|
-
"
|
|
1575
|
-
"description": "name of
|
|
1576
|
-
"name": "
|
|
1577
|
-
"required":
|
|
1412
|
+
"name": {
|
|
1413
|
+
"description": "name of Heroku account to add",
|
|
1414
|
+
"name": "name",
|
|
1415
|
+
"required": true
|
|
1578
1416
|
}
|
|
1579
1417
|
},
|
|
1580
|
-
"description": "
|
|
1581
|
-
"examples": [
|
|
1582
|
-
"\n\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku apps:create \u001b[22m\u001b[39m\u001b[49m\nCreating app... done, stack is heroku-24\nhttps://floating-dragon-42.heroku.com/ | https://git.heroku.com/floating-dragon-42.git",
|
|
1583
|
-
"\n# or just\n\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku create \u001b[22m\u001b[39m\u001b[49m",
|
|
1584
|
-
"\n# use a heroku.yml manifest file\n\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku apps:create --manifest \u001b[22m\u001b[39m\u001b[49m",
|
|
1585
|
-
"\n# specify a buildpack\n\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku apps:create --buildpack https://github.com/some/buildpack.git \u001b[22m\u001b[39m\u001b[49m",
|
|
1586
|
-
"\n# specify a name\n\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku apps:create example \u001b[22m\u001b[39m\u001b[49m",
|
|
1587
|
-
"\n# create a staging app\n\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku apps:create example-staging --remote staging \u001b[22m\u001b[39m\u001b[49m",
|
|
1588
|
-
"\n# create an app in the eu region\n\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku apps:create --region eu \u001b[22m\u001b[39m\u001b[49m"
|
|
1589
|
-
],
|
|
1418
|
+
"description": "add a Heroku account to your cache",
|
|
1419
|
+
"examples": "\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku accounts:add my-account \u001b[22m\u001b[39m\u001b[49m",
|
|
1590
1420
|
"flags": {
|
|
1591
1421
|
"prompt": {
|
|
1592
1422
|
"description": "interactively prompt for command arguments and flags",
|
|
@@ -1594,78 +1424,248 @@
|
|
|
1594
1424
|
"name": "prompt",
|
|
1595
1425
|
"allowNo": false,
|
|
1596
1426
|
"type": "boolean"
|
|
1597
|
-
}
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
"
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
"
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
"
|
|
1427
|
+
}
|
|
1428
|
+
},
|
|
1429
|
+
"hasDynamicHelp": false,
|
|
1430
|
+
"hiddenAliases": [],
|
|
1431
|
+
"id": "accounts:add",
|
|
1432
|
+
"pluginAlias": "heroku",
|
|
1433
|
+
"pluginName": "heroku",
|
|
1434
|
+
"pluginType": "core",
|
|
1435
|
+
"strict": true,
|
|
1436
|
+
"enableJsonFlag": false,
|
|
1437
|
+
"promptFlagActive": true,
|
|
1438
|
+
"example": "\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku accounts:add my-account \u001b[22m\u001b[39m\u001b[49m",
|
|
1439
|
+
"isESM": true,
|
|
1440
|
+
"relativePath": [
|
|
1441
|
+
"dist",
|
|
1442
|
+
"commands",
|
|
1443
|
+
"accounts",
|
|
1444
|
+
"add.js"
|
|
1445
|
+
]
|
|
1446
|
+
},
|
|
1447
|
+
"accounts:current": {
|
|
1448
|
+
"aliases": [],
|
|
1449
|
+
"args": {},
|
|
1450
|
+
"description": "display the current Heroku account",
|
|
1451
|
+
"examples": "\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku accounts:current \u001b[22m\u001b[39m\u001b[49m",
|
|
1452
|
+
"flags": {},
|
|
1453
|
+
"hasDynamicHelp": false,
|
|
1454
|
+
"hiddenAliases": [],
|
|
1455
|
+
"id": "accounts:current",
|
|
1456
|
+
"pluginAlias": "heroku",
|
|
1457
|
+
"pluginName": "heroku",
|
|
1458
|
+
"pluginType": "core",
|
|
1459
|
+
"strict": true,
|
|
1460
|
+
"enableJsonFlag": false,
|
|
1461
|
+
"promptFlagActive": false,
|
|
1462
|
+
"example": "\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku accounts:current \u001b[22m\u001b[39m\u001b[49m",
|
|
1463
|
+
"isESM": true,
|
|
1464
|
+
"relativePath": [
|
|
1465
|
+
"dist",
|
|
1466
|
+
"commands",
|
|
1467
|
+
"accounts",
|
|
1468
|
+
"current.js"
|
|
1469
|
+
]
|
|
1470
|
+
},
|
|
1471
|
+
"accounts": {
|
|
1472
|
+
"aliases": [],
|
|
1473
|
+
"args": {},
|
|
1474
|
+
"description": "list the Heroku accounts in your cache",
|
|
1475
|
+
"examples": "\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku accounts \u001b[22m\u001b[39m\u001b[49m",
|
|
1476
|
+
"flags": {},
|
|
1477
|
+
"hasDynamicHelp": false,
|
|
1478
|
+
"hiddenAliases": [],
|
|
1479
|
+
"id": "accounts",
|
|
1480
|
+
"pluginAlias": "heroku",
|
|
1481
|
+
"pluginName": "heroku",
|
|
1482
|
+
"pluginType": "core",
|
|
1483
|
+
"strict": true,
|
|
1484
|
+
"enableJsonFlag": false,
|
|
1485
|
+
"promptFlagActive": false,
|
|
1486
|
+
"example": "\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku accounts \u001b[22m\u001b[39m\u001b[49m",
|
|
1487
|
+
"isESM": true,
|
|
1488
|
+
"relativePath": [
|
|
1489
|
+
"dist",
|
|
1490
|
+
"commands",
|
|
1491
|
+
"accounts",
|
|
1492
|
+
"index.js"
|
|
1493
|
+
]
|
|
1494
|
+
},
|
|
1495
|
+
"accounts:remove": {
|
|
1496
|
+
"aliases": [],
|
|
1497
|
+
"args": {
|
|
1498
|
+
"name": {
|
|
1499
|
+
"description": "name of Heroku account to remove",
|
|
1500
|
+
"name": "name",
|
|
1501
|
+
"required": true
|
|
1502
|
+
}
|
|
1503
|
+
},
|
|
1504
|
+
"description": "remove a Heroku account from your cache",
|
|
1505
|
+
"examples": "\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku accounts:remove my-account \u001b[22m\u001b[39m\u001b[49m",
|
|
1506
|
+
"flags": {
|
|
1507
|
+
"prompt": {
|
|
1508
|
+
"description": "interactively prompt for command arguments and flags",
|
|
1509
|
+
"helpGroup": "GLOBAL",
|
|
1510
|
+
"name": "prompt",
|
|
1511
|
+
"allowNo": false,
|
|
1512
|
+
"type": "boolean"
|
|
1513
|
+
}
|
|
1514
|
+
},
|
|
1515
|
+
"hasDynamicHelp": false,
|
|
1516
|
+
"hiddenAliases": [],
|
|
1517
|
+
"id": "accounts:remove",
|
|
1518
|
+
"pluginAlias": "heroku",
|
|
1519
|
+
"pluginName": "heroku",
|
|
1520
|
+
"pluginType": "core",
|
|
1521
|
+
"strict": true,
|
|
1522
|
+
"enableJsonFlag": false,
|
|
1523
|
+
"promptFlagActive": true,
|
|
1524
|
+
"example": "\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku accounts:remove my-account \u001b[22m\u001b[39m\u001b[49m",
|
|
1525
|
+
"isESM": true,
|
|
1526
|
+
"relativePath": [
|
|
1527
|
+
"dist",
|
|
1528
|
+
"commands",
|
|
1529
|
+
"accounts",
|
|
1530
|
+
"remove.js"
|
|
1531
|
+
]
|
|
1532
|
+
},
|
|
1533
|
+
"accounts:set": {
|
|
1534
|
+
"aliases": [],
|
|
1535
|
+
"args": {
|
|
1536
|
+
"name": {
|
|
1537
|
+
"description": "name of account to set",
|
|
1538
|
+
"name": "name",
|
|
1539
|
+
"required": true
|
|
1540
|
+
}
|
|
1541
|
+
},
|
|
1542
|
+
"description": "set the current Heroku account from your cache",
|
|
1543
|
+
"examples": "\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku accounts:set my-account \u001b[22m\u001b[39m\u001b[49m",
|
|
1544
|
+
"flags": {
|
|
1545
|
+
"prompt": {
|
|
1546
|
+
"description": "interactively prompt for command arguments and flags",
|
|
1547
|
+
"helpGroup": "GLOBAL",
|
|
1548
|
+
"name": "prompt",
|
|
1549
|
+
"allowNo": false,
|
|
1550
|
+
"type": "boolean"
|
|
1551
|
+
}
|
|
1552
|
+
},
|
|
1553
|
+
"hasDynamicHelp": false,
|
|
1554
|
+
"hiddenAliases": [],
|
|
1555
|
+
"id": "accounts:set",
|
|
1556
|
+
"pluginAlias": "heroku",
|
|
1557
|
+
"pluginName": "heroku",
|
|
1558
|
+
"pluginType": "core",
|
|
1559
|
+
"strict": true,
|
|
1560
|
+
"enableJsonFlag": false,
|
|
1561
|
+
"promptFlagActive": true,
|
|
1562
|
+
"example": "\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku accounts:set my-account \u001b[22m\u001b[39m\u001b[49m",
|
|
1563
|
+
"isESM": true,
|
|
1564
|
+
"relativePath": [
|
|
1565
|
+
"dist",
|
|
1566
|
+
"commands",
|
|
1567
|
+
"accounts",
|
|
1568
|
+
"set.js"
|
|
1569
|
+
]
|
|
1570
|
+
},
|
|
1571
|
+
"apps:create": {
|
|
1572
|
+
"aliases": [],
|
|
1573
|
+
"args": {
|
|
1574
|
+
"app": {
|
|
1575
|
+
"description": "name of app to create",
|
|
1576
|
+
"name": "app",
|
|
1577
|
+
"required": false
|
|
1578
|
+
}
|
|
1579
|
+
},
|
|
1580
|
+
"description": "creates a new app",
|
|
1581
|
+
"examples": [
|
|
1582
|
+
"\n\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku apps:create \u001b[22m\u001b[39m\u001b[49m\nCreating app... done, stack is heroku-24\nhttps://floating-dragon-42.heroku.com/ | https://git.heroku.com/floating-dragon-42.git",
|
|
1583
|
+
"\n# or just\n\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku create \u001b[22m\u001b[39m\u001b[49m",
|
|
1584
|
+
"\n# use a heroku.yml manifest file\n\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku apps:create --manifest \u001b[22m\u001b[39m\u001b[49m",
|
|
1585
|
+
"\n# specify a buildpack\n\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku apps:create --buildpack https://github.com/some/buildpack.git \u001b[22m\u001b[39m\u001b[49m",
|
|
1586
|
+
"\n# specify a name\n\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku apps:create example \u001b[22m\u001b[39m\u001b[49m",
|
|
1587
|
+
"\n# create a staging app\n\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku apps:create example-staging --remote staging \u001b[22m\u001b[39m\u001b[49m",
|
|
1588
|
+
"\n# create an app in the eu region\n\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku apps:create --region eu \u001b[22m\u001b[39m\u001b[49m"
|
|
1589
|
+
],
|
|
1590
|
+
"flags": {
|
|
1591
|
+
"prompt": {
|
|
1592
|
+
"description": "interactively prompt for command arguments and flags",
|
|
1593
|
+
"helpGroup": "GLOBAL",
|
|
1594
|
+
"name": "prompt",
|
|
1595
|
+
"allowNo": false,
|
|
1596
|
+
"type": "boolean"
|
|
1597
|
+
},
|
|
1598
|
+
"addons": {
|
|
1599
|
+
"description": "comma-delimited list of addons to install",
|
|
1600
|
+
"name": "addons",
|
|
1601
|
+
"hasDynamicHelp": false,
|
|
1602
|
+
"multiple": false,
|
|
1603
|
+
"type": "option"
|
|
1604
|
+
},
|
|
1605
|
+
"app": {
|
|
1606
|
+
"hidden": true,
|
|
1607
|
+
"name": "app",
|
|
1608
|
+
"hasDynamicHelp": false,
|
|
1609
|
+
"multiple": false,
|
|
1610
|
+
"type": "option"
|
|
1611
|
+
},
|
|
1612
|
+
"buildpack": {
|
|
1613
|
+
"char": "b",
|
|
1614
|
+
"description": "buildpack url to use for this app",
|
|
1615
|
+
"name": "buildpack",
|
|
1616
|
+
"hasDynamicHelp": false,
|
|
1617
|
+
"multiple": false,
|
|
1618
|
+
"type": "option"
|
|
1619
|
+
},
|
|
1620
|
+
"features": {
|
|
1621
|
+
"hidden": true,
|
|
1622
|
+
"name": "features",
|
|
1623
|
+
"hasDynamicHelp": false,
|
|
1624
|
+
"multiple": false,
|
|
1625
|
+
"type": "option"
|
|
1626
|
+
},
|
|
1627
|
+
"internal-routing": {
|
|
1628
|
+
"description": "private space-only. create as an Internal Web App that is only routable in the local network.",
|
|
1629
|
+
"hidden": true,
|
|
1630
|
+
"name": "internal-routing",
|
|
1631
|
+
"allowNo": false,
|
|
1632
|
+
"type": "boolean"
|
|
1633
|
+
},
|
|
1634
|
+
"json": {
|
|
1635
|
+
"description": "output in json format",
|
|
1636
|
+
"name": "json",
|
|
1637
|
+
"allowNo": false,
|
|
1638
|
+
"type": "boolean"
|
|
1639
|
+
},
|
|
1640
|
+
"kernel": {
|
|
1641
|
+
"hidden": true,
|
|
1642
|
+
"name": "kernel",
|
|
1643
|
+
"hasDynamicHelp": false,
|
|
1644
|
+
"multiple": false,
|
|
1645
|
+
"type": "option"
|
|
1646
|
+
},
|
|
1647
|
+
"locked": {
|
|
1648
|
+
"hidden": true,
|
|
1649
|
+
"name": "locked",
|
|
1650
|
+
"allowNo": false,
|
|
1651
|
+
"type": "boolean"
|
|
1652
|
+
},
|
|
1653
|
+
"manifest": {
|
|
1654
|
+
"char": "m",
|
|
1655
|
+
"description": "use heroku.yml settings for this app",
|
|
1656
|
+
"hidden": true,
|
|
1657
|
+
"name": "manifest",
|
|
1658
|
+
"allowNo": false,
|
|
1659
|
+
"type": "boolean"
|
|
1660
|
+
},
|
|
1661
|
+
"no-remote": {
|
|
1662
|
+
"char": "n",
|
|
1663
|
+
"description": "do not create a git remote",
|
|
1664
|
+
"name": "no-remote",
|
|
1665
|
+
"allowNo": false,
|
|
1666
|
+
"type": "boolean"
|
|
1667
|
+
},
|
|
1668
|
+
"region": {
|
|
1669
1669
|
"description": "specify region for the app to run in",
|
|
1670
1670
|
"name": "region",
|
|
1671
1671
|
"hasDynamicHelp": false,
|
|
@@ -7411,15 +7411,19 @@
|
|
|
7411
7411
|
"open.js"
|
|
7412
7412
|
]
|
|
7413
7413
|
},
|
|
7414
|
-
"
|
|
7414
|
+
"pipelines:add": {
|
|
7415
7415
|
"aliases": [],
|
|
7416
7416
|
"args": {
|
|
7417
|
-
"
|
|
7418
|
-
"description": "
|
|
7419
|
-
"name": "
|
|
7417
|
+
"pipeline": {
|
|
7418
|
+
"description": "name of pipeline",
|
|
7419
|
+
"name": "pipeline",
|
|
7420
|
+
"required": true
|
|
7420
7421
|
}
|
|
7421
7422
|
},
|
|
7422
|
-
"description": "
|
|
7423
|
+
"description": "add this app to a pipeline\nThe app and pipeline names must be specified.\nThe stage of the app will be guessed based on its name if not specified.",
|
|
7424
|
+
"examples": [
|
|
7425
|
+
"\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku pipelines:add my-pipeline -a my-app -s production \u001b[22m\u001b[39m\u001b[49m"
|
|
7426
|
+
],
|
|
7423
7427
|
"flags": {
|
|
7424
7428
|
"prompt": {
|
|
7425
7429
|
"description": "interactively prompt for command arguments and flags",
|
|
@@ -7444,35 +7448,46 @@
|
|
|
7444
7448
|
"hasDynamicHelp": false,
|
|
7445
7449
|
"multiple": false,
|
|
7446
7450
|
"type": "option"
|
|
7451
|
+
},
|
|
7452
|
+
"stage": {
|
|
7453
|
+
"char": "s",
|
|
7454
|
+
"description": "stage of first app in pipeline",
|
|
7455
|
+
"name": "stage",
|
|
7456
|
+
"hasDynamicHelp": false,
|
|
7457
|
+
"multiple": false,
|
|
7458
|
+
"type": "option"
|
|
7447
7459
|
}
|
|
7448
7460
|
},
|
|
7449
7461
|
"hasDynamicHelp": true,
|
|
7450
7462
|
"hiddenAliases": [],
|
|
7451
|
-
"id": "
|
|
7463
|
+
"id": "pipelines:add",
|
|
7452
7464
|
"pluginAlias": "heroku",
|
|
7453
7465
|
"pluginName": "heroku",
|
|
7454
7466
|
"pluginType": "core",
|
|
7455
7467
|
"strict": true,
|
|
7456
7468
|
"enableJsonFlag": false,
|
|
7457
7469
|
"promptFlagActive": true,
|
|
7458
|
-
"topic": "pg",
|
|
7459
7470
|
"isESM": true,
|
|
7460
7471
|
"relativePath": [
|
|
7461
7472
|
"dist",
|
|
7462
7473
|
"commands",
|
|
7463
|
-
"
|
|
7464
|
-
"
|
|
7474
|
+
"pipelines",
|
|
7475
|
+
"add.js"
|
|
7465
7476
|
]
|
|
7466
7477
|
},
|
|
7467
|
-
"
|
|
7478
|
+
"pipelines:connect": {
|
|
7468
7479
|
"aliases": [],
|
|
7469
7480
|
"args": {
|
|
7470
|
-
"
|
|
7471
|
-
"description": "
|
|
7472
|
-
"name": "
|
|
7481
|
+
"name": {
|
|
7482
|
+
"description": "name of pipeline",
|
|
7483
|
+
"name": "name",
|
|
7484
|
+
"required": true
|
|
7473
7485
|
}
|
|
7474
7486
|
},
|
|
7475
|
-
"description": "
|
|
7487
|
+
"description": "connect a GitHub repo to an existing pipeline",
|
|
7488
|
+
"examples": [
|
|
7489
|
+
"\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku pipelines:connect my-pipeline -r githuborg/reponame \u001b[22m\u001b[39m\u001b[49m"
|
|
7490
|
+
],
|
|
7476
7491
|
"flags": {
|
|
7477
7492
|
"prompt": {
|
|
7478
7493
|
"description": "interactively prompt for command arguments and flags",
|
|
@@ -7481,57 +7496,47 @@
|
|
|
7481
7496
|
"allowNo": false,
|
|
7482
7497
|
"type": "boolean"
|
|
7483
7498
|
},
|
|
7484
|
-
"
|
|
7485
|
-
"char": "a",
|
|
7486
|
-
"description": "app to run command against",
|
|
7487
|
-
"name": "app",
|
|
7488
|
-
"required": true,
|
|
7489
|
-
"hasDynamicHelp": true,
|
|
7490
|
-
"multiple": false,
|
|
7491
|
-
"type": "option"
|
|
7492
|
-
},
|
|
7493
|
-
"remote": {
|
|
7499
|
+
"repo": {
|
|
7494
7500
|
"char": "r",
|
|
7495
|
-
"description": "
|
|
7496
|
-
"name": "
|
|
7501
|
+
"description": "the GitHub repository to connect to",
|
|
7502
|
+
"name": "repo",
|
|
7503
|
+
"required": true,
|
|
7497
7504
|
"hasDynamicHelp": false,
|
|
7498
7505
|
"multiple": false,
|
|
7499
7506
|
"type": "option"
|
|
7500
7507
|
}
|
|
7501
7508
|
},
|
|
7502
|
-
"hasDynamicHelp":
|
|
7509
|
+
"hasDynamicHelp": false,
|
|
7503
7510
|
"hiddenAliases": [],
|
|
7504
|
-
"id": "
|
|
7511
|
+
"id": "pipelines:connect",
|
|
7505
7512
|
"pluginAlias": "heroku",
|
|
7506
7513
|
"pluginName": "heroku",
|
|
7507
7514
|
"pluginType": "core",
|
|
7508
7515
|
"strict": true,
|
|
7509
7516
|
"enableJsonFlag": false,
|
|
7510
7517
|
"promptFlagActive": true,
|
|
7511
|
-
"topic": "pg",
|
|
7512
7518
|
"isESM": true,
|
|
7513
7519
|
"relativePath": [
|
|
7514
7520
|
"dist",
|
|
7515
7521
|
"commands",
|
|
7516
|
-
"
|
|
7517
|
-
"
|
|
7522
|
+
"pipelines",
|
|
7523
|
+
"connect.js"
|
|
7518
7524
|
]
|
|
7519
7525
|
},
|
|
7520
|
-
"
|
|
7526
|
+
"pipelines:create": {
|
|
7521
7527
|
"aliases": [],
|
|
7522
7528
|
"args": {
|
|
7523
|
-
"
|
|
7524
|
-
"description": "
|
|
7525
|
-
"name": "
|
|
7526
|
-
"required":
|
|
7527
|
-
},
|
|
7528
|
-
"target": {
|
|
7529
|
-
"description": "config var exposed to the owning app containing the target database URL",
|
|
7530
|
-
"name": "target",
|
|
7531
|
-
"required": true
|
|
7529
|
+
"name": {
|
|
7530
|
+
"description": "name of pipeline (defaults to basename of the app)",
|
|
7531
|
+
"name": "name",
|
|
7532
|
+
"required": false
|
|
7532
7533
|
}
|
|
7533
7534
|
},
|
|
7534
|
-
"description": "
|
|
7535
|
+
"description": "create a new pipeline\n An existing app must be specified as the first app in the pipeline.\n The pipeline name will be inferred from the app name if not specified.\n The stage of the app will be guessed based on its name if not specified.\n The pipeline owner will be the user creating the pipeline if not specified with -t for teams or -o for orgs.",
|
|
7536
|
+
"examples": [
|
|
7537
|
+
"\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku pipelines:create -a my-app-staging \u001b[22m\u001b[39m\u001b[49m",
|
|
7538
|
+
"\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku pipelines:create my-pipeline -a my-app-staging \u001b[22m\u001b[39m\u001b[49m"
|
|
7539
|
+
],
|
|
7535
7540
|
"flags": {
|
|
7536
7541
|
"prompt": {
|
|
7537
7542
|
"description": "interactively prompt for command arguments and flags",
|
|
@@ -7549,12 +7554,6 @@
|
|
|
7549
7554
|
"multiple": false,
|
|
7550
7555
|
"type": "option"
|
|
7551
7556
|
},
|
|
7552
|
-
"confirm": {
|
|
7553
|
-
"name": "confirm",
|
|
7554
|
-
"hasDynamicHelp": false,
|
|
7555
|
-
"multiple": false,
|
|
7556
|
-
"type": "option"
|
|
7557
|
-
},
|
|
7558
7557
|
"remote": {
|
|
7559
7558
|
"char": "r",
|
|
7560
7559
|
"description": "git remote of app to use",
|
|
@@ -7563,13 +7562,18 @@
|
|
|
7563
7562
|
"multiple": false,
|
|
7564
7563
|
"type": "option"
|
|
7565
7564
|
},
|
|
7566
|
-
"
|
|
7567
|
-
"
|
|
7568
|
-
"
|
|
7569
|
-
"
|
|
7565
|
+
"stage": {
|
|
7566
|
+
"char": "s",
|
|
7567
|
+
"description": "stage of first app in pipeline",
|
|
7568
|
+
"name": "stage",
|
|
7569
|
+
"hasDynamicHelp": false,
|
|
7570
|
+
"multiple": false,
|
|
7571
|
+
"type": "option"
|
|
7570
7572
|
},
|
|
7571
|
-
"
|
|
7572
|
-
"
|
|
7573
|
+
"team": {
|
|
7574
|
+
"char": "t",
|
|
7575
|
+
"description": "the team which will own the apps",
|
|
7576
|
+
"name": "team",
|
|
7573
7577
|
"hasDynamicHelp": false,
|
|
7574
7578
|
"multiple": false,
|
|
7575
7579
|
"type": "option"
|
|
@@ -7577,32 +7581,34 @@
|
|
|
7577
7581
|
},
|
|
7578
7582
|
"hasDynamicHelp": true,
|
|
7579
7583
|
"hiddenAliases": [],
|
|
7580
|
-
"id": "
|
|
7584
|
+
"id": "pipelines:create",
|
|
7581
7585
|
"pluginAlias": "heroku",
|
|
7582
7586
|
"pluginName": "heroku",
|
|
7583
7587
|
"pluginType": "core",
|
|
7584
7588
|
"strict": true,
|
|
7585
7589
|
"enableJsonFlag": false,
|
|
7586
7590
|
"promptFlagActive": true,
|
|
7587
|
-
"help": "at least one of the databases must be a Heroku PostgreSQL DB",
|
|
7588
|
-
"topic": "pg",
|
|
7589
7591
|
"isESM": true,
|
|
7590
7592
|
"relativePath": [
|
|
7591
7593
|
"dist",
|
|
7592
7594
|
"commands",
|
|
7593
|
-
"
|
|
7594
|
-
"
|
|
7595
|
+
"pipelines",
|
|
7596
|
+
"create.js"
|
|
7595
7597
|
]
|
|
7596
7598
|
},
|
|
7597
|
-
"
|
|
7599
|
+
"pipelines:destroy": {
|
|
7598
7600
|
"aliases": [],
|
|
7599
7601
|
"args": {
|
|
7600
|
-
"
|
|
7601
|
-
"description": "
|
|
7602
|
-
"name": "
|
|
7602
|
+
"pipeline": {
|
|
7603
|
+
"description": "name of pipeline",
|
|
7604
|
+
"name": "pipeline",
|
|
7605
|
+
"required": true
|
|
7603
7606
|
}
|
|
7604
7607
|
},
|
|
7605
|
-
"description": "
|
|
7608
|
+
"description": "destroy a pipeline",
|
|
7609
|
+
"examples": [
|
|
7610
|
+
"\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku pipelines:destroy my-pipeline \u001b[22m\u001b[39m\u001b[49m"
|
|
7611
|
+
],
|
|
7606
7612
|
"flags": {
|
|
7607
7613
|
"prompt": {
|
|
7608
7614
|
"description": "interactively prompt for command arguments and flags",
|
|
@@ -7610,52 +7616,32 @@
|
|
|
7610
7616
|
"name": "prompt",
|
|
7611
7617
|
"allowNo": false,
|
|
7612
7618
|
"type": "boolean"
|
|
7613
|
-
},
|
|
7614
|
-
"app": {
|
|
7615
|
-
"char": "a",
|
|
7616
|
-
"description": "app to run command against",
|
|
7617
|
-
"name": "app",
|
|
7618
|
-
"required": true,
|
|
7619
|
-
"hasDynamicHelp": true,
|
|
7620
|
-
"multiple": false,
|
|
7621
|
-
"type": "option"
|
|
7622
|
-
},
|
|
7623
|
-
"remote": {
|
|
7624
|
-
"char": "r",
|
|
7625
|
-
"description": "git remote of app to use",
|
|
7626
|
-
"name": "remote",
|
|
7627
|
-
"hasDynamicHelp": false,
|
|
7628
|
-
"multiple": false,
|
|
7629
|
-
"type": "option"
|
|
7630
7619
|
}
|
|
7631
7620
|
},
|
|
7632
|
-
"hasDynamicHelp":
|
|
7621
|
+
"hasDynamicHelp": false,
|
|
7633
7622
|
"hiddenAliases": [],
|
|
7634
|
-
"id": "
|
|
7623
|
+
"id": "pipelines:destroy",
|
|
7635
7624
|
"pluginAlias": "heroku",
|
|
7636
7625
|
"pluginName": "heroku",
|
|
7637
7626
|
"pluginType": "core",
|
|
7638
7627
|
"strict": true,
|
|
7639
7628
|
"enableJsonFlag": false,
|
|
7640
7629
|
"promptFlagActive": true,
|
|
7641
|
-
"topic": "pg",
|
|
7642
7630
|
"isESM": true,
|
|
7643
7631
|
"relativePath": [
|
|
7644
7632
|
"dist",
|
|
7645
7633
|
"commands",
|
|
7646
|
-
"
|
|
7647
|
-
"
|
|
7634
|
+
"pipelines",
|
|
7635
|
+
"destroy.js"
|
|
7648
7636
|
]
|
|
7649
7637
|
},
|
|
7650
|
-
"
|
|
7638
|
+
"pipelines:diff": {
|
|
7651
7639
|
"aliases": [],
|
|
7652
|
-
"args": {
|
|
7653
|
-
|
|
7654
|
-
|
|
7655
|
-
|
|
7656
|
-
|
|
7657
|
-
},
|
|
7658
|
-
"description": "run or view diagnostics report\ndefaults to DATABASE_URL database if no DATABASE is specified\nif REPORT_ID is specified instead, a previous report is displayed\n\n",
|
|
7640
|
+
"args": {},
|
|
7641
|
+
"description": "compares the latest release of this app to its downstream app(s)",
|
|
7642
|
+
"examples": [
|
|
7643
|
+
"\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku pipelines:diff -a my-app-staging \u001b[22m\u001b[39m\u001b[49m"
|
|
7644
|
+
],
|
|
7659
7645
|
"flags": {
|
|
7660
7646
|
"prompt": {
|
|
7661
7647
|
"description": "interactively prompt for command arguments and flags",
|
|
@@ -7664,12 +7650,6 @@
|
|
|
7664
7650
|
"allowNo": false,
|
|
7665
7651
|
"type": "boolean"
|
|
7666
7652
|
},
|
|
7667
|
-
"json": {
|
|
7668
|
-
"description": "format output as JSON",
|
|
7669
|
-
"name": "json",
|
|
7670
|
-
"allowNo": false,
|
|
7671
|
-
"type": "boolean"
|
|
7672
|
-
},
|
|
7673
7653
|
"app": {
|
|
7674
7654
|
"char": "a",
|
|
7675
7655
|
"description": "app to run command against",
|
|
@@ -7690,33 +7670,28 @@
|
|
|
7690
7670
|
},
|
|
7691
7671
|
"hasDynamicHelp": true,
|
|
7692
7672
|
"hiddenAliases": [],
|
|
7693
|
-
"id": "
|
|
7673
|
+
"id": "pipelines:diff",
|
|
7694
7674
|
"pluginAlias": "heroku",
|
|
7695
7675
|
"pluginName": "heroku",
|
|
7696
7676
|
"pluginType": "core",
|
|
7697
7677
|
"strict": true,
|
|
7698
7678
|
"enableJsonFlag": false,
|
|
7699
7679
|
"promptFlagActive": true,
|
|
7700
|
-
"topic": "pg",
|
|
7701
7680
|
"isESM": true,
|
|
7702
7681
|
"relativePath": [
|
|
7703
7682
|
"dist",
|
|
7704
7683
|
"commands",
|
|
7705
|
-
"
|
|
7706
|
-
"
|
|
7684
|
+
"pipelines",
|
|
7685
|
+
"diff.js"
|
|
7707
7686
|
]
|
|
7708
7687
|
},
|
|
7709
|
-
"
|
|
7710
|
-
"aliases": [
|
|
7711
|
-
|
|
7688
|
+
"pipelines": {
|
|
7689
|
+
"aliases": [],
|
|
7690
|
+
"args": {},
|
|
7691
|
+
"description": "list pipelines you have access to",
|
|
7692
|
+
"examples": [
|
|
7693
|
+
"\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku pipelines \u001b[22m\u001b[39m\u001b[49m"
|
|
7712
7694
|
],
|
|
7713
|
-
"args": {
|
|
7714
|
-
"database": {
|
|
7715
|
-
"description": "config var containing the connection string, unique name, ID, or alias of the database. To access another app's database, prepend the app name to the config var or alias with `APP_NAME::` . If omitted, we use all databases.",
|
|
7716
|
-
"name": "database"
|
|
7717
|
-
}
|
|
7718
|
-
},
|
|
7719
|
-
"description": "show database information",
|
|
7720
7695
|
"flags": {
|
|
7721
7696
|
"prompt": {
|
|
7722
7697
|
"description": "interactively prompt for command arguments and flags",
|
|
@@ -7725,56 +7700,43 @@
|
|
|
7725
7700
|
"allowNo": false,
|
|
7726
7701
|
"type": "boolean"
|
|
7727
7702
|
},
|
|
7728
|
-
"
|
|
7729
|
-
"
|
|
7730
|
-
"
|
|
7731
|
-
"
|
|
7732
|
-
"
|
|
7733
|
-
"hasDynamicHelp": true,
|
|
7734
|
-
"multiple": false,
|
|
7735
|
-
"type": "option"
|
|
7736
|
-
},
|
|
7737
|
-
"remote": {
|
|
7738
|
-
"char": "r",
|
|
7739
|
-
"description": "git remote of app to use",
|
|
7740
|
-
"name": "remote",
|
|
7741
|
-
"hasDynamicHelp": false,
|
|
7742
|
-
"multiple": false,
|
|
7743
|
-
"type": "option"
|
|
7703
|
+
"json": {
|
|
7704
|
+
"description": "output in json format",
|
|
7705
|
+
"name": "json",
|
|
7706
|
+
"allowNo": false,
|
|
7707
|
+
"type": "boolean"
|
|
7744
7708
|
}
|
|
7745
7709
|
},
|
|
7746
|
-
"hasDynamicHelp":
|
|
7710
|
+
"hasDynamicHelp": false,
|
|
7747
7711
|
"hiddenAliases": [],
|
|
7748
|
-
"id": "
|
|
7712
|
+
"id": "pipelines",
|
|
7749
7713
|
"pluginAlias": "heroku",
|
|
7750
7714
|
"pluginName": "heroku",
|
|
7751
7715
|
"pluginType": "core",
|
|
7752
7716
|
"strict": true,
|
|
7753
7717
|
"enableJsonFlag": false,
|
|
7754
7718
|
"promptFlagActive": true,
|
|
7755
|
-
"topic": "pg",
|
|
7756
7719
|
"isESM": true,
|
|
7757
7720
|
"relativePath": [
|
|
7758
7721
|
"dist",
|
|
7759
7722
|
"commands",
|
|
7760
|
-
"
|
|
7761
|
-
"
|
|
7723
|
+
"pipelines",
|
|
7724
|
+
"index.js"
|
|
7762
7725
|
]
|
|
7763
7726
|
},
|
|
7764
|
-
"
|
|
7727
|
+
"pipelines:info": {
|
|
7765
7728
|
"aliases": [],
|
|
7766
7729
|
"args": {
|
|
7767
|
-
"
|
|
7768
|
-
"description": "
|
|
7769
|
-
"name": "
|
|
7730
|
+
"pipeline": {
|
|
7731
|
+
"description": "pipeline to show list of apps for",
|
|
7732
|
+
"name": "pipeline",
|
|
7770
7733
|
"required": true
|
|
7771
|
-
},
|
|
7772
|
-
"database": {
|
|
7773
|
-
"description": "config var containing the connection string, unique name, ID, or alias of the database. To access another app's database, prepend the app name to the config var or alias with `APP_NAME::` . If omitted, we use DATABASE_URL.",
|
|
7774
|
-
"name": "database"
|
|
7775
7734
|
}
|
|
7776
7735
|
},
|
|
7777
|
-
"description": "
|
|
7736
|
+
"description": "show list of apps in a pipeline",
|
|
7737
|
+
"examples": [
|
|
7738
|
+
"\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku pipelines:info my-pipeline \u001b[22m\u001b[39m\u001b[49m"
|
|
7739
|
+
],
|
|
7778
7740
|
"flags": {
|
|
7779
7741
|
"prompt": {
|
|
7780
7742
|
"description": "interactively prompt for command arguments and flags",
|
|
@@ -7783,57 +7745,50 @@
|
|
|
7783
7745
|
"allowNo": false,
|
|
7784
7746
|
"type": "boolean"
|
|
7785
7747
|
},
|
|
7786
|
-
"
|
|
7787
|
-
"
|
|
7788
|
-
"name": "
|
|
7748
|
+
"json": {
|
|
7749
|
+
"description": "output in json format",
|
|
7750
|
+
"name": "json",
|
|
7789
7751
|
"allowNo": false,
|
|
7790
7752
|
"type": "boolean"
|
|
7791
7753
|
},
|
|
7792
|
-
"
|
|
7793
|
-
"
|
|
7794
|
-
"
|
|
7795
|
-
"name": "
|
|
7796
|
-
"
|
|
7797
|
-
"
|
|
7798
|
-
"multiple": false,
|
|
7799
|
-
"type": "option"
|
|
7800
|
-
},
|
|
7801
|
-
"remote": {
|
|
7802
|
-
"char": "r",
|
|
7803
|
-
"description": "git remote of app to use",
|
|
7804
|
-
"name": "remote",
|
|
7805
|
-
"hasDynamicHelp": false,
|
|
7806
|
-
"multiple": false,
|
|
7807
|
-
"type": "option"
|
|
7754
|
+
"with-owners": {
|
|
7755
|
+
"description": "shows owner of every app",
|
|
7756
|
+
"hidden": true,
|
|
7757
|
+
"name": "with-owners",
|
|
7758
|
+
"allowNo": false,
|
|
7759
|
+
"type": "boolean"
|
|
7808
7760
|
}
|
|
7809
7761
|
},
|
|
7810
|
-
"hasDynamicHelp":
|
|
7762
|
+
"hasDynamicHelp": false,
|
|
7811
7763
|
"hiddenAliases": [],
|
|
7812
|
-
"id": "
|
|
7764
|
+
"id": "pipelines:info",
|
|
7813
7765
|
"pluginAlias": "heroku",
|
|
7814
7766
|
"pluginName": "heroku",
|
|
7815
7767
|
"pluginType": "core",
|
|
7816
7768
|
"strict": true,
|
|
7817
7769
|
"enableJsonFlag": false,
|
|
7818
7770
|
"promptFlagActive": true,
|
|
7819
|
-
"topic": "pg",
|
|
7820
7771
|
"isESM": true,
|
|
7821
7772
|
"relativePath": [
|
|
7822
7773
|
"dist",
|
|
7823
7774
|
"commands",
|
|
7824
|
-
"
|
|
7825
|
-
"
|
|
7775
|
+
"pipelines",
|
|
7776
|
+
"info.js"
|
|
7826
7777
|
]
|
|
7827
7778
|
},
|
|
7828
|
-
"
|
|
7779
|
+
"pipelines:open": {
|
|
7829
7780
|
"aliases": [],
|
|
7830
7781
|
"args": {
|
|
7831
|
-
"
|
|
7832
|
-
"description": "
|
|
7833
|
-
"name": "
|
|
7782
|
+
"pipeline": {
|
|
7783
|
+
"description": "name of pipeline",
|
|
7784
|
+
"name": "pipeline",
|
|
7785
|
+
"required": true
|
|
7834
7786
|
}
|
|
7835
7787
|
},
|
|
7836
|
-
"description": "
|
|
7788
|
+
"description": "open a pipeline in dashboard",
|
|
7789
|
+
"examples": [
|
|
7790
|
+
"\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku pipelines:open my-pipeline \u001b[22m\u001b[39m\u001b[49m"
|
|
7791
|
+
],
|
|
7837
7792
|
"flags": {
|
|
7838
7793
|
"prompt": {
|
|
7839
7794
|
"description": "interactively prompt for command arguments and flags",
|
|
@@ -7841,52 +7796,32 @@
|
|
|
7841
7796
|
"name": "prompt",
|
|
7842
7797
|
"allowNo": false,
|
|
7843
7798
|
"type": "boolean"
|
|
7844
|
-
},
|
|
7845
|
-
"app": {
|
|
7846
|
-
"char": "a",
|
|
7847
|
-
"description": "app to run command against",
|
|
7848
|
-
"name": "app",
|
|
7849
|
-
"required": true,
|
|
7850
|
-
"hasDynamicHelp": true,
|
|
7851
|
-
"multiple": false,
|
|
7852
|
-
"type": "option"
|
|
7853
|
-
},
|
|
7854
|
-
"remote": {
|
|
7855
|
-
"char": "r",
|
|
7856
|
-
"description": "git remote of app to use",
|
|
7857
|
-
"name": "remote",
|
|
7858
|
-
"hasDynamicHelp": false,
|
|
7859
|
-
"multiple": false,
|
|
7860
|
-
"type": "option"
|
|
7861
7799
|
}
|
|
7862
7800
|
},
|
|
7863
|
-
"hasDynamicHelp":
|
|
7801
|
+
"hasDynamicHelp": false,
|
|
7864
7802
|
"hiddenAliases": [],
|
|
7865
|
-
"id": "
|
|
7803
|
+
"id": "pipelines:open",
|
|
7866
7804
|
"pluginAlias": "heroku",
|
|
7867
7805
|
"pluginName": "heroku",
|
|
7868
7806
|
"pluginType": "core",
|
|
7869
7807
|
"strict": true,
|
|
7870
7808
|
"enableJsonFlag": false,
|
|
7871
7809
|
"promptFlagActive": true,
|
|
7872
|
-
"topic": "pg",
|
|
7873
7810
|
"isESM": true,
|
|
7874
7811
|
"relativePath": [
|
|
7875
7812
|
"dist",
|
|
7876
7813
|
"commands",
|
|
7877
|
-
"
|
|
7878
|
-
"
|
|
7814
|
+
"pipelines",
|
|
7815
|
+
"open.js"
|
|
7879
7816
|
]
|
|
7880
7817
|
},
|
|
7881
|
-
"
|
|
7818
|
+
"pipelines:promote": {
|
|
7882
7819
|
"aliases": [],
|
|
7883
|
-
"args": {
|
|
7884
|
-
|
|
7885
|
-
|
|
7886
|
-
|
|
7887
|
-
|
|
7888
|
-
},
|
|
7889
|
-
"description": "display queries with active locks",
|
|
7820
|
+
"args": {},
|
|
7821
|
+
"description": "promote the latest release of this app to its downstream app(s)",
|
|
7822
|
+
"examples": [
|
|
7823
|
+
"\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku pipelines:promote -a my-app-staging \u001b[22m\u001b[39m\u001b[49m"
|
|
7824
|
+
],
|
|
7890
7825
|
"flags": {
|
|
7891
7826
|
"prompt": {
|
|
7892
7827
|
"description": "interactively prompt for command arguments and flags",
|
|
@@ -7895,13 +7830,6 @@
|
|
|
7895
7830
|
"allowNo": false,
|
|
7896
7831
|
"type": "boolean"
|
|
7897
7832
|
},
|
|
7898
|
-
"truncate": {
|
|
7899
|
-
"char": "t",
|
|
7900
|
-
"description": "truncates queries to 40 characters",
|
|
7901
|
-
"name": "truncate",
|
|
7902
|
-
"allowNo": false,
|
|
7903
|
-
"type": "boolean"
|
|
7904
|
-
},
|
|
7905
7833
|
"app": {
|
|
7906
7834
|
"char": "a",
|
|
7907
7835
|
"description": "app to run command against",
|
|
@@ -7918,35 +7846,40 @@
|
|
|
7918
7846
|
"hasDynamicHelp": false,
|
|
7919
7847
|
"multiple": false,
|
|
7920
7848
|
"type": "option"
|
|
7849
|
+
},
|
|
7850
|
+
"to": {
|
|
7851
|
+
"char": "t",
|
|
7852
|
+
"description": "comma separated list of apps to promote to",
|
|
7853
|
+
"name": "to",
|
|
7854
|
+
"hasDynamicHelp": false,
|
|
7855
|
+
"multiple": false,
|
|
7856
|
+
"type": "option"
|
|
7921
7857
|
}
|
|
7922
7858
|
},
|
|
7923
7859
|
"hasDynamicHelp": true,
|
|
7924
7860
|
"hiddenAliases": [],
|
|
7925
|
-
"id": "
|
|
7861
|
+
"id": "pipelines:promote",
|
|
7926
7862
|
"pluginAlias": "heroku",
|
|
7927
7863
|
"pluginName": "heroku",
|
|
7928
7864
|
"pluginType": "core",
|
|
7929
7865
|
"strict": true,
|
|
7930
7866
|
"enableJsonFlag": false,
|
|
7931
7867
|
"promptFlagActive": true,
|
|
7932
|
-
"topic": "pg",
|
|
7933
7868
|
"isESM": true,
|
|
7934
7869
|
"relativePath": [
|
|
7935
7870
|
"dist",
|
|
7936
7871
|
"commands",
|
|
7937
|
-
"
|
|
7938
|
-
"
|
|
7872
|
+
"pipelines",
|
|
7873
|
+
"promote.js"
|
|
7939
7874
|
]
|
|
7940
7875
|
},
|
|
7941
|
-
"
|
|
7876
|
+
"pipelines:remove": {
|
|
7942
7877
|
"aliases": [],
|
|
7943
|
-
"args": {
|
|
7944
|
-
|
|
7945
|
-
|
|
7946
|
-
|
|
7947
|
-
|
|
7948
|
-
},
|
|
7949
|
-
"description": "show 10 queries that have longest execution time in aggregate",
|
|
7878
|
+
"args": {},
|
|
7879
|
+
"description": "remove this app from its pipeline",
|
|
7880
|
+
"examples": [
|
|
7881
|
+
"\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku pipelines:remove -a my-app \u001b[22m\u001b[39m\u001b[49m"
|
|
7882
|
+
],
|
|
7950
7883
|
"flags": {
|
|
7951
7884
|
"prompt": {
|
|
7952
7885
|
"description": "interactively prompt for command arguments and flags",
|
|
@@ -7955,27 +7888,6 @@
|
|
|
7955
7888
|
"allowNo": false,
|
|
7956
7889
|
"type": "boolean"
|
|
7957
7890
|
},
|
|
7958
|
-
"reset": {
|
|
7959
|
-
"description": "resets statistics gathered by pg_stat_statements",
|
|
7960
|
-
"name": "reset",
|
|
7961
|
-
"allowNo": false,
|
|
7962
|
-
"type": "boolean"
|
|
7963
|
-
},
|
|
7964
|
-
"truncate": {
|
|
7965
|
-
"char": "t",
|
|
7966
|
-
"description": "truncate queries to 40 characters",
|
|
7967
|
-
"name": "truncate",
|
|
7968
|
-
"allowNo": false,
|
|
7969
|
-
"type": "boolean"
|
|
7970
|
-
},
|
|
7971
|
-
"num": {
|
|
7972
|
-
"char": "n",
|
|
7973
|
-
"description": "the number of queries to display (default: 10)",
|
|
7974
|
-
"name": "num",
|
|
7975
|
-
"hasDynamicHelp": false,
|
|
7976
|
-
"multiple": false,
|
|
7977
|
-
"type": "option"
|
|
7978
|
-
},
|
|
7979
7891
|
"app": {
|
|
7980
7892
|
"char": "a",
|
|
7981
7893
|
"description": "app to run command against",
|
|
@@ -7996,32 +7908,39 @@
|
|
|
7996
7908
|
},
|
|
7997
7909
|
"hasDynamicHelp": true,
|
|
7998
7910
|
"hiddenAliases": [],
|
|
7999
|
-
"id": "
|
|
7911
|
+
"id": "pipelines:remove",
|
|
8000
7912
|
"pluginAlias": "heroku",
|
|
8001
7913
|
"pluginName": "heroku",
|
|
8002
7914
|
"pluginType": "core",
|
|
8003
7915
|
"strict": true,
|
|
8004
7916
|
"enableJsonFlag": false,
|
|
8005
7917
|
"promptFlagActive": true,
|
|
8006
|
-
"topic": "pg",
|
|
8007
7918
|
"isESM": true,
|
|
8008
7919
|
"relativePath": [
|
|
8009
7920
|
"dist",
|
|
8010
7921
|
"commands",
|
|
8011
|
-
"
|
|
8012
|
-
"
|
|
7922
|
+
"pipelines",
|
|
7923
|
+
"remove.js"
|
|
8013
7924
|
]
|
|
8014
7925
|
},
|
|
8015
|
-
"
|
|
7926
|
+
"pipelines:rename": {
|
|
8016
7927
|
"aliases": [],
|
|
8017
7928
|
"args": {
|
|
8018
|
-
"
|
|
8019
|
-
"description": "
|
|
8020
|
-
"name": "
|
|
7929
|
+
"pipeline": {
|
|
7930
|
+
"description": "name of pipeline to rename",
|
|
7931
|
+
"name": "pipeline",
|
|
7932
|
+
"required": true
|
|
7933
|
+
},
|
|
7934
|
+
"name": {
|
|
7935
|
+
"description": "new name of pipeline",
|
|
7936
|
+
"name": "name",
|
|
8021
7937
|
"required": true
|
|
8022
7938
|
}
|
|
8023
7939
|
},
|
|
8024
|
-
"description": "
|
|
7940
|
+
"description": "rename a pipeline",
|
|
7941
|
+
"examples": [
|
|
7942
|
+
"\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku pipelines:rename my-pipeline new-pipeline-name \u001b[22m\u001b[39m\u001b[49m"
|
|
7943
|
+
],
|
|
8025
7944
|
"flags": {
|
|
8026
7945
|
"prompt": {
|
|
8027
7946
|
"description": "interactively prompt for command arguments and flags",
|
|
@@ -8029,58 +7948,43 @@
|
|
|
8029
7948
|
"name": "prompt",
|
|
8030
7949
|
"allowNo": false,
|
|
8031
7950
|
"type": "boolean"
|
|
8032
|
-
},
|
|
8033
|
-
"force": {
|
|
8034
|
-
"char": "f",
|
|
8035
|
-
"name": "force",
|
|
8036
|
-
"allowNo": false,
|
|
8037
|
-
"type": "boolean"
|
|
8038
|
-
},
|
|
8039
|
-
"app": {
|
|
8040
|
-
"char": "a",
|
|
8041
|
-
"description": "app to run command against",
|
|
8042
|
-
"name": "app",
|
|
8043
|
-
"required": true,
|
|
8044
|
-
"hasDynamicHelp": true,
|
|
8045
|
-
"multiple": false,
|
|
8046
|
-
"type": "option"
|
|
8047
|
-
},
|
|
8048
|
-
"remote": {
|
|
8049
|
-
"char": "r",
|
|
8050
|
-
"description": "git remote of app to use",
|
|
8051
|
-
"name": "remote",
|
|
8052
|
-
"hasDynamicHelp": false,
|
|
8053
|
-
"multiple": false,
|
|
8054
|
-
"type": "option"
|
|
8055
7951
|
}
|
|
8056
7952
|
},
|
|
8057
|
-
"hasDynamicHelp":
|
|
7953
|
+
"hasDynamicHelp": false,
|
|
8058
7954
|
"hiddenAliases": [],
|
|
8059
|
-
"id": "
|
|
7955
|
+
"id": "pipelines:rename",
|
|
8060
7956
|
"pluginAlias": "heroku",
|
|
8061
7957
|
"pluginName": "heroku",
|
|
8062
7958
|
"pluginType": "core",
|
|
8063
7959
|
"strict": true,
|
|
8064
7960
|
"enableJsonFlag": false,
|
|
8065
7961
|
"promptFlagActive": true,
|
|
8066
|
-
"topic": "pg",
|
|
8067
7962
|
"isESM": true,
|
|
8068
7963
|
"relativePath": [
|
|
8069
7964
|
"dist",
|
|
8070
7965
|
"commands",
|
|
8071
|
-
"
|
|
8072
|
-
"
|
|
7966
|
+
"pipelines",
|
|
7967
|
+
"rename.js"
|
|
8073
7968
|
]
|
|
8074
7969
|
},
|
|
8075
|
-
"
|
|
7970
|
+
"pipelines:setup": {
|
|
8076
7971
|
"aliases": [],
|
|
8077
7972
|
"args": {
|
|
8078
|
-
"
|
|
8079
|
-
"description": "
|
|
8080
|
-
"name": "
|
|
7973
|
+
"name": {
|
|
7974
|
+
"description": "name of pipeline",
|
|
7975
|
+
"name": "name",
|
|
7976
|
+
"required": false
|
|
7977
|
+
},
|
|
7978
|
+
"repo": {
|
|
7979
|
+
"description": "a GitHub repository to connect the pipeline to",
|
|
7980
|
+
"name": "repo",
|
|
7981
|
+
"required": false
|
|
8081
7982
|
}
|
|
8082
7983
|
},
|
|
8083
|
-
"description": "
|
|
7984
|
+
"description": "bootstrap a new pipeline with common settings and create a production and staging app (requires a fully formed app.json in the repo)",
|
|
7985
|
+
"examples": [
|
|
7986
|
+
"\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku pipelines:setup my-pipeline githuborg/reponame -t my-team \u001b[22m\u001b[39m\u001b[49m"
|
|
7987
|
+
],
|
|
8084
7988
|
"flags": {
|
|
8085
7989
|
"prompt": {
|
|
8086
7990
|
"description": "interactively prompt for command arguments and flags",
|
|
@@ -8089,59 +7993,53 @@
|
|
|
8089
7993
|
"allowNo": false,
|
|
8090
7994
|
"type": "boolean"
|
|
8091
7995
|
},
|
|
8092
|
-
"
|
|
8093
|
-
"char": "
|
|
8094
|
-
"
|
|
8095
|
-
"
|
|
8096
|
-
"type": "boolean"
|
|
8097
|
-
},
|
|
8098
|
-
"app": {
|
|
8099
|
-
"char": "a",
|
|
8100
|
-
"description": "app to run command against",
|
|
8101
|
-
"name": "app",
|
|
8102
|
-
"required": true,
|
|
8103
|
-
"hasDynamicHelp": true,
|
|
8104
|
-
"multiple": false,
|
|
8105
|
-
"type": "option"
|
|
8106
|
-
},
|
|
8107
|
-
"remote": {
|
|
8108
|
-
"char": "r",
|
|
8109
|
-
"description": "git remote of app to use",
|
|
8110
|
-
"name": "remote",
|
|
7996
|
+
"team": {
|
|
7997
|
+
"char": "t",
|
|
7998
|
+
"description": "the team to assign pipeline ownership to (defaults to current user)",
|
|
7999
|
+
"name": "team",
|
|
8111
8000
|
"hasDynamicHelp": false,
|
|
8112
8001
|
"multiple": false,
|
|
8113
8002
|
"type": "option"
|
|
8003
|
+
},
|
|
8004
|
+
"yes": {
|
|
8005
|
+
"char": "y",
|
|
8006
|
+
"description": "accept all default settings without prompting",
|
|
8007
|
+
"name": "yes",
|
|
8008
|
+
"allowNo": false,
|
|
8009
|
+
"type": "boolean"
|
|
8114
8010
|
}
|
|
8115
8011
|
},
|
|
8116
|
-
"hasDynamicHelp":
|
|
8012
|
+
"hasDynamicHelp": false,
|
|
8117
8013
|
"hiddenAliases": [],
|
|
8118
|
-
"id": "
|
|
8014
|
+
"id": "pipelines:setup",
|
|
8119
8015
|
"pluginAlias": "heroku",
|
|
8120
8016
|
"pluginName": "heroku",
|
|
8121
8017
|
"pluginType": "core",
|
|
8122
8018
|
"strict": true,
|
|
8123
8019
|
"enableJsonFlag": false,
|
|
8124
8020
|
"promptFlagActive": true,
|
|
8125
|
-
"topic": "pg",
|
|
8126
8021
|
"isESM": true,
|
|
8127
8022
|
"relativePath": [
|
|
8128
8023
|
"dist",
|
|
8129
8024
|
"commands",
|
|
8130
|
-
"
|
|
8131
|
-
"
|
|
8025
|
+
"pipelines",
|
|
8026
|
+
"setup.js"
|
|
8132
8027
|
]
|
|
8133
8028
|
},
|
|
8134
|
-
"
|
|
8135
|
-
"aliases": [
|
|
8136
|
-
"psql"
|
|
8137
|
-
],
|
|
8029
|
+
"pipelines:transfer": {
|
|
8030
|
+
"aliases": [],
|
|
8138
8031
|
"args": {
|
|
8139
|
-
"
|
|
8140
|
-
"description": "
|
|
8141
|
-
"name": "
|
|
8032
|
+
"owner": {
|
|
8033
|
+
"description": "the owner to transfer the pipeline to",
|
|
8034
|
+
"name": "owner",
|
|
8035
|
+
"required": true
|
|
8142
8036
|
}
|
|
8143
8037
|
},
|
|
8144
|
-
"description": "
|
|
8038
|
+
"description": "transfer ownership of a pipeline",
|
|
8039
|
+
"examples": [
|
|
8040
|
+
"\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku pipelines:transfer admin@example.com -p my-pipeline \u001b[22m\u001b[39m\u001b[49m",
|
|
8041
|
+
"\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku pipelines:transfer admin-team -p my-pipeline \u001b[22m\u001b[39m\u001b[49m"
|
|
8042
|
+
],
|
|
8145
8043
|
"flags": {
|
|
8146
8044
|
"prompt": {
|
|
8147
8045
|
"description": "interactively prompt for command arguments and flags",
|
|
@@ -8150,50 +8048,26 @@
|
|
|
8150
8048
|
"allowNo": false,
|
|
8151
8049
|
"type": "boolean"
|
|
8152
8050
|
},
|
|
8153
|
-
"
|
|
8051
|
+
"confirm": {
|
|
8154
8052
|
"char": "c",
|
|
8155
|
-
"
|
|
8156
|
-
"name": "command",
|
|
8157
|
-
"hasDynamicHelp": false,
|
|
8158
|
-
"multiple": false,
|
|
8159
|
-
"type": "option"
|
|
8160
|
-
},
|
|
8161
|
-
"file": {
|
|
8162
|
-
"char": "f",
|
|
8163
|
-
"description": "SQL file to run",
|
|
8164
|
-
"name": "file",
|
|
8165
|
-
"hasDynamicHelp": false,
|
|
8166
|
-
"multiple": false,
|
|
8167
|
-
"type": "option"
|
|
8168
|
-
},
|
|
8169
|
-
"credential": {
|
|
8170
|
-
"description": "credential to use",
|
|
8171
|
-
"name": "credential",
|
|
8053
|
+
"name": "confirm",
|
|
8172
8054
|
"hasDynamicHelp": false,
|
|
8173
8055
|
"multiple": false,
|
|
8174
8056
|
"type": "option"
|
|
8175
8057
|
},
|
|
8176
|
-
"
|
|
8177
|
-
"char": "
|
|
8178
|
-
"description": "
|
|
8179
|
-
"name": "
|
|
8058
|
+
"pipeline": {
|
|
8059
|
+
"char": "p",
|
|
8060
|
+
"description": "name of pipeline",
|
|
8061
|
+
"name": "pipeline",
|
|
8180
8062
|
"required": true,
|
|
8181
|
-
"hasDynamicHelp": true,
|
|
8182
|
-
"multiple": false,
|
|
8183
|
-
"type": "option"
|
|
8184
|
-
},
|
|
8185
|
-
"remote": {
|
|
8186
|
-
"char": "r",
|
|
8187
|
-
"description": "git remote of app to use",
|
|
8188
|
-
"name": "remote",
|
|
8189
8063
|
"hasDynamicHelp": false,
|
|
8190
8064
|
"multiple": false,
|
|
8191
8065
|
"type": "option"
|
|
8192
8066
|
}
|
|
8193
8067
|
},
|
|
8194
|
-
"hasDynamicHelp":
|
|
8068
|
+
"hasDynamicHelp": false,
|
|
8195
8069
|
"hiddenAliases": [],
|
|
8196
|
-
"id": "
|
|
8070
|
+
"id": "pipelines:transfer",
|
|
8197
8071
|
"pluginAlias": "heroku",
|
|
8198
8072
|
"pluginName": "heroku",
|
|
8199
8073
|
"pluginType": "core",
|
|
@@ -8204,28 +8078,16 @@
|
|
|
8204
8078
|
"relativePath": [
|
|
8205
8079
|
"dist",
|
|
8206
8080
|
"commands",
|
|
8207
|
-
"
|
|
8208
|
-
"
|
|
8081
|
+
"pipelines",
|
|
8082
|
+
"transfer.js"
|
|
8209
8083
|
]
|
|
8210
8084
|
},
|
|
8211
|
-
"
|
|
8085
|
+
"pipelines:update": {
|
|
8212
8086
|
"aliases": [],
|
|
8213
|
-
"args": {
|
|
8214
|
-
|
|
8215
|
-
"description": "config var containing the connection string, unique name, ID, or alias of the database. To access another app's database, prepend the app name to the config var or alias with `APP_NAME::` . If omitted, we use DATABASE_URL.",
|
|
8216
|
-
"name": "source",
|
|
8217
|
-
"required": true
|
|
8218
|
-
},
|
|
8219
|
-
"target": {
|
|
8220
|
-
"description": "PostgreSQL connection string for the target database",
|
|
8221
|
-
"name": "target",
|
|
8222
|
-
"required": true
|
|
8223
|
-
}
|
|
8224
|
-
},
|
|
8225
|
-
"description": "pull Heroku database into local or remote database\nPull from SOURCE into TARGET.\n\nTARGET must be one of:\n* a database name (i.e. on a local PostgreSQL server) => TARGET must not exist and will be created\n* a fully qualified URL to a local PostgreSQL server => TARGET must not exist and will be created\n* a fully qualified URL to a remote PostgreSQL server => TARGET must exist and be empty\n\nTo delete a local database run \u001b[48;5;237m\u001b[38;5;255m\u001b[1mdropdb TARGET\u001b[22m\u001b[39m\u001b[49m.\nTo create an empty remote database, run \u001b[48;5;237m\u001b[38;5;255m\u001b[1mcreatedb\u001b[22m\u001b[39m\u001b[49m with connection command-line options (run \u001b[48;5;237m\u001b[38;5;255m\u001b[1mcreatedb --help\u001b[22m\u001b[39m\u001b[49m for details).\n",
|
|
8087
|
+
"args": {},
|
|
8088
|
+
"description": "update the app's stage in a pipeline",
|
|
8226
8089
|
"examples": [
|
|
8227
|
-
"
|
|
8228
|
-
"# pull Heroku DB named postgresql-swimmingly-100 into empty remote DB at postgres://myhost/mydb\n\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku pg:pull postgresql-swimmingly-100 postgres://myhost/mydb --app sushi \u001b[22m\u001b[39m\u001b[49m\n"
|
|
8090
|
+
"\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku pipelines:update -s staging -a my-app \u001b[22m\u001b[39m\u001b[49m"
|
|
8229
8091
|
],
|
|
8230
8092
|
"flags": {
|
|
8231
8093
|
"prompt": {
|
|
@@ -8244,13 +8106,6 @@
|
|
|
8244
8106
|
"multiple": false,
|
|
8245
8107
|
"type": "option"
|
|
8246
8108
|
},
|
|
8247
|
-
"exclude-table-data": {
|
|
8248
|
-
"description": "tables for which data should be excluded (use ';' to split multiple names)",
|
|
8249
|
-
"name": "exclude-table-data",
|
|
8250
|
-
"hasDynamicHelp": false,
|
|
8251
|
-
"multiple": false,
|
|
8252
|
-
"type": "option"
|
|
8253
|
-
},
|
|
8254
8109
|
"remote": {
|
|
8255
8110
|
"char": "r",
|
|
8256
8111
|
"description": "git remote of app to use",
|
|
@@ -8258,45 +8113,43 @@
|
|
|
8258
8113
|
"hasDynamicHelp": false,
|
|
8259
8114
|
"multiple": false,
|
|
8260
8115
|
"type": "option"
|
|
8116
|
+
},
|
|
8117
|
+
"stage": {
|
|
8118
|
+
"char": "s",
|
|
8119
|
+
"description": "new stage of app",
|
|
8120
|
+
"name": "stage",
|
|
8121
|
+
"required": true,
|
|
8122
|
+
"hasDynamicHelp": false,
|
|
8123
|
+
"multiple": false,
|
|
8124
|
+
"type": "option"
|
|
8261
8125
|
}
|
|
8262
8126
|
},
|
|
8263
8127
|
"hasDynamicHelp": true,
|
|
8264
8128
|
"hiddenAliases": [],
|
|
8265
|
-
"id": "
|
|
8129
|
+
"id": "pipelines:update",
|
|
8266
8130
|
"pluginAlias": "heroku",
|
|
8267
8131
|
"pluginName": "heroku",
|
|
8268
8132
|
"pluginType": "core",
|
|
8269
8133
|
"strict": true,
|
|
8270
8134
|
"enableJsonFlag": false,
|
|
8271
8135
|
"promptFlagActive": true,
|
|
8272
|
-
"topic": "pg",
|
|
8273
8136
|
"isESM": true,
|
|
8274
8137
|
"relativePath": [
|
|
8275
8138
|
"dist",
|
|
8276
8139
|
"commands",
|
|
8277
|
-
"
|
|
8278
|
-
"
|
|
8140
|
+
"pipelines",
|
|
8141
|
+
"update.js"
|
|
8279
8142
|
]
|
|
8280
8143
|
},
|
|
8281
|
-
"pg:
|
|
8144
|
+
"pg:bloat": {
|
|
8282
8145
|
"aliases": [],
|
|
8283
8146
|
"args": {
|
|
8284
|
-
"
|
|
8285
|
-
"description": "PostgreSQL connection string for the source database",
|
|
8286
|
-
"name": "source",
|
|
8287
|
-
"required": true
|
|
8288
|
-
},
|
|
8289
|
-
"target": {
|
|
8147
|
+
"database": {
|
|
8290
8148
|
"description": "config var containing the connection string, unique name, ID, or alias of the database. To access another app's database, prepend the app name to the config var or alias with `APP_NAME::` . If omitted, we use DATABASE_URL.",
|
|
8291
|
-
"name": "
|
|
8292
|
-
"required": true
|
|
8149
|
+
"name": "database"
|
|
8293
8150
|
}
|
|
8294
8151
|
},
|
|
8295
|
-
"description": "
|
|
8296
|
-
"examples": [
|
|
8297
|
-
"# push mylocaldb into a Heroku DB named postgresql-swimmingly-100\n$ heroku pg:push mylocaldb postgresql-swimmingly-100 --app sushi\n",
|
|
8298
|
-
"# push remote DB at postgres://myhost/mydb into a Heroku DB named postgresql-swimmingly-100\n$ heroku pg:push postgres://myhost/mydb postgresql-swimmingly-100 --app sushi\n"
|
|
8299
|
-
],
|
|
8152
|
+
"description": "show table and index bloat in your database ordered by most wasteful",
|
|
8300
8153
|
"flags": {
|
|
8301
8154
|
"prompt": {
|
|
8302
8155
|
"description": "interactively prompt for command arguments and flags",
|
|
@@ -8314,13 +8167,6 @@
|
|
|
8314
8167
|
"multiple": false,
|
|
8315
8168
|
"type": "option"
|
|
8316
8169
|
},
|
|
8317
|
-
"exclude-table-data": {
|
|
8318
|
-
"description": "tables for which data should be excluded (use ';' to split multiple names)",
|
|
8319
|
-
"name": "exclude-table-data",
|
|
8320
|
-
"hasDynamicHelp": false,
|
|
8321
|
-
"multiple": false,
|
|
8322
|
-
"type": "option"
|
|
8323
|
-
},
|
|
8324
8170
|
"remote": {
|
|
8325
8171
|
"char": "r",
|
|
8326
8172
|
"description": "git remote of app to use",
|
|
@@ -8332,7 +8178,7 @@
|
|
|
8332
8178
|
},
|
|
8333
8179
|
"hasDynamicHelp": true,
|
|
8334
8180
|
"hiddenAliases": [],
|
|
8335
|
-
"id": "pg:
|
|
8181
|
+
"id": "pg:bloat",
|
|
8336
8182
|
"pluginAlias": "heroku",
|
|
8337
8183
|
"pluginName": "heroku",
|
|
8338
8184
|
"pluginType": "core",
|
|
@@ -8345,10 +8191,10 @@
|
|
|
8345
8191
|
"dist",
|
|
8346
8192
|
"commands",
|
|
8347
8193
|
"pg",
|
|
8348
|
-
"
|
|
8194
|
+
"bloat.js"
|
|
8349
8195
|
]
|
|
8350
8196
|
},
|
|
8351
|
-
"pg:
|
|
8197
|
+
"pg:blocking": {
|
|
8352
8198
|
"aliases": [],
|
|
8353
8199
|
"args": {
|
|
8354
8200
|
"database": {
|
|
@@ -8356,7 +8202,7 @@
|
|
|
8356
8202
|
"name": "database"
|
|
8357
8203
|
}
|
|
8358
8204
|
},
|
|
8359
|
-
"description": "
|
|
8205
|
+
"description": "display queries holding locks other queries are waiting to be released",
|
|
8360
8206
|
"flags": {
|
|
8361
8207
|
"prompt": {
|
|
8362
8208
|
"description": "interactively prompt for command arguments and flags",
|
|
@@ -8374,21 +8220,6 @@
|
|
|
8374
8220
|
"multiple": false,
|
|
8375
8221
|
"type": "option"
|
|
8376
8222
|
},
|
|
8377
|
-
"confirm": {
|
|
8378
|
-
"char": "c",
|
|
8379
|
-
"name": "confirm",
|
|
8380
|
-
"hasDynamicHelp": false,
|
|
8381
|
-
"multiple": false,
|
|
8382
|
-
"type": "option"
|
|
8383
|
-
},
|
|
8384
|
-
"extensions": {
|
|
8385
|
-
"char": "e",
|
|
8386
|
-
"description": "comma-separated list of extensions to pre-install in the public schema",
|
|
8387
|
-
"name": "extensions",
|
|
8388
|
-
"hasDynamicHelp": false,
|
|
8389
|
-
"multiple": false,
|
|
8390
|
-
"type": "option"
|
|
8391
|
-
},
|
|
8392
8223
|
"remote": {
|
|
8393
8224
|
"char": "r",
|
|
8394
8225
|
"description": "git remote of app to use",
|
|
@@ -8400,7 +8231,7 @@
|
|
|
8400
8231
|
},
|
|
8401
8232
|
"hasDynamicHelp": true,
|
|
8402
8233
|
"hiddenAliases": [],
|
|
8403
|
-
"id": "pg:
|
|
8234
|
+
"id": "pg:blocking",
|
|
8404
8235
|
"pluginAlias": "heroku",
|
|
8405
8236
|
"pluginName": "heroku",
|
|
8406
8237
|
"pluginType": "core",
|
|
@@ -8413,19 +8244,24 @@
|
|
|
8413
8244
|
"dist",
|
|
8414
8245
|
"commands",
|
|
8415
8246
|
"pg",
|
|
8416
|
-
"
|
|
8247
|
+
"blocking.js"
|
|
8417
8248
|
]
|
|
8418
8249
|
},
|
|
8419
|
-
"pg:
|
|
8250
|
+
"pg:copy": {
|
|
8420
8251
|
"aliases": [],
|
|
8421
8252
|
"args": {
|
|
8422
|
-
"
|
|
8423
|
-
"description": "config var
|
|
8424
|
-
"name": "
|
|
8253
|
+
"source": {
|
|
8254
|
+
"description": "config var exposed to the owning app containing the source database URL",
|
|
8255
|
+
"name": "source",
|
|
8256
|
+
"required": true
|
|
8257
|
+
},
|
|
8258
|
+
"target": {
|
|
8259
|
+
"description": "config var exposed to the owning app containing the target database URL",
|
|
8260
|
+
"name": "target",
|
|
8425
8261
|
"required": true
|
|
8426
8262
|
}
|
|
8427
8263
|
},
|
|
8428
|
-
"description": "
|
|
8264
|
+
"description": "copy all data from source db to target",
|
|
8429
8265
|
"flags": {
|
|
8430
8266
|
"prompt": {
|
|
8431
8267
|
"description": "interactively prompt for command arguments and flags",
|
|
@@ -8434,13 +8270,6 @@
|
|
|
8434
8270
|
"allowNo": false,
|
|
8435
8271
|
"type": "boolean"
|
|
8436
8272
|
},
|
|
8437
|
-
"confirm": {
|
|
8438
|
-
"char": "c",
|
|
8439
|
-
"name": "confirm",
|
|
8440
|
-
"hasDynamicHelp": false,
|
|
8441
|
-
"multiple": false,
|
|
8442
|
-
"type": "option"
|
|
8443
|
-
},
|
|
8444
8273
|
"app": {
|
|
8445
8274
|
"char": "a",
|
|
8446
8275
|
"description": "app to run command against",
|
|
@@ -8450,6 +8279,12 @@
|
|
|
8450
8279
|
"multiple": false,
|
|
8451
8280
|
"type": "option"
|
|
8452
8281
|
},
|
|
8282
|
+
"confirm": {
|
|
8283
|
+
"name": "confirm",
|
|
8284
|
+
"hasDynamicHelp": false,
|
|
8285
|
+
"multiple": false,
|
|
8286
|
+
"type": "option"
|
|
8287
|
+
},
|
|
8453
8288
|
"remote": {
|
|
8454
8289
|
"char": "r",
|
|
8455
8290
|
"description": "git remote of app to use",
|
|
@@ -8457,27 +8292,39 @@
|
|
|
8457
8292
|
"hasDynamicHelp": false,
|
|
8458
8293
|
"multiple": false,
|
|
8459
8294
|
"type": "option"
|
|
8295
|
+
},
|
|
8296
|
+
"verbose": {
|
|
8297
|
+
"name": "verbose",
|
|
8298
|
+
"allowNo": false,
|
|
8299
|
+
"type": "boolean"
|
|
8300
|
+
},
|
|
8301
|
+
"wait-interval": {
|
|
8302
|
+
"name": "wait-interval",
|
|
8303
|
+
"hasDynamicHelp": false,
|
|
8304
|
+
"multiple": false,
|
|
8305
|
+
"type": "option"
|
|
8460
8306
|
}
|
|
8461
8307
|
},
|
|
8462
8308
|
"hasDynamicHelp": true,
|
|
8463
8309
|
"hiddenAliases": [],
|
|
8464
|
-
"id": "pg:
|
|
8310
|
+
"id": "pg:copy",
|
|
8465
8311
|
"pluginAlias": "heroku",
|
|
8466
8312
|
"pluginName": "heroku",
|
|
8467
8313
|
"pluginType": "core",
|
|
8468
8314
|
"strict": true,
|
|
8469
8315
|
"enableJsonFlag": false,
|
|
8470
8316
|
"promptFlagActive": true,
|
|
8317
|
+
"help": "at least one of the databases must be a Heroku PostgreSQL DB",
|
|
8471
8318
|
"topic": "pg",
|
|
8472
8319
|
"isESM": true,
|
|
8473
8320
|
"relativePath": [
|
|
8474
8321
|
"dist",
|
|
8475
8322
|
"commands",
|
|
8476
8323
|
"pg",
|
|
8477
|
-
"
|
|
8324
|
+
"copy.js"
|
|
8478
8325
|
]
|
|
8479
8326
|
},
|
|
8480
|
-
"pg:
|
|
8327
|
+
"pg:credentials": {
|
|
8481
8328
|
"aliases": [],
|
|
8482
8329
|
"args": {
|
|
8483
8330
|
"database": {
|
|
@@ -8485,7 +8332,7 @@
|
|
|
8485
8332
|
"name": "database"
|
|
8486
8333
|
}
|
|
8487
8334
|
},
|
|
8488
|
-
"description": "show
|
|
8335
|
+
"description": "show information on credentials in the database",
|
|
8489
8336
|
"flags": {
|
|
8490
8337
|
"prompt": {
|
|
8491
8338
|
"description": "interactively prompt for command arguments and flags",
|
|
@@ -8514,7 +8361,7 @@
|
|
|
8514
8361
|
},
|
|
8515
8362
|
"hasDynamicHelp": true,
|
|
8516
8363
|
"hiddenAliases": [],
|
|
8517
|
-
"id": "pg:
|
|
8364
|
+
"id": "pg:credentials",
|
|
8518
8365
|
"pluginAlias": "heroku",
|
|
8519
8366
|
"pluginName": "heroku",
|
|
8520
8367
|
"pluginType": "core",
|
|
@@ -8527,18 +8374,18 @@
|
|
|
8527
8374
|
"dist",
|
|
8528
8375
|
"commands",
|
|
8529
8376
|
"pg",
|
|
8530
|
-
"
|
|
8377
|
+
"credentials.js"
|
|
8531
8378
|
]
|
|
8532
8379
|
},
|
|
8533
|
-
"pg:
|
|
8380
|
+
"pg:diagnose": {
|
|
8534
8381
|
"aliases": [],
|
|
8535
8382
|
"args": {
|
|
8536
|
-
"
|
|
8537
|
-
"description": "config var
|
|
8538
|
-
"name": "
|
|
8383
|
+
"DATABASE|REPORT_ID": {
|
|
8384
|
+
"description": "config var exposed to the owning app containing the database URL or the report ID",
|
|
8385
|
+
"name": "DATABASE|REPORT_ID"
|
|
8539
8386
|
}
|
|
8540
8387
|
},
|
|
8541
|
-
"description": "
|
|
8388
|
+
"description": "run or view diagnostics report\ndefaults to DATABASE_URL database if no DATABASE is specified\nif REPORT_ID is specified instead, a previous report is displayed\n\n",
|
|
8542
8389
|
"flags": {
|
|
8543
8390
|
"prompt": {
|
|
8544
8391
|
"description": "interactively prompt for command arguments and flags",
|
|
@@ -8547,16 +8394,9 @@
|
|
|
8547
8394
|
"allowNo": false,
|
|
8548
8395
|
"type": "boolean"
|
|
8549
8396
|
},
|
|
8550
|
-
"
|
|
8551
|
-
"description": "
|
|
8552
|
-
"name": "
|
|
8553
|
-
"hasDynamicHelp": false,
|
|
8554
|
-
"multiple": false,
|
|
8555
|
-
"type": "option"
|
|
8556
|
-
},
|
|
8557
|
-
"no-notify": {
|
|
8558
|
-
"description": "do not show OS notification",
|
|
8559
|
-
"name": "no-notify",
|
|
8397
|
+
"json": {
|
|
8398
|
+
"description": "format output as JSON",
|
|
8399
|
+
"name": "json",
|
|
8560
8400
|
"allowNo": false,
|
|
8561
8401
|
"type": "boolean"
|
|
8562
8402
|
},
|
|
@@ -8580,7 +8420,7 @@
|
|
|
8580
8420
|
},
|
|
8581
8421
|
"hasDynamicHelp": true,
|
|
8582
8422
|
"hiddenAliases": [],
|
|
8583
|
-
"id": "pg:
|
|
8423
|
+
"id": "pg:diagnose",
|
|
8584
8424
|
"pluginAlias": "heroku",
|
|
8585
8425
|
"pluginName": "heroku",
|
|
8586
8426
|
"pluginType": "core",
|
|
@@ -8593,22 +8433,20 @@
|
|
|
8593
8433
|
"dist",
|
|
8594
8434
|
"commands",
|
|
8595
8435
|
"pg",
|
|
8596
|
-
"
|
|
8436
|
+
"diagnose.js"
|
|
8597
8437
|
]
|
|
8598
8438
|
},
|
|
8599
|
-
"
|
|
8600
|
-
"aliases": [
|
|
8439
|
+
"pg:info": {
|
|
8440
|
+
"aliases": [
|
|
8441
|
+
"pg"
|
|
8442
|
+
],
|
|
8601
8443
|
"args": {
|
|
8602
|
-
"
|
|
8603
|
-
"description": "name of
|
|
8604
|
-
"name": "
|
|
8605
|
-
"required": true
|
|
8444
|
+
"database": {
|
|
8445
|
+
"description": "config var containing the connection string, unique name, ID, or alias of the database. To access another app's database, prepend the app name to the config var or alias with `APP_NAME::` . If omitted, we use all databases.",
|
|
8446
|
+
"name": "database"
|
|
8606
8447
|
}
|
|
8607
8448
|
},
|
|
8608
|
-
"description": "
|
|
8609
|
-
"examples": [
|
|
8610
|
-
"\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku pipelines:add my-pipeline -a my-app -s production \u001b[22m\u001b[39m\u001b[49m"
|
|
8611
|
-
],
|
|
8449
|
+
"description": "show database information",
|
|
8612
8450
|
"flags": {
|
|
8613
8451
|
"prompt": {
|
|
8614
8452
|
"description": "interactively prompt for command arguments and flags",
|
|
@@ -8633,46 +8471,40 @@
|
|
|
8633
8471
|
"hasDynamicHelp": false,
|
|
8634
8472
|
"multiple": false,
|
|
8635
8473
|
"type": "option"
|
|
8636
|
-
},
|
|
8637
|
-
"stage": {
|
|
8638
|
-
"char": "s",
|
|
8639
|
-
"description": "stage of first app in pipeline",
|
|
8640
|
-
"name": "stage",
|
|
8641
|
-
"hasDynamicHelp": false,
|
|
8642
|
-
"multiple": false,
|
|
8643
|
-
"type": "option"
|
|
8644
8474
|
}
|
|
8645
8475
|
},
|
|
8646
8476
|
"hasDynamicHelp": true,
|
|
8647
8477
|
"hiddenAliases": [],
|
|
8648
|
-
"id": "
|
|
8478
|
+
"id": "pg:info",
|
|
8649
8479
|
"pluginAlias": "heroku",
|
|
8650
8480
|
"pluginName": "heroku",
|
|
8651
8481
|
"pluginType": "core",
|
|
8652
8482
|
"strict": true,
|
|
8653
8483
|
"enableJsonFlag": false,
|
|
8654
8484
|
"promptFlagActive": true,
|
|
8485
|
+
"topic": "pg",
|
|
8655
8486
|
"isESM": true,
|
|
8656
8487
|
"relativePath": [
|
|
8657
8488
|
"dist",
|
|
8658
8489
|
"commands",
|
|
8659
|
-
"
|
|
8660
|
-
"
|
|
8661
|
-
]
|
|
8490
|
+
"pg",
|
|
8491
|
+
"info.js"
|
|
8492
|
+
]
|
|
8662
8493
|
},
|
|
8663
|
-
"
|
|
8494
|
+
"pg:kill": {
|
|
8664
8495
|
"aliases": [],
|
|
8665
8496
|
"args": {
|
|
8666
|
-
"
|
|
8667
|
-
"description": "
|
|
8668
|
-
"name": "
|
|
8497
|
+
"pid": {
|
|
8498
|
+
"description": "ID of the process",
|
|
8499
|
+
"name": "pid",
|
|
8669
8500
|
"required": true
|
|
8501
|
+
},
|
|
8502
|
+
"database": {
|
|
8503
|
+
"description": "config var containing the connection string, unique name, ID, or alias of the database. To access another app's database, prepend the app name to the config var or alias with `APP_NAME::` . If omitted, we use DATABASE_URL.",
|
|
8504
|
+
"name": "database"
|
|
8670
8505
|
}
|
|
8671
8506
|
},
|
|
8672
|
-
"description": "
|
|
8673
|
-
"examples": [
|
|
8674
|
-
"\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku pipelines:connect my-pipeline -r githuborg/reponame \u001b[22m\u001b[39m\u001b[49m"
|
|
8675
|
-
],
|
|
8507
|
+
"description": "kill a query",
|
|
8676
8508
|
"flags": {
|
|
8677
8509
|
"prompt": {
|
|
8678
8510
|
"description": "interactively prompt for command arguments and flags",
|
|
@@ -8681,47 +8513,57 @@
|
|
|
8681
8513
|
"allowNo": false,
|
|
8682
8514
|
"type": "boolean"
|
|
8683
8515
|
},
|
|
8684
|
-
"
|
|
8685
|
-
"char": "
|
|
8686
|
-
"
|
|
8687
|
-
"
|
|
8516
|
+
"force": {
|
|
8517
|
+
"char": "f",
|
|
8518
|
+
"name": "force",
|
|
8519
|
+
"allowNo": false,
|
|
8520
|
+
"type": "boolean"
|
|
8521
|
+
},
|
|
8522
|
+
"app": {
|
|
8523
|
+
"char": "a",
|
|
8524
|
+
"description": "app to run command against",
|
|
8525
|
+
"name": "app",
|
|
8688
8526
|
"required": true,
|
|
8527
|
+
"hasDynamicHelp": true,
|
|
8528
|
+
"multiple": false,
|
|
8529
|
+
"type": "option"
|
|
8530
|
+
},
|
|
8531
|
+
"remote": {
|
|
8532
|
+
"char": "r",
|
|
8533
|
+
"description": "git remote of app to use",
|
|
8534
|
+
"name": "remote",
|
|
8689
8535
|
"hasDynamicHelp": false,
|
|
8690
8536
|
"multiple": false,
|
|
8691
8537
|
"type": "option"
|
|
8692
8538
|
}
|
|
8693
8539
|
},
|
|
8694
|
-
"hasDynamicHelp":
|
|
8540
|
+
"hasDynamicHelp": true,
|
|
8695
8541
|
"hiddenAliases": [],
|
|
8696
|
-
"id": "
|
|
8542
|
+
"id": "pg:kill",
|
|
8697
8543
|
"pluginAlias": "heroku",
|
|
8698
8544
|
"pluginName": "heroku",
|
|
8699
8545
|
"pluginType": "core",
|
|
8700
8546
|
"strict": true,
|
|
8701
8547
|
"enableJsonFlag": false,
|
|
8702
8548
|
"promptFlagActive": true,
|
|
8549
|
+
"topic": "pg",
|
|
8703
8550
|
"isESM": true,
|
|
8704
8551
|
"relativePath": [
|
|
8705
8552
|
"dist",
|
|
8706
8553
|
"commands",
|
|
8707
|
-
"
|
|
8708
|
-
"
|
|
8554
|
+
"pg",
|
|
8555
|
+
"kill.js"
|
|
8709
8556
|
]
|
|
8710
8557
|
},
|
|
8711
|
-
"
|
|
8558
|
+
"pg:killall": {
|
|
8712
8559
|
"aliases": [],
|
|
8713
8560
|
"args": {
|
|
8714
|
-
"
|
|
8715
|
-
"description": "name of
|
|
8716
|
-
"name": "
|
|
8717
|
-
"required": false
|
|
8561
|
+
"database": {
|
|
8562
|
+
"description": "config var containing the connection string, unique name, ID, or alias of the database. To access another app's database, prepend the app name to the config var or alias with `APP_NAME::` . If omitted, we use DATABASE_URL.",
|
|
8563
|
+
"name": "database"
|
|
8718
8564
|
}
|
|
8719
8565
|
},
|
|
8720
|
-
"description": "
|
|
8721
|
-
"examples": [
|
|
8722
|
-
"\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku pipelines:create -a my-app-staging \u001b[22m\u001b[39m\u001b[49m",
|
|
8723
|
-
"\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku pipelines:create my-pipeline -a my-app-staging \u001b[22m\u001b[39m\u001b[49m"
|
|
8724
|
-
],
|
|
8566
|
+
"description": "terminates all connections for all credentials",
|
|
8725
8567
|
"flags": {
|
|
8726
8568
|
"prompt": {
|
|
8727
8569
|
"description": "interactively prompt for command arguments and flags",
|
|
@@ -8746,54 +8588,35 @@
|
|
|
8746
8588
|
"hasDynamicHelp": false,
|
|
8747
8589
|
"multiple": false,
|
|
8748
8590
|
"type": "option"
|
|
8749
|
-
},
|
|
8750
|
-
"stage": {
|
|
8751
|
-
"char": "s",
|
|
8752
|
-
"description": "stage of first app in pipeline",
|
|
8753
|
-
"name": "stage",
|
|
8754
|
-
"hasDynamicHelp": false,
|
|
8755
|
-
"multiple": false,
|
|
8756
|
-
"type": "option"
|
|
8757
|
-
},
|
|
8758
|
-
"team": {
|
|
8759
|
-
"char": "t",
|
|
8760
|
-
"description": "the team which will own the apps",
|
|
8761
|
-
"name": "team",
|
|
8762
|
-
"hasDynamicHelp": false,
|
|
8763
|
-
"multiple": false,
|
|
8764
|
-
"type": "option"
|
|
8765
8591
|
}
|
|
8766
8592
|
},
|
|
8767
8593
|
"hasDynamicHelp": true,
|
|
8768
8594
|
"hiddenAliases": [],
|
|
8769
|
-
"id": "
|
|
8595
|
+
"id": "pg:killall",
|
|
8770
8596
|
"pluginAlias": "heroku",
|
|
8771
8597
|
"pluginName": "heroku",
|
|
8772
8598
|
"pluginType": "core",
|
|
8773
8599
|
"strict": true,
|
|
8774
8600
|
"enableJsonFlag": false,
|
|
8775
8601
|
"promptFlagActive": true,
|
|
8602
|
+
"topic": "pg",
|
|
8776
8603
|
"isESM": true,
|
|
8777
8604
|
"relativePath": [
|
|
8778
8605
|
"dist",
|
|
8779
8606
|
"commands",
|
|
8780
|
-
"
|
|
8781
|
-
"
|
|
8607
|
+
"pg",
|
|
8608
|
+
"killall.js"
|
|
8782
8609
|
]
|
|
8783
8610
|
},
|
|
8784
|
-
"
|
|
8611
|
+
"pg:locks": {
|
|
8785
8612
|
"aliases": [],
|
|
8786
8613
|
"args": {
|
|
8787
|
-
"
|
|
8788
|
-
"description": "name of
|
|
8789
|
-
"name": "
|
|
8790
|
-
"required": true
|
|
8614
|
+
"database": {
|
|
8615
|
+
"description": "config var containing the connection string, unique name, ID, or alias of the database. To access another app's database, prepend the app name to the config var or alias with `APP_NAME::` . If omitted, we use DATABASE_URL.",
|
|
8616
|
+
"name": "database"
|
|
8791
8617
|
}
|
|
8792
8618
|
},
|
|
8793
|
-
"description": "
|
|
8794
|
-
"examples": [
|
|
8795
|
-
"\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku pipelines:destroy my-pipeline \u001b[22m\u001b[39m\u001b[49m"
|
|
8796
|
-
],
|
|
8619
|
+
"description": "display queries with active locks",
|
|
8797
8620
|
"flags": {
|
|
8798
8621
|
"prompt": {
|
|
8799
8622
|
"description": "interactively prompt for command arguments and flags",
|
|
@@ -8801,32 +8624,59 @@
|
|
|
8801
8624
|
"name": "prompt",
|
|
8802
8625
|
"allowNo": false,
|
|
8803
8626
|
"type": "boolean"
|
|
8627
|
+
},
|
|
8628
|
+
"truncate": {
|
|
8629
|
+
"char": "t",
|
|
8630
|
+
"description": "truncates queries to 40 characters",
|
|
8631
|
+
"name": "truncate",
|
|
8632
|
+
"allowNo": false,
|
|
8633
|
+
"type": "boolean"
|
|
8634
|
+
},
|
|
8635
|
+
"app": {
|
|
8636
|
+
"char": "a",
|
|
8637
|
+
"description": "app to run command against",
|
|
8638
|
+
"name": "app",
|
|
8639
|
+
"required": true,
|
|
8640
|
+
"hasDynamicHelp": true,
|
|
8641
|
+
"multiple": false,
|
|
8642
|
+
"type": "option"
|
|
8643
|
+
},
|
|
8644
|
+
"remote": {
|
|
8645
|
+
"char": "r",
|
|
8646
|
+
"description": "git remote of app to use",
|
|
8647
|
+
"name": "remote",
|
|
8648
|
+
"hasDynamicHelp": false,
|
|
8649
|
+
"multiple": false,
|
|
8650
|
+
"type": "option"
|
|
8804
8651
|
}
|
|
8805
8652
|
},
|
|
8806
|
-
"hasDynamicHelp":
|
|
8653
|
+
"hasDynamicHelp": true,
|
|
8807
8654
|
"hiddenAliases": [],
|
|
8808
|
-
"id": "
|
|
8655
|
+
"id": "pg:locks",
|
|
8809
8656
|
"pluginAlias": "heroku",
|
|
8810
8657
|
"pluginName": "heroku",
|
|
8811
8658
|
"pluginType": "core",
|
|
8812
8659
|
"strict": true,
|
|
8813
8660
|
"enableJsonFlag": false,
|
|
8814
8661
|
"promptFlagActive": true,
|
|
8662
|
+
"topic": "pg",
|
|
8815
8663
|
"isESM": true,
|
|
8816
8664
|
"relativePath": [
|
|
8817
8665
|
"dist",
|
|
8818
8666
|
"commands",
|
|
8819
|
-
"
|
|
8820
|
-
"
|
|
8667
|
+
"pg",
|
|
8668
|
+
"locks.js"
|
|
8821
8669
|
]
|
|
8822
8670
|
},
|
|
8823
|
-
"
|
|
8671
|
+
"pg:outliers": {
|
|
8824
8672
|
"aliases": [],
|
|
8825
|
-
"args": {
|
|
8826
|
-
|
|
8827
|
-
|
|
8828
|
-
|
|
8829
|
-
|
|
8673
|
+
"args": {
|
|
8674
|
+
"database": {
|
|
8675
|
+
"description": "config var containing the connection string, unique name, ID, or alias of the database. To access another app's database, prepend the app name to the config var or alias with `APP_NAME::` . If omitted, we use DATABASE_URL.",
|
|
8676
|
+
"name": "database"
|
|
8677
|
+
}
|
|
8678
|
+
},
|
|
8679
|
+
"description": "show 10 queries that have longest execution time in aggregate",
|
|
8830
8680
|
"flags": {
|
|
8831
8681
|
"prompt": {
|
|
8832
8682
|
"description": "interactively prompt for command arguments and flags",
|
|
@@ -8835,6 +8685,27 @@
|
|
|
8835
8685
|
"allowNo": false,
|
|
8836
8686
|
"type": "boolean"
|
|
8837
8687
|
},
|
|
8688
|
+
"reset": {
|
|
8689
|
+
"description": "resets statistics gathered by pg_stat_statements",
|
|
8690
|
+
"name": "reset",
|
|
8691
|
+
"allowNo": false,
|
|
8692
|
+
"type": "boolean"
|
|
8693
|
+
},
|
|
8694
|
+
"truncate": {
|
|
8695
|
+
"char": "t",
|
|
8696
|
+
"description": "truncate queries to 40 characters",
|
|
8697
|
+
"name": "truncate",
|
|
8698
|
+
"allowNo": false,
|
|
8699
|
+
"type": "boolean"
|
|
8700
|
+
},
|
|
8701
|
+
"num": {
|
|
8702
|
+
"char": "n",
|
|
8703
|
+
"description": "the number of queries to display (default: 10)",
|
|
8704
|
+
"name": "num",
|
|
8705
|
+
"hasDynamicHelp": false,
|
|
8706
|
+
"multiple": false,
|
|
8707
|
+
"type": "option"
|
|
8708
|
+
},
|
|
8838
8709
|
"app": {
|
|
8839
8710
|
"char": "a",
|
|
8840
8711
|
"description": "app to run command against",
|
|
@@ -8855,28 +8726,32 @@
|
|
|
8855
8726
|
},
|
|
8856
8727
|
"hasDynamicHelp": true,
|
|
8857
8728
|
"hiddenAliases": [],
|
|
8858
|
-
"id": "
|
|
8729
|
+
"id": "pg:outliers",
|
|
8859
8730
|
"pluginAlias": "heroku",
|
|
8860
8731
|
"pluginName": "heroku",
|
|
8861
8732
|
"pluginType": "core",
|
|
8862
8733
|
"strict": true,
|
|
8863
8734
|
"enableJsonFlag": false,
|
|
8864
8735
|
"promptFlagActive": true,
|
|
8736
|
+
"topic": "pg",
|
|
8865
8737
|
"isESM": true,
|
|
8866
8738
|
"relativePath": [
|
|
8867
8739
|
"dist",
|
|
8868
8740
|
"commands",
|
|
8869
|
-
"
|
|
8870
|
-
"
|
|
8741
|
+
"pg",
|
|
8742
|
+
"outliers.js"
|
|
8871
8743
|
]
|
|
8872
8744
|
},
|
|
8873
|
-
"
|
|
8745
|
+
"pg:promote": {
|
|
8874
8746
|
"aliases": [],
|
|
8875
|
-
"args": {
|
|
8876
|
-
|
|
8877
|
-
|
|
8878
|
-
|
|
8879
|
-
|
|
8747
|
+
"args": {
|
|
8748
|
+
"database": {
|
|
8749
|
+
"description": "config var containing the connection string, unique name, ID, or alias of the database. To access another app's database, prepend the app name to the config var or alias with `APP_NAME::`",
|
|
8750
|
+
"name": "database",
|
|
8751
|
+
"required": true
|
|
8752
|
+
}
|
|
8753
|
+
},
|
|
8754
|
+
"description": "sets DATABASE as your DATABASE_URL",
|
|
8880
8755
|
"flags": {
|
|
8881
8756
|
"prompt": {
|
|
8882
8757
|
"description": "interactively prompt for command arguments and flags",
|
|
@@ -8885,43 +8760,57 @@
|
|
|
8885
8760
|
"allowNo": false,
|
|
8886
8761
|
"type": "boolean"
|
|
8887
8762
|
},
|
|
8888
|
-
"
|
|
8889
|
-
"
|
|
8890
|
-
"name": "
|
|
8763
|
+
"force": {
|
|
8764
|
+
"char": "f",
|
|
8765
|
+
"name": "force",
|
|
8891
8766
|
"allowNo": false,
|
|
8892
8767
|
"type": "boolean"
|
|
8768
|
+
},
|
|
8769
|
+
"app": {
|
|
8770
|
+
"char": "a",
|
|
8771
|
+
"description": "app to run command against",
|
|
8772
|
+
"name": "app",
|
|
8773
|
+
"required": true,
|
|
8774
|
+
"hasDynamicHelp": true,
|
|
8775
|
+
"multiple": false,
|
|
8776
|
+
"type": "option"
|
|
8777
|
+
},
|
|
8778
|
+
"remote": {
|
|
8779
|
+
"char": "r",
|
|
8780
|
+
"description": "git remote of app to use",
|
|
8781
|
+
"name": "remote",
|
|
8782
|
+
"hasDynamicHelp": false,
|
|
8783
|
+
"multiple": false,
|
|
8784
|
+
"type": "option"
|
|
8893
8785
|
}
|
|
8894
8786
|
},
|
|
8895
|
-
"hasDynamicHelp":
|
|
8787
|
+
"hasDynamicHelp": true,
|
|
8896
8788
|
"hiddenAliases": [],
|
|
8897
|
-
"id": "
|
|
8789
|
+
"id": "pg:promote",
|
|
8898
8790
|
"pluginAlias": "heroku",
|
|
8899
8791
|
"pluginName": "heroku",
|
|
8900
8792
|
"pluginType": "core",
|
|
8901
8793
|
"strict": true,
|
|
8902
8794
|
"enableJsonFlag": false,
|
|
8903
8795
|
"promptFlagActive": true,
|
|
8796
|
+
"topic": "pg",
|
|
8904
8797
|
"isESM": true,
|
|
8905
8798
|
"relativePath": [
|
|
8906
8799
|
"dist",
|
|
8907
8800
|
"commands",
|
|
8908
|
-
"
|
|
8909
|
-
"
|
|
8801
|
+
"pg",
|
|
8802
|
+
"promote.js"
|
|
8910
8803
|
]
|
|
8911
8804
|
},
|
|
8912
|
-
"
|
|
8805
|
+
"pg:ps": {
|
|
8913
8806
|
"aliases": [],
|
|
8914
8807
|
"args": {
|
|
8915
|
-
"
|
|
8916
|
-
"description": "
|
|
8917
|
-
"name": "
|
|
8918
|
-
"required": true
|
|
8808
|
+
"database": {
|
|
8809
|
+
"description": "config var containing the connection string, unique name, ID, or alias of the database. To access another app's database, prepend the app name to the config var or alias with `APP_NAME::` . If omitted, we use DATABASE_URL.",
|
|
8810
|
+
"name": "database"
|
|
8919
8811
|
}
|
|
8920
8812
|
},
|
|
8921
|
-
"description": "
|
|
8922
|
-
"examples": [
|
|
8923
|
-
"\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku pipelines:info my-pipeline \u001b[22m\u001b[39m\u001b[49m"
|
|
8924
|
-
],
|
|
8813
|
+
"description": "view active queries with execution time",
|
|
8925
8814
|
"flags": {
|
|
8926
8815
|
"prompt": {
|
|
8927
8816
|
"description": "interactively prompt for command arguments and flags",
|
|
@@ -8930,50 +8819,59 @@
|
|
|
8930
8819
|
"allowNo": false,
|
|
8931
8820
|
"type": "boolean"
|
|
8932
8821
|
},
|
|
8933
|
-
"
|
|
8934
|
-
"
|
|
8935
|
-
"name": "
|
|
8822
|
+
"verbose": {
|
|
8823
|
+
"char": "v",
|
|
8824
|
+
"name": "verbose",
|
|
8936
8825
|
"allowNo": false,
|
|
8937
8826
|
"type": "boolean"
|
|
8938
8827
|
},
|
|
8939
|
-
"
|
|
8940
|
-
"
|
|
8941
|
-
"
|
|
8942
|
-
"name": "
|
|
8943
|
-
"
|
|
8944
|
-
"
|
|
8828
|
+
"app": {
|
|
8829
|
+
"char": "a",
|
|
8830
|
+
"description": "app to run command against",
|
|
8831
|
+
"name": "app",
|
|
8832
|
+
"required": true,
|
|
8833
|
+
"hasDynamicHelp": true,
|
|
8834
|
+
"multiple": false,
|
|
8835
|
+
"type": "option"
|
|
8836
|
+
},
|
|
8837
|
+
"remote": {
|
|
8838
|
+
"char": "r",
|
|
8839
|
+
"description": "git remote of app to use",
|
|
8840
|
+
"name": "remote",
|
|
8841
|
+
"hasDynamicHelp": false,
|
|
8842
|
+
"multiple": false,
|
|
8843
|
+
"type": "option"
|
|
8945
8844
|
}
|
|
8946
8845
|
},
|
|
8947
|
-
"hasDynamicHelp":
|
|
8846
|
+
"hasDynamicHelp": true,
|
|
8948
8847
|
"hiddenAliases": [],
|
|
8949
|
-
"id": "
|
|
8848
|
+
"id": "pg:ps",
|
|
8950
8849
|
"pluginAlias": "heroku",
|
|
8951
8850
|
"pluginName": "heroku",
|
|
8952
8851
|
"pluginType": "core",
|
|
8953
8852
|
"strict": true,
|
|
8954
8853
|
"enableJsonFlag": false,
|
|
8955
8854
|
"promptFlagActive": true,
|
|
8855
|
+
"topic": "pg",
|
|
8956
8856
|
"isESM": true,
|
|
8957
8857
|
"relativePath": [
|
|
8958
8858
|
"dist",
|
|
8959
8859
|
"commands",
|
|
8960
|
-
"
|
|
8961
|
-
"
|
|
8860
|
+
"pg",
|
|
8861
|
+
"ps.js"
|
|
8962
8862
|
]
|
|
8963
8863
|
},
|
|
8964
|
-
"
|
|
8965
|
-
"aliases": [
|
|
8864
|
+
"pg:psql": {
|
|
8865
|
+
"aliases": [
|
|
8866
|
+
"psql"
|
|
8867
|
+
],
|
|
8966
8868
|
"args": {
|
|
8967
|
-
"
|
|
8968
|
-
"description": "name of
|
|
8969
|
-
"name": "
|
|
8970
|
-
"required": true
|
|
8869
|
+
"database": {
|
|
8870
|
+
"description": "config var containing the connection string, unique name, ID, or alias of the database. To access another app's database, prepend the app name to the config var or alias with `APP_NAME::` . If omitted, we use DATABASE_URL.",
|
|
8871
|
+
"name": "database"
|
|
8971
8872
|
}
|
|
8972
8873
|
},
|
|
8973
|
-
"description": "open a
|
|
8974
|
-
"examples": [
|
|
8975
|
-
"\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku pipelines:open my-pipeline \u001b[22m\u001b[39m\u001b[49m"
|
|
8976
|
-
],
|
|
8874
|
+
"description": "open a psql shell to the database",
|
|
8977
8875
|
"flags": {
|
|
8978
8876
|
"prompt": {
|
|
8979
8877
|
"description": "interactively prompt for command arguments and flags",
|
|
@@ -8981,11 +8879,51 @@
|
|
|
8981
8879
|
"name": "prompt",
|
|
8982
8880
|
"allowNo": false,
|
|
8983
8881
|
"type": "boolean"
|
|
8882
|
+
},
|
|
8883
|
+
"command": {
|
|
8884
|
+
"char": "c",
|
|
8885
|
+
"description": "SQL command to run",
|
|
8886
|
+
"name": "command",
|
|
8887
|
+
"hasDynamicHelp": false,
|
|
8888
|
+
"multiple": false,
|
|
8889
|
+
"type": "option"
|
|
8890
|
+
},
|
|
8891
|
+
"file": {
|
|
8892
|
+
"char": "f",
|
|
8893
|
+
"description": "SQL file to run",
|
|
8894
|
+
"name": "file",
|
|
8895
|
+
"hasDynamicHelp": false,
|
|
8896
|
+
"multiple": false,
|
|
8897
|
+
"type": "option"
|
|
8898
|
+
},
|
|
8899
|
+
"credential": {
|
|
8900
|
+
"description": "credential to use",
|
|
8901
|
+
"name": "credential",
|
|
8902
|
+
"hasDynamicHelp": false,
|
|
8903
|
+
"multiple": false,
|
|
8904
|
+
"type": "option"
|
|
8905
|
+
},
|
|
8906
|
+
"app": {
|
|
8907
|
+
"char": "a",
|
|
8908
|
+
"description": "app to run command against",
|
|
8909
|
+
"name": "app",
|
|
8910
|
+
"required": true,
|
|
8911
|
+
"hasDynamicHelp": true,
|
|
8912
|
+
"multiple": false,
|
|
8913
|
+
"type": "option"
|
|
8914
|
+
},
|
|
8915
|
+
"remote": {
|
|
8916
|
+
"char": "r",
|
|
8917
|
+
"description": "git remote of app to use",
|
|
8918
|
+
"name": "remote",
|
|
8919
|
+
"hasDynamicHelp": false,
|
|
8920
|
+
"multiple": false,
|
|
8921
|
+
"type": "option"
|
|
8984
8922
|
}
|
|
8985
8923
|
},
|
|
8986
|
-
"hasDynamicHelp":
|
|
8924
|
+
"hasDynamicHelp": true,
|
|
8987
8925
|
"hiddenAliases": [],
|
|
8988
|
-
"id": "
|
|
8926
|
+
"id": "pg:psql",
|
|
8989
8927
|
"pluginAlias": "heroku",
|
|
8990
8928
|
"pluginName": "heroku",
|
|
8991
8929
|
"pluginType": "core",
|
|
@@ -8996,16 +8934,28 @@
|
|
|
8996
8934
|
"relativePath": [
|
|
8997
8935
|
"dist",
|
|
8998
8936
|
"commands",
|
|
8999
|
-
"
|
|
9000
|
-
"
|
|
8937
|
+
"pg",
|
|
8938
|
+
"psql.js"
|
|
9001
8939
|
]
|
|
9002
8940
|
},
|
|
9003
|
-
"
|
|
8941
|
+
"pg:pull": {
|
|
9004
8942
|
"aliases": [],
|
|
9005
|
-
"args": {
|
|
9006
|
-
|
|
8943
|
+
"args": {
|
|
8944
|
+
"source": {
|
|
8945
|
+
"description": "config var containing the connection string, unique name, ID, or alias of the database. To access another app's database, prepend the app name to the config var or alias with `APP_NAME::` . If omitted, we use DATABASE_URL.",
|
|
8946
|
+
"name": "source",
|
|
8947
|
+
"required": true
|
|
8948
|
+
},
|
|
8949
|
+
"target": {
|
|
8950
|
+
"description": "PostgreSQL connection string for the target database",
|
|
8951
|
+
"name": "target",
|
|
8952
|
+
"required": true
|
|
8953
|
+
}
|
|
8954
|
+
},
|
|
8955
|
+
"description": "pull Heroku database into local or remote database\nPull from SOURCE into TARGET.\n\nTARGET must be one of:\n* a database name (i.e. on a local PostgreSQL server) => TARGET must not exist and will be created\n* a fully qualified URL to a local PostgreSQL server => TARGET must not exist and will be created\n* a fully qualified URL to a remote PostgreSQL server => TARGET must exist and be empty\n\nTo delete a local database run \u001b[48;5;237m\u001b[38;5;255m\u001b[1mdropdb TARGET\u001b[22m\u001b[39m\u001b[49m.\nTo create an empty remote database, run \u001b[48;5;237m\u001b[38;5;255m\u001b[1mcreatedb\u001b[22m\u001b[39m\u001b[49m with connection command-line options (run \u001b[48;5;237m\u001b[38;5;255m\u001b[1mcreatedb --help\u001b[22m\u001b[39m\u001b[49m for details).\n",
|
|
9007
8956
|
"examples": [
|
|
9008
|
-
"\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku
|
|
8957
|
+
"# pull Heroku DB named postgresql-swimmingly-100 into local DB mylocaldb that must not exist\n\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku pg:pull postgresql-swimmingly-100 mylocaldb --app sushi \u001b[22m\u001b[39m\u001b[49m\n",
|
|
8958
|
+
"# pull Heroku DB named postgresql-swimmingly-100 into empty remote DB at postgres://myhost/mydb\n\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku pg:pull postgresql-swimmingly-100 postgres://myhost/mydb --app sushi \u001b[22m\u001b[39m\u001b[49m\n"
|
|
9009
8959
|
],
|
|
9010
8960
|
"flags": {
|
|
9011
8961
|
"prompt": {
|
|
@@ -9024,18 +8974,17 @@
|
|
|
9024
8974
|
"multiple": false,
|
|
9025
8975
|
"type": "option"
|
|
9026
8976
|
},
|
|
9027
|
-
"
|
|
9028
|
-
"
|
|
9029
|
-
"
|
|
9030
|
-
"name": "remote",
|
|
8977
|
+
"exclude-table-data": {
|
|
8978
|
+
"description": "tables for which data should be excluded (use ';' to split multiple names)",
|
|
8979
|
+
"name": "exclude-table-data",
|
|
9031
8980
|
"hasDynamicHelp": false,
|
|
9032
8981
|
"multiple": false,
|
|
9033
8982
|
"type": "option"
|
|
9034
8983
|
},
|
|
9035
|
-
"
|
|
9036
|
-
"char": "
|
|
9037
|
-
"description": "
|
|
9038
|
-
"name": "
|
|
8984
|
+
"remote": {
|
|
8985
|
+
"char": "r",
|
|
8986
|
+
"description": "git remote of app to use",
|
|
8987
|
+
"name": "remote",
|
|
9039
8988
|
"hasDynamicHelp": false,
|
|
9040
8989
|
"multiple": false,
|
|
9041
8990
|
"type": "option"
|
|
@@ -9043,27 +8992,40 @@
|
|
|
9043
8992
|
},
|
|
9044
8993
|
"hasDynamicHelp": true,
|
|
9045
8994
|
"hiddenAliases": [],
|
|
9046
|
-
"id": "
|
|
8995
|
+
"id": "pg:pull",
|
|
9047
8996
|
"pluginAlias": "heroku",
|
|
9048
8997
|
"pluginName": "heroku",
|
|
9049
8998
|
"pluginType": "core",
|
|
9050
8999
|
"strict": true,
|
|
9051
9000
|
"enableJsonFlag": false,
|
|
9052
9001
|
"promptFlagActive": true,
|
|
9002
|
+
"topic": "pg",
|
|
9053
9003
|
"isESM": true,
|
|
9054
9004
|
"relativePath": [
|
|
9055
9005
|
"dist",
|
|
9056
9006
|
"commands",
|
|
9057
|
-
"
|
|
9058
|
-
"
|
|
9007
|
+
"pg",
|
|
9008
|
+
"pull.js"
|
|
9059
9009
|
]
|
|
9060
9010
|
},
|
|
9061
|
-
"
|
|
9011
|
+
"pg:push": {
|
|
9062
9012
|
"aliases": [],
|
|
9063
|
-
"args": {
|
|
9064
|
-
|
|
9013
|
+
"args": {
|
|
9014
|
+
"source": {
|
|
9015
|
+
"description": "PostgreSQL connection string for the source database",
|
|
9016
|
+
"name": "source",
|
|
9017
|
+
"required": true
|
|
9018
|
+
},
|
|
9019
|
+
"target": {
|
|
9020
|
+
"description": "config var containing the connection string, unique name, ID, or alias of the database. To access another app's database, prepend the app name to the config var or alias with `APP_NAME::` . If omitted, we use DATABASE_URL.",
|
|
9021
|
+
"name": "target",
|
|
9022
|
+
"required": true
|
|
9023
|
+
}
|
|
9024
|
+
},
|
|
9025
|
+
"description": "push local or remote into Heroku database\nPush from SOURCE into TARGET. TARGET must be empty.\n\nTo empty a Heroku database for push run \u001b[48;5;237m\u001b[38;5;255m\u001b[1mheroku pg:reset\u001b[22m\u001b[39m\u001b[49m\n\nSOURCE must be either the name of a database existing on your localhost or the\nfully qualified URL of a remote database.\n",
|
|
9065
9026
|
"examples": [
|
|
9066
|
-
"\
|
|
9027
|
+
"# push mylocaldb into a Heroku DB named postgresql-swimmingly-100\n$ heroku pg:push mylocaldb postgresql-swimmingly-100 --app sushi\n",
|
|
9028
|
+
"# push remote DB at postgres://myhost/mydb into a Heroku DB named postgresql-swimmingly-100\n$ heroku pg:push postgres://myhost/mydb postgresql-swimmingly-100 --app sushi\n"
|
|
9067
9029
|
],
|
|
9068
9030
|
"flags": {
|
|
9069
9031
|
"prompt": {
|
|
@@ -9082,6 +9044,13 @@
|
|
|
9082
9044
|
"multiple": false,
|
|
9083
9045
|
"type": "option"
|
|
9084
9046
|
},
|
|
9047
|
+
"exclude-table-data": {
|
|
9048
|
+
"description": "tables for which data should be excluded (use ';' to split multiple names)",
|
|
9049
|
+
"name": "exclude-table-data",
|
|
9050
|
+
"hasDynamicHelp": false,
|
|
9051
|
+
"multiple": false,
|
|
9052
|
+
"type": "option"
|
|
9053
|
+
},
|
|
9085
9054
|
"remote": {
|
|
9086
9055
|
"char": "r",
|
|
9087
9056
|
"description": "git remote of app to use",
|
|
@@ -9093,39 +9062,31 @@
|
|
|
9093
9062
|
},
|
|
9094
9063
|
"hasDynamicHelp": true,
|
|
9095
9064
|
"hiddenAliases": [],
|
|
9096
|
-
"id": "
|
|
9065
|
+
"id": "pg:push",
|
|
9097
9066
|
"pluginAlias": "heroku",
|
|
9098
9067
|
"pluginName": "heroku",
|
|
9099
9068
|
"pluginType": "core",
|
|
9100
9069
|
"strict": true,
|
|
9101
9070
|
"enableJsonFlag": false,
|
|
9102
9071
|
"promptFlagActive": true,
|
|
9072
|
+
"topic": "pg",
|
|
9103
9073
|
"isESM": true,
|
|
9104
9074
|
"relativePath": [
|
|
9105
9075
|
"dist",
|
|
9106
9076
|
"commands",
|
|
9107
|
-
"
|
|
9108
|
-
"
|
|
9077
|
+
"pg",
|
|
9078
|
+
"push.js"
|
|
9109
9079
|
]
|
|
9110
9080
|
},
|
|
9111
|
-
"
|
|
9081
|
+
"pg:reset": {
|
|
9112
9082
|
"aliases": [],
|
|
9113
9083
|
"args": {
|
|
9114
|
-
"
|
|
9115
|
-
"description": "name of
|
|
9116
|
-
"name": "
|
|
9117
|
-
"required": true
|
|
9118
|
-
},
|
|
9119
|
-
"name": {
|
|
9120
|
-
"description": "new name of pipeline",
|
|
9121
|
-
"name": "name",
|
|
9122
|
-
"required": true
|
|
9084
|
+
"database": {
|
|
9085
|
+
"description": "config var containing the connection string, unique name, ID, or alias of the database. To access another app's database, prepend the app name to the config var or alias with `APP_NAME::` . If omitted, we use DATABASE_URL.",
|
|
9086
|
+
"name": "database"
|
|
9123
9087
|
}
|
|
9124
9088
|
},
|
|
9125
|
-
"description": "
|
|
9126
|
-
"examples": [
|
|
9127
|
-
"\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku pipelines:rename my-pipeline new-pipeline-name \u001b[22m\u001b[39m\u001b[49m"
|
|
9128
|
-
],
|
|
9089
|
+
"description": "delete all data in DATABASE",
|
|
9129
9090
|
"flags": {
|
|
9130
9091
|
"prompt": {
|
|
9131
9092
|
"description": "interactively prompt for command arguments and flags",
|
|
@@ -9133,43 +9094,68 @@
|
|
|
9133
9094
|
"name": "prompt",
|
|
9134
9095
|
"allowNo": false,
|
|
9135
9096
|
"type": "boolean"
|
|
9097
|
+
},
|
|
9098
|
+
"app": {
|
|
9099
|
+
"char": "a",
|
|
9100
|
+
"description": "app to run command against",
|
|
9101
|
+
"name": "app",
|
|
9102
|
+
"required": true,
|
|
9103
|
+
"hasDynamicHelp": true,
|
|
9104
|
+
"multiple": false,
|
|
9105
|
+
"type": "option"
|
|
9106
|
+
},
|
|
9107
|
+
"confirm": {
|
|
9108
|
+
"char": "c",
|
|
9109
|
+
"name": "confirm",
|
|
9110
|
+
"hasDynamicHelp": false,
|
|
9111
|
+
"multiple": false,
|
|
9112
|
+
"type": "option"
|
|
9113
|
+
},
|
|
9114
|
+
"extensions": {
|
|
9115
|
+
"char": "e",
|
|
9116
|
+
"description": "comma-separated list of extensions to pre-install in the public schema",
|
|
9117
|
+
"name": "extensions",
|
|
9118
|
+
"hasDynamicHelp": false,
|
|
9119
|
+
"multiple": false,
|
|
9120
|
+
"type": "option"
|
|
9121
|
+
},
|
|
9122
|
+
"remote": {
|
|
9123
|
+
"char": "r",
|
|
9124
|
+
"description": "git remote of app to use",
|
|
9125
|
+
"name": "remote",
|
|
9126
|
+
"hasDynamicHelp": false,
|
|
9127
|
+
"multiple": false,
|
|
9128
|
+
"type": "option"
|
|
9136
9129
|
}
|
|
9137
9130
|
},
|
|
9138
|
-
"hasDynamicHelp":
|
|
9131
|
+
"hasDynamicHelp": true,
|
|
9139
9132
|
"hiddenAliases": [],
|
|
9140
|
-
"id": "
|
|
9133
|
+
"id": "pg:reset",
|
|
9141
9134
|
"pluginAlias": "heroku",
|
|
9142
9135
|
"pluginName": "heroku",
|
|
9143
9136
|
"pluginType": "core",
|
|
9144
9137
|
"strict": true,
|
|
9145
9138
|
"enableJsonFlag": false,
|
|
9146
9139
|
"promptFlagActive": true,
|
|
9140
|
+
"topic": "pg",
|
|
9147
9141
|
"isESM": true,
|
|
9148
9142
|
"relativePath": [
|
|
9149
9143
|
"dist",
|
|
9150
9144
|
"commands",
|
|
9151
|
-
"
|
|
9152
|
-
"
|
|
9145
|
+
"pg",
|
|
9146
|
+
"reset.js"
|
|
9153
9147
|
]
|
|
9154
9148
|
},
|
|
9155
|
-
"
|
|
9149
|
+
"pg:unfollow": {
|
|
9156
9150
|
"aliases": [],
|
|
9157
9151
|
"args": {
|
|
9158
|
-
"
|
|
9159
|
-
"description": "name of
|
|
9160
|
-
"name": "
|
|
9161
|
-
"required":
|
|
9162
|
-
}
|
|
9163
|
-
|
|
9164
|
-
|
|
9165
|
-
"name": "repo",
|
|
9166
|
-
"required": false
|
|
9167
|
-
}
|
|
9168
|
-
},
|
|
9169
|
-
"description": "bootstrap a new pipeline with common settings and create a production and staging app (requires a fully formed app.json in the repo)",
|
|
9170
|
-
"examples": [
|
|
9171
|
-
"\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku pipelines:setup my-pipeline githuborg/reponame -t my-team \u001b[22m\u001b[39m\u001b[49m"
|
|
9172
|
-
],
|
|
9152
|
+
"database": {
|
|
9153
|
+
"description": "config var containing the connection string, unique name, ID, or alias of the database. To access another app's database, prepend the app name to the config var or alias with `APP_NAME::`",
|
|
9154
|
+
"name": "database",
|
|
9155
|
+
"required": true
|
|
9156
|
+
}
|
|
9157
|
+
},
|
|
9158
|
+
"description": "stop a replica from following and make it a writeable database",
|
|
9173
9159
|
"flags": {
|
|
9174
9160
|
"prompt": {
|
|
9175
9161
|
"description": "interactively prompt for command arguments and flags",
|
|
@@ -9178,53 +9164,58 @@
|
|
|
9178
9164
|
"allowNo": false,
|
|
9179
9165
|
"type": "boolean"
|
|
9180
9166
|
},
|
|
9181
|
-
"
|
|
9182
|
-
"char": "
|
|
9183
|
-
"
|
|
9184
|
-
"name": "team",
|
|
9167
|
+
"confirm": {
|
|
9168
|
+
"char": "c",
|
|
9169
|
+
"name": "confirm",
|
|
9185
9170
|
"hasDynamicHelp": false,
|
|
9186
9171
|
"multiple": false,
|
|
9187
9172
|
"type": "option"
|
|
9188
9173
|
},
|
|
9189
|
-
"
|
|
9190
|
-
"char": "
|
|
9191
|
-
"description": "
|
|
9192
|
-
"name": "
|
|
9193
|
-
"
|
|
9194
|
-
"
|
|
9174
|
+
"app": {
|
|
9175
|
+
"char": "a",
|
|
9176
|
+
"description": "app to run command against",
|
|
9177
|
+
"name": "app",
|
|
9178
|
+
"required": true,
|
|
9179
|
+
"hasDynamicHelp": true,
|
|
9180
|
+
"multiple": false,
|
|
9181
|
+
"type": "option"
|
|
9182
|
+
},
|
|
9183
|
+
"remote": {
|
|
9184
|
+
"char": "r",
|
|
9185
|
+
"description": "git remote of app to use",
|
|
9186
|
+
"name": "remote",
|
|
9187
|
+
"hasDynamicHelp": false,
|
|
9188
|
+
"multiple": false,
|
|
9189
|
+
"type": "option"
|
|
9195
9190
|
}
|
|
9196
9191
|
},
|
|
9197
|
-
"hasDynamicHelp":
|
|
9192
|
+
"hasDynamicHelp": true,
|
|
9198
9193
|
"hiddenAliases": [],
|
|
9199
|
-
"id": "
|
|
9194
|
+
"id": "pg:unfollow",
|
|
9200
9195
|
"pluginAlias": "heroku",
|
|
9201
9196
|
"pluginName": "heroku",
|
|
9202
9197
|
"pluginType": "core",
|
|
9203
9198
|
"strict": true,
|
|
9204
9199
|
"enableJsonFlag": false,
|
|
9205
9200
|
"promptFlagActive": true,
|
|
9201
|
+
"topic": "pg",
|
|
9206
9202
|
"isESM": true,
|
|
9207
9203
|
"relativePath": [
|
|
9208
9204
|
"dist",
|
|
9209
9205
|
"commands",
|
|
9210
|
-
"
|
|
9211
|
-
"
|
|
9206
|
+
"pg",
|
|
9207
|
+
"unfollow.js"
|
|
9212
9208
|
]
|
|
9213
9209
|
},
|
|
9214
|
-
"
|
|
9210
|
+
"pg:vacuum-stats": {
|
|
9215
9211
|
"aliases": [],
|
|
9216
9212
|
"args": {
|
|
9217
|
-
"
|
|
9218
|
-
"description": "the
|
|
9219
|
-
"name": "
|
|
9220
|
-
"required": true
|
|
9213
|
+
"database": {
|
|
9214
|
+
"description": "config var containing the connection string, unique name, ID, or alias of the database. To access another app's database, prepend the app name to the config var or alias with `APP_NAME::` . If omitted, we use DATABASE_URL.",
|
|
9215
|
+
"name": "database"
|
|
9221
9216
|
}
|
|
9222
9217
|
},
|
|
9223
|
-
"description": "
|
|
9224
|
-
"examples": [
|
|
9225
|
-
"\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku pipelines:transfer admin@example.com -p my-pipeline \u001b[22m\u001b[39m\u001b[49m",
|
|
9226
|
-
"\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku pipelines:transfer admin-team -p my-pipeline \u001b[22m\u001b[39m\u001b[49m"
|
|
9227
|
-
],
|
|
9218
|
+
"description": "show dead rows and whether an automatic vacuum is expected to be triggered",
|
|
9228
9219
|
"flags": {
|
|
9229
9220
|
"prompt": {
|
|
9230
9221
|
"description": "interactively prompt for command arguments and flags",
|
|
@@ -9233,47 +9224,51 @@
|
|
|
9233
9224
|
"allowNo": false,
|
|
9234
9225
|
"type": "boolean"
|
|
9235
9226
|
},
|
|
9236
|
-
"
|
|
9237
|
-
"char": "
|
|
9238
|
-
"
|
|
9239
|
-
"
|
|
9227
|
+
"app": {
|
|
9228
|
+
"char": "a",
|
|
9229
|
+
"description": "app to run command against",
|
|
9230
|
+
"name": "app",
|
|
9231
|
+
"required": true,
|
|
9232
|
+
"hasDynamicHelp": true,
|
|
9240
9233
|
"multiple": false,
|
|
9241
9234
|
"type": "option"
|
|
9242
9235
|
},
|
|
9243
|
-
"
|
|
9244
|
-
"char": "
|
|
9245
|
-
"description": "
|
|
9246
|
-
"name": "
|
|
9247
|
-
"required": true,
|
|
9236
|
+
"remote": {
|
|
9237
|
+
"char": "r",
|
|
9238
|
+
"description": "git remote of app to use",
|
|
9239
|
+
"name": "remote",
|
|
9248
9240
|
"hasDynamicHelp": false,
|
|
9249
9241
|
"multiple": false,
|
|
9250
9242
|
"type": "option"
|
|
9251
9243
|
}
|
|
9252
9244
|
},
|
|
9253
|
-
"hasDynamicHelp":
|
|
9245
|
+
"hasDynamicHelp": true,
|
|
9254
9246
|
"hiddenAliases": [],
|
|
9255
|
-
"id": "
|
|
9247
|
+
"id": "pg:vacuum-stats",
|
|
9256
9248
|
"pluginAlias": "heroku",
|
|
9257
9249
|
"pluginName": "heroku",
|
|
9258
9250
|
"pluginType": "core",
|
|
9259
9251
|
"strict": true,
|
|
9260
9252
|
"enableJsonFlag": false,
|
|
9261
9253
|
"promptFlagActive": true,
|
|
9254
|
+
"topic": "pg",
|
|
9262
9255
|
"isESM": true,
|
|
9263
9256
|
"relativePath": [
|
|
9264
9257
|
"dist",
|
|
9265
9258
|
"commands",
|
|
9266
|
-
"
|
|
9267
|
-
"
|
|
9259
|
+
"pg",
|
|
9260
|
+
"vacuum-stats.js"
|
|
9268
9261
|
]
|
|
9269
9262
|
},
|
|
9270
|
-
"
|
|
9263
|
+
"pg:wait": {
|
|
9271
9264
|
"aliases": [],
|
|
9272
|
-
"args": {
|
|
9273
|
-
|
|
9274
|
-
|
|
9275
|
-
|
|
9276
|
-
|
|
9265
|
+
"args": {
|
|
9266
|
+
"database": {
|
|
9267
|
+
"description": "config var containing the connection string, unique name, ID, or alias of the database. To access another app's database, prepend the app name to the config var or alias with `APP_NAME::` . If omitted, we use all databases.",
|
|
9268
|
+
"name": "database"
|
|
9269
|
+
}
|
|
9270
|
+
},
|
|
9271
|
+
"description": "blocks until database is available",
|
|
9277
9272
|
"flags": {
|
|
9278
9273
|
"prompt": {
|
|
9279
9274
|
"description": "interactively prompt for command arguments and flags",
|
|
@@ -9282,6 +9277,19 @@
|
|
|
9282
9277
|
"allowNo": false,
|
|
9283
9278
|
"type": "boolean"
|
|
9284
9279
|
},
|
|
9280
|
+
"wait-interval": {
|
|
9281
|
+
"description": "how frequently to poll in seconds (to avoid rate limiting)",
|
|
9282
|
+
"name": "wait-interval",
|
|
9283
|
+
"hasDynamicHelp": false,
|
|
9284
|
+
"multiple": false,
|
|
9285
|
+
"type": "option"
|
|
9286
|
+
},
|
|
9287
|
+
"no-notify": {
|
|
9288
|
+
"description": "do not show OS notification",
|
|
9289
|
+
"name": "no-notify",
|
|
9290
|
+
"allowNo": false,
|
|
9291
|
+
"type": "boolean"
|
|
9292
|
+
},
|
|
9285
9293
|
"app": {
|
|
9286
9294
|
"char": "a",
|
|
9287
9295
|
"description": "app to run command against",
|
|
@@ -9298,32 +9306,24 @@
|
|
|
9298
9306
|
"hasDynamicHelp": false,
|
|
9299
9307
|
"multiple": false,
|
|
9300
9308
|
"type": "option"
|
|
9301
|
-
},
|
|
9302
|
-
"stage": {
|
|
9303
|
-
"char": "s",
|
|
9304
|
-
"description": "new stage of app",
|
|
9305
|
-
"name": "stage",
|
|
9306
|
-
"required": true,
|
|
9307
|
-
"hasDynamicHelp": false,
|
|
9308
|
-
"multiple": false,
|
|
9309
|
-
"type": "option"
|
|
9310
9309
|
}
|
|
9311
9310
|
},
|
|
9312
9311
|
"hasDynamicHelp": true,
|
|
9313
9312
|
"hiddenAliases": [],
|
|
9314
|
-
"id": "
|
|
9313
|
+
"id": "pg:wait",
|
|
9315
9314
|
"pluginAlias": "heroku",
|
|
9316
9315
|
"pluginName": "heroku",
|
|
9317
9316
|
"pluginType": "core",
|
|
9318
9317
|
"strict": true,
|
|
9319
9318
|
"enableJsonFlag": false,
|
|
9320
9319
|
"promptFlagActive": true,
|
|
9320
|
+
"topic": "pg",
|
|
9321
9321
|
"isESM": true,
|
|
9322
9322
|
"relativePath": [
|
|
9323
9323
|
"dist",
|
|
9324
9324
|
"commands",
|
|
9325
|
-
"
|
|
9326
|
-
"
|
|
9325
|
+
"pg",
|
|
9326
|
+
"wait.js"
|
|
9327
9327
|
]
|
|
9328
9328
|
},
|
|
9329
9329
|
"ps:copy": {
|
|
@@ -14790,70 +14790,6 @@
|
|
|
14790
14790
|
"wait.js"
|
|
14791
14791
|
]
|
|
14792
14792
|
},
|
|
14793
|
-
"pg:connection-pooling:attach": {
|
|
14794
|
-
"aliases": [],
|
|
14795
|
-
"args": {
|
|
14796
|
-
"database": {
|
|
14797
|
-
"description": "config var containing the connection string, unique name, ID, or alias of the database. To access another app's database, prepend the app name to the config var or alias with `APP_NAME::` . If omitted, we use DATABASE_URL.",
|
|
14798
|
-
"name": "database"
|
|
14799
|
-
}
|
|
14800
|
-
},
|
|
14801
|
-
"description": "add an attachment to a database using connection pooling",
|
|
14802
|
-
"examples": [
|
|
14803
|
-
"\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku pg:connection-pooling:attach postgresql-something-12345 \u001b[22m\u001b[39m\u001b[49m\n"
|
|
14804
|
-
],
|
|
14805
|
-
"flags": {
|
|
14806
|
-
"prompt": {
|
|
14807
|
-
"description": "interactively prompt for command arguments and flags",
|
|
14808
|
-
"helpGroup": "GLOBAL",
|
|
14809
|
-
"name": "prompt",
|
|
14810
|
-
"allowNo": false,
|
|
14811
|
-
"type": "boolean"
|
|
14812
|
-
},
|
|
14813
|
-
"app": {
|
|
14814
|
-
"char": "a",
|
|
14815
|
-
"description": "app to run command against",
|
|
14816
|
-
"name": "app",
|
|
14817
|
-
"required": true,
|
|
14818
|
-
"hasDynamicHelp": true,
|
|
14819
|
-
"multiple": false,
|
|
14820
|
-
"type": "option"
|
|
14821
|
-
},
|
|
14822
|
-
"as": {
|
|
14823
|
-
"description": "name for add-on attachment",
|
|
14824
|
-
"name": "as",
|
|
14825
|
-
"hasDynamicHelp": false,
|
|
14826
|
-
"multiple": false,
|
|
14827
|
-
"type": "option"
|
|
14828
|
-
},
|
|
14829
|
-
"remote": {
|
|
14830
|
-
"char": "r",
|
|
14831
|
-
"description": "git remote of app to use",
|
|
14832
|
-
"name": "remote",
|
|
14833
|
-
"hasDynamicHelp": false,
|
|
14834
|
-
"multiple": false,
|
|
14835
|
-
"type": "option"
|
|
14836
|
-
}
|
|
14837
|
-
},
|
|
14838
|
-
"hasDynamicHelp": true,
|
|
14839
|
-
"hiddenAliases": [],
|
|
14840
|
-
"id": "pg:connection-pooling:attach",
|
|
14841
|
-
"pluginAlias": "heroku",
|
|
14842
|
-
"pluginName": "heroku",
|
|
14843
|
-
"pluginType": "core",
|
|
14844
|
-
"strict": true,
|
|
14845
|
-
"enableJsonFlag": false,
|
|
14846
|
-
"promptFlagActive": true,
|
|
14847
|
-
"topic": "pg",
|
|
14848
|
-
"isESM": true,
|
|
14849
|
-
"relativePath": [
|
|
14850
|
-
"dist",
|
|
14851
|
-
"commands",
|
|
14852
|
-
"pg",
|
|
14853
|
-
"connection-pooling",
|
|
14854
|
-
"attach.js"
|
|
14855
|
-
]
|
|
14856
|
-
},
|
|
14857
14793
|
"pg:backups:cancel": {
|
|
14858
14794
|
"aliases": [],
|
|
14859
14795
|
"args": {
|
|
@@ -15562,6 +15498,70 @@
|
|
|
15562
15498
|
"url.js"
|
|
15563
15499
|
]
|
|
15564
15500
|
},
|
|
15501
|
+
"pg:connection-pooling:attach": {
|
|
15502
|
+
"aliases": [],
|
|
15503
|
+
"args": {
|
|
15504
|
+
"database": {
|
|
15505
|
+
"description": "config var containing the connection string, unique name, ID, or alias of the database. To access another app's database, prepend the app name to the config var or alias with `APP_NAME::` . If omitted, we use DATABASE_URL.",
|
|
15506
|
+
"name": "database"
|
|
15507
|
+
}
|
|
15508
|
+
},
|
|
15509
|
+
"description": "add an attachment to a database using connection pooling",
|
|
15510
|
+
"examples": [
|
|
15511
|
+
"\u001b[48;5;237m\u001b[38;5;255m\u001b[1m $ heroku pg:connection-pooling:attach postgresql-something-12345 \u001b[22m\u001b[39m\u001b[49m\n"
|
|
15512
|
+
],
|
|
15513
|
+
"flags": {
|
|
15514
|
+
"prompt": {
|
|
15515
|
+
"description": "interactively prompt for command arguments and flags",
|
|
15516
|
+
"helpGroup": "GLOBAL",
|
|
15517
|
+
"name": "prompt",
|
|
15518
|
+
"allowNo": false,
|
|
15519
|
+
"type": "boolean"
|
|
15520
|
+
},
|
|
15521
|
+
"app": {
|
|
15522
|
+
"char": "a",
|
|
15523
|
+
"description": "app to run command against",
|
|
15524
|
+
"name": "app",
|
|
15525
|
+
"required": true,
|
|
15526
|
+
"hasDynamicHelp": true,
|
|
15527
|
+
"multiple": false,
|
|
15528
|
+
"type": "option"
|
|
15529
|
+
},
|
|
15530
|
+
"as": {
|
|
15531
|
+
"description": "name for add-on attachment",
|
|
15532
|
+
"name": "as",
|
|
15533
|
+
"hasDynamicHelp": false,
|
|
15534
|
+
"multiple": false,
|
|
15535
|
+
"type": "option"
|
|
15536
|
+
},
|
|
15537
|
+
"remote": {
|
|
15538
|
+
"char": "r",
|
|
15539
|
+
"description": "git remote of app to use",
|
|
15540
|
+
"name": "remote",
|
|
15541
|
+
"hasDynamicHelp": false,
|
|
15542
|
+
"multiple": false,
|
|
15543
|
+
"type": "option"
|
|
15544
|
+
}
|
|
15545
|
+
},
|
|
15546
|
+
"hasDynamicHelp": true,
|
|
15547
|
+
"hiddenAliases": [],
|
|
15548
|
+
"id": "pg:connection-pooling:attach",
|
|
15549
|
+
"pluginAlias": "heroku",
|
|
15550
|
+
"pluginName": "heroku",
|
|
15551
|
+
"pluginType": "core",
|
|
15552
|
+
"strict": true,
|
|
15553
|
+
"enableJsonFlag": false,
|
|
15554
|
+
"promptFlagActive": true,
|
|
15555
|
+
"topic": "pg",
|
|
15556
|
+
"isESM": true,
|
|
15557
|
+
"relativePath": [
|
|
15558
|
+
"dist",
|
|
15559
|
+
"commands",
|
|
15560
|
+
"pg",
|
|
15561
|
+
"connection-pooling",
|
|
15562
|
+
"attach.js"
|
|
15563
|
+
]
|
|
15564
|
+
},
|
|
15565
15565
|
"pg:credentials:create": {
|
|
15566
15566
|
"aliases": [],
|
|
15567
15567
|
"args": {
|
|
@@ -19510,5 +19510,5 @@
|
|
|
19510
19510
|
]
|
|
19511
19511
|
}
|
|
19512
19512
|
},
|
|
19513
|
-
"version": "11.0
|
|
19513
|
+
"version": "11.1.0"
|
|
19514
19514
|
}
|