checkly 9.0.0 → 9.1.0-prerelease-d080e8d
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/README.md +1 -1
- package/bin/check-node-version.cjs +21 -0
- package/bin/launch.cjs +16 -0
- package/bin/run.cjs +32 -0
- package/dist/ai-context/skills-command/references/configure-playwright-checks.md +1 -1
- package/dist/commands/authCommand.d.ts +6 -0
- package/dist/commands/authCommand.js +17 -0
- package/dist/commands/authCommand.js.map +1 -1
- package/dist/commands/baseCommand.d.ts +11 -0
- package/dist/commands/baseCommand.js +34 -13
- package/dist/commands/baseCommand.js.map +1 -1
- package/dist/commands/debug/parse-project.d.ts +1 -1
- package/dist/commands/debug/parse-project.js +41 -15
- package/dist/commands/debug/parse-project.js.map +1 -1
- package/dist/commands/deploy.js +5 -24
- package/dist/commands/deploy.js.map +1 -1
- package/dist/commands/destroy.js +2 -1
- package/dist/commands/destroy.js.map +1 -1
- package/dist/commands/import/apply.js +2 -1
- package/dist/commands/import/apply.js.map +1 -1
- package/dist/commands/import/cancel.js +2 -1
- package/dist/commands/import/cancel.js.map +1 -1
- package/dist/commands/import/commit.js +2 -1
- package/dist/commands/import/commit.js.map +1 -1
- package/dist/commands/import/plan.js +11 -29
- package/dist/commands/import/plan.js.map +1 -1
- package/dist/commands/pw-test.js +5 -24
- package/dist/commands/pw-test.js.map +1 -1
- package/dist/commands/test.js +5 -24
- package/dist/commands/test.js.map +1 -1
- package/dist/commands/trigger.js +10 -3
- package/dist/commands/trigger.js.map +1 -1
- package/dist/commands/validate.js +5 -22
- package/dist/commands/validate.js.map +1 -1
- package/dist/helpers/command-style.d.ts +2 -0
- package/dist/helpers/command-style.js +13 -0
- package/dist/helpers/command-style.js.map +1 -1
- package/dist/services/check-parser/cache-hash.d.ts +5 -2
- package/dist/services/check-parser/cache-hash.js +2 -2
- package/dist/services/check-parser/cache-hash.js.map +1 -1
- package/dist/services/check-parser/package-prune.d.ts +12 -4
- package/dist/services/check-parser/package-prune.js +184 -76
- package/dist/services/check-parser/package-prune.js.map +1 -1
- package/dist/services/checkly-config-loader.d.ts +60 -18
- package/dist/services/checkly-config-loader.js +131 -45
- package/dist/services/checkly-config-loader.js.map +1 -1
- package/dist/services/config-diagnostics.d.ts +31 -0
- package/dist/services/config-diagnostics.js +57 -0
- package/dist/services/config-diagnostics.js.map +1 -0
- package/dist/services/embedded-packages/spec.js +2 -2
- package/dist/services/embedded-packages/spec.js.map +1 -1
- package/dist/services/runner/registries.d.ts +17 -5
- package/dist/services/runner/registries.js +129 -61
- package/dist/services/runner/registries.js.map +1 -1
- package/oclif.manifest.json +803 -803
- package/package.json +3 -3
- package/bin/run +0 -8
- package/bin/run.cmd +0 -3
package/oclif.manifest.json
CHANGED
|
@@ -1488,6 +1488,211 @@
|
|
|
1488
1488
|
"logs.js"
|
|
1489
1489
|
]
|
|
1490
1490
|
},
|
|
1491
|
+
"assets:download": {
|
|
1492
|
+
"aliases": [],
|
|
1493
|
+
"args": {},
|
|
1494
|
+
"description": "Download result assets.",
|
|
1495
|
+
"flags": {
|
|
1496
|
+
"check-id": {
|
|
1497
|
+
"description": "Check ID for a scheduled check result.",
|
|
1498
|
+
"name": "check-id",
|
|
1499
|
+
"hasDynamicHelp": false,
|
|
1500
|
+
"multiple": false,
|
|
1501
|
+
"type": "option"
|
|
1502
|
+
},
|
|
1503
|
+
"test-session-id": {
|
|
1504
|
+
"description": "Test session ID for a test-session result.",
|
|
1505
|
+
"name": "test-session-id",
|
|
1506
|
+
"hasDynamicHelp": false,
|
|
1507
|
+
"multiple": false,
|
|
1508
|
+
"type": "option"
|
|
1509
|
+
},
|
|
1510
|
+
"result-id": {
|
|
1511
|
+
"description": "Check result ID or test-session result ID.",
|
|
1512
|
+
"name": "result-id",
|
|
1513
|
+
"required": true,
|
|
1514
|
+
"hasDynamicHelp": false,
|
|
1515
|
+
"multiple": false,
|
|
1516
|
+
"type": "option"
|
|
1517
|
+
},
|
|
1518
|
+
"type": {
|
|
1519
|
+
"description": "Select assets by type.",
|
|
1520
|
+
"name": "type",
|
|
1521
|
+
"hasDynamicHelp": false,
|
|
1522
|
+
"multiple": false,
|
|
1523
|
+
"options": [
|
|
1524
|
+
"log",
|
|
1525
|
+
"trace",
|
|
1526
|
+
"video",
|
|
1527
|
+
"screenshot",
|
|
1528
|
+
"pcap",
|
|
1529
|
+
"report",
|
|
1530
|
+
"file",
|
|
1531
|
+
"all"
|
|
1532
|
+
],
|
|
1533
|
+
"type": "option"
|
|
1534
|
+
},
|
|
1535
|
+
"asset": {
|
|
1536
|
+
"description": "Select an asset by exact Asset/Name value or glob.",
|
|
1537
|
+
"name": "asset",
|
|
1538
|
+
"hasDynamicHelp": false,
|
|
1539
|
+
"multiple": false,
|
|
1540
|
+
"type": "option"
|
|
1541
|
+
},
|
|
1542
|
+
"dir": {
|
|
1543
|
+
"description": "Directory to write assets into.",
|
|
1544
|
+
"name": "dir",
|
|
1545
|
+
"hasDynamicHelp": false,
|
|
1546
|
+
"multiple": false,
|
|
1547
|
+
"type": "option"
|
|
1548
|
+
},
|
|
1549
|
+
"force": {
|
|
1550
|
+
"description": "Overwrite existing files.",
|
|
1551
|
+
"name": "force",
|
|
1552
|
+
"allowNo": false,
|
|
1553
|
+
"type": "boolean"
|
|
1554
|
+
},
|
|
1555
|
+
"skip-existing": {
|
|
1556
|
+
"description": "Skip files that already exist.",
|
|
1557
|
+
"name": "skip-existing",
|
|
1558
|
+
"allowNo": false,
|
|
1559
|
+
"type": "boolean"
|
|
1560
|
+
},
|
|
1561
|
+
"output": {
|
|
1562
|
+
"char": "o",
|
|
1563
|
+
"description": "Output format.",
|
|
1564
|
+
"name": "output",
|
|
1565
|
+
"default": "table",
|
|
1566
|
+
"hasDynamicHelp": false,
|
|
1567
|
+
"multiple": false,
|
|
1568
|
+
"options": [
|
|
1569
|
+
"table",
|
|
1570
|
+
"json"
|
|
1571
|
+
],
|
|
1572
|
+
"type": "option"
|
|
1573
|
+
}
|
|
1574
|
+
},
|
|
1575
|
+
"hasDynamicHelp": false,
|
|
1576
|
+
"hidden": false,
|
|
1577
|
+
"hiddenAliases": [],
|
|
1578
|
+
"id": "assets:download",
|
|
1579
|
+
"pluginAlias": "checkly",
|
|
1580
|
+
"pluginName": "checkly",
|
|
1581
|
+
"pluginType": "core",
|
|
1582
|
+
"strict": true,
|
|
1583
|
+
"enableJsonFlag": false,
|
|
1584
|
+
"coreCommand": false,
|
|
1585
|
+
"readOnly": true,
|
|
1586
|
+
"destructive": false,
|
|
1587
|
+
"idempotent": true,
|
|
1588
|
+
"isESM": true,
|
|
1589
|
+
"relativePath": [
|
|
1590
|
+
"dist",
|
|
1591
|
+
"commands",
|
|
1592
|
+
"assets",
|
|
1593
|
+
"download.js"
|
|
1594
|
+
]
|
|
1595
|
+
},
|
|
1596
|
+
"assets:list": {
|
|
1597
|
+
"aliases": [],
|
|
1598
|
+
"args": {},
|
|
1599
|
+
"description": "List result assets.",
|
|
1600
|
+
"flags": {
|
|
1601
|
+
"check-id": {
|
|
1602
|
+
"description": "Check ID for a scheduled check result.",
|
|
1603
|
+
"name": "check-id",
|
|
1604
|
+
"hasDynamicHelp": false,
|
|
1605
|
+
"multiple": false,
|
|
1606
|
+
"type": "option"
|
|
1607
|
+
},
|
|
1608
|
+
"test-session-id": {
|
|
1609
|
+
"description": "Test session ID for a test-session result.",
|
|
1610
|
+
"name": "test-session-id",
|
|
1611
|
+
"hasDynamicHelp": false,
|
|
1612
|
+
"multiple": false,
|
|
1613
|
+
"type": "option"
|
|
1614
|
+
},
|
|
1615
|
+
"result-id": {
|
|
1616
|
+
"description": "Check result ID or test-session result ID.",
|
|
1617
|
+
"name": "result-id",
|
|
1618
|
+
"required": true,
|
|
1619
|
+
"hasDynamicHelp": false,
|
|
1620
|
+
"multiple": false,
|
|
1621
|
+
"type": "option"
|
|
1622
|
+
},
|
|
1623
|
+
"type": {
|
|
1624
|
+
"description": "Filter assets by type.",
|
|
1625
|
+
"name": "type",
|
|
1626
|
+
"default": "all",
|
|
1627
|
+
"hasDynamicHelp": false,
|
|
1628
|
+
"multiple": false,
|
|
1629
|
+
"options": [
|
|
1630
|
+
"log",
|
|
1631
|
+
"trace",
|
|
1632
|
+
"video",
|
|
1633
|
+
"screenshot",
|
|
1634
|
+
"pcap",
|
|
1635
|
+
"report",
|
|
1636
|
+
"file",
|
|
1637
|
+
"all"
|
|
1638
|
+
],
|
|
1639
|
+
"type": "option"
|
|
1640
|
+
},
|
|
1641
|
+
"asset": {
|
|
1642
|
+
"description": "Filter assets by exact Asset/Name value or glob.",
|
|
1643
|
+
"name": "asset",
|
|
1644
|
+
"hasDynamicHelp": false,
|
|
1645
|
+
"multiple": false,
|
|
1646
|
+
"type": "option"
|
|
1647
|
+
},
|
|
1648
|
+
"view": {
|
|
1649
|
+
"description": "Human output view. Ignored with --output json.",
|
|
1650
|
+
"name": "view",
|
|
1651
|
+
"default": "table",
|
|
1652
|
+
"hasDynamicHelp": false,
|
|
1653
|
+
"multiple": false,
|
|
1654
|
+
"options": [
|
|
1655
|
+
"table",
|
|
1656
|
+
"tree"
|
|
1657
|
+
],
|
|
1658
|
+
"type": "option"
|
|
1659
|
+
},
|
|
1660
|
+
"output": {
|
|
1661
|
+
"char": "o",
|
|
1662
|
+
"description": "Output format.",
|
|
1663
|
+
"name": "output",
|
|
1664
|
+
"default": "table",
|
|
1665
|
+
"hasDynamicHelp": false,
|
|
1666
|
+
"multiple": false,
|
|
1667
|
+
"options": [
|
|
1668
|
+
"table",
|
|
1669
|
+
"json",
|
|
1670
|
+
"md"
|
|
1671
|
+
],
|
|
1672
|
+
"type": "option"
|
|
1673
|
+
}
|
|
1674
|
+
},
|
|
1675
|
+
"hasDynamicHelp": false,
|
|
1676
|
+
"hidden": false,
|
|
1677
|
+
"hiddenAliases": [],
|
|
1678
|
+
"id": "assets:list",
|
|
1679
|
+
"pluginAlias": "checkly",
|
|
1680
|
+
"pluginName": "checkly",
|
|
1681
|
+
"pluginType": "core",
|
|
1682
|
+
"strict": true,
|
|
1683
|
+
"enableJsonFlag": false,
|
|
1684
|
+
"coreCommand": false,
|
|
1685
|
+
"readOnly": true,
|
|
1686
|
+
"destructive": false,
|
|
1687
|
+
"idempotent": true,
|
|
1688
|
+
"isESM": true,
|
|
1689
|
+
"relativePath": [
|
|
1690
|
+
"dist",
|
|
1691
|
+
"commands",
|
|
1692
|
+
"assets",
|
|
1693
|
+
"list.js"
|
|
1694
|
+
]
|
|
1695
|
+
},
|
|
1491
1696
|
"checks:delete": {
|
|
1492
1697
|
"aliases": [],
|
|
1493
1698
|
"args": {
|
|
@@ -1988,389 +2193,22 @@
|
|
|
1988
2193
|
"stats.js"
|
|
1989
2194
|
]
|
|
1990
2195
|
},
|
|
1991
|
-
"
|
|
2196
|
+
"import:apply": {
|
|
1992
2197
|
"aliases": [],
|
|
1993
2198
|
"args": {},
|
|
1994
|
-
"description": "
|
|
2199
|
+
"description": "Attach imported resources into your project in a pending state.",
|
|
1995
2200
|
"flags": {
|
|
1996
|
-
"
|
|
1997
|
-
"
|
|
1998
|
-
"
|
|
1999
|
-
"
|
|
2000
|
-
"multiple": false,
|
|
2001
|
-
"type": "option"
|
|
2002
|
-
},
|
|
2003
|
-
"test-session-id": {
|
|
2004
|
-
"description": "Test session ID for a test-session result.",
|
|
2005
|
-
"name": "test-session-id",
|
|
2006
|
-
"hasDynamicHelp": false,
|
|
2007
|
-
"multiple": false,
|
|
2008
|
-
"type": "option"
|
|
2009
|
-
},
|
|
2010
|
-
"result-id": {
|
|
2011
|
-
"description": "Check result ID or test-session result ID.",
|
|
2012
|
-
"name": "result-id",
|
|
2013
|
-
"required": true,
|
|
2014
|
-
"hasDynamicHelp": false,
|
|
2015
|
-
"multiple": false,
|
|
2016
|
-
"type": "option"
|
|
2017
|
-
},
|
|
2018
|
-
"type": {
|
|
2019
|
-
"description": "Select assets by type.",
|
|
2020
|
-
"name": "type",
|
|
2201
|
+
"config": {
|
|
2202
|
+
"char": "c",
|
|
2203
|
+
"description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
|
|
2204
|
+
"name": "config",
|
|
2021
2205
|
"hasDynamicHelp": false,
|
|
2022
2206
|
"multiple": false,
|
|
2023
|
-
"options": [
|
|
2024
|
-
"log",
|
|
2025
|
-
"trace",
|
|
2026
|
-
"video",
|
|
2027
|
-
"screenshot",
|
|
2028
|
-
"pcap",
|
|
2029
|
-
"report",
|
|
2030
|
-
"file",
|
|
2031
|
-
"all"
|
|
2032
|
-
],
|
|
2033
2207
|
"type": "option"
|
|
2034
2208
|
},
|
|
2035
|
-
"
|
|
2036
|
-
"description": "
|
|
2037
|
-
"name": "
|
|
2038
|
-
"hasDynamicHelp": false,
|
|
2039
|
-
"multiple": false,
|
|
2040
|
-
"type": "option"
|
|
2041
|
-
},
|
|
2042
|
-
"dir": {
|
|
2043
|
-
"description": "Directory to write assets into.",
|
|
2044
|
-
"name": "dir",
|
|
2045
|
-
"hasDynamicHelp": false,
|
|
2046
|
-
"multiple": false,
|
|
2047
|
-
"type": "option"
|
|
2048
|
-
},
|
|
2049
|
-
"force": {
|
|
2050
|
-
"description": "Overwrite existing files.",
|
|
2051
|
-
"name": "force",
|
|
2052
|
-
"allowNo": false,
|
|
2053
|
-
"type": "boolean"
|
|
2054
|
-
},
|
|
2055
|
-
"skip-existing": {
|
|
2056
|
-
"description": "Skip files that already exist.",
|
|
2057
|
-
"name": "skip-existing",
|
|
2058
|
-
"allowNo": false,
|
|
2059
|
-
"type": "boolean"
|
|
2060
|
-
},
|
|
2061
|
-
"output": {
|
|
2062
|
-
"char": "o",
|
|
2063
|
-
"description": "Output format.",
|
|
2064
|
-
"name": "output",
|
|
2065
|
-
"default": "table",
|
|
2066
|
-
"hasDynamicHelp": false,
|
|
2067
|
-
"multiple": false,
|
|
2068
|
-
"options": [
|
|
2069
|
-
"table",
|
|
2070
|
-
"json"
|
|
2071
|
-
],
|
|
2072
|
-
"type": "option"
|
|
2073
|
-
}
|
|
2074
|
-
},
|
|
2075
|
-
"hasDynamicHelp": false,
|
|
2076
|
-
"hidden": false,
|
|
2077
|
-
"hiddenAliases": [],
|
|
2078
|
-
"id": "assets:download",
|
|
2079
|
-
"pluginAlias": "checkly",
|
|
2080
|
-
"pluginName": "checkly",
|
|
2081
|
-
"pluginType": "core",
|
|
2082
|
-
"strict": true,
|
|
2083
|
-
"enableJsonFlag": false,
|
|
2084
|
-
"coreCommand": false,
|
|
2085
|
-
"readOnly": true,
|
|
2086
|
-
"destructive": false,
|
|
2087
|
-
"idempotent": true,
|
|
2088
|
-
"isESM": true,
|
|
2089
|
-
"relativePath": [
|
|
2090
|
-
"dist",
|
|
2091
|
-
"commands",
|
|
2092
|
-
"assets",
|
|
2093
|
-
"download.js"
|
|
2094
|
-
]
|
|
2095
|
-
},
|
|
2096
|
-
"assets:list": {
|
|
2097
|
-
"aliases": [],
|
|
2098
|
-
"args": {},
|
|
2099
|
-
"description": "List result assets.",
|
|
2100
|
-
"flags": {
|
|
2101
|
-
"check-id": {
|
|
2102
|
-
"description": "Check ID for a scheduled check result.",
|
|
2103
|
-
"name": "check-id",
|
|
2104
|
-
"hasDynamicHelp": false,
|
|
2105
|
-
"multiple": false,
|
|
2106
|
-
"type": "option"
|
|
2107
|
-
},
|
|
2108
|
-
"test-session-id": {
|
|
2109
|
-
"description": "Test session ID for a test-session result.",
|
|
2110
|
-
"name": "test-session-id",
|
|
2111
|
-
"hasDynamicHelp": false,
|
|
2112
|
-
"multiple": false,
|
|
2113
|
-
"type": "option"
|
|
2114
|
-
},
|
|
2115
|
-
"result-id": {
|
|
2116
|
-
"description": "Check result ID or test-session result ID.",
|
|
2117
|
-
"name": "result-id",
|
|
2118
|
-
"required": true,
|
|
2119
|
-
"hasDynamicHelp": false,
|
|
2120
|
-
"multiple": false,
|
|
2121
|
-
"type": "option"
|
|
2122
|
-
},
|
|
2123
|
-
"type": {
|
|
2124
|
-
"description": "Filter assets by type.",
|
|
2125
|
-
"name": "type",
|
|
2126
|
-
"default": "all",
|
|
2127
|
-
"hasDynamicHelp": false,
|
|
2128
|
-
"multiple": false,
|
|
2129
|
-
"options": [
|
|
2130
|
-
"log",
|
|
2131
|
-
"trace",
|
|
2132
|
-
"video",
|
|
2133
|
-
"screenshot",
|
|
2134
|
-
"pcap",
|
|
2135
|
-
"report",
|
|
2136
|
-
"file",
|
|
2137
|
-
"all"
|
|
2138
|
-
],
|
|
2139
|
-
"type": "option"
|
|
2140
|
-
},
|
|
2141
|
-
"asset": {
|
|
2142
|
-
"description": "Filter assets by exact Asset/Name value or glob.",
|
|
2143
|
-
"name": "asset",
|
|
2144
|
-
"hasDynamicHelp": false,
|
|
2145
|
-
"multiple": false,
|
|
2146
|
-
"type": "option"
|
|
2147
|
-
},
|
|
2148
|
-
"view": {
|
|
2149
|
-
"description": "Human output view. Ignored with --output json.",
|
|
2150
|
-
"name": "view",
|
|
2151
|
-
"default": "table",
|
|
2152
|
-
"hasDynamicHelp": false,
|
|
2153
|
-
"multiple": false,
|
|
2154
|
-
"options": [
|
|
2155
|
-
"table",
|
|
2156
|
-
"tree"
|
|
2157
|
-
],
|
|
2158
|
-
"type": "option"
|
|
2159
|
-
},
|
|
2160
|
-
"output": {
|
|
2161
|
-
"char": "o",
|
|
2162
|
-
"description": "Output format.",
|
|
2163
|
-
"name": "output",
|
|
2164
|
-
"default": "table",
|
|
2165
|
-
"hasDynamicHelp": false,
|
|
2166
|
-
"multiple": false,
|
|
2167
|
-
"options": [
|
|
2168
|
-
"table",
|
|
2169
|
-
"json",
|
|
2170
|
-
"md"
|
|
2171
|
-
],
|
|
2172
|
-
"type": "option"
|
|
2173
|
-
}
|
|
2174
|
-
},
|
|
2175
|
-
"hasDynamicHelp": false,
|
|
2176
|
-
"hidden": false,
|
|
2177
|
-
"hiddenAliases": [],
|
|
2178
|
-
"id": "assets:list",
|
|
2179
|
-
"pluginAlias": "checkly",
|
|
2180
|
-
"pluginName": "checkly",
|
|
2181
|
-
"pluginType": "core",
|
|
2182
|
-
"strict": true,
|
|
2183
|
-
"enableJsonFlag": false,
|
|
2184
|
-
"coreCommand": false,
|
|
2185
|
-
"readOnly": true,
|
|
2186
|
-
"destructive": false,
|
|
2187
|
-
"idempotent": true,
|
|
2188
|
-
"isESM": true,
|
|
2189
|
-
"relativePath": [
|
|
2190
|
-
"dist",
|
|
2191
|
-
"commands",
|
|
2192
|
-
"assets",
|
|
2193
|
-
"list.js"
|
|
2194
|
-
]
|
|
2195
|
-
},
|
|
2196
|
-
"debug:parse-file": {
|
|
2197
|
-
"aliases": [],
|
|
2198
|
-
"args": {},
|
|
2199
|
-
"description": "Parses and outputs relevant details of a code file.",
|
|
2200
|
-
"flags": {
|
|
2201
|
-
"file": {
|
|
2202
|
-
"name": "file",
|
|
2203
|
-
"required": true,
|
|
2204
|
-
"hasDynamicHelp": false,
|
|
2205
|
-
"multiple": false,
|
|
2206
|
-
"type": "option"
|
|
2207
|
-
},
|
|
2208
|
-
"restricted": {
|
|
2209
|
-
"name": "restricted",
|
|
2210
|
-
"allowNo": false,
|
|
2211
|
-
"type": "boolean"
|
|
2212
|
-
},
|
|
2213
|
-
"detect-workspace": {
|
|
2214
|
-
"name": "detect-workspace",
|
|
2215
|
-
"allowNo": true,
|
|
2216
|
-
"type": "boolean"
|
|
2217
|
-
},
|
|
2218
|
-
"supported-module": {
|
|
2219
|
-
"name": "supported-module",
|
|
2220
|
-
"default": [],
|
|
2221
|
-
"delimiter": ",",
|
|
2222
|
-
"hasDynamicHelp": false,
|
|
2223
|
-
"multiple": true,
|
|
2224
|
-
"type": "option"
|
|
2225
|
-
},
|
|
2226
|
-
"check-unsupported-modules": {
|
|
2227
|
-
"name": "check-unsupported-modules",
|
|
2228
|
-
"allowNo": false,
|
|
2229
|
-
"type": "boolean"
|
|
2230
|
-
}
|
|
2231
|
-
},
|
|
2232
|
-
"hasDynamicHelp": false,
|
|
2233
|
-
"hidden": true,
|
|
2234
|
-
"hiddenAliases": [],
|
|
2235
|
-
"id": "debug:parse-file",
|
|
2236
|
-
"pluginAlias": "checkly",
|
|
2237
|
-
"pluginName": "checkly",
|
|
2238
|
-
"pluginType": "core",
|
|
2239
|
-
"strict": true,
|
|
2240
|
-
"enableJsonFlag": false,
|
|
2241
|
-
"isESM": true,
|
|
2242
|
-
"relativePath": [
|
|
2243
|
-
"dist",
|
|
2244
|
-
"commands",
|
|
2245
|
-
"debug",
|
|
2246
|
-
"parse-file.js"
|
|
2247
|
-
]
|
|
2248
|
-
},
|
|
2249
|
-
"debug:parse-playwright-config": {
|
|
2250
|
-
"aliases": [],
|
|
2251
|
-
"args": {},
|
|
2252
|
-
"description": "Parses and outputs relevant details of a Playwright configuration file.",
|
|
2253
|
-
"flags": {
|
|
2254
|
-
"file": {
|
|
2255
|
-
"env": "CHECKLY_PLAYWRIGHT_CONFIG_FILE",
|
|
2256
|
-
"name": "file",
|
|
2257
|
-
"default": "/home/runner/work/checkly-cli/checkly-cli/packages/cli/playwright.config.ts",
|
|
2258
|
-
"hasDynamicHelp": false,
|
|
2259
|
-
"multiple": false,
|
|
2260
|
-
"type": "option"
|
|
2261
|
-
}
|
|
2262
|
-
},
|
|
2263
|
-
"hasDynamicHelp": false,
|
|
2264
|
-
"hidden": true,
|
|
2265
|
-
"hiddenAliases": [],
|
|
2266
|
-
"id": "debug:parse-playwright-config",
|
|
2267
|
-
"pluginAlias": "checkly",
|
|
2268
|
-
"pluginName": "checkly",
|
|
2269
|
-
"pluginType": "core",
|
|
2270
|
-
"strict": true,
|
|
2271
|
-
"enableJsonFlag": false,
|
|
2272
|
-
"isESM": true,
|
|
2273
|
-
"relativePath": [
|
|
2274
|
-
"dist",
|
|
2275
|
-
"commands",
|
|
2276
|
-
"debug",
|
|
2277
|
-
"parse-playwright-config.js"
|
|
2278
|
-
]
|
|
2279
|
-
},
|
|
2280
|
-
"debug:parse-project": {
|
|
2281
|
-
"aliases": [],
|
|
2282
|
-
"args": {},
|
|
2283
|
-
"description": "Parses a Checkly project.",
|
|
2284
|
-
"flags": {
|
|
2285
|
-
"config": {
|
|
2286
|
-
"char": "c",
|
|
2287
|
-
"description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
|
|
2288
|
-
"env": "CHECKLY_CONFIG_FILE",
|
|
2289
|
-
"name": "config",
|
|
2290
|
-
"hasDynamicHelp": false,
|
|
2291
|
-
"multiple": false,
|
|
2292
|
-
"type": "option"
|
|
2293
|
-
},
|
|
2294
|
-
"default-runtime": {
|
|
2295
|
-
"description": "The default runtime to use if none is specified.",
|
|
2296
|
-
"env": "CHECKLY_DEFAULT_RUNTIME",
|
|
2297
|
-
"name": "default-runtime",
|
|
2298
|
-
"default": "2025.04",
|
|
2299
|
-
"hasDynamicHelp": false,
|
|
2300
|
-
"multiple": false,
|
|
2301
|
-
"type": "option"
|
|
2302
|
-
},
|
|
2303
|
-
"verify-runtime-dependencies": {
|
|
2304
|
-
"description": "[default: true] Return an error if checks import dependencies that are not supported by the selected runtime.",
|
|
2305
|
-
"env": "CHECKLY_VERIFY_RUNTIME_DEPENDENCIES",
|
|
2306
|
-
"name": "verify-runtime-dependencies",
|
|
2307
|
-
"allowNo": true,
|
|
2308
|
-
"type": "boolean"
|
|
2309
|
-
},
|
|
2310
|
-
"emulate-pw-test": {
|
|
2311
|
-
"description": "Pretend to be the pw-test command. Affects validation.",
|
|
2312
|
-
"env": "CHECKLY_EMULATE_PW_TEST",
|
|
2313
|
-
"name": "emulate-pw-test",
|
|
2314
|
-
"allowNo": false,
|
|
2315
|
-
"type": "boolean"
|
|
2316
|
-
},
|
|
2317
|
-
"include": {
|
|
2318
|
-
"description": "File patterns to include when bundling the test project (e.g., \"utils/**/*\").",
|
|
2319
|
-
"name": "include",
|
|
2320
|
-
"default": [],
|
|
2321
|
-
"hasDynamicHelp": false,
|
|
2322
|
-
"multiple": true,
|
|
2323
|
-
"type": "option"
|
|
2324
|
-
},
|
|
2325
|
-
"inject-private-location": {
|
|
2326
|
-
"description": "Pretend that the given private location exists (e.g., \"70c4ded4-2229-45a7-acf4-6b1eb56a86df:my-external-private-location\").",
|
|
2327
|
-
"name": "inject-private-location",
|
|
2328
|
-
"default": [],
|
|
2329
|
-
"delimiter": ",",
|
|
2330
|
-
"hasDynamicHelp": false,
|
|
2331
|
-
"multiple": true,
|
|
2332
|
-
"type": "option"
|
|
2333
|
-
},
|
|
2334
|
-
"stats": {
|
|
2335
|
-
"description": "Print parse/bundle/synthesize timing and heap usage to stderr. Run with NODE_OPTIONS=--expose-gc to also report the retained (post-GC) heap.",
|
|
2336
|
-
"name": "stats",
|
|
2337
|
-
"allowNo": false,
|
|
2338
|
-
"type": "boolean"
|
|
2339
|
-
}
|
|
2340
|
-
},
|
|
2341
|
-
"hasDynamicHelp": false,
|
|
2342
|
-
"hidden": true,
|
|
2343
|
-
"hiddenAliases": [],
|
|
2344
|
-
"id": "debug:parse-project",
|
|
2345
|
-
"pluginAlias": "checkly",
|
|
2346
|
-
"pluginName": "checkly",
|
|
2347
|
-
"pluginType": "core",
|
|
2348
|
-
"strict": true,
|
|
2349
|
-
"enableJsonFlag": false,
|
|
2350
|
-
"isESM": true,
|
|
2351
|
-
"relativePath": [
|
|
2352
|
-
"dist",
|
|
2353
|
-
"commands",
|
|
2354
|
-
"debug",
|
|
2355
|
-
"parse-project.js"
|
|
2356
|
-
]
|
|
2357
|
-
},
|
|
2358
|
-
"import:apply": {
|
|
2359
|
-
"aliases": [],
|
|
2360
|
-
"args": {},
|
|
2361
|
-
"description": "Attach imported resources into your project in a pending state.",
|
|
2362
|
-
"flags": {
|
|
2363
|
-
"config": {
|
|
2364
|
-
"char": "c",
|
|
2365
|
-
"description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
|
|
2366
|
-
"name": "config",
|
|
2367
|
-
"hasDynamicHelp": false,
|
|
2368
|
-
"multiple": false,
|
|
2369
|
-
"type": "option"
|
|
2370
|
-
},
|
|
2371
|
-
"plan-id": {
|
|
2372
|
-
"description": "Target a specific import plan by ID, skipping interactive plan selection.",
|
|
2373
|
-
"name": "plan-id",
|
|
2209
|
+
"plan-id": {
|
|
2210
|
+
"description": "Target a specific import plan by ID, skipping interactive plan selection.",
|
|
2211
|
+
"name": "plan-id",
|
|
2374
2212
|
"hasDynamicHelp": false,
|
|
2375
2213
|
"multiple": false,
|
|
2376
2214
|
"type": "option"
|
|
@@ -2514,307 +2352,90 @@
|
|
|
2514
2352
|
"isESM": true,
|
|
2515
2353
|
"relativePath": [
|
|
2516
2354
|
"dist",
|
|
2517
|
-
"commands",
|
|
2518
|
-
"import",
|
|
2519
|
-
"commit.js"
|
|
2520
|
-
]
|
|
2521
|
-
},
|
|
2522
|
-
"import:plan": {
|
|
2523
|
-
"aliases": [],
|
|
2524
|
-
"args": {
|
|
2525
|
-
"resource": {
|
|
2526
|
-
"description": "A specific resource to import.",
|
|
2527
|
-
"name": "resource",
|
|
2528
|
-
"required": false
|
|
2529
|
-
}
|
|
2530
|
-
},
|
|
2531
|
-
"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.",
|
|
2532
|
-
"flags": {
|
|
2533
|
-
"config": {
|
|
2534
|
-
"char": "c",
|
|
2535
|
-
"description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
|
|
2536
|
-
"name": "config",
|
|
2537
|
-
"hasDynamicHelp": false,
|
|
2538
|
-
"multiple": false,
|
|
2539
|
-
"type": "option"
|
|
2540
|
-
},
|
|
2541
|
-
"root": {
|
|
2542
|
-
"description": "The root folder in which to write generated code files.",
|
|
2543
|
-
"name": "root",
|
|
2544
|
-
"default": "__checks__",
|
|
2545
|
-
"hasDynamicHelp": false,
|
|
2546
|
-
"multiple": false,
|
|
2547
|
-
"type": "option"
|
|
2548
|
-
},
|
|
2549
|
-
"preview": {
|
|
2550
|
-
"description": "Preview generated code without creating an actual import plan.",
|
|
2551
|
-
"name": "preview",
|
|
2552
|
-
"allowNo": false,
|
|
2553
|
-
"type": "boolean"
|
|
2554
|
-
},
|
|
2555
|
-
"debug-import-plan": {
|
|
2556
|
-
"description": "Output the import plan to a file.",
|
|
2557
|
-
"hidden": true,
|
|
2558
|
-
"name": "debug-import-plan",
|
|
2559
|
-
"allowNo": false,
|
|
2560
|
-
"type": "boolean"
|
|
2561
|
-
},
|
|
2562
|
-
"debug-import-plan-input-file": {
|
|
2563
|
-
"description": "A file to load an import plan from.",
|
|
2564
|
-
"hidden": true,
|
|
2565
|
-
"name": "debug-import-plan-input-file",
|
|
2566
|
-
"hasDynamicHelp": false,
|
|
2567
|
-
"multiple": false,
|
|
2568
|
-
"type": "option"
|
|
2569
|
-
},
|
|
2570
|
-
"debug-import-plan-output-file": {
|
|
2571
|
-
"description": "The file to output the import plan to.",
|
|
2572
|
-
"hidden": true,
|
|
2573
|
-
"name": "debug-import-plan-output-file",
|
|
2574
|
-
"default": "./debug-import-plan.json",
|
|
2575
|
-
"hasDynamicHelp": false,
|
|
2576
|
-
"multiple": false,
|
|
2577
|
-
"type": "option"
|
|
2578
|
-
}
|
|
2579
|
-
},
|
|
2580
|
-
"hasDynamicHelp": false,
|
|
2581
|
-
"hidden": false,
|
|
2582
|
-
"hiddenAliases": [
|
|
2583
|
-
"import"
|
|
2584
|
-
],
|
|
2585
|
-
"id": "import:plan",
|
|
2586
|
-
"pluginAlias": "checkly",
|
|
2587
|
-
"pluginName": "checkly",
|
|
2588
|
-
"pluginType": "core",
|
|
2589
|
-
"strict": false,
|
|
2590
|
-
"enableJsonFlag": false,
|
|
2591
|
-
"coreCommand": false,
|
|
2592
|
-
"readOnly": true,
|
|
2593
|
-
"destructive": false,
|
|
2594
|
-
"idempotent": true,
|
|
2595
|
-
"isESM": true,
|
|
2596
|
-
"relativePath": [
|
|
2597
|
-
"dist",
|
|
2598
|
-
"commands",
|
|
2599
|
-
"import",
|
|
2600
|
-
"plan.js"
|
|
2601
|
-
]
|
|
2602
|
-
},
|
|
2603
|
-
"env:add": {
|
|
2604
|
-
"aliases": [],
|
|
2605
|
-
"args": {
|
|
2606
|
-
"key": {
|
|
2607
|
-
"description": "Environment variable key.",
|
|
2608
|
-
"name": "key",
|
|
2609
|
-
"required": true
|
|
2610
|
-
},
|
|
2611
|
-
"value": {
|
|
2612
|
-
"description": "Environment variable value.",
|
|
2613
|
-
"name": "value",
|
|
2614
|
-
"required": false
|
|
2615
|
-
}
|
|
2616
|
-
},
|
|
2617
|
-
"description": "Add environment variable via \"checkly env add <key> <value>\".",
|
|
2618
|
-
"flags": {
|
|
2619
|
-
"locked": {
|
|
2620
|
-
"char": "l",
|
|
2621
|
-
"description": "Indicate that the environment variable will be locked.",
|
|
2622
|
-
"name": "locked",
|
|
2623
|
-
"allowNo": false,
|
|
2624
|
-
"type": "boolean"
|
|
2625
|
-
},
|
|
2626
|
-
"secret": {
|
|
2627
|
-
"char": "s",
|
|
2628
|
-
"description": "Indicate that the environment variable will be secret.",
|
|
2629
|
-
"exclusive": [
|
|
2630
|
-
"locked"
|
|
2631
|
-
],
|
|
2632
|
-
"name": "secret",
|
|
2633
|
-
"allowNo": false,
|
|
2634
|
-
"type": "boolean"
|
|
2635
|
-
}
|
|
2636
|
-
},
|
|
2637
|
-
"hasDynamicHelp": false,
|
|
2638
|
-
"hidden": false,
|
|
2639
|
-
"hiddenAliases": [],
|
|
2640
|
-
"id": "env:add",
|
|
2641
|
-
"pluginAlias": "checkly",
|
|
2642
|
-
"pluginName": "checkly",
|
|
2643
|
-
"pluginType": "core",
|
|
2644
|
-
"strict": true,
|
|
2645
|
-
"enableJsonFlag": false,
|
|
2646
|
-
"coreCommand": false,
|
|
2647
|
-
"readOnly": false,
|
|
2648
|
-
"destructive": false,
|
|
2649
|
-
"idempotent": false,
|
|
2650
|
-
"isESM": true,
|
|
2651
|
-
"relativePath": [
|
|
2652
|
-
"dist",
|
|
2653
|
-
"commands",
|
|
2654
|
-
"env",
|
|
2655
|
-
"add.js"
|
|
2656
|
-
]
|
|
2657
|
-
},
|
|
2658
|
-
"env:ls": {
|
|
2659
|
-
"aliases": [],
|
|
2660
|
-
"args": {},
|
|
2661
|
-
"description": "List all Checkly environment variables via \"checkly env ls\".",
|
|
2662
|
-
"flags": {},
|
|
2663
|
-
"hasDynamicHelp": false,
|
|
2664
|
-
"hidden": false,
|
|
2665
|
-
"hiddenAliases": [],
|
|
2666
|
-
"id": "env:ls",
|
|
2667
|
-
"pluginAlias": "checkly",
|
|
2668
|
-
"pluginName": "checkly",
|
|
2669
|
-
"pluginType": "core",
|
|
2670
|
-
"strict": true,
|
|
2671
|
-
"enableJsonFlag": false,
|
|
2672
|
-
"coreCommand": false,
|
|
2673
|
-
"readOnly": true,
|
|
2674
|
-
"destructive": false,
|
|
2675
|
-
"idempotent": true,
|
|
2676
|
-
"isESM": true,
|
|
2677
|
-
"relativePath": [
|
|
2678
|
-
"dist",
|
|
2679
|
-
"commands",
|
|
2680
|
-
"env",
|
|
2681
|
-
"ls.js"
|
|
2682
|
-
]
|
|
2683
|
-
},
|
|
2684
|
-
"env:pull": {
|
|
2685
|
-
"aliases": [],
|
|
2686
|
-
"args": {
|
|
2687
|
-
"filename": {
|
|
2688
|
-
"default": ".env",
|
|
2689
|
-
"description": "Filename of the generated file.",
|
|
2690
|
-
"name": "filename",
|
|
2691
|
-
"required": false
|
|
2692
|
-
}
|
|
2693
|
-
},
|
|
2694
|
-
"description": "Pull Checkly environment variables via \"checkly env pull <filename>\".",
|
|
2695
|
-
"flags": {
|
|
2696
|
-
"force": {
|
|
2697
|
-
"char": "f",
|
|
2698
|
-
"description": "Force to overwrite existing file.",
|
|
2699
|
-
"name": "force",
|
|
2700
|
-
"allowNo": false,
|
|
2701
|
-
"type": "boolean"
|
|
2702
|
-
}
|
|
2703
|
-
},
|
|
2704
|
-
"hasDynamicHelp": false,
|
|
2705
|
-
"hidden": false,
|
|
2706
|
-
"hiddenAliases": [],
|
|
2707
|
-
"id": "env:pull",
|
|
2708
|
-
"pluginAlias": "checkly",
|
|
2709
|
-
"pluginName": "checkly",
|
|
2710
|
-
"pluginType": "core",
|
|
2711
|
-
"strict": true,
|
|
2712
|
-
"enableJsonFlag": false,
|
|
2713
|
-
"coreCommand": false,
|
|
2714
|
-
"readOnly": true,
|
|
2715
|
-
"destructive": false,
|
|
2716
|
-
"idempotent": true,
|
|
2717
|
-
"isESM": true,
|
|
2718
|
-
"relativePath": [
|
|
2719
|
-
"dist",
|
|
2720
|
-
"commands",
|
|
2721
|
-
"env",
|
|
2722
|
-
"pull.js"
|
|
2723
|
-
]
|
|
2724
|
-
},
|
|
2725
|
-
"env:rm": {
|
|
2726
|
-
"aliases": [],
|
|
2727
|
-
"args": {
|
|
2728
|
-
"key": {
|
|
2729
|
-
"description": "Environment variable key to remove.",
|
|
2730
|
-
"name": "key",
|
|
2731
|
-
"required": true
|
|
2732
|
-
}
|
|
2733
|
-
},
|
|
2734
|
-
"description": "Remove environment variable via \"checkly env rm <key>\".",
|
|
2735
|
-
"flags": {
|
|
2736
|
-
"force": {
|
|
2737
|
-
"char": "f",
|
|
2738
|
-
"description": "Skip confirmation prompt.",
|
|
2739
|
-
"name": "force",
|
|
2740
|
-
"allowNo": false,
|
|
2741
|
-
"type": "boolean"
|
|
2742
|
-
}
|
|
2743
|
-
},
|
|
2744
|
-
"hasDynamicHelp": false,
|
|
2745
|
-
"hidden": false,
|
|
2746
|
-
"hiddenAliases": [],
|
|
2747
|
-
"id": "env:rm",
|
|
2748
|
-
"pluginAlias": "checkly",
|
|
2749
|
-
"pluginName": "checkly",
|
|
2750
|
-
"pluginType": "core",
|
|
2751
|
-
"strict": true,
|
|
2752
|
-
"enableJsonFlag": false,
|
|
2753
|
-
"coreCommand": false,
|
|
2754
|
-
"readOnly": false,
|
|
2755
|
-
"destructive": true,
|
|
2756
|
-
"idempotent": false,
|
|
2757
|
-
"isESM": true,
|
|
2758
|
-
"relativePath": [
|
|
2759
|
-
"dist",
|
|
2760
|
-
"commands",
|
|
2761
|
-
"env",
|
|
2762
|
-
"rm.js"
|
|
2355
|
+
"commands",
|
|
2356
|
+
"import",
|
|
2357
|
+
"commit.js"
|
|
2763
2358
|
]
|
|
2764
2359
|
},
|
|
2765
|
-
"
|
|
2360
|
+
"import:plan": {
|
|
2766
2361
|
"aliases": [],
|
|
2767
2362
|
"args": {
|
|
2768
|
-
"
|
|
2769
|
-
"description": "
|
|
2770
|
-
"name": "
|
|
2771
|
-
"required": true
|
|
2772
|
-
},
|
|
2773
|
-
"value": {
|
|
2774
|
-
"description": "Environment variable value.",
|
|
2775
|
-
"name": "value",
|
|
2363
|
+
"resource": {
|
|
2364
|
+
"description": "A specific resource to import.",
|
|
2365
|
+
"name": "resource",
|
|
2776
2366
|
"required": false
|
|
2777
2367
|
}
|
|
2778
2368
|
},
|
|
2779
|
-
"description": "
|
|
2369
|
+
"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.",
|
|
2780
2370
|
"flags": {
|
|
2781
|
-
"
|
|
2782
|
-
"char": "
|
|
2783
|
-
"description": "
|
|
2784
|
-
"name": "
|
|
2371
|
+
"config": {
|
|
2372
|
+
"char": "c",
|
|
2373
|
+
"description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
|
|
2374
|
+
"name": "config",
|
|
2375
|
+
"hasDynamicHelp": false,
|
|
2376
|
+
"multiple": false,
|
|
2377
|
+
"type": "option"
|
|
2378
|
+
},
|
|
2379
|
+
"root": {
|
|
2380
|
+
"description": "The root folder in which to write generated code files.",
|
|
2381
|
+
"name": "root",
|
|
2382
|
+
"default": "__checks__",
|
|
2383
|
+
"hasDynamicHelp": false,
|
|
2384
|
+
"multiple": false,
|
|
2385
|
+
"type": "option"
|
|
2386
|
+
},
|
|
2387
|
+
"preview": {
|
|
2388
|
+
"description": "Preview generated code without creating an actual import plan.",
|
|
2389
|
+
"name": "preview",
|
|
2785
2390
|
"allowNo": false,
|
|
2786
2391
|
"type": "boolean"
|
|
2787
2392
|
},
|
|
2788
|
-
"
|
|
2789
|
-
"
|
|
2790
|
-
"
|
|
2791
|
-
"
|
|
2792
|
-
"locked"
|
|
2793
|
-
],
|
|
2794
|
-
"name": "secret",
|
|
2393
|
+
"debug-import-plan": {
|
|
2394
|
+
"description": "Output the import plan to a file.",
|
|
2395
|
+
"hidden": true,
|
|
2396
|
+
"name": "debug-import-plan",
|
|
2795
2397
|
"allowNo": false,
|
|
2796
2398
|
"type": "boolean"
|
|
2399
|
+
},
|
|
2400
|
+
"debug-import-plan-input-file": {
|
|
2401
|
+
"description": "A file to load an import plan from.",
|
|
2402
|
+
"hidden": true,
|
|
2403
|
+
"name": "debug-import-plan-input-file",
|
|
2404
|
+
"hasDynamicHelp": false,
|
|
2405
|
+
"multiple": false,
|
|
2406
|
+
"type": "option"
|
|
2407
|
+
},
|
|
2408
|
+
"debug-import-plan-output-file": {
|
|
2409
|
+
"description": "The file to output the import plan to.",
|
|
2410
|
+
"hidden": true,
|
|
2411
|
+
"name": "debug-import-plan-output-file",
|
|
2412
|
+
"default": "./debug-import-plan.json",
|
|
2413
|
+
"hasDynamicHelp": false,
|
|
2414
|
+
"multiple": false,
|
|
2415
|
+
"type": "option"
|
|
2797
2416
|
}
|
|
2798
2417
|
},
|
|
2799
2418
|
"hasDynamicHelp": false,
|
|
2800
2419
|
"hidden": false,
|
|
2801
|
-
"hiddenAliases": [
|
|
2802
|
-
|
|
2420
|
+
"hiddenAliases": [
|
|
2421
|
+
"import"
|
|
2422
|
+
],
|
|
2423
|
+
"id": "import:plan",
|
|
2803
2424
|
"pluginAlias": "checkly",
|
|
2804
2425
|
"pluginName": "checkly",
|
|
2805
2426
|
"pluginType": "core",
|
|
2806
|
-
"strict":
|
|
2427
|
+
"strict": false,
|
|
2807
2428
|
"enableJsonFlag": false,
|
|
2808
2429
|
"coreCommand": false,
|
|
2809
|
-
"readOnly":
|
|
2430
|
+
"readOnly": true,
|
|
2810
2431
|
"destructive": false,
|
|
2811
2432
|
"idempotent": true,
|
|
2812
2433
|
"isESM": true,
|
|
2813
2434
|
"relativePath": [
|
|
2814
2435
|
"dist",
|
|
2815
2436
|
"commands",
|
|
2816
|
-
"
|
|
2817
|
-
"
|
|
2437
|
+
"import",
|
|
2438
|
+
"plan.js"
|
|
2818
2439
|
]
|
|
2819
2440
|
},
|
|
2820
2441
|
"incidents:create": {
|
|
@@ -3001,34 +2622,198 @@
|
|
|
3001
2622
|
"required": true
|
|
3002
2623
|
}
|
|
3003
2624
|
},
|
|
3004
|
-
"description": "Resolve an incident.",
|
|
2625
|
+
"description": "Resolve an incident.",
|
|
2626
|
+
"flags": {
|
|
2627
|
+
"message": {
|
|
2628
|
+
"description": "Optional closing note.",
|
|
2629
|
+
"name": "message",
|
|
2630
|
+
"hasDynamicHelp": false,
|
|
2631
|
+
"multiple": false,
|
|
2632
|
+
"type": "option"
|
|
2633
|
+
},
|
|
2634
|
+
"notify-subscribers": {
|
|
2635
|
+
"description": "Notify status page subscribers about this incident update.",
|
|
2636
|
+
"name": "notify-subscribers",
|
|
2637
|
+
"allowNo": true,
|
|
2638
|
+
"type": "boolean"
|
|
2639
|
+
},
|
|
2640
|
+
"output": {
|
|
2641
|
+
"char": "o",
|
|
2642
|
+
"description": "Output format.",
|
|
2643
|
+
"name": "output",
|
|
2644
|
+
"default": "table",
|
|
2645
|
+
"hasDynamicHelp": false,
|
|
2646
|
+
"multiple": false,
|
|
2647
|
+
"options": [
|
|
2648
|
+
"table",
|
|
2649
|
+
"json",
|
|
2650
|
+
"md"
|
|
2651
|
+
],
|
|
2652
|
+
"type": "option"
|
|
2653
|
+
},
|
|
2654
|
+
"force": {
|
|
2655
|
+
"char": "f",
|
|
2656
|
+
"description": "Skip confirmation prompt.",
|
|
2657
|
+
"name": "force",
|
|
2658
|
+
"allowNo": false,
|
|
2659
|
+
"type": "boolean"
|
|
2660
|
+
},
|
|
2661
|
+
"dry-run": {
|
|
2662
|
+
"description": "Preview what would happen without executing.",
|
|
2663
|
+
"name": "dry-run",
|
|
2664
|
+
"allowNo": false,
|
|
2665
|
+
"type": "boolean"
|
|
2666
|
+
}
|
|
2667
|
+
},
|
|
2668
|
+
"hasDynamicHelp": false,
|
|
2669
|
+
"hidden": false,
|
|
2670
|
+
"hiddenAliases": [],
|
|
2671
|
+
"id": "incidents:resolve",
|
|
2672
|
+
"pluginAlias": "checkly",
|
|
2673
|
+
"pluginName": "checkly",
|
|
2674
|
+
"pluginType": "core",
|
|
2675
|
+
"strict": true,
|
|
2676
|
+
"enableJsonFlag": false,
|
|
2677
|
+
"coreCommand": false,
|
|
2678
|
+
"readOnly": false,
|
|
2679
|
+
"destructive": false,
|
|
2680
|
+
"idempotent": false,
|
|
2681
|
+
"isESM": true,
|
|
2682
|
+
"relativePath": [
|
|
2683
|
+
"dist",
|
|
2684
|
+
"commands",
|
|
2685
|
+
"incidents",
|
|
2686
|
+
"resolve.js"
|
|
2687
|
+
]
|
|
2688
|
+
},
|
|
2689
|
+
"incidents:update": {
|
|
2690
|
+
"aliases": [],
|
|
2691
|
+
"args": {
|
|
2692
|
+
"id": {
|
|
2693
|
+
"description": "The incident ID.",
|
|
2694
|
+
"name": "id",
|
|
2695
|
+
"required": true
|
|
2696
|
+
}
|
|
2697
|
+
},
|
|
2698
|
+
"description": "Post a progress update to an incident.",
|
|
2699
|
+
"flags": {
|
|
2700
|
+
"message": {
|
|
2701
|
+
"description": "Update message.",
|
|
2702
|
+
"name": "message",
|
|
2703
|
+
"required": true,
|
|
2704
|
+
"hasDynamicHelp": false,
|
|
2705
|
+
"multiple": false,
|
|
2706
|
+
"type": "option"
|
|
2707
|
+
},
|
|
2708
|
+
"status": {
|
|
2709
|
+
"description": "Incident progress status.",
|
|
2710
|
+
"name": "status",
|
|
2711
|
+
"default": "investigating",
|
|
2712
|
+
"hasDynamicHelp": false,
|
|
2713
|
+
"multiple": false,
|
|
2714
|
+
"options": [
|
|
2715
|
+
"investigating",
|
|
2716
|
+
"identified",
|
|
2717
|
+
"monitoring"
|
|
2718
|
+
],
|
|
2719
|
+
"type": "option"
|
|
2720
|
+
},
|
|
2721
|
+
"severity": {
|
|
2722
|
+
"description": "Update the overall incident severity.",
|
|
2723
|
+
"name": "severity",
|
|
2724
|
+
"hasDynamicHelp": false,
|
|
2725
|
+
"multiple": false,
|
|
2726
|
+
"options": [
|
|
2727
|
+
"minor",
|
|
2728
|
+
"medium",
|
|
2729
|
+
"major",
|
|
2730
|
+
"critical"
|
|
2731
|
+
],
|
|
2732
|
+
"type": "option"
|
|
2733
|
+
},
|
|
2734
|
+
"notify-subscribers": {
|
|
2735
|
+
"description": "Notify status page subscribers about this incident update.",
|
|
2736
|
+
"name": "notify-subscribers",
|
|
2737
|
+
"allowNo": true,
|
|
2738
|
+
"type": "boolean"
|
|
2739
|
+
},
|
|
2740
|
+
"output": {
|
|
2741
|
+
"char": "o",
|
|
2742
|
+
"description": "Output format.",
|
|
2743
|
+
"name": "output",
|
|
2744
|
+
"default": "table",
|
|
2745
|
+
"hasDynamicHelp": false,
|
|
2746
|
+
"multiple": false,
|
|
2747
|
+
"options": [
|
|
2748
|
+
"table",
|
|
2749
|
+
"json",
|
|
2750
|
+
"md"
|
|
2751
|
+
],
|
|
2752
|
+
"type": "option"
|
|
2753
|
+
},
|
|
2754
|
+
"force": {
|
|
2755
|
+
"char": "f",
|
|
2756
|
+
"description": "Skip confirmation prompt.",
|
|
2757
|
+
"name": "force",
|
|
2758
|
+
"allowNo": false,
|
|
2759
|
+
"type": "boolean"
|
|
2760
|
+
},
|
|
2761
|
+
"dry-run": {
|
|
2762
|
+
"description": "Preview what would happen without executing.",
|
|
2763
|
+
"name": "dry-run",
|
|
2764
|
+
"allowNo": false,
|
|
2765
|
+
"type": "boolean"
|
|
2766
|
+
}
|
|
2767
|
+
},
|
|
2768
|
+
"hasDynamicHelp": false,
|
|
2769
|
+
"hidden": false,
|
|
2770
|
+
"hiddenAliases": [],
|
|
2771
|
+
"id": "incidents:update",
|
|
2772
|
+
"pluginAlias": "checkly",
|
|
2773
|
+
"pluginName": "checkly",
|
|
2774
|
+
"pluginType": "core",
|
|
2775
|
+
"strict": true,
|
|
2776
|
+
"enableJsonFlag": false,
|
|
2777
|
+
"coreCommand": false,
|
|
2778
|
+
"readOnly": false,
|
|
2779
|
+
"destructive": false,
|
|
2780
|
+
"idempotent": false,
|
|
2781
|
+
"isESM": true,
|
|
2782
|
+
"relativePath": [
|
|
2783
|
+
"dist",
|
|
2784
|
+
"commands",
|
|
2785
|
+
"incidents",
|
|
2786
|
+
"update.js"
|
|
2787
|
+
]
|
|
2788
|
+
},
|
|
2789
|
+
"members:delete": {
|
|
2790
|
+
"aliases": [],
|
|
2791
|
+
"args": {
|
|
2792
|
+
"member": {
|
|
2793
|
+
"description": "The account member email or user ID.",
|
|
2794
|
+
"name": "member",
|
|
2795
|
+
"required": true
|
|
2796
|
+
}
|
|
2797
|
+
},
|
|
2798
|
+
"description": "Delete an account member.",
|
|
3005
2799
|
"flags": {
|
|
3006
|
-
"
|
|
3007
|
-
"description": "
|
|
3008
|
-
"
|
|
3009
|
-
|
|
3010
|
-
|
|
3011
|
-
"
|
|
3012
|
-
|
|
3013
|
-
"notify-subscribers": {
|
|
3014
|
-
"description": "Notify status page subscribers about this incident update.",
|
|
3015
|
-
"name": "notify-subscribers",
|
|
3016
|
-
"allowNo": true,
|
|
2800
|
+
"email": {
|
|
2801
|
+
"description": "Treat the member argument as an email address.",
|
|
2802
|
+
"exclusive": [
|
|
2803
|
+
"id"
|
|
2804
|
+
],
|
|
2805
|
+
"name": "email",
|
|
2806
|
+
"allowNo": false,
|
|
3017
2807
|
"type": "boolean"
|
|
3018
2808
|
},
|
|
3019
|
-
"
|
|
3020
|
-
"
|
|
3021
|
-
"
|
|
3022
|
-
|
|
3023
|
-
"default": "table",
|
|
3024
|
-
"hasDynamicHelp": false,
|
|
3025
|
-
"multiple": false,
|
|
3026
|
-
"options": [
|
|
3027
|
-
"table",
|
|
3028
|
-
"json",
|
|
3029
|
-
"md"
|
|
2809
|
+
"id": {
|
|
2810
|
+
"description": "Treat the member argument as a user ID.",
|
|
2811
|
+
"exclusive": [
|
|
2812
|
+
"email"
|
|
3030
2813
|
],
|
|
3031
|
-
"
|
|
2814
|
+
"name": "id",
|
|
2815
|
+
"allowNo": false,
|
|
2816
|
+
"type": "boolean"
|
|
3032
2817
|
},
|
|
3033
2818
|
"force": {
|
|
3034
2819
|
"char": "f",
|
|
@@ -3046,8 +2831,10 @@
|
|
|
3046
2831
|
},
|
|
3047
2832
|
"hasDynamicHelp": false,
|
|
3048
2833
|
"hidden": false,
|
|
3049
|
-
"hiddenAliases": [
|
|
3050
|
-
|
|
2834
|
+
"hiddenAliases": [
|
|
2835
|
+
"account members delete"
|
|
2836
|
+
],
|
|
2837
|
+
"id": "members:delete",
|
|
3051
2838
|
"pluginAlias": "checkly",
|
|
3052
2839
|
"pluginName": "checkly",
|
|
3053
2840
|
"pluginType": "core",
|
|
@@ -3055,65 +2842,52 @@
|
|
|
3055
2842
|
"enableJsonFlag": false,
|
|
3056
2843
|
"coreCommand": false,
|
|
3057
2844
|
"readOnly": false,
|
|
3058
|
-
"destructive":
|
|
3059
|
-
"idempotent":
|
|
2845
|
+
"destructive": true,
|
|
2846
|
+
"idempotent": true,
|
|
3060
2847
|
"isESM": true,
|
|
3061
2848
|
"relativePath": [
|
|
3062
2849
|
"dist",
|
|
3063
2850
|
"commands",
|
|
3064
|
-
"
|
|
3065
|
-
"
|
|
2851
|
+
"members",
|
|
2852
|
+
"delete.js"
|
|
3066
2853
|
]
|
|
3067
2854
|
},
|
|
3068
|
-
"
|
|
2855
|
+
"members:update": {
|
|
3069
2856
|
"aliases": [],
|
|
3070
2857
|
"args": {
|
|
3071
|
-
"
|
|
3072
|
-
"description": "The
|
|
3073
|
-
"name": "
|
|
2858
|
+
"member": {
|
|
2859
|
+
"description": "The account member email or user ID.",
|
|
2860
|
+
"name": "member",
|
|
3074
2861
|
"required": true
|
|
3075
2862
|
}
|
|
3076
2863
|
},
|
|
3077
|
-
"description": "
|
|
2864
|
+
"description": "Update an account member role.",
|
|
3078
2865
|
"flags": {
|
|
3079
|
-
"
|
|
3080
|
-
"
|
|
3081
|
-
"
|
|
2866
|
+
"role": {
|
|
2867
|
+
"char": "r",
|
|
2868
|
+
"description": "New member role: admin, read_write, read_run, read_only.",
|
|
2869
|
+
"name": "role",
|
|
3082
2870
|
"required": true,
|
|
3083
2871
|
"hasDynamicHelp": false,
|
|
3084
2872
|
"multiple": false,
|
|
3085
2873
|
"type": "option"
|
|
3086
2874
|
},
|
|
3087
|
-
"
|
|
3088
|
-
"description": "
|
|
3089
|
-
"
|
|
3090
|
-
|
|
3091
|
-
"hasDynamicHelp": false,
|
|
3092
|
-
"multiple": false,
|
|
3093
|
-
"options": [
|
|
3094
|
-
"investigating",
|
|
3095
|
-
"identified",
|
|
3096
|
-
"monitoring"
|
|
2875
|
+
"email": {
|
|
2876
|
+
"description": "Treat the member argument as an email address.",
|
|
2877
|
+
"exclusive": [
|
|
2878
|
+
"id"
|
|
3097
2879
|
],
|
|
3098
|
-
"
|
|
2880
|
+
"name": "email",
|
|
2881
|
+
"allowNo": false,
|
|
2882
|
+
"type": "boolean"
|
|
3099
2883
|
},
|
|
3100
|
-
"
|
|
3101
|
-
"description": "
|
|
3102
|
-
"
|
|
3103
|
-
|
|
3104
|
-
"multiple": false,
|
|
3105
|
-
"options": [
|
|
3106
|
-
"minor",
|
|
3107
|
-
"medium",
|
|
3108
|
-
"major",
|
|
3109
|
-
"critical"
|
|
2884
|
+
"id": {
|
|
2885
|
+
"description": "Treat the member argument as a user ID.",
|
|
2886
|
+
"exclusive": [
|
|
2887
|
+
"email"
|
|
3110
2888
|
],
|
|
3111
|
-
"
|
|
3112
|
-
|
|
3113
|
-
"notify-subscribers": {
|
|
3114
|
-
"description": "Notify status page subscribers about this incident update.",
|
|
3115
|
-
"name": "notify-subscribers",
|
|
3116
|
-
"allowNo": true,
|
|
2889
|
+
"name": "id",
|
|
2890
|
+
"allowNo": false,
|
|
3117
2891
|
"type": "boolean"
|
|
3118
2892
|
},
|
|
3119
2893
|
"output": {
|
|
@@ -3146,8 +2920,10 @@
|
|
|
3146
2920
|
},
|
|
3147
2921
|
"hasDynamicHelp": false,
|
|
3148
2922
|
"hidden": false,
|
|
3149
|
-
"hiddenAliases": [
|
|
3150
|
-
|
|
2923
|
+
"hiddenAliases": [
|
|
2924
|
+
"account members update"
|
|
2925
|
+
],
|
|
2926
|
+
"id": "members:update",
|
|
3151
2927
|
"pluginAlias": "checkly",
|
|
3152
2928
|
"pluginName": "checkly",
|
|
3153
2929
|
"pluginType": "core",
|
|
@@ -3156,12 +2932,12 @@
|
|
|
3156
2932
|
"coreCommand": false,
|
|
3157
2933
|
"readOnly": false,
|
|
3158
2934
|
"destructive": false,
|
|
3159
|
-
"idempotent":
|
|
2935
|
+
"idempotent": true,
|
|
3160
2936
|
"isESM": true,
|
|
3161
2937
|
"relativePath": [
|
|
3162
2938
|
"dist",
|
|
3163
2939
|
"commands",
|
|
3164
|
-
"
|
|
2940
|
+
"members",
|
|
3165
2941
|
"update.js"
|
|
3166
2942
|
]
|
|
3167
2943
|
},
|
|
@@ -3294,55 +3070,151 @@
|
|
|
3294
3070
|
"run.js"
|
|
3295
3071
|
]
|
|
3296
3072
|
},
|
|
3297
|
-
"
|
|
3073
|
+
"env:add": {
|
|
3298
3074
|
"aliases": [],
|
|
3299
3075
|
"args": {
|
|
3300
|
-
"
|
|
3301
|
-
"description": "
|
|
3302
|
-
"name": "
|
|
3076
|
+
"key": {
|
|
3077
|
+
"description": "Environment variable key.",
|
|
3078
|
+
"name": "key",
|
|
3303
3079
|
"required": true
|
|
3080
|
+
},
|
|
3081
|
+
"value": {
|
|
3082
|
+
"description": "Environment variable value.",
|
|
3083
|
+
"name": "value",
|
|
3084
|
+
"required": false
|
|
3304
3085
|
}
|
|
3305
3086
|
},
|
|
3306
|
-
"description": "
|
|
3087
|
+
"description": "Add environment variable via \"checkly env add <key> <value>\".",
|
|
3307
3088
|
"flags": {
|
|
3308
|
-
"
|
|
3309
|
-
"
|
|
3310
|
-
"
|
|
3311
|
-
|
|
3312
|
-
],
|
|
3313
|
-
"name": "email",
|
|
3089
|
+
"locked": {
|
|
3090
|
+
"char": "l",
|
|
3091
|
+
"description": "Indicate that the environment variable will be locked.",
|
|
3092
|
+
"name": "locked",
|
|
3314
3093
|
"allowNo": false,
|
|
3315
3094
|
"type": "boolean"
|
|
3316
3095
|
},
|
|
3317
|
-
"
|
|
3318
|
-
"
|
|
3096
|
+
"secret": {
|
|
3097
|
+
"char": "s",
|
|
3098
|
+
"description": "Indicate that the environment variable will be secret.",
|
|
3319
3099
|
"exclusive": [
|
|
3320
|
-
"
|
|
3100
|
+
"locked"
|
|
3321
3101
|
],
|
|
3322
|
-
"name": "
|
|
3102
|
+
"name": "secret",
|
|
3323
3103
|
"allowNo": false,
|
|
3324
3104
|
"type": "boolean"
|
|
3325
|
-
}
|
|
3105
|
+
}
|
|
3106
|
+
},
|
|
3107
|
+
"hasDynamicHelp": false,
|
|
3108
|
+
"hidden": false,
|
|
3109
|
+
"hiddenAliases": [],
|
|
3110
|
+
"id": "env:add",
|
|
3111
|
+
"pluginAlias": "checkly",
|
|
3112
|
+
"pluginName": "checkly",
|
|
3113
|
+
"pluginType": "core",
|
|
3114
|
+
"strict": true,
|
|
3115
|
+
"enableJsonFlag": false,
|
|
3116
|
+
"coreCommand": false,
|
|
3117
|
+
"readOnly": false,
|
|
3118
|
+
"destructive": false,
|
|
3119
|
+
"idempotent": false,
|
|
3120
|
+
"isESM": true,
|
|
3121
|
+
"relativePath": [
|
|
3122
|
+
"dist",
|
|
3123
|
+
"commands",
|
|
3124
|
+
"env",
|
|
3125
|
+
"add.js"
|
|
3126
|
+
]
|
|
3127
|
+
},
|
|
3128
|
+
"env:ls": {
|
|
3129
|
+
"aliases": [],
|
|
3130
|
+
"args": {},
|
|
3131
|
+
"description": "List all Checkly environment variables via \"checkly env ls\".",
|
|
3132
|
+
"flags": {},
|
|
3133
|
+
"hasDynamicHelp": false,
|
|
3134
|
+
"hidden": false,
|
|
3135
|
+
"hiddenAliases": [],
|
|
3136
|
+
"id": "env:ls",
|
|
3137
|
+
"pluginAlias": "checkly",
|
|
3138
|
+
"pluginName": "checkly",
|
|
3139
|
+
"pluginType": "core",
|
|
3140
|
+
"strict": true,
|
|
3141
|
+
"enableJsonFlag": false,
|
|
3142
|
+
"coreCommand": false,
|
|
3143
|
+
"readOnly": true,
|
|
3144
|
+
"destructive": false,
|
|
3145
|
+
"idempotent": true,
|
|
3146
|
+
"isESM": true,
|
|
3147
|
+
"relativePath": [
|
|
3148
|
+
"dist",
|
|
3149
|
+
"commands",
|
|
3150
|
+
"env",
|
|
3151
|
+
"ls.js"
|
|
3152
|
+
]
|
|
3153
|
+
},
|
|
3154
|
+
"env:pull": {
|
|
3155
|
+
"aliases": [],
|
|
3156
|
+
"args": {
|
|
3157
|
+
"filename": {
|
|
3158
|
+
"default": ".env",
|
|
3159
|
+
"description": "Filename of the generated file.",
|
|
3160
|
+
"name": "filename",
|
|
3161
|
+
"required": false
|
|
3162
|
+
}
|
|
3163
|
+
},
|
|
3164
|
+
"description": "Pull Checkly environment variables via \"checkly env pull <filename>\".",
|
|
3165
|
+
"flags": {
|
|
3326
3166
|
"force": {
|
|
3327
3167
|
"char": "f",
|
|
3328
|
-
"description": "
|
|
3168
|
+
"description": "Force to overwrite existing file.",
|
|
3329
3169
|
"name": "force",
|
|
3330
3170
|
"allowNo": false,
|
|
3331
3171
|
"type": "boolean"
|
|
3332
|
-
}
|
|
3333
|
-
|
|
3334
|
-
|
|
3335
|
-
|
|
3172
|
+
}
|
|
3173
|
+
},
|
|
3174
|
+
"hasDynamicHelp": false,
|
|
3175
|
+
"hidden": false,
|
|
3176
|
+
"hiddenAliases": [],
|
|
3177
|
+
"id": "env:pull",
|
|
3178
|
+
"pluginAlias": "checkly",
|
|
3179
|
+
"pluginName": "checkly",
|
|
3180
|
+
"pluginType": "core",
|
|
3181
|
+
"strict": true,
|
|
3182
|
+
"enableJsonFlag": false,
|
|
3183
|
+
"coreCommand": false,
|
|
3184
|
+
"readOnly": true,
|
|
3185
|
+
"destructive": false,
|
|
3186
|
+
"idempotent": true,
|
|
3187
|
+
"isESM": true,
|
|
3188
|
+
"relativePath": [
|
|
3189
|
+
"dist",
|
|
3190
|
+
"commands",
|
|
3191
|
+
"env",
|
|
3192
|
+
"pull.js"
|
|
3193
|
+
]
|
|
3194
|
+
},
|
|
3195
|
+
"env:rm": {
|
|
3196
|
+
"aliases": [],
|
|
3197
|
+
"args": {
|
|
3198
|
+
"key": {
|
|
3199
|
+
"description": "Environment variable key to remove.",
|
|
3200
|
+
"name": "key",
|
|
3201
|
+
"required": true
|
|
3202
|
+
}
|
|
3203
|
+
},
|
|
3204
|
+
"description": "Remove environment variable via \"checkly env rm <key>\".",
|
|
3205
|
+
"flags": {
|
|
3206
|
+
"force": {
|
|
3207
|
+
"char": "f",
|
|
3208
|
+
"description": "Skip confirmation prompt.",
|
|
3209
|
+
"name": "force",
|
|
3336
3210
|
"allowNo": false,
|
|
3337
3211
|
"type": "boolean"
|
|
3338
3212
|
}
|
|
3339
3213
|
},
|
|
3340
3214
|
"hasDynamicHelp": false,
|
|
3341
3215
|
"hidden": false,
|
|
3342
|
-
"hiddenAliases": [
|
|
3343
|
-
|
|
3344
|
-
],
|
|
3345
|
-
"id": "members:delete",
|
|
3216
|
+
"hiddenAliases": [],
|
|
3217
|
+
"id": "env:rm",
|
|
3346
3218
|
"pluginAlias": "checkly",
|
|
3347
3219
|
"pluginName": "checkly",
|
|
3348
3220
|
"pluginType": "core",
|
|
@@ -3351,87 +3223,53 @@
|
|
|
3351
3223
|
"coreCommand": false,
|
|
3352
3224
|
"readOnly": false,
|
|
3353
3225
|
"destructive": true,
|
|
3354
|
-
"idempotent":
|
|
3226
|
+
"idempotent": false,
|
|
3355
3227
|
"isESM": true,
|
|
3356
3228
|
"relativePath": [
|
|
3357
3229
|
"dist",
|
|
3358
3230
|
"commands",
|
|
3359
|
-
"
|
|
3360
|
-
"
|
|
3231
|
+
"env",
|
|
3232
|
+
"rm.js"
|
|
3361
3233
|
]
|
|
3362
3234
|
},
|
|
3363
|
-
"
|
|
3235
|
+
"env:update": {
|
|
3364
3236
|
"aliases": [],
|
|
3365
3237
|
"args": {
|
|
3366
|
-
"
|
|
3367
|
-
"description": "
|
|
3368
|
-
"name": "
|
|
3238
|
+
"key": {
|
|
3239
|
+
"description": "Environment variable key.",
|
|
3240
|
+
"name": "key",
|
|
3369
3241
|
"required": true
|
|
3242
|
+
},
|
|
3243
|
+
"value": {
|
|
3244
|
+
"description": "Environment variable value.",
|
|
3245
|
+
"name": "value",
|
|
3246
|
+
"required": false
|
|
3370
3247
|
}
|
|
3371
3248
|
},
|
|
3372
|
-
"description": "Update
|
|
3249
|
+
"description": "Update environment variable via \"checkly env update <key> <value>\".",
|
|
3373
3250
|
"flags": {
|
|
3374
|
-
"
|
|
3375
|
-
"char": "
|
|
3376
|
-
"description": "
|
|
3377
|
-
"name": "
|
|
3378
|
-
"required": true,
|
|
3379
|
-
"hasDynamicHelp": false,
|
|
3380
|
-
"multiple": false,
|
|
3381
|
-
"type": "option"
|
|
3382
|
-
},
|
|
3383
|
-
"email": {
|
|
3384
|
-
"description": "Treat the member argument as an email address.",
|
|
3385
|
-
"exclusive": [
|
|
3386
|
-
"id"
|
|
3387
|
-
],
|
|
3388
|
-
"name": "email",
|
|
3251
|
+
"locked": {
|
|
3252
|
+
"char": "l",
|
|
3253
|
+
"description": "Indicate if environment variable is locked.",
|
|
3254
|
+
"name": "locked",
|
|
3389
3255
|
"allowNo": false,
|
|
3390
3256
|
"type": "boolean"
|
|
3391
3257
|
},
|
|
3392
|
-
"
|
|
3393
|
-
"
|
|
3258
|
+
"secret": {
|
|
3259
|
+
"char": "s",
|
|
3260
|
+
"description": "Indicate if environment variable is secret.",
|
|
3394
3261
|
"exclusive": [
|
|
3395
|
-
"
|
|
3396
|
-
],
|
|
3397
|
-
"name": "id",
|
|
3398
|
-
"allowNo": false,
|
|
3399
|
-
"type": "boolean"
|
|
3400
|
-
},
|
|
3401
|
-
"output": {
|
|
3402
|
-
"char": "o",
|
|
3403
|
-
"description": "Output format.",
|
|
3404
|
-
"name": "output",
|
|
3405
|
-
"default": "table",
|
|
3406
|
-
"hasDynamicHelp": false,
|
|
3407
|
-
"multiple": false,
|
|
3408
|
-
"options": [
|
|
3409
|
-
"table",
|
|
3410
|
-
"json",
|
|
3411
|
-
"md"
|
|
3262
|
+
"locked"
|
|
3412
3263
|
],
|
|
3413
|
-
"
|
|
3414
|
-
},
|
|
3415
|
-
"force": {
|
|
3416
|
-
"char": "f",
|
|
3417
|
-
"description": "Skip confirmation prompt.",
|
|
3418
|
-
"name": "force",
|
|
3419
|
-
"allowNo": false,
|
|
3420
|
-
"type": "boolean"
|
|
3421
|
-
},
|
|
3422
|
-
"dry-run": {
|
|
3423
|
-
"description": "Preview what would happen without executing.",
|
|
3424
|
-
"name": "dry-run",
|
|
3264
|
+
"name": "secret",
|
|
3425
3265
|
"allowNo": false,
|
|
3426
3266
|
"type": "boolean"
|
|
3427
3267
|
}
|
|
3428
3268
|
},
|
|
3429
3269
|
"hasDynamicHelp": false,
|
|
3430
3270
|
"hidden": false,
|
|
3431
|
-
"hiddenAliases": [
|
|
3432
|
-
|
|
3433
|
-
],
|
|
3434
|
-
"id": "members:update",
|
|
3271
|
+
"hiddenAliases": [],
|
|
3272
|
+
"id": "env:update",
|
|
3435
3273
|
"pluginAlias": "checkly",
|
|
3436
3274
|
"pluginName": "checkly",
|
|
3437
3275
|
"pluginType": "core",
|
|
@@ -3445,7 +3283,7 @@
|
|
|
3445
3283
|
"relativePath": [
|
|
3446
3284
|
"dist",
|
|
3447
3285
|
"commands",
|
|
3448
|
-
"
|
|
3286
|
+
"env",
|
|
3449
3287
|
"update.js"
|
|
3450
3288
|
]
|
|
3451
3289
|
},
|
|
@@ -3864,7 +3702,169 @@
|
|
|
3864
3702
|
"test-sessions",
|
|
3865
3703
|
"list.js"
|
|
3866
3704
|
]
|
|
3705
|
+
},
|
|
3706
|
+
"debug:parse-file": {
|
|
3707
|
+
"aliases": [],
|
|
3708
|
+
"args": {},
|
|
3709
|
+
"description": "Parses and outputs relevant details of a code file.",
|
|
3710
|
+
"flags": {
|
|
3711
|
+
"file": {
|
|
3712
|
+
"name": "file",
|
|
3713
|
+
"required": true,
|
|
3714
|
+
"hasDynamicHelp": false,
|
|
3715
|
+
"multiple": false,
|
|
3716
|
+
"type": "option"
|
|
3717
|
+
},
|
|
3718
|
+
"restricted": {
|
|
3719
|
+
"name": "restricted",
|
|
3720
|
+
"allowNo": false,
|
|
3721
|
+
"type": "boolean"
|
|
3722
|
+
},
|
|
3723
|
+
"detect-workspace": {
|
|
3724
|
+
"name": "detect-workspace",
|
|
3725
|
+
"allowNo": true,
|
|
3726
|
+
"type": "boolean"
|
|
3727
|
+
},
|
|
3728
|
+
"supported-module": {
|
|
3729
|
+
"name": "supported-module",
|
|
3730
|
+
"default": [],
|
|
3731
|
+
"delimiter": ",",
|
|
3732
|
+
"hasDynamicHelp": false,
|
|
3733
|
+
"multiple": true,
|
|
3734
|
+
"type": "option"
|
|
3735
|
+
},
|
|
3736
|
+
"check-unsupported-modules": {
|
|
3737
|
+
"name": "check-unsupported-modules",
|
|
3738
|
+
"allowNo": false,
|
|
3739
|
+
"type": "boolean"
|
|
3740
|
+
}
|
|
3741
|
+
},
|
|
3742
|
+
"hasDynamicHelp": false,
|
|
3743
|
+
"hidden": true,
|
|
3744
|
+
"hiddenAliases": [],
|
|
3745
|
+
"id": "debug:parse-file",
|
|
3746
|
+
"pluginAlias": "checkly",
|
|
3747
|
+
"pluginName": "checkly",
|
|
3748
|
+
"pluginType": "core",
|
|
3749
|
+
"strict": true,
|
|
3750
|
+
"enableJsonFlag": false,
|
|
3751
|
+
"isESM": true,
|
|
3752
|
+
"relativePath": [
|
|
3753
|
+
"dist",
|
|
3754
|
+
"commands",
|
|
3755
|
+
"debug",
|
|
3756
|
+
"parse-file.js"
|
|
3757
|
+
]
|
|
3758
|
+
},
|
|
3759
|
+
"debug:parse-playwright-config": {
|
|
3760
|
+
"aliases": [],
|
|
3761
|
+
"args": {},
|
|
3762
|
+
"description": "Parses and outputs relevant details of a Playwright configuration file.",
|
|
3763
|
+
"flags": {
|
|
3764
|
+
"file": {
|
|
3765
|
+
"env": "CHECKLY_PLAYWRIGHT_CONFIG_FILE",
|
|
3766
|
+
"name": "file",
|
|
3767
|
+
"default": "/home/runner/work/checkly-cli/checkly-cli/packages/cli/playwright.config.ts",
|
|
3768
|
+
"hasDynamicHelp": false,
|
|
3769
|
+
"multiple": false,
|
|
3770
|
+
"type": "option"
|
|
3771
|
+
}
|
|
3772
|
+
},
|
|
3773
|
+
"hasDynamicHelp": false,
|
|
3774
|
+
"hidden": true,
|
|
3775
|
+
"hiddenAliases": [],
|
|
3776
|
+
"id": "debug:parse-playwright-config",
|
|
3777
|
+
"pluginAlias": "checkly",
|
|
3778
|
+
"pluginName": "checkly",
|
|
3779
|
+
"pluginType": "core",
|
|
3780
|
+
"strict": true,
|
|
3781
|
+
"enableJsonFlag": false,
|
|
3782
|
+
"isESM": true,
|
|
3783
|
+
"relativePath": [
|
|
3784
|
+
"dist",
|
|
3785
|
+
"commands",
|
|
3786
|
+
"debug",
|
|
3787
|
+
"parse-playwright-config.js"
|
|
3788
|
+
]
|
|
3789
|
+
},
|
|
3790
|
+
"debug:parse-project": {
|
|
3791
|
+
"aliases": [],
|
|
3792
|
+
"args": {},
|
|
3793
|
+
"description": "Parses a Checkly project.",
|
|
3794
|
+
"flags": {
|
|
3795
|
+
"config": {
|
|
3796
|
+
"char": "c",
|
|
3797
|
+
"description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
|
|
3798
|
+
"env": "CHECKLY_CONFIG_FILE",
|
|
3799
|
+
"name": "config",
|
|
3800
|
+
"hasDynamicHelp": false,
|
|
3801
|
+
"multiple": false,
|
|
3802
|
+
"type": "option"
|
|
3803
|
+
},
|
|
3804
|
+
"default-runtime": {
|
|
3805
|
+
"description": "The default runtime to use if none is specified.",
|
|
3806
|
+
"env": "CHECKLY_DEFAULT_RUNTIME",
|
|
3807
|
+
"name": "default-runtime",
|
|
3808
|
+
"default": "2025.04",
|
|
3809
|
+
"hasDynamicHelp": false,
|
|
3810
|
+
"multiple": false,
|
|
3811
|
+
"type": "option"
|
|
3812
|
+
},
|
|
3813
|
+
"verify-runtime-dependencies": {
|
|
3814
|
+
"description": "[default: true] Return an error if checks import dependencies that are not supported by the selected runtime.",
|
|
3815
|
+
"env": "CHECKLY_VERIFY_RUNTIME_DEPENDENCIES",
|
|
3816
|
+
"name": "verify-runtime-dependencies",
|
|
3817
|
+
"allowNo": true,
|
|
3818
|
+
"type": "boolean"
|
|
3819
|
+
},
|
|
3820
|
+
"emulate-pw-test": {
|
|
3821
|
+
"description": "Pretend to be the pw-test command. Affects validation.",
|
|
3822
|
+
"env": "CHECKLY_EMULATE_PW_TEST",
|
|
3823
|
+
"name": "emulate-pw-test",
|
|
3824
|
+
"allowNo": false,
|
|
3825
|
+
"type": "boolean"
|
|
3826
|
+
},
|
|
3827
|
+
"include": {
|
|
3828
|
+
"description": "File patterns to include when bundling the test project (e.g., \"utils/**/*\").",
|
|
3829
|
+
"name": "include",
|
|
3830
|
+
"default": [],
|
|
3831
|
+
"hasDynamicHelp": false,
|
|
3832
|
+
"multiple": true,
|
|
3833
|
+
"type": "option"
|
|
3834
|
+
},
|
|
3835
|
+
"inject-private-location": {
|
|
3836
|
+
"description": "Pretend that the given private location exists (e.g., \"70c4ded4-2229-45a7-acf4-6b1eb56a86df:my-external-private-location\").",
|
|
3837
|
+
"name": "inject-private-location",
|
|
3838
|
+
"default": [],
|
|
3839
|
+
"delimiter": ",",
|
|
3840
|
+
"hasDynamicHelp": false,
|
|
3841
|
+
"multiple": true,
|
|
3842
|
+
"type": "option"
|
|
3843
|
+
},
|
|
3844
|
+
"stats": {
|
|
3845
|
+
"description": "Print parse/bundle/synthesize timing and heap usage to stderr. Run with NODE_OPTIONS=--expose-gc to also report the retained (post-GC) heap.",
|
|
3846
|
+
"name": "stats",
|
|
3847
|
+
"allowNo": false,
|
|
3848
|
+
"type": "boolean"
|
|
3849
|
+
}
|
|
3850
|
+
},
|
|
3851
|
+
"hasDynamicHelp": false,
|
|
3852
|
+
"hidden": true,
|
|
3853
|
+
"hiddenAliases": [],
|
|
3854
|
+
"id": "debug:parse-project",
|
|
3855
|
+
"pluginAlias": "checkly",
|
|
3856
|
+
"pluginName": "checkly",
|
|
3857
|
+
"pluginType": "core",
|
|
3858
|
+
"strict": true,
|
|
3859
|
+
"enableJsonFlag": false,
|
|
3860
|
+
"isESM": true,
|
|
3861
|
+
"relativePath": [
|
|
3862
|
+
"dist",
|
|
3863
|
+
"commands",
|
|
3864
|
+
"debug",
|
|
3865
|
+
"parse-project.js"
|
|
3866
|
+
]
|
|
3867
3867
|
}
|
|
3868
3868
|
},
|
|
3869
|
-
"version": "9.
|
|
3869
|
+
"version": "9.1.0-prerelease-d080e8d"
|
|
3870
3870
|
}
|