checkly 8.7.0-prerelease-633a7ed → 8.7.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.
Files changed (2) hide show
  1. package/oclif.manifest.json +285 -285
  2. package/package.json +1 -1
@@ -1984,198 +1984,6 @@
1984
1984
  "parse-project.js"
1985
1985
  ]
1986
1986
  },
1987
- "import:apply": {
1988
- "aliases": [],
1989
- "args": {},
1990
- "description": "Attach imported resources into your project in a pending state.",
1991
- "flags": {
1992
- "config": {
1993
- "char": "c",
1994
- "description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
1995
- "name": "config",
1996
- "hasDynamicHelp": false,
1997
- "multiple": false,
1998
- "type": "option"
1999
- }
2000
- },
2001
- "hasDynamicHelp": false,
2002
- "hidden": false,
2003
- "hiddenAliases": [],
2004
- "id": "import:apply",
2005
- "pluginAlias": "checkly",
2006
- "pluginName": "checkly",
2007
- "pluginType": "core",
2008
- "strict": true,
2009
- "enableJsonFlag": false,
2010
- "coreCommand": false,
2011
- "readOnly": false,
2012
- "destructive": false,
2013
- "idempotent": false,
2014
- "isESM": true,
2015
- "relativePath": [
2016
- "dist",
2017
- "commands",
2018
- "import",
2019
- "apply.js"
2020
- ]
2021
- },
2022
- "import:cancel": {
2023
- "aliases": [],
2024
- "args": {},
2025
- "description": "Cancels an ongoing import plan that has not been committed yet.",
2026
- "flags": {
2027
- "config": {
2028
- "char": "c",
2029
- "description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
2030
- "name": "config",
2031
- "hasDynamicHelp": false,
2032
- "multiple": false,
2033
- "type": "option"
2034
- },
2035
- "all": {
2036
- "description": "Cancel all plans.",
2037
- "name": "all",
2038
- "allowNo": false,
2039
- "type": "boolean"
2040
- }
2041
- },
2042
- "hasDynamicHelp": false,
2043
- "hidden": false,
2044
- "hiddenAliases": [],
2045
- "id": "import:cancel",
2046
- "pluginAlias": "checkly",
2047
- "pluginName": "checkly",
2048
- "pluginType": "core",
2049
- "strict": true,
2050
- "enableJsonFlag": false,
2051
- "coreCommand": false,
2052
- "readOnly": false,
2053
- "destructive": false,
2054
- "idempotent": true,
2055
- "isESM": true,
2056
- "relativePath": [
2057
- "dist",
2058
- "commands",
2059
- "import",
2060
- "cancel.js"
2061
- ]
2062
- },
2063
- "import:commit": {
2064
- "aliases": [],
2065
- "args": {},
2066
- "description": "Permanently commit imported resources into your project.",
2067
- "flags": {
2068
- "config": {
2069
- "char": "c",
2070
- "description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
2071
- "name": "config",
2072
- "hasDynamicHelp": false,
2073
- "multiple": false,
2074
- "type": "option"
2075
- }
2076
- },
2077
- "hasDynamicHelp": false,
2078
- "hidden": false,
2079
- "hiddenAliases": [],
2080
- "id": "import:commit",
2081
- "pluginAlias": "checkly",
2082
- "pluginName": "checkly",
2083
- "pluginType": "core",
2084
- "strict": true,
2085
- "enableJsonFlag": false,
2086
- "coreCommand": false,
2087
- "readOnly": false,
2088
- "destructive": false,
2089
- "idempotent": false,
2090
- "isESM": true,
2091
- "relativePath": [
2092
- "dist",
2093
- "commands",
2094
- "import",
2095
- "commit.js"
2096
- ]
2097
- },
2098
- "import:plan": {
2099
- "aliases": [],
2100
- "args": {
2101
- "resource": {
2102
- "description": "A specific resource to import.",
2103
- "name": "resource",
2104
- "required": false
2105
- }
2106
- },
2107
- "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.",
2108
- "flags": {
2109
- "config": {
2110
- "char": "c",
2111
- "description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
2112
- "name": "config",
2113
- "hasDynamicHelp": false,
2114
- "multiple": false,
2115
- "type": "option"
2116
- },
2117
- "root": {
2118
- "description": "The root folder in which to write generated code files.",
2119
- "name": "root",
2120
- "default": "__checks__",
2121
- "hasDynamicHelp": false,
2122
- "multiple": false,
2123
- "type": "option"
2124
- },
2125
- "preview": {
2126
- "description": "Preview generated code without creating an actual import plan.",
2127
- "name": "preview",
2128
- "allowNo": false,
2129
- "type": "boolean"
2130
- },
2131
- "debug-import-plan": {
2132
- "description": "Output the import plan to a file.",
2133
- "hidden": true,
2134
- "name": "debug-import-plan",
2135
- "allowNo": false,
2136
- "type": "boolean"
2137
- },
2138
- "debug-import-plan-input-file": {
2139
- "description": "A file to load an import plan from.",
2140
- "hidden": true,
2141
- "name": "debug-import-plan-input-file",
2142
- "hasDynamicHelp": false,
2143
- "multiple": false,
2144
- "type": "option"
2145
- },
2146
- "debug-import-plan-output-file": {
2147
- "description": "The file to output the import plan to.",
2148
- "hidden": true,
2149
- "name": "debug-import-plan-output-file",
2150
- "default": "./debug-import-plan.json",
2151
- "hasDynamicHelp": false,
2152
- "multiple": false,
2153
- "type": "option"
2154
- }
2155
- },
2156
- "hasDynamicHelp": false,
2157
- "hidden": false,
2158
- "hiddenAliases": [
2159
- "import"
2160
- ],
2161
- "id": "import:plan",
2162
- "pluginAlias": "checkly",
2163
- "pluginName": "checkly",
2164
- "pluginType": "core",
2165
- "strict": false,
2166
- "enableJsonFlag": false,
2167
- "coreCommand": false,
2168
- "readOnly": true,
2169
- "destructive": false,
2170
- "idempotent": true,
2171
- "isESM": true,
2172
- "relativePath": [
2173
- "dist",
2174
- "commands",
2175
- "import",
2176
- "plan.js"
2177
- ]
2178
- },
2179
1987
  "env:add": {
2180
1988
  "aliases": [],
2181
1989
  "args": {
@@ -2393,55 +2201,65 @@
2393
2201
  "update.js"
2394
2202
  ]
2395
2203
  },
