heroku 10.3.0-beta.0 → 10.3.1-alpha.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/bin/heroku-prompts.js +235 -0
- package/bin/heroku-repl.js +581 -0
- package/bin/run +36 -7
- package/lib/commands/addons/plans.d.ts +1 -0
- package/lib/commands/addons/plans.js +11 -2
- package/lib/commands/releases/retry.d.ts +11 -0
- package/lib/commands/releases/retry.js +51 -0
- package/lib/lib/addons/util.js +2 -0
- package/oclif.manifest.json +348 -313
- package/package.json +4 -3
package/oclif.manifest.json
CHANGED
|
@@ -337,6 +337,202 @@
|
|
|
337
337
|
"status.js"
|
|
338
338
|
]
|
|
339
339
|
},
|
|
340
|
+
"access:add": {
|
|
341
|
+
"aliases": [],
|
|
342
|
+
"args": {
|
|
343
|
+
"email": {
|
|
344
|
+
"description": "email address of the team member",
|
|
345
|
+
"name": "email",
|
|
346
|
+
"required": true
|
|
347
|
+
}
|
|
348
|
+
},
|
|
349
|
+
"description": "add new users to your app",
|
|
350
|
+
"examples": [
|
|
351
|
+
"$ heroku access:add user@email.com --app APP # add a collaborator to your app",
|
|
352
|
+
"$ heroku access:add user@email.com --app APP --permissions deploy,manage,operate # permissions must be comma separated"
|
|
353
|
+
],
|
|
354
|
+
"flags": {
|
|
355
|
+
"app": {
|
|
356
|
+
"char": "a",
|
|
357
|
+
"description": "app to run command against",
|
|
358
|
+
"name": "app",
|
|
359
|
+
"required": true,
|
|
360
|
+
"hasDynamicHelp": false,
|
|
361
|
+
"multiple": false,
|
|
362
|
+
"type": "option"
|
|
363
|
+
},
|
|
364
|
+
"remote": {
|
|
365
|
+
"char": "r",
|
|
366
|
+
"description": "git remote of app to use",
|
|
367
|
+
"name": "remote",
|
|
368
|
+
"hasDynamicHelp": false,
|
|
369
|
+
"multiple": false,
|
|
370
|
+
"type": "option"
|
|
371
|
+
},
|
|
372
|
+
"permissions": {
|
|
373
|
+
"char": "p",
|
|
374
|
+
"description": "list of permissions comma separated",
|
|
375
|
+
"name": "permissions",
|
|
376
|
+
"hasDynamicHelp": false,
|
|
377
|
+
"multiple": false,
|
|
378
|
+
"type": "option"
|
|
379
|
+
}
|
|
380
|
+
},
|
|
381
|
+
"hasDynamicHelp": false,
|
|
382
|
+
"hiddenAliases": [],
|
|
383
|
+
"id": "access:add",
|
|
384
|
+
"pluginAlias": "heroku",
|
|
385
|
+
"pluginName": "heroku",
|
|
386
|
+
"pluginType": "core",
|
|
387
|
+
"strict": true,
|
|
388
|
+
"isESM": false,
|
|
389
|
+
"relativePath": [
|
|
390
|
+
"lib",
|
|
391
|
+
"commands",
|
|
392
|
+
"access",
|
|
393
|
+
"add.js"
|
|
394
|
+
]
|
|
395
|
+
},
|
|
396
|
+
"access": {
|
|
397
|
+
"aliases": [],
|
|
398
|
+
"args": {},
|
|
399
|
+
"description": "list who has access to an app",
|
|
400
|
+
"flags": {
|
|
401
|
+
"app": {
|
|
402
|
+
"char": "a",
|
|
403
|
+
"description": "app to run command against",
|
|
404
|
+
"name": "app",
|
|
405
|
+
"required": true,
|
|
406
|
+
"hasDynamicHelp": false,
|
|
407
|
+
"multiple": false,
|
|
408
|
+
"type": "option"
|
|
409
|
+
},
|
|
410
|
+
"remote": {
|
|
411
|
+
"char": "r",
|
|
412
|
+
"description": "git remote of app to use",
|
|
413
|
+
"name": "remote",
|
|
414
|
+
"hasDynamicHelp": false,
|
|
415
|
+
"multiple": false,
|
|
416
|
+
"type": "option"
|
|
417
|
+
},
|
|
418
|
+
"json": {
|
|
419
|
+
"description": "output in json format",
|
|
420
|
+
"name": "json",
|
|
421
|
+
"allowNo": false,
|
|
422
|
+
"type": "boolean"
|
|
423
|
+
}
|
|
424
|
+
},
|
|
425
|
+
"hasDynamicHelp": false,
|
|
426
|
+
"hiddenAliases": [],
|
|
427
|
+
"id": "access",
|
|
428
|
+
"pluginAlias": "heroku",
|
|
429
|
+
"pluginName": "heroku",
|
|
430
|
+
"pluginType": "core",
|
|
431
|
+
"strict": true,
|
|
432
|
+
"topic": "access",
|
|
433
|
+
"isESM": false,
|
|
434
|
+
"relativePath": [
|
|
435
|
+
"lib",
|
|
436
|
+
"commands",
|
|
437
|
+
"access",
|
|
438
|
+
"index.js"
|
|
439
|
+
]
|
|
440
|
+
},
|
|
441
|
+
"access:remove": {
|
|
442
|
+
"aliases": [],
|
|
443
|
+
"args": {},
|
|
444
|
+
"description": "remove users from a team app",
|
|
445
|
+
"examples": "$ heroku access:remove user@email.com --app APP",
|
|
446
|
+
"flags": {
|
|
447
|
+
"app": {
|
|
448
|
+
"char": "a",
|
|
449
|
+
"description": "app to run command against",
|
|
450
|
+
"name": "app",
|
|
451
|
+
"required": true,
|
|
452
|
+
"hasDynamicHelp": false,
|
|
453
|
+
"multiple": false,
|
|
454
|
+
"type": "option"
|
|
455
|
+
},
|
|
456
|
+
"remote": {
|
|
457
|
+
"char": "r",
|
|
458
|
+
"description": "git remote of app to use",
|
|
459
|
+
"name": "remote",
|
|
460
|
+
"hasDynamicHelp": false,
|
|
461
|
+
"multiple": false,
|
|
462
|
+
"type": "option"
|
|
463
|
+
}
|
|
464
|
+
},
|
|
465
|
+
"hasDynamicHelp": false,
|
|
466
|
+
"hiddenAliases": [],
|
|
467
|
+
"id": "access:remove",
|
|
468
|
+
"pluginAlias": "heroku",
|
|
469
|
+
"pluginName": "heroku",
|
|
470
|
+
"pluginType": "core",
|
|
471
|
+
"strict": false,
|
|
472
|
+
"example": "$ heroku access:remove user@email.com --app APP",
|
|
473
|
+
"topic": "access",
|
|
474
|
+
"isESM": false,
|
|
475
|
+
"relativePath": [
|
|
476
|
+
"lib",
|
|
477
|
+
"commands",
|
|
478
|
+
"access",
|
|
479
|
+
"remove.js"
|
|
480
|
+
]
|
|
481
|
+
},
|
|
482
|
+
"access:update": {
|
|
483
|
+
"aliases": [],
|
|
484
|
+
"args": {
|
|
485
|
+
"email": {
|
|
486
|
+
"description": "email address of the team member",
|
|
487
|
+
"name": "email",
|
|
488
|
+
"required": true
|
|
489
|
+
}
|
|
490
|
+
},
|
|
491
|
+
"description": "update existing collaborators on an team app",
|
|
492
|
+
"flags": {
|
|
493
|
+
"permissions": {
|
|
494
|
+
"char": "p",
|
|
495
|
+
"description": "comma-delimited list of permissions to update (deploy,manage,operate)",
|
|
496
|
+
"name": "permissions",
|
|
497
|
+
"required": true,
|
|
498
|
+
"hasDynamicHelp": false,
|
|
499
|
+
"multiple": false,
|
|
500
|
+
"type": "option"
|
|
501
|
+
},
|
|
502
|
+
"app": {
|
|
503
|
+
"char": "a",
|
|
504
|
+
"description": "app to run command against",
|
|
505
|
+
"name": "app",
|
|
506
|
+
"required": true,
|
|
507
|
+
"hasDynamicHelp": false,
|
|
508
|
+
"multiple": false,
|
|
509
|
+
"type": "option"
|
|
510
|
+
},
|
|
511
|
+
"remote": {
|
|
512
|
+
"char": "r",
|
|
513
|
+
"description": "git remote of app to use",
|
|
514
|
+
"name": "remote",
|
|
515
|
+
"hasDynamicHelp": false,
|
|
516
|
+
"multiple": false,
|
|
517
|
+
"type": "option"
|
|
518
|
+
}
|
|
519
|
+
},
|
|
520
|
+
"hasDynamicHelp": false,
|
|
521
|
+
"hiddenAliases": [],
|
|
522
|
+
"id": "access:update",
|
|
523
|
+
"pluginAlias": "heroku",
|
|
524
|
+
"pluginName": "heroku",
|
|
525
|
+
"pluginType": "core",
|
|
526
|
+
"strict": true,
|
|
527
|
+
"topic": "access",
|
|
528
|
+
"isESM": false,
|
|
529
|
+
"relativePath": [
|
|
530
|
+
"lib",
|
|
531
|
+
"commands",
|
|
532
|
+
"access",
|
|
533
|
+
"update.js"
|
|
534
|
+
]
|
|
535
|
+
},
|
|
340
536
|
"addons:attach": {
|
|
341
537
|
"aliases": [],
|
|
342
538
|
"args": {
|
|
@@ -1692,207 +1888,11 @@
|
|
|
1692
1888
|
},
|
|
1693
1889
|
"apps:unlock": {
|
|
1694
1890
|
"aliases": [
|
|
1695
|
-
"unlock"
|
|
1696
|
-
],
|
|
1697
|
-
"args": {},
|
|
1698
|
-
"description": "unlock an app so any team member can join",
|
|
1699
|
-
"flags": {
|
|
1700
|
-
"app": {
|
|
1701
|
-
"char": "a",
|
|
1702
|
-
"description": "app to run command against",
|
|
1703
|
-
"name": "app",
|
|
1704
|
-
"required": true,
|
|
1705
|
-
"hasDynamicHelp": false,
|
|
1706
|
-
"multiple": false,
|
|
1707
|
-
"type": "option"
|
|
1708
|
-
},
|
|
1709
|
-
"remote": {
|
|
1710
|
-
"char": "r",
|
|
1711
|
-
"description": "git remote of app to use",
|
|
1712
|
-
"name": "remote",
|
|
1713
|
-
"hasDynamicHelp": false,
|
|
1714
|
-
"multiple": false,
|
|
1715
|
-
"type": "option"
|
|
1716
|
-
}
|
|
1717
|
-
},
|
|
1718
|
-
"hasDynamicHelp": false,
|
|
1719
|
-
"hiddenAliases": [],
|
|
1720
|
-
"id": "apps:unlock",
|
|
1721
|
-
"pluginAlias": "heroku",
|
|
1722
|
-
"pluginName": "heroku",
|
|
1723
|
-
"pluginType": "core",
|
|
1724
|
-
"strict": true,
|
|
1725
|
-
"topic": "apps",
|
|
1726
|
-
"isESM": false,
|
|
1727
|
-
"relativePath": [
|
|
1728
|
-
"lib",
|
|
1729
|
-
"commands",
|
|
1730
|
-
"apps",
|
|
1731
|
-
"unlock.js"
|
|
1732
|
-
]
|
|
1733
|
-
},
|
|
1734
|
-
"access:add": {
|
|
1735
|
-
"aliases": [],
|
|
1736
|
-
"args": {
|
|
1737
|
-
"email": {
|
|
1738
|
-
"description": "email address of the team member",
|
|
1739
|
-
"name": "email",
|
|
1740
|
-
"required": true
|
|
1741
|
-
}
|
|
1742
|
-
},
|
|
1743
|
-
"description": "add new users to your app",
|
|
1744
|
-
"examples": [
|
|
1745
|
-
"$ heroku access:add user@email.com --app APP # add a collaborator to your app",
|
|
1746
|
-
"$ heroku access:add user@email.com --app APP --permissions deploy,manage,operate # permissions must be comma separated"
|
|
1747
|
-
],
|
|
1748
|
-
"flags": {
|
|
1749
|
-
"app": {
|
|
1750
|
-
"char": "a",
|
|
1751
|
-
"description": "app to run command against",
|
|
1752
|
-
"name": "app",
|
|
1753
|
-
"required": true,
|
|
1754
|
-
"hasDynamicHelp": false,
|
|
1755
|
-
"multiple": false,
|
|
1756
|
-
"type": "option"
|
|
1757
|
-
},
|
|
1758
|
-
"remote": {
|
|
1759
|
-
"char": "r",
|
|
1760
|
-
"description": "git remote of app to use",
|
|
1761
|
-
"name": "remote",
|
|
1762
|
-
"hasDynamicHelp": false,
|
|
1763
|
-
"multiple": false,
|
|
1764
|
-
"type": "option"
|
|
1765
|
-
},
|
|
1766
|
-
"permissions": {
|
|
1767
|
-
"char": "p",
|
|
1768
|
-
"description": "list of permissions comma separated",
|
|
1769
|
-
"name": "permissions",
|
|
1770
|
-
"hasDynamicHelp": false,
|
|
1771
|
-
"multiple": false,
|
|
1772
|
-
"type": "option"
|
|
1773
|
-
}
|
|
1774
|
-
},
|
|
1775
|
-
"hasDynamicHelp": false,
|
|
1776
|
-
"hiddenAliases": [],
|
|
1777
|
-
"id": "access:add",
|
|
1778
|
-
"pluginAlias": "heroku",
|
|
1779
|
-
"pluginName": "heroku",
|
|
1780
|
-
"pluginType": "core",
|
|
1781
|
-
"strict": true,
|
|
1782
|
-
"isESM": false,
|
|
1783
|
-
"relativePath": [
|
|
1784
|
-
"lib",
|
|
1785
|
-
"commands",
|
|
1786
|
-
"access",
|
|
1787
|
-
"add.js"
|
|
1788
|
-
]
|
|
1789
|
-
},
|
|
1790
|
-
"access": {
|
|
1791
|
-
"aliases": [],
|
|
1792
|
-
"args": {},
|
|
1793
|
-
"description": "list who has access to an app",
|
|
1794
|
-
"flags": {
|
|
1795
|
-
"app": {
|
|
1796
|
-
"char": "a",
|
|
1797
|
-
"description": "app to run command against",
|
|
1798
|
-
"name": "app",
|
|
1799
|
-
"required": true,
|
|
1800
|
-
"hasDynamicHelp": false,
|
|
1801
|
-
"multiple": false,
|
|
1802
|
-
"type": "option"
|
|
1803
|
-
},
|
|
1804
|
-
"remote": {
|
|
1805
|
-
"char": "r",
|
|
1806
|
-
"description": "git remote of app to use",
|
|
1807
|
-
"name": "remote",
|
|
1808
|
-
"hasDynamicHelp": false,
|
|
1809
|
-
"multiple": false,
|
|
1810
|
-
"type": "option"
|
|
1811
|
-
},
|
|
1812
|
-
"json": {
|
|
1813
|
-
"description": "output in json format",
|
|
1814
|
-
"name": "json",
|
|
1815
|
-
"allowNo": false,
|
|
1816
|
-
"type": "boolean"
|
|
1817
|
-
}
|
|
1818
|
-
},
|
|
1819
|
-
"hasDynamicHelp": false,
|
|
1820
|
-
"hiddenAliases": [],
|
|
1821
|
-
"id": "access",
|
|
1822
|
-
"pluginAlias": "heroku",
|
|
1823
|
-
"pluginName": "heroku",
|
|
1824
|
-
"pluginType": "core",
|
|
1825
|
-
"strict": true,
|
|
1826
|
-
"topic": "access",
|
|
1827
|
-
"isESM": false,
|
|
1828
|
-
"relativePath": [
|
|
1829
|
-
"lib",
|
|
1830
|
-
"commands",
|
|
1831
|
-
"access",
|
|
1832
|
-
"index.js"
|
|
1833
|
-
]
|
|
1834
|
-
},
|
|
1835
|
-
"access:remove": {
|
|
1836
|
-
"aliases": [],
|
|
1837
|
-
"args": {},
|
|
1838
|
-
"description": "remove users from a team app",
|
|
1839
|
-
"examples": "$ heroku access:remove user@email.com --app APP",
|
|
1840
|
-
"flags": {
|
|
1841
|
-
"app": {
|
|
1842
|
-
"char": "a",
|
|
1843
|
-
"description": "app to run command against",
|
|
1844
|
-
"name": "app",
|
|
1845
|
-
"required": true,
|
|
1846
|
-
"hasDynamicHelp": false,
|
|
1847
|
-
"multiple": false,
|
|
1848
|
-
"type": "option"
|
|
1849
|
-
},
|
|
1850
|
-
"remote": {
|
|
1851
|
-
"char": "r",
|
|
1852
|
-
"description": "git remote of app to use",
|
|
1853
|
-
"name": "remote",
|
|
1854
|
-
"hasDynamicHelp": false,
|
|
1855
|
-
"multiple": false,
|
|
1856
|
-
"type": "option"
|
|
1857
|
-
}
|
|
1858
|
-
},
|
|
1859
|
-
"hasDynamicHelp": false,
|
|
1860
|
-
"hiddenAliases": [],
|
|
1861
|
-
"id": "access:remove",
|
|
1862
|
-
"pluginAlias": "heroku",
|
|
1863
|
-
"pluginName": "heroku",
|
|
1864
|
-
"pluginType": "core",
|
|
1865
|
-
"strict": false,
|
|
1866
|
-
"example": "$ heroku access:remove user@email.com --app APP",
|
|
1867
|
-
"topic": "access",
|
|
1868
|
-
"isESM": false,
|
|
1869
|
-
"relativePath": [
|
|
1870
|
-
"lib",
|
|
1871
|
-
"commands",
|
|
1872
|
-
"access",
|
|
1873
|
-
"remove.js"
|
|
1874
|
-
]
|
|
1875
|
-
},
|
|
1876
|
-
"access:update": {
|
|
1877
|
-
"aliases": [],
|
|
1878
|
-
"args": {
|
|
1879
|
-
"email": {
|
|
1880
|
-
"description": "email address of the team member",
|
|
1881
|
-
"name": "email",
|
|
1882
|
-
"required": true
|
|
1883
|
-
}
|
|
1884
|
-
},
|
|
1885
|
-
"description": "update existing collaborators on an team app",
|
|
1886
|
-
"flags": {
|
|
1887
|
-
"permissions": {
|
|
1888
|
-
"char": "p",
|
|
1889
|
-
"description": "comma-delimited list of permissions to update (deploy,manage,operate)",
|
|
1890
|
-
"name": "permissions",
|
|
1891
|
-
"required": true,
|
|
1892
|
-
"hasDynamicHelp": false,
|
|
1893
|
-
"multiple": false,
|
|
1894
|
-
"type": "option"
|
|
1895
|
-
},
|
|
1891
|
+
"unlock"
|
|
1892
|
+
],
|
|
1893
|
+
"args": {},
|
|
1894
|
+
"description": "unlock an app so any team member can join",
|
|
1895
|
+
"flags": {
|
|
1896
1896
|
"app": {
|
|
1897
1897
|
"char": "a",
|
|
1898
1898
|
"description": "app to run command against",
|
|
@@ -1913,18 +1913,18 @@
|
|
|
1913
1913
|
},
|
|
1914
1914
|
"hasDynamicHelp": false,
|
|
1915
1915
|
"hiddenAliases": [],
|
|
1916
|
-
"id": "
|
|
1916
|
+
"id": "apps:unlock",
|
|
1917
1917
|
"pluginAlias": "heroku",
|
|
1918
1918
|
"pluginName": "heroku",
|
|
1919
1919
|
"pluginType": "core",
|
|
1920
1920
|
"strict": true,
|
|
1921
|
-
"topic": "
|
|
1921
|
+
"topic": "apps",
|
|
1922
1922
|
"isESM": false,
|
|
1923
1923
|
"relativePath": [
|
|
1924
1924
|
"lib",
|
|
1925
1925
|
"commands",
|
|
1926
|
-
"
|
|
1927
|
-
"
|
|
1926
|
+
"apps",
|
|
1927
|
+
"unlock.js"
|
|
1928
1928
|
]
|
|
1929
1929
|
},
|
|
1930
1930
|
"auth:login": {
|
|
@@ -8964,6 +8964,41 @@
|
|
|
8964
8964
|
"output.js"
|
|
8965
8965
|
]
|
|
8966
8966
|
},
|
|
8967
|
+
"releases:retry": {
|
|
8968
|
+
"aliases": [],
|
|
8969
|
+
"args": {},
|
|
8970
|
+
"description": "retry the latest release-phase command",
|
|
8971
|
+
"examples": [
|
|
8972
|
+
"heroku releases:retry --app happy-samurai-42"
|
|
8973
|
+
],
|
|
8974
|
+
"flags": {
|
|
8975
|
+
"app": {
|
|
8976
|
+
"char": "a",
|
|
8977
|
+
"description": "app to run command against",
|
|
8978
|
+
"name": "app",
|
|
8979
|
+
"required": true,
|
|
8980
|
+
"hasDynamicHelp": false,
|
|
8981
|
+
"multiple": false,
|
|
8982
|
+
"type": "option"
|
|
8983
|
+
}
|
|
8984
|
+
},
|
|
8985
|
+
"hasDynamicHelp": false,
|
|
8986
|
+
"hiddenAliases": [],
|
|
8987
|
+
"id": "releases:retry",
|
|
8988
|
+
"pluginAlias": "heroku",
|
|
8989
|
+
"pluginName": "heroku",
|
|
8990
|
+
"pluginType": "core",
|
|
8991
|
+
"strict": true,
|
|
8992
|
+
"topic": "releases",
|
|
8993
|
+
"help": "Copies the latest release into a new release and retries the latest release-phase command. App must have a release-phase command.",
|
|
8994
|
+
"isESM": false,
|
|
8995
|
+
"relativePath": [
|
|
8996
|
+
"lib",
|
|
8997
|
+
"commands",
|
|
8998
|
+
"releases",
|
|
8999
|
+
"retry.js"
|
|
9000
|
+
]
|
|
9001
|
+
},
|
|
8967
9002
|
"releases:rollback": {
|
|
8968
9003
|
"aliases": [],
|
|
8969
9004
|
"args": {
|
|
@@ -12408,19 +12443,15 @@
|
|
|
12408
12443
|
"index.js"
|
|
12409
12444
|
]
|
|
12410
12445
|
},
|
|
12411
|
-
"pg:
|
|
12446
|
+
"pg:maintenance": {
|
|
12412
12447
|
"aliases": [],
|
|
12413
12448
|
"args": {
|
|
12414
12449
|
"database": {
|
|
12415
12450
|
"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.",
|
|
12416
12451
|
"name": "database"
|
|
12417
|
-
},
|
|
12418
|
-
"value": {
|
|
12419
|
-
"description": "boolean indicating if execution plans of queries will be logged for future connections",
|
|
12420
|
-
"name": "value"
|
|
12421
12452
|
}
|
|
12422
12453
|
},
|
|
12423
|
-
"description": "
|
|
12454
|
+
"description": "show current maintenance information",
|
|
12424
12455
|
"flags": {
|
|
12425
12456
|
"app": {
|
|
12426
12457
|
"char": "a",
|
|
@@ -12442,35 +12473,37 @@
|
|
|
12442
12473
|
},
|
|
12443
12474
|
"hasDynamicHelp": false,
|
|
12444
12475
|
"hiddenAliases": [],
|
|
12445
|
-
"id": "pg:
|
|
12476
|
+
"id": "pg:maintenance",
|
|
12446
12477
|
"pluginAlias": "heroku",
|
|
12447
12478
|
"pluginName": "heroku",
|
|
12448
12479
|
"pluginType": "core",
|
|
12449
|
-
"strict":
|
|
12480
|
+
"strict": true,
|
|
12450
12481
|
"topic": "pg",
|
|
12451
12482
|
"isESM": false,
|
|
12452
12483
|
"relativePath": [
|
|
12453
12484
|
"lib",
|
|
12454
12485
|
"commands",
|
|
12455
12486
|
"pg",
|
|
12456
|
-
"
|
|
12457
|
-
"
|
|
12487
|
+
"maintenance",
|
|
12488
|
+
"index.js"
|
|
12458
12489
|
]
|
|
12459
12490
|
},
|
|
12460
|
-
"pg:
|
|
12491
|
+
"pg:maintenance:run": {
|
|
12461
12492
|
"aliases": [],
|
|
12462
12493
|
"args": {
|
|
12463
12494
|
"database": {
|
|
12464
12495
|
"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.",
|
|
12465
12496
|
"name": "database"
|
|
12466
|
-
},
|
|
12467
|
-
"value": {
|
|
12468
|
-
"description": "boolean indicating if data replication slot details get logged",
|
|
12469
|
-
"name": "value"
|
|
12470
12497
|
}
|
|
12471
12498
|
},
|
|
12472
|
-
"description": "
|
|
12499
|
+
"description": "start maintenance",
|
|
12473
12500
|
"flags": {
|
|
12501
|
+
"force": {
|
|
12502
|
+
"char": "f",
|
|
12503
|
+
"name": "force",
|
|
12504
|
+
"allowNo": false,
|
|
12505
|
+
"type": "boolean"
|
|
12506
|
+
},
|
|
12474
12507
|
"app": {
|
|
12475
12508
|
"char": "a",
|
|
12476
12509
|
"description": "app to run command against",
|
|
@@ -12491,29 +12524,36 @@
|
|
|
12491
12524
|
},
|
|
12492
12525
|
"hasDynamicHelp": false,
|
|
12493
12526
|
"hiddenAliases": [],
|
|
12494
|
-
"id": "pg:
|
|
12527
|
+
"id": "pg:maintenance:run",
|
|
12495
12528
|
"pluginAlias": "heroku",
|
|
12496
12529
|
"pluginName": "heroku",
|
|
12497
12530
|
"pluginType": "core",
|
|
12531
|
+
"strict": true,
|
|
12498
12532
|
"topic": "pg",
|
|
12499
12533
|
"isESM": false,
|
|
12500
12534
|
"relativePath": [
|
|
12501
12535
|
"lib",
|
|
12502
12536
|
"commands",
|
|
12503
12537
|
"pg",
|
|
12504
|
-
"
|
|
12505
|
-
"
|
|
12538
|
+
"maintenance",
|
|
12539
|
+
"run.js"
|
|
12506
12540
|
]
|
|
12507
12541
|
},
|
|
12508
|
-
"pg:
|
|
12542
|
+
"pg:maintenance:window": {
|
|
12509
12543
|
"aliases": [],
|
|
12510
12544
|
"args": {
|
|
12545
|
+
"window": {
|
|
12546
|
+
"description": "timestamp of the maintenance window",
|
|
12547
|
+
"name": "window",
|
|
12548
|
+
"required": true
|
|
12549
|
+
},
|
|
12511
12550
|
"database": {
|
|
12512
12551
|
"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.",
|
|
12513
12552
|
"name": "database"
|
|
12514
12553
|
}
|
|
12515
12554
|
},
|
|
12516
|
-
"description": "
|
|
12555
|
+
"description": "Set weekly maintenance window.\nAll times are in UTC.\n",
|
|
12556
|
+
"examples": "$ heroku pg:maintenance:window \"Sunday 06:00\" postgres-slippery-100",
|
|
12517
12557
|
"flags": {
|
|
12518
12558
|
"app": {
|
|
12519
12559
|
"char": "a",
|
|
@@ -12535,22 +12575,23 @@
|
|
|
12535
12575
|
},
|
|
12536
12576
|
"hasDynamicHelp": false,
|
|
12537
12577
|
"hiddenAliases": [],
|
|
12538
|
-
"id": "pg:
|
|
12578
|
+
"id": "pg:maintenance:window",
|
|
12539
12579
|
"pluginAlias": "heroku",
|
|
12540
12580
|
"pluginName": "heroku",
|
|
12541
12581
|
"pluginType": "core",
|
|
12542
12582
|
"strict": true,
|
|
12543
12583
|
"topic": "pg",
|
|
12584
|
+
"example": "$ heroku pg:maintenance:window \"Sunday 06:00\" postgres-slippery-100",
|
|
12544
12585
|
"isESM": false,
|
|
12545
12586
|
"relativePath": [
|
|
12546
12587
|
"lib",
|
|
12547
12588
|
"commands",
|
|
12548
12589
|
"pg",
|
|
12549
|
-
"
|
|
12550
|
-
"
|
|
12590
|
+
"maintenance",
|
|
12591
|
+
"window.js"
|
|
12551
12592
|
]
|
|
12552
12593
|
},
|
|
12553
|
-
"pg:settings:
|
|
12594
|
+
"pg:settings:auto-explain": {
|
|
12554
12595
|
"aliases": [],
|
|
12555
12596
|
"args": {
|
|
12556
12597
|
"database": {
|
|
@@ -12558,11 +12599,11 @@
|
|
|
12558
12599
|
"name": "database"
|
|
12559
12600
|
},
|
|
12560
12601
|
"value": {
|
|
12561
|
-
"description": "boolean indicating if
|
|
12602
|
+
"description": "boolean indicating if execution plans of queries will be logged for future connections",
|
|
12562
12603
|
"name": "value"
|
|
12563
12604
|
}
|
|
12564
12605
|
},
|
|
12565
|
-
"description": "
|
|
12606
|
+
"description": "Automatically log execution plans of queries without running EXPLAIN by hand.\nThe auto_explain module is loaded at session-time so existing connections will not be logged.\nRestart your Heroku app and/or restart existing connections for logging to start taking place.\n",
|
|
12566
12607
|
"flags": {
|
|
12567
12608
|
"app": {
|
|
12568
12609
|
"char": "a",
|
|
@@ -12584,10 +12625,11 @@
|
|
|
12584
12625
|
},
|
|
12585
12626
|
"hasDynamicHelp": false,
|
|
12586
12627
|
"hiddenAliases": [],
|
|
12587
|
-
"id": "pg:settings:
|
|
12628
|
+
"id": "pg:settings:auto-explain",
|
|
12588
12629
|
"pluginAlias": "heroku",
|
|
12589
12630
|
"pluginName": "heroku",
|
|
12590
12631
|
"pluginType": "core",
|
|
12632
|
+
"strict": false,
|
|
12591
12633
|
"topic": "pg",
|
|
12592
12634
|
"isESM": false,
|
|
12593
12635
|
"relativePath": [
|
|
@@ -12595,10 +12637,10 @@
|
|
|
12595
12637
|
"commands",
|
|
12596
12638
|
"pg",
|
|
12597
12639
|
"settings",
|
|
12598
|
-
"
|
|
12640
|
+
"auto-explain.js"
|
|
12599
12641
|
]
|
|
12600
12642
|
},
|
|
12601
|
-
"pg:settings:
|
|
12643
|
+
"pg:settings:explain-data-connector-details": {
|
|
12602
12644
|
"aliases": [],
|
|
12603
12645
|
"args": {
|
|
12604
12646
|
"database": {
|
|
@@ -12606,11 +12648,11 @@
|
|
|
12606
12648
|
"name": "database"
|
|
12607
12649
|
},
|
|
12608
12650
|
"value": {
|
|
12609
|
-
"description": "boolean indicating if
|
|
12651
|
+
"description": "boolean indicating if data replication slot details get logged",
|
|
12610
12652
|
"name": "value"
|
|
12611
12653
|
}
|
|
12612
12654
|
},
|
|
12613
|
-
"description": "
|
|
12655
|
+
"description": "displays stats on replication slots on your database, the default value is \"off\"\n",
|
|
12614
12656
|
"flags": {
|
|
12615
12657
|
"app": {
|
|
12616
12658
|
"char": "a",
|
|
@@ -12632,7 +12674,7 @@
|
|
|
12632
12674
|
},
|
|
12633
12675
|
"hasDynamicHelp": false,
|
|
12634
12676
|
"hiddenAliases": [],
|
|
12635
|
-
"id": "pg:settings:
|
|
12677
|
+
"id": "pg:settings:explain-data-connector-details",
|
|
12636
12678
|
"pluginAlias": "heroku",
|
|
12637
12679
|
"pluginName": "heroku",
|
|
12638
12680
|
"pluginType": "core",
|
|
@@ -12643,22 +12685,18 @@
|
|
|
12643
12685
|
"commands",
|
|
12644
12686
|
"pg",
|
|
12645
12687
|
"settings",
|
|
12646
|
-
"
|
|
12688
|
+
"explain-data-connector-details.js"
|
|
12647
12689
|
]
|
|
12648
12690
|
},
|
|
12649
|
-
"pg:settings
|
|
12691
|
+
"pg:settings": {
|
|
12650
12692
|
"aliases": [],
|
|
12651
12693
|
"args": {
|
|
12652
12694
|
"database": {
|
|
12653
12695
|
"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.",
|
|
12654
12696
|
"name": "database"
|
|
12655
|
-
},
|
|
12656
|
-
"value": {
|
|
12657
|
-
"description": "milliseconds to wait for a statement to complete before logging it",
|
|
12658
|
-
"name": "value"
|
|
12659
12697
|
}
|
|
12660
12698
|
},
|
|
12661
|
-
"description": "
|
|
12699
|
+
"description": "show your current database settings",
|
|
12662
12700
|
"flags": {
|
|
12663
12701
|
"app": {
|
|
12664
12702
|
"char": "a",
|
|
@@ -12680,10 +12718,11 @@
|
|
|
12680
12718
|
},
|
|
12681
12719
|
"hasDynamicHelp": false,
|
|
12682
12720
|
"hiddenAliases": [],
|
|
12683
|
-
"id": "pg:settings
|
|
12721
|
+
"id": "pg:settings",
|
|
12684
12722
|
"pluginAlias": "heroku",
|
|
12685
12723
|
"pluginName": "heroku",
|
|
12686
12724
|
"pluginType": "core",
|
|
12725
|
+
"strict": true,
|
|
12687
12726
|
"topic": "pg",
|
|
12688
12727
|
"isESM": false,
|
|
12689
12728
|
"relativePath": [
|
|
@@ -12691,10 +12730,10 @@
|
|
|
12691
12730
|
"commands",
|
|
12692
12731
|
"pg",
|
|
12693
12732
|
"settings",
|
|
12694
|
-
"
|
|
12733
|
+
"index.js"
|
|
12695
12734
|
]
|
|
12696
12735
|
},
|
|
12697
|
-
"pg:settings:log-
|
|
12736
|
+
"pg:settings:log-connections": {
|
|
12698
12737
|
"aliases": [],
|
|
12699
12738
|
"args": {
|
|
12700
12739
|
"database": {
|
|
@@ -12702,16 +12741,11 @@
|
|
|
12702
12741
|
"name": "database"
|
|
12703
12742
|
},
|
|
12704
12743
|
"value": {
|
|
12705
|
-
"
|
|
12706
|
-
"
|
|
12707
|
-
"error",
|
|
12708
|
-
"log",
|
|
12709
|
-
"fatal",
|
|
12710
|
-
"panic"
|
|
12711
|
-
]
|
|
12744
|
+
"description": "boolean indicating if database login attempts get logged",
|
|
12745
|
+
"name": "value"
|
|
12712
12746
|
}
|
|
12713
12747
|
},
|
|
12714
|
-
"description": "
|
|
12748
|
+
"description": "Controls whether a log message is produced when a login attempt is made. Default is true.\nSetting log_connections to false stops emitting log messages for all attempts to login to the database.",
|
|
12715
12749
|
"flags": {
|
|
12716
12750
|
"app": {
|
|
12717
12751
|
"char": "a",
|
|
@@ -12733,7 +12767,7 @@
|
|
|
12733
12767
|
},
|
|
12734
12768
|
"hasDynamicHelp": false,
|
|
12735
12769
|
"hiddenAliases": [],
|
|
12736
|
-
"id": "pg:settings:log-
|
|
12770
|
+
"id": "pg:settings:log-connections",
|
|
12737
12771
|
"pluginAlias": "heroku",
|
|
12738
12772
|
"pluginName": "heroku",
|
|
12739
12773
|
"pluginType": "core",
|
|
@@ -12744,10 +12778,10 @@
|
|
|
12744
12778
|
"commands",
|
|
12745
12779
|
"pg",
|
|
12746
12780
|
"settings",
|
|
12747
|
-
"log-
|
|
12781
|
+
"log-connections.js"
|
|
12748
12782
|
]
|
|
12749
12783
|
},
|
|
12750
|
-
"pg:settings:log-
|
|
12784
|
+
"pg:settings:log-lock-waits": {
|
|
12751
12785
|
"aliases": [],
|
|
12752
12786
|
"args": {
|
|
12753
12787
|
"database": {
|
|
@@ -12755,17 +12789,11 @@
|
|
|
12755
12789
|
"name": "database"
|
|
12756
12790
|
},
|
|
12757
12791
|
"value": {
|
|
12758
|
-
"description": "
|
|
12759
|
-
"name": "value"
|
|
12760
|
-
"options": [
|
|
12761
|
-
"none",
|
|
12762
|
-
"ddl",
|
|
12763
|
-
"mod",
|
|
12764
|
-
"all"
|
|
12765
|
-
]
|
|
12792
|
+
"description": "boolean indicating if a message gets logged when a session waits longer than the deadlock_timeout to acquire a lock",
|
|
12793
|
+
"name": "value"
|
|
12766
12794
|
}
|
|
12767
12795
|
},
|
|
12768
|
-
"description": "
|
|
12796
|
+
"description": "Controls whether a log message is produced when a session waits longer than the deadlock_timeout to acquire a lock. deadlock_timeout is set to 1 second\nDelays due to lock contention occur when multiple transactions are trying to access the same resource at the same time.\nApplications and their query patterns should try to avoid changes to many different tables within the same transaction.\n",
|
|
12769
12797
|
"flags": {
|
|
12770
12798
|
"app": {
|
|
12771
12799
|
"char": "a",
|
|
@@ -12787,7 +12815,7 @@
|
|
|
12787
12815
|
},
|
|
12788
12816
|
"hasDynamicHelp": false,
|
|
12789
12817
|
"hiddenAliases": [],
|
|
12790
|
-
"id": "pg:settings:log-
|
|
12818
|
+
"id": "pg:settings:log-lock-waits",
|
|
12791
12819
|
"pluginAlias": "heroku",
|
|
12792
12820
|
"pluginName": "heroku",
|
|
12793
12821
|
"pluginType": "core",
|
|
@@ -12798,10 +12826,10 @@
|
|
|
12798
12826
|
"commands",
|
|
12799
12827
|
"pg",
|
|
12800
12828
|
"settings",
|
|
12801
|
-
"log-
|
|
12829
|
+
"log-lock-waits.js"
|
|
12802
12830
|
]
|
|
12803
12831
|
},
|
|
12804
|
-
"pg:settings:
|
|
12832
|
+
"pg:settings:log-min-duration-statement": {
|
|
12805
12833
|
"aliases": [],
|
|
12806
12834
|
"args": {
|
|
12807
12835
|
"database": {
|
|
@@ -12809,16 +12837,11 @@
|
|
|
12809
12837
|
"name": "database"
|
|
12810
12838
|
},
|
|
12811
12839
|
"value": {
|
|
12812
|
-
"description": "
|
|
12813
|
-
"name": "value"
|
|
12814
|
-
"options": [
|
|
12815
|
-
"none",
|
|
12816
|
-
"pl",
|
|
12817
|
-
"all"
|
|
12818
|
-
]
|
|
12840
|
+
"description": "milliseconds to wait for a statement to complete before logging it",
|
|
12841
|
+
"name": "value"
|
|
12819
12842
|
}
|
|
12820
12843
|
},
|
|
12821
|
-
"description": "
|
|
12844
|
+
"description": "The duration of each completed statement will be logged if the statement completes after the time specified by VALUE.\nVALUE needs to specified as a whole number, in milliseconds.\nSetting log_min_duration_statement to zero prints all statement durations and -1 will disable logging statement durations.\n",
|
|
12822
12845
|
"flags": {
|
|
12823
12846
|
"app": {
|
|
12824
12847
|
"char": "a",
|
|
@@ -12840,7 +12863,7 @@
|
|
|
12840
12863
|
},
|
|
12841
12864
|
"hasDynamicHelp": false,
|
|
12842
12865
|
"hiddenAliases": [],
|
|
12843
|
-
"id": "pg:settings:
|
|
12866
|
+
"id": "pg:settings:log-min-duration-statement",
|
|
12844
12867
|
"pluginAlias": "heroku",
|
|
12845
12868
|
"pluginName": "heroku",
|
|
12846
12869
|
"pluginType": "core",
|
|
@@ -12851,18 +12874,27 @@
|
|
|
12851
12874
|
"commands",
|
|
12852
12875
|
"pg",
|
|
12853
12876
|
"settings",
|
|
12854
|
-
"
|
|
12877
|
+
"log-min-duration-statement.js"
|
|
12855
12878
|
]
|
|
12856
12879
|
},
|
|
12857
|
-
"pg:
|
|
12880
|
+
"pg:settings:log-min-error-statement": {
|
|
12858
12881
|
"aliases": [],
|
|
12859
12882
|
"args": {
|
|
12860
12883
|
"database": {
|
|
12861
12884
|
"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.",
|
|
12862
12885
|
"name": "database"
|
|
12886
|
+
},
|
|
12887
|
+
"value": {
|
|
12888
|
+
"name": "value",
|
|
12889
|
+
"options": [
|
|
12890
|
+
"error",
|
|
12891
|
+
"log",
|
|
12892
|
+
"fatal",
|
|
12893
|
+
"panic"
|
|
12894
|
+
]
|
|
12863
12895
|
}
|
|
12864
12896
|
},
|
|
12865
|
-
"description": "
|
|
12897
|
+
"description": "log-min-error-statement controls the logging of SQL statements that cause an error at a specified severity level.\nThis setting is useful to prevent logging SQL queries that might contain sensitive information.\nUse this setting to prevent logging SQL queries that contain sensitive information. Default is \"error\".\n",
|
|
12866
12898
|
"flags": {
|
|
12867
12899
|
"app": {
|
|
12868
12900
|
"char": "a",
|
|
@@ -12884,37 +12916,40 @@
|
|
|
12884
12916
|
},
|
|
12885
12917
|
"hasDynamicHelp": false,
|
|
12886
12918
|
"hiddenAliases": [],
|
|
12887
|
-
"id": "pg:
|
|
12919
|
+
"id": "pg:settings:log-min-error-statement",
|
|
12888
12920
|
"pluginAlias": "heroku",
|
|
12889
12921
|
"pluginName": "heroku",
|
|
12890
12922
|
"pluginType": "core",
|
|
12891
|
-
"strict": true,
|
|
12892
12923
|
"topic": "pg",
|
|
12893
12924
|
"isESM": false,
|
|
12894
12925
|
"relativePath": [
|
|
12895
12926
|
"lib",
|
|
12896
12927
|
"commands",
|
|
12897
12928
|
"pg",
|
|
12898
|
-
"
|
|
12899
|
-
"
|
|
12929
|
+
"settings",
|
|
12930
|
+
"log-min-error-statement.js"
|
|
12900
12931
|
]
|
|
12901
12932
|
},
|
|
12902
|
-
"pg:
|
|
12933
|
+
"pg:settings:log-statement": {
|
|
12903
12934
|
"aliases": [],
|
|
12904
12935
|
"args": {
|
|
12905
12936
|
"database": {
|
|
12906
12937
|
"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.",
|
|
12907
12938
|
"name": "database"
|
|
12939
|
+
},
|
|
12940
|
+
"value": {
|
|
12941
|
+
"description": "type of SQL statements to log\n<options: none|ddl|mod|all>",
|
|
12942
|
+
"name": "value",
|
|
12943
|
+
"options": [
|
|
12944
|
+
"none",
|
|
12945
|
+
"ddl",
|
|
12946
|
+
"mod",
|
|
12947
|
+
"all"
|
|
12948
|
+
]
|
|
12908
12949
|
}
|
|
12909
12950
|
},
|
|
12910
|
-
"description": "
|
|
12951
|
+
"description": "log_statement controls which SQL statements are logged.\nValid values for VALUE:\nnone - No statements are logged\nddl - All data definition statements, such as CREATE, ALTER and DROP will be logged\nmod - Includes all statements from ddl as well as data-modifying statements such as INSERT, UPDATE, DELETE, TRUNCATE, COPY\nall - All statements are logged\n",
|
|
12911
12952
|
"flags": {
|
|
12912
|
-
"force": {
|
|
12913
|
-
"char": "f",
|
|
12914
|
-
"name": "force",
|
|
12915
|
-
"allowNo": false,
|
|
12916
|
-
"type": "boolean"
|
|
12917
|
-
},
|
|
12918
12953
|
"app": {
|
|
12919
12954
|
"char": "a",
|
|
12920
12955
|
"description": "app to run command against",
|
|
@@ -12935,36 +12970,38 @@
|
|
|
12935
12970
|
},
|
|
12936
12971
|
"hasDynamicHelp": false,
|
|
12937
12972
|
"hiddenAliases": [],
|
|
12938
|
-
"id": "pg:
|
|
12973
|
+
"id": "pg:settings:log-statement",
|
|
12939
12974
|
"pluginAlias": "heroku",
|
|
12940
12975
|
"pluginName": "heroku",
|
|
12941
12976
|
"pluginType": "core",
|
|
12942
|
-
"strict": true,
|
|
12943
12977
|
"topic": "pg",
|
|
12944
12978
|
"isESM": false,
|
|
12945
12979
|
"relativePath": [
|
|
12946
12980
|
"lib",
|
|
12947
12981
|
"commands",
|
|
12948
12982
|
"pg",
|
|
12949
|
-
"
|
|
12950
|
-
"
|
|
12983
|
+
"settings",
|
|
12984
|
+
"log-statement.js"
|
|
12951
12985
|
]
|
|
12952
12986
|
},
|
|
12953
|
-
"pg:
|
|
12987
|
+
"pg:settings:track-functions": {
|
|
12954
12988
|
"aliases": [],
|
|
12955
12989
|
"args": {
|
|
12956
|
-
"window": {
|
|
12957
|
-
"description": "timestamp of the maintenance window",
|
|
12958
|
-
"name": "window",
|
|
12959
|
-
"required": true
|
|
12960
|
-
},
|
|
12961
12990
|
"database": {
|
|
12962
12991
|
"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.",
|
|
12963
12992
|
"name": "database"
|
|
12993
|
+
},
|
|
12994
|
+
"value": {
|
|
12995
|
+
"description": "function type to track\n<options: none|pl|all>",
|
|
12996
|
+
"name": "value",
|
|
12997
|
+
"options": [
|
|
12998
|
+
"none",
|
|
12999
|
+
"pl",
|
|
13000
|
+
"all"
|
|
13001
|
+
]
|
|
12964
13002
|
}
|
|
12965
13003
|
},
|
|
12966
|
-
"description": "
|
|
12967
|
-
"examples": "$ heroku pg:maintenance:window \"Sunday 06:00\" postgres-slippery-100",
|
|
13004
|
+
"description": "track_functions controls tracking of function call counts and time used. Default is none.\nValid values for VALUE:\nnone - No functions are tracked (default)\npl - Only procedural language functions are tracked\nall - All functions, including SQL and C language functions, are tracked. Simple SQL-language that are inlined are not tracked",
|
|
12968
13005
|
"flags": {
|
|
12969
13006
|
"app": {
|
|
12970
13007
|
"char": "a",
|
|
@@ -12986,20 +13023,18 @@
|
|
|
12986
13023
|
},
|
|
12987
13024
|
"hasDynamicHelp": false,
|
|
12988
13025
|
"hiddenAliases": [],
|
|
12989
|
-
"id": "pg:
|
|
13026
|
+
"id": "pg:settings:track-functions",
|
|
12990
13027
|
"pluginAlias": "heroku",
|
|
12991
13028
|
"pluginName": "heroku",
|
|
12992
13029
|
"pluginType": "core",
|
|
12993
|
-
"strict": true,
|
|
12994
13030
|
"topic": "pg",
|
|
12995
|
-
"example": "$ heroku pg:maintenance:window \"Sunday 06:00\" postgres-slippery-100",
|
|
12996
13031
|
"isESM": false,
|
|
12997
13032
|
"relativePath": [
|
|
12998
13033
|
"lib",
|
|
12999
13034
|
"commands",
|
|
13000
13035
|
"pg",
|
|
13001
|
-
"
|
|
13002
|
-
"
|
|
13036
|
+
"settings",
|
|
13037
|
+
"track-functions.js"
|
|
13003
13038
|
]
|
|
13004
13039
|
},
|
|
13005
13040
|
"ps:autoscale:disable": {
|
|
@@ -14451,5 +14486,5 @@
|
|
|
14451
14486
|
]
|
|
14452
14487
|
}
|
|
14453
14488
|
},
|
|
14454
|
-
"version": "10.3.
|
|
14489
|
+
"version": "10.3.1-alpha.0"
|
|
14455
14490
|
}
|