checkly 8.6.0 → 8.7.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 (62) hide show
  1. package/dist/ai-context/context.d.ts +2 -2
  2. package/dist/ai-context/context.js +1 -1
  3. package/dist/ai-context/context.js.map +1 -1
  4. package/dist/ai-context/skills-command/references/manage-account-members.md +26 -8
  5. package/dist/ai-context/skills-command/references/manage.md +1 -1
  6. package/dist/commands/checks/get.js +18 -17
  7. package/dist/commands/checks/get.js.map +1 -1
  8. package/dist/commands/members/delete.d.ts +18 -0
  9. package/dist/commands/members/delete.js +73 -0
  10. package/dist/commands/members/delete.js.map +1 -0
  11. package/dist/commands/members/update.d.ts +21 -0
  12. package/dist/commands/members/update.js +104 -0
  13. package/dist/commands/members/update.js.map +1 -0
  14. package/dist/commands/{account/members.d.ts → members.d.ts} +3 -2
  15. package/dist/commands/{account/members.js → members.js} +5 -4
  16. package/dist/commands/members.js.map +1 -0
  17. package/dist/commands/test-sessions/get.d.ts +3 -0
  18. package/dist/commands/test-sessions/get.js +45 -22
  19. package/dist/commands/test-sessions/get.js.map +1 -1
  20. package/dist/formatters/account-members.js +13 -14
  21. package/dist/formatters/account-members.js.map +1 -1
  22. package/dist/formatters/account-plan.js +19 -11
  23. package/dist/formatters/account-plan.js.map +1 -1
  24. package/dist/formatters/alert-channels.js +20 -22
  25. package/dist/formatters/alert-channels.js.map +1 -1
  26. package/dist/formatters/batch-stats.js +19 -17
  27. package/dist/formatters/batch-stats.js.map +1 -1
  28. package/dist/formatters/check-result-detail.d.ts +2 -1
  29. package/dist/formatters/check-result-detail.js +9 -1
  30. package/dist/formatters/check-result-detail.js.map +1 -1
  31. package/dist/formatters/checks.js +21 -14
  32. package/dist/formatters/checks.js.map +1 -1
  33. package/dist/formatters/incidents.js +7 -10
  34. package/dist/formatters/incidents.js.map +1 -1
  35. package/dist/formatters/render.d.ts +9 -0
  36. package/dist/formatters/render.js +13 -0
  37. package/dist/formatters/render.js.map +1 -1
  38. package/dist/formatters/status-pages.js +29 -36
  39. package/dist/formatters/status-pages.js.map +1 -1
  40. package/dist/formatters/test-sessions.js +32 -49
  41. package/dist/formatters/test-sessions.js.map +1 -1
  42. package/dist/helpers/account-member-target.d.ts +14 -0
  43. package/dist/helpers/account-member-target.js +37 -0
  44. package/dist/helpers/account-member-target.js.map +1 -0
  45. package/dist/rest/account-members.d.ts +6 -0
  46. package/dist/rest/account-members.js +7 -0
  47. package/dist/rest/account-members.js.map +1 -1
  48. package/dist/rest/test-sessions.d.ts +2 -0
  49. package/dist/rest/test-sessions.js +3 -0
  50. package/dist/rest/test-sessions.js.map +1 -1
  51. package/dist/services/check-parser/package-files/lockfile-package-version.d.ts +85 -0
  52. package/dist/services/check-parser/package-files/lockfile-package-version.js +317 -0
  53. package/dist/services/check-parser/package-files/lockfile-package-version.js.map +1 -0
  54. package/dist/services/check-parser/package-files/package-manager.d.ts +19 -0
  55. package/dist/services/check-parser/package-files/package-manager.js +52 -0
  56. package/dist/services/check-parser/package-files/package-manager.js.map +1 -1
  57. package/dist/services/playwright-project-bundler.d.ts +11 -0
  58. package/dist/services/playwright-project-bundler.js +120 -4
  59. package/dist/services/playwright-project-bundler.js.map +1 -1
  60. package/oclif.manifest.json +515 -351
  61. package/package.json +6 -2
  62. package/dist/commands/account/members.js.map +0 -1
@@ -407,6 +407,98 @@
407
407
  "logout.js"
408
408
  ]
409
409
  },
