checkly 7.2.0-prerelease-a5daf21 → 7.3.0-prerelease-51dcdcf
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/commands/checks/get.d.ts +18 -0
- package/dist/commands/checks/get.js +221 -0
- package/dist/commands/checks/get.js.map +1 -0
- package/dist/commands/checks/list.d.ts +15 -0
- package/dist/commands/checks/list.js +142 -0
- package/dist/commands/checks/list.js.map +1 -0
- package/dist/commands/status-pages/get.d.ts +12 -0
- package/dist/commands/status-pages/get.js +75 -0
- package/dist/commands/status-pages/get.js.map +1 -0
- package/dist/commands/status-pages/list.d.ts +12 -0
- package/dist/commands/status-pages/list.js +106 -0
- package/dist/commands/status-pages/list.js.map +1 -0
- package/dist/formatters/check-result-detail.d.ts +4 -0
- package/dist/formatters/check-result-detail.js +357 -0
- package/dist/formatters/check-result-detail.js.map +1 -0
- package/dist/formatters/checks.d.ts +28 -0
- package/dist/formatters/checks.js +314 -0
- package/dist/formatters/checks.js.map +1 -0
- package/dist/formatters/render.d.ts +28 -0
- package/dist/formatters/render.js +168 -0
- package/dist/formatters/render.js.map +1 -0
- package/dist/formatters/status-pages.d.ts +7 -0
- package/dist/formatters/status-pages.js +254 -0
- package/dist/formatters/status-pages.js.map +1 -0
- package/dist/helpers/command-style.d.ts +1 -0
- package/dist/helpers/command-style.js +12 -0
- package/dist/helpers/command-style.js.map +1 -1
- package/dist/helpers/flags.d.ts +4 -0
- package/dist/helpers/flags.js +14 -0
- package/dist/helpers/flags.js.map +1 -0
- package/dist/rest/api.d.ts +12 -0
- package/dist/rest/api.js +13 -1
- package/dist/rest/api.js.map +1 -1
- package/dist/rest/check-groups.d.ts +16 -0
- package/dist/rest/check-groups.js +13 -0
- package/dist/rest/check-groups.js.map +1 -0
- package/dist/rest/check-results.d.ts +133 -0
- package/dist/rest/check-results.js +16 -0
- package/dist/rest/check-results.js.map +1 -0
- package/dist/rest/check-statuses.d.ts +23 -0
- package/dist/rest/check-statuses.js +22 -0
- package/dist/rest/check-statuses.js.map +1 -0
- package/dist/rest/checks.d.ts +45 -0
- package/dist/rest/checks.js +48 -0
- package/dist/rest/checks.js.map +1 -0
- package/dist/rest/error-groups.d.ts +18 -0
- package/dist/rest/error-groups.js +16 -0
- package/dist/rest/error-groups.js.map +1 -0
- package/dist/rest/status-pages.d.ts +37 -0
- package/dist/rest/status-pages.js +18 -0
- package/dist/rest/status-pages.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/oclif.manifest.json +276 -1
- package/package.json +7 -1
package/oclif.manifest.json
CHANGED
|
@@ -858,6 +858,177 @@
|
|
|
858
858
|
"whoami.js"
|
|
859
859
|
]
|
|
860
860
|
},
|
|
861
|
+
"checks:get": {
|
|
862
|
+
"aliases": [],
|
|
863
|
+
"args": {
|
|
864
|
+
"id": {
|
|
865
|
+
"description": "The ID of the check to retrieve.",
|
|
866
|
+
"name": "id",
|
|
867
|
+
"required": true
|
|
868
|
+
}
|
|
869
|
+
},
|
|
870
|
+
"description": "Get details of a specific check, including recent results. Use --result to drill into a specific result.",
|
|
871
|
+
"flags": {
|
|
872
|
+
"result": {
|
|
873
|
+
"char": "r",
|
|
874
|
+
"description": "Show details for a specific result ID.",
|
|
875
|
+
"name": "result",
|
|
876
|
+
"hasDynamicHelp": false,
|
|
877
|
+
"multiple": false,
|
|
878
|
+
"type": "option"
|
|
879
|
+
},
|
|
880
|
+
"error-group": {
|
|
881
|
+
"char": "e",
|
|
882
|
+
"description": "Show full details for a specific error group ID.",
|
|
883
|
+
"name": "error-group",
|
|
884
|
+
"hasDynamicHelp": false,
|
|
885
|
+
"multiple": false,
|
|
886
|
+
"type": "option"
|
|
887
|
+
},
|
|
888
|
+
"results-limit": {
|
|
889
|
+
"description": "Number of recent results to show.",
|
|
890
|
+
"name": "results-limit",
|
|
891
|
+
"default": 10,
|
|
892
|
+
"hasDynamicHelp": false,
|
|
893
|
+
"multiple": false,
|
|
894
|
+
"type": "option"
|
|
895
|
+
},
|
|
896
|
+
"results-cursor": {
|
|
897
|
+
"description": "Cursor for results pagination (from previous output).",
|
|
898
|
+
"name": "results-cursor",
|
|
899
|
+
"hasDynamicHelp": false,
|
|
900
|
+
"multiple": false,
|
|
901
|
+
"type": "option"
|
|
902
|
+
},
|
|
903
|
+
"output": {
|
|
904
|
+
"char": "o",
|
|
905
|
+
"description": "Output format.",
|
|
906
|
+
"name": "output",
|
|
907
|
+
"default": "detail",
|
|
908
|
+
"hasDynamicHelp": false,
|
|
909
|
+
"multiple": false,
|
|
910
|
+
"options": [
|
|
911
|
+
"detail",
|
|
912
|
+
"json",
|
|
913
|
+
"md"
|
|
914
|
+
],
|
|
915
|
+
"type": "option"
|
|
916
|
+
}
|
|
917
|
+
},
|
|
918
|
+
"hasDynamicHelp": false,
|
|
919
|
+
"hidden": false,
|
|
920
|
+
"hiddenAliases": [],
|
|
921
|
+
"id": "checks:get",
|
|
922
|
+
"pluginAlias": "checkly",
|
|
923
|
+
"pluginName": "checkly",
|
|
924
|
+
"pluginType": "core",
|
|
925
|
+
"strict": true,
|
|
926
|
+
"enableJsonFlag": false,
|
|
927
|
+
"coreCommand": false,
|
|
928
|
+
"isESM": false,
|
|
929
|
+
"relativePath": [
|
|
930
|
+
"dist",
|
|
931
|
+
"commands",
|
|
932
|
+
"checks",
|
|
933
|
+
"get.js"
|
|
934
|
+
]
|
|
935
|
+
},
|
|
936
|
+
"checks:list": {
|
|
937
|
+
"aliases": [],
|
|
938
|
+
"args": {},
|
|
939
|
+
"description": "List all checks in your account.",
|
|
940
|
+
"flags": {
|
|
941
|
+
"limit": {
|
|
942
|
+
"char": "l",
|
|
943
|
+
"description": "Number of checks to return (1-100).",
|
|
944
|
+
"name": "limit",
|
|
945
|
+
"default": 25,
|
|
946
|
+
"hasDynamicHelp": false,
|
|
947
|
+
"multiple": false,
|
|
948
|
+
"type": "option"
|
|
949
|
+
},
|
|
950
|
+
"page": {
|
|
951
|
+
"char": "p",
|
|
952
|
+
"description": "Page number.",
|
|
953
|
+
"name": "page",
|
|
954
|
+
"default": 1,
|
|
955
|
+
"hasDynamicHelp": false,
|
|
956
|
+
"multiple": false,
|
|
957
|
+
"type": "option"
|
|
958
|
+
},
|
|
959
|
+
"tag": {
|
|
960
|
+
"char": "t",
|
|
961
|
+
"description": "Filter by tag. Can be specified multiple times.",
|
|
962
|
+
"name": "tag",
|
|
963
|
+
"hasDynamicHelp": false,
|
|
964
|
+
"multiple": true,
|
|
965
|
+
"type": "option"
|
|
966
|
+
},
|
|
967
|
+
"search": {
|
|
968
|
+
"char": "s",
|
|
969
|
+
"description": "Filter checks by name (case-insensitive).",
|
|
970
|
+
"name": "search",
|
|
971
|
+
"hasDynamicHelp": false,
|
|
972
|
+
"multiple": false,
|
|
973
|
+
"type": "option"
|
|
974
|
+
},
|
|
975
|
+
"type": {
|
|
976
|
+
"description": "Filter by check type.",
|
|
977
|
+
"name": "type",
|
|
978
|
+
"hasDynamicHelp": false,
|
|
979
|
+
"multiple": false,
|
|
980
|
+
"options": [
|
|
981
|
+
"API",
|
|
982
|
+
"BROWSER",
|
|
983
|
+
"MULTI_STEP",
|
|
984
|
+
"HEARTBEAT",
|
|
985
|
+
"PLAYWRIGHT",
|
|
986
|
+
"TCP",
|
|
987
|
+
"DNS",
|
|
988
|
+
"ICMP",
|
|
989
|
+
"URL"
|
|
990
|
+
],
|
|
991
|
+
"type": "option"
|
|
992
|
+
},
|
|
993
|
+
"hide-id": {
|
|
994
|
+
"description": "Hide check IDs in table output.",
|
|
995
|
+
"name": "hide-id",
|
|
996
|
+
"allowNo": false,
|
|
997
|
+
"type": "boolean"
|
|
998
|
+
},
|
|
999
|
+
"output": {
|
|
1000
|
+
"char": "o",
|
|
1001
|
+
"description": "Output format.",
|
|
1002
|
+
"name": "output",
|
|
1003
|
+
"default": "table",
|
|
1004
|
+
"hasDynamicHelp": false,
|
|
1005
|
+
"multiple": false,
|
|
1006
|
+
"options": [
|
|
1007
|
+
"table",
|
|
1008
|
+
"json",
|
|
1009
|
+
"md"
|
|
1010
|
+
],
|
|
1011
|
+
"type": "option"
|
|
1012
|
+
}
|
|
1013
|
+
},
|
|
1014
|
+
"hasDynamicHelp": false,
|
|
1015
|
+
"hidden": false,
|
|
1016
|
+
"hiddenAliases": [],
|
|
1017
|
+
"id": "checks:list",
|
|
1018
|
+
"pluginAlias": "checkly",
|
|
1019
|
+
"pluginName": "checkly",
|
|
1020
|
+
"pluginType": "core",
|
|
1021
|
+
"strict": true,
|
|
1022
|
+
"enableJsonFlag": false,
|
|
1023
|
+
"coreCommand": false,
|
|
1024
|
+
"isESM": false,
|
|
1025
|
+
"relativePath": [
|
|
1026
|
+
"dist",
|
|
1027
|
+
"commands",
|
|
1028
|
+
"checks",
|
|
1029
|
+
"list.js"
|
|
1030
|
+
]
|
|
1031
|
+
},
|
|
861
1032
|
"debug:parse-file": {
|
|
862
1033
|
"aliases": [],
|
|
863
1034
|
"args": {},
|
|
@@ -1385,7 +1556,111 @@
|
|
|
1385
1556
|
"import",
|
|
1386
1557
|
"plan.js"
|
|
1387
1558
|
]
|
|
1559
|
+
},
|
|
1560
|
+
"status-pages:get": {
|
|
1561
|
+
"aliases": [],
|
|
1562
|
+
"args": {
|
|
1563
|
+
"id": {
|
|
1564
|
+
"description": "The ID of the status page to retrieve.",
|
|
1565
|
+
"name": "id",
|
|
1566
|
+
"required": true
|
|
1567
|
+
}
|
|
1568
|
+
},
|
|
1569
|
+
"description": "Get details of a status page, including its cards and services.",
|
|
1570
|
+
"flags": {
|
|
1571
|
+
"output": {
|
|
1572
|
+
"char": "o",
|
|
1573
|
+
"description": "Output format.",
|
|
1574
|
+
"name": "output",
|
|
1575
|
+
"default": "detail",
|
|
1576
|
+
"hasDynamicHelp": false,
|
|
1577
|
+
"multiple": false,
|
|
1578
|
+
"options": [
|
|
1579
|
+
"detail",
|
|
1580
|
+
"json",
|
|
1581
|
+
"md"
|
|
1582
|
+
],
|
|
1583
|
+
"type": "option"
|
|
1584
|
+
}
|
|
1585
|
+
},
|
|
1586
|
+
"hasDynamicHelp": false,
|
|
1587
|
+
"hidden": false,
|
|
1588
|
+
"hiddenAliases": [],
|
|
1589
|
+
"id": "status-pages:get",
|
|
1590
|
+
"pluginAlias": "checkly",
|
|
1591
|
+
"pluginName": "checkly",
|
|
1592
|
+
"pluginType": "core",
|
|
1593
|
+
"strict": true,
|
|
1594
|
+
"enableJsonFlag": false,
|
|
1595
|
+
"coreCommand": false,
|
|
1596
|
+
"isESM": false,
|
|
1597
|
+
"relativePath": [
|
|
1598
|
+
"dist",
|
|
1599
|
+
"commands",
|
|
1600
|
+
"status-pages",
|
|
1601
|
+
"get.js"
|
|
1602
|
+
]
|
|
1603
|
+
},
|
|
1604
|
+
"status-pages:list": {
|
|
1605
|
+
"aliases": [],
|
|
1606
|
+
"args": {},
|
|
1607
|
+
"description": "List all status pages in your account.",
|
|
1608
|
+
"flags": {
|
|
1609
|
+
"limit": {
|
|
1610
|
+
"char": "l",
|
|
1611
|
+
"description": "Number of status pages to return (1-100).",
|
|
1612
|
+
"name": "limit",
|
|
1613
|
+
"default": 25,
|
|
1614
|
+
"hasDynamicHelp": false,
|
|
1615
|
+
"multiple": false,
|
|
1616
|
+
"type": "option"
|
|
1617
|
+
},
|
|
1618
|
+
"cursor": {
|
|
1619
|
+
"description": "Cursor for next page (from previous output).",
|
|
1620
|
+
"name": "cursor",
|
|
1621
|
+
"hasDynamicHelp": false,
|
|
1622
|
+
"multiple": false,
|
|
1623
|
+
"type": "option"
|
|
1624
|
+
},
|
|
1625
|
+
"compact": {
|
|
1626
|
+
"description": "Show one row per status page instead of per service.",
|
|
1627
|
+
"name": "compact",
|
|
1628
|
+
"allowNo": false,
|
|
1629
|
+
"type": "boolean"
|
|
1630
|
+
},
|
|
1631
|
+
"output": {
|
|
1632
|
+
"char": "o",
|
|
1633
|
+
"description": "Output format.",
|
|
1634
|
+
"name": "output",
|
|
1635
|
+
"default": "table",
|
|
1636
|
+
"hasDynamicHelp": false,
|
|
1637
|
+
"multiple": false,
|
|
1638
|
+
"options": [
|
|
1639
|
+
"table",
|
|
1640
|
+
"json",
|
|
1641
|
+
"md"
|
|
1642
|
+
],
|
|
1643
|
+
"type": "option"
|
|
1644
|
+
}
|
|
1645
|
+
},
|
|
1646
|
+
"hasDynamicHelp": false,
|
|
1647
|
+
"hidden": false,
|
|
1648
|
+
"hiddenAliases": [],
|
|
1649
|
+
"id": "status-pages:list",
|
|
1650
|
+
"pluginAlias": "checkly",
|
|
1651
|
+
"pluginName": "checkly",
|
|
1652
|
+
"pluginType": "core",
|
|
1653
|
+
"strict": true,
|
|
1654
|
+
"enableJsonFlag": false,
|
|
1655
|
+
"coreCommand": false,
|
|
1656
|
+
"isESM": false,
|
|
1657
|
+
"relativePath": [
|
|
1658
|
+
"dist",
|
|
1659
|
+
"commands",
|
|
1660
|
+
"status-pages",
|
|
1661
|
+
"list.js"
|
|
1662
|
+
]
|
|
1388
1663
|
}
|
|
1389
1664
|
},
|
|
1390
|
-
"version": "7.
|
|
1665
|
+
"version": "7.3.0-prerelease-51dcdcf"
|
|
1391
1666
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "checkly",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.3.0-prerelease-51dcdcf",
|
|
4
4
|
"description": "Checkly CLI",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -64,11 +64,17 @@
|
|
|
64
64
|
"message": "<%= config.name %> update available from <%= chalk.greenBright(config.version) %> to <%= chalk.greenBright(latest) %>. To update, run `npm install -D checkly@latest`"
|
|
65
65
|
},
|
|
66
66
|
"topics": {
|
|
67
|
+
"checks": {
|
|
68
|
+
"description": "List and inspect checks in your Checkly account."
|
|
69
|
+
},
|
|
67
70
|
"env": {
|
|
68
71
|
"description": "Manage Checkly environment variables."
|
|
69
72
|
},
|
|
70
73
|
"import": {
|
|
71
74
|
"description": "Import existing resources from your Checkly account to your project."
|
|
75
|
+
},
|
|
76
|
+
"status-pages": {
|
|
77
|
+
"description": "List and manage status pages in your Checkly account."
|
|
72
78
|
}
|
|
73
79
|
},
|
|
74
80
|
"helpClass": "./dist/help/help-extension"
|