checkly 0.0.0-pr.1006.2fb1ffc

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 (317) hide show
  1. package/README.md +102 -0
  2. package/bin/run +5 -0
  3. package/bin/run.cmd +3 -0
  4. package/constructs.d.ts +1 -0
  5. package/constructs.js +2 -0
  6. package/dist/auth/index.d.ts +15 -0
  7. package/dist/auth/index.js +262 -0
  8. package/dist/auth/index.js.map +1 -0
  9. package/dist/commands/authCommand.d.ts +5 -0
  10. package/dist/commands/authCommand.js +37 -0
  11. package/dist/commands/authCommand.js.map +1 -0
  12. package/dist/commands/baseCommand.d.ts +13 -0
  13. package/dist/commands/baseCommand.js +48 -0
  14. package/dist/commands/baseCommand.js.map +1 -0
  15. package/dist/commands/deploy.d.ts +18 -0
  16. package/dist/commands/deploy.js +289 -0
  17. package/dist/commands/deploy.js.map +1 -0
  18. package/dist/commands/destroy.d.ts +10 -0
  19. package/dist/commands/destroy.js +84 -0
  20. package/dist/commands/destroy.js.map +1 -0
  21. package/dist/commands/env/add.d.ts +14 -0
  22. package/dist/commands/env/add.js +85 -0
  23. package/dist/commands/env/add.js.map +1 -0
  24. package/dist/commands/env/ls.d.ts +6 -0
  25. package/dist/commands/env/ls.js +44 -0
  26. package/dist/commands/env/ls.js.map +1 -0
  27. package/dist/commands/env/pull.d.ts +12 -0
  28. package/dist/commands/env/pull.js +99 -0
  29. package/dist/commands/env/pull.js.map +1 -0
  30. package/dist/commands/env/rm.d.ts +12 -0
  31. package/dist/commands/env/rm.js +82 -0
  32. package/dist/commands/env/rm.js.map +1 -0
  33. package/dist/commands/env/update.d.ts +14 -0
  34. package/dist/commands/env/update.js +88 -0
  35. package/dist/commands/env/update.js.map +1 -0
  36. package/dist/commands/help.d.ts +6 -0
  37. package/dist/commands/help.js +17 -0
  38. package/dist/commands/help.js.map +1 -0
  39. package/dist/commands/login.d.ts +13 -0
  40. package/dist/commands/login.js +134 -0
  41. package/dist/commands/login.js.map +1 -0
  42. package/dist/commands/logout.d.ts +9 -0
  43. package/dist/commands/logout.js +43 -0
  44. package/dist/commands/logout.js.map +1 -0
  45. package/dist/commands/runtimes.d.ts +6 -0
  46. package/dist/commands/runtimes.js +49 -0
  47. package/dist/commands/runtimes.js.map +1 -0
  48. package/dist/commands/switch.d.ts +9 -0
  49. package/dist/commands/switch.js +81 -0
  50. package/dist/commands/switch.js.map +1 -0
  51. package/dist/commands/sync-playwright.d.ts +10 -0
  52. package/dist/commands/sync-playwright.js +98 -0
  53. package/dist/commands/sync-playwright.js.map +1 -0
  54. package/dist/commands/test.d.ts +45 -0
  55. package/dist/commands/test.js +366 -0
  56. package/dist/commands/test.js.map +1 -0
  57. package/dist/commands/trigger.d.ts +37 -0
  58. package/dist/commands/trigger.js +242 -0
  59. package/dist/commands/trigger.js.map +1 -0
  60. package/dist/commands/whoami.d.ts +6 -0
  61. package/dist/commands/whoami.js +42 -0
  62. package/dist/commands/whoami.js.map +1 -0
  63. package/dist/config.d.ts +31 -0
  64. package/dist/config.js +8 -0
  65. package/dist/config.js.map +1 -0
  66. package/dist/constants.d.ts +7 -0
  67. package/dist/constants.js +10 -0
  68. package/dist/constants.js.map +1 -0
  69. package/dist/constructs/alert-channel-subscription.d.ts +44 -0
  70. package/dist/constructs/alert-channel-subscription.js +39 -0
  71. package/dist/constructs/alert-channel-subscription.js.map +1 -0
  72. package/dist/constructs/alert-channel.d.ts +53 -0
  73. package/dist/constructs/alert-channel.js +55 -0
  74. package/dist/constructs/alert-channel.js.map +1 -0
  75. package/dist/constructs/alert-escalation-policy.d.ts +34 -0
  76. package/dist/constructs/alert-escalation-policy.js +47 -0
  77. package/dist/constructs/alert-escalation-policy.js.map +1 -0
  78. package/dist/constructs/api-check.d.ts +187 -0
  79. package/dist/constructs/api-check.js +279 -0
  80. package/dist/constructs/api-check.js.map +1 -0
  81. package/dist/constructs/browser-check.d.ts +90 -0
  82. package/dist/constructs/browser-check.js +151 -0
  83. package/dist/constructs/browser-check.js.map +1 -0
  84. package/dist/constructs/check-group.d.ts +162 -0
  85. package/dist/constructs/check-group.js +208 -0
  86. package/dist/constructs/check-group.js.map +1 -0
  87. package/dist/constructs/check.d.ts +144 -0
  88. package/dist/constructs/check.js +133 -0
  89. package/dist/constructs/check.js.map +1 -0
  90. package/dist/constructs/construct.d.ts +17 -0
  91. package/dist/constructs/construct.js +22 -0
  92. package/dist/constructs/construct.js.map +1 -0
  93. package/dist/constructs/dashboard.d.ts +138 -0
  94. package/dist/constructs/dashboard.js +126 -0
  95. package/dist/constructs/dashboard.js.map +1 -0
  96. package/dist/constructs/email-alert-channel.d.ts +26 -0
  97. package/dist/constructs/email-alert-channel.js +37 -0
  98. package/dist/constructs/email-alert-channel.js.map +1 -0
  99. package/dist/constructs/environment-variable.d.ts +2 -0
  100. package/dist/constructs/environment-variable.js +3 -0
  101. package/dist/constructs/environment-variable.js.map +1 -0
  102. package/dist/constructs/frequency.d.ts +20 -0
  103. package/dist/constructs/frequency.js +26 -0
  104. package/dist/constructs/frequency.js.map +1 -0
  105. package/dist/constructs/heartbeat-check.d.ts +43 -0
  106. package/dist/constructs/heartbeat-check.js +61 -0
  107. package/dist/constructs/heartbeat-check.js.map +1 -0
  108. package/dist/constructs/http-header.d.ts +2 -0
  109. package/dist/constructs/http-header.js +3 -0
  110. package/dist/constructs/http-header.js.map +1 -0
  111. package/dist/constructs/index.d.ts +27 -0
  112. package/dist/constructs/index.js +44 -0
  113. package/dist/constructs/index.js.map +1 -0
  114. package/dist/constructs/key-value-pair.d.ts +6 -0
  115. package/dist/constructs/key-value-pair.js +3 -0
  116. package/dist/constructs/key-value-pair.js.map +1 -0
  117. package/dist/constructs/maintenance-window.d.ts +61 -0
  118. package/dist/constructs/maintenance-window.js +47 -0
  119. package/dist/constructs/maintenance-window.js.map +1 -0
  120. package/dist/constructs/multi-step-check.d.ts +65 -0
  121. package/dist/constructs/multi-step-check.js +153 -0
  122. package/dist/constructs/multi-step-check.js.map +1 -0
  123. package/dist/constructs/opsgenie-alert-channel.d.ts +45 -0
  124. package/dist/constructs/opsgenie-alert-channel.js +44 -0
  125. package/dist/constructs/opsgenie-alert-channel.js.map +1 -0
  126. package/dist/constructs/pagerduty-alert-channel.d.ts +39 -0
  127. package/dist/constructs/pagerduty-alert-channel.js +42 -0
  128. package/dist/constructs/pagerduty-alert-channel.js.map +1 -0
  129. package/dist/constructs/phone-call-alert-channel.d.ts +34 -0
  130. package/dist/constructs/phone-call-alert-channel.js +42 -0
  131. package/dist/constructs/phone-call-alert-channel.js.map +1 -0
  132. package/dist/constructs/playwright-config.d.ts +52 -0
  133. package/dist/constructs/playwright-config.js +3 -0
  134. package/dist/constructs/playwright-config.js.map +1 -0
  135. package/dist/constructs/private-location-check-assignment.d.ts +29 -0
  136. package/dist/constructs/private-location-check-assignment.js +35 -0
  137. package/dist/constructs/private-location-check-assignment.js.map +1 -0
  138. package/dist/constructs/private-location-group-assignment.d.ts +29 -0
  139. package/dist/constructs/private-location-group-assignment.js +35 -0
  140. package/dist/constructs/private-location-group-assignment.js.map +1 -0
  141. package/dist/constructs/private-location.d.ts +51 -0
  142. package/dist/constructs/private-location.js +61 -0
  143. package/dist/constructs/private-location.js.map +1 -0
  144. package/dist/constructs/project.d.ts +66 -0
  145. package/dist/constructs/project.js +155 -0
  146. package/dist/constructs/project.js.map +1 -0
  147. package/dist/constructs/query-param.d.ts +2 -0
  148. package/dist/constructs/query-param.js +3 -0
  149. package/dist/constructs/query-param.js.map +1 -0
  150. package/dist/constructs/ref.d.ts +5 -0
  151. package/dist/constructs/ref.js +13 -0
  152. package/dist/constructs/ref.js.map +1 -0
  153. package/dist/constructs/retry-strategy.d.ts +50 -0
  154. package/dist/constructs/retry-strategy.js +51 -0
  155. package/dist/constructs/retry-strategy.js.map +1 -0
  156. package/dist/constructs/slack-alert-channel.d.ts +26 -0
  157. package/dist/constructs/slack-alert-channel.js +40 -0
  158. package/dist/constructs/slack-alert-channel.js.map +1 -0
  159. package/dist/constructs/sms-alert-channel.d.ts +32 -0
  160. package/dist/constructs/sms-alert-channel.js +40 -0
  161. package/dist/constructs/sms-alert-channel.js.map +1 -0
  162. package/dist/constructs/validator-error.d.ts +2 -0
  163. package/dist/constructs/validator-error.js +7 -0
  164. package/dist/constructs/validator-error.js.map +1 -0
  165. package/dist/constructs/webhook-alert-channel.d.ts +67 -0
  166. package/dist/constructs/webhook-alert-channel.js +52 -0
  167. package/dist/constructs/webhook-alert-channel.js.map +1 -0
  168. package/dist/help/examples.d.ts +6 -0
  169. package/dist/help/examples.js +22 -0
  170. package/dist/help/examples.js.map +1 -0
  171. package/dist/help/help-extension.d.ts +7 -0
  172. package/dist/help/help-extension.js +59 -0
  173. package/dist/help/help-extension.js.map +1 -0
  174. package/dist/index.d.ts +3 -0
  175. package/dist/index.js +30 -0
  176. package/dist/index.js.map +1 -0
  177. package/dist/messages/common-messages.d.ts +5 -0
  178. package/dist/messages/common-messages.js +9 -0
  179. package/dist/messages/common-messages.js.map +1 -0
  180. package/dist/playwright/playwright-config-loader.d.ts +1 -0
  181. package/dist/playwright/playwright-config-loader.js +26 -0
  182. package/dist/playwright/playwright-config-loader.js.map +1 -0
  183. package/dist/playwright/playwright-config-template.d.ts +8 -0
  184. package/dist/playwright/playwright-config-template.js +78 -0
  185. package/dist/playwright/playwright-config-template.js.map +1 -0
  186. package/dist/reporters/abstract-list.d.ts +41 -0
  187. package/dist/reporters/abstract-list.js +171 -0
  188. package/dist/reporters/abstract-list.js.map +1 -0
  189. package/dist/reporters/ci.d.ts +12 -0
  190. package/dist/reporters/ci.js +34 -0
  191. package/dist/reporters/ci.js.map +1 -0
  192. package/dist/reporters/dot.d.ts +10 -0
  193. package/dist/reporters/dot.js +29 -0
  194. package/dist/reporters/dot.js.map +1 -0
  195. package/dist/reporters/github.d.ts +32 -0
  196. package/dist/reporters/github.js +119 -0
  197. package/dist/reporters/github.js.map +1 -0
  198. package/dist/reporters/json.d.ts +26 -0
  199. package/dist/reporters/json.js +101 -0
  200. package/dist/reporters/json.js.map +1 -0
  201. package/dist/reporters/list.d.ts +15 -0
  202. package/dist/reporters/list.js +85 -0
  203. package/dist/reporters/list.js.map +1 -0
  204. package/dist/reporters/reporter.d.ts +16 -0
  205. package/dist/reporters/reporter.js +29 -0
  206. package/dist/reporters/reporter.js.map +1 -0
  207. package/dist/reporters/util.d.ts +18 -0
  208. package/dist/reporters/util.js +325 -0
  209. package/dist/reporters/util.js.map +1 -0
  210. package/dist/rest/accounts.d.ts +12 -0
  211. package/dist/rest/accounts.js +15 -0
  212. package/dist/rest/accounts.js.map +1 -0
  213. package/dist/rest/api.d.ts +33 -0
  214. package/dist/rest/api.js +98 -0
  215. package/dist/rest/api.js.map +1 -0
  216. package/dist/rest/assets.d.ts +13 -0
  217. package/dist/rest/assets.js +30 -0
  218. package/dist/rest/assets.js.map +1 -0
  219. package/dist/rest/checkly-storage.d.ts +12 -0
  220. package/dist/rest/checkly-storage.js +15 -0
  221. package/dist/rest/checkly-storage.js.map +1 -0
  222. package/dist/rest/environment-variables.d.ts +17 -0
  223. package/dist/rest/environment-variables.js +25 -0
  224. package/dist/rest/environment-variables.js.map +1 -0
  225. package/dist/rest/heartbeat-checks.d.ts +11 -0
  226. package/dist/rest/heartbeat-checks.js +17 -0
  227. package/dist/rest/heartbeat-checks.js.map +1 -0
  228. package/dist/rest/locations.d.ts +11 -0
  229. package/dist/rest/locations.js +12 -0
  230. package/dist/rest/locations.js.map +1 -0
  231. package/dist/rest/private-locations.d.ts +10 -0
  232. package/dist/rest/private-locations.js +12 -0
  233. package/dist/rest/private-locations.js.map +1 -0
  234. package/dist/rest/projects.d.ts +46 -0
  235. package/dist/rest/projects.js +25 -0
  236. package/dist/rest/projects.js.map +1 -0
  237. package/dist/rest/runtimes.d.ts +16 -0
  238. package/dist/rest/runtimes.js +15 -0
  239. package/dist/rest/runtimes.js.map +1 -0
  240. package/dist/rest/test-sessions.d.ts +59 -0
  241. package/dist/rest/test-sessions.js +24 -0
  242. package/dist/rest/test-sessions.js.map +1 -0
  243. package/dist/rest/users.d.ts +12 -0
  244. package/dist/rest/users.js +12 -0
  245. package/dist/rest/users.js.map +1 -0
  246. package/dist/rest/util.d.ts +4 -0
  247. package/dist/rest/util.js +17 -0
  248. package/dist/rest/util.js.map +1 -0
  249. package/dist/services/abstract-check-runner.d.ts +60 -0
  250. package/dist/services/abstract-check-runner.js +225 -0
  251. package/dist/services/abstract-check-runner.js.map +1 -0
  252. package/dist/services/check-parser/collector.d.ts +33 -0
  253. package/dist/services/check-parser/collector.js +48 -0
  254. package/dist/services/check-parser/collector.js.map +1 -0
  255. package/dist/services/check-parser/errors.d.ts +8 -0
  256. package/dist/services/check-parser/errors.js +45 -0
  257. package/dist/services/check-parser/errors.js.map +1 -0
  258. package/dist/services/check-parser/package-files/index.d.ts +1 -0
  259. package/dist/services/check-parser/package-files/index.js +6 -0
  260. package/dist/services/check-parser/package-files/index.js.map +1 -0
  261. package/dist/services/check-parser/package-files/jsconfig-json-file.d.ts +17 -0
  262. package/dist/services/check-parser/package-files/jsconfig-json-file.js +46 -0
  263. package/dist/services/check-parser/package-files/jsconfig-json-file.js.map +1 -0
  264. package/dist/services/check-parser/package-files/json-source-file.d.ts +10 -0
  265. package/dist/services/check-parser/package-files/json-source-file.js +38 -0
  266. package/dist/services/check-parser/package-files/json-source-file.js.map +1 -0
  267. package/dist/services/check-parser/package-files/loader.d.ts +7 -0
  268. package/dist/services/check-parser/package-files/loader.js +19 -0
  269. package/dist/services/check-parser/package-files/loader.js.map +1 -0
  270. package/dist/services/check-parser/package-files/package-json-file.d.ts +20 -0
  271. package/dist/services/check-parser/package-files/package-json-file.js +48 -0
  272. package/dist/services/check-parser/package-files/package-json-file.js.map +1 -0
  273. package/dist/services/check-parser/package-files/paths.d.ts +80 -0
  274. package/dist/services/check-parser/package-files/paths.js +177 -0
  275. package/dist/services/check-parser/package-files/paths.js.map +1 -0
  276. package/dist/services/check-parser/package-files/resolver.d.ts +70 -0
  277. package/dist/services/check-parser/package-files/resolver.js +290 -0
  278. package/dist/services/check-parser/package-files/resolver.js.map +1 -0
  279. package/dist/services/check-parser/package-files/source-file.d.ts +15 -0
  280. package/dist/services/check-parser/package-files/source-file.js +54 -0
  281. package/dist/services/check-parser/package-files/source-file.js.map +1 -0
  282. package/dist/services/check-parser/package-files/tsconfig-json-file.d.ts +68 -0
  283. package/dist/services/check-parser/package-files/tsconfig-json-file.js +127 -0
  284. package/dist/services/check-parser/package-files/tsconfig-json-file.js.map +1 -0
  285. package/dist/services/check-parser/parser.d.ts +32 -0
  286. package/dist/services/check-parser/parser.js +313 -0
  287. package/dist/services/check-parser/parser.js.map +1 -0
  288. package/dist/services/checkly-config-loader.d.ts +72 -0
  289. package/dist/services/checkly-config-loader.js +103 -0
  290. package/dist/services/checkly-config-loader.js.map +1 -0
  291. package/dist/services/config.d.ts +28 -0
  292. package/dist/services/config.js +99 -0
  293. package/dist/services/config.js.map +1 -0
  294. package/dist/services/project-parser.d.ts +21 -0
  295. package/dist/services/project-parser.js +192 -0
  296. package/dist/services/project-parser.js.map +1 -0
  297. package/dist/services/snapshot-service.d.ts +13 -0
  298. package/dist/services/snapshot-service.js +85 -0
  299. package/dist/services/snapshot-service.js.map +1 -0
  300. package/dist/services/socket-client.d.ts +4 -0
  301. package/dist/services/socket-client.js +88 -0
  302. package/dist/services/socket-client.js.map +1 -0
  303. package/dist/services/test-filters.d.ts +3 -0
  304. package/dist/services/test-filters.js +27 -0
  305. package/dist/services/test-filters.js.map +1 -0
  306. package/dist/services/test-runner.d.ts +24 -0
  307. package/dist/services/test-runner.js +91 -0
  308. package/dist/services/test-runner.js.map +1 -0
  309. package/dist/services/trigger-runner.d.ts +29 -0
  310. package/dist/services/trigger-runner.js +59 -0
  311. package/dist/services/trigger-runner.js.map +1 -0
  312. package/dist/services/util.d.ts +32 -0
  313. package/dist/services/util.js +244 -0
  314. package/dist/services/util.js.map +1 -0
  315. package/dist/tsconfig.tsbuildinfo +1 -0
  316. package/oclif.manifest.json +635 -0
  317. package/package.json +151 -0
