checkly 7.2.0 → 7.3.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/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 +400 -125
- 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": {},
|
|
@@ -1004,6 +1175,186 @@
|
|
|
1004
1175
|
"parse-project.js"
|
|
1005
1176
|
]
|
|
1006
1177
|
},
|
|
1178
|
+
"import:apply": {
|
|
1179
|
+
"aliases": [],
|
|
1180
|
+
"args": {},
|
|
1181
|
+
"description": "Attach imported resources into your project in a pending state.",
|
|
1182
|
+
"flags": {
|
|
1183
|
+
"config": {
|
|
1184
|
+
"char": "c",
|
|
1185
|
+
"description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
|
|
1186
|
+
"name": "config",
|
|
1187
|
+
"hasDynamicHelp": false,
|
|
1188
|
+
"multiple": false,
|
|
1189
|
+
"type": "option"
|
|
1190
|
+
}
|
|
1191
|
+
},
|
|
1192
|
+
"hasDynamicHelp": false,
|
|
1193
|
+
"hidden": false,
|
|
1194
|
+
"hiddenAliases": [],
|
|
1195
|
+
"id": "import:apply",
|
|
1196
|
+
"pluginAlias": "checkly",
|
|
1197
|
+
"pluginName": "checkly",
|
|
1198
|
+
"pluginType": "core",
|
|
1199
|
+
"strict": true,
|
|
1200
|
+
"enableJsonFlag": false,
|
|
1201
|
+
"coreCommand": false,
|
|
1202
|
+
"isESM": false,
|
|
1203
|
+
"relativePath": [
|
|
1204
|
+
"dist",
|
|
1205
|
+
"commands",
|
|
1206
|
+
"import",
|
|
1207
|
+
"apply.js"
|
|
1208
|
+
]
|
|
1209
|
+
},
|
|
1210
|
+
"import:cancel": {
|
|
1211
|
+
"aliases": [],
|
|
1212
|
+
"args": {},
|
|
1213
|
+
"description": "Cancels an ongoing import plan that has not been committed yet.",
|
|
1214
|
+
"flags": {
|
|
1215
|
+
"config": {
|
|
1216
|
+
"char": "c",
|
|
1217
|
+
"description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
|
|
1218
|
+
"name": "config",
|
|
1219
|
+
"hasDynamicHelp": false,
|
|
1220
|
+
"multiple": false,
|
|
1221
|
+
"type": "option"
|
|
1222
|
+
},
|
|
1223
|
+
"all": {
|
|
1224
|
+
"description": "Cancel all plans.",
|
|
1225
|
+
"name": "all",
|
|
1226
|
+
"allowNo": false,
|
|
1227
|
+
"type": "boolean"
|
|
1228
|
+
}
|
|
1229
|
+
},
|
|
1230
|
+
"hasDynamicHelp": false,
|
|
1231
|
+
"hidden": false,
|
|
1232
|
+
"hiddenAliases": [],
|
|
1233
|
+
"id": "import:cancel",
|
|
1234
|
+
"pluginAlias": "checkly",
|
|
1235
|
+
"pluginName": "checkly",
|
|
1236
|
+
"pluginType": "core",
|
|
1237
|
+
"strict": true,
|
|
1238
|
+
"enableJsonFlag": false,
|
|
1239
|
+
"coreCommand": false,
|
|
1240
|
+
"isESM": false,
|
|
1241
|
+
"relativePath": [
|
|
1242
|
+
"dist",
|
|
1243
|
+
"commands",
|
|
1244
|
+
"import",
|
|
1245
|
+
"cancel.js"
|
|
1246
|
+
]
|
|
1247
|
+
},
|
|
1248
|
+
"import:commit": {
|
|
1249
|
+
"aliases": [],
|
|
1250
|
+
"args": {},
|
|
1251
|
+
"description": "Permanently commit imported resources into your project.",
|
|
1252
|
+
"flags": {
|
|
1253
|
+
"config": {
|
|
1254
|
+
"char": "c",
|
|
1255
|
+
"description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
|
|
1256
|
+
"name": "config",
|
|
1257
|
+
"hasDynamicHelp": false,
|
|
1258
|
+
"multiple": false,
|
|
1259
|
+
"type": "option"
|
|
1260
|
+
}
|
|
1261
|
+
},
|
|
1262
|
+
"hasDynamicHelp": false,
|
|
1263
|
+
"hidden": false,
|
|
1264
|
+
"hiddenAliases": [],
|
|
1265
|
+
"id": "import:commit",
|
|
1266
|
+
"pluginAlias": "checkly",
|
|
1267
|
+
"pluginName": "checkly",
|
|
1268
|
+
"pluginType": "core",
|
|
1269
|
+
"strict": true,
|
|
1270
|
+
"enableJsonFlag": false,
|
|
1271
|
+
"coreCommand": false,
|
|
1272
|
+
"isESM": false,
|
|
1273
|
+
"relativePath": [
|
|
1274
|
+
"dist",
|
|
1275
|
+
"commands",
|
|
1276
|
+
"import",
|
|
1277
|
+
"commit.js"
|
|
1278
|
+
]
|
|
1279
|
+
},
|
|
1280
|
+
"import:plan": {
|
|
1281
|
+
"aliases": [],
|
|
1282
|
+
"args": {
|
|
1283
|
+
"resource": {
|
|
1284
|
+
"description": "A specific resource to import.",
|
|
1285
|
+
"name": "resource",
|
|
1286
|
+
"required": false
|
|
1287
|
+
}
|
|
1288
|
+
},
|
|
1289
|
+
"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.",
|
|
1290
|
+
"flags": {
|
|
1291
|
+
"config": {
|
|
1292
|
+
"char": "c",
|
|
1293
|
+
"description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
|
|
1294
|
+
"name": "config",
|
|
1295
|
+
"hasDynamicHelp": false,
|
|
1296
|
+
"multiple": false,
|
|
1297
|
+
"type": "option"
|
|
1298
|
+
},
|
|
1299
|
+
"root": {
|
|
1300
|
+
"description": "The root folder in which to write generated code files.",
|
|
1301
|
+
"name": "root",
|
|
1302
|
+
"default": "__checks__",
|
|
1303
|
+
"hasDynamicHelp": false,
|
|
1304
|
+
"multiple": false,
|
|
1305
|
+
"type": "option"
|
|
1306
|
+
},
|
|
1307
|
+
"preview": {
|
|
1308
|
+
"description": "Preview generated code without creating an actual import plan.",
|
|
1309
|
+
"name": "preview",
|
|
1310
|
+
"allowNo": false,
|
|
1311
|
+
"type": "boolean"
|
|
1312
|
+
},
|
|
1313
|
+
"debug-import-plan": {
|
|
1314
|
+
"description": "Output the import plan to a file.",
|
|
1315
|
+
"hidden": true,
|
|
1316
|
+
"name": "debug-import-plan",
|
|
1317
|
+
"allowNo": false,
|
|
1318
|
+
"type": "boolean"
|
|
1319
|
+
},
|
|
1320
|
+
"debug-import-plan-input-file": {
|
|
1321
|
+
"description": "A file to load an import plan from.",
|
|
1322
|
+
"hidden": true,
|
|
1323
|
+
"name": "debug-import-plan-input-file",
|
|
1324
|
+
"hasDynamicHelp": false,
|
|
1325
|
+
"multiple": false,
|
|
1326
|
+
"type": "option"
|
|
1327
|
+
},
|
|
1328
|
+
"debug-import-plan-output-file": {
|
|
1329
|
+
"description": "The file to output the import plan to.",
|
|
1330
|
+
"hidden": true,
|
|
1331
|
+
"name": "debug-import-plan-output-file",
|
|
1332
|
+
"default": "./debug-import-plan.json",
|
|
1333
|
+
"hasDynamicHelp": false,
|
|
1334
|
+
"multiple": false,
|
|
1335
|
+
"type": "option"
|
|
1336
|
+
}
|
|
1337
|
+
},
|
|
1338
|
+
"hasDynamicHelp": false,
|
|
1339
|
+
"hidden": false,
|
|
1340
|
+
"hiddenAliases": [
|
|
1341
|
+
"import"
|
|
1342
|
+
],
|
|
1343
|
+
"id": "import:plan",
|
|
1344
|
+
"pluginAlias": "checkly",
|
|
1345
|
+
"pluginName": "checkly",
|
|
1346
|
+
"pluginType": "core",
|
|
1347
|
+
"strict": false,
|
|
1348
|
+
"enableJsonFlag": false,
|
|
1349
|
+
"coreCommand": false,
|
|
1350
|
+
"isESM": false,
|
|
1351
|
+
"relativePath": [
|
|
1352
|
+
"dist",
|
|
1353
|
+
"commands",
|
|
1354
|
+
"import",
|
|
1355
|
+
"plan.js"
|
|
1356
|
+
]
|
|
1357
|
+
},
|
|
1007
1358
|
"env:add": {
|
|
1008
1359
|
"aliases": [],
|
|
1009
1360
|
"args": {
|
|
@@ -1206,62 +1557,36 @@
|
|
|
1206
1557
|
"update.js"
|
|
1207
1558
|
]
|
|
1208
1559
|
},
|
|
1209
|
-
"
|
|
1560
|
+
"status-pages:get": {
|
|
1210
1561
|
"aliases": [],
|
|
1211
|
-
"args": {
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
"
|
|
1216
|
-
"description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
|
|
1217
|
-
"name": "config",
|
|
1218
|
-
"hasDynamicHelp": false,
|
|
1219
|
-
"multiple": false,
|
|
1220
|
-
"type": "option"
|
|
1562
|
+
"args": {
|
|
1563
|
+
"id": {
|
|
1564
|
+
"description": "The ID of the status page to retrieve.",
|
|
1565
|
+
"name": "id",
|
|
1566
|
+
"required": true
|
|
1221
1567
|
}
|
|
1222
1568
|
},
|
|
1223
|
-
"
|
|
1224
|
-
"hidden": false,
|
|
1225
|
-
"hiddenAliases": [],
|
|
1226
|
-
"id": "import:apply",
|
|
1227
|
-
"pluginAlias": "checkly",
|
|
1228
|
-
"pluginName": "checkly",
|
|
1229
|
-
"pluginType": "core",
|
|
1230
|
-
"strict": true,
|
|
1231
|
-
"enableJsonFlag": false,
|
|
1232
|
-
"coreCommand": false,
|
|
1233
|
-
"isESM": false,
|
|
1234
|
-
"relativePath": [
|
|
1235
|
-
"dist",
|
|
1236
|
-
"commands",
|
|
1237
|
-
"import",
|
|
1238
|
-
"apply.js"
|
|
1239
|
-
]
|
|
1240
|
-
},
|
|
1241
|
-
"import:cancel": {
|
|
1242
|
-
"aliases": [],
|
|
1243
|
-
"args": {},
|
|
1244
|
-
"description": "Cancels an ongoing import plan that has not been committed yet.",
|
|
1569
|
+
"description": "Get details of a status page, including its cards and services.",
|
|
1245
1570
|
"flags": {
|
|
1246
|
-
"
|
|
1247
|
-
"char": "
|
|
1248
|
-
"description": "
|
|
1249
|
-
"name": "
|
|
1571
|
+
"output": {
|
|
1572
|
+
"char": "o",
|
|
1573
|
+
"description": "Output format.",
|
|
1574
|
+
"name": "output",
|
|
1575
|
+
"default": "detail",
|
|
1250
1576
|
"hasDynamicHelp": false,
|
|
1251
1577
|
"multiple": false,
|
|
1578
|
+
"options": [
|
|
1579
|
+
"detail",
|
|
1580
|
+
"json",
|
|
1581
|
+
"md"
|
|
1582
|
+
],
|
|
1252
1583
|
"type": "option"
|
|
1253
|
-
},
|
|
1254
|
-
"all": {
|
|
1255
|
-
"description": "Cancel all plans.",
|
|
1256
|
-
"name": "all",
|
|
1257
|
-
"allowNo": false,
|
|
1258
|
-
"type": "boolean"
|
|
1259
1584
|
}
|
|
1260
1585
|
},
|
|
1261
1586
|
"hasDynamicHelp": false,
|
|
1262
1587
|
"hidden": false,
|
|
1263
1588
|
"hiddenAliases": [],
|
|
1264
|
-
"id": "
|
|
1589
|
+
"id": "status-pages:get",
|
|
1265
1590
|
"pluginAlias": "checkly",
|
|
1266
1591
|
"pluginName": "checkly",
|
|
1267
1592
|
"pluginType": "core",
|
|
@@ -1272,120 +1597,70 @@
|
|
|
1272
1597
|
"relativePath": [
|
|
1273
1598
|
"dist",
|
|
1274
1599
|
"commands",
|
|
1275
|
-
"
|
|
1276
|
-
"
|
|
1600
|
+
"status-pages",
|
|
1601
|
+
"get.js"
|
|
1277
1602
|
]
|
|
1278
1603
|
},
|
|
1279
|
-
"
|
|
1604
|
+
"status-pages:list": {
|
|
1280
1605
|
"aliases": [],
|
|
1281
1606
|
"args": {},
|
|
1282
|
-
"description": "
|
|
1283
|
-
"flags": {
|
|
1284
|
-
"config": {
|
|
1285
|
-
"char": "c",
|
|
1286
|
-
"description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
|
|
1287
|
-
"name": "config",
|
|
1288
|
-
"hasDynamicHelp": false,
|
|
1289
|
-
"multiple": false,
|
|
1290
|
-
"type": "option"
|
|
1291
|
-
}
|
|
1292
|
-
},
|
|
1293
|
-
"hasDynamicHelp": false,
|
|
1294
|
-
"hidden": false,
|
|
1295
|
-
"hiddenAliases": [],
|
|
1296
|
-
"id": "import:commit",
|
|
1297
|
-
"pluginAlias": "checkly",
|
|
1298
|
-
"pluginName": "checkly",
|
|
1299
|
-
"pluginType": "core",
|
|
1300
|
-
"strict": true,
|
|
1301
|
-
"enableJsonFlag": false,
|
|
1302
|
-
"coreCommand": false,
|
|
1303
|
-
"isESM": false,
|
|
1304
|
-
"relativePath": [
|
|
1305
|
-
"dist",
|
|
1306
|
-
"commands",
|
|
1307
|
-
"import",
|
|
1308
|
-
"commit.js"
|
|
1309
|
-
]
|
|
1310
|
-
},
|
|
1311
|
-
"import:plan": {
|
|
1312
|
-
"aliases": [],
|
|
1313
|
-
"args": {
|
|
1314
|
-
"resource": {
|
|
1315
|
-
"description": "A specific resource to import.",
|
|
1316
|
-
"name": "resource",
|
|
1317
|
-
"required": false
|
|
1318
|
-
}
|
|
1319
|
-
},
|
|
1320
|
-
"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.",
|
|
1607
|
+
"description": "List all status pages in your account.",
|
|
1321
1608
|
"flags": {
|
|
1322
|
-
"
|
|
1323
|
-
"char": "
|
|
1324
|
-
"description": "
|
|
1325
|
-
"name": "
|
|
1609
|
+
"limit": {
|
|
1610
|
+
"char": "l",
|
|
1611
|
+
"description": "Number of status pages to return (1-100).",
|
|
1612
|
+
"name": "limit",
|
|
1613
|
+
"default": 25,
|
|
1326
1614
|
"hasDynamicHelp": false,
|
|
1327
1615
|
"multiple": false,
|
|
1328
1616
|
"type": "option"
|
|
1329
1617
|
},
|
|
1330
|
-
"
|
|
1331
|
-
"description": "
|
|
1332
|
-
"name": "
|
|
1333
|
-
"default": "__checks__",
|
|
1618
|
+
"cursor": {
|
|
1619
|
+
"description": "Cursor for next page (from previous output).",
|
|
1620
|
+
"name": "cursor",
|
|
1334
1621
|
"hasDynamicHelp": false,
|
|
1335
1622
|
"multiple": false,
|
|
1336
1623
|
"type": "option"
|
|
1337
1624
|
},
|
|
1338
|
-
"
|
|
1339
|
-
"description": "
|
|
1340
|
-
"name": "
|
|
1625
|
+
"compact": {
|
|
1626
|
+
"description": "Show one row per status page instead of per service.",
|
|
1627
|
+
"name": "compact",
|
|
1341
1628
|
"allowNo": false,
|
|
1342
1629
|
"type": "boolean"
|
|
1343
1630
|
},
|
|
1344
|
-
"
|
|
1345
|
-
"
|
|
1346
|
-
"
|
|
1347
|
-
"name": "
|
|
1348
|
-
"
|
|
1349
|
-
"type": "boolean"
|
|
1350
|
-
},
|
|
1351
|
-
"debug-import-plan-input-file": {
|
|
1352
|
-
"description": "A file to load an import plan from.",
|
|
1353
|
-
"hidden": true,
|
|
1354
|
-
"name": "debug-import-plan-input-file",
|
|
1355
|
-
"hasDynamicHelp": false,
|
|
1356
|
-
"multiple": false,
|
|
1357
|
-
"type": "option"
|
|
1358
|
-
},
|
|
1359
|
-
"debug-import-plan-output-file": {
|
|
1360
|
-
"description": "The file to output the import plan to.",
|
|
1361
|
-
"hidden": true,
|
|
1362
|
-
"name": "debug-import-plan-output-file",
|
|
1363
|
-
"default": "./debug-import-plan.json",
|
|
1631
|
+
"output": {
|
|
1632
|
+
"char": "o",
|
|
1633
|
+
"description": "Output format.",
|
|
1634
|
+
"name": "output",
|
|
1635
|
+
"default": "table",
|
|
1364
1636
|
"hasDynamicHelp": false,
|
|
1365
1637
|
"multiple": false,
|
|
1638
|
+
"options": [
|
|
1639
|
+
"table",
|
|
1640
|
+
"json",
|
|
1641
|
+
"md"
|
|
1642
|
+
],
|
|
1366
1643
|
"type": "option"
|
|
1367
1644
|
}
|
|
1368
1645
|
},
|
|
1369
1646
|
"hasDynamicHelp": false,
|
|
1370
1647
|
"hidden": false,
|
|
1371
|
-
"hiddenAliases": [
|
|
1372
|
-
|
|
1373
|
-
],
|
|
1374
|
-
"id": "import:plan",
|
|
1648
|
+
"hiddenAliases": [],
|
|
1649
|
+
"id": "status-pages:list",
|
|
1375
1650
|
"pluginAlias": "checkly",
|
|
1376
1651
|
"pluginName": "checkly",
|
|
1377
1652
|
"pluginType": "core",
|
|
1378
|
-
"strict":
|
|
1653
|
+
"strict": true,
|
|
1379
1654
|
"enableJsonFlag": false,
|
|
1380
1655
|
"coreCommand": false,
|
|
1381
1656
|
"isESM": false,
|
|
1382
1657
|
"relativePath": [
|
|
1383
1658
|
"dist",
|
|
1384
1659
|
"commands",
|
|
1385
|
-
"
|
|
1386
|
-
"
|
|
1660
|
+
"status-pages",
|
|
1661
|
+
"list.js"
|
|
1387
1662
|
]
|
|
1388
1663
|
}
|
|
1389
1664
|
},
|
|
1390
|
-
"version": "7.
|
|
1665
|
+
"version": "7.3.0"
|
|
1391
1666
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "checkly",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.3.0",
|
|
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"
|