2396
- "members:delete": {
2204
+ "import:apply": {
2397
2205
  "aliases": [],
2398
- "args": {
2399
- "member": {
2400
- "description": "The account member email or user ID.",
2401
- "name": "member",
2402
- "required": true
2206
+ "args": {},
2207
+ "description": "Attach imported resources into your project in a pending state.",
2208
+ "flags": {
2209
+ "config": {
2210
+ "char": "c",
2211
+ "description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
2212
+ "name": "config",
2213
+ "hasDynamicHelp": false,
2214
+ "multiple": false,
2215
+ "type": "option"
2403
2216
  }
2404
2217
  },
2405
- "description": "Delete an account member.",
2218
+ "hasDynamicHelp": false,
2219
+ "hidden": false,
2220
+ "hiddenAliases": [],
2221
+ "id": "import:apply",
2222
+ "pluginAlias": "checkly",
2223
+ "pluginName": "checkly",
2224
+ "pluginType": "core",
2225
+ "strict": true,
2226
+ "enableJsonFlag": false,
2227
+ "coreCommand": false,
2228
+ "readOnly": false,
2229
+ "destructive": false,
2230
+ "idempotent": false,
2231
+ "isESM": true,
2232
+ "relativePath": [
2233
+ "dist",
2234
+ "commands",
2235
+ "import",
2236
+ "apply.js"
2237
+ ]
2238
+ },
2239
+ "import:cancel": {
2240
+ "aliases": [],
2241
+ "args": {},
2242
+ "description": "Cancels an ongoing import plan that has not been committed yet.",
2406
2243
  "flags": {
2407
- "email": {
2408
- "description": "Treat the member argument as an email address.",
2409
- "exclusive": [
2410
- "id"
2411
- ],
2412
- "name": "email",
2413
- "allowNo": false,
2414
- "type": "boolean"
2415
- },
2416
- "id": {
2417
- "description": "Treat the member argument as a user ID.",
2418
- "exclusive": [
2419
- "email"
2420
- ],
2421
- "name": "id",
2422
- "allowNo": false,
2423
- "type": "boolean"
2424
- },
2425
- "force": {
2426
- "char": "f",
2427
- "description": "Skip confirmation prompt.",
2428
- "name": "force",
2429
- "allowNo": false,
2430
- "type": "boolean"
2244
+ "config": {
2245
+ "char": "c",
2246
+ "description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
2247
+ "name": "config",
2248
+ "hasDynamicHelp": false,
2249
+ "multiple": false,
2250
+ "type": "option"
2431
2251
  },
2432
- "dry-run": {
2433
- "description": "Preview what would happen without executing.",
2434
- "name": "dry-run",
2252
+ "all": {
2253
+ "description": "Cancel all plans.",
2254
+ "name": "all",
2435
2255
  "allowNo": false,
2436
2256
  "type": "boolean"
2437
2257
  }
2438
2258
  },
2439
2259
  "hasDynamicHelp": false,
2440
2260
  "hidden": false,
2441
- "hiddenAliases": [
2442
- "account members delete"
2443
- ],
2444
- "id": "members:delete",
2261
+ "hiddenAliases": [],
2262
+ "id": "import:cancel",
2445
2263
  "pluginAlias": "checkly",
2446
2264
  "pluginName": "checkly",
2447
2265
  "pluginType": "core",
@@ -2449,103 +2267,130 @@
2449
2267
  "enableJsonFlag": false,
2450
2268
  "coreCommand": false,
2451
2269
  "readOnly": false,
2452
- "destructive": true,
2270
+ "destructive": false,
2453
2271
  "idempotent": true,
2454
2272
  "isESM": true,
2455
2273
  "relativePath": [
2456
2274
  "dist",
2457
2275
  "commands",
2458
- "members",
2459
- "delete.js"
2276
+ "import",
2277
+ "cancel.js"
2278
+ ]
2279
+ },
2280
+ "import:commit": {
2281
+ "aliases": [],
2282
+ "args": {},
2283
+ "description": "Permanently commit imported resources into your project.",
2284
+ "flags": {
2285
+ "config": {
2286
+ "char": "c",
2287
+ "description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
2288
+ "name": "config",
2289
+ "hasDynamicHelp": false,
2290
+ "multiple": false,
2291
+ "type": "option"
2292
+ }
2293
+ },
2294
+ "hasDynamicHelp": false,
2295
+ "hidden": false,
2296
+ "hiddenAliases": [],
2297
+ "id": "import:commit",
2298
+ "pluginAlias": "checkly",
2299
+ "pluginName": "checkly",
2300
+ "pluginType": "core",
2301
+ "strict": true,
2302
+ "enableJsonFlag": false,
2303
+ "coreCommand": false,
2304
+ "readOnly": false,
2305
+ "destructive": false,
2306
+ "idempotent": false,
2307
+ "isESM": true,
2308
+ "relativePath": [
2309
+ "dist",
2310
+ "commands",
2311
+ "import",
2312
+ "commit.js"
2460
2313
  ]
2461
2314
  },
2462
- "members:update": {
2315
+ "import:plan": {
2463
2316
  "aliases": [],
2464
2317
  "args": {
2465
- "member": {
2466
- "description": "The account member email or user ID.",
2467
- "name": "member",
2468
- "required": true
2318
+ "resource": {
2319
+ "description": "A specific resource to import.",
2320
+ "name": "resource",
2321
+ "required": false
2469
2322
  }
2470
2323
  },
2471
- "description": "Update an account member role.",
2324
+ "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.",
2472
2325
  "flags": {
2473
- "role": {
2474
- "char": "r",
2475
- "description": "New member role: admin, read_write, read_run, read_only.",
2476
- "name": "role",
2477
- "required": true,
2326
+ "config": {
2327
+ "char": "c",
2328
+ "description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
2329
+ "name": "config",
2478
2330
  "hasDynamicHelp": false,
2479
2331
  "multiple": false,
2480
2332
  "type": "option"
2481
2333
  },
2482
- "email": {
2483
- "description": "Treat the member argument as an email address.",
2484
- "exclusive": [
2485
- "id"
2486
- ],
2487
- "name": "email",
2334
+ "root": {
2335
+ "description": "The root folder in which to write generated code files.",
2336
+ "name": "root",
2337
+ "default": "__checks__",
2338
+ "hasDynamicHelp": false,
2339
+ "multiple": false,
2340
+ "type": "option"
2341
+ },
2342
+ "preview": {
2343
+ "description": "Preview generated code without creating an actual import plan.",
2344
+ "name": "preview",
2488
2345
  "allowNo": false,
2489
2346
  "type": "boolean"
2490
2347
  },
2491
- "id": {
2492
- "description": "Treat the member argument as a user ID.",
2493
- "exclusive": [
2494
- "email"
2495
- ],
2496
- "name": "id",
2348
+ "debug-import-plan": {
2349
+ "description": "Output the import plan to a file.",
2350
+ "hidden": true,
2351
+ "name": "debug-import-plan",
2497
2352
  "allowNo": false,
2498
2353
  "type": "boolean"
2499
2354
  },
2500
- "output": {
2501
- "char": "o",
2502
- "description": "Output format.",
2503
- "name": "output",
2504
- "default": "table",
2355
+ "debug-import-plan-input-file": {
2356
+ "description": "A file to load an import plan from.",
2357
+ "hidden": true,
2358
+ "name": "debug-import-plan-input-file",
2505
2359
  "hasDynamicHelp": false,
2506
2360
  "multiple": false,
2507
- "options": [
2508
- "table",
2509
- "json",
2510
- "md"
2511
- ],
2512
2361
  "type": "option"
2513
2362
  },
2514
- "force": {
2515
- "char": "f",
2516
- "description": "Skip confirmation prompt.",
2517
- "name": "force",
2518
- "allowNo": false,
2519
- "type": "boolean"
2520
- },
2521
- "dry-run": {
2522
- "description": "Preview what would happen without executing.",
2523
- "name": "dry-run",
2524
- "allowNo": false,
2525
- "type": "boolean"
2363
+ "debug-import-plan-output-file": {
2364
+ "description": "The file to output the import plan to.",
2365
+ "hidden": true,
2366
+ "name": "debug-import-plan-output-file",
2367
+ "default": "./debug-import-plan.json",
2368
+ "hasDynamicHelp": false,
2369
+ "multiple": false,
2370
+ "type": "option"
2526
2371
  }
2527
2372
  },
2528
2373
  "hasDynamicHelp": false,
2529
2374
  "hidden": false,
2530
2375
  "hiddenAliases": [
2531
- "account members update"
2376
+ "import"
2532
2377
  ],
2533
- "id": "members:update",
2378
+ "id": "import:plan",
2534
2379
  "pluginAlias": "checkly",
2535
2380
  "pluginName": "checkly",
2536
2381
  "pluginType": "core",
2537
- "strict": true,
2382
+ "strict": false,
2538
2383
  "enableJsonFlag": false,
2539
2384
  "coreCommand": false,
2540
- "readOnly": false,
2385
+ "readOnly": true,
2541
2386
  "destructive": false,
2542
2387
  "idempotent": true,
2543
2388
  "isESM": true,
2544
2389
  "relativePath": [
2545
2390
  "dist",
2546
2391
  "commands",
2547
- "members",
2548
- "update.js"
2392
+ "import",
2393
+ "plan.js"
2549
2394
  ]
2550
2395
  },
2551
2396
  "incidents:create": {
@@ -2896,6 +2741,161 @@
2896
2741
  "update.js"
2897
2742
  ]
2898
2743
  },
2744
+ "members:delete": {
2745
+ "aliases": [],
2746
+ "args": {
2747
+ "member": {
2748
+ "description": "The account member email or user ID.",
2749
+ "name": "member",
2750
+ "required": true
2751
+ }
2752
+ },
2753
+ "description": "Delete an account member.",
2754
+ "flags": {
2755
+ "email": {
2756
+ "description": "Treat the member argument as an email address.",
2757
+ "exclusive": [
2758
+ "id"
2759
+ ],
2760
+ "name": "email",
2761
+ "allowNo": false,
2762
+ "type": "boolean"
2763
+ },
2764
+ "id": {
2765
+ "description": "Treat the member argument as a user ID.",
2766
+ "exclusive": [
2767
+ "email"
2768
+ ],
2769
+ "name": "id",
2770
+ "allowNo": false,
2771
+ "type": "boolean"
2772
+ },
2773
+ "force": {
2774
+ "char": "f",
2775
+ "description": "Skip confirmation prompt.",
2776
+ "name": "force",
2777
+ "allowNo": false,
2778
+ "type": "boolean"
2779
+ },
2780
+ "dry-run": {
2781
+ "description": "Preview what would happen without executing.",
2782
+ "name": "dry-run",
2783
+ "allowNo": false,
2784
+ "type": "boolean"
2785
+ }
2786
+ },
2787
+ "hasDynamicHelp": false,
2788
+ "hidden": false,
2789
+ "hiddenAliases": [
2790
+ "account members delete"
2791
+ ],
2792
+ "id": "members:delete",
2793
+ "pluginAlias": "checkly",
2794
+ "pluginName": "checkly",
2795
+ "pluginType": "core",
2796
+ "strict": true,
2797
+ "enableJsonFlag": false,
2798
+ "coreCommand": false,
2799
+ "readOnly": false,
2800
+ "destructive": true,
2801
+ "idempotent": true,
2802
+ "isESM": true,
2803
+ "relativePath": [
2804
+ "dist",
2805
+ "commands",
2806
+ "members",
2807
+ "delete.js"
2808
+ ]
2809
+ },
2810
+ "members:update": {
2811
+ "aliases": [],
2812
+ "args": {
2813
+ "member": {
2814
+ "description": "The account member email or user ID.",
2815
+ "name": "member",
2816
+ "required": true
2817
+ }
2818
+ },
2819
+ "description": "Update an account member role.",
2820
+ "flags": {
2821
+ "role": {
2822
+ "char": "r",
2823
+ "description": "New member role: admin, read_write, read_run, read_only.",
2824
+ "name": "role",
2825
+ "required": true,
2826
+ "hasDynamicHelp": false,
2827
+ "multiple": false,
2828
+ "type": "option"
2829
+ },
2830
+ "email": {
2831
+ "description": "Treat the member argument as an email address.",
2832
+ "exclusive": [
2833
+ "id"
2834
+ ],
2835
+ "name": "email",
2836
+ "allowNo": false,
2837
+ "type": "boolean"
2838
+ },
2839
+ "id": {
2840
+ "description": "Treat the member argument as a user ID.",
2841
+ "exclusive": [
2842
+ "email"
2843
+ ],
2844
+ "name": "id",
2845
+ "allowNo": false,
2846
+ "type": "boolean"
2847
+ },
2848
+ "output": {
2849
+ "char": "o",
2850
+ "description": "Output format.",
2851
+ "name": "output",
2852
+ "default": "table",
2853
+ "hasDynamicHelp": false,
2854
+ "multiple": false,
2855
+ "options": [
2856
+ "table",
2857
+ "json",
2858
+ "md"
2859
+ ],
2860
+ "type": "option"
2861
+ },
2862
+ "force": {
2863
+ "char": "f",
2864
+ "description": "Skip confirmation prompt.",
2865
+ "name": "force",
2866
+ "allowNo": false,
2867
+ "type": "boolean"
2868
+ },
2869
+ "dry-run": {
2870
+ "description": "Preview what would happen without executing.",
2871
+ "name": "dry-run",
2872
+ "allowNo": false,
2873
+ "type": "boolean"
2874
+ }
2875
+ },
2876
+ "hasDynamicHelp": false,
2877
+ "hidden": false,
2878
+ "hiddenAliases": [
2879
+ "account members update"
2880
+ ],
2881
+ "id": "members:update",
2882
+ "pluginAlias": "checkly",
2883
+ "pluginName": "checkly",
2884
+ "pluginType": "core",
2885
+ "strict": true,
2886
+ "enableJsonFlag": false,
2887
+ "coreCommand": false,
2888
+ "readOnly": false,
2889
+ "destructive": false,
2890
+ "idempotent": true,
2891
+ "isESM": true,
2892
+ "relativePath": [
2893
+ "dist",
2894
+ "commands",
2895
+ "members",
2896
+ "update.js"
2897
+ ]
2898
+ },
2899
2899
  "rca:get": {
2900
2900
  "aliases": [],
2901
2901
  "args": {
@@ -3436,5 +3436,5 @@
3436
3436
  ]
3437
3437
  }
3438
3438
  },
3439
- "version": "8.7.0-prerelease-633a7ed"
3439
+ "version": "8.7.0"
3440
3440
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "checkly",
3
- "version": "8.7.0-prerelease-633a7ed",
3
+ "version": "8.7.0",
4
4
  "type": "module",
5
5
  "description": "Checkly CLI",
6
6
  "main": "dist/index.js",