checkly 7.3.0 → 7.4.0-prerelease-203a21e

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. package/dist/commands/debug/parse-project.d.ts +1 -0
  2. package/dist/commands/debug/parse-project.js +26 -3
  3. package/dist/commands/debug/parse-project.js.map +1 -1
  4. package/dist/commands/deploy.js +15 -21
  5. package/dist/commands/deploy.js.map +1 -1
  6. package/dist/commands/pw-test.js +13 -23
  7. package/dist/commands/pw-test.js.map +1 -1
  8. package/dist/commands/test.js +15 -21
  9. package/dist/commands/test.js.map +1 -1
  10. package/dist/constructs/api-check.d.ts +3 -2
  11. package/dist/constructs/api-check.js +4 -4
  12. package/dist/constructs/api-check.js.map +1 -1
  13. package/dist/constructs/browser-check.d.ts +3 -2
  14. package/dist/constructs/browser-check.js +3 -3
  15. package/dist/constructs/browser-check.js.map +1 -1
  16. package/dist/constructs/construct.d.ts +2 -1
  17. package/dist/constructs/construct.js +2 -2
  18. package/dist/constructs/construct.js.map +1 -1
  19. package/dist/constructs/dashboard.d.ts +2 -1
  20. package/dist/constructs/dashboard.js +2 -1
  21. package/dist/constructs/dashboard.js.map +1 -1
  22. package/dist/constructs/multi-step-check.d.ts +3 -2
  23. package/dist/constructs/multi-step-check.js +3 -3
  24. package/dist/constructs/multi-step-check.js.map +1 -1
  25. package/dist/constructs/playwright-check-bundle.d.ts +7 -49
  26. package/dist/constructs/playwright-check-bundle.js +6 -48
  27. package/dist/constructs/playwright-check-bundle.js.map +1 -1
  28. package/dist/constructs/playwright-check.d.ts +3 -2
  29. package/dist/constructs/playwright-check.js +6 -5
  30. package/dist/constructs/playwright-check.js.map +1 -1
  31. package/dist/constructs/project.d.ts +4 -1
  32. package/dist/constructs/project.js +26 -12
  33. package/dist/constructs/project.js.map +1 -1
  34. package/dist/services/check-parser/bundler.d.ts +59 -0
  35. package/dist/services/check-parser/bundler.js +263 -0
  36. package/dist/services/check-parser/bundler.js.map +1 -0
  37. package/dist/services/check-parser/parser.d.ts +0 -3
  38. package/dist/services/check-parser/parser.js +3 -76
  39. package/dist/services/check-parser/parser.js.map +1 -1
  40. package/dist/services/check-parser/playwright-config-expander.d.ts +7 -0
  41. package/dist/services/check-parser/playwright-config-expander.js +122 -0
  42. package/dist/services/check-parser/playwright-config-expander.js.map +1 -0
  43. package/dist/services/playwright-config.d.ts +0 -3
  44. package/dist/services/playwright-config.js +0 -11
  45. package/dist/services/playwright-config.js.map +1 -1
  46. package/dist/services/test-runner.js +1 -1
  47. package/dist/services/test-runner.js.map +1 -1
  48. package/dist/services/util.d.ts +2 -7
  49. package/dist/services/util.js +45 -99
  50. package/dist/services/util.js.map +1 -1
  51. package/dist/tsconfig.tsbuildinfo +1 -1
  52. package/oclif.manifest.json +185 -177
  53. package/package.json +1 -1
@@ -1156,6 +1156,14 @@
1156
1156
  "hasDynamicHelp": false,
1157
1157
  "multiple": true,
1158
1158
  "type": "option"
1159
+ },
1160
+ "inject-private-location": {
1161
+ "description": "Pretend that the given private location exists (e.g., \"70c4ded4-2229-45a7-acf4-6b1eb56a86df:my-external-private-location\").",
1162
+ "name": "inject-private-location",
1163
+ "default": [],
1164
+ "hasDynamicHelp": false,
1165
+ "multiple": true,
1166
+ "type": "option"
1159
1167
  }
1160
1168
  },
1161
1169
  "hasDynamicHelp": false,
