checkly 8.4.0 → 8.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ai-context/checkly.rules.md +153 -1
- package/dist/ai-context/context.d.ts +13 -1
- package/dist/ai-context/context.js +14 -1
- package/dist/ai-context/context.js.map +1 -1
- package/dist/ai-context/public-skills/checkly/SKILL.md +3 -1
- package/dist/ai-context/skills-command/references/configure-api-checks.md +1 -0
- package/dist/ai-context/skills-command/references/configure-browser-checks.md +1 -0
- package/dist/ai-context/skills-command/references/configure-check-groups.md +1 -0
- package/dist/ai-context/skills-command/references/configure-environment.md +92 -0
- package/dist/ai-context/skills-command/references/configure-multistep-checks.md +1 -0
- package/dist/ai-context/skills-command/references/configure-playwright-checks.md +50 -0
- package/dist/ai-context/skills-command/references/configure.md +6 -1
- package/dist/ai-context/skills-command/references/investigate-test-sessions.md +125 -0
- package/dist/ai-context/skills-command/references/investigate.md +3 -0
- package/dist/commands/alert-channels/get.d.ts +14 -0
- package/dist/commands/alert-channels/get.js +50 -0
- package/dist/commands/alert-channels/get.js.map +1 -0
- package/dist/commands/alert-channels/list.d.ts +13 -0
- package/dist/commands/alert-channels/list.js +64 -0
- package/dist/commands/alert-channels/list.js.map +1 -0
- package/dist/commands/alert-channels/logs.d.ts +19 -0
- package/dist/commands/alert-channels/logs.js +91 -0
- package/dist/commands/alert-channels/logs.js.map +1 -0
- package/dist/commands/rca/run.d.ts +1 -0
- package/dist/commands/rca/run.js +6 -3
- package/dist/commands/rca/run.js.map +1 -1
- package/dist/commands/test-sessions/get.d.ts +1 -0
- package/dist/commands/test-sessions/get.js +28 -1
- package/dist/commands/test-sessions/get.js.map +1 -1
- package/dist/commands/test-sessions/list.d.ts +22 -0
- package/dist/commands/test-sessions/list.js +190 -0
- package/dist/commands/test-sessions/list.js.map +1 -0
- package/dist/constructs/playwright-check.d.ts +13 -5
- package/dist/constructs/playwright-check.js +3 -1
- package/dist/constructs/playwright-check.js.map +1 -1
- package/dist/formatters/alert-channels.d.ts +15 -0
- package/dist/formatters/alert-channels.js +259 -0
- package/dist/formatters/alert-channels.js.map +1 -0
- package/dist/formatters/checks.js +11 -19
- package/dist/formatters/checks.js.map +1 -1
- package/dist/formatters/render.d.ts +7 -0
- package/dist/formatters/render.js +73 -0
- package/dist/formatters/render.js.map +1 -1
- package/dist/formatters/test-sessions.d.ts +4 -1
- package/dist/formatters/test-sessions.js +93 -0
- package/dist/formatters/test-sessions.js.map +1 -1
- package/dist/helpers/number.d.ts +3 -0
- package/dist/helpers/number.js +20 -0
- package/dist/helpers/number.js.map +1 -0
- package/dist/rest/alert-channels.d.ts +52 -0
- package/dist/rest/alert-channels.js +23 -0
- package/dist/rest/alert-channels.js.map +1 -0
- package/dist/rest/alert-notifications.d.ts +39 -0
- package/dist/rest/alert-notifications.js +19 -0
- package/dist/rest/alert-notifications.js.map +1 -0
- package/dist/rest/api.d.ts +4 -0
- package/dist/rest/api.js +4 -0
- package/dist/rest/api.js.map +1 -1
- package/dist/rest/rca.d.ts +2 -2
- package/dist/rest/rca.js +4 -4
- package/dist/rest/rca.js.map +1 -1
- package/dist/rest/test-sessions.d.ts +51 -0
- package/dist/rest/test-sessions.js +24 -1
- package/dist/rest/test-sessions.js.map +1 -1
- package/oclif.manifest.json +571 -237
- package/package.json +4 -1
package/oclif.manifest.json
CHANGED
|
@@ -1272,94 +1272,17 @@
|
|
|
1272
1272
|
"plan.js"
|
|
1273
1273
|
]
|
|
1274
1274
|
},
|
|
1275
|
-
"
|
|
1275
|
+
"alert-channels:get": {
|
|
1276
1276
|
"aliases": [],
|
|
1277
1277
|
"args": {
|
|
1278
1278
|
"id": {
|
|
1279
|
-
"description": "The
|
|
1279
|
+
"description": "The alert channel ID to retrieve.",
|
|
1280
1280
|
"name": "id",
|
|
1281
1281
|
"required": true
|
|
1282
1282
|
}
|
|
1283
1283
|
},
|
|
1284
|
-
"description": "Get details of
|
|
1284
|
+
"description": "Get details of an alert channel.",
|
|
1285
1285
|
"flags": {
|
|
1286
|
-
"result": {
|
|
1287
|
-
"char": "r",
|
|
1288
|
-
"description": "Show details for a specific result ID.",
|
|
1289
|
-
"name": "result",
|
|
1290
|
-
"hasDynamicHelp": false,
|
|
1291
|
-
"multiple": false,
|
|
1292
|
-
"type": "option"
|
|
1293
|
-
},
|
|
1294
|
-
"error-group": {
|
|
1295
|
-
"char": "e",
|
|
1296
|
-
"description": "Show full details for a specific error group ID.",
|
|
1297
|
-
"name": "error-group",
|
|
1298
|
-
"hasDynamicHelp": false,
|
|
1299
|
-
"multiple": false,
|
|
1300
|
-
"type": "option"
|
|
1301
|
-
},
|
|
1302
|
-
"results-limit": {
|
|
1303
|
-
"description": "Number of recent results to show.",
|
|
1304
|
-
"name": "results-limit",
|
|
1305
|
-
"default": 10,
|
|
1306
|
-
"hasDynamicHelp": false,
|
|
1307
|
-
"multiple": false,
|
|
1308
|
-
"type": "option"
|
|
1309
|
-
},
|
|
1310
|
-
"results-cursor": {
|
|
1311
|
-
"description": "Cursor for results pagination (from previous output).",
|
|
1312
|
-
"name": "results-cursor",
|
|
1313
|
-
"hasDynamicHelp": false,
|
|
1314
|
-
"multiple": false,
|
|
1315
|
-
"type": "option"
|
|
1316
|
-
},
|
|
1317
|
-
"stats-range": {
|
|
1318
|
-
"description": "Time range for stats.",
|
|
1319
|
-
"name": "stats-range",
|
|
1320
|
-
"default": "last24Hours",
|
|
1321
|
-
"hasDynamicHelp": false,
|
|
1322
|
-
"multiple": false,
|
|
1323
|
-
"options": [
|
|
1324
|
-
"last24Hours",
|
|
1325
|
-
"last7Days",
|
|
1326
|
-
"last30Days",
|
|
1327
|
-
"thisWeek",
|
|
1328
|
-
"thisMonth",
|
|
1329
|
-
"lastWeek",
|
|
1330
|
-
"lastMonth"
|
|
1331
|
-
],
|
|
1332
|
-
"type": "option"
|
|
1333
|
-
},
|
|
1334
|
-
"group-by": {
|
|
1335
|
-
"description": "Group stats by dimension.",
|
|
1336
|
-
"name": "group-by",
|
|
1337
|
-
"hasDynamicHelp": false,
|
|
1338
|
-
"multiple": false,
|
|
1339
|
-
"options": [
|
|
1340
|
-
"location",
|
|
1341
|
-
"statusCode"
|
|
1342
|
-
],
|
|
1343
|
-
"type": "option"
|
|
1344
|
-
},
|
|
1345
|
-
"metrics": {
|
|
1346
|
-
"description": "Comma-separated list of metrics to show (overrides defaults).",
|
|
1347
|
-
"name": "metrics",
|
|
1348
|
-
"hasDynamicHelp": false,
|
|
1349
|
-
"multiple": false,
|
|
1350
|
-
"type": "option"
|
|
1351
|
-
},
|
|
1352
|
-
"filter-status": {
|
|
1353
|
-
"description": "Only include runs with this status in stats.",
|
|
1354
|
-
"name": "filter-status",
|
|
1355
|
-
"hasDynamicHelp": false,
|
|
1356
|
-
"multiple": false,
|
|
1357
|
-
"options": [
|
|
1358
|
-
"success",
|
|
1359
|
-
"failure"
|
|
1360
|
-
],
|
|
1361
|
-
"type": "option"
|
|
1362
|
-
},
|
|
1363
1286
|
"output": {
|
|
1364
1287
|
"char": "o",
|
|
1365
1288
|
"description": "Output format.",
|
|
@@ -1378,7 +1301,7 @@
|
|
|
1378
1301
|
"hasDynamicHelp": false,
|
|
1379
1302
|
"hidden": false,
|
|
1380
1303
|
"hiddenAliases": [],
|
|
1381
|
-
"id": "
|
|
1304
|
+
"id": "alert-channels:get",
|
|
1382
1305
|
"pluginAlias": "checkly",
|
|
1383
1306
|
"pluginName": "checkly",
|
|
1384
1307
|
"pluginType": "core",
|
|
@@ -1392,18 +1315,18 @@
|
|
|
1392
1315
|
"relativePath": [
|
|
1393
1316
|
"dist",
|
|
1394
1317
|
"commands",
|
|
1395
|
-
"
|
|
1318
|
+
"alert-channels",
|
|
1396
1319
|
"get.js"
|
|
1397
1320
|
]
|
|
1398
1321
|
},
|
|
1399
|
-
"
|
|
1322
|
+
"alert-channels:list": {
|
|
1400
1323
|
"aliases": [],
|
|
1401
1324
|
"args": {},
|
|
1402
|
-
"description": "List all
|
|
1325
|
+
"description": "List all alert channels in your account.",
|
|
1403
1326
|
"flags": {
|
|
1404
1327
|
"limit": {
|
|
1405
1328
|
"char": "l",
|
|
1406
|
-
"description": "Number of
|
|
1329
|
+
"description": "Number of alert channels to return (1-100).",
|
|
1407
1330
|
"name": "limit",
|
|
1408
1331
|
"default": 25,
|
|
1409
1332
|
"hasDynamicHelp": false,
|
|
@@ -1419,60 +1342,6 @@
|
|
|
1419
1342
|
"multiple": false,
|
|
1420
1343
|
"type": "option"
|
|
1421
1344
|
},
|
|
1422
|
-
"tag": {
|
|
1423
|
-
"char": "t",
|
|
1424
|
-
"description": "Filter by tag. Can be specified multiple times.",
|
|
1425
|
-
"name": "tag",
|
|
1426
|
-
"delimiter": ",",
|
|
1427
|
-
"hasDynamicHelp": false,
|
|
1428
|
-
"multiple": true,
|
|
1429
|
-
"type": "option"
|
|
1430
|
-
},
|
|
1431
|
-
"search": {
|
|
1432
|
-
"char": "s",
|
|
1433
|
-
"description": "Filter checks by name (case-insensitive).",
|
|
1434
|
-
"name": "search",
|
|
1435
|
-
"hasDynamicHelp": false,
|
|
1436
|
-
"multiple": false,
|
|
1437
|
-
"type": "option"
|
|
1438
|
-
},
|
|
1439
|
-
"type": {
|
|
1440
|
-
"description": "Filter by check type.",
|
|
1441
|
-
"name": "type",
|
|
1442
|
-
"hasDynamicHelp": false,
|
|
1443
|
-
"multiple": false,
|
|
1444
|
-
"options": [
|
|
1445
|
-
"API",
|
|
1446
|
-
"BROWSER",
|
|
1447
|
-
"HEARTBEAT",
|
|
1448
|
-
"MULTI_STEP",
|
|
1449
|
-
"PLAYWRIGHT",
|
|
1450
|
-
"TCP",
|
|
1451
|
-
"ICMP",
|
|
1452
|
-
"DNS",
|
|
1453
|
-
"URL",
|
|
1454
|
-
"AGENTIC"
|
|
1455
|
-
],
|
|
1456
|
-
"type": "option"
|
|
1457
|
-
},
|
|
1458
|
-
"status": {
|
|
1459
|
-
"description": "Filter by check status.",
|
|
1460
|
-
"name": "status",
|
|
1461
|
-
"hasDynamicHelp": false,
|
|
1462
|
-
"multiple": false,
|
|
1463
|
-
"options": [
|
|
1464
|
-
"passing",
|
|
1465
|
-
"failing",
|
|
1466
|
-
"degraded"
|
|
1467
|
-
],
|
|
1468
|
-
"type": "option"
|
|
1469
|
-
},
|
|
1470
|
-
"hide-id": {
|
|
1471
|
-
"description": "Hide check IDs in table output.",
|
|
1472
|
-
"name": "hide-id",
|
|
1473
|
-
"allowNo": false,
|
|
1474
|
-
"type": "boolean"
|
|
1475
|
-
},
|
|
1476
1345
|
"output": {
|
|
1477
1346
|
"char": "o",
|
|
1478
1347
|
"description": "Output format.",
|
|
@@ -1491,7 +1360,7 @@
|
|
|
1491
1360
|
"hasDynamicHelp": false,
|
|
1492
1361
|
"hidden": false,
|
|
1493
1362
|
"hiddenAliases": [],
|
|
1494
|
-
"id": "
|
|
1363
|
+
"id": "alert-channels:list",
|
|
1495
1364
|
"pluginAlias": "checkly",
|
|
1496
1365
|
"pluginName": "checkly",
|
|
1497
1366
|
"pluginType": "core",
|
|
@@ -1505,40 +1374,24 @@
|
|
|
1505
1374
|
"relativePath": [
|
|
1506
1375
|
"dist",
|
|
1507
1376
|
"commands",
|
|
1508
|
-
"
|
|
1377
|
+
"alert-channels",
|
|
1509
1378
|
"list.js"
|
|
1510
1379
|
]
|
|
1511
1380
|
},
|
|
1512
|
-
"
|
|
1381
|
+
"alert-channels:logs": {
|
|
1513
1382
|
"aliases": [],
|
|
1514
1383
|
"args": {
|
|
1515
|
-
"
|
|
1516
|
-
"description": "
|
|
1517
|
-
"name": "
|
|
1518
|
-
"required":
|
|
1384
|
+
"id": {
|
|
1385
|
+
"description": "The alert channel ID to retrieve logs for.",
|
|
1386
|
+
"name": "id",
|
|
1387
|
+
"required": true
|
|
1519
1388
|
}
|
|
1520
1389
|
},
|
|
1521
|
-
"description": "
|
|
1390
|
+
"description": "List notification logs for an alert channel.",
|
|
1522
1391
|
"flags": {
|
|
1523
|
-
"range": {
|
|
1524
|
-
"char": "r",
|
|
1525
|
-
"description": "Time range for stats.",
|
|
1526
|
-
"name": "range",
|
|
1527
|
-
"default": "last24Hours",
|
|
1528
|
-
"hasDynamicHelp": false,
|
|
1529
|
-
"multiple": false,
|
|
1530
|
-
"options": [
|
|
1531
|
-
"last24Hours",
|
|
1532
|
-
"last7Days",
|
|
1533
|
-
"thisWeek",
|
|
1534
|
-
"lastWeek",
|
|
1535
|
-
"lastMonth"
|
|
1536
|
-
],
|
|
1537
|
-
"type": "option"
|
|
1538
|
-
},
|
|
1539
1392
|
"limit": {
|
|
1540
1393
|
"char": "l",
|
|
1541
|
-
"description": "Number of
|
|
1394
|
+
"description": "Number of logs to return (1-100).",
|
|
1542
1395
|
"name": "limit",
|
|
1543
1396
|
"default": 25,
|
|
1544
1397
|
"hasDynamicHelp": false,
|
|
@@ -1554,38 +1407,28 @@
|
|
|
1554
1407
|
"multiple": false,
|
|
1555
1408
|
"type": "option"
|
|
1556
1409
|
},
|
|
1557
|
-
"
|
|
1558
|
-
"
|
|
1559
|
-
"
|
|
1560
|
-
"name": "tag",
|
|
1410
|
+
"from": {
|
|
1411
|
+
"description": "Unix timestamp for the start of the log window.",
|
|
1412
|
+
"name": "from",
|
|
1561
1413
|
"hasDynamicHelp": false,
|
|
1562
|
-
"multiple":
|
|
1414
|
+
"multiple": false,
|
|
1563
1415
|
"type": "option"
|
|
1564
1416
|
},
|
|
1565
|
-
"
|
|
1566
|
-
"
|
|
1567
|
-
"
|
|
1568
|
-
"name": "search",
|
|
1417
|
+
"to": {
|
|
1418
|
+
"description": "Unix timestamp for the end of the log window.",
|
|
1419
|
+
"name": "to",
|
|
1569
1420
|
"hasDynamicHelp": false,
|
|
1570
1421
|
"multiple": false,
|
|
1571
1422
|
"type": "option"
|
|
1572
1423
|
},
|
|
1573
|
-
"
|
|
1574
|
-
"
|
|
1575
|
-
"
|
|
1424
|
+
"status": {
|
|
1425
|
+
"char": "s",
|
|
1426
|
+
"description": "Filter logs by status.",
|
|
1427
|
+
"name": "status",
|
|
1576
1428
|
"hasDynamicHelp": false,
|
|
1577
1429
|
"multiple": false,
|
|
1578
1430
|
"options": [
|
|
1579
|
-
"
|
|
1580
|
-
"BROWSER",
|
|
1581
|
-
"HEARTBEAT",
|
|
1582
|
-
"MULTI_STEP",
|
|
1583
|
-
"PLAYWRIGHT",
|
|
1584
|
-
"TCP",
|
|
1585
|
-
"ICMP",
|
|
1586
|
-
"DNS",
|
|
1587
|
-
"URL",
|
|
1588
|
-
"AGENTIC"
|
|
1431
|
+
"failed"
|
|
1589
1432
|
],
|
|
1590
1433
|
"type": "option"
|
|
1591
1434
|
},
|
|
@@ -1607,11 +1450,11 @@
|
|
|
1607
1450
|
"hasDynamicHelp": false,
|
|
1608
1451
|
"hidden": false,
|
|
1609
1452
|
"hiddenAliases": [],
|
|
1610
|
-
"id": "
|
|
1453
|
+
"id": "alert-channels:logs",
|
|
1611
1454
|
"pluginAlias": "checkly",
|
|
1612
1455
|
"pluginName": "checkly",
|
|
1613
1456
|
"pluginType": "core",
|
|
1614
|
-
"strict":
|
|
1457
|
+
"strict": true,
|
|
1615
1458
|
"enableJsonFlag": false,
|
|
1616
1459
|
"coreCommand": false,
|
|
1617
1460
|
"readOnly": true,
|
|
@@ -1621,8 +1464,8 @@
|
|
|
1621
1464
|
"relativePath": [
|
|
1622
1465
|
"dist",
|
|
1623
1466
|
"commands",
|
|
1624
|
-
"
|
|
1625
|
-
"
|
|
1467
|
+
"alert-channels",
|
|
1468
|
+
"logs.js"
|
|
1626
1469
|
]
|
|
1627
1470
|
},
|
|
1628
1471
|
"debug:parse-file": {
|
|
@@ -1693,92 +1536,445 @@
|
|
|
1693
1536
|
}
|
|
1694
1537
|
},
|
|
1695
1538
|
"hasDynamicHelp": false,
|
|
1696
|
-
"hidden": true,
|
|
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
|
+
},
|
|
1610
|
+
"hasDynamicHelp": false,
|
|
1611
|
+
"hidden": true,
|
|
1612
|
+
"hiddenAliases": [],
|
|
1613
|
+
"id": "debug:parse-project",
|
|
1614
|
+
"pluginAlias": "checkly",
|
|
1615
|
+
"pluginName": "checkly",
|
|
1616
|
+
"pluginType": "core",
|
|
1617
|
+
"strict": true,
|
|
1618
|
+
"enableJsonFlag": false,
|
|
1619
|
+
"isESM": true,
|
|
1620
|
+
"relativePath": [
|
|
1621
|
+
"dist",
|
|
1622
|
+
"commands",
|
|
1623
|
+
"debug",
|
|
1624
|
+
"parse-project.js"
|
|
1625
|
+
]
|
|
1626
|
+
},
|
|
1627
|
+
"checks:get": {
|
|
1628
|
+
"aliases": [],
|
|
1629
|
+
"args": {
|
|
1630
|
+
"id": {
|
|
1631
|
+
"description": "The ID of the check to retrieve.",
|
|
1632
|
+
"name": "id",
|
|
1633
|
+
"required": true
|
|
1634
|
+
}
|
|
1635
|
+
},
|
|
1636
|
+
"description": "Get details of a specific check, including recent results. Use --result to drill into a specific result.",
|
|
1637
|
+
"flags": {
|
|
1638
|
+
"result": {
|
|
1639
|
+
"char": "r",
|
|
1640
|
+
"description": "Show details for a specific result ID.",
|
|
1641
|
+
"name": "result",
|
|
1642
|
+
"hasDynamicHelp": false,
|
|
1643
|
+
"multiple": false,
|
|
1644
|
+
"type": "option"
|
|
1645
|
+
},
|
|
1646
|
+
"error-group": {
|
|
1647
|
+
"char": "e",
|
|
1648
|
+
"description": "Show full details for a specific error group ID.",
|
|
1649
|
+
"name": "error-group",
|
|
1650
|
+
"hasDynamicHelp": false,
|
|
1651
|
+
"multiple": false,
|
|
1652
|
+
"type": "option"
|
|
1653
|
+
},
|
|
1654
|
+
"results-limit": {
|
|
1655
|
+
"description": "Number of recent results to show.",
|
|
1656
|
+
"name": "results-limit",
|
|
1657
|
+
"default": 10,
|
|
1658
|
+
"hasDynamicHelp": false,
|
|
1659
|
+
"multiple": false,
|
|
1660
|
+
"type": "option"
|
|
1661
|
+
},
|
|
1662
|
+
"results-cursor": {
|
|
1663
|
+
"description": "Cursor for results pagination (from previous output).",
|
|
1664
|
+
"name": "results-cursor",
|
|
1665
|
+
"hasDynamicHelp": false,
|
|
1666
|
+
"multiple": false,
|
|
1667
|
+
"type": "option"
|
|
1668
|
+
},
|
|
1669
|
+
"stats-range": {
|
|
1670
|
+
"description": "Time range for stats.",
|
|
1671
|
+
"name": "stats-range",
|
|
1672
|
+
"default": "last24Hours",
|
|
1673
|
+
"hasDynamicHelp": false,
|
|
1674
|
+
"multiple": false,
|
|
1675
|
+
"options": [
|
|
1676
|
+
"last24Hours",
|
|
1677
|
+
"last7Days",
|
|
1678
|
+
"last30Days",
|
|
1679
|
+
"thisWeek",
|
|
1680
|
+
"thisMonth",
|
|
1681
|
+
"lastWeek",
|
|
1682
|
+
"lastMonth"
|
|
1683
|
+
],
|
|
1684
|
+
"type": "option"
|
|
1685
|
+
},
|
|
1686
|
+
"group-by": {
|
|
1687
|
+
"description": "Group stats by dimension.",
|
|
1688
|
+
"name": "group-by",
|
|
1689
|
+
"hasDynamicHelp": false,
|
|
1690
|
+
"multiple": false,
|
|
1691
|
+
"options": [
|
|
1692
|
+
"location",
|
|
1693
|
+
"statusCode"
|
|
1694
|
+
],
|
|
1695
|
+
"type": "option"
|
|
1696
|
+
},
|
|
1697
|
+
"metrics": {
|
|
1698
|
+
"description": "Comma-separated list of metrics to show (overrides defaults).",
|
|
1699
|
+
"name": "metrics",
|
|
1700
|
+
"hasDynamicHelp": false,
|
|
1701
|
+
"multiple": false,
|
|
1702
|
+
"type": "option"
|
|
1703
|
+
},
|
|
1704
|
+
"filter-status": {
|
|
1705
|
+
"description": "Only include runs with this status in stats.",
|
|
1706
|
+
"name": "filter-status",
|
|
1707
|
+
"hasDynamicHelp": false,
|
|
1708
|
+
"multiple": false,
|
|
1709
|
+
"options": [
|
|
1710
|
+
"success",
|
|
1711
|
+
"failure"
|
|
1712
|
+
],
|
|
1713
|
+
"type": "option"
|
|
1714
|
+
},
|
|
1715
|
+
"output": {
|
|
1716
|
+
"char": "o",
|
|
1717
|
+
"description": "Output format.",
|
|
1718
|
+
"name": "output",
|
|
1719
|
+
"default": "detail",
|
|
1720
|
+
"hasDynamicHelp": false,
|
|
1721
|
+
"multiple": false,
|
|
1722
|
+
"options": [
|
|
1723
|
+
"detail",
|
|
1724
|
+
"json",
|
|
1725
|
+
"md"
|
|
1726
|
+
],
|
|
1727
|
+
"type": "option"
|
|
1728
|
+
}
|
|
1729
|
+
},
|
|
1730
|
+
"hasDynamicHelp": false,
|
|
1731
|
+
"hidden": false,
|
|
1732
|
+
"hiddenAliases": [],
|
|
1733
|
+
"id": "checks:get",
|
|
1734
|
+
"pluginAlias": "checkly",
|
|
1735
|
+
"pluginName": "checkly",
|
|
1736
|
+
"pluginType": "core",
|
|
1737
|
+
"strict": true,
|
|
1738
|
+
"enableJsonFlag": false,
|
|
1739
|
+
"coreCommand": false,
|
|
1740
|
+
"readOnly": true,
|
|
1741
|
+
"destructive": false,
|
|
1742
|
+
"idempotent": true,
|
|
1743
|
+
"isESM": true,
|
|
1744
|
+
"relativePath": [
|
|
1745
|
+
"dist",
|
|
1746
|
+
"commands",
|
|
1747
|
+
"checks",
|
|
1748
|
+
"get.js"
|
|
1749
|
+
]
|
|
1750
|
+
},
|
|
1751
|
+
"checks:list": {
|
|
1752
|
+
"aliases": [],
|
|
1753
|
+
"args": {},
|
|
1754
|
+
"description": "List all checks in your account.",
|
|
1755
|
+
"flags": {
|
|
1756
|
+
"limit": {
|
|
1757
|
+
"char": "l",
|
|
1758
|
+
"description": "Number of checks to return (1-100).",
|
|
1759
|
+
"name": "limit",
|
|
1760
|
+
"default": 25,
|
|
1761
|
+
"hasDynamicHelp": false,
|
|
1762
|
+
"multiple": false,
|
|
1763
|
+
"type": "option"
|
|
1764
|
+
},
|
|
1765
|
+
"page": {
|
|
1766
|
+
"char": "p",
|
|
1767
|
+
"description": "Page number.",
|
|
1768
|
+
"name": "page",
|
|
1769
|
+
"default": 1,
|
|
1770
|
+
"hasDynamicHelp": false,
|
|
1771
|
+
"multiple": false,
|
|
1772
|
+
"type": "option"
|
|
1773
|
+
},
|
|
1774
|
+
"tag": {
|
|
1775
|
+
"char": "t",
|
|
1776
|
+
"description": "Filter by tag. Can be specified multiple times.",
|
|
1777
|
+
"name": "tag",
|
|
1778
|
+
"delimiter": ",",
|
|
1779
|
+
"hasDynamicHelp": false,
|
|
1780
|
+
"multiple": true,
|
|
1781
|
+
"type": "option"
|
|
1782
|
+
},
|
|
1783
|
+
"search": {
|
|
1784
|
+
"char": "s",
|
|
1785
|
+
"description": "Filter checks by name (case-insensitive).",
|
|
1786
|
+
"name": "search",
|
|
1787
|
+
"hasDynamicHelp": false,
|
|
1788
|
+
"multiple": false,
|
|
1789
|
+
"type": "option"
|
|
1790
|
+
},
|
|
1791
|
+
"type": {
|
|
1792
|
+
"description": "Filter by check type.",
|
|
1793
|
+
"name": "type",
|
|
1794
|
+
"hasDynamicHelp": false,
|
|
1795
|
+
"multiple": false,
|
|
1796
|
+
"options": [
|
|
1797
|
+
"API",
|
|
1798
|
+
"BROWSER",
|
|
1799
|
+
"HEARTBEAT",
|
|
1800
|
+
"MULTI_STEP",
|
|
1801
|
+
"PLAYWRIGHT",
|
|
1802
|
+
"TCP",
|
|
1803
|
+
"ICMP",
|
|
1804
|
+
"DNS",
|
|
1805
|
+
"URL",
|
|
1806
|
+
"AGENTIC"
|
|
1807
|
+
],
|
|
1808
|
+
"type": "option"
|
|
1809
|
+
},
|
|
1810
|
+
"status": {
|
|
1811
|
+
"description": "Filter by check status.",
|
|
1812
|
+
"name": "status",
|
|
1813
|
+
"hasDynamicHelp": false,
|
|
1814
|
+
"multiple": false,
|
|
1815
|
+
"options": [
|
|
1816
|
+
"passing",
|
|
1817
|
+
"failing",
|
|
1818
|
+
"degraded"
|
|
1819
|
+
],
|
|
1820
|
+
"type": "option"
|
|
1821
|
+
},
|
|
1822
|
+
"hide-id": {
|
|
1823
|
+
"description": "Hide check IDs in table output.",
|
|
1824
|
+
"name": "hide-id",
|
|
1825
|
+
"allowNo": false,
|
|
1826
|
+
"type": "boolean"
|
|
1827
|
+
},
|
|
1828
|
+
"output": {
|
|
1829
|
+
"char": "o",
|
|
1830
|
+
"description": "Output format.",
|
|
1831
|
+
"name": "output",
|
|
1832
|
+
"default": "table",
|
|
1833
|
+
"hasDynamicHelp": false,
|
|
1834
|
+
"multiple": false,
|
|
1835
|
+
"options": [
|
|
1836
|
+
"table",
|
|
1837
|
+
"json",
|
|
1838
|
+
"md"
|
|
1839
|
+
],
|
|
1840
|
+
"type": "option"
|
|
1841
|
+
}
|
|
1842
|
+
},
|
|
1843
|
+
"hasDynamicHelp": false,
|
|
1844
|
+
"hidden": false,
|
|
1697
1845
|
"hiddenAliases": [],
|
|
1698
|
-
"id": "
|
|
1846
|
+
"id": "checks:list",
|
|
1699
1847
|
"pluginAlias": "checkly",
|
|
1700
1848
|
"pluginName": "checkly",
|
|
1701
1849
|
"pluginType": "core",
|
|
1702
1850
|
"strict": true,
|
|
1703
1851
|
"enableJsonFlag": false,
|
|
1852
|
+
"coreCommand": false,
|
|
1853
|
+
"readOnly": true,
|
|
1854
|
+
"destructive": false,
|
|
1855
|
+
"idempotent": true,
|
|
1704
1856
|
"isESM": true,
|
|
1705
1857
|
"relativePath": [
|
|
1706
1858
|
"dist",
|
|
1707
1859
|
"commands",
|
|
1708
|
-
"
|
|
1709
|
-
"
|
|
1860
|
+
"checks",
|
|
1861
|
+
"list.js"
|
|
1710
1862
|
]
|
|
1711
1863
|
},
|
|
1712
|
-
"
|
|
1864
|
+
"checks:stats": {
|
|
1713
1865
|
"aliases": [],
|
|
1714
|
-
"args": {
|
|
1715
|
-
|
|
1866
|
+
"args": {
|
|
1867
|
+
"checkIds": {
|
|
1868
|
+
"description": "One or more check IDs to get stats for.",
|
|
1869
|
+
"name": "checkIds",
|
|
1870
|
+
"required": false
|
|
1871
|
+
}
|
|
1872
|
+
},
|
|
1873
|
+
"description": "Show analytics stats for your checks.",
|
|
1716
1874
|
"flags": {
|
|
1717
|
-
"
|
|
1718
|
-
"char": "
|
|
1719
|
-
"description": "
|
|
1720
|
-
"
|
|
1721
|
-
"
|
|
1875
|
+
"range": {
|
|
1876
|
+
"char": "r",
|
|
1877
|
+
"description": "Time range for stats.",
|
|
1878
|
+
"name": "range",
|
|
1879
|
+
"default": "last24Hours",
|
|
1722
1880
|
"hasDynamicHelp": false,
|
|
1723
1881
|
"multiple": false,
|
|
1882
|
+
"options": [
|
|
1883
|
+
"last24Hours",
|
|
1884
|
+
"last7Days",
|
|
1885
|
+
"thisWeek",
|
|
1886
|
+
"lastWeek",
|
|
1887
|
+
"lastMonth"
|
|
1888
|
+
],
|
|
1724
1889
|
"type": "option"
|
|
1725
1890
|
},
|
|
1726
|
-
"
|
|
1727
|
-
"
|
|
1728
|
-
"
|
|
1729
|
-
"name": "
|
|
1730
|
-
"default":
|
|
1891
|
+
"limit": {
|
|
1892
|
+
"char": "l",
|
|
1893
|
+
"description": "Number of checks to return (1-100).",
|
|
1894
|
+
"name": "limit",
|
|
1895
|
+
"default": 25,
|
|
1731
1896
|
"hasDynamicHelp": false,
|
|
1732
1897
|
"multiple": false,
|
|
1733
1898
|
"type": "option"
|
|
1734
1899
|
},
|
|
1735
|
-
"
|
|
1736
|
-
"
|
|
1737
|
-
"
|
|
1738
|
-
"name": "
|
|
1739
|
-
"
|
|
1740
|
-
"
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
"description": "Pretend to be the pw-test command. Affects validation.",
|
|
1744
|
-
"env": "CHECKLY_EMULATE_PW_TEST",
|
|
1745
|
-
"name": "emulate-pw-test",
|
|
1746
|
-
"allowNo": false,
|
|
1747
|
-
"type": "boolean"
|
|
1900
|
+
"page": {
|
|
1901
|
+
"char": "p",
|
|
1902
|
+
"description": "Page number.",
|
|
1903
|
+
"name": "page",
|
|
1904
|
+
"default": 1,
|
|
1905
|
+
"hasDynamicHelp": false,
|
|
1906
|
+
"multiple": false,
|
|
1907
|
+
"type": "option"
|
|
1748
1908
|
},
|
|
1749
|
-
"
|
|
1750
|
-
"
|
|
1751
|
-
"
|
|
1752
|
-
"
|
|
1909
|
+
"tag": {
|
|
1910
|
+
"char": "t",
|
|
1911
|
+
"description": "Filter by tag. Can be specified multiple times.",
|
|
1912
|
+
"name": "tag",
|
|
1753
1913
|
"hasDynamicHelp": false,
|
|
1754
1914
|
"multiple": true,
|
|
1755
1915
|
"type": "option"
|
|
1756
1916
|
},
|
|
1757
|
-
"
|
|
1758
|
-
"
|
|
1759
|
-
"
|
|
1760
|
-
"
|
|
1761
|
-
"delimiter": ",",
|
|
1917
|
+
"search": {
|
|
1918
|
+
"char": "s",
|
|
1919
|
+
"description": "Filter checks by name (case-insensitive).",
|
|
1920
|
+
"name": "search",
|
|
1762
1921
|
"hasDynamicHelp": false,
|
|
1763
|
-
"multiple":
|
|
1922
|
+
"multiple": false,
|
|
1923
|
+
"type": "option"
|
|
1924
|
+
},
|
|
1925
|
+
"type": {
|
|
1926
|
+
"description": "Filter by check type.",
|
|
1927
|
+
"name": "type",
|
|
1928
|
+
"hasDynamicHelp": false,
|
|
1929
|
+
"multiple": false,
|
|
1930
|
+
"options": [
|
|
1931
|
+
"API",
|
|
1932
|
+
"BROWSER",
|
|
1933
|
+
"HEARTBEAT",
|
|
1934
|
+
"MULTI_STEP",
|
|
1935
|
+
"PLAYWRIGHT",
|
|
1936
|
+
"TCP",
|
|
1937
|
+
"ICMP",
|
|
1938
|
+
"DNS",
|
|
1939
|
+
"URL",
|
|
1940
|
+
"AGENTIC"
|
|
1941
|
+
],
|
|
1942
|
+
"type": "option"
|
|
1943
|
+
},
|
|
1944
|
+
"output": {
|
|
1945
|
+
"char": "o",
|
|
1946
|
+
"description": "Output format.",
|
|
1947
|
+
"name": "output",
|
|
1948
|
+
"default": "table",
|
|
1949
|
+
"hasDynamicHelp": false,
|
|
1950
|
+
"multiple": false,
|
|
1951
|
+
"options": [
|
|
1952
|
+
"table",
|
|
1953
|
+
"json",
|
|
1954
|
+
"md"
|
|
1955
|
+
],
|
|
1764
1956
|
"type": "option"
|
|
1765
1957
|
}
|
|
1766
1958
|
},
|
|
1767
1959
|
"hasDynamicHelp": false,
|
|
1768
|
-
"hidden":
|
|
1960
|
+
"hidden": false,
|
|
1769
1961
|
"hiddenAliases": [],
|
|
1770
|
-
"id": "
|
|
1962
|
+
"id": "checks:stats",
|
|
1771
1963
|
"pluginAlias": "checkly",
|
|
1772
1964
|
"pluginName": "checkly",
|
|
1773
1965
|
"pluginType": "core",
|
|
1774
|
-
"strict":
|
|
1966
|
+
"strict": false,
|
|
1775
1967
|
"enableJsonFlag": false,
|
|
1968
|
+
"coreCommand": false,
|
|
1969
|
+
"readOnly": true,
|
|
1970
|
+
"destructive": false,
|
|
1971
|
+
"idempotent": true,
|
|
1776
1972
|
"isESM": true,
|
|
1777
1973
|
"relativePath": [
|
|
1778
1974
|
"dist",
|
|
1779
1975
|
"commands",
|
|
1780
|
-
"
|
|
1781
|
-
"
|
|
1976
|
+
"checks",
|
|
1977
|
+
"stats.js"
|
|
1782
1978
|
]
|
|
1783
1979
|
},
|
|
1784
1980
|
"env:add": {
|
|
@@ -2616,6 +2812,13 @@
|
|
|
2616
2812
|
"multiple": false,
|
|
2617
2813
|
"type": "option"
|
|
2618
2814
|
},
|
|
2815
|
+
"user-context": {
|
|
2816
|
+
"description": "Extra context to pass into the root cause analysis.",
|
|
2817
|
+
"name": "user-context",
|
|
2818
|
+
"hasDynamicHelp": false,
|
|
2819
|
+
"multiple": false,
|
|
2820
|
+
"type": "option"
|
|
2821
|
+
},
|
|
2619
2822
|
"watch": {
|
|
2620
2823
|
"char": "w",
|
|
2621
2824
|
"description": "Wait for the analysis to complete and display the result.",
|
|
@@ -2646,7 +2849,7 @@
|
|
|
2646
2849
|
"pluginName": "checkly",
|
|
2647
2850
|
"pluginType": "core",
|
|
2648
2851
|
"strict": true,
|
|
2649
|
-
"usage": "rca run [-e <value> | -te <value>] [-w] [-o detail|json|md]",
|
|
2852
|
+
"usage": "rca run [-e <value> | -te <value>] [--user-context <text>] [-w] [-o detail|json|md]",
|
|
2650
2853
|
"enableJsonFlag": false,
|
|
2651
2854
|
"coreCommand": false,
|
|
2652
2855
|
"readOnly": false,
|
|
@@ -2895,6 +3098,13 @@
|
|
|
2895
3098
|
"allowNo": false,
|
|
2896
3099
|
"type": "boolean"
|
|
2897
3100
|
},
|
|
3101
|
+
"watch": {
|
|
3102
|
+
"char": "w",
|
|
3103
|
+
"description": "Watch a running test session until it completes before rendering.",
|
|
3104
|
+
"name": "watch",
|
|
3105
|
+
"allowNo": false,
|
|
3106
|
+
"type": "boolean"
|
|
3107
|
+
},
|
|
2898
3108
|
"output": {
|
|
2899
3109
|
"char": "o",
|
|
2900
3110
|
"description": "Output format.",
|
|
@@ -2930,7 +3140,131 @@
|
|
|
2930
3140
|
"test-sessions",
|
|
2931
3141
|
"get.js"
|
|
2932
3142
|
]
|
|
3143
|
+
},
|
|
3144
|
+
"test-sessions:list": {
|
|
3145
|
+
"aliases": [],
|
|
3146
|
+
"args": {},
|
|
3147
|
+
"description": "List recorded test sessions.",
|
|
3148
|
+
"flags": {
|
|
3149
|
+
"limit": {
|
|
3150
|
+
"char": "l",
|
|
3151
|
+
"description": "Number of test sessions to return (1-100).",
|
|
3152
|
+
"name": "limit",
|
|
3153
|
+
"default": 20,
|
|
3154
|
+
"hasDynamicHelp": false,
|
|
3155
|
+
"multiple": false,
|
|
3156
|
+
"type": "option"
|
|
3157
|
+
},
|
|
3158
|
+
"cursor": {
|
|
3159
|
+
"description": "Cursor for next page (from previous output).",
|
|
3160
|
+
"name": "cursor",
|
|
3161
|
+
"hasDynamicHelp": false,
|
|
3162
|
+
"multiple": false,
|
|
3163
|
+
"type": "option"
|
|
3164
|
+
},
|
|
3165
|
+
"from": {
|
|
3166
|
+
"description": "Only include test sessions created at or after this ISO date or Unix timestamp.",
|
|
3167
|
+
"name": "from",
|
|
3168
|
+
"hasDynamicHelp": false,
|
|
3169
|
+
"multiple": false,
|
|
3170
|
+
"type": "option"
|
|
3171
|
+
},
|
|
3172
|
+
"to": {
|
|
3173
|
+
"description": "Only include test sessions created before this ISO date or Unix timestamp.",
|
|
3174
|
+
"name": "to",
|
|
3175
|
+
"hasDynamicHelp": false,
|
|
3176
|
+
"multiple": false,
|
|
3177
|
+
"type": "option"
|
|
3178
|
+
},
|
|
3179
|
+
"status": {
|
|
3180
|
+
"description": "Filter by test session status: running, failed, passed, cancelled. Can be specified multiple times.",
|
|
3181
|
+
"name": "status",
|
|
3182
|
+
"delimiter": ",",
|
|
3183
|
+
"hasDynamicHelp": false,
|
|
3184
|
+
"multiple": true,
|
|
3185
|
+
"type": "option"
|
|
3186
|
+
},
|
|
3187
|
+
"branch": {
|
|
3188
|
+
"description": "Filter by Git branch name. Can be specified multiple times.",
|
|
3189
|
+
"name": "branch",
|
|
3190
|
+
"delimiter": ",",
|
|
3191
|
+
"hasDynamicHelp": false,
|
|
3192
|
+
"multiple": true,
|
|
3193
|
+
"type": "option"
|
|
3194
|
+
},
|
|
3195
|
+
"user": {
|
|
3196
|
+
"description": "Filter by commit owner or invoking user ID. Can be specified multiple times.",
|
|
3197
|
+
"name": "user",
|
|
3198
|
+
"delimiter": ",",
|
|
3199
|
+
"hasDynamicHelp": false,
|
|
3200
|
+
"multiple": true,
|
|
3201
|
+
"type": "option"
|
|
3202
|
+
},
|
|
3203
|
+
"no-users": {
|
|
3204
|
+
"description": "Include sessions with no commit owner and no invoking user.",
|
|
3205
|
+
"name": "no-users",
|
|
3206
|
+
"allowNo": false,
|
|
3207
|
+
"type": "boolean"
|
|
3208
|
+
},
|
|
3209
|
+
"provider": {
|
|
3210
|
+
"description": "Filter by test session provider: github, vercel, api, trigger, pw_reporter. Can be specified multiple times.",
|
|
3211
|
+
"name": "provider",
|
|
3212
|
+
"delimiter": ",",
|
|
3213
|
+
"hasDynamicHelp": false,
|
|
3214
|
+
"multiple": true,
|
|
3215
|
+
"type": "option"
|
|
3216
|
+
},
|
|
3217
|
+
"search": {
|
|
3218
|
+
"char": "s",
|
|
3219
|
+
"description": "Search test session text fields (3-200 characters).",
|
|
3220
|
+
"name": "search",
|
|
3221
|
+
"hasDynamicHelp": false,
|
|
3222
|
+
"multiple": false,
|
|
3223
|
+
"type": "option"
|
|
3224
|
+
},
|
|
3225
|
+
"error-group": {
|
|
3226
|
+
"description": "Filter by test-session error group ID.",
|
|
3227
|
+
"name": "error-group",
|
|
3228
|
+
"hasDynamicHelp": false,
|
|
3229
|
+
"multiple": false,
|
|
3230
|
+
"type": "option"
|
|
3231
|
+
},
|
|
3232
|
+
"output": {
|
|
3233
|
+
"char": "o",
|
|
3234
|
+
"description": "Output format.",
|
|
3235
|
+
"name": "output",
|
|
3236
|
+
"default": "table",
|
|
3237
|
+
"hasDynamicHelp": false,
|
|
3238
|
+
"multiple": false,
|
|
3239
|
+
"options": [
|
|
3240
|
+
"table",
|
|
3241
|
+
"json",
|
|
3242
|
+
"md"
|
|
3243
|
+
],
|
|
3244
|
+
"type": "option"
|
|
3245
|
+
}
|
|
3246
|
+
},
|
|
3247
|
+
"hasDynamicHelp": false,
|
|
3248
|
+
"hidden": false,
|
|
3249
|
+
"hiddenAliases": [],
|
|
3250
|
+
"id": "test-sessions:list",
|
|
3251
|
+
"pluginAlias": "checkly",
|
|
3252
|
+
"pluginName": "checkly",
|
|
3253
|
+
"pluginType": "core",
|
|
3254
|
+
"strict": true,
|
|
3255
|
+
"enableJsonFlag": false,
|
|
3256
|
+
"coreCommand": false,
|
|
3257
|
+
"readOnly": true,
|
|
3258
|
+
"destructive": false,
|
|
3259
|
+
"idempotent": true,
|
|
3260
|
+
"isESM": true,
|
|
3261
|
+
"relativePath": [
|
|
3262
|
+
"dist",
|
|
3263
|
+
"commands",
|
|
3264
|
+
"test-sessions",
|
|
3265
|
+
"list.js"
|
|
3266
|
+
]
|
|
2933
3267
|
}
|
|
2934
3268
|
},
|
|
2935
|
-
"version": "8.
|
|
3269
|
+
"version": "8.5.0"
|
|
2936
3270
|
}
|