checkly 7.5.2 → 7.5.3-prerelease-6049afa

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.
@@ -1119,6 +1119,223 @@
1119
1119
  "list.js"
1120
1120
  ]
1121
1121
  },
1122
+ "env:add": {
1123
+ "aliases": [],
1124
+ "args": {
1125
+ "key": {
1126
+ "description": "Environment variable key.",
1127
+ "name": "key",
1128
+ "required": true
1129
+ },
1130
+ "value": {
1131
+ "description": "Environment variable value.",
1132
+ "name": "value",
1133
+ "required": false
1134
+ }
1135
+ },
1136
+ "description": "Add environment variable via \"checkly env add <key> <value>\".",
1137
+ "flags": {
1138
+ "locked": {
1139
+ "char": "l",
1140
+ "description": "Indicate that the environment variable will be locked.",
1141
+ "name": "locked",
1142
+ "allowNo": false,
1143
+ "type": "boolean"
1144
+ },
1145
+ "secret": {
1146
+ "char": "s",
1147
+ "description": "Indicate that the environment variable will be secret.",
1148
+ "exclusive": [
1149
+ "locked"
1150
+ ],
1151
+ "name": "secret",
1152
+ "allowNo": false,
1153
+ "type": "boolean"
1154
+ }
1155
+ },
1156
+ "hasDynamicHelp": false,
1157
+ "hidden": false,
1158
+ "hiddenAliases": [],
1159
+ "id": "env:add",
1160
+ "pluginAlias": "checkly",
1161
+ "pluginName": "checkly",
1162
+ "pluginType": "core",
1163
+ "strict": true,
1164
+ "enableJsonFlag": false,
1165
+ "coreCommand": false,
1166
+ "readOnly": false,
1167
+ "destructive": false,
1168
+ "idempotent": false,
1169
+ "isESM": false,
1170
+ "relativePath": [
1171
+ "dist",
1172
+ "commands",
1173
+ "env",
1174
+ "add.js"
1175
+ ]
1176
+ },
1177
+ "env:ls": {
1178
+ "aliases": [],
1179
+ "args": {},
1180
+ "description": "List all Checkly environment variables via \"checkly env ls\".",
1181
+ "flags": {},
1182
+ "hasDynamicHelp": false,
1183
+ "hidden": false,
1184
+ "hiddenAliases": [],
1185
+ "id": "env:ls",
1186
+ "pluginAlias": "checkly",
1187
+ "pluginName": "checkly",
1188
+ "pluginType": "core",
1189
+ "strict": true,
1190
+ "enableJsonFlag": false,
1191
+ "coreCommand": false,
1192
+ "readOnly": true,
1193
+ "destructive": false,
1194
+ "idempotent": true,
1195
+ "isESM": false,
1196
+ "relativePath": [
1197
+ "dist",
1198
+ "commands",
1199
+ "env",
1200
+ "ls.js"
1201
+ ]
1202
+ },
1203
+ "env:pull": {
1204
+ "aliases": [],
1205
+ "args": {
1206
+ "filename": {
1207
+ "default": ".env",
1208
+ "description": "Filename of the generated file.",
1209
+ "name": "filename",
1210
+ "required": false
1211
+ }
1212
+ },
1213
+ "description": "Pull Checkly environment variables via \"checkly env pull <filename>\".",
1214
+ "flags": {
1215
+ "force": {
1216
+ "char": "f",
1217
+ "description": "Force to overwrite existing file.",
1218
+ "name": "force",
1219
+ "allowNo": false,
1220
+ "type": "boolean"
1221
+ }
1222
+ },
1223
+ "hasDynamicHelp": false,
1224
+ "hidden": false,
1225
+ "hiddenAliases": [],
1226
+ "id": "env:pull",
1227
+ "pluginAlias": "checkly",
1228
+ "pluginName": "checkly",
1229
+ "pluginType": "core",
1230
+ "strict": true,
1231
+ "enableJsonFlag": false,
1232
+ "coreCommand": false,
1233
+ "readOnly": true,
1234
+ "destructive": false,
1235
+ "idempotent": true,
1236
+ "isESM": false,
1237
+ "relativePath": [
1238
+ "dist",
1239
+ "commands",
1240
+ "env",
1241
+ "pull.js"
1242
+ ]
1243
+ },
1244
+ "env:rm": {
1245
+ "aliases": [],
1246
+ "args": {
1247
+ "key": {
1248
+ "description": "Environment variable key to remove.",
1249
+ "name": "key",
1250
+ "required": true
1251
+ }
1252
+ },
1253
+ "description": "Remove environment variable via \"checkly env rm <key>\".",
1254
+ "flags": {
1255
+ "force": {
1256
+ "char": "f",
1257
+ "description": "Force to skip the confirmation prompt.",
1258
+ "name": "force",
1259
+ "allowNo": false,
1260
+ "type": "boolean"
1261
+ }
1262
+ },
1263
+ "hasDynamicHelp": false,
1264
+ "hidden": false,
1265
+ "hiddenAliases": [],
1266
+ "id": "env:rm",
1267
+ "pluginAlias": "checkly",
1268
+ "pluginName": "checkly",
1269
+ "pluginType": "core",
1270
+ "strict": true,
1271
+ "enableJsonFlag": false,
1272
+ "coreCommand": false,
1273
+ "readOnly": false,
1274
+ "destructive": true,
1275
+ "idempotent": false,
1276
+ "isESM": false,
1277
+ "relativePath": [
1278
+ "dist",
1279
+ "commands",
1280
+ "env",
1281
+ "rm.js"
1282
+ ]
1283
+ },
1284
+ "env:update": {
1285
+ "aliases": [],
1286
+ "args": {
1287
+ "key": {
1288
+ "description": "Environment variable key.",
1289
+ "name": "key",
1290
+ "required": true
1291
+ },
1292
+ "value": {
1293
+ "description": "Environment variable value.",
1294
+ "name": "value",
1295
+ "required": false
1296
+ }
1297
+ },
1298
+ "description": "Update environment variable via \"checkly env update <key> <value>\".",
1299
+ "flags": {
1300
+ "locked": {
1301
+ "char": "l",
1302
+ "description": "Indicate if environment variable is locked.",
1303
+ "name": "locked",
1304
+ "allowNo": false,
1305
+ "type": "boolean"
1306
+ },
1307
+ "secret": {
1308
+ "char": "s",
1309
+ "description": "Indicate if environment variable is secret.",
1310
+ "exclusive": [
1311
+ "locked"
1312
+ ],
1313
+ "name": "secret",
1314
+ "allowNo": false,
1315
+ "type": "boolean"
1316
+ }
1317
+ },
1318
+ "hasDynamicHelp": false,
1319
+ "hidden": false,
1320
+ "hiddenAliases": [],
1321
+ "id": "env:update",
1322
+ "pluginAlias": "checkly",
1323
+ "pluginName": "checkly",
1324
+ "pluginType": "core",
1325
+ "strict": true,
1326
+ "enableJsonFlag": false,
1327
+ "coreCommand": false,
1328
+ "readOnly": false,
1329
+ "destructive": false,
1330
+ "idempotent": true,
1331
+ "isESM": false,
1332
+ "relativePath": [
1333
+ "dist",
1334
+ "commands",
1335
+ "env",
1336
+ "update.js"
1337
+ ]
1338
+ },
1122
1339
  "debug:parse-file": {
1123
1340
  "aliases": [],
1124
1341
  "args": {},
@@ -1465,223 +1682,6 @@
1465
1682
  "plan.js"
1466
1683
  ]
