checkly 7.13.0-prerelease-acfb34e → 7.13.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.
Files changed (2) hide show
  1. package/oclif.manifest.json +300 -300
  2. package/package.json +1 -1
@@ -1561,24 +1561,44 @@
1561
1561
  "parse-project.js"
1562
1562
  ]
1563
1563
  },
1564
- "import:apply": {
1564
+ "env:add": {
1565
1565
  "aliases": [],
1566
- "args": {},
1567
- "description": "Attach imported resources into your project in a pending state.",
1566
+ "args": {
1567
+ "key": {
1568
+ "description": "Environment variable key.",
1569
+ "name": "key",
1570
+ "required": true
1571
+ },
1572
+ "value": {
1573
+ "description": "Environment variable value.",
1574
+ "name": "value",
1575
+ "required": false
1576
+ }
1577
+ },
1578
+ "description": "Add environment variable via \"checkly env add <key> <value>\".",
1568
1579
  "flags": {
1569
- "config": {
1570
- "char": "c",
1571
- "description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
1572
- "name": "config",
1573
- "hasDynamicHelp": false,
1574
- "multiple": false,
1575
- "type": "option"
1580
+ "locked": {
1581
+ "char": "l",
1582
+ "description": "Indicate that the environment variable will be locked.",
1583
+ "name": "locked",
1584
+ "allowNo": false,
1585
+ "type": "boolean"
1586
+ },
1587
+ "secret": {
1588
+ "char": "s",
1589
+ "description": "Indicate that the environment variable will be secret.",
1590
+ "exclusive": [
1591
+ "locked"
1592
+ ],
1593
+ "name": "secret",
1594
+ "allowNo": false,
1595
+ "type": "boolean"
1576
1596
  }
1577
1597
  },
1578
1598
  "hasDynamicHelp": false,
1579
1599
  "hidden": false,
1580
1600
  "hiddenAliases": [],
1581
- "id": "import:apply",
1601
+ "id": "env:add",
1582
1602
  "pluginAlias": "checkly",
1583
1603
  "pluginName": "checkly",
1584
1604
  "pluginType": "core",
@@ -1592,168 +1612,118 @@
1592
1612
  "relativePath": [
1593
1613
  "dist",
1594
1614
  "commands",
1595
- "import",
1596
- "apply.js"
1615
+ "env",
1616
+ "add.js"
1597
1617
  ]
1598
1618
  },
1599
- "import:cancel": {
1619
+ "env:ls": {
1600
1620
  "aliases": [],
1601
1621
  "args": {},
1602
- "description": "Cancels an ongoing import plan that has not been committed yet.",
1603
- "flags": {
1604
- "config": {
1605
- "char": "c",
1606
- "description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
1607
- "name": "config",
1608
- "hasDynamicHelp": false,
1609
- "multiple": false,
1610
- "type": "option"
1611
- },
1612
- "all": {
1613
- "description": "Cancel all plans.",
1614
- "name": "all",
1615
- "allowNo": false,
1616
- "type": "boolean"
1617
- }
1618
- },
1622
+ "description": "List all Checkly environment variables via \"checkly env ls\".",
1623
+ "flags": {},
1619
1624
  "hasDynamicHelp": false,
1620
1625
  "hidden": false,
1621
1626
  "hiddenAliases": [],
1622
- "id": "import:cancel",
1627
+ "id": "env:ls",
1623
1628
  "pluginAlias": "checkly",
1624
1629
  "pluginName": "checkly",
1625
1630
  "pluginType": "core",
1626
1631
  "strict": true,
1627
1632
  "enableJsonFlag": false,
1628
1633
  "coreCommand": false,
1629
- "readOnly": false,
1634
+ "readOnly": true,
1630
1635
  "destructive": false,
1631
1636
  "idempotent": true,
1632
1637
  "isESM": false,
1633
1638
  "relativePath": [
1634
1639
  "dist",
1635
1640
  "commands",
1636
- "import",
1637
- "cancel.js"
1641
+ "env",
1642
+ "ls.js"
1638
1643
  ]
1639
1644
  },
1640
- "import:commit": {
1645
+ "env:pull": {
1641
1646
  "aliases": [],
1642
- "args": {},
1643
- "description": "Permanently commit imported resources into your project.",
1647
+ "args": {
1648
+ "filename": {
1649
+ "default": ".env",
1650
+ "description": "Filename of the generated file.",
1651
+ "name": "filename",
1652
+ "required": false
1653
+ }
1654
+ },
1655
+ "description": "Pull Checkly environment variables via \"checkly env pull <filename>\".",
1644
1656
  "flags": {
1645
- "config": {
1646
- "char": "c",
1647
- "description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
1648
- "name": "config",
1649
- "hasDynamicHelp": false,
1650
- "multiple": false,
1651
- "type": "option"
1657
+ "force": {
1658
+ "char": "f",
1659
+ "description": "Force to overwrite existing file.",
1660
+ "name": "force",
1661
+ "allowNo": false,
1662
+ "type": "boolean"
1652
1663
  }
1653
1664
  },
1654
1665
  "hasDynamicHelp": false,
1655
1666
  "hidden": false,
1656
1667
  "hiddenAliases": [],
1657
- "id": "import:commit",
1668
+ "id": "env:pull",
1658
1669
  "pluginAlias": "checkly",
1659
1670
  "pluginName": "checkly",
1660
1671
  "pluginType": "core",
1661
1672
  "strict": true,
1662
1673
  "enableJsonFlag": false,
1663
1674
  "coreCommand": false,
1664
- "readOnly": false,
1675
+ "readOnly": true,
1665
1676
  "destructive": false,
1666
- "idempotent": false,
1677
+ "idempotent": true,
1667
1678
  "isESM": false,
1668
1679
  "relativePath": [
1669
1680
  "dist",
1670
1681
  "commands",
1671
- "import",
1672
- "commit.js"
1682
+ "env",
1683
+ "pull.js"
1673
1684
  ]
1674
1685
  },
1675
- "import:plan": {
1686
+ "env:rm": {
1676
1687
  "aliases": [],
1677
1688
  "args": {
1678
- "resource": {
1679
- "description": "A specific resource to import.",
1680
- "name": "resource",
1681
- "required": false
1689
+ "key": {
1690
+ "description": "Environment variable key to remove.",
1691
+ "name": "key",
1692
+ "required": true
1682
1693
  }
1683
1694
  },
1684
- "description": "Import existing resources from your Checkly account to your project.\n\nBy default, all resources that can be imported will be imported. However, you\nmay fine-tune the process by including or excluding any combination of\nresources.\n\nThe import process consists of three steps:\n\n1. Creating a plan, which generates the appropriate code for your resources\n2. Applying the plan, which links your resources to the generated code\n3. Committing the plan, which finalizes the import session\n\nCREATING A PLAN\n\nCreating a plan carries no risk as no concrete links to your Checkly resources\nare made at this point. However, if you accidentally deploy the generated code\nbefore applying the plan, you will end up with duplicate resources and will\nnot be able to complete the import session without first deleting the\nduplicates.\n\nFor the curious, you may also preview the generated code with the '--preview'\noption. No plan will be created, allowing you to leisurely inspect the\ngenerated code. However keep in mind that you will need to create a plan to\nactually import any resources, at which point the code will be generated\nagain.\n\nYou may cancel any plan you've created without affecting any of the\nunderlying resources.\n\nAPPLYING A PLAN\n\nApplying a plan links your existing resources to the generated code. You\nshould carefully review the generated code to make sure that it contains the\nresources you expect before applying a plan. After a plan has been applied,\nany deployments of those resources will irreversibly modify the underlying\nCheckly resources. However, as a fail safe against concurrent use, any\ndeployments not including the imported resources will not delete the\nunderlying resources (or the links to the resources). This means that there\nis no need to block deployments while working on an import session.\n\nEven after you've applied a plan, you may still cancel it, which will unlink\nthe underlying resources from your project once more. However, keep in mind\nthat any changes to the resources that you've already deployed cannot be\nundone.\n\nCOMMITTING A PLAN\n\nFinally, committing a plan removes all fail safes and permanently links the\nimported resources to your project. Any resources you remove from your code\nwill result in the underlying resources also getting irrevocably deleted on\nthe next deploy. You should only commit your plan once you are sure that all\nfuture deployments include the imported resources.",
1695
+ "description": "Remove environment variable via \"checkly env rm <key>\".",
1685
1696
  "flags": {
1686
- "config": {
1687
- "char": "c",
1688
- "description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
1689
- "name": "config",
1690
- "hasDynamicHelp": false,
1691
- "multiple": false,
1692
- "type": "option"
1693
- },
1694
- "root": {
1695
- "description": "The root folder in which to write generated code files.",
1696
- "name": "root",
1697
- "default": "__checks__",
1698
- "hasDynamicHelp": false,
1699
- "multiple": false,
1700
- "type": "option"
1701
- },
1702
- "preview": {
1703
- "description": "Preview generated code without creating an actual import plan.",
1704
- "name": "preview",
1705
- "allowNo": false,
1706
- "type": "boolean"
1707
- },
1708
- "debug-import-plan": {
1709
- "description": "Output the import plan to a file.",
1710
- "hidden": true,
1711
- "name": "debug-import-plan",
1697
+ "force": {
1698
+ "char": "f",
1699
+ "description": "Skip confirmation prompt.",
1700
+ "name": "force",
1712
1701
  "allowNo": false,
1713
1702
  "type": "boolean"
1714
- },
1715
- "debug-import-plan-input-file": {
1716
- "description": "A file to load an import plan from.",
1717
- "hidden": true,
1718
- "name": "debug-import-plan-input-file",
1719
- "hasDynamicHelp": false,
1720
- "multiple": false,
1721
- "type": "option"
1722
- },
1723
- "debug-import-plan-output-file": {
1724
- "description": "The file to output the import plan to.",
1725
- "hidden": true,
1726
- "name": "debug-import-plan-output-file",
1727
- "default": "./debug-import-plan.json",
1728
- "hasDynamicHelp": false,
1729
- "multiple": false,
1730
- "type": "option"
1731
1703
  }
1732
1704
  },
1733
1705
  "hasDynamicHelp": false,
1734
1706
  "hidden": false,
1735
- "hiddenAliases": [
1736
- "import"
1737
- ],
1738
- "id": "import:plan",
1707
+ "hiddenAliases": [],
1708
+ "id": "env:rm",
1739
1709
  "pluginAlias": "checkly",
1740
1710
  "pluginName": "checkly",
1741
1711
  "pluginType": "core",
1742
- "strict": false,
1712
+ "strict": true,
1743
1713
  "enableJsonFlag": false,
1744
1714
  "coreCommand": false,
1745
- "readOnly": true,
1746
- "destructive": false,
1747
- "idempotent": true,
1715
+ "readOnly": false,
1716
+ "destructive": true,
1717
+ "idempotent": false,
1748
1718
  "isESM": false,
1749
1719
  "relativePath": [
1750
1720
  "dist",
1751
1721
  "commands",
1752
- "import",
1753
- "plan.js"
1722
+ "env",
1723
+ "rm.js"
1754
1724
  ]
1755
1725
  },
1756
- "env:add": {
1726
+ "env:update": {
1757
1727
  "aliases": [],
1758
1728
  "args": {
1759
1729
  "key": {
@@ -1767,18 +1737,18 @@
1767
1737
  "required": false
1768
1738
  }
1769
1739
  },
1770
- "description": "Add environment variable via \"checkly env add <key> <value>\".",
1740
+ "description": "Update environment variable via \"checkly env update <key> <value>\".",
1771
1741
  "flags": {
1772
1742
  "locked": {
1773
1743
  "char": "l",
1774
- "description": "Indicate that the environment variable will be locked.",
1744
+ "description": "Indicate if environment variable is locked.",
1775
1745
  "name": "locked",
1776
1746
  "allowNo": false,
1777
1747
  "type": "boolean"
1778
1748
  },
1779
1749
  "secret": {
1780
1750
  "char": "s",
1781
- "description": "Indicate that the environment variable will be secret.",
1751
+ "description": "Indicate if environment variable is secret.",
1782
1752
  "exclusive": [
1783
1753
  "locked"
1784
1754
  ],
@@ -1790,7 +1760,7 @@
1790
1760
  "hasDynamicHelp": false,
1791
1761
  "hidden": false,
1792
1762
  "hiddenAliases": [],
1793
- "id": "env:add",
1763
+ "id": "env:update",
1794
1764
  "pluginAlias": "checkly",
1795
1765
  "pluginName": "checkly",
1796
1766
  "pluginType": "core",
@@ -1799,57 +1769,66 @@
1799
1769
  "coreCommand": false,
1800
1770
  "readOnly": false,
1801
1771
  "destructive": false,
1802
- "idempotent": false,
1772
+ "idempotent": true,
1803
1773
  "isESM": false,
1804
1774
  "relativePath": [
1805
1775
  "dist",
1806
1776
  "commands",
1807
1777
  "env",
1808
- "add.js"
1778
+ "update.js"
1809
1779
  ]
1810
1780
  },
1811
- "env:ls": {
1781
+ "import:apply": {
1812
1782
  "aliases": [],
1813
1783
  "args": {},
1814
- "description": "List all Checkly environment variables via \"checkly env ls\".",
1815
- "flags": {},
1784
+ "description": "Attach imported resources into your project in a pending state.",
1785
+ "flags": {
1786
+ "config": {
1787
+ "char": "c",
1788
+ "description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
1789
+ "name": "config",
1790
+ "hasDynamicHelp": false,
1791
+ "multiple": false,
1792
+ "type": "option"
1793
+ }
1794
+ },
1816
1795
  "hasDynamicHelp": false,
1817
1796
  "hidden": false,
1818
1797
  "hiddenAliases": [],
1819
- "id": "env:ls",
1798
+ "id": "import:apply",
1820
1799
  "pluginAlias": "checkly",
1821
1800
  "pluginName": "checkly",
1822
1801
  "pluginType": "core",
1823
1802
  "strict": true,
1824
1803
  "enableJsonFlag": false,
1825
1804
  "coreCommand": false,
1826
- "readOnly": true,
1805
+ "readOnly": false,
1827
1806
  "destructive": false,
1828
- "idempotent": true,
1807
+ "idempotent": false,
1829
1808
  "isESM": false,
1830
1809
  "relativePath": [
1831
1810
  "dist",
1832
1811
  "commands",
1833
- "env",
1834
- "ls.js"
1812
+ "import",
1813
+ "apply.js"
1835
1814
  ]
1836
1815
  },
1837
- "env:pull": {
1816
+ "import:cancel": {
1838
1817
  "aliases": [],
1839
- "args": {
1840
- "filename": {
1841
- "default": ".env",
1842
- "description": "Filename of the generated file.",
1843
- "name": "filename",
1844
- "required": false
1845
- }
1846
- },
1847
- "description": "Pull Checkly environment variables via \"checkly env pull <filename>\".",
1818
+ "args": {},
1819
+ "description": "Cancels an ongoing import plan that has not been committed yet.",
1848
1820
  "flags": {
1849
- "force": {
1850
- "char": "f",
1851
- "description": "Force to overwrite existing file.",
1852
- "name": "force",
1821
+ "config": {
1822
+ "char": "c",
1823
+ "description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
1824
+ "name": "config",
1825
+ "hasDynamicHelp": false,
1826
+ "multiple": false,
1827
+ "type": "option"
1828
+ },
1829
+ "all": {
1830
+ "description": "Cancel all plans.",
1831
+ "name": "all",
1853
1832
  "allowNo": false,
1854
1833
  "type": "boolean"
1855
1834
  }
@@ -1857,47 +1836,42 @@
1857
1836
  "hasDynamicHelp": false,
1858
1837
  "hidden": false,
1859
1838
  "hiddenAliases": [],
1860
- "id": "env:pull",
1839
+ "id": "import:cancel",
1861
1840
  "pluginAlias": "checkly",
1862
1841
  "pluginName": "checkly",
1863
1842
  "pluginType": "core",
1864
1843
  "strict": true,
1865
1844
  "enableJsonFlag": false,
1866
1845
  "coreCommand": false,
1867
- "readOnly": true,
1846
+ "readOnly": false,
1868
1847
  "destructive": false,
1869
1848
  "idempotent": true,
1870
1849
  "isESM": false,
1871
1850
  "relativePath": [
1872
1851
  "dist",
1873
1852
  "commands",
1874
- "env",
1875
- "pull.js"
1853
+ "import",
1854
+ "cancel.js"
1876
1855
  ]
1877
1856
  },
1878
- "env:rm": {
1857
+ "import:commit": {
1879
1858
  "aliases": [],
1880
- "args": {
1881
- "key": {
1882
- "description": "Environment variable key to remove.",
1883
- "name": "key",
1884
- "required": true
1885
- }
1886
- },
1887
- "description": "Remove environment variable via \"checkly env rm <key>\".",
1859
+ "args": {},
1860
+ "description": "Permanently commit imported resources into your project.",
1888
1861
  "flags": {
1889
- "force": {
1890
- "char": "f",
1891
- "description": "Skip confirmation prompt.",
1892
- "name": "force",
1893
- "allowNo": false,
1894
- "type": "boolean"
1862
+ "config": {
1863
+ "char": "c",
1864
+ "description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
1865
+ "name": "config",
1866
+ "hasDynamicHelp": false,
1867
+ "multiple": false,
1868
+ "type": "option"
1895
1869
  }
1896
1870
  },
1897
1871
  "hasDynamicHelp": false,
1898
1872
  "hidden": false,
1899
1873
  "hiddenAliases": [],
1900
- "id": "env:rm",
1874
+ "id": "import:commit",
1901
1875
  "pluginAlias": "checkly",
1902
1876
  "pluginName": "checkly",
1903
1877
  "pluginType": "core",
@@ -1905,69 +1879,95 @@
1905
1879
  "enableJsonFlag": false,
1906
1880
  "coreCommand": false,
1907
1881
  "readOnly": false,
1908
- "destructive": true,
1882
+ "destructive": false,
1909
1883
  "idempotent": false,
1910
1884
  "isESM": false,
1911
1885
  "relativePath": [
1912
1886
  "dist",
1913
1887
  "commands",
1914
- "env",
1915
- "rm.js"
1888
+ "import",
1889
+ "commit.js"
1916
1890
  ]
1917
1891
  },
1918
- "env:update": {
1892
+ "import:plan": {
1919
1893
  "aliases": [],
1920
1894
  "args": {
1921
- "key": {
1922
- "description": "Environment variable key.",
1923
- "name": "key",
1924
- "required": true
1925
- },
1926
- "value": {
1927
- "description": "Environment variable value.",
1928
- "name": "value",
1895
+ "resource": {
1896
+ "description": "A specific resource to import.",
1897
+ "name": "resource",
1929
1898
  "required": false
1930
1899
  }
1931
1900
  },
1932
- "description": "Update environment variable via \"checkly env update <key> <value>\".",
1901
+ "description": "Import existing resources from your Checkly account to your project.\n\nBy default, all resources that can be imported will be imported. However, you\nmay fine-tune the process by including or excluding any combination of\nresources.\n\nThe import process consists of three steps:\n\n1. Creating a plan, which generates the appropriate code for your resources\n2. Applying the plan, which links your resources to the generated code\n3. Committing the plan, which finalizes the import session\n\nCREATING A PLAN\n\nCreating a plan carries no risk as no concrete links to your Checkly resources\nare made at this point. However, if you accidentally deploy the generated code\nbefore applying the plan, you will end up with duplicate resources and will\nnot be able to complete the import session without first deleting the\nduplicates.\n\nFor the curious, you may also preview the generated code with the '--preview'\noption. No plan will be created, allowing you to leisurely inspect the\ngenerated code. However keep in mind that you will need to create a plan to\nactually import any resources, at which point the code will be generated\nagain.\n\nYou may cancel any plan you've created without affecting any of the\nunderlying resources.\n\nAPPLYING A PLAN\n\nApplying a plan links your existing resources to the generated code. You\nshould carefully review the generated code to make sure that it contains the\nresources you expect before applying a plan. After a plan has been applied,\nany deployments of those resources will irreversibly modify the underlying\nCheckly resources. However, as a fail safe against concurrent use, any\ndeployments not including the imported resources will not delete the\nunderlying resources (or the links to the resources). This means that there\nis no need to block deployments while working on an import session.\n\nEven after you've applied a plan, you may still cancel it, which will unlink\nthe underlying resources from your project once more. However, keep in mind\nthat any changes to the resources that you've already deployed cannot be\nundone.\n\nCOMMITTING A PLAN\n\nFinally, committing a plan removes all fail safes and permanently links the\nimported resources to your project. Any resources you remove from your code\nwill result in the underlying resources also getting irrevocably deleted on\nthe next deploy. You should only commit your plan once you are sure that all\nfuture deployments include the imported resources.",
1933
1902
  "flags": {
1934
- "locked": {
1935
- "char": "l",
1936
- "description": "Indicate if environment variable is locked.",
1937
- "name": "locked",
1903
+ "config": {
1904
+ "char": "c",
1905
+ "description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
1906
+ "name": "config",
1907
+ "hasDynamicHelp": false,
1908
+ "multiple": false,
1909
+ "type": "option"
1910
+ },
1911
+ "root": {
1912
+ "description": "The root folder in which to write generated code files.",
1913
+ "name": "root",
1914
+ "default": "__checks__",
1915
+ "hasDynamicHelp": false,
1916
+ "multiple": false,
1917
+ "type": "option"
1918
+ },
1919
+ "preview": {
1920
+ "description": "Preview generated code without creating an actual import plan.",
1921
+ "name": "preview",
1938
1922
  "allowNo": false,
1939
1923
  "type": "boolean"
1940
1924
  },
1941
- "secret": {
1942
- "char": "s",
1943
- "description": "Indicate if environment variable is secret.",
1944
- "exclusive": [
1945
- "locked"
1946
- ],
1947
- "name": "secret",
1925
+ "debug-import-plan": {
1926
+ "description": "Output the import plan to a file.",
1927
+ "hidden": true,
1928
+ "name": "debug-import-plan",
1948
1929
  "allowNo": false,
1949
1930
  "type": "boolean"
1931
+ },
1932
+ "debug-import-plan-input-file": {
1933
+ "description": "A file to load an import plan from.",
1934
+ "hidden": true,
1935
+ "name": "debug-import-plan-input-file",
1936
+ "hasDynamicHelp": false,
1937
+ "multiple": false,
1938
+ "type": "option"
1939
+ },
1940
+ "debug-import-plan-output-file": {
1941
+ "description": "The file to output the import plan to.",
1942
+ "hidden": true,
1943
+ "name": "debug-import-plan-output-file",
1944
+ "default": "./debug-import-plan.json",
1945
+ "hasDynamicHelp": false,
1946
+ "multiple": false,
1947
+ "type": "option"
1950
1948
  }
1951
1949
  },
1952
1950
  "hasDynamicHelp": false,
1953
1951
  "hidden": false,
1954
- "hiddenAliases": [],
1955
- "id": "env:update",
1952
+ "hiddenAliases": [
1953
+ "import"
1954
+ ],
1955
+ "id": "import:plan",
1956
1956
  "pluginAlias": "checkly",
1957
1957
  "pluginName": "checkly",
1958
1958
  "pluginType": "core",
1959
- "strict": true,
1959
+ "strict": false,
1960
1960
  "enableJsonFlag": false,
1961
1961
  "coreCommand": false,
1962
- "readOnly": false,
1962
+ "readOnly": true,
1963
1963
  "destructive": false,
1964
1964
  "idempotent": true,
1965
1965
  "isESM": false,
1966
1966
  "relativePath": [
1967
1967
  "dist",
1968
1968
  "commands",
1969
- "env",
1970
- "update.js"
1969
+ "import",
1970
+ "plan.js"
1971
1971
  ]
1972
1972
  },
1973
1973
  "incidents:create": {
@@ -2318,6 +2318,117 @@
2318
2318
  "update.js"
2319
2319
  ]
2320
2320
  },
2321
+ "rca:get": {
2322
+ "aliases": [],
2323
+ "args": {
2324
+ "id": {
2325
+ "description": "The RCA ID to retrieve.",
2326
+ "name": "id",
2327
+ "required": true
2328
+ }
2329
+ },
2330
+ "description": "Retrieve a root cause analysis by ID.",
2331
+ "flags": {
2332
+ "watch": {
2333
+ "char": "w",
2334
+ "description": "Wait for the analysis to complete if still generating.",
2335
+ "name": "watch",
2336
+ "allowNo": false,
2337
+ "type": "boolean"
2338
+ },
2339
+ "output": {
2340
+ "char": "o",
2341
+ "description": "Output format.",
2342
+ "name": "output",
2343
+ "default": "detail",
2344
+ "hasDynamicHelp": false,
2345
+ "multiple": false,
2346
+ "options": [
2347
+ "detail",
2348
+ "json",
2349
+ "md"
2350
+ ],
2351
+ "type": "option"
2352
+ }
2353
+ },
2354
+ "hasDynamicHelp": false,
2355
+ "hidden": false,
2356
+ "hiddenAliases": [],
2357
+ "id": "rca:get",
2358
+ "pluginAlias": "checkly",
2359
+ "pluginName": "checkly",
2360
+ "pluginType": "core",
2361
+ "strict": true,
2362
+ "enableJsonFlag": false,
2363
+ "coreCommand": false,
2364
+ "readOnly": true,
2365
+ "destructive": false,
2366
+ "idempotent": true,
2367
+ "isESM": false,
2368
+ "relativePath": [
2369
+ "dist",
2370
+ "commands",
2371
+ "rca",
2372
+ "get.js"
2373
+ ]
2374
+ },
2375
+ "rca:run": {
2376
+ "aliases": [],
2377
+ "args": {},
2378
+ "description": "Trigger a root cause analysis for an error group.",
2379
+ "flags": {
2380
+ "error-group": {
2381
+ "char": "e",
2382
+ "description": "The error group ID to analyze.",
2383
+ "name": "error-group",
2384
+ "required": true,
2385
+ "hasDynamicHelp": false,
2386
+ "multiple": false,
2387
+ "type": "option"
2388
+ },
2389
+ "watch": {
2390
+ "char": "w",
2391
+ "description": "Wait for the analysis to complete and display the result.",
2392
+ "name": "watch",
2393
+ "allowNo": false,
2394
+ "type": "boolean"
2395
+ },
2396
+ "output": {
2397
+ "char": "o",
2398
+ "description": "Output format.",
2399
+ "name": "output",
2400
+ "default": "detail",
2401
+ "hasDynamicHelp": false,
2402
+ "multiple": false,
2403
+ "options": [
2404
+ "detail",
2405
+ "json",
2406
+ "md"
2407
+ ],
2408
+ "type": "option"
2409
+ }
2410
+ },
2411
+ "hasDynamicHelp": false,
2412
+ "hidden": false,
2413
+ "hiddenAliases": [],
2414
+ "id": "rca:run",
2415
+ "pluginAlias": "checkly",
2416
+ "pluginName": "checkly",
2417
+ "pluginType": "core",
2418
+ "strict": true,
2419
+ "enableJsonFlag": false,
2420
+ "coreCommand": false,
2421
+ "readOnly": false,
2422
+ "destructive": false,
2423
+ "idempotent": false,
2424
+ "isESM": false,
2425
+ "relativePath": [
2426
+ "dist",
2427
+ "commands",
2428
+ "rca",
2429
+ "run.js"
2430
+ ]
2431
+ },
2321
2432
  "skills": {
2322
2433
  "aliases": [],
2323
2434
  "args": {
@@ -2520,118 +2631,7 @@
2520
2631
  "status-pages",
2521
2632
  "list.js"
2522
2633
  ]
2523
- },
2524
- "rca:get": {
2525
- "aliases": [],
2526
- "args": {
2527
- "id": {
2528
- "description": "The RCA ID to retrieve.",
2529
- "name": "id",
2530
- "required": true
2531
- }
2532
- },
2533
- "description": "Retrieve a root cause analysis by ID.",
2534
- "flags": {
2535
- "watch": {
2536
- "char": "w",
2537
- "description": "Wait for the analysis to complete if still generating.",
2538
- "name": "watch",
2539
- "allowNo": false,
2540
- "type": "boolean"
2541
- },
2542
- "output": {
2543
- "char": "o",
2544
- "description": "Output format.",
2545
- "name": "output",
2546
- "default": "detail",
2547
- "hasDynamicHelp": false,
2548
- "multiple": false,
2549
- "options": [
2550
- "detail",
2551
- "json",
2552
- "md"
2553
- ],
2554
- "type": "option"
2555
- }
2556
- },
2557
- "hasDynamicHelp": false,
2558
- "hidden": false,
2559
- "hiddenAliases": [],
2560
- "id": "rca:get",
2561
- "pluginAlias": "checkly",
2562
- "pluginName": "checkly",
2563
- "pluginType": "core",
2564
- "strict": true,
2565
- "enableJsonFlag": false,
2566
- "coreCommand": false,
2567
- "readOnly": true,
2568
- "destructive": false,
2569
- "idempotent": true,
2570
- "isESM": false,
2571
- "relativePath": [
2572
- "dist",
2573
- "commands",
2574
- "rca",
2575
- "get.js"
2576
- ]
2577
- },
2578
- "rca:run": {
2579
- "aliases": [],
2580
- "args": {},
2581
- "description": "Trigger a root cause analysis for an error group.",
2582
- "flags": {
2583
- "error-group": {
2584
- "char": "e",
2585
- "description": "The error group ID to analyze.",
2586
- "name": "error-group",
2587
- "required": true,
2588
- "hasDynamicHelp": false,
2589
- "multiple": false,
2590
- "type": "option"
2591
- },
2592
- "watch": {
2593
- "char": "w",
2594
- "description": "Wait for the analysis to complete and display the result.",
2595
- "name": "watch",
2596
- "allowNo": false,
2597
- "type": "boolean"
2598
- },
2599
- "output": {
2600
- "char": "o",
2601
- "description": "Output format.",
2602
- "name": "output",
2603
- "default": "detail",
2604
- "hasDynamicHelp": false,
2605
- "multiple": false,
2606
- "options": [
2607
- "detail",
2608
- "json",
2609
- "md"
2610
- ],
2611
- "type": "option"
2612
- }
2613
- },
2614
- "hasDynamicHelp": false,
2615
- "hidden": false,
2616
- "hiddenAliases": [],
2617
- "id": "rca:run",
2618
- "pluginAlias": "checkly",
2619
- "pluginName": "checkly",
2620
- "pluginType": "core",
2621
- "strict": true,
2622
- "enableJsonFlag": false,
2623
- "coreCommand": false,
2624
- "readOnly": false,
2625
- "destructive": false,
2626
- "idempotent": false,
2627
- "isESM": false,
2628
- "relativePath": [
2629
- "dist",
2630
- "commands",
2631
- "rca",
2632
- "run.js"
2633
- ]
2634
2634
  }
2635
2635
  },
2636
- "version": "7.13.0-prerelease-acfb34e"
2636
+ "version": "7.13.0"
2637
2637
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "checkly",
3
- "version": "7.13.0-prerelease-acfb34e",
3
+ "version": "7.13.0",
4
4
  "description": "Checkly CLI",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",