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.
- package/README.md +102 -0
- package/bin/run +5 -0
- package/bin/run.cmd +3 -0
- package/constructs.d.ts +1 -0
- package/constructs.js +2 -0
- package/dist/auth/index.d.ts +15 -0
- package/dist/auth/index.js +262 -0
- package/dist/auth/index.js.map +1 -0
- package/dist/commands/authCommand.d.ts +5 -0
- package/dist/commands/authCommand.js +37 -0
- package/dist/commands/authCommand.js.map +1 -0
- package/dist/commands/baseCommand.d.ts +13 -0
- package/dist/commands/baseCommand.js +48 -0
- package/dist/commands/baseCommand.js.map +1 -0
- package/dist/commands/deploy.d.ts +18 -0
- package/dist/commands/deploy.js +289 -0
- package/dist/commands/deploy.js.map +1 -0
- package/dist/commands/destroy.d.ts +10 -0
- package/dist/commands/destroy.js +84 -0
- package/dist/commands/destroy.js.map +1 -0
- package/dist/commands/env/add.d.ts +14 -0
- package/dist/commands/env/add.js +85 -0
- package/dist/commands/env/add.js.map +1 -0
- package/dist/commands/env/ls.d.ts +6 -0
- package/dist/commands/env/ls.js +44 -0
- package/dist/commands/env/ls.js.map +1 -0
- package/dist/commands/env/pull.d.ts +12 -0
- package/dist/commands/env/pull.js +99 -0
- package/dist/commands/env/pull.js.map +1 -0
- package/dist/commands/env/rm.d.ts +12 -0
- package/dist/commands/env/rm.js +82 -0
- package/dist/commands/env/rm.js.map +1 -0
- package/dist/commands/env/update.d.ts +14 -0
- package/dist/commands/env/update.js +88 -0
- package/dist/commands/env/update.js.map +1 -0
- package/dist/commands/help.d.ts +6 -0
- package/dist/commands/help.js +17 -0
- package/dist/commands/help.js.map +1 -0
- package/dist/commands/login.d.ts +13 -0
- package/dist/commands/login.js +134 -0
- package/dist/commands/login.js.map +1 -0
- package/dist/commands/logout.d.ts +9 -0
- package/dist/commands/logout.js +43 -0
- package/dist/commands/logout.js.map +1 -0
- package/dist/commands/runtimes.d.ts +6 -0
- package/dist/commands/runtimes.js +49 -0
- package/dist/commands/runtimes.js.map +1 -0
- package/dist/commands/switch.d.ts +9 -0
- package/dist/commands/switch.js +81 -0
- package/dist/commands/switch.js.map +1 -0
- package/dist/commands/sync-playwright.d.ts +10 -0
- package/dist/commands/sync-playwright.js +98 -0
- package/dist/commands/sync-playwright.js.map +1 -0
- package/dist/commands/test.d.ts +45 -0
- package/dist/commands/test.js +366 -0
- package/dist/commands/test.js.map +1 -0
- package/dist/commands/trigger.d.ts +37 -0
- package/dist/commands/trigger.js +242 -0
- package/dist/commands/trigger.js.map +1 -0
- package/dist/commands/whoami.d.ts +6 -0
- package/dist/commands/whoami.js +42 -0
- package/dist/commands/whoami.js.map +1 -0
- package/dist/config.d.ts +31 -0
- package/dist/config.js +8 -0
- package/dist/config.js.map +1 -0
- package/dist/constants.d.ts +7 -0
- package/dist/constants.js +10 -0
- package/dist/constants.js.map +1 -0
- package/dist/constructs/alert-channel-subscription.d.ts +44 -0
- package/dist/constructs/alert-channel-subscription.js +39 -0
- package/dist/constructs/alert-channel-subscription.js.map +1 -0
- package/dist/constructs/alert-channel.d.ts +53 -0
- package/dist/constructs/alert-channel.js +55 -0
- package/dist/constructs/alert-channel.js.map +1 -0
- package/dist/constructs/alert-escalation-policy.d.ts +34 -0
- package/dist/constructs/alert-escalation-policy.js +47 -0
- package/dist/constructs/alert-escalation-policy.js.map +1 -0
- package/dist/constructs/api-check.d.ts +187 -0
- package/dist/constructs/api-check.js +279 -0
- package/dist/constructs/api-check.js.map +1 -0
- package/dist/constructs/browser-check.d.ts +90 -0
- package/dist/constructs/browser-check.js +151 -0
- package/dist/constructs/browser-check.js.map +1 -0
- package/dist/constructs/check-group.d.ts +162 -0
- package/dist/constructs/check-group.js +208 -0
- package/dist/constructs/check-group.js.map +1 -0
- package/dist/constructs/check.d.ts +144 -0
- package/dist/constructs/check.js +133 -0
- package/dist/constructs/check.js.map +1 -0
- package/dist/constructs/construct.d.ts +17 -0
- package/dist/constructs/construct.js +22 -0
- package/dist/constructs/construct.js.map +1 -0
- package/dist/constructs/dashboard.d.ts +138 -0
- package/dist/constructs/dashboard.js +126 -0
- package/dist/constructs/dashboard.js.map +1 -0
- package/dist/constructs/email-alert-channel.d.ts +26 -0
- package/dist/constructs/email-alert-channel.js +37 -0
- package/dist/constructs/email-alert-channel.js.map +1 -0
- package/dist/constructs/environment-variable.d.ts +2 -0
- package/dist/constructs/environment-variable.js +3 -0
- package/dist/constructs/environment-variable.js.map +1 -0
- package/dist/constructs/frequency.d.ts +20 -0
- package/dist/constructs/frequency.js +26 -0
- package/dist/constructs/frequency.js.map +1 -0
- package/dist/constructs/heartbeat-check.d.ts +43 -0
- package/dist/constructs/heartbeat-check.js +61 -0
- package/dist/constructs/heartbeat-check.js.map +1 -0
- package/dist/constructs/http-header.d.ts +2 -0
- package/dist/constructs/http-header.js +3 -0
- package/dist/constructs/http-header.js.map +1 -0
- package/dist/constructs/index.d.ts +27 -0
- package/dist/constructs/index.js +44 -0
- package/dist/constructs/index.js.map +1 -0
- package/dist/constructs/key-value-pair.d.ts +6 -0
- package/dist/constructs/key-value-pair.js +3 -0
- package/dist/constructs/key-value-pair.js.map +1 -0
- package/dist/constructs/maintenance-window.d.ts +61 -0
- package/dist/constructs/maintenance-window.js +47 -0
- package/dist/constructs/maintenance-window.js.map +1 -0
- package/dist/constructs/multi-step-check.d.ts +65 -0
- package/dist/constructs/multi-step-check.js +153 -0
- package/dist/constructs/multi-step-check.js.map +1 -0
- package/dist/constructs/opsgenie-alert-channel.d.ts +45 -0
- package/dist/constructs/opsgenie-alert-channel.js +44 -0
- package/dist/constructs/opsgenie-alert-channel.js.map +1 -0
- package/dist/constructs/pagerduty-alert-channel.d.ts +39 -0
- package/dist/constructs/pagerduty-alert-channel.js +42 -0
- package/dist/constructs/pagerduty-alert-channel.js.map +1 -0
- package/dist/constructs/phone-call-alert-channel.d.ts +34 -0
- package/dist/constructs/phone-call-alert-channel.js +42 -0
- package/dist/constructs/phone-call-alert-channel.js.map +1 -0
- package/dist/constructs/playwright-config.d.ts +52 -0
- package/dist/constructs/playwright-config.js +3 -0
- package/dist/constructs/playwright-config.js.map +1 -0
- package/dist/constructs/private-location-check-assignment.d.ts +29 -0
- package/dist/constructs/private-location-check-assignment.js +35 -0
- package/dist/constructs/private-location-check-assignment.js.map +1 -0
- package/dist/constructs/private-location-group-assignment.d.ts +29 -0
- package/dist/constructs/private-location-group-assignment.js +35 -0
- package/dist/constructs/private-location-group-assignment.js.map +1 -0
- package/dist/constructs/private-location.d.ts +51 -0
- package/dist/constructs/private-location.js +61 -0
- package/dist/constructs/private-location.js.map +1 -0
- package/dist/constructs/project.d.ts +66 -0
- package/dist/constructs/project.js +155 -0
- package/dist/constructs/project.js.map +1 -0
- package/dist/constructs/query-param.d.ts +2 -0
- package/dist/constructs/query-param.js +3 -0
- package/dist/constructs/query-param.js.map +1 -0
- package/dist/constructs/ref.d.ts +5 -0
- package/dist/constructs/ref.js +13 -0
- package/dist/constructs/ref.js.map +1 -0
- package/dist/constructs/retry-strategy.d.ts +50 -0
- package/dist/constructs/retry-strategy.js +51 -0
- package/dist/constructs/retry-strategy.js.map +1 -0
- package/dist/constructs/slack-alert-channel.d.ts +26 -0
- package/dist/constructs/slack-alert-channel.js +40 -0
- package/dist/constructs/slack-alert-channel.js.map +1 -0
- package/dist/constructs/sms-alert-channel.d.ts +32 -0
- package/dist/constructs/sms-alert-channel.js +40 -0
- package/dist/constructs/sms-alert-channel.js.map +1 -0
- package/dist/constructs/validator-error.d.ts +2 -0
- package/dist/constructs/validator-error.js +7 -0
- package/dist/constructs/validator-error.js.map +1 -0
- package/dist/constructs/webhook-alert-channel.d.ts +67 -0
- package/dist/constructs/webhook-alert-channel.js +52 -0
- package/dist/constructs/webhook-alert-channel.js.map +1 -0
- package/dist/help/examples.d.ts +6 -0
- package/dist/help/examples.js +22 -0
- package/dist/help/examples.js.map +1 -0
- package/dist/help/help-extension.d.ts +7 -0
- package/dist/help/help-extension.js +59 -0
- package/dist/help/help-extension.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +30 -0
- package/dist/index.js.map +1 -0
- package/dist/messages/common-messages.d.ts +5 -0
- package/dist/messages/common-messages.js +9 -0
- package/dist/messages/common-messages.js.map +1 -0
- package/dist/playwright/playwright-config-loader.d.ts +1 -0
- package/dist/playwright/playwright-config-loader.js +26 -0
- package/dist/playwright/playwright-config-loader.js.map +1 -0
- package/dist/playwright/playwright-config-template.d.ts +8 -0
- package/dist/playwright/playwright-config-template.js +78 -0
- package/dist/playwright/playwright-config-template.js.map +1 -0
- package/dist/reporters/abstract-list.d.ts +41 -0
- package/dist/reporters/abstract-list.js +171 -0
- package/dist/reporters/abstract-list.js.map +1 -0
- package/dist/reporters/ci.d.ts +12 -0
- package/dist/reporters/ci.js +34 -0
- package/dist/reporters/ci.js.map +1 -0
- package/dist/reporters/dot.d.ts +10 -0
- package/dist/reporters/dot.js +29 -0
- package/dist/reporters/dot.js.map +1 -0
- package/dist/reporters/github.d.ts +32 -0
- package/dist/reporters/github.js +119 -0
- package/dist/reporters/github.js.map +1 -0
- package/dist/reporters/json.d.ts +26 -0
- package/dist/reporters/json.js +101 -0
- package/dist/reporters/json.js.map +1 -0
- package/dist/reporters/list.d.ts +15 -0
- package/dist/reporters/list.js +85 -0
- package/dist/reporters/list.js.map +1 -0
- package/dist/reporters/reporter.d.ts +16 -0
- package/dist/reporters/reporter.js +29 -0
- package/dist/reporters/reporter.js.map +1 -0
- package/dist/reporters/util.d.ts +18 -0
- package/dist/reporters/util.js +325 -0
- package/dist/reporters/util.js.map +1 -0
- package/dist/rest/accounts.d.ts +12 -0
- package/dist/rest/accounts.js +15 -0
- package/dist/rest/accounts.js.map +1 -0
- package/dist/rest/api.d.ts +33 -0
- package/dist/rest/api.js +98 -0
- package/dist/rest/api.js.map +1 -0
- package/dist/rest/assets.d.ts +13 -0
- package/dist/rest/assets.js +30 -0
- package/dist/rest/assets.js.map +1 -0
- package/dist/rest/checkly-storage.d.ts +12 -0
- package/dist/rest/checkly-storage.js +15 -0
- package/dist/rest/checkly-storage.js.map +1 -0
- package/dist/rest/environment-variables.d.ts +17 -0
- package/dist/rest/environment-variables.js +25 -0
- package/dist/rest/environment-variables.js.map +1 -0
- package/dist/rest/heartbeat-checks.d.ts +11 -0
- package/dist/rest/heartbeat-checks.js +17 -0
- package/dist/rest/heartbeat-checks.js.map +1 -0
- package/dist/rest/locations.d.ts +11 -0
- package/dist/rest/locations.js +12 -0
- package/dist/rest/locations.js.map +1 -0
- package/dist/rest/private-locations.d.ts +10 -0
- package/dist/rest/private-locations.js +12 -0
- package/dist/rest/private-locations.js.map +1 -0
- package/dist/rest/projects.d.ts +46 -0
- package/dist/rest/projects.js +25 -0
- package/dist/rest/projects.js.map +1 -0
- package/dist/rest/runtimes.d.ts +16 -0
- package/dist/rest/runtimes.js +15 -0
- package/dist/rest/runtimes.js.map +1 -0
- package/dist/rest/test-sessions.d.ts +59 -0
- package/dist/rest/test-sessions.js +24 -0
- package/dist/rest/test-sessions.js.map +1 -0
- package/dist/rest/users.d.ts +12 -0
- package/dist/rest/users.js +12 -0
- package/dist/rest/users.js.map +1 -0
- package/dist/rest/util.d.ts +4 -0
- package/dist/rest/util.js +17 -0
- package/dist/rest/util.js.map +1 -0
- package/dist/services/abstract-check-runner.d.ts +60 -0
- package/dist/services/abstract-check-runner.js +225 -0
- package/dist/services/abstract-check-runner.js.map +1 -0
- package/dist/services/check-parser/collector.d.ts +33 -0
- package/dist/services/check-parser/collector.js +48 -0
- package/dist/services/check-parser/collector.js.map +1 -0
- package/dist/services/check-parser/errors.d.ts +8 -0
- package/dist/services/check-parser/errors.js +45 -0
- package/dist/services/check-parser/errors.js.map +1 -0
- package/dist/services/check-parser/package-files/index.d.ts +1 -0
- package/dist/services/check-parser/package-files/index.js +6 -0
- package/dist/services/check-parser/package-files/index.js.map +1 -0
- package/dist/services/check-parser/package-files/jsconfig-json-file.d.ts +17 -0
- package/dist/services/check-parser/package-files/jsconfig-json-file.js +46 -0
- package/dist/services/check-parser/package-files/jsconfig-json-file.js.map +1 -0
- package/dist/services/check-parser/package-files/json-source-file.d.ts +10 -0
- package/dist/services/check-parser/package-files/json-source-file.js +38 -0
- package/dist/services/check-parser/package-files/json-source-file.js.map +1 -0
- package/dist/services/check-parser/package-files/loader.d.ts +7 -0
- package/dist/services/check-parser/package-files/loader.js +19 -0
- package/dist/services/check-parser/package-files/loader.js.map +1 -0
- package/dist/services/check-parser/package-files/package-json-file.d.ts +20 -0
- package/dist/services/check-parser/package-files/package-json-file.js +48 -0
- package/dist/services/check-parser/package-files/package-json-file.js.map +1 -0
- package/dist/services/check-parser/package-files/paths.d.ts +80 -0
- package/dist/services/check-parser/package-files/paths.js +177 -0
- package/dist/services/check-parser/package-files/paths.js.map +1 -0
- package/dist/services/check-parser/package-files/resolver.d.ts +70 -0
- package/dist/services/check-parser/package-files/resolver.js +290 -0
- package/dist/services/check-parser/package-files/resolver.js.map +1 -0
- package/dist/services/check-parser/package-files/source-file.d.ts +15 -0
- package/dist/services/check-parser/package-files/source-file.js +54 -0
- package/dist/services/check-parser/package-files/source-file.js.map +1 -0
- package/dist/services/check-parser/package-files/tsconfig-json-file.d.ts +68 -0
- package/dist/services/check-parser/package-files/tsconfig-json-file.js +127 -0
- package/dist/services/check-parser/package-files/tsconfig-json-file.js.map +1 -0
- package/dist/services/check-parser/parser.d.ts +32 -0
- package/dist/services/check-parser/parser.js +313 -0
- package/dist/services/check-parser/parser.js.map +1 -0
- package/dist/services/checkly-config-loader.d.ts +72 -0
- package/dist/services/checkly-config-loader.js +103 -0
- package/dist/services/checkly-config-loader.js.map +1 -0
- package/dist/services/config.d.ts +28 -0
- package/dist/services/config.js +99 -0
- package/dist/services/config.js.map +1 -0
- package/dist/services/project-parser.d.ts +21 -0
- package/dist/services/project-parser.js +192 -0
- package/dist/services/project-parser.js.map +1 -0
- package/dist/services/snapshot-service.d.ts +13 -0
- package/dist/services/snapshot-service.js +85 -0
- package/dist/services/snapshot-service.js.map +1 -0
- package/dist/services/socket-client.d.ts +4 -0
- package/dist/services/socket-client.js +88 -0
- package/dist/services/socket-client.js.map +1 -0
- package/dist/services/test-filters.d.ts +3 -0
- package/dist/services/test-filters.js +27 -0
- package/dist/services/test-filters.js.map +1 -0
- package/dist/services/test-runner.d.ts +24 -0
- package/dist/services/test-runner.js +91 -0
- package/dist/services/test-runner.js.map +1 -0
- package/dist/services/trigger-runner.d.ts +29 -0
- package/dist/services/trigger-runner.js +59 -0
- package/dist/services/trigger-runner.js.map +1 -0
- package/dist/services/util.d.ts +32 -0
- package/dist/services/util.js +244 -0
- package/dist/services/util.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/oclif.manifest.json +635 -0
- 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
|
+
}
|