@@ -1175,24 +1183,44 @@
1175
1183
  "parse-project.js"
1176
1184
  ]
1177
1185
  },
1178
- "import:apply": {
1186
+ "env:add": {
1179
1187
  "aliases": [],
1180
- "args": {},
1181
- "description": "Attach imported resources into your project in a pending state.",
1188
+ "args": {
1189
+ "key": {
1190
+ "description": "Environment variable key.",
1191
+ "name": "key",
1192
+ "required": true
1193
+ },
1194
+ "value": {
1195
+ "description": "Environment variable value.",
1196
+ "name": "value",
1197
+ "required": false
1198
+ }
1199
+ },
1200
+ "description": "Add environment variable via \"checkly env add <key> <value>\".",
1182
1201
  "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"
1202
+ "locked": {
1203
+ "char": "l",
1204
+ "description": "Indicate that the environment variable will be locked.",
1205
+ "name": "locked",
1206
+ "allowNo": false,
1207
+ "type": "boolean"
1208
+ },
1209
+ "secret": {
1210
+ "char": "s",
1211
+ "description": "Indicate that the environment variable will be secret.",
1212
+ "exclusive": [
1213
+ "locked"
1214
+ ],
1215
+ "name": "secret",
1216
+ "allowNo": false,
1217
+ "type": "boolean"
1190
1218
  }
1191
1219
  },
1192
1220
  "hasDynamicHelp": false,
1193
1221
  "hidden": false,
1194
1222
  "hiddenAliases": [],
1195
- "id": "import:apply",
1223
+ "id": "env:add",
1196
1224
  "pluginAlias": "checkly",
1197
1225
  "pluginName": "checkly",
1198
1226
  "pluginType": "core",
@@ -1203,34 +1231,19 @@
1203
1231
  "relativePath": [
1204
1232
  "dist",
1205
1233
  "commands",
1206
- "import",
1207
- "apply.js"
1234
+ "env",
1235
+ "add.js"
1208
1236
  ]
1209
1237
  },
1210
- "import:cancel": {
1238
+ "env:ls": {
1211
1239
  "aliases": [],
1212
1240
  "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
- },
1241
+ "description": "List all Checkly environment variables via \"checkly env ls\".",
1242
+ "flags": {},
1230
1243
  "hasDynamicHelp": false,
1231
1244
  "hidden": false,
1232
1245
  "hiddenAliases": [],
1233
- "id": "import:cancel",
1246
+ "id": "env:ls",
1234
1247
  "pluginAlias": "checkly",
1235
1248
  "pluginName": "checkly",
1236
1249
  "pluginType": "core",
@@ -1241,28 +1254,34 @@
1241
1254
  "relativePath": [
1242
1255
  "dist",
1243
1256
  "commands",
1244
- "import",
1245
- "cancel.js"
1257
+ "env",
1258
+ "ls.js"
1246
1259
  ]
1247
1260
  },
1248
- "import:commit": {
1261
+ "env:pull": {
1249
1262
  "aliases": [],
1250
- "args": {},
1251
- "description": "Permanently commit imported resources into your project.",
1263
+ "args": {
1264
+ "filename": {
1265
+ "default": ".env",
1266
+ "description": "Filename of the generated file.",
1267
+ "name": "filename",
1268
+ "required": false
1269
+ }
1270
+ },
1271
+ "description": "Pull Checkly environment variables via \"checkly env pull <filename>\".",
1252
1272
  "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"
1273
+ "force": {
1274
+ "char": "f",
1275
+ "description": "Force to overwrite existing file.",
1276
+ "name": "force",
1277
+ "allowNo": false,
1278
+ "type": "boolean"
1260
1279
  }
1261
1280
  },
1262
1281
  "hasDynamicHelp": false,
1263
1282
  "hidden": false,
1264
1283
  "hiddenAliases": [],
1265
- "id": "import:commit",
1284
+ "id": "env:pull",
1266
1285
  "pluginAlias": "checkly",
1267
1286
  "pluginName": "checkly",
1268
1287
  "pluginType": "core",
@@ -1273,89 +1292,48 @@
1273
1292
  "relativePath": [
1274
1293
  "dist",
1275
1294
  "commands",
1276
- "import",
1277
- "commit.js"
1295
+ "env",
1296
+ "pull.js"
1278
1297
  ]
1279
1298
  },