410
+ "members": {
411
+ "aliases": [],
412
+ "args": {},
413
+ "description": "List account members and pending invites.",
414
+ "flags": {
415
+ "search": {
416
+ "char": "s",
417
+ "description": "Search members and invites by name or email.",
418
+ "name": "search",
419
+ "hasDynamicHelp": false,
420
+ "multiple": false,
421
+ "type": "option"
422
+ },
423
+ "type": {
424
+ "description": "Filter by item type: member or invite.",
425
+ "name": "type",
426
+ "hasDynamicHelp": false,
427
+ "multiple": false,
428
+ "type": "option"
429
+ },
430
+ "role": {
431
+ "description": "Filter by member or invite role: owner, admin, read_write, read_run, read_only.",
432
+ "name": "role",
433
+ "hasDynamicHelp": false,
434
+ "multiple": false,
435
+ "type": "option"
436
+ },
437
+ "status": {
438
+ "description": "Filter by member or invite status: active, pending, expired.",
439
+ "name": "status",
440
+ "hasDynamicHelp": false,
441
+ "multiple": false,
442
+ "type": "option"
443
+ },
444
+ "limit": {
445
+ "char": "l",
446
+ "description": "Number of account members to return (1-100). Enables cursor pagination.",
447
+ "name": "limit",
448
+ "hasDynamicHelp": false,
449
+ "multiple": false,
450
+ "type": "option"
451
+ },
452
+ "next-id": {
453
+ "description": "Cursor for next page. Requires --limit.",
454
+ "name": "next-id",
455
+ "hasDynamicHelp": false,
456
+ "multiple": false,
457
+ "type": "option"
458
+ },
459
+ "hide-id": {
460
+ "description": "Hide member and invite IDs in table output.",
461
+ "name": "hide-id",
462
+ "allowNo": false,
463
+ "type": "boolean"
464
+ },
465
+ "output": {
466
+ "char": "o",
467
+ "description": "Output format.",
468
+ "name": "output",
469
+ "default": "table",
470
+ "hasDynamicHelp": false,
471
+ "multiple": false,
472
+ "options": [
473
+ "table",
474
+ "json",
475
+ "md"
476
+ ],
477
+ "type": "option"
478
+ }
479
+ },
480
+ "hasDynamicHelp": false,
481
+ "hidden": false,
482
+ "hiddenAliases": [
483
+ "account members"
484
+ ],
485
+ "id": "members",
486
+ "pluginAlias": "checkly",
487
+ "pluginName": "checkly",
488
+ "pluginType": "core",
489
+ "strict": true,
490
+ "enableJsonFlag": false,
491
+ "coreCommand": false,
492
+ "readOnly": true,
493
+ "destructive": false,
494
+ "idempotent": true,
495
+ "isESM": true,
496
+ "relativePath": [
497
+ "dist",
498
+ "commands",
499
+ "members.js"
500
+ ]
501
+ },
410
502
  "pw-test": {
411
503
  "aliases": [],
412
504
  "args": {},
@@ -1108,97 +1200,6 @@
1108
1200
  "whoami.js"
1109
1201
  ]
1110
1202
  },
1111
- "account:members": {
1112
- "aliases": [],
1113
- "args": {},
1114
- "description": "List account members and pending invites.",
1115
- "flags": {
1116
- "search": {
1117
- "char": "s",
1118
- "description": "Search members and invites by name or email.",
1119
- "name": "search",
1120
- "hasDynamicHelp": false,
1121
- "multiple": false,
1122
- "type": "option"
1123
- },
1124
- "type": {
1125
- "description": "Filter by item type: member or invite.",
1126
- "name": "type",
1127
- "hasDynamicHelp": false,
1128
- "multiple": false,
1129
- "type": "option"
1130
- },
1131
- "role": {
1132
- "description": "Filter by member or invite role: owner, admin, read_write, read_run, read_only.",
1133
- "name": "role",
1134
- "hasDynamicHelp": false,
1135
- "multiple": false,
1136
- "type": "option"
1137
- },
1138
- "status": {
1139
- "description": "Filter by member or invite status: active, pending, expired.",
1140
- "name": "status",
1141
- "hasDynamicHelp": false,
1142
- "multiple": false,
1143
- "type": "option"
1144
- },
1145
- "limit": {
1146
- "char": "l",
1147
- "description": "Number of account members to return (1-100). Enables cursor pagination.",
1148
- "name": "limit",
1149
- "hasDynamicHelp": false,
1150
- "multiple": false,
1151
- "type": "option"
1152
- },
1153
- "next-id": {
1154
- "description": "Cursor for next page. Requires --limit.",
1155
- "name": "next-id",
1156
- "hasDynamicHelp": false,
1157
- "multiple": false,
1158
- "type": "option"
1159
- },
1160
- "hide-id": {
1161
- "description": "Hide member and invite IDs in table output.",
1162
- "name": "hide-id",
1163
- "allowNo": false,
1164
- "type": "boolean"
1165
- },
1166
- "output": {
1167
- "char": "o",
1168
- "description": "Output format.",
1169
- "name": "output",
1170
- "default": "table",
1171
- "hasDynamicHelp": false,
1172
- "multiple": false,
1173
- "options": [
1174
- "table",
1175
- "json",
1176
- "md"
1177
- ],
1178
- "type": "option"
1179
- }
1180
- },
1181
- "hasDynamicHelp": false,
1182
- "hidden": false,
1183
- "hiddenAliases": [],
1184
- "id": "account:members",
1185
- "pluginAlias": "checkly",
1186
- "pluginName": "checkly",
1187
- "pluginType": "core",
1188
- "strict": true,
1189
- "enableJsonFlag": false,
1190
- "coreCommand": false,
1191
- "readOnly": true,
1192
- "destructive": false,
1193
- "idempotent": true,
1194
- "isESM": true,
1195
- "relativePath": [
1196
- "dist",
1197
- "commands",
1198
- "account",
1199
- "members.js"
1200
- ]
1201
- },
1202
1203
  "account:plan": {
1203
1204
  "aliases": [],
1204
1205
  "args": {
@@ -1468,199 +1469,37 @@
1468
1469
  "logs.js"
1469
1470
  ]
1470
1471
  },