1467
1684
  },
1468
- "env:add": {
1469
- "aliases": [],
1470
- "args": {
1471
- "key": {
1472
- "description": "Environment variable key.",
1473
- "name": "key",
1474
- "required": true
1475
- },
1476
- "value": {
1477
- "description": "Environment variable value.",
1478
- "name": "value",
1479
- "required": false
1480
- }
1481
- },
1482
- "description": "Add environment variable via \"checkly env add <key> <value>\".",
1483
- "flags": {
1484
- "locked": {
1485
- "char": "l",
1486
- "description": "Indicate that the environment variable will be locked.",
1487
- "name": "locked",
1488
- "allowNo": false,
1489
- "type": "boolean"
1490
- },
1491
- "secret": {
1492
- "char": "s",
1493
- "description": "Indicate that the environment variable will be secret.",
1494
- "exclusive": [
1495
- "locked"
1496
- ],
1497
- "name": "secret",
1498
- "allowNo": false,
1499
- "type": "boolean"
1500
- }
1501
- },
1502
- "hasDynamicHelp": false,
1503
- "hidden": false,
1504
- "hiddenAliases": [],
1505
- "id": "env:add",
1506
- "pluginAlias": "checkly",
1507
- "pluginName": "checkly",
1508
- "pluginType": "core",
1509
- "strict": true,
1510
- "enableJsonFlag": false,
1511
- "coreCommand": false,
1512
- "readOnly": false,
1513
- "destructive": false,
1514
- "idempotent": false,
1515
- "isESM": false,
1516
- "relativePath": [
1517
- "dist",
1518
- "commands",
1519
- "env",
1520
- "add.js"
1521
- ]
1522
- },
1523
- "env:ls": {
1524
- "aliases": [],
1525
- "args": {},
1526
- "description": "List all Checkly environment variables via \"checkly env ls\".",
1527
- "flags": {},
1528
- "hasDynamicHelp": false,
1529
- "hidden": false,
1530
- "hiddenAliases": [],
1531
- "id": "env:ls",
1532
- "pluginAlias": "checkly",
1533
- "pluginName": "checkly",
1534
- "pluginType": "core",
1535
- "strict": true,
1536
- "enableJsonFlag": false,
1537
- "coreCommand": false,
1538
- "readOnly": true,
1539
- "destructive": false,
1540
- "idempotent": true,
1541
- "isESM": false,
1542
- "relativePath": [
1543
- "dist",
1544
- "commands",
1545
- "env",
1546
- "ls.js"
1547
- ]
1548
- },
1549
- "env:pull": {
1550
- "aliases": [],
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>\".",
1560
- "flags": {
1561
- "force": {
1562
- "char": "f",
1563
- "description": "Force to overwrite existing file.",
1564
- "name": "force",
1565
- "allowNo": false,
1566
- "type": "boolean"
1567
- }
1568
- },
1569
- "hasDynamicHelp": false,
1570
- "hidden": false,
1571
- "hiddenAliases": [],
1572
- "id": "env:pull",
1573
- "pluginAlias": "checkly",
1574
- "pluginName": "checkly",
1575
- "pluginType": "core",
1576
- "strict": true,
1577
- "enableJsonFlag": false,
1578
- "coreCommand": false,
1579
- "readOnly": true,
1580
- "destructive": false,
1581
- "idempotent": true,
1582
- "isESM": false,
1583
- "relativePath": [
1584
- "dist",
1585
- "commands",
1586
- "env",
1587
- "pull.js"
1588
- ]
1589
- },
1590
- "env:rm": {
1591
- "aliases": [],
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>\".",
1600
- "flags": {
1601
- "force": {
1602
- "char": "f",
1603
- "description": "Force to skip the confirmation prompt.",
1604
- "name": "force",
1605
- "allowNo": false,
1606
- "type": "boolean"
1607
- }
1608
- },
1609
- "hasDynamicHelp": false,
1610
- "hidden": false,
1611
- "hiddenAliases": [],
1612
- "id": "env:rm",
1613
- "pluginAlias": "checkly",
1614
- "pluginName": "checkly",
1615
- "pluginType": "core",
1616
- "strict": true,
1617
- "enableJsonFlag": false,
1618
- "coreCommand": false,
1619
- "readOnly": false,
1620
- "destructive": true,
1621
- "idempotent": false,
1622
- "isESM": false,
1623
- "relativePath": [
1624
- "dist",
1625
- "commands",
1626
- "env",
1627
- "rm.js"
1628
- ]
1629
- },
1630
- "env:update": {
1631
- "aliases": [],
1632
- "args": {
1633
- "key": {
1634
- "description": "Environment variable key.",
1635
- "name": "key",
1636
- "required": true
1637
- },
1638
- "value": {
1639
- "description": "Environment variable value.",
1640
- "name": "value",
1641
- "required": false
1642
- }
1643
- },
1644
- "description": "Update environment variable via \"checkly env update <key> <value>\".",
1645
- "flags": {
1646
- "locked": {
1647
- "char": "l",
1648
- "description": "Indicate if environment variable is locked.",
1649
- "name": "locked",
1650
- "allowNo": false,
1651
- "type": "boolean"
1652
- },
1653
- "secret": {
1654
- "char": "s",
1655
- "description": "Indicate if environment variable is secret.",
1656
- "exclusive": [
1657
- "locked"
1658
- ],
1659
- "name": "secret",
1660
- "allowNo": false,
1661
- "type": "boolean"
1662
- }
1663
- },
1664
- "hasDynamicHelp": false,
1665
- "hidden": false,
1666
- "hiddenAliases": [],
1667
- "id": "env:update",
1668
- "pluginAlias": "checkly",
1669
- "pluginName": "checkly",
1670
- "pluginType": "core",
1671
- "strict": true,
1672
- "enableJsonFlag": false,
1673
- "coreCommand": false,
1674
- "readOnly": false,
1675
- "destructive": false,
1676
- "idempotent": true,
1677
- "isESM": false,
1678
- "relativePath": [
1679
- "dist",
1680
- "commands",
1681
- "env",
1682
- "update.js"
1683
- ]
1684
- },
1685
1685
  "incidents:create": {
1686
1686
  "aliases": [],
1687
1687
  "args": {},
@@ -2140,5 +2140,5 @@
2140
2140
  ]
2141
2141
  }
2142
2142
  },
2143
- "version": "7.5.2"
2143
+ "version": "7.5.3-prerelease-6049afa"
2144
2144
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "checkly",
3
- "version": "7.5.2",
3
+ "version": "7.5.3-prerelease-6049afa",
4
4
  "description": "Checkly CLI",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",