checkly 7.5.1 → 7.5.2
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/authCommand.d.ts +5 -0
- package/dist/commands/authCommand.js +37 -0
- package/dist/commands/authCommand.js.map +1 -1
- package/dist/commands/checks/get.d.ts +2 -0
- package/dist/commands/checks/get.js +2 -0
- package/dist/commands/checks/get.js.map +1 -1
- package/dist/commands/checks/list.d.ts +2 -0
- package/dist/commands/checks/list.js +2 -0
- package/dist/commands/checks/list.js.map +1 -1
- package/dist/commands/deploy.d.ts +1 -0
- package/dist/commands/deploy.js +1 -0
- package/dist/commands/deploy.js.map +1 -1
- package/dist/commands/destroy.d.ts +1 -0
- package/dist/commands/destroy.js +1 -0
- package/dist/commands/destroy.js.map +1 -1
- package/dist/commands/env/ls.d.ts +2 -0
- package/dist/commands/env/ls.js +2 -0
- package/dist/commands/env/ls.js.map +1 -1
- package/dist/commands/env/pull.d.ts +2 -0
- package/dist/commands/env/pull.js +2 -0
- package/dist/commands/env/pull.js.map +1 -1
- package/dist/commands/env/rm.d.ts +1 -0
- package/dist/commands/env/rm.js +1 -0
- package/dist/commands/env/rm.js.map +1 -1
- package/dist/commands/env/update.d.ts +1 -0
- package/dist/commands/env/update.js +1 -0
- package/dist/commands/env/update.js.map +1 -1
- package/dist/commands/import/cancel.d.ts +1 -0
- package/dist/commands/import/cancel.js +1 -0
- package/dist/commands/import/cancel.js.map +1 -1
- package/dist/commands/import/plan.d.ts +2 -0
- package/dist/commands/import/plan.js +2 -0
- package/dist/commands/import/plan.js.map +1 -1
- package/dist/commands/incidents/create.d.ts +2 -0
- package/dist/commands/incidents/create.js +26 -3
- package/dist/commands/incidents/create.js.map +1 -1
- package/dist/commands/incidents/list.d.ts +2 -0
- package/dist/commands/incidents/list.js +2 -0
- package/dist/commands/incidents/list.js.map +1 -1
- package/dist/commands/incidents/resolve.d.ts +2 -0
- package/dist/commands/incidents/resolve.js +20 -0
- package/dist/commands/incidents/resolve.js.map +1 -1
- package/dist/commands/incidents/update.d.ts +2 -0
- package/dist/commands/incidents/update.js +23 -0
- package/dist/commands/incidents/update.js.map +1 -1
- package/dist/commands/login.d.ts +1 -0
- package/dist/commands/login.js +1 -0
- package/dist/commands/login.js.map +1 -1
- package/dist/commands/logout.d.ts +1 -0
- package/dist/commands/logout.js +1 -0
- package/dist/commands/logout.js.map +1 -1
- package/dist/commands/pw-test.d.ts +2 -0
- package/dist/commands/pw-test.js +2 -0
- package/dist/commands/pw-test.js.map +1 -1
- package/dist/commands/rules.d.ts +2 -0
- package/dist/commands/rules.js +2 -0
- package/dist/commands/rules.js.map +1 -1
- package/dist/commands/runtimes.d.ts +2 -0
- package/dist/commands/runtimes.js +2 -0
- package/dist/commands/runtimes.js.map +1 -1
- package/dist/commands/status-pages/get.d.ts +2 -0
- package/dist/commands/status-pages/get.js +2 -0
- package/dist/commands/status-pages/get.js.map +1 -1
- package/dist/commands/status-pages/list.d.ts +2 -0
- package/dist/commands/status-pages/list.js +2 -0
- package/dist/commands/status-pages/list.js.map +1 -1
- package/dist/commands/switch.d.ts +1 -0
- package/dist/commands/switch.js +1 -0
- package/dist/commands/switch.js.map +1 -1
- package/dist/commands/sync-playwright.d.ts +1 -0
- package/dist/commands/sync-playwright.js +1 -0
- package/dist/commands/sync-playwright.js.map +1 -1
- package/dist/commands/test.d.ts +2 -0
- package/dist/commands/test.js +2 -0
- package/dist/commands/test.js.map +1 -1
- package/dist/commands/trigger.d.ts +1 -0
- package/dist/commands/trigger.js +1 -0
- package/dist/commands/trigger.js.map +1 -1
- package/dist/commands/validate.d.ts +2 -0
- package/dist/commands/validate.js +2 -0
- package/dist/commands/validate.js.map +1 -1
- package/dist/commands/whoami.d.ts +2 -0
- package/dist/commands/whoami.js +2 -0
- package/dist/commands/whoami.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/oclif.manifest.json +254 -215
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -124,7 +124,7 @@
|
|
|
124
124
|
"coreCommand": true,
|
|
125
125
|
"readOnly": false,
|
|
126
126
|
"destructive": false,
|
|
127
|
-
"idempotent":
|
|
127
|
+
"idempotent": true,
|
|
128
128
|
"isESM": false,
|
|
129
129
|
"relativePath": [
|
|
130
130
|
"dist",
|
|
@@ -164,7 +164,7 @@
|
|
|
164
164
|
"enableJsonFlag": false,
|
|
165
165
|
"coreCommand": false,
|
|
166
166
|
"readOnly": false,
|
|
167
|
-
"destructive":
|
|
167
|
+
"destructive": true,
|
|
168
168
|
"idempotent": false,
|
|
169
169
|
"isESM": false,
|
|
170
170
|
"relativePath": [
|
|
@@ -215,7 +215,7 @@
|
|
|
215
215
|
"coreCommand": false,
|
|
216
216
|
"readOnly": false,
|
|
217
217
|
"destructive": false,
|
|
218
|
-
"idempotent":
|
|
218
|
+
"idempotent": true,
|
|
219
219
|
"isESM": false,
|
|
220
220
|
"relativePath": [
|
|
221
221
|
"dist",
|
|
@@ -248,7 +248,7 @@
|
|
|
248
248
|
"coreCommand": false,
|
|
249
249
|
"readOnly": false,
|
|
250
250
|
"destructive": false,
|
|
251
|
-
"idempotent":
|
|
251
|
+
"idempotent": true,
|
|
252
252
|
"isESM": false,
|
|
253
253
|
"relativePath": [
|
|
254
254
|
"dist",
|
|
@@ -411,9 +411,9 @@
|
|
|
411
411
|
"strict": true,
|
|
412
412
|
"enableJsonFlag": false,
|
|
413
413
|
"coreCommand": true,
|
|
414
|
-
"readOnly":
|
|
414
|
+
"readOnly": true,
|
|
415
415
|
"destructive": false,
|
|
416
|
-
"idempotent":
|
|
416
|
+
"idempotent": true,
|
|
417
417
|
"isESM": false,
|
|
418
418
|
"relativePath": [
|
|
419
419
|
"dist",
|
|
@@ -436,9 +436,9 @@
|
|
|
436
436
|
"strict": true,
|
|
437
437
|
"enableJsonFlag": false,
|
|
438
438
|
"coreCommand": false,
|
|
439
|
-
"readOnly":
|
|
439
|
+
"readOnly": true,
|
|
440
440
|
"destructive": false,
|
|
441
|
-
"idempotent":
|
|
441
|
+
"idempotent": true,
|
|
442
442
|
"isESM": false,
|
|
443
443
|
"relativePath": [
|
|
444
444
|
"dist",
|
|
@@ -461,9 +461,9 @@
|
|
|
461
461
|
"strict": true,
|
|
462
462
|
"enableJsonFlag": false,
|
|
463
463
|
"coreCommand": false,
|
|
464
|
-
"readOnly":
|
|
464
|
+
"readOnly": true,
|
|
465
465
|
"destructive": false,
|
|
466
|
-
"idempotent":
|
|
466
|
+
"idempotent": true,
|
|
467
467
|
"isESM": false,
|
|
468
468
|
"relativePath": [
|
|
469
469
|
"dist",
|
|
@@ -533,7 +533,7 @@
|
|
|
533
533
|
"coreCommand": false,
|
|
534
534
|
"readOnly": false,
|
|
535
535
|
"destructive": false,
|
|
536
|
-
"idempotent":
|
|
536
|
+
"idempotent": true,
|
|
537
537
|
"isESM": false,
|
|
538
538
|
"relativePath": [
|
|
539
539
|
"dist",
|
|
@@ -558,7 +558,7 @@
|
|
|
558
558
|
"coreCommand": false,
|
|
559
559
|
"readOnly": false,
|
|
560
560
|
"destructive": false,
|
|
561
|
-
"idempotent":
|
|
561
|
+
"idempotent": true,
|
|
562
562
|
"isESM": false,
|
|
563
563
|
"relativePath": [
|
|
564
564
|
"dist",
|
|
@@ -726,9 +726,9 @@
|
|
|
726
726
|
"strict": false,
|
|
727
727
|
"enableJsonFlag": false,
|
|
728
728
|
"coreCommand": true,
|
|
729
|
-
"readOnly":
|
|
729
|
+
"readOnly": true,
|
|
730
730
|
"destructive": false,
|
|
731
|
-
"idempotent":
|
|
731
|
+
"idempotent": true,
|
|
732
732
|
"isESM": false,
|
|
733
733
|
"relativePath": [
|
|
734
734
|
"dist",
|
|
@@ -868,7 +868,7 @@
|
|
|
868
868
|
"coreCommand": true,
|
|
869
869
|
"readOnly": false,
|
|
870
870
|
"destructive": false,
|
|
871
|
-
"idempotent":
|
|
871
|
+
"idempotent": true,
|
|
872
872
|
"isESM": false,
|
|
873
873
|
"relativePath": [
|
|
874
874
|
"dist",
|
|
@@ -907,9 +907,9 @@
|
|
|
907
907
|
"strict": true,
|
|
908
908
|
"enableJsonFlag": false,
|
|
909
909
|
"coreCommand": true,
|
|
910
|
-
"readOnly":
|
|
910
|
+
"readOnly": true,
|
|
911
911
|
"destructive": false,
|
|
912
|
-
"idempotent":
|
|
912
|
+
"idempotent": true,
|
|
913
913
|
"isESM": false,
|
|
914
914
|
"relativePath": [
|
|
915
915
|
"dist",
|
|
@@ -932,9 +932,9 @@
|
|
|
932
932
|
"strict": true,
|
|
933
933
|
"enableJsonFlag": false,
|
|
934
934
|
"coreCommand": false,
|
|
935
|
-
"readOnly":
|
|
935
|
+
"readOnly": true,
|
|
936
936
|
"destructive": false,
|
|
937
|
-
"idempotent":
|
|
937
|
+
"idempotent": true,
|
|
938
938
|
"isESM": false,
|
|
939
939
|
"relativePath": [
|
|
940
940
|
"dist",
|
|
@@ -1009,9 +1009,9 @@
|
|
|
1009
1009
|
"strict": true,
|
|
1010
1010
|
"enableJsonFlag": false,
|
|
1011
1011
|
"coreCommand": false,
|
|
1012
|
-
"readOnly":
|
|
1012
|
+
"readOnly": true,
|
|
1013
1013
|
"destructive": false,
|
|
1014
|
-
"idempotent":
|
|
1014
|
+
"idempotent": true,
|
|
1015
1015
|
"isESM": false,
|
|
1016
1016
|
"relativePath": [
|
|
1017
1017
|
"dist",
|
|
@@ -1108,9 +1108,9 @@
|
|
|
1108
1108
|
"strict": true,
|
|
1109
1109
|
"enableJsonFlag": false,
|
|
1110
1110
|
"coreCommand": false,
|
|
1111
|
-
"readOnly":
|
|
1111
|
+
"readOnly": true,
|
|
1112
1112
|
"destructive": false,
|
|
1113
|
-
"idempotent":
|
|
1113
|
+
"idempotent": true,
|
|
1114
1114
|
"isESM": false,
|
|
1115
1115
|
"relativePath": [
|
|
1116
1116
|
"dist",
|
|
@@ -1273,44 +1273,24 @@
|
|
|
1273
1273
|
"parse-project.js"
|
|
1274
1274
|
]
|
|
1275
1275
|
},
|
|
1276
|
-
"
|
|
1276
|
+
"import:apply": {
|
|
1277
1277
|
"aliases": [],
|
|
1278
|
-
"args": {
|
|
1279
|
-
|
|
1280
|
-
"description": "Environment variable key.",
|
|
1281
|
-
"name": "key",
|
|
1282
|
-
"required": true
|
|
1283
|
-
},
|
|
1284
|
-
"value": {
|
|
1285
|
-
"description": "Environment variable value.",
|
|
1286
|
-
"name": "value",
|
|
1287
|
-
"required": false
|
|
1288
|
-
}
|
|
1289
|
-
},
|
|
1290
|
-
"description": "Add environment variable via \"checkly env add <key> <value>\".",
|
|
1278
|
+
"args": {},
|
|
1279
|
+
"description": "Attach imported resources into your project in a pending state.",
|
|
1291
1280
|
"flags": {
|
|
1292
|
-
"
|
|
1293
|
-
"char": "
|
|
1294
|
-
"description": "
|
|
1295
|
-
"name": "
|
|
1296
|
-
"
|
|
1297
|
-
"
|
|
1298
|
-
|
|
1299
|
-
"secret": {
|
|
1300
|
-
"char": "s",
|
|
1301
|
-
"description": "Indicate that the environment variable will be secret.",
|
|
1302
|
-
"exclusive": [
|
|
1303
|
-
"locked"
|
|
1304
|
-
],
|
|
1305
|
-
"name": "secret",
|
|
1306
|
-
"allowNo": false,
|
|
1307
|
-
"type": "boolean"
|
|
1281
|
+
"config": {
|
|
1282
|
+
"char": "c",
|
|
1283
|
+
"description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
|
|
1284
|
+
"name": "config",
|
|
1285
|
+
"hasDynamicHelp": false,
|
|
1286
|
+
"multiple": false,
|
|
1287
|
+
"type": "option"
|
|
1308
1288
|
}
|
|
1309
1289
|
},
|
|
1310
1290
|
"hasDynamicHelp": false,
|
|
1311
1291
|
"hidden": false,
|
|
1312
1292
|
"hiddenAliases": [],
|
|
1313
|
-
"id": "
|
|
1293
|
+
"id": "import:apply",
|
|
1314
1294
|
"pluginAlias": "checkly",
|
|
1315
1295
|
"pluginName": "checkly",
|
|
1316
1296
|
"pluginType": "core",
|
|
@@ -1324,19 +1304,34 @@
|
|
|
1324
1304
|
"relativePath": [
|
|
1325
1305
|
"dist",
|
|
1326
1306
|
"commands",
|
|
1327
|
-
"
|
|
1328
|
-
"
|
|
1307
|
+
"import",
|
|
1308
|
+
"apply.js"
|
|
1329
1309
|
]
|
|
1330
1310
|
},
|
|
1331
|
-
"
|
|
1311
|
+
"import:cancel": {
|
|
1332
1312
|
"aliases": [],
|
|
1333
1313
|
"args": {},
|
|
1334
|
-
"description": "
|
|
1335
|
-
"flags": {
|
|
1314
|
+
"description": "Cancels an ongoing import plan that has not been committed yet.",
|
|
1315
|
+
"flags": {
|
|
1316
|
+
"config": {
|
|
1317
|
+
"char": "c",
|
|
1318
|
+
"description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
|
|
1319
|
+
"name": "config",
|
|
1320
|
+
"hasDynamicHelp": false,
|
|
1321
|
+
"multiple": false,
|
|
1322
|
+
"type": "option"
|
|
1323
|
+
},
|
|
1324
|
+
"all": {
|
|
1325
|
+
"description": "Cancel all plans.",
|
|
1326
|
+
"name": "all",
|
|
1327
|
+
"allowNo": false,
|
|
1328
|
+
"type": "boolean"
|
|
1329
|
+
}
|
|
1330
|
+
},
|
|
1336
1331
|
"hasDynamicHelp": false,
|
|
1337
1332
|
"hidden": false,
|
|
1338
1333
|
"hiddenAliases": [],
|
|
1339
|
-
"id": "
|
|
1334
|
+
"id": "import:cancel",
|
|
1340
1335
|
"pluginAlias": "checkly",
|
|
1341
1336
|
"pluginName": "checkly",
|
|
1342
1337
|
"pluginType": "core",
|
|
@@ -1345,39 +1340,33 @@
|
|
|
1345
1340
|
"coreCommand": false,
|
|
1346
1341
|
"readOnly": false,
|
|
1347
1342
|
"destructive": false,
|
|
1348
|
-
"idempotent":
|
|
1343
|
+
"idempotent": true,
|
|
1349
1344
|
"isESM": false,
|
|
1350
1345
|
"relativePath": [
|
|
1351
1346
|
"dist",
|
|
1352
1347
|
"commands",
|
|
1353
|
-
"
|
|
1354
|
-
"
|
|
1348
|
+
"import",
|
|
1349
|
+
"cancel.js"
|
|
1355
1350
|
]
|
|
1356
1351
|
},
|
|
1357
|
-
"
|
|
1352
|
+
"import:commit": {
|
|
1358
1353
|
"aliases": [],
|
|
1359
|
-
"args": {
|
|
1360
|
-
|
|
1361
|
-
"default": ".env",
|
|
1362
|
-
"description": "Filename of the generated file.",
|
|
1363
|
-
"name": "filename",
|
|
1364
|
-
"required": false
|
|
1365
|
-
}
|
|
1366
|
-
},
|
|
1367
|
-
"description": "Pull Checkly environment variables via \"checkly env pull <filename>\".",
|
|
1354
|
+
"args": {},
|
|
1355
|
+
"description": "Permanently commit imported resources into your project.",
|
|
1368
1356
|
"flags": {
|
|
1369
|
-
"
|
|
1370
|
-
"char": "
|
|
1371
|
-
"description": "
|
|
1372
|
-
"name": "
|
|
1373
|
-
"
|
|
1374
|
-
"
|
|
1357
|
+
"config": {
|
|
1358
|
+
"char": "c",
|
|
1359
|
+
"description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
|
|
1360
|
+
"name": "config",
|
|
1361
|
+
"hasDynamicHelp": false,
|
|
1362
|
+
"multiple": false,
|
|
1363
|
+
"type": "option"
|
|
1375
1364
|
}
|
|
1376
1365
|
},
|
|
1377
1366
|
"hasDynamicHelp": false,
|
|
1378
1367
|
"hidden": false,
|
|
1379
1368
|
"hiddenAliases": [],
|
|
1380
|
-
"id": "
|
|
1369
|
+
"id": "import:commit",
|
|
1381
1370
|
"pluginAlias": "checkly",
|
|
1382
1371
|
"pluginName": "checkly",
|
|
1383
1372
|
"pluginType": "core",
|
|
@@ -1391,51 +1380,92 @@
|
|
|
1391
1380
|
"relativePath": [
|
|
1392
1381
|
"dist",
|
|
1393
1382
|
"commands",
|
|
1394
|
-
"
|
|
1395
|
-
"
|
|
1383
|
+
"import",
|
|
1384
|
+
"commit.js"
|
|
1396
1385
|
]
|
|
1397
1386
|
},
|
|
1398
|
-
"
|
|
1387
|
+
"import:plan": {
|
|
1399
1388
|
"aliases": [],
|
|
1400
1389
|
"args": {
|
|
1401
|
-
"
|
|
1402
|
-
"description": "
|
|
1403
|
-
"name": "
|
|
1404
|
-
"required":
|
|
1390
|
+
"resource": {
|
|
1391
|
+
"description": "A specific resource to import.",
|
|
1392
|
+
"name": "resource",
|
|
1393
|
+
"required": false
|
|
1405
1394
|
}
|
|
1406
1395
|
},
|
|
1407
|
-
"description": "
|
|
1396
|
+
"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.",
|
|
1408
1397
|
"flags": {
|
|
1409
|
-
"
|
|
1410
|
-
"char": "
|
|
1411
|
-
"description": "
|
|
1412
|
-
"name": "
|
|
1398
|
+
"config": {
|
|
1399
|
+
"char": "c",
|
|
1400
|
+
"description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
|
|
1401
|
+
"name": "config",
|
|
1402
|
+
"hasDynamicHelp": false,
|
|
1403
|
+
"multiple": false,
|
|
1404
|
+
"type": "option"
|
|
1405
|
+
},
|
|
1406
|
+
"root": {
|
|
1407
|
+
"description": "The root folder in which to write generated code files.",
|
|
1408
|
+
"name": "root",
|
|
1409
|
+
"default": "__checks__",
|
|
1410
|
+
"hasDynamicHelp": false,
|
|
1411
|
+
"multiple": false,
|
|
1412
|
+
"type": "option"
|
|
1413
|
+
},
|
|
1414
|
+
"preview": {
|
|
1415
|
+
"description": "Preview generated code without creating an actual import plan.",
|
|
1416
|
+
"name": "preview",
|
|
1417
|
+
"allowNo": false,
|
|
1418
|
+
"type": "boolean"
|
|
1419
|
+
},
|
|
1420
|
+
"debug-import-plan": {
|
|
1421
|
+
"description": "Output the import plan to a file.",
|
|
1422
|
+
"hidden": true,
|
|
1423
|
+
"name": "debug-import-plan",
|
|
1413
1424
|
"allowNo": false,
|
|
1414
1425
|
"type": "boolean"
|
|
1426
|
+
},
|
|
1427
|
+
"debug-import-plan-input-file": {
|
|
1428
|
+
"description": "A file to load an import plan from.",
|
|
1429
|
+
"hidden": true,
|
|
1430
|
+
"name": "debug-import-plan-input-file",
|
|
1431
|
+
"hasDynamicHelp": false,
|
|
1432
|
+
"multiple": false,
|
|
1433
|
+
"type": "option"
|
|
1434
|
+
},
|
|
1435
|
+
"debug-import-plan-output-file": {
|
|
1436
|
+
"description": "The file to output the import plan to.",
|
|
1437
|
+
"hidden": true,
|
|
1438
|
+
"name": "debug-import-plan-output-file",
|
|
1439
|
+
"default": "./debug-import-plan.json",
|
|
1440
|
+
"hasDynamicHelp": false,
|
|
1441
|
+
"multiple": false,
|
|
1442
|
+
"type": "option"
|
|
1415
1443
|
}
|
|
1416
1444
|
},
|
|
1417
1445
|
"hasDynamicHelp": false,
|
|
1418
1446
|
"hidden": false,
|
|
1419
|
-
"hiddenAliases": [
|
|
1420
|
-
|
|
1447
|
+
"hiddenAliases": [
|
|
1448
|
+
"import"
|
|
1449
|
+
],
|
|
1450
|
+
"id": "import:plan",
|
|
1421
1451
|
"pluginAlias": "checkly",
|
|
1422
1452
|
"pluginName": "checkly",
|
|
1423
1453
|
"pluginType": "core",
|
|
1424
|
-
"strict":
|
|
1454
|
+
"strict": false,
|
|
1425
1455
|
"enableJsonFlag": false,
|
|
1426
1456
|
"coreCommand": false,
|
|
1427
|
-
"readOnly":
|
|
1457
|
+
"readOnly": true,
|
|
1428
1458
|
"destructive": false,
|
|
1429
|
-
"idempotent":
|
|
1459
|
+
"idempotent": true,
|
|
1430
1460
|
"isESM": false,
|
|
1431
1461
|
"relativePath": [
|
|
1432
1462
|
"dist",
|
|
1433
1463
|
"commands",
|
|
1434
|
-
"
|
|
1435
|
-
"
|
|
1464
|
+
"import",
|
|
1465
|
+
"plan.js"
|
|
1436
1466
|
]
|
|
1437
1467
|
},
|
|
1438
|
-
"env:
|
|
1468
|
+
"env:add": {
|
|
1439
1469
|
"aliases": [],
|
|
1440
1470
|
"args": {
|
|
1441
1471
|
"key": {
|
|
@@ -1449,18 +1479,18 @@
|
|
|
1449
1479
|
"required": false
|
|
1450
1480
|
}
|
|
1451
1481
|
},
|
|
1452
|
-
"description": "
|
|
1482
|
+
"description": "Add environment variable via \"checkly env add <key> <value>\".",
|
|
1453
1483
|
"flags": {
|
|
1454
1484
|
"locked": {
|
|
1455
1485
|
"char": "l",
|
|
1456
|
-
"description": "Indicate
|
|
1486
|
+
"description": "Indicate that the environment variable will be locked.",
|
|
1457
1487
|
"name": "locked",
|
|
1458
1488
|
"allowNo": false,
|
|
1459
1489
|
"type": "boolean"
|
|
1460
1490
|
},
|
|
1461
1491
|
"secret": {
|
|
1462
1492
|
"char": "s",
|
|
1463
|
-
"description": "Indicate
|
|
1493
|
+
"description": "Indicate that the environment variable will be secret.",
|
|
1464
1494
|
"exclusive": [
|
|
1465
1495
|
"locked"
|
|
1466
1496
|
],
|
|
@@ -1472,7 +1502,7 @@
|
|
|
1472
1502
|
"hasDynamicHelp": false,
|
|
1473
1503
|
"hidden": false,
|
|
1474
1504
|
"hiddenAliases": [],
|
|
1475
|
-
"id": "env:
|
|
1505
|
+
"id": "env:add",
|
|
1476
1506
|
"pluginAlias": "checkly",
|
|
1477
1507
|
"pluginName": "checkly",
|
|
1478
1508
|
"pluginType": "core",
|
|
@@ -1487,60 +1517,51 @@
|
|
|
1487
1517
|
"dist",
|
|
1488
1518
|
"commands",
|
|
1489
1519
|
"env",
|
|
1490
|
-
"
|
|
1520
|
+
"add.js"
|
|
1491
1521
|
]
|
|
1492
1522
|
},
|
|
1493
|
-
"
|
|
1523
|
+
"env:ls": {
|
|
1494
1524
|
"aliases": [],
|
|
1495
1525
|
"args": {},
|
|
1496
|
-
"description": "
|
|
1497
|
-
"flags": {
|
|
1498
|
-
"config": {
|
|
1499
|
-
"char": "c",
|
|
1500
|
-
"description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
|
|
1501
|
-
"name": "config",
|
|
1502
|
-
"hasDynamicHelp": false,
|
|
1503
|
-
"multiple": false,
|
|
1504
|
-
"type": "option"
|
|
1505
|
-
}
|
|
1506
|
-
},
|
|
1526
|
+
"description": "List all Checkly environment variables via \"checkly env ls\".",
|
|
1527
|
+
"flags": {},
|
|
1507
1528
|
"hasDynamicHelp": false,
|
|
1508
1529
|
"hidden": false,
|
|
1509
1530
|
"hiddenAliases": [],
|
|
1510
|
-
"id": "
|
|
1531
|
+
"id": "env:ls",
|
|
1511
1532
|
"pluginAlias": "checkly",
|
|
1512
1533
|
"pluginName": "checkly",
|
|
1513
1534
|
"pluginType": "core",
|
|
1514
1535
|
"strict": true,
|
|
1515
1536
|
"enableJsonFlag": false,
|
|
1516
1537
|
"coreCommand": false,
|
|
1517
|
-
"readOnly":
|
|
1538
|
+
"readOnly": true,
|
|
1518
1539
|
"destructive": false,
|
|
1519
|
-
"idempotent":
|
|
1540
|
+
"idempotent": true,
|
|
1520
1541
|
"isESM": false,
|
|
1521
1542
|
"relativePath": [
|
|
1522
1543
|
"dist",
|
|
1523
1544
|
"commands",
|
|
1524
|
-
"
|
|
1525
|
-
"
|
|
1545
|
+
"env",
|
|
1546
|
+
"ls.js"
|
|
1526
1547
|
]
|
|
1527
1548
|
},
|
|
1528
|
-
"
|
|
1549
|
+
"env:pull": {
|
|
1529
1550
|
"aliases": [],
|
|
1530
|
-
"args": {
|
|
1531
|
-
|
|
1551
|
+
"args": {
|
|
1552
|
+
"filename": {
|
|
1553
|
+
"default": ".env",
|
|
1554
|
+
"description": "Filename of the generated file.",
|
|
1555
|
+
"name": "filename",
|
|
1556
|
+
"required": false
|
|
1557
|
+
}
|
|
1558
|
+
},
|
|
1559
|
+
"description": "Pull Checkly environment variables via \"checkly env pull <filename>\".",
|
|
1532
1560
|
"flags": {
|
|
1533
|
-
"
|
|
1534
|
-
"char": "
|
|
1535
|
-
"description": "
|
|
1536
|
-
"name": "
|
|
1537
|
-
"hasDynamicHelp": false,
|
|
1538
|
-
"multiple": false,
|
|
1539
|
-
"type": "option"
|
|
1540
|
-
},
|
|
1541
|
-
"all": {
|
|
1542
|
-
"description": "Cancel all plans.",
|
|
1543
|
-
"name": "all",
|
|
1561
|
+
"force": {
|
|
1562
|
+
"char": "f",
|
|
1563
|
+
"description": "Force to overwrite existing file.",
|
|
1564
|
+
"name": "force",
|
|
1544
1565
|
"allowNo": false,
|
|
1545
1566
|
"type": "boolean"
|
|
1546
1567
|
}
|
|
@@ -1548,42 +1569,47 @@
|
|
|
1548
1569
|
"hasDynamicHelp": false,
|
|
1549
1570
|
"hidden": false,
|
|
1550
1571
|
"hiddenAliases": [],
|
|
1551
|
-
"id": "
|
|
1572
|
+
"id": "env:pull",
|
|
1552
1573
|
"pluginAlias": "checkly",
|
|
1553
1574
|
"pluginName": "checkly",
|
|
1554
1575
|
"pluginType": "core",
|
|
1555
1576
|
"strict": true,
|
|
1556
1577
|
"enableJsonFlag": false,
|
|
1557
1578
|
"coreCommand": false,
|
|
1558
|
-
"readOnly":
|
|
1579
|
+
"readOnly": true,
|
|
1559
1580
|
"destructive": false,
|
|
1560
|
-
"idempotent":
|
|
1581
|
+
"idempotent": true,
|
|
1561
1582
|
"isESM": false,
|
|
1562
1583
|
"relativePath": [
|
|
1563
1584
|
"dist",
|
|
1564
1585
|
"commands",
|
|
1565
|
-
"
|
|
1566
|
-
"
|
|
1586
|
+
"env",
|
|
1587
|
+
"pull.js"
|
|
1567
1588
|
]
|
|
1568
1589
|
},
|
|
1569
|
-
"
|
|
1590
|
+
"env:rm": {
|
|
1570
1591
|
"aliases": [],
|
|
1571
|
-
"args": {
|
|
1572
|
-
|
|
1592
|
+
"args": {
|
|
1593
|
+
"key": {
|
|
1594
|
+
"description": "Environment variable key to remove.",
|
|
1595
|
+
"name": "key",
|
|
1596
|
+
"required": true
|
|
1597
|
+
}
|
|
1598
|
+
},
|
|
1599
|
+
"description": "Remove environment variable via \"checkly env rm <key>\".",
|
|
1573
1600
|
"flags": {
|
|
1574
|
-
"
|
|
1575
|
-
"char": "
|
|
1576
|
-
"description": "
|
|
1577
|
-
"name": "
|
|
1578
|
-
"
|
|
1579
|
-
"
|
|
1580
|
-
"type": "option"
|
|
1601
|
+
"force": {
|
|
1602
|
+
"char": "f",
|
|
1603
|
+
"description": "Force to skip the confirmation prompt.",
|
|
1604
|
+
"name": "force",
|
|
1605
|
+
"allowNo": false,
|
|
1606
|
+
"type": "boolean"
|
|
1581
1607
|
}
|
|
1582
1608
|
},
|
|
1583
1609
|
"hasDynamicHelp": false,
|
|
1584
1610
|
"hidden": false,
|
|
1585
1611
|
"hiddenAliases": [],
|
|
1586
|
-
"id": "
|
|
1612
|
+
"id": "env:rm",
|
|
1587
1613
|
"pluginAlias": "checkly",
|
|
1588
1614
|
"pluginName": "checkly",
|
|
1589
1615
|
"pluginType": "core",
|
|
@@ -1591,95 +1617,69 @@
|
|
|
1591
1617
|
"enableJsonFlag": false,
|
|
1592
1618
|
"coreCommand": false,
|
|
1593
1619
|
"readOnly": false,
|
|
1594
|
-
"destructive":
|
|
1620
|
+
"destructive": true,
|
|
1595
1621
|
"idempotent": false,
|
|
1596
1622
|
"isESM": false,
|
|
1597
1623
|
"relativePath": [
|
|
1598
1624
|
"dist",
|
|
1599
1625
|
"commands",
|
|
1600
|
-
"
|
|
1601
|
-
"
|
|
1626
|
+
"env",
|
|
1627
|
+
"rm.js"
|
|
1602
1628
|
]
|
|
1603
1629
|
},
|
|
1604
|
-
"
|
|
1630
|
+
"env:update": {
|
|
1605
1631
|
"aliases": [],
|
|
1606
1632
|
"args": {
|
|
1607
|
-
"
|
|
1608
|
-
"description": "
|
|
1609
|
-
"name": "
|
|
1633
|
+
"key": {
|
|
1634
|
+
"description": "Environment variable key.",
|
|
1635
|
+
"name": "key",
|
|
1636
|
+
"required": true
|
|
1637
|
+
},
|
|
1638
|
+
"value": {
|
|
1639
|
+
"description": "Environment variable value.",
|
|
1640
|
+
"name": "value",
|
|
1610
1641
|
"required": false
|
|
1611
1642
|
}
|
|
1612
1643
|
},
|
|
1613
|
-
"description": "
|
|
1644
|
+
"description": "Update environment variable via \"checkly env update <key> <value>\".",
|
|
1614
1645
|
"flags": {
|
|
1615
|
-
"
|
|
1616
|
-
"char": "
|
|
1617
|
-
"description": "
|
|
1618
|
-
"name": "
|
|
1619
|
-
"hasDynamicHelp": false,
|
|
1620
|
-
"multiple": false,
|
|
1621
|
-
"type": "option"
|
|
1622
|
-
},
|
|
1623
|
-
"root": {
|
|
1624
|
-
"description": "The root folder in which to write generated code files.",
|
|
1625
|
-
"name": "root",
|
|
1626
|
-
"default": "__checks__",
|
|
1627
|
-
"hasDynamicHelp": false,
|
|
1628
|
-
"multiple": false,
|
|
1629
|
-
"type": "option"
|
|
1630
|
-
},
|
|
1631
|
-
"preview": {
|
|
1632
|
-
"description": "Preview generated code without creating an actual import plan.",
|
|
1633
|
-
"name": "preview",
|
|
1646
|
+
"locked": {
|
|
1647
|
+
"char": "l",
|
|
1648
|
+
"description": "Indicate if environment variable is locked.",
|
|
1649
|
+
"name": "locked",
|
|
1634
1650
|
"allowNo": false,
|
|
1635
1651
|
"type": "boolean"
|
|
1636
1652
|
},
|
|
1637
|
-
"
|
|
1638
|
-
"
|
|
1639
|
-
"
|
|
1640
|
-
"
|
|
1653
|
+
"secret": {
|
|
1654
|
+
"char": "s",
|
|
1655
|
+
"description": "Indicate if environment variable is secret.",
|
|
1656
|
+
"exclusive": [
|
|
1657
|
+
"locked"
|
|
1658
|
+
],
|
|
1659
|
+
"name": "secret",
|
|
1641
1660
|
"allowNo": false,
|
|
1642
1661
|
"type": "boolean"
|
|
1643
|
-
},
|
|
1644
|
-
"debug-import-plan-input-file": {
|
|
1645
|
-
"description": "A file to load an import plan from.",
|
|
1646
|
-
"hidden": true,
|
|
1647
|
-
"name": "debug-import-plan-input-file",
|
|
1648
|
-
"hasDynamicHelp": false,
|
|
1649
|
-
"multiple": false,
|
|
1650
|
-
"type": "option"
|
|
1651
|
-
},
|
|
1652
|
-
"debug-import-plan-output-file": {
|
|
1653
|
-
"description": "The file to output the import plan to.",
|
|
1654
|
-
"hidden": true,
|
|
1655
|
-
"name": "debug-import-plan-output-file",
|
|
1656
|
-
"default": "./debug-import-plan.json",
|
|
1657
|
-
"hasDynamicHelp": false,
|
|
1658
|
-
"multiple": false,
|
|
1659
|
-
"type": "option"
|
|
1660
1662
|
}
|
|
1661
1663
|
},
|
|
1662
1664
|
"hasDynamicHelp": false,
|
|
1663
1665
|
"hidden": false,
|
|
1664
|
-
"hiddenAliases": [
|
|
1665
|
-
|
|
1666
|
-
],
|
|
1667
|
-
"id": "import:plan",
|
|
1666
|
+
"hiddenAliases": [],
|
|
1667
|
+
"id": "env:update",
|
|
1668
1668
|
"pluginAlias": "checkly",
|
|
1669
1669
|
"pluginName": "checkly",
|
|
1670
1670
|
"pluginType": "core",
|
|
1671
|
-
"strict":
|
|
1671
|
+
"strict": true,
|
|
1672
1672
|
"enableJsonFlag": false,
|
|
1673
1673
|
"coreCommand": false,
|
|
1674
1674
|
"readOnly": false,
|
|
1675
1675
|
"destructive": false,
|
|
1676
|
-
"idempotent":
|
|
1676
|
+
"idempotent": true,
|
|
1677
1677
|
"isESM": false,
|
|
1678
1678
|
"relativePath": [
|
|
1679
1679
|
"dist",
|
|
1680
1680
|
"commands",
|
|
1681
|
-
"
|
|
1682
|
-
"
|
|
1681
|
+
"env",
|
|
1682
|
+
"update.js"
|
|
1683
1683
|
]
|
|
1684
1684
|
},
|
|
1685
1685
|
"incidents:create": {
|
|
@@ -1750,6 +1750,19 @@
|
|
|
1750
1750
|
"md"
|
|
1751
1751
|
],
|
|
1752
1752
|
"type": "option"
|
|
1753
|
+
},
|
|
1754
|
+
"force": {
|
|
1755
|
+
"char": "f",
|
|
1756
|
+
"description": "Skip confirmation prompt.",
|
|
1757
|
+
"name": "force",
|
|
1758
|
+
"allowNo": false,
|
|
1759
|
+
"type": "boolean"
|
|
1760
|
+
},
|
|
1761
|
+
"dry-run": {
|
|
1762
|
+
"description": "Preview what would happen without executing.",
|
|
1763
|
+
"name": "dry-run",
|
|
1764
|
+
"allowNo": false,
|
|
1765
|
+
"type": "boolean"
|
|
1753
1766
|
}
|
|
1754
1767
|
},
|
|
1755
1768
|
"hasDynamicHelp": false,
|
|
@@ -1832,9 +1845,9 @@
|
|
|
1832
1845
|
"strict": true,
|
|
1833
1846
|
"enableJsonFlag": false,
|
|
1834
1847
|
"coreCommand": false,
|
|
1835
|
-
"readOnly":
|
|
1848
|
+
"readOnly": true,
|
|
1836
1849
|
"destructive": false,
|
|
1837
|
-
"idempotent":
|
|
1850
|
+
"idempotent": true,
|
|
1838
1851
|
"isESM": false,
|
|
1839
1852
|
"relativePath": [
|
|
1840
1853
|
"dist",
|
|
@@ -1880,6 +1893,19 @@
|
|
|
1880
1893
|
"md"
|
|
1881
1894
|
],
|
|
1882
1895
|
"type": "option"
|
|
1896
|
+
},
|
|
1897
|
+
"force": {
|
|
1898
|
+
"char": "f",
|
|
1899
|
+
"description": "Skip confirmation prompt.",
|
|
1900
|
+
"name": "force",
|
|
1901
|
+
"allowNo": false,
|
|
1902
|
+
"type": "boolean"
|
|
1903
|
+
},
|
|
1904
|
+
"dry-run": {
|
|
1905
|
+
"description": "Preview what would happen without executing.",
|
|
1906
|
+
"name": "dry-run",
|
|
1907
|
+
"allowNo": false,
|
|
1908
|
+
"type": "boolean"
|
|
1883
1909
|
}
|
|
1884
1910
|
},
|
|
1885
1911
|
"hasDynamicHelp": false,
|
|
@@ -1967,6 +1993,19 @@
|
|
|
1967
1993
|
"md"
|
|
1968
1994
|
],
|
|
1969
1995
|
"type": "option"
|
|
1996
|
+
},
|
|
1997
|
+
"force": {
|
|
1998
|
+
"char": "f",
|
|
1999
|
+
"description": "Skip confirmation prompt.",
|
|
2000
|
+
"name": "force",
|
|
2001
|
+
"allowNo": false,
|
|
2002
|
+
"type": "boolean"
|
|
2003
|
+
},
|
|
2004
|
+
"dry-run": {
|
|
2005
|
+
"description": "Preview what would happen without executing.",
|
|
2006
|
+
"name": "dry-run",
|
|
2007
|
+
"allowNo": false,
|
|
2008
|
+
"type": "boolean"
|
|
1970
2009
|
}
|
|
1971
2010
|
},
|
|
1972
2011
|
"hasDynamicHelp": false,
|
|
@@ -2026,9 +2065,9 @@
|
|
|
2026
2065
|
"strict": true,
|
|
2027
2066
|
"enableJsonFlag": false,
|
|
2028
2067
|
"coreCommand": false,
|
|
2029
|
-
"readOnly":
|
|
2068
|
+
"readOnly": true,
|
|
2030
2069
|
"destructive": false,
|
|
2031
|
-
"idempotent":
|
|
2070
|
+
"idempotent": true,
|
|
2032
2071
|
"isESM": false,
|
|
2033
2072
|
"relativePath": [
|
|
2034
2073
|
"dist",
|
|
@@ -2089,9 +2128,9 @@
|
|
|
2089
2128
|
"strict": true,
|
|
2090
2129
|
"enableJsonFlag": false,
|
|
2091
2130
|
"coreCommand": false,
|
|
2092
|
-
"readOnly":
|
|
2131
|
+
"readOnly": true,
|
|
2093
2132
|
"destructive": false,
|
|
2094
|
-
"idempotent":
|
|
2133
|
+
"idempotent": true,
|
|
2095
2134
|
"isESM": false,
|
|
2096
2135
|
"relativePath": [
|
|
2097
2136
|
"dist",
|
|
@@ -2101,5 +2140,5 @@
|
|
|
2101
2140
|
]
|
|
2102
2141
|
}
|
|
2103
2142
|
},
|
|
2104
|
-
"version": "7.5.
|
|
2143
|
+
"version": "7.5.2"
|
|
2105
2144
|
}
|