1471
- "debug:parse-file": {
1472
+ "checks:get": {
1472
1473
  "aliases": [],
1473
- "args": {},
1474
- "description": "Parses and outputs relevant details of a code file.",
1474
+ "args": {
1475
+ "id": {
1476
+ "description": "The ID of the check to retrieve.",
1477
+ "name": "id",
1478
+ "required": true
1479
+ }
1480
+ },
1481
+ "description": "Get details of a specific check, including recent results. Use --result to drill into a specific result.",
1475
1482
  "flags": {
1476
- "file": {
1477
- "name": "file",
1478
- "required": true,
1483
+ "result": {
1484
+ "char": "r",
1485
+ "description": "Show details for a specific result ID.",
1486
+ "name": "result",
1479
1487
  "hasDynamicHelp": false,
1480
1488
  "multiple": false,
1481
1489
  "type": "option"
1482
1490
  },
1483
- "restricted": {
1484
- "name": "restricted",
1485
- "allowNo": false,
1486
- "type": "boolean"
1487
- },
1488
- "detect-workspace": {
1489
- "name": "detect-workspace",
1490
- "allowNo": true,
1491
- "type": "boolean"
1492
- },
1493
- "supported-module": {
1494
- "name": "supported-module",
1495
- "default": [],
1496
- "delimiter": ",",
1491
+ "error-group": {
1492
+ "char": "e",
1493
+ "description": "Show full details for a specific error group ID.",
1494
+ "name": "error-group",
1497
1495
  "hasDynamicHelp": false,
1498
- "multiple": true,
1496
+ "multiple": false,
1499
1497
  "type": "option"
1500
1498
  },
1501
- "check-unsupported-modules": {
1502
- "name": "check-unsupported-modules",
1503
- "allowNo": false,
1504
- "type": "boolean"
1505
- }
1506
- },
1507
- "hasDynamicHelp": false,
1508
- "hidden": true,
1509
- "hiddenAliases": [],
1510
- "id": "debug:parse-file",
1511
- "pluginAlias": "checkly",
1512
- "pluginName": "checkly",
1513
- "pluginType": "core",
1514
- "strict": true,
1515
- "enableJsonFlag": false,
1516
- "isESM": true,
1517
- "relativePath": [
1518
- "dist",
1519
- "commands",
1520
- "debug",
1521
- "parse-file.js"
1522
- ]
1523
- },
1524
- "debug:parse-playwright-config": {
1525
- "aliases": [],
1526
- "args": {},
1527
- "description": "Parses and outputs relevant details of a Playwright configuration file.",
1528
- "flags": {
1529
- "file": {
1530
- "env": "CHECKLY_PLAYWRIGHT_CONFIG_FILE",
1531
- "name": "file",
1532
- "default": "/home/runner/work/checkly-cli/checkly-cli/packages/cli/playwright.config.ts",
1533
- "hasDynamicHelp": false,
1534
- "multiple": false,
1535
- "type": "option"
1536
- }
1537
- },
1538
- "hasDynamicHelp": false,
1539
- "hidden": true,
1540
- "hiddenAliases": [],
1541
- "id": "debug:parse-playwright-config",
1542
- "pluginAlias": "checkly",
1543
- "pluginName": "checkly",
1544
- "pluginType": "core",
1545
- "strict": true,
1546
- "enableJsonFlag": false,
1547
- "isESM": true,
1548
- "relativePath": [
1549
- "dist",
1550
- "commands",
1551
- "debug",
1552
- "parse-playwright-config.js"
1553
- ]
1554
- },
1555
- "debug:parse-project": {
1556
- "aliases": [],
1557
- "args": {},
1558
- "description": "Parses a Checkly project.",
1559
- "flags": {
1560
- "config": {
1561
- "char": "c",
1562
- "description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
1563
- "env": "CHECKLY_CONFIG_FILE",
1564
- "name": "config",
1565
- "hasDynamicHelp": false,
1566
- "multiple": false,
1567
- "type": "option"
1568
- },
1569
- "default-runtime": {
1570
- "description": "The default runtime to use if none is specified.",
1571
- "env": "CHECKLY_DEFAULT_RUNTIME",
1572
- "name": "default-runtime",
1573
- "default": "2025.04",
1574
- "hasDynamicHelp": false,
1575
- "multiple": false,
1576
- "type": "option"
1577
- },
1578
- "verify-runtime-dependencies": {
1579
- "description": "[default: true] Return an error if checks import dependencies that are not supported by the selected runtime.",
1580
- "env": "CHECKLY_VERIFY_RUNTIME_DEPENDENCIES",
1581
- "name": "verify-runtime-dependencies",
1582
- "allowNo": true,
1583
- "type": "boolean"
1584
- },
1585
- "emulate-pw-test": {
1586
- "description": "Pretend to be the pw-test command. Affects validation.",
1587
- "env": "CHECKLY_EMULATE_PW_TEST",
1588
- "name": "emulate-pw-test",
1589
- "allowNo": false,
1590
- "type": "boolean"
1591
- },
1592
- "include": {
1593
- "description": "File patterns to include when bundling the test project (e.g., \"utils/**/*\").",
1594
- "name": "include",
1595
- "default": [],
1596
- "hasDynamicHelp": false,
1597
- "multiple": true,
1598
- "type": "option"
1599
- },
1600
- "inject-private-location": {
1601
- "description": "Pretend that the given private location exists (e.g., \"70c4ded4-2229-45a7-acf4-6b1eb56a86df:my-external-private-location\").",
1602
- "name": "inject-private-location",
1603
- "default": [],
1604
- "delimiter": ",",
1605
- "hasDynamicHelp": false,
1606
- "multiple": true,
1607
- "type": "option"
1608
- },
1609
- "stats": {
1610
- "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.",
1611
- "name": "stats",
1612
- "allowNo": false,
1613
- "type": "boolean"
1614
- }
1615
- },
1616
- "hasDynamicHelp": false,
1617
- "hidden": true,
1618
- "hiddenAliases": [],
1619
- "id": "debug:parse-project",
1620
- "pluginAlias": "checkly",
1621
- "pluginName": "checkly",
1622
- "pluginType": "core",
1623
- "strict": true,
1624
- "enableJsonFlag": false,
1625
- "isESM": true,
1626
- "relativePath": [
1627
- "dist",
1628
- "commands",
1629
- "debug",
1630
- "parse-project.js"
1631
- ]
1632
- },
1633
- "checks:get": {
1634
- "aliases": [],
1635
- "args": {
1636
- "id": {
1637
- "description": "The ID of the check to retrieve.",
1638
- "name": "id",
1639
- "required": true
1640
- }
1641
- },
1642
- "description": "Get details of a specific check, including recent results. Use --result to drill into a specific result.",
1643
- "flags": {
1644
- "result": {
1645
- "char": "r",
1646
- "description": "Show details for a specific result ID.",
1647
- "name": "result",
1648
- "hasDynamicHelp": false,
1649
- "multiple": false,
1650
- "type": "option"
1651
- },
1652
- "error-group": {
1653
- "char": "e",
1654
- "description": "Show full details for a specific error group ID.",
1655
- "name": "error-group",
1656
- "hasDynamicHelp": false,
1657
- "multiple": false,
1658
- "type": "option"
1659
- },
1660
- "results-limit": {
1661
- "description": "Number of recent results to show.",
1662
- "name": "results-limit",
1663
- "default": 10,
1499
+ "results-limit": {
1500
+ "description": "Number of recent results to show.",
1501
+ "name": "results-limit",
1502
+ "default": 10,
1664
1503
  "hasDynamicHelp": false,
1665
1504
  "multiple": false,
1666
1505
  "type": "option"
@@ -1878,109 +1717,271 @@
1878
1717
  },
1879
1718
  "description": "Show analytics stats for your checks.",
1880
1719
  "flags": {
1881
- "range": {
1882
- "char": "r",
1883
- "description": "Time range for stats.",
1884
- "name": "range",
1885
- "default": "last24Hours",
1720
+ "range": {
1721
+ "char": "r",
1722
+ "description": "Time range for stats.",
1723
+ "name": "range",
1724
+ "default": "last24Hours",
1725
+ "hasDynamicHelp": false,
1726
+ "multiple": false,
1727
+ "options": [
1728
+ "last24Hours",
1729
+ "last7Days",
1730
+ "thisWeek",
1731
+ "lastWeek",
1732
+ "lastMonth"
1733
+ ],
1734
+ "type": "option"
1735
+ },
1736
+ "limit": {
1737
+ "char": "l",
1738
+ "description": "Number of checks to return (1-100).",
1739
+ "name": "limit",
1740
+ "default": 25,
1741
+ "hasDynamicHelp": false,
1742
+ "multiple": false,
1743
+ "type": "option"
1744
+ },
1745
+ "page": {
1746
+ "char": "p",
1747
+ "description": "Page number.",
1748
+ "name": "page",
1749
+ "default": 1,
1750
+ "hasDynamicHelp": false,
1751
+ "multiple": false,
1752
+ "type": "option"
1753
+ },
1754
+ "tag": {
1755
+ "char": "t",
1756
+ "description": "Filter by tag. Can be specified multiple times.",
1757
+ "name": "tag",
1758
+ "hasDynamicHelp": false,
1759
+ "multiple": true,
1760
+ "type": "option"
1761
+ },
1762
+ "search": {
1763
+ "char": "s",
1764
+ "description": "Filter checks by name (case-insensitive).",
1765
+ "name": "search",
1766
+ "hasDynamicHelp": false,
1767
+ "multiple": false,
1768
+ "type": "option"
1769
+ },
1770
+ "type": {
1771
+ "description": "Filter by check type.",
1772
+ "name": "type",
1773
+ "hasDynamicHelp": false,
1774
+ "multiple": false,
1775
+ "options": [
1776
+ "API",
1777
+ "BROWSER",
1778
+ "HEARTBEAT",
1779
+ "MULTI_STEP",
1780
+ "PLAYWRIGHT",
1781
+ "TCP",
1782
+ "ICMP",
1783
+ "DNS",
1784
+ "URL",
1785
+ "AGENTIC"
1786
+ ],
1787
+ "type": "option"
1788
+ },
1789
+ "output": {
1790
+ "char": "o",
1791
+ "description": "Output format.",
1792
+ "name": "output",
1793
+ "default": "table",
1794
+ "hasDynamicHelp": false,
1795
+ "multiple": false,
1796
+ "options": [
1797
+ "table",
1798
+ "json",
1799
+ "md"
1800
+ ],
1801
+ "type": "option"
1802
+ }
1803
+ },
1804
+ "hasDynamicHelp": false,
1805
+ "hidden": false,
1806
+ "hiddenAliases": [],
1807
+ "id": "checks:stats",
1808
+ "pluginAlias": "checkly",
1809
+ "pluginName": "checkly",
1810
+ "pluginType": "core",
1811
+ "strict": false,
1812
+ "enableJsonFlag": false,
1813
+ "coreCommand": false,
1814
+ "readOnly": true,
1815
+ "destructive": false,
1816
+ "idempotent": true,
1817
+ "isESM": true,
1818
+ "relativePath": [
1819
+ "dist",
1820
+ "commands",
1821
+ "checks",
1822
+ "stats.js"
1823
+ ]
1824
+ },
1825
+ "debug:parse-file": {
1826
+ "aliases": [],
1827
+ "args": {},
1828
+ "description": "Parses and outputs relevant details of a code file.",
1829
+ "flags": {
1830
+ "file": {
1831
+ "name": "file",
1832
+ "required": true,
1833
+ "hasDynamicHelp": false,
1834
+ "multiple": false,
1835
+ "type": "option"
1836
+ },
1837
+ "restricted": {
1838
+ "name": "restricted",
1839
+ "allowNo": false,
1840
+ "type": "boolean"
1841
+ },
1842
+ "detect-workspace": {
1843
+ "name": "detect-workspace",
1844
+ "allowNo": true,
1845
+ "type": "boolean"
1846
+ },
1847
+ "supported-module": {
1848
+ "name": "supported-module",
1849
+ "default": [],
1850
+ "delimiter": ",",
1851
+ "hasDynamicHelp": false,
1852
+ "multiple": true,
1853
+ "type": "option"
1854
+ },
1855
+ "check-unsupported-modules": {
1856
+ "name": "check-unsupported-modules",
1857
+ "allowNo": false,
1858
+ "type": "boolean"
1859
+ }
1860
+ },
1861
+ "hasDynamicHelp": false,
1862
+ "hidden": true,
1863
+ "hiddenAliases": [],
1864
+ "id": "debug:parse-file",
1865
+ "pluginAlias": "checkly",
1866
+ "pluginName": "checkly",
1867
+ "pluginType": "core",
1868
+ "strict": true,
1869
+ "enableJsonFlag": false,
1870
+ "isESM": true,
1871
+ "relativePath": [
1872
+ "dist",
1873
+ "commands",
1874
+ "debug",
1875
+ "parse-file.js"
1876
+ ]
1877
+ },
1878
+ "debug:parse-playwright-config": {
1879
+ "aliases": [],
1880
+ "args": {},
1881
+ "description": "Parses and outputs relevant details of a Playwright configuration file.",
1882
+ "flags": {
1883
+ "file": {
1884
+ "env": "CHECKLY_PLAYWRIGHT_CONFIG_FILE",
1885
+ "name": "file",
1886
+ "default": "/home/runner/work/checkly-cli/checkly-cli/packages/cli/playwright.config.ts",
1887
+ "hasDynamicHelp": false,
1888
+ "multiple": false,
1889
+ "type": "option"
1890
+ }
1891
+ },
1892
+ "hasDynamicHelp": false,
1893
+ "hidden": true,
1894
+ "hiddenAliases": [],
1895
+ "id": "debug:parse-playwright-config",
1896
+ "pluginAlias": "checkly",
1897
+ "pluginName": "checkly",
1898
+ "pluginType": "core",
1899
+ "strict": true,
1900
+ "enableJsonFlag": false,
1901
+ "isESM": true,
1902
+ "relativePath": [
1903
+ "dist",
1904
+ "commands",
1905
+ "debug",
1906
+ "parse-playwright-config.js"
1907
+ ]
1908
+ },
1909
+ "debug:parse-project": {
1910
+ "aliases": [],
1911
+ "args": {},
1912
+ "description": "Parses a Checkly project.",
1913
+ "flags": {
1914
+ "config": {
1915
+ "char": "c",
1916
+ "description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
1917
+ "env": "CHECKLY_CONFIG_FILE",
1918
+ "name": "config",
1886
1919
  "hasDynamicHelp": false,
1887
1920
  "multiple": false,
1888
- "options": [
1889
- "last24Hours",
1890
- "last7Days",
1891
- "thisWeek",
1892
- "lastWeek",
1893
- "lastMonth"
1894
- ],
1895
1921
  "type": "option"
1896
1922
  },
1897
- "limit": {
1898
- "char": "l",
1899
- "description": "Number of checks to return (1-100).",
1900
- "name": "limit",
1901
- "default": 25,
1923
+ "default-runtime": {
1924
+ "description": "The default runtime to use if none is specified.",
1925
+ "env": "CHECKLY_DEFAULT_RUNTIME",
1926
+ "name": "default-runtime",
1927
+ "default": "2025.04",
1902
1928
  "hasDynamicHelp": false,
1903
1929
  "multiple": false,
1904
1930
  "type": "option"
1905
1931
  },
1906
- "page": {
1907
- "char": "p",
1908
- "description": "Page number.",
1909
- "name": "page",
1910
- "default": 1,
1911
- "hasDynamicHelp": false,
1912
- "multiple": false,
1913
- "type": "option"
1932
+ "verify-runtime-dependencies": {
1933
+ "description": "[default: true] Return an error if checks import dependencies that are not supported by the selected runtime.",
1934
+ "env": "CHECKLY_VERIFY_RUNTIME_DEPENDENCIES",
1935
+ "name": "verify-runtime-dependencies",
1936
+ "allowNo": true,
1937
+ "type": "boolean"
1914
1938
  },
1915
- "tag": {
1916
- "char": "t",
1917
- "description": "Filter by tag. Can be specified multiple times.",
1918
- "name": "tag",
1919
- "hasDynamicHelp": false,
1920
- "multiple": true,
1921
- "type": "option"
1939
+ "emulate-pw-test": {
1940
+ "description": "Pretend to be the pw-test command. Affects validation.",
1941
+ "env": "CHECKLY_EMULATE_PW_TEST",
1942
+ "name": "emulate-pw-test",
1943
+ "allowNo": false,
1944
+ "type": "boolean"
1922
1945
  },
1923
- "search": {
1924
- "char": "s",
1925
- "description": "Filter checks by name (case-insensitive).",
1926
- "name": "search",
1946
+ "include": {
1947
+ "description": "File patterns to include when bundling the test project (e.g., \"utils/**/*\").",
1948
+ "name": "include",
1949
+ "default": [],
1927
1950
  "hasDynamicHelp": false,
1928
- "multiple": false,
1951
+ "multiple": true,
1929
1952
  "type": "option"
1930
1953
  },
1931
- "type": {
1932
- "description": "Filter by check type.",
1933
- "name": "type",
1954
+ "inject-private-location": {
1955
+ "description": "Pretend that the given private location exists (e.g., \"70c4ded4-2229-45a7-acf4-6b1eb56a86df:my-external-private-location\").",
1956
+ "name": "inject-private-location",
1957
+ "default": [],
1958
+ "delimiter": ",",
1934
1959
  "hasDynamicHelp": false,
1935
- "multiple": false,
1936
- "options": [
1937
- "API",
1938
- "BROWSER",
1939
- "HEARTBEAT",
1940
- "MULTI_STEP",
1941
- "PLAYWRIGHT",
1942
- "TCP",
1943
- "ICMP",
1944
- "DNS",
1945
- "URL",
1946
- "AGENTIC"
1947
- ],
1960
+ "multiple": true,
1948
1961
  "type": "option"
1949
1962
  },
1950
- "output": {
1951
- "char": "o",
1952
- "description": "Output format.",
1953
- "name": "output",
1954
- "default": "table",
1955
- "hasDynamicHelp": false,
1956
- "multiple": false,
1957
- "options": [
1958
- "table",
1959
- "json",
1960
- "md"
1961
- ],
1962
- "type": "option"
1963
+ "stats": {
1964
+ "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.",
1965
+ "name": "stats",
1966
+ "allowNo": false,
1967
+ "type": "boolean"
1963
1968
  }
1964
1969
  },
1965
1970
  "hasDynamicHelp": false,
1966
- "hidden": false,
1971
+ "hidden": true,
1967
1972
  "hiddenAliases": [],
1968
- "id": "checks:stats",
1973
+ "id": "debug:parse-project",
1969
1974
  "pluginAlias": "checkly",
1970
1975
  "pluginName": "checkly",
1971
1976
  "pluginType": "core",
1972
- "strict": false,
1977
+ "strict": true,
1973
1978
  "enableJsonFlag": false,
1974
- "coreCommand": false,
1975
- "readOnly": true,
1976
- "destructive": false,
1977
- "idempotent": true,
1978
1979
  "isESM": true,
1979
1980
  "relativePath": [
1980
1981
  "dist",
1981
1982
  "commands",
1982
- "checks",
1983
- "stats.js"
1983
+ "debug",
1984
+ "parse-project.js"
1984
1985
  ]
1985
1986
  },
1986
1987
  "env:add": {
@@ -2740,6 +2741,161 @@
2740
2741
  "update.js"
2741
2742
  ]
2742
2743
  },
2744
+ "members:delete": {
2745
+ "aliases": [],
2746
+ "args": {
2747
+ "member": {
2748
+ "description": "The account member email or user ID.",
2749
+ "name": "member",
2750
+ "required": true
2751
+ }
2752
+ },
2753
+ "description": "Delete an account member.",
2754
+ "flags": {
2755
+ "email": {
2756
+ "description": "Treat the member argument as an email address.",
2757
+ "exclusive": [
2758
+ "id"
2759
+ ],
2760
+ "name": "email",
2761
+ "allowNo": false,
2762
+ "type": "boolean"
2763
+ },
2764
+ "id": {
2765
+ "description": "Treat the member argument as a user ID.",
2766
+ "exclusive": [
2767
+ "email"
2768
+ ],
2769
+ "name": "id",
2770
+ "allowNo": false,
2771
+ "type": "boolean"
2772
+ },
2773
+ "force": {
2774
+ "char": "f",
2775
+ "description": "Skip confirmation prompt.",
2776
+ "name": "force",
2777
+ "allowNo": false,
2778
+ "type": "boolean"
2779
+ },
2780
+ "dry-run": {
2781
+ "description": "Preview what would happen without executing.",
2782
+ "name": "dry-run",
2783
+ "allowNo": false,
2784
+ "type": "boolean"
2785
+ }
2786
+ },
2787
+ "hasDynamicHelp": false,
2788
+ "hidden": false,
2789
+ "hiddenAliases": [
2790
+ "account members delete"
2791
+ ],
2792
+ "id": "members:delete",
2793
+ "pluginAlias": "checkly",
2794
+ "pluginName": "checkly",
2795
+ "pluginType": "core",
2796
+ "strict": true,
2797
+ "enableJsonFlag": false,
2798
+ "coreCommand": false,
2799
+ "readOnly": false,
2800
+ "destructive": true,
2801
+ "idempotent": true,
2802
+ "isESM": true,
2803
+ "relativePath": [
2804
+ "dist",
2805
+ "commands",
2806
+ "members",
2807
+ "delete.js"
2808
+ ]
2809
+ },
2810
+ "members:update": {
2811
+ "aliases": [],
2812
+ "args": {
2813
+ "member": {
2814
+ "description": "The account member email or user ID.",
2815
+ "name": "member",
2816
+ "required": true
2817
+ }
2818
+ },
2819
+ "description": "Update an account member role.",
2820
+ "flags": {
2821
+ "role": {
2822
+ "char": "r",
2823
+ "description": "New member role: admin, read_write, read_run, read_only.",
2824
+ "name": "role",
2825
+ "required": true,
2826
+ "hasDynamicHelp": false,
2827
+ "multiple": false,
2828
+ "type": "option"
2829
+ },
2830
+ "email": {
2831
+ "description": "Treat the member argument as an email address.",
2832
+ "exclusive": [
2833
+ "id"
2834
+ ],
2835
+ "name": "email",
2836
+ "allowNo": false,
2837
+ "type": "boolean"
2838
+ },
2839
+ "id": {
2840
+ "description": "Treat the member argument as a user ID.",
2841
+ "exclusive": [
2842
+ "email"
2843
+ ],
2844
+ "name": "id",
2845
+ "allowNo": false,
2846
+ "type": "boolean"
2847
+ },
2848
+ "output": {
2849
+ "char": "o",
2850
+ "description": "Output format.",
2851
+ "name": "output",
2852
+ "default": "table",
2853
+ "hasDynamicHelp": false,
2854
+ "multiple": false,
2855
+ "options": [
2856
+ "table",
2857
+ "json",
2858
+ "md"
2859
+ ],
2860
+ "type": "option"
2861
+ },
2862
+ "force": {
2863
+ "char": "f",
2864
+ "description": "Skip confirmation prompt.",
2865
+ "name": "force",
2866
+ "allowNo": false,
2867
+ "type": "boolean"
2868
+ },
2869
+ "dry-run": {
2870
+ "description": "Preview what would happen without executing.",
2871
+ "name": "dry-run",
2872
+ "allowNo": false,
2873
+ "type": "boolean"
2874
+ }
2875
+ },
2876
+ "hasDynamicHelp": false,
2877
+ "hidden": false,
2878
+ "hiddenAliases": [
2879
+ "account members update"
2880
+ ],
2881
+ "id": "members:update",
2882
+ "pluginAlias": "checkly",
2883
+ "pluginName": "checkly",
2884
+ "pluginType": "core",
2885
+ "strict": true,
2886
+ "enableJsonFlag": false,
2887
+ "coreCommand": false,
2888
+ "readOnly": false,
2889
+ "destructive": false,
2890
+ "idempotent": true,
2891
+ "isESM": true,
2892
+ "relativePath": [
2893
+ "dist",
2894
+ "commands",
2895
+ "members",
2896
+ "update.js"
2897
+ ]
2898
+ },
2743
2899
  "rca:get": {
2744
2900
  "aliases": [],
2745
2901
  "args": {
@@ -3083,6 +3239,14 @@
3083
3239
  },
3084
3240
  "description": "Get details of a recorded test session, including result error groups for RCA.",
3085
3241
  "flags": {
3242
+ "result": {
3243
+ "char": "r",
3244
+ "description": "Show details for a specific test session result ID.",
3245
+ "name": "result",
3246
+ "hasDynamicHelp": false,
3247
+ "multiple": false,
3248
+ "type": "option"
3249
+ },
3086
3250
  "error-group": {
3087
3251
  "description": "Show details for a test session error group ID from this session.",
3088
3252
  "name": "error-group",
@@ -3272,5 +3436,5 @@
3272
3436
  ]
3273
3437
  }
3274
3438
  },
3275
- "version": "8.6.0"
3439
+ "version": "8.7.0"
3276
3440
  }