1280
- "import:plan": {
1299
+ "env:rm": {
1281
1300
  "aliases": [],
1282
1301
  "args": {
1283
- "resource": {
1284
- "description": "A specific resource to import.",
1285
- "name": "resource",
1286
- "required": false
1302
+ "key": {
1303
+ "description": "Environment variable key to remove.",
1304
+ "name": "key",
1305
+ "required": true
1287
1306
  }
1288
1307
  },
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.",
1308
+ "description": "Remove environment variable via \"checkly env rm <key>\".",
1290
1309
  "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",
1310
+ "force": {
1311
+ "char": "f",
1312
+ "description": "Force to skip the confirmation prompt.",
1313
+ "name": "force",
1317
1314
  "allowNo": false,
1318
1315
  "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
1316
  }
1337
1317
  },
1338
1318
  "hasDynamicHelp": false,
1339
1319
  "hidden": false,
1340
- "hiddenAliases": [
1341
- "import"
1342
- ],
1343
- "id": "import:plan",
1320
+ "hiddenAliases": [],
1321
+ "id": "env:rm",
1344
1322
  "pluginAlias": "checkly",
1345
1323
  "pluginName": "checkly",
1346
1324
  "pluginType": "core",
1347
- "strict": false,
1325
+ "strict": true,
1348
1326
  "enableJsonFlag": false,
1349
1327
  "coreCommand": false,
1350
1328
  "isESM": false,
1351
1329
  "relativePath": [
1352
1330
  "dist",
1353
1331
  "commands",
1354
- "import",
1355
- "plan.js"
1332
+ "env",
1333
+ "rm.js"
1356
1334
  ]
1357
1335
  },
1358
- "env:add": {
1336
+ "env:update": {
1359
1337
  "aliases": [],
1360
1338
  "args": {
1361
1339
  "key": {
@@ -1369,18 +1347,18 @@
1369
1347
  "required": false
1370
1348
  }
1371
1349
  },
1372
- "description": "Add environment variable via \"checkly env add <key> <value>\".",
1350
+ "description": "Update environment variable via \"checkly env update <key> <value>\".",
1373
1351
  "flags": {
1374
1352
  "locked": {
1375
1353
  "char": "l",
1376
- "description": "Indicate that the environment variable will be locked.",
1354
+ "description": "Indicate if environment variable is locked.",
1377
1355
  "name": "locked",
1378
1356
  "allowNo": false,
1379
1357
  "type": "boolean"
1380
1358
  },
1381
1359
  "secret": {
1382
1360
  "char": "s",
1383
- "description": "Indicate that the environment variable will be secret.",
1361
+ "description": "Indicate if environment variable is secret.",
1384
1362
  "exclusive": [
1385
1363
  "locked"
1386
1364
  ],
@@ -1392,7 +1370,7 @@
1392
1370
  "hasDynamicHelp": false,
1393
1371
  "hidden": false,
1394
1372
  "hiddenAliases": [],
1395
- "id": "env:add",
1373
+ "id": "env:update",
1396
1374
  "pluginAlias": "checkly",
1397
1375
  "pluginName": "checkly",
1398
1376
  "pluginType": "core",
@@ -1404,18 +1382,27 @@
1404
1382
  "dist",
1405
1383
  "commands",
1406
1384
  "env",
1407
- "add.js"
1385
+ "update.js"
1408
1386
  ]
1409
1387
  },
1410
- "env:ls": {
1388
+ "import:apply": {
1411
1389
  "aliases": [],
1412
1390
  "args": {},
1413
- "description": "List all Checkly environment variables via \"checkly env ls\".",
1414
- "flags": {},
1391
+ "description": "Attach imported resources into your project in a pending state.",
1392
+ "flags": {
1393
+ "config": {
1394
+ "char": "c",
1395
+ "description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
1396
+ "name": "config",
1397
+ "hasDynamicHelp": false,
1398
+ "multiple": false,
1399
+ "type": "option"
1400
+ }
1401
+ },
1415
1402
  "hasDynamicHelp": false,
1416
1403
  "hidden": false,
1417
1404
  "hiddenAliases": [],
1418
- "id": "env:ls",
1405
+ "id": "import:apply",
1419
1406
  "pluginAlias": "checkly",
1420
1407
  "pluginName": "checkly",
1421
1408
  "pluginType": "core",
@@ -1426,26 +1413,26 @@
1426
1413
  "relativePath": [
1427
1414
  "dist",
1428
1415
  "commands",
1429
- "env",
1430
- "ls.js"
1416
+ "import",
1417
+ "apply.js"
1431
1418
  ]
1432
1419
  },
1433
- "env:pull": {
1420
+ "import:cancel": {
1434
1421
  "aliases": [],
1435
- "args": {
1436
- "filename": {
1437
- "default": ".env",
1438
- "description": "Filename of the generated file.",
1439
- "name": "filename",
1440
- "required": false
1441
- }
1442
- },
1443
- "description": "Pull Checkly environment variables via \"checkly env pull <filename>\".",
1422
+ "args": {},
1423
+ "description": "Cancels an ongoing import plan that has not been committed yet.",
1444
1424
  "flags": {
1445
- "force": {
1446
- "char": "f",
1447
- "description": "Force to overwrite existing file.",
1448
- "name": "force",
1425
+ "config": {
1426
+ "char": "c",
1427
+ "description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
1428
+ "name": "config",
1429
+ "hasDynamicHelp": false,
1430
+ "multiple": false,
1431
+ "type": "option"
1432
+ },
1433
+ "all": {
1434
+ "description": "Cancel all plans.",
1435
+ "name": "all",
1449
1436
  "allowNo": false,
1450
1437
  "type": "boolean"
1451
1438
  }
@@ -1453,7 +1440,7 @@
1453
1440
  "hasDynamicHelp": false,
1454
1441
  "hidden": false,
1455
1442
  "hiddenAliases": [],
1456
- "id": "env:pull",
1443
+ "id": "import:cancel",
1457
1444
  "pluginAlias": "checkly",
1458
1445
  "pluginName": "checkly",
1459
1446
  "pluginType": "core",
@@ -1464,33 +1451,28 @@
1464
1451
  "relativePath": [
1465
1452
  "dist",
1466
1453
  "commands",
1467
- "env",
1468
- "pull.js"
1454
+ "import",
1455
+ "cancel.js"
1469
1456
  ]
1470
1457
  },
1471
- "env:rm": {
1458
+ "import:commit": {
1472
1459
  "aliases": [],
1473
- "args": {
1474
- "key": {
1475
- "description": "Environment variable key to remove.",
1476
- "name": "key",
1477
- "required": true
1478
- }
1479
- },
1480
- "description": "Remove environment variable via \"checkly env rm <key>\".",
1460
+ "args": {},
1461
+ "description": "Permanently commit imported resources into your project.",
1481
1462
  "flags": {
1482
- "force": {
1483
- "char": "f",
1484
- "description": "Force to skip the confirmation prompt.",
1485
- "name": "force",
1486
- "allowNo": false,
1487
- "type": "boolean"
1463
+ "config": {
1464
+ "char": "c",
1465
+ "description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
1466
+ "name": "config",
1467
+ "hasDynamicHelp": false,
1468
+ "multiple": false,
1469
+ "type": "option"
1488
1470
  }
1489
1471
  },
1490
1472
  "hasDynamicHelp": false,
1491
1473
  "hidden": false,
1492
1474
  "hiddenAliases": [],
1493
- "id": "env:rm",
1475
+ "id": "import:commit",
1494
1476
  "pluginAlias": "checkly",
1495
1477
  "pluginName": "checkly",
1496
1478
  "pluginType": "core",
@@ -1501,60 +1483,86 @@
1501
1483
  "relativePath": [
1502
1484
  "dist",
1503
1485
  "commands",
1504
- "env",
1505
- "rm.js"
1486
+ "import",
1487
+ "commit.js"
1506
1488
  ]
1507
1489
  },
1508
- "env:update": {
1490
+ "import:plan": {
1509
1491
  "aliases": [],
1510
1492
  "args": {
1511
- "key": {
1512
- "description": "Environment variable key.",
1513
- "name": "key",
1514
- "required": true
1515
- },
1516
- "value": {
1517
- "description": "Environment variable value.",
1518
- "name": "value",
1493
+ "resource": {
1494
+ "description": "A specific resource to import.",
1495
+ "name": "resource",
1519
1496
  "required": false
1520
1497
  }
1521
1498
  },
1522
- "description": "Update environment variable via \"checkly env update <key> <value>\".",
1499
+ "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.",
1523
1500
  "flags": {
1524
- "locked": {
1525
- "char": "l",
1526
- "description": "Indicate if environment variable is locked.",
1527
- "name": "locked",
1501
+ "config": {
1502
+ "char": "c",
1503
+ "description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
1504
+ "name": "config",
1505
+ "hasDynamicHelp": false,
1506
+ "multiple": false,
1507
+ "type": "option"
1508
+ },
1509
+ "root": {
1510
+ "description": "The root folder in which to write generated code files.",
1511
+ "name": "root",
1512
+ "default": "__checks__",
1513
+ "hasDynamicHelp": false,
1514
+ "multiple": false,
1515
+ "type": "option"
1516
+ },
1517
+ "preview": {
1518
+ "description": "Preview generated code without creating an actual import plan.",
1519
+ "name": "preview",
1528
1520
  "allowNo": false,
1529
1521
  "type": "boolean"
1530
1522
  },
1531
- "secret": {
1532
- "char": "s",
1533
- "description": "Indicate if environment variable is secret.",
1534
- "exclusive": [
1535
- "locked"
1536
- ],
1537
- "name": "secret",
1523
+ "debug-import-plan": {
1524
+ "description": "Output the import plan to a file.",
1525
+ "hidden": true,
1526
+ "name": "debug-import-plan",
1538
1527
  "allowNo": false,
1539
1528
  "type": "boolean"
1529
+ },
1530
+ "debug-import-plan-input-file": {
1531
+ "description": "A file to load an import plan from.",
1532
+ "hidden": true,
1533
+ "name": "debug-import-plan-input-file",
1534
+ "hasDynamicHelp": false,
1535
+ "multiple": false,
1536
+ "type": "option"
1537
+ },
1538
+ "debug-import-plan-output-file": {
1539
+ "description": "The file to output the import plan to.",
1540
+ "hidden": true,
1541
+ "name": "debug-import-plan-output-file",
1542
+ "default": "./debug-import-plan.json",
1543
+ "hasDynamicHelp": false,
1544
+ "multiple": false,
1545
+ "type": "option"
1540
1546
  }
1541
1547
  },
1542
1548
  "hasDynamicHelp": false,
1543
1549
  "hidden": false,
1544
- "hiddenAliases": [],
1545
- "id": "env:update",
1550
+ "hiddenAliases": [
1551
+ "import"
1552
+ ],
1553
+ "id": "import:plan",
1546
1554
  "pluginAlias": "checkly",
1547
1555
  "pluginName": "checkly",
1548
1556
  "pluginType": "core",
1549
- "strict": true,
1557
+ "strict": false,
1550
1558
  "enableJsonFlag": false,
1551
1559
  "coreCommand": false,
1552
1560
  "isESM": false,
1553
1561
  "relativePath": [
1554
1562
  "dist",
1555
1563
  "commands",
1556
- "env",
1557
- "update.js"
1564
+ "import",
1565
+ "plan.js"
1558
1566
  ]
1559
1567
  },
1560
1568
  "status-pages:get": {
@@ -1662,5 +1670,5 @@
1662
1670
  ]
1663
1671
  }
1664
1672
  },
1665
- "version": "7.3.0"
1673
+ "version": "7.4.0-prerelease-203a21e"
1666
1674
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "checkly",
3
- "version": "7.3.0",
3
+ "version": "7.4.0-prerelease-203a21e",
4
4
  "description": "Checkly CLI",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",