@@ -0,0 +1,635 @@
1
+ {
2
+ "version": "0.0.0-pr.1006.2fb1ffc",
3
+ "commands": {
4
+ "authCommand": {
5
+ "id": "authCommand",
6
+ "strict": true,
7
+ "pluginName": "checkly",
8
+ "pluginAlias": "checkly",
9
+ "pluginType": "core",
10
+ "hidden": true,
11
+ "aliases": [],
12
+ "flags": {},
13
+ "args": {}
14
+ },
15
+ "baseCommand": {
16
+ "id": "baseCommand",
17
+ "strict": true,
18
+ "pluginName": "checkly",
19
+ "pluginAlias": "checkly",
20
+ "pluginType": "core",
21
+ "hidden": true,
22
+ "aliases": [],
23
+ "flags": {},
24
+ "args": {},
25
+ "coreCommand": false
26
+ },
27
+ "deploy": {
28
+ "id": "deploy",
29
+ "description": "Deploy your project to your Checkly account.",
30
+ "strict": true,
31
+ "pluginName": "checkly",
32
+ "pluginAlias": "checkly",
33
+ "pluginType": "core",
34
+ "hidden": false,
35
+ "aliases": [],
36
+ "flags": {
37
+ "preview": {
38
+ "name": "preview",
39
+ "type": "boolean",
40
+ "char": "p",
41
+ "description": "Show a preview of the changes made by the deploy command.",
42
+ "allowNo": false
43
+ },
44
+ "output": {
45
+ "name": "output",
46
+ "type": "boolean",
47
+ "char": "o",
48
+ "description": "Shows the changes made after the deploy command.",
49
+ "allowNo": false
50
+ },
51
+ "schedule-on-deploy": {
52
+ "name": "schedule-on-deploy",
53
+ "type": "boolean",
54
+ "description": "Enables automatic check scheduling after a deploy.",
55
+ "allowNo": true
56
+ },
57
+ "force": {
58
+ "name": "force",
59
+ "type": "boolean",
60
+ "char": "f",
61
+ "description": "Force mode. Skips the confirmation dialog.",
62
+ "allowNo": false
63
+ },
64
+ "config": {
65
+ "name": "config",
66
+ "type": "option",
67
+ "char": "c",
68
+ "description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
69
+ "multiple": false
70
+ },
71
+ "verify-runtime-dependencies": {
72
+ "name": "verify-runtime-dependencies",
73
+ "type": "boolean",
74
+ "description": "[default: true] Return an error if checks import dependencies that are not supported by the selected runtime.",
75
+ "allowNo": true
76
+ },
77
+ "debug-bundle": {
78
+ "name": "debug-bundle",
79
+ "type": "boolean",
80
+ "description": "Output the project bundle to a file without deploying any resources.",
81
+ "hidden": true,
82
+ "allowNo": false
83
+ },
84
+ "debug-bundle-output-file": {
85
+ "name": "debug-bundle-output-file",
86
+ "type": "option",
87
+ "description": "The file to output the debug debug bundle to.",
88
+ "hidden": true,
89
+ "multiple": false,
90
+ "default": "./debug-bundle.json"
91
+ }
92
+ },
93
+ "args": {},
94
+ "coreCommand": true
95
+ },
96
+ "destroy": {
97
+ "id": "destroy",
98
+ "description": "Destroy your project with all its related resources.",
99
+ "strict": true,
100
+ "pluginName": "checkly",
101
+ "pluginAlias": "checkly",
102
+ "pluginType": "core",
103
+ "hidden": false,
104
+ "aliases": [],
105
+ "flags": {
106
+ "force": {
107
+ "name": "force",
108
+ "type": "boolean",
109
+ "char": "f",
110
+ "description": "Force mode. Skips the confirmation dialog.",
111
+ "allowNo": false
112
+ },
113
+ "config": {
114
+ "name": "config",
115
+ "type": "option",
116
+ "char": "c",
117
+ "description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
118
+ "multiple": false
119
+ }
120
+ },
121
+ "args": {}
122
+ },
123
+ "help": {
124
+ "id": "help",
125
+ "description": "Display help for <%= config.bin %>.",
126
+ "strict": true,
127
+ "pluginName": "checkly",
128
+ "pluginAlias": "checkly",
129
+ "pluginType": "core",
130
+ "hidden": false,
131
+ "aliases": [],
132
+ "flags": {},
133
+ "args": {}
134
+ },
135
+ "login": {
136
+ "id": "login",
137
+ "description": "Login to your Checkly account or create a new one.",
138
+ "strict": true,
139
+ "pluginName": "checkly",
140
+ "pluginAlias": "checkly",
141
+ "pluginType": "core",
142
+ "hidden": false,
143
+ "aliases": [],
144
+ "flags": {},
145
+ "args": {}
146
+ },
147
+ "logout": {
148
+ "id": "logout",
149
+ "description": "Log out and clear any local credentials.",
150
+ "strict": true,
151
+ "pluginName": "checkly",
152
+ "pluginAlias": "checkly",
153
+ "pluginType": "core",
154
+ "hidden": false,
155
+ "aliases": [],
156
+ "flags": {
157
+ "force": {
158
+ "name": "force",
159
+ "type": "boolean",
160
+ "char": "f",
161
+ "description": "Force mode. Skips the confirmation dialog.",
162
+ "allowNo": false
163
+ }
164
+ },
165
+ "args": {}
166
+ },
167
+ "runtimes": {
168
+ "id": "runtimes",
169
+ "description": "List all supported runtimes and dependencies.",
170
+ "strict": true,
171
+ "pluginName": "checkly",
172
+ "pluginAlias": "checkly",
173
+ "pluginType": "core",
174
+ "hidden": false,
175
+ "aliases": [],
176
+ "flags": {},
177
+ "args": {}
178
+ },
179
+ "switch": {
180
+ "id": "switch",
181
+ "description": "Switch user account.",
182
+ "strict": true,
183
+ "pluginName": "checkly",
184
+ "pluginAlias": "checkly",
185
+ "pluginType": "core",
186
+ "hidden": false,
187
+ "aliases": [],
188
+ "flags": {
189
+ "account-id": {
190
+ "name": "account-id",
191
+ "type": "option",
192
+ "char": "a",
193
+ "description": "The id of the account you want to switch to.",
194
+ "multiple": false
195
+ }
196
+ },
197
+ "args": {}
198
+ },
199
+ "sync-playwright": {
200
+ "id": "sync-playwright",
201
+ "description": "Copy Playwright config into the Checkly config file.",
202
+ "strict": true,
203
+ "pluginName": "checkly",
204
+ "pluginAlias": "checkly",
205
+ "pluginType": "core",
206
+ "hidden": false,
207
+ "aliases": [],
208
+ "flags": {},
209
+ "args": {}
210
+ },
211
+ "test": {
212
+ "id": "test",
213
+ "description": "Test your checks on Checkly.",
214
+ "strict": false,
215
+ "pluginName": "checkly",
216
+ "pluginAlias": "checkly",
217
+ "pluginType": "core",
218
+ "hidden": false,
219
+ "aliases": [],
220
+ "flags": {
221
+ "location": {
222
+ "name": "location",
223
+ "type": "option",
224
+ "char": "l",
225
+ "description": "The location to run the checks at.",
226
+ "multiple": false
227
+ },
228
+ "private-location": {
229
+ "name": "private-location",
230
+ "type": "option",
231
+ "description": "The private location to run checks at.",
232
+ "multiple": false,
233
+ "exclusive": [
234
+ "location"
235
+ ]
236
+ },
237
+ "grep": {
238
+ "name": "grep",
239
+ "type": "option",
240
+ "char": "g",
241
+ "description": "Only run checks where the check name matches a regular expression.",
242
+ "multiple": false,
243
+ "default": ".*"
244
+ },
245
+ "tags": {
246
+ "name": "tags",
247
+ "type": "option",
248
+ "char": "t",
249
+ "description": "Filter the checks to be run using a comma separated list of tags. Checks will only be run if they contain all of the specified tags. Multiple --tags flags can be passed, in which case checks will be run if they match any of the --tags filters. F.ex. `--tags production,webapp --tags production,backend` will run checks with tags (production AND webapp) OR (production AND backend).",
250
+ "required": false,
251
+ "multiple": true
252
+ },
253
+ "env": {
254
+ "name": "env",
255
+ "type": "option",
256
+ "char": "e",
257
+ "description": "Env vars to be passed to the test run.",
258
+ "multiple": true,
259
+ "exclusive": [
260
+ "env-file"
261
+ ],
262
+ "default": []
263
+ },
264
+ "env-file": {
265
+ "name": "env-file",
266
+ "type": "option",
267
+ "description": "dotenv file path to be passed. For example --env-file=\"./.env\"",
268
+ "multiple": false,
269
+ "exclusive": [
270
+ "env"
271
+ ]
272
+ },
273
+ "list": {
274
+ "name": "list",
275
+ "type": "boolean",
276
+ "description": "list all checks but don't run them.",
277
+ "allowNo": false
278
+ },
279
+ "timeout": {
280
+ "name": "timeout",
281
+ "type": "option",
282
+ "description": "A timeout (in seconds) to wait for checks to complete.",
283
+ "multiple": false,
284
+ "default": 600
285
+ },
286
+ "verbose": {
287
+ "name": "verbose",
288
+ "type": "boolean",
289
+ "char": "v",
290
+ "description": "Always show the full logs of the checks.",
291
+ "allowNo": true
292
+ },
293
+ "reporter": {
294
+ "name": "reporter",
295
+ "type": "option",
296
+ "char": "r",
297
+ "description": "A list of custom reporters for the test output.",
298
+ "multiple": false,
299
+ "options": [
300
+ "list",
301
+ "dot",
302
+ "ci",
303
+ "github",
304
+ "json"
305
+ ]
306
+ },
307
+ "config": {
308
+ "name": "config",
309
+ "type": "option",
310
+ "char": "c",
311
+ "description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
312
+ "multiple": false
313
+ },
314
+ "record": {
315
+ "name": "record",
316
+ "type": "boolean",
317
+ "description": "Record test results in Checkly as a test session with full logs, traces and videos.",
318
+ "allowNo": false
319
+ },
320
+ "test-session-name": {
321
+ "name": "test-session-name",
322
+ "type": "option",
323
+ "char": "n",
324
+ "description": "A name to use when storing results in Checkly with --record.",
325
+ "multiple": false
326
+ },
327
+ "update-snapshots": {
328
+ "name": "update-snapshots",
329
+ "type": "boolean",
330
+ "char": "u",
331
+ "description": "Update any snapshots using the actual result of this test run.",
332
+ "allowNo": false
333
+ },
334
+ "retries": {
335
+ "name": "retries",
336
+ "type": "option",
337
+ "description": "[default: 0, max: 3] How many times to retry a failing test run.",
338
+ "multiple": false
339
+ },
340
+ "verify-runtime-dependencies": {
341
+ "name": "verify-runtime-dependencies",
342
+ "type": "boolean",
343
+ "description": "[default: true] Return an error if checks import dependencies that are not supported by the selected runtime.",
344
+ "allowNo": true
345
+ }
346
+ },
347
+ "args": {
348
+ "fileArgs": {
349
+ "name": "fileArgs",
350
+ "description": "Only run checks where the file name matches a regular expression",
351
+ "required": false,
352
+ "default": ".*"
353
+ }
354
+ },
355
+ "coreCommand": true
356
+ },
357
+ "trigger": {
358
+ "id": "trigger",
359
+ "description": "Trigger your checks on Checkly.",
360
+ "strict": true,
361
+ "pluginName": "checkly",
362
+ "pluginAlias": "checkly",
363
+ "pluginType": "core",
364
+ "hidden": false,
365
+ "aliases": [],
366
+ "flags": {
367
+ "location": {
368
+ "name": "location",
369
+ "type": "option",
370
+ "char": "l",
371
+ "description": "The location to run the checks at.",
372
+ "multiple": false
373
+ },
374
+ "private-location": {
375
+ "name": "private-location",
376
+ "type": "option",
377
+ "description": "The private location to run checks at.",
378
+ "multiple": false,
379
+ "exclusive": [
380
+ "location"
381
+ ]
382
+ },
383
+ "tags": {
384
+ "name": "tags",
385
+ "type": "option",
386
+ "char": "t",
387
+ "description": "Filter the checks to be run using a comma separated list of tags. Checks will only be run if they contain all of the specified tags. Multiple --tags flags can be passed, in which case checks will be run if they match any of the --tags filters. F.ex. `--tags production,webapp --tags production,backend` will run checks with tags (production AND webapp) OR (production AND backend).",
388
+ "required": false,
389
+ "multiple": true
390
+ },
391
+ "config": {
392
+ "name": "config",
393
+ "type": "option",
394
+ "char": "c",
395
+ "description": "The Checkly CLI config filename.",
396
+ "multiple": false
397
+ },
398
+ "timeout": {
399
+ "name": "timeout",
400
+ "type": "option",
401
+ "description": "A timeout (in seconds) to wait for checks to complete.",
402
+ "multiple": false,
403
+ "default": 600
404
+ },
405
+ "verbose": {
406
+ "name": "verbose",
407
+ "type": "boolean",
408
+ "char": "v",
409
+ "description": "Always show the full logs of the checks.",
410
+ "allowNo": true
411
+ },
412
+ "fail-on-no-matching": {
413
+ "name": "fail-on-no-matching",
414
+ "type": "boolean",
415
+ "description": "Exit with a failing status code when there are no matching tests.",
416
+ "allowNo": false
417
+ },
418
+ "reporter": {
419
+ "name": "reporter",
420
+ "type": "option",
421
+ "char": "r",
422
+ "description": "A list of custom reporters for the test output.",
423
+ "multiple": false,
424
+ "options": [
425
+ "list",
426
+ "dot",
427
+ "ci",
428
+ "github",
429
+ "json"
430
+ ]
431
+ },
432
+ "env": {
433
+ "name": "env",
434
+ "type": "option",
435
+ "char": "e",
436
+ "description": "Env vars to be passed to the check run.",
437
+ "multiple": true,
438
+ "exclusive": [
439
+ "env-file"
440
+ ],
441
+ "default": []
442
+ },
443
+ "env-file": {
444
+ "name": "env-file",
445
+ "type": "option",
446
+ "description": "dotenv file path to be passed. For example --env-file=\"./.env\"",
447
+ "multiple": false,
448
+ "exclusive": [
449
+ "env"
450
+ ]
451
+ },
452
+ "record": {
453
+ "name": "record",
454
+ "type": "boolean",
455
+ "description": "Record check results in Checkly as a test session with full logs, traces and videos.",
456
+ "allowNo": false
457
+ },
458
+ "test-session-name": {
459
+ "name": "test-session-name",
460
+ "type": "option",
461
+ "char": "n",
462
+ "description": "A name to use when storing results in Checkly with --record.",
463
+ "multiple": false
464
+ },
465
+ "retries": {
466
+ "name": "retries",
467
+ "type": "option",
468
+ "description": "[default: 0, max: 3] How many times to retry a check run.",
469
+ "multiple": false
470
+ }
471
+ },
472
+ "args": {},
473
+ "coreCommand": true
474
+ },
475
+ "whoami": {
476
+ "id": "whoami",
477
+ "description": "See your currently logged in account and user.",
478
+ "strict": true,
479
+ "pluginName": "checkly",
480
+ "pluginAlias": "checkly",
481
+ "pluginType": "core",
482
+ "hidden": false,
483
+ "aliases": [],
484
+ "flags": {},
485
+ "args": {}
486
+ },
487
+ "env:add": {
488
+ "id": "env:add",
489
+ "description": "Add environment variable via \"checkly env add <key> <value>\".",
490
+ "strict": true,
491
+ "pluginName": "checkly",
492
+ "pluginAlias": "checkly",
493
+ "pluginType": "core",
494
+ "hidden": false,
495
+ "aliases": [],
496
+ "flags": {
497
+ "locked": {
498
+ "name": "locked",
499
+ "type": "boolean",
500
+ "char": "l",
501
+ "description": "Indicate that the environment variable will be locked.",
502
+ "allowNo": false
503
+ },
504
+ "secret": {
505
+ "name": "secret",
506
+ "type": "boolean",
507
+ "char": "s",
508
+ "description": "Indicate that the environment variable will be secret.",
509
+ "allowNo": false,
510
+ "exclusive": [
511
+ "locked"
512
+ ]
513
+ }
514
+ },
515
+ "args": {
516
+ "key": {
517
+ "name": "key",
518
+ "description": "Environment variable key.",
519
+ "required": true
520
+ },
521
+ "value": {
522
+ "name": "value",
523
+ "description": "Environment variable value.",
524
+ "required": false
525
+ }
526
+ }
527
+ },
528
+ "env:ls": {
529
+ "id": "env:ls",
530
+ "description": "List all Checkly environment variables via \"checkly env ls\".",
531
+ "strict": true,
532
+ "pluginName": "checkly",
533
+ "pluginAlias": "checkly",
534
+ "pluginType": "core",
535
+ "hidden": false,
536
+ "aliases": [],
537
+ "flags": {},
538
+ "args": {}
539
+ },
540
+ "env:pull": {
541
+ "id": "env:pull",
542
+ "description": "Pull Checkly environment variables via \"checkly env pull <filename>\".",
543
+ "strict": true,
544
+ "pluginName": "checkly",
545
+ "pluginAlias": "checkly",
546
+ "pluginType": "core",
547
+ "hidden": false,
548
+ "aliases": [],
549
+ "flags": {
550
+ "force": {
551
+ "name": "force",
552
+ "type": "boolean",
553
+ "char": "f",
554
+ "description": "Force to overwrite existing file.",
555
+ "allowNo": false
556
+ }
557
+ },
558
+ "args": {
559
+ "filename": {
560
+ "name": "filename",
561
+ "description": "Filename of the generated file.",
562
+ "required": false,
563
+ "default": ".env"
564
+ }
565
+ }
566
+ },
567
+ "env:rm": {
568
+ "id": "env:rm",
569
+ "description": "Remove environment variable via \"checkly env rm <key>\".",
570
+ "strict": true,
571
+ "pluginName": "checkly",
572
+ "pluginAlias": "checkly",
573
+ "pluginType": "core",
574
+ "hidden": false,
575
+ "aliases": [],
576
+ "flags": {
577
+ "force": {
578
+ "name": "force",
579
+ "type": "boolean",
580
+ "char": "f",
581
+ "description": "Force to skip the confirmation prompt.",
582
+ "allowNo": false
583
+ }
584
+ },
585
+ "args": {
586
+ "key": {
587
+ "name": "key",
588
+ "description": "Environment variable key to remove.",
589
+ "required": true
590
+ }
591
+ }
592
+ },
593
+ "env:update": {
594
+ "id": "env:update",
595
+ "description": "Update environment variable via \"checkly env update <key> <value>\".",
596
+ "strict": true,
597
+ "pluginName": "checkly",
598
+ "pluginAlias": "checkly",
599
+ "pluginType": "core",
600
+ "hidden": false,
601
+ "aliases": [],
602
+ "flags": {
603
+ "locked": {
604
+ "name": "locked",
605
+ "type": "boolean",
606
+ "char": "l",
607
+ "description": "Indicate if environment variable is locked.",
608
+ "allowNo": false
609
+ },
610
+ "secret": {
611
+ "name": "secret",
612
+ "type": "boolean",
613
+ "char": "s",
614
+ "description": "Indicate if environment variable is secret.",
615
+ "allowNo": false,
616
+ "exclusive": [
617
+ "locked"
618
+ ]
619
+ }
620
+ },
621
+ "args": {
622
+ "key": {
623
+ "name": "key",
624
+ "description": "Environment variable key.",
625
+ "required": true
626
+ },
627
+ "value": {
628
+ "name": "value",
629
+ "description": "Environment variable value.",
630
+ "required": false
631
+ }
632
+ }
633
+ }
634
+ }
635
+ }