checkly 0.0.0-canary.7166ed8
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/LICENSE +201 -0
- package/README.md +117 -0
- package/assets/runtimes/snapshots/20260130/runtimes.json +349 -0
- package/bin/run +8 -0
- package/bin/run.cmd +3 -0
- package/constructs.d.ts +1 -0
- package/constructs.js +2 -0
- package/dist/ai-context/checkly.rules.md +916 -0
- package/dist/ai-context/context.d.ts +150 -0
- package/dist/ai-context/context.js +263 -0
- package/dist/ai-context/context.js.map +1 -0
- package/dist/ai-context/onboarding-boilerplate/__checks__/api.check.ts +22 -0
- package/dist/ai-context/onboarding-boilerplate/__checks__/heartbeat.check.ts +16 -0
- package/dist/ai-context/onboarding-boilerplate/__checks__/homepage.spec.ts +12 -0
- package/dist/ai-context/onboarding-boilerplate/__checks__/url.check.ts +18 -0
- package/dist/ai-context/onboarding-boilerplate/checkly-config-template.ts +50 -0
- package/dist/ai-context/onboarding-prompts/base.md +1 -0
- package/dist/ai-context/onboarding-prompts/playwright.md +1 -0
- package/dist/ai-context/public-skills/checkly/README.md +43 -0
- package/dist/ai-context/public-skills/checkly/SKILL.md +112 -0
- package/dist/ai-context/skills-command/references/communicate-incidents.md +79 -0
- package/dist/ai-context/skills-command/references/communicate.md +33 -0
- package/dist/ai-context/skills-command/references/configure-agentic-checks.md +65 -0
- package/dist/ai-context/skills-command/references/configure-alert-channels.md +54 -0
- package/dist/ai-context/skills-command/references/configure-api-checks.md +73 -0
- package/dist/ai-context/skills-command/references/configure-browser-checks.md +36 -0
- package/dist/ai-context/skills-command/references/configure-check-groups.md +16 -0
- package/dist/ai-context/skills-command/references/configure-dns-monitors.md +39 -0
- package/dist/ai-context/skills-command/references/configure-environment.md +92 -0
- package/dist/ai-context/skills-command/references/configure-heartbeat-monitors.md +28 -0
- package/dist/ai-context/skills-command/references/configure-icmp-monitors.md +42 -0
- package/dist/ai-context/skills-command/references/configure-multistep-checks.md +34 -0
- package/dist/ai-context/skills-command/references/configure-playwright-checks.md +70 -0
- package/dist/ai-context/skills-command/references/configure-supporting-constructs.md +120 -0
- package/dist/ai-context/skills-command/references/configure-tcp-monitors.md +41 -0
- package/dist/ai-context/skills-command/references/configure-url-monitors.md +40 -0
- package/dist/ai-context/skills-command/references/configure.md +152 -0
- package/dist/ai-context/skills-command/references/initialize.md +134 -0
- package/dist/ai-context/skills-command/references/investigate-checks.md +156 -0
- package/dist/ai-context/skills-command/references/investigate-test-sessions.md +165 -0
- package/dist/ai-context/skills-command/references/investigate.md +15 -0
- package/dist/ai-context/skills-command/references/manage-account-members.md +82 -0
- package/dist/ai-context/skills-command/references/manage-plan.md +49 -0
- package/dist/ai-context/skills-command/references/manage.md +53 -0
- package/dist/auth/index.d.ts +15 -0
- package/dist/auth/index.js +226 -0
- package/dist/auth/index.js.map +1 -0
- package/dist/commands/account/plan.d.ts +18 -0
- package/dist/commands/account/plan.js +113 -0
- package/dist/commands/account/plan.js.map +1 -0
- package/dist/commands/alert-channels/get.d.ts +14 -0
- package/dist/commands/alert-channels/get.js +50 -0
- package/dist/commands/alert-channels/get.js.map +1 -0
- package/dist/commands/alert-channels/list.d.ts +13 -0
- package/dist/commands/alert-channels/list.js +64 -0
- package/dist/commands/alert-channels/list.js.map +1 -0
- package/dist/commands/alert-channels/logs.d.ts +19 -0
- package/dist/commands/alert-channels/logs.js +91 -0
- package/dist/commands/alert-channels/logs.js.map +1 -0
- package/dist/commands/api.d.ts +23 -0
- package/dist/commands/api.js +205 -0
- package/dist/commands/api.js.map +1 -0
- package/dist/commands/assets/download.d.ts +19 -0
- package/dist/commands/assets/download.js +170 -0
- package/dist/commands/assets/download.js.map +1 -0
- package/dist/commands/assets/list.d.ts +17 -0
- package/dist/commands/assets/list.js +107 -0
- package/dist/commands/assets/list.js.map +1 -0
- package/dist/commands/authCommand.d.ts +14 -0
- package/dist/commands/authCommand.js +49 -0
- package/dist/commands/authCommand.js.map +1 -0
- package/dist/commands/baseCommand.d.ts +23 -0
- package/dist/commands/baseCommand.js +93 -0
- package/dist/commands/baseCommand.js.map +1 -0
- package/dist/commands/checks/delete.d.ts +15 -0
- package/dist/commands/checks/delete.js +65 -0
- package/dist/commands/checks/delete.js.map +1 -0
- package/dist/commands/checks/get.d.ts +30 -0
- package/dist/commands/checks/get.js +361 -0
- package/dist/commands/checks/get.js.map +1 -0
- package/dist/commands/checks/list.d.ts +18 -0
- package/dist/commands/checks/list.js +124 -0
- package/dist/commands/checks/list.js.map +1 -0
- package/dist/commands/checks/stats.d.ts +22 -0
- package/dist/commands/checks/stats.js +181 -0
- package/dist/commands/checks/stats.js.map +1 -0
- package/dist/commands/debug/parse-file.d.ts +13 -0
- package/dist/commands/debug/parse-file.js +74 -0
- package/dist/commands/debug/parse-file.js.map +1 -0
- package/dist/commands/debug/parse-playwright-config.d.ts +9 -0
- package/dist/commands/debug/parse-playwright-config.js +27 -0
- package/dist/commands/debug/parse-playwright-config.js.map +1 -0
- package/dist/commands/debug/parse-project.d.ts +43 -0
- package/dist/commands/debug/parse-project.js +187 -0
- package/dist/commands/debug/parse-project.js.map +1 -0
- package/dist/commands/deploy.d.ts +20 -0
- package/dist/commands/deploy.js +341 -0
- package/dist/commands/deploy.js.map +1 -0
- package/dist/commands/destroy.d.ts +12 -0
- package/dist/commands/destroy.js +76 -0
- package/dist/commands/destroy.js.map +1 -0
- package/dist/commands/env/add.d.ts +14 -0
- package/dist/commands/env/add.js +54 -0
- package/dist/commands/env/add.js.map +1 -0
- package/dist/commands/env/ls.d.ts +8 -0
- package/dist/commands/env/ls.js +20 -0
- package/dist/commands/env/ls.js.map +1 -0
- package/dist/commands/env/pull.d.ts +14 -0
- package/dist/commands/env/pull.js +72 -0
- package/dist/commands/env/pull.js.map +1 -0
- package/dist/commands/env/rm.d.ts +13 -0
- package/dist/commands/env/rm.js +46 -0
- package/dist/commands/env/rm.js.map +1 -0
- package/dist/commands/env/update.d.ts +15 -0
- package/dist/commands/env/update.js +55 -0
- package/dist/commands/env/update.js.map +1 -0
- package/dist/commands/help.d.ts +6 -0
- package/dist/commands/help.js +11 -0
- package/dist/commands/help.js.map +1 -0
- package/dist/commands/import/apply.d.ts +14 -0
- package/dist/commands/import/apply.js +125 -0
- package/dist/commands/import/apply.js.map +1 -0
- package/dist/commands/import/cancel.d.ts +12 -0
- package/dist/commands/import/cancel.js +91 -0
- package/dist/commands/import/cancel.js.map +1 -0
- package/dist/commands/import/commit.d.ts +14 -0
- package/dist/commands/import/commit.js +109 -0
- package/dist/commands/import/commit.js.map +1 -0
- package/dist/commands/import/plan.d.ts +23 -0
- package/dist/commands/import/plan.js +1273 -0
- package/dist/commands/import/plan.js.map +1 -0
- package/dist/commands/incidents/create.d.ts +17 -0
- package/dist/commands/incidents/create.js +102 -0
- package/dist/commands/incidents/create.js.map +1 -0
- package/dist/commands/incidents/list.d.ts +14 -0
- package/dist/commands/incidents/list.js +80 -0
- package/dist/commands/incidents/list.js.map +1 -0
- package/dist/commands/incidents/resolve.d.ts +16 -0
- package/dist/commands/incidents/resolve.js +78 -0
- package/dist/commands/incidents/resolve.js.map +1 -0
- package/dist/commands/incidents/update.d.ts +18 -0
- package/dist/commands/incidents/update.js +105 -0
- package/dist/commands/incidents/update.js.map +1 -0
- package/dist/commands/init.d.ts +23 -0
- package/dist/commands/init.js +273 -0
- package/dist/commands/init.js.map +1 -0
- package/dist/commands/login.d.ts +14 -0
- package/dist/commands/login.js +96 -0
- package/dist/commands/login.js.map +1 -0
- package/dist/commands/logout.d.ts +10 -0
- package/dist/commands/logout.js +38 -0
- package/dist/commands/logout.js.map +1 -0
- package/dist/commands/members/delete.d.ts +18 -0
- package/dist/commands/members/delete.js +73 -0
- package/dist/commands/members/delete.js.map +1 -0
- package/dist/commands/members/update.d.ts +21 -0
- package/dist/commands/members/update.js +104 -0
- package/dist/commands/members/update.js.map +1 -0
- package/dist/commands/members.d.ts +23 -0
- package/dist/commands/members.js +136 -0
- package/dist/commands/members.js.map +1 -0
- package/dist/commands/pw-test.d.ts +34 -0
- package/dist/commands/pw-test.js +378 -0
- package/dist/commands/pw-test.js.map +1 -0
- package/dist/commands/rca/get.d.ts +15 -0
- package/dist/commands/rca/get.js +69 -0
- package/dist/commands/rca/get.js.map +1 -0
- package/dist/commands/rca/run.d.ts +16 -0
- package/dist/commands/rca/run.js +113 -0
- package/dist/commands/rca/run.js.map +1 -0
- package/dist/commands/rules.d.ts +10 -0
- package/dist/commands/rules.js +127 -0
- package/dist/commands/rules.js.map +1 -0
- package/dist/commands/runtimes.d.ts +8 -0
- package/dist/commands/runtimes.js +25 -0
- package/dist/commands/runtimes.js.map +1 -0
- package/dist/commands/skills/index.d.ts +12 -0
- package/dist/commands/skills/index.js +108 -0
- package/dist/commands/skills/index.js.map +1 -0
- package/dist/commands/skills/install.d.ts +23 -0
- package/dist/commands/skills/install.js +203 -0
- package/dist/commands/skills/install.js.map +1 -0
- package/dist/commands/status-pages/get.d.ts +14 -0
- package/dist/commands/status-pages/get.js +48 -0
- package/dist/commands/status-pages/get.js.map +1 -0
- package/dist/commands/status-pages/list.d.ts +14 -0
- package/dist/commands/status-pages/list.js +82 -0
- package/dist/commands/status-pages/list.js.map +1 -0
- package/dist/commands/switch.d.ts +10 -0
- package/dist/commands/switch.js +53 -0
- package/dist/commands/switch.js.map +1 -0
- package/dist/commands/sync-playwright.d.ts +8 -0
- package/dist/commands/sync-playwright.js +53 -0
- package/dist/commands/sync-playwright.js.map +1 -0
- package/dist/commands/test-sessions/get.d.ts +21 -0
- package/dist/commands/test-sessions/get.js +121 -0
- package/dist/commands/test-sessions/get.js.map +1 -0
- package/dist/commands/test-sessions/list.d.ts +22 -0
- package/dist/commands/test-sessions/list.js +190 -0
- package/dist/commands/test-sessions/list.js.map +1 -0
- package/dist/commands/test.d.ts +37 -0
- package/dist/commands/test.js +390 -0
- package/dist/commands/test.js.map +1 -0
- package/dist/commands/trigger.d.ts +40 -0
- package/dist/commands/trigger.js +241 -0
- package/dist/commands/trigger.js.map +1 -0
- package/dist/commands/validate.d.ts +13 -0
- package/dist/commands/validate.js +81 -0
- package/dist/commands/validate.js.map +1 -0
- package/dist/commands/whoami.d.ts +8 -0
- package/dist/commands/whoami.js +22 -0
- package/dist/commands/whoami.js.map +1 -0
- package/dist/config.d.ts +31 -0
- package/dist/config.js +4 -0
- package/dist/config.js.map +1 -0
- package/dist/constants.d.ts +16 -0
- package/dist/constants.js +25 -0
- package/dist/constants.js.map +1 -0
- package/dist/constructs/agentic-check-codegen.d.ts +22 -0
- package/dist/constructs/agentic-check-codegen.js +58 -0
- package/dist/constructs/agentic-check-codegen.js.map +1 -0
- package/dist/constructs/agentic-check.d.ts +130 -0
- package/dist/constructs/agentic-check.js +100 -0
- package/dist/constructs/agentic-check.js.map +1 -0
- package/dist/constructs/alert-channel-codegen.d.ts +37 -0
- package/dist/constructs/alert-channel-codegen.js +96 -0
- package/dist/constructs/alert-channel-codegen.js.map +1 -0
- package/dist/constructs/alert-channel-subscription-codegen.d.ts +11 -0
- package/dist/constructs/alert-channel-subscription-codegen.js +20 -0
- package/dist/constructs/alert-channel-subscription-codegen.js.map +1 -0
- package/dist/constructs/alert-channel-subscription.d.ts +46 -0
- package/dist/constructs/alert-channel-subscription.js +45 -0
- package/dist/constructs/alert-channel-subscription.js.map +1 -0
- package/dist/constructs/alert-channel.d.ts +130 -0
- package/dist/constructs/alert-channel.js +103 -0
- package/dist/constructs/alert-channel.js.map +1 -0
- package/dist/constructs/alert-escalation-policy-codegen.d.ts +4 -0
- package/dist/constructs/alert-escalation-policy-codegen.js +55 -0
- package/dist/constructs/alert-escalation-policy-codegen.js.map +1 -0
- package/dist/constructs/alert-escalation-policy.d.ts +114 -0
- package/dist/constructs/alert-escalation-policy.js +62 -0
- package/dist/constructs/alert-escalation-policy.js.map +1 -0
- package/dist/constructs/api-assertion-codegen.d.ts +3 -0
- package/dist/constructs/api-assertion-codegen.js +19 -0
- package/dist/constructs/api-assertion-codegen.js.map +1 -0
- package/dist/constructs/api-assertion.d.ts +74 -0
- package/dist/constructs/api-assertion.js +81 -0
- package/dist/constructs/api-assertion.js.map +1 -0
- package/dist/constructs/api-check-bundle.d.ts +58 -0
- package/dist/constructs/api-check-bundle.js +30 -0
- package/dist/constructs/api-check-bundle.js.map +1 -0
- package/dist/constructs/api-check-codegen.d.ts +19 -0
- package/dist/constructs/api-check-codegen.js +83 -0
- package/dist/constructs/api-check-codegen.js.map +1 -0
- package/dist/constructs/api-check.d.ts +193 -0
- package/dist/constructs/api-check.js +219 -0
- package/dist/constructs/api-check.js.map +1 -0
- package/dist/constructs/api-request-codegen.d.ts +4 -0
- package/dist/constructs/api-request-codegen.js +64 -0
- package/dist/constructs/api-request-codegen.js.map +1 -0
- package/dist/constructs/api-request.d.ts +67 -0
- package/dist/constructs/api-request.js +2 -0
- package/dist/constructs/api-request.js.map +1 -0
- package/dist/constructs/browser-check-bundle.d.ts +59 -0
- package/dist/constructs/browser-check-bundle.js +27 -0
- package/dist/constructs/browser-check-bundle.js.map +1 -0
- package/dist/constructs/browser-check-codegen.d.ts +14 -0
- package/dist/constructs/browser-check-codegen.js +44 -0
- package/dist/constructs/browser-check-codegen.js.map +1 -0
- package/dist/constructs/browser-check.d.ts +129 -0
- package/dist/constructs/browser-check.js +169 -0
- package/dist/constructs/browser-check.js.map +1 -0
- package/dist/constructs/check-codegen.d.ts +74 -0
- package/dist/constructs/check-codegen.js +251 -0
- package/dist/constructs/check-codegen.js.map +1 -0
- package/dist/constructs/check-config.d.ts +2 -0
- package/dist/constructs/check-config.js +17 -0
- package/dist/constructs/check-config.js.map +1 -0
- package/dist/constructs/check-group-codegen.d.ts +46 -0
- package/dist/constructs/check-group-codegen.js +268 -0
- package/dist/constructs/check-group-codegen.js.map +1 -0
- package/dist/constructs/check-group-ref.d.ts +20 -0
- package/dist/constructs/check-group-ref.js +46 -0
- package/dist/constructs/check-group-ref.js.map +1 -0
- package/dist/constructs/check-group-v1.d.ts +304 -0
- package/dist/constructs/check-group-v1.js +254 -0
- package/dist/constructs/check-group-v1.js.map +1 -0
- package/dist/constructs/check-group-v2.d.ts +120 -0
- package/dist/constructs/check-group-v2.js +68 -0
- package/dist/constructs/check-group-v2.js.map +1 -0
- package/dist/constructs/check-group.d.ts +4 -0
- package/dist/constructs/check-group.js +5 -0
- package/dist/constructs/check-group.js.map +1 -0
- package/dist/constructs/check.d.ts +336 -0
- package/dist/constructs/check.js +234 -0
- package/dist/constructs/check.js.map +1 -0
- package/dist/constructs/construct-codegen.d.ts +39 -0
- package/dist/constructs/construct-codegen.js +95 -0
- package/dist/constructs/construct-codegen.js.map +1 -0
- package/dist/constructs/construct-diagnostics.d.ts +53 -0
- package/dist/constructs/construct-diagnostics.js +156 -0
- package/dist/constructs/construct-diagnostics.js.map +1 -0
- package/dist/constructs/construct.d.ts +142 -0
- package/dist/constructs/construct.js +120 -0
- package/dist/constructs/construct.js.map +1 -0
- package/dist/constructs/dashboard-bundle.d.ts +11 -0
- package/dist/constructs/dashboard-bundle.js +15 -0
- package/dist/constructs/dashboard-bundle.js.map +1 -0
- package/dist/constructs/dashboard-codegen.d.ts +29 -0
- package/dist/constructs/dashboard-codegen.js +104 -0
- package/dist/constructs/dashboard-codegen.js.map +1 -0
- package/dist/constructs/dashboard.d.ts +226 -0
- package/dist/constructs/dashboard.js +140 -0
- package/dist/constructs/dashboard.js.map +1 -0
- package/dist/constructs/diagnostics.d.ts +59 -0
- package/dist/constructs/diagnostics.js +71 -0
- package/dist/constructs/diagnostics.js.map +1 -0
- package/dist/constructs/dns-assertion-codegen.d.ts +3 -0
- package/dist/constructs/dns-assertion-codegen.js +26 -0
- package/dist/constructs/dns-assertion-codegen.js.map +1 -0
- package/dist/constructs/dns-assertion.d.ts +45 -0
- package/dist/constructs/dns-assertion.js +51 -0
- package/dist/constructs/dns-assertion.js.map +1 -0
- package/dist/constructs/dns-monitor-codegen.d.ts +13 -0
- package/dist/constructs/dns-monitor-codegen.js +34 -0
- package/dist/constructs/dns-monitor-codegen.js.map +1 -0
- package/dist/constructs/dns-monitor.d.ts +87 -0
- package/dist/constructs/dns-monitor.js +55 -0
- package/dist/constructs/dns-monitor.js.map +1 -0
- package/dist/constructs/dns-request-codegen.d.ts +4 -0
- package/dist/constructs/dns-request-codegen.js +28 -0
- package/dist/constructs/dns-request-codegen.js.map +1 -0
- package/dist/constructs/dns-request.d.ts +53 -0
- package/dist/constructs/dns-request.js +2 -0
- package/dist/constructs/dns-request.js.map +1 -0
- package/dist/constructs/email-alert-channel-codegen.d.ts +13 -0
- package/dist/constructs/email-alert-channel-codegen.js +34 -0
- package/dist/constructs/email-alert-channel-codegen.js.map +1 -0
- package/dist/constructs/email-alert-channel.d.ts +27 -0
- package/dist/constructs/email-alert-channel.js +37 -0
- package/dist/constructs/email-alert-channel.js.map +1 -0
- package/dist/constructs/engine.d.ts +40 -0
- package/dist/constructs/engine.js +23 -0
- package/dist/constructs/engine.js.map +1 -0
- package/dist/constructs/environment-variable.d.ts +21 -0
- package/dist/constructs/environment-variable.js +2 -0
- package/dist/constructs/environment-variable.js.map +1 -0
- package/dist/constructs/frequency-codegen.d.ts +8 -0
- package/dist/constructs/frequency-codegen.js +51 -0
- package/dist/constructs/frequency-codegen.js.map +1 -0
- package/dist/constructs/frequency.d.ts +62 -0
- package/dist/constructs/frequency.js +66 -0
- package/dist/constructs/frequency.js.map +1 -0
- package/dist/constructs/heartbeat-monitor-codegen.d.ts +11 -0
- package/dist/constructs/heartbeat-monitor-codegen.js +29 -0
- package/dist/constructs/heartbeat-monitor-codegen.js.map +1 -0
- package/dist/constructs/heartbeat-monitor.d.ts +40 -0
- package/dist/constructs/heartbeat-monitor.js +56 -0
- package/dist/constructs/heartbeat-monitor.js.map +1 -0
- package/dist/constructs/http-header.d.ts +18 -0
- package/dist/constructs/http-header.js +2 -0
- package/dist/constructs/http-header.js.map +1 -0
- package/dist/constructs/http-request.d.ts +2 -0
- package/dist/constructs/http-request.js +2 -0
- package/dist/constructs/http-request.js.map +1 -0
- package/dist/constructs/icmp-assertion-codegen.d.ts +3 -0
- package/dist/constructs/icmp-assertion-codegen.js +18 -0
- package/dist/constructs/icmp-assertion-codegen.js.map +1 -0
- package/dist/constructs/icmp-assertion.d.ts +56 -0
- package/dist/constructs/icmp-assertion.js +57 -0
- package/dist/constructs/icmp-assertion.js.map +1 -0
- package/dist/constructs/icmp-monitor-codegen.d.ts +13 -0
- package/dist/constructs/icmp-monitor-codegen.js +34 -0
- package/dist/constructs/icmp-monitor-codegen.js.map +1 -0
- package/dist/constructs/icmp-monitor.d.ts +83 -0
- package/dist/constructs/icmp-monitor.js +43 -0
- package/dist/constructs/icmp-monitor.js.map +1 -0
- package/dist/constructs/icmp-request-codegen.d.ts +4 -0
- package/dist/constructs/icmp-request-codegen.js +24 -0
- package/dist/constructs/icmp-request-codegen.js.map +1 -0
- package/dist/constructs/icmp-request.d.ts +37 -0
- package/dist/constructs/icmp-request.js +2 -0
- package/dist/constructs/icmp-request.js.map +1 -0
- package/dist/constructs/incident.d.ts +15 -0
- package/dist/constructs/incident.js +2 -0
- package/dist/constructs/incident.js.map +1 -0
- package/dist/constructs/incidentio-alert-channel-codegen.d.ts +13 -0
- package/dist/constructs/incidentio-alert-channel-codegen.js +85 -0
- package/dist/constructs/incidentio-alert-channel-codegen.js.map +1 -0
- package/dist/constructs/incidentio-alert-channel.d.ts +44 -0
- package/dist/constructs/incidentio-alert-channel.js +67 -0
- package/dist/constructs/incidentio-alert-channel.js.map +1 -0
- package/dist/constructs/index.d.ts +54 -0
- package/dist/constructs/index.js +55 -0
- package/dist/constructs/index.js.map +1 -0
- package/dist/constructs/internal/assertion-codegen.d.ts +11 -0
- package/dist/constructs/internal/assertion-codegen.js +144 -0
- package/dist/constructs/internal/assertion-codegen.js.map +1 -0
- package/dist/constructs/internal/assertion.d.ts +40 -0
- package/dist/constructs/internal/assertion.js +93 -0
- package/dist/constructs/internal/assertion.js.map +1 -0
- package/dist/constructs/internal/codegen/codegen.d.ts +9 -0
- package/dist/constructs/internal/codegen/codegen.js +16 -0
- package/dist/constructs/internal/codegen/codegen.js.map +1 -0
- package/dist/constructs/internal/codegen/context.d.ts +62 -0
- package/dist/constructs/internal/codegen/context.js +413 -0
- package/dist/constructs/internal/codegen/context.js.map +1 -0
- package/dist/constructs/internal/codegen/index.d.ts +4 -0
- package/dist/constructs/internal/codegen/index.js +5 -0
- package/dist/constructs/internal/codegen/index.js.map +1 -0
- package/dist/constructs/internal/codegen/safety.d.ts +2 -0
- package/dist/constructs/internal/codegen/safety.js +3 -0
- package/dist/constructs/internal/codegen/safety.js.map +1 -0
- package/dist/constructs/internal/codegen/snippet.d.ts +12 -0
- package/dist/constructs/internal/codegen/snippet.js +39 -0
- package/dist/constructs/internal/codegen/snippet.js.map +1 -0
- package/dist/constructs/internal/common-diagnostics.d.ts +21 -0
- package/dist/constructs/internal/common-diagnostics.js +84 -0
- package/dist/constructs/internal/common-diagnostics.js.map +1 -0
- package/dist/constructs/internal/sanitize.d.ts +15 -0
- package/dist/constructs/internal/sanitize.js +36 -0
- package/dist/constructs/internal/sanitize.js.map +1 -0
- package/dist/constructs/ip.d.ts +2 -0
- package/dist/constructs/ip.js +2 -0
- package/dist/constructs/ip.js.map +1 -0
- package/dist/constructs/key-value-pair-codegen.d.ts +4 -0
- package/dist/constructs/key-value-pair-codegen.js +35 -0
- package/dist/constructs/key-value-pair-codegen.js.map +1 -0
- package/dist/constructs/key-value-pair.d.ts +41 -0
- package/dist/constructs/key-value-pair.js +2 -0
- package/dist/constructs/key-value-pair.js.map +1 -0
- package/dist/constructs/maintenance-window-codegen.d.ts +14 -0
- package/dist/constructs/maintenance-window-codegen.js +53 -0
- package/dist/constructs/maintenance-window-codegen.js.map +1 -0
- package/dist/constructs/maintenance-window.d.ts +62 -0
- package/dist/constructs/maintenance-window.js +53 -0
- package/dist/constructs/maintenance-window.js.map +1 -0
- package/dist/constructs/monitor-codegen.d.ts +1 -0
- package/dist/constructs/monitor-codegen.js +2 -0
- package/dist/constructs/monitor-codegen.js.map +1 -0
- package/dist/constructs/monitor.d.ts +127 -0
- package/dist/constructs/monitor.js +17 -0
- package/dist/constructs/monitor.js.map +1 -0
- package/dist/constructs/msteams-alert-channel-codegen.d.ts +13 -0
- package/dist/constructs/msteams-alert-channel-codegen.js +71 -0
- package/dist/constructs/msteams-alert-channel-codegen.js.map +1 -0
- package/dist/constructs/msteams-alert-channel.d.ts +39 -0
- package/dist/constructs/msteams-alert-channel.js +162 -0
- package/dist/constructs/msteams-alert-channel.js.map +1 -0
- package/dist/constructs/multi-step-check-bundle.d.ts +47 -0
- package/dist/constructs/multi-step-check-bundle.js +21 -0
- package/dist/constructs/multi-step-check-bundle.js.map +1 -0
- package/dist/constructs/multi-step-check-codegen.d.ts +13 -0
- package/dist/constructs/multi-step-check-codegen.js +35 -0
- package/dist/constructs/multi-step-check-codegen.js.map +1 -0
- package/dist/constructs/multi-step-check.d.ts +75 -0
- package/dist/constructs/multi-step-check.js +121 -0
- package/dist/constructs/multi-step-check.js.map +1 -0
- package/dist/constructs/opsgenie-alert-channel-codegen.d.ts +16 -0
- package/dist/constructs/opsgenie-alert-channel-codegen.js +37 -0
- package/dist/constructs/opsgenie-alert-channel-codegen.js.map +1 -0
- package/dist/constructs/opsgenie-alert-channel.d.ts +46 -0
- package/dist/constructs/opsgenie-alert-channel.js +47 -0
- package/dist/constructs/opsgenie-alert-channel.js.map +1 -0
- package/dist/constructs/pagerduty-alert-channel-codegen.d.ts +15 -0
- package/dist/constructs/pagerduty-alert-channel-codegen.js +49 -0
- package/dist/constructs/pagerduty-alert-channel-codegen.js.map +1 -0
- package/dist/constructs/pagerduty-alert-channel.d.ts +40 -0
- package/dist/constructs/pagerduty-alert-channel.js +44 -0
- package/dist/constructs/pagerduty-alert-channel.js.map +1 -0
- package/dist/constructs/phone-call-alert-channel-codegen.d.ts +14 -0
- package/dist/constructs/phone-call-alert-channel-codegen.js +42 -0
- package/dist/constructs/phone-call-alert-channel-codegen.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-check-bundle.d.ts +63 -0
- package/dist/constructs/playwright-check-bundle.js +36 -0
- package/dist/constructs/playwright-check-bundle.js.map +1 -0
- package/dist/constructs/playwright-check.d.ts +193 -0
- package/dist/constructs/playwright-check.js +328 -0
- package/dist/constructs/playwright-check.js.map +1 -0
- package/dist/constructs/playwright-config-codegen.d.ts +4 -0
- package/dist/constructs/playwright-config-codegen.js +5 -0
- package/dist/constructs/playwright-config-codegen.js.map +1 -0
- package/dist/constructs/playwright-config.d.ts +52 -0
- package/dist/constructs/playwright-config.js +2 -0
- package/dist/constructs/playwright-config.js.map +1 -0
- package/dist/constructs/private-location-check-assignment-codegen.d.ts +10 -0
- package/dist/constructs/private-location-check-assignment-codegen.js +15 -0
- package/dist/constructs/private-location-check-assignment-codegen.js.map +1 -0
- package/dist/constructs/private-location-check-assignment.d.ts +30 -0
- package/dist/constructs/private-location-check-assignment.js +36 -0
- package/dist/constructs/private-location-check-assignment.js.map +1 -0
- package/dist/constructs/private-location-codegen.d.ts +15 -0
- package/dist/constructs/private-location-codegen.js +46 -0
- package/dist/constructs/private-location-codegen.js.map +1 -0
- package/dist/constructs/private-location-group-assignment-codegen.d.ts +10 -0
- package/dist/constructs/private-location-group-assignment-codegen.js +15 -0
- package/dist/constructs/private-location-group-assignment-codegen.js.map +1 -0
- package/dist/constructs/private-location-group-assignment.d.ts +31 -0
- package/dist/constructs/private-location-group-assignment.js +39 -0
- package/dist/constructs/private-location-group-assignment.js.map +1 -0
- package/dist/constructs/private-location.d.ts +66 -0
- package/dist/constructs/private-location.js +88 -0
- package/dist/constructs/private-location.js.map +1 -0
- package/dist/constructs/project-bundle.d.ts +30 -0
- package/dist/constructs/project-bundle.js +40 -0
- package/dist/constructs/project-bundle.js.map +1 -0
- package/dist/constructs/project.d.ts +61 -0
- package/dist/constructs/project.js +127 -0
- package/dist/constructs/project.js.map +1 -0
- package/dist/constructs/query-param.d.ts +18 -0
- package/dist/constructs/query-param.js +2 -0
- package/dist/constructs/query-param.js.map +1 -0
- package/dist/constructs/ref-codegen.d.ts +3 -0
- package/dist/constructs/ref-codegen.js +11 -0
- package/dist/constructs/ref-codegen.js.map +1 -0
- package/dist/constructs/ref.d.ts +49 -0
- package/dist/constructs/ref.js +54 -0
- package/dist/constructs/ref.js.map +1 -0
- package/dist/constructs/retry-strategy-codegen.d.ts +4 -0
- package/dist/constructs/retry-strategy-codegen.js +104 -0
- package/dist/constructs/retry-strategy-codegen.js.map +1 -0
- package/dist/constructs/retry-strategy.d.ts +196 -0
- package/dist/constructs/retry-strategy.js +110 -0
- package/dist/constructs/retry-strategy.js.map +1 -0
- package/dist/constructs/session.d.ts +67 -0
- package/dist/constructs/session.js +197 -0
- package/dist/constructs/session.js.map +1 -0
- package/dist/constructs/slack-alert-channel-codegen.d.ts +14 -0
- package/dist/constructs/slack-alert-channel-codegen.js +42 -0
- package/dist/constructs/slack-alert-channel-codegen.js.map +1 -0
- package/dist/constructs/slack-alert-channel.d.ts +27 -0
- package/dist/constructs/slack-alert-channel.js +41 -0
- package/dist/constructs/slack-alert-channel.js.map +1 -0
- package/dist/constructs/slack-app-alert-channel-codegen.d.ts +13 -0
- package/dist/constructs/slack-app-alert-channel-codegen.js +39 -0
- package/dist/constructs/slack-app-alert-channel-codegen.js.map +1 -0
- package/dist/constructs/slack-app-alert-channel.d.ts +31 -0
- package/dist/constructs/slack-app-alert-channel.js +38 -0
- package/dist/constructs/slack-app-alert-channel.js.map +1 -0
- package/dist/constructs/sms-alert-channel-codegen.d.ts +14 -0
- package/dist/constructs/sms-alert-channel-codegen.js +42 -0
- package/dist/constructs/sms-alert-channel-codegen.js.map +1 -0
- package/dist/constructs/sms-alert-channel.d.ts +33 -0
- package/dist/constructs/sms-alert-channel.js +41 -0
- package/dist/constructs/sms-alert-channel.js.map +1 -0
- package/dist/constructs/status-page-codegen.d.ts +23 -0
- package/dist/constructs/status-page-codegen.js +67 -0
- package/dist/constructs/status-page-codegen.js.map +1 -0
- package/dist/constructs/status-page-service-codegen.d.ts +12 -0
- package/dist/constructs/status-page-service-codegen.js +39 -0
- package/dist/constructs/status-page-service-codegen.js.map +1 -0
- package/dist/constructs/status-page-service.d.ts +43 -0
- package/dist/constructs/status-page-service.js +61 -0
- package/dist/constructs/status-page-service.js.map +1 -0
- package/dist/constructs/status-page.d.ts +72 -0
- package/dist/constructs/status-page.js +58 -0
- package/dist/constructs/status-page.js.map +1 -0
- package/dist/constructs/tcp-monitor-codegen.d.ts +15 -0
- package/dist/constructs/tcp-monitor-codegen.js +64 -0
- package/dist/constructs/tcp-monitor-codegen.js.map +1 -0
- package/dist/constructs/tcp-monitor.d.ts +155 -0
- package/dist/constructs/tcp-monitor.js +83 -0
- package/dist/constructs/tcp-monitor.js.map +1 -0
- package/dist/constructs/telegram-alert-channel-codegen.d.ts +13 -0
- package/dist/constructs/telegram-alert-channel-codegen.js +98 -0
- package/dist/constructs/telegram-alert-channel-codegen.js.map +1 -0
- package/dist/constructs/telegram-alert-channel.d.ts +44 -0
- package/dist/constructs/telegram-alert-channel.js +60 -0
- package/dist/constructs/telegram-alert-channel.js.map +1 -0
- package/dist/constructs/url-assertion-codegen.d.ts +3 -0
- package/dist/constructs/url-assertion-codegen.js +11 -0
- package/dist/constructs/url-assertion-codegen.js.map +1 -0
- package/dist/constructs/url-assertion.d.ts +60 -0
- package/dist/constructs/url-assertion.js +52 -0
- package/dist/constructs/url-assertion.js.map +1 -0
- package/dist/constructs/url-monitor-codegen.d.ts +13 -0
- package/dist/constructs/url-monitor-codegen.js +34 -0
- package/dist/constructs/url-monitor-codegen.js.map +1 -0
- package/dist/constructs/url-monitor.d.ts +151 -0
- package/dist/constructs/url-monitor.js +109 -0
- package/dist/constructs/url-monitor.js.map +1 -0
- package/dist/constructs/url-request-codegen.d.ts +4 -0
- package/dist/constructs/url-request-codegen.js +27 -0
- package/dist/constructs/url-request-codegen.js.map +1 -0
- package/dist/constructs/url-request.d.ts +65 -0
- package/dist/constructs/url-request.js +2 -0
- package/dist/constructs/url-request.js.map +1 -0
- package/dist/constructs/validator-error.d.ts +2 -0
- package/dist/constructs/validator-error.js +3 -0
- package/dist/constructs/validator-error.js.map +1 -0
- package/dist/constructs/webhook-alert-channel-codegen.d.ts +34 -0
- package/dist/constructs/webhook-alert-channel-codegen.js +147 -0
- package/dist/constructs/webhook-alert-channel-codegen.js.map +1 -0
- package/dist/constructs/webhook-alert-channel.d.ts +68 -0
- package/dist/constructs/webhook-alert-channel.js +59 -0
- package/dist/constructs/webhook-alert-channel.js.map +1 -0
- package/dist/formatters/account-members.d.ts +8 -0
- package/dist/formatters/account-members.js +115 -0
- package/dist/formatters/account-members.js.map +1 -0
- package/dist/formatters/account-plan.d.ts +16 -0
- package/dist/formatters/account-plan.js +320 -0
- package/dist/formatters/account-plan.js.map +1 -0
- package/dist/formatters/alert-channels.d.ts +15 -0
- package/dist/formatters/alert-channels.js +257 -0
- package/dist/formatters/alert-channels.js.map +1 -0
- package/dist/formatters/analytics.d.ts +8 -0
- package/dist/formatters/analytics.js +223 -0
- package/dist/formatters/analytics.js.map +1 -0
- package/dist/formatters/assets.d.ts +22 -0
- package/dist/formatters/assets.js +280 -0
- package/dist/formatters/assets.js.map +1 -0
- package/dist/formatters/batch-stats.d.ts +8 -0
- package/dist/formatters/batch-stats.js +184 -0
- package/dist/formatters/batch-stats.js.map +1 -0
- package/dist/formatters/check-result-detail.d.ts +12 -0
- package/dist/formatters/check-result-detail.js +651 -0
- package/dist/formatters/check-result-detail.js.map +1 -0
- package/dist/formatters/checks.d.ts +29 -0
- package/dist/formatters/checks.js +336 -0
- package/dist/formatters/checks.js.map +1 -0
- package/dist/formatters/incidents.d.ts +7 -0
- package/dist/formatters/incidents.js +172 -0
- package/dist/formatters/incidents.js.map +1 -0
- package/dist/formatters/rca.d.ts +42 -0
- package/dist/formatters/rca.js +156 -0
- package/dist/formatters/rca.js.map +1 -0
- package/dist/formatters/render.d.ts +47 -0
- package/dist/formatters/render.js +261 -0
- package/dist/formatters/render.js.map +1 -0
- package/dist/formatters/status-pages.d.ts +7 -0
- package/dist/formatters/status-pages.js +236 -0
- package/dist/formatters/status-pages.js.map +1 -0
- package/dist/formatters/test-sessions.d.ts +18 -0
- package/dist/formatters/test-sessions.js +341 -0
- package/dist/formatters/test-sessions.js.map +1 -0
- package/dist/help/examples.d.ts +6 -0
- package/dist/help/examples.js +20 -0
- package/dist/help/examples.js.map +1 -0
- package/dist/help/help-extension.d.ts +6 -0
- package/dist/help/help-extension.js +91 -0
- package/dist/help/help-extension.js.map +1 -0
- package/dist/help/skills.d.ts +7 -0
- package/dist/help/skills.js +20 -0
- package/dist/help/skills.js.map +1 -0
- package/dist/helpers/account-member-target.d.ts +14 -0
- package/dist/helpers/account-member-target.js +37 -0
- package/dist/helpers/account-member-target.js.map +1 -0
- package/dist/helpers/api-fields.d.ts +4 -0
- package/dist/helpers/api-fields.js +24 -0
- package/dist/helpers/api-fields.js.map +1 -0
- package/dist/helpers/cli-mode.d.ts +4 -0
- package/dist/helpers/cli-mode.js +62 -0
- package/dist/helpers/cli-mode.js.map +1 -0
- package/dist/helpers/command-preview.d.ts +24 -0
- package/dist/helpers/command-preview.js +50 -0
- package/dist/helpers/command-preview.js.map +1 -0
- package/dist/helpers/command-style.d.ts +21 -0
- package/dist/helpers/command-style.js +108 -0
- package/dist/helpers/command-style.js.map +1 -0
- package/dist/helpers/constants.d.ts +1 -0
- package/dist/helpers/constants.js +2 -0
- package/dist/helpers/constants.js.map +1 -0
- package/dist/helpers/content-range.d.ts +1 -0
- package/dist/helpers/content-range.js +7 -0
- package/dist/helpers/content-range.js.map +1 -0
- package/dist/helpers/flags.d.ts +11 -0
- package/dist/helpers/flags.js +45 -0
- package/dist/helpers/flags.js.map +1 -0
- package/dist/helpers/incidents.d.ts +15 -0
- package/dist/helpers/incidents.js +50 -0
- package/dist/helpers/incidents.js.map +1 -0
- package/dist/helpers/number.d.ts +3 -0
- package/dist/helpers/number.js +20 -0
- package/dist/helpers/number.js.map +1 -0
- package/dist/helpers/onboarding/boilerplate.d.ts +15 -0
- package/dist/helpers/onboarding/boilerplate.js +166 -0
- package/dist/helpers/onboarding/boilerplate.js.map +1 -0
- package/dist/helpers/onboarding/clipboard.d.ts +1 -0
- package/dist/helpers/onboarding/clipboard.js +28 -0
- package/dist/helpers/onboarding/clipboard.js.map +1 -0
- package/dist/helpers/onboarding/detect-project.d.ts +10 -0
- package/dist/helpers/onboarding/detect-project.js +31 -0
- package/dist/helpers/onboarding/detect-project.js.map +1 -0
- package/dist/helpers/onboarding/index.d.ts +7 -0
- package/dist/helpers/onboarding/index.js +8 -0
- package/dist/helpers/onboarding/index.js.map +1 -0
- package/dist/helpers/onboarding/messages.d.ts +5 -0
- package/dist/helpers/onboarding/messages.js +141 -0
- package/dist/helpers/onboarding/messages.js.map +1 -0
- package/dist/helpers/onboarding/prompt-display.d.ts +1 -0
- package/dist/helpers/onboarding/prompt-display.js +76 -0
- package/dist/helpers/onboarding/prompt-display.js.map +1 -0
- package/dist/helpers/onboarding/prompts-helpers.d.ts +2 -0
- package/dist/helpers/onboarding/prompts-helpers.js +11 -0
- package/dist/helpers/onboarding/prompts-helpers.js.map +1 -0
- package/dist/helpers/onboarding/skill-install.d.ts +10 -0
- package/dist/helpers/onboarding/skill-install.js +85 -0
- package/dist/helpers/onboarding/skill-install.js.map +1 -0
- package/dist/helpers/onboarding/template-prompt.d.ts +2 -0
- package/dist/helpers/onboarding/template-prompt.js +14 -0
- package/dist/helpers/onboarding/template-prompt.js.map +1 -0
- package/dist/helpers/recast-acorn-parser.d.ts +2 -0
- package/dist/helpers/recast-acorn-parser.js +22 -0
- package/dist/helpers/recast-acorn-parser.js.map +1 -0
- package/dist/helpers/result-assets.d.ts +54 -0
- package/dist/helpers/result-assets.js +305 -0
- package/dist/helpers/result-assets.js.map +1 -0
- package/dist/helpers/test-helper.d.ts +17 -0
- package/dist/helpers/test-helper.js +75 -0
- package/dist/helpers/test-helper.js.map +1 -0
- package/dist/helpers/wrap.d.ts +6 -0
- package/dist/helpers/wrap.js +49 -0
- package/dist/helpers/wrap.js.map +1 -0
- package/dist/helpers/write-config-helpers.d.ts +5 -0
- package/dist/helpers/write-config-helpers.js +55 -0
- package/dist/helpers/write-config-helpers.js.map +1 -0
- package/dist/hooks/command-not-found.d.ts +3 -0
- package/dist/hooks/command-not-found.js +22 -0
- package/dist/hooks/command-not-found.js.map +1 -0
- package/dist/hooks/parse-error.d.ts +3 -0
- package/dist/hooks/parse-error.js +15 -0
- package/dist/hooks/parse-error.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -0
- package/dist/loader/config.d.ts +3 -0
- package/dist/loader/config.js +8 -0
- package/dist/loader/config.js.map +1 -0
- package/dist/loader/index.d.ts +5 -0
- package/dist/loader/index.js +6 -0
- package/dist/loader/index.js.map +1 -0
- package/dist/loader/jiti.d.ts +28 -0
- package/dist/loader/jiti.js +76 -0
- package/dist/loader/jiti.js.map +1 -0
- package/dist/loader/loader.d.ts +43 -0
- package/dist/loader/loader.js +37 -0
- package/dist/loader/loader.js.map +1 -0
- package/dist/loader/match.d.ts +15 -0
- package/dist/loader/match.js +43 -0
- package/dist/loader/match.js.map +1 -0
- package/dist/loader/mixed.d.ts +7 -0
- package/dist/loader/mixed.js +36 -0
- package/dist/loader/mixed.js.map +1 -0
- package/dist/loader/native.d.ts +10 -0
- package/dist/loader/native.js +30 -0
- package/dist/loader/native.js.map +1 -0
- package/dist/messages/common-messages.d.ts +5 -0
- package/dist/messages/common-messages.js +7 -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 +53 -0
- package/dist/playwright/playwright-config-template.js.map +1 -0
- package/dist/reporters/abstract-list.d.ts +57 -0
- package/dist/reporters/abstract-list.js +283 -0
- package/dist/reporters/abstract-list.js.map +1 -0
- package/dist/reporters/ci.d.ts +12 -0
- package/dist/reporters/ci.js +28 -0
- package/dist/reporters/ci.js.map +1 -0
- package/dist/reporters/dot.d.ts +10 -0
- package/dist/reporters/dot.js +26 -0
- package/dist/reporters/dot.js.map +1 -0
- package/dist/reporters/github.d.ts +32 -0
- package/dist/reporters/github.js +93 -0
- package/dist/reporters/github.js.map +1 -0
- package/dist/reporters/json.d.ts +26 -0
- package/dist/reporters/json.js +74 -0
- package/dist/reporters/json.js.map +1 -0
- package/dist/reporters/list.d.ts +15 -0
- package/dist/reporters/list.js +81 -0
- package/dist/reporters/list.js.map +1 -0
- package/dist/reporters/reporter.d.ts +25 -0
- package/dist/reporters/reporter.js +22 -0
- package/dist/reporters/reporter.js.map +1 -0
- package/dist/reporters/util.d.ts +20 -0
- package/dist/reporters/util.js +596 -0
- package/dist/reporters/util.js.map +1 -0
- package/dist/rest/account-members.d.ts +56 -0
- package/dist/rest/account-members.js +18 -0
- package/dist/rest/account-members.js.map +1 -0
- package/dist/rest/accounts.d.ts +20 -0
- package/dist/rest/accounts.js +14 -0
- package/dist/rest/accounts.js.map +1 -0
- package/dist/rest/alert-channels.d.ts +52 -0
- package/dist/rest/alert-channels.js +23 -0
- package/dist/rest/alert-channels.js.map +1 -0
- package/dist/rest/alert-notifications.d.ts +39 -0
- package/dist/rest/alert-notifications.js +19 -0
- package/dist/rest/alert-notifications.js.map +1 -0
- package/dist/rest/analytics.d.ts +41 -0
- package/dist/rest/analytics.js +60 -0
- package/dist/rest/analytics.js.map +1 -0
- package/dist/rest/api.d.ts +67 -0
- package/dist/rest/api.js +121 -0
- package/dist/rest/api.js.map +1 -0
- package/dist/rest/asset-manifests.d.ts +30 -0
- package/dist/rest/asset-manifests.js +29 -0
- package/dist/rest/asset-manifests.js.map +1 -0
- package/dist/rest/assets.d.ts +64 -0
- package/dist/rest/assets.js +90 -0
- package/dist/rest/assets.js.map +1 -0
- package/dist/rest/batch-analytics.d.ts +25 -0
- package/dist/rest/batch-analytics.js +14 -0
- package/dist/rest/batch-analytics.js.map +1 -0
- package/dist/rest/cancel.d.ts +14 -0
- package/dist/rest/cancel.js +28 -0
- package/dist/rest/cancel.js.map +1 -0
- package/dist/rest/check-groups.d.ts +16 -0
- package/dist/rest/check-groups.js +11 -0
- package/dist/rest/check-groups.js.map +1 -0
- package/dist/rest/check-results.d.ts +183 -0
- package/dist/rest/check-results.js +14 -0
- package/dist/rest/check-results.js.map +1 -0
- package/dist/rest/check-statuses.d.ts +23 -0
- package/dist/rest/check-statuses.js +20 -0
- package/dist/rest/check-statuses.js.map +1 -0
- package/dist/rest/checkly-storage.d.ts +14 -0
- package/dist/rest/checkly-storage.js +17 -0
- package/dist/rest/checkly-storage.js.map +1 -0
- package/dist/rest/checks.d.ts +48 -0
- package/dist/rest/checks.js +43 -0
- package/dist/rest/checks.js.map +1 -0
- package/dist/rest/entitlements.d.ts +47 -0
- package/dist/rest/entitlements.js +11 -0
- package/dist/rest/entitlements.js.map +1 -0
- package/dist/rest/environment-variables.d.ts +43 -0
- package/dist/rest/environment-variables.js +91 -0
- package/dist/rest/environment-variables.js.map +1 -0
- package/dist/rest/error-groups.d.ts +49 -0
- package/dist/rest/error-groups.js +14 -0
- package/dist/rest/error-groups.js.map +1 -0
- package/dist/rest/errors.d.ts +84 -0
- package/dist/rest/errors.js +216 -0
- package/dist/rest/errors.js.map +1 -0
- package/dist/rest/heartbeat-checks.d.ts +11 -0
- package/dist/rest/heartbeat-checks.js +16 -0
- package/dist/rest/heartbeat-checks.js.map +1 -0
- package/dist/rest/incidents.d.ts +60 -0
- package/dist/rest/incidents.js +28 -0
- package/dist/rest/incidents.js.map +1 -0
- package/dist/rest/locations.d.ts +11 -0
- package/dist/rest/locations.js +11 -0
- package/dist/rest/locations.js.map +1 -0
- package/dist/rest/private-locations.d.ts +10 -0
- package/dist/rest/private-locations.js +10 -0
- package/dist/rest/private-locations.js.map +1 -0
- package/dist/rest/projects.d.ts +161 -0
- package/dist/rest/projects.js +205 -0
- package/dist/rest/projects.js.map +1 -0
- package/dist/rest/rca.d.ts +14 -0
- package/dist/rest/rca.js +28 -0
- package/dist/rest/rca.js.map +1 -0
- package/dist/rest/runtimes.d.ts +9 -0
- package/dist/rest/runtimes.js +16 -0
- package/dist/rest/runtimes.js.map +1 -0
- package/dist/rest/status-pages.d.ts +40 -0
- package/dist/rest/status-pages.js +16 -0
- package/dist/rest/status-pages.js.map +1 -0
- package/dist/rest/test-session-error-groups.d.ts +18 -0
- package/dist/rest/test-session-error-groups.js +11 -0
- package/dist/rest/test-session-error-groups.js.map +1 -0
- package/dist/rest/test-sessions.d.ts +167 -0
- package/dist/rest/test-sessions.js +76 -0
- package/dist/rest/test-sessions.js.map +1 -0
- package/dist/rest/users.d.ts +12 -0
- package/dist/rest/users.js +11 -0
- package/dist/rest/users.js.map +1 -0
- package/dist/rest/util.d.ts +3 -0
- package/dist/rest/util.js +10 -0
- package/dist/rest/util.js.map +1 -0
- package/dist/runtimes/index.d.ts +2 -0
- package/dist/runtimes/index.js +2 -0
- package/dist/runtimes/index.js.map +1 -0
- package/dist/runtimes/runtime.d.ts +8 -0
- package/dist/runtimes/runtime.js +2 -0
- package/dist/runtimes/runtime.js.map +1 -0
- package/dist/runtimes/snapshot.d.ts +2 -0
- package/dist/runtimes/snapshot.js +11 -0
- package/dist/runtimes/snapshot.js.map +1 -0
- package/dist/services/abstract-check-runner.d.ts +63 -0
- package/dist/services/abstract-check-runner.js +289 -0
- package/dist/services/abstract-check-runner.js.map +1 -0
- package/dist/services/check-parser/bundler.d.ts +58 -0
- package/dist/services/check-parser/bundler.js +219 -0
- package/dist/services/check-parser/bundler.js.map +1 -0
- package/dist/services/check-parser/cache-hash.d.ts +79 -0
- package/dist/services/check-parser/cache-hash.js +179 -0
- package/dist/services/check-parser/cache-hash.js.map +1 -0
- package/dist/services/check-parser/collector.d.ts +33 -0
- package/dist/services/check-parser/collector.js +46 -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 +46 -0
- package/dist/services/check-parser/errors.js.map +1 -0
- package/dist/services/check-parser/faux-package.d.ts +4 -0
- package/dist/services/check-parser/faux-package.js +16 -0
- package/dist/services/check-parser/faux-package.js.map +1 -0
- package/dist/services/check-parser/package-files/extension.d.ts +38 -0
- package/dist/services/check-parser/package-files/extension.js +66 -0
- package/dist/services/check-parser/package-files/extension.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 +23 -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 +11 -0
- package/dist/services/check-parser/package-files/json-source-file.js +32 -0
- package/dist/services/check-parser/package-files/json-source-file.js.map +1 -0
- package/dist/services/check-parser/package-files/json-text-source-file-parser.d.ts +7 -0
- package/dist/services/check-parser/package-files/json-text-source-file-parser.js +47 -0
- package/dist/services/check-parser/package-files/json-text-source-file-parser.js.map +1 -0
- package/dist/services/check-parser/package-files/json-text-source-file.d.ts +7 -0
- package/dist/services/check-parser/package-files/json-text-source-file.js +18 -0
- package/dist/services/check-parser/package-files/json-text-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 +24 -0
- package/dist/services/check-parser/package-files/loader.js.map +1 -0
- package/dist/services/check-parser/package-files/lockfile-package-version.d.ts +85 -0
- package/dist/services/check-parser/package-files/lockfile-package-version.js +317 -0
- package/dist/services/check-parser/package-files/lockfile-package-version.js.map +1 -0
- package/dist/services/check-parser/package-files/lookup.d.ts +12 -0
- package/dist/services/check-parser/package-files/lookup.js +52 -0
- package/dist/services/check-parser/package-files/lookup.js.map +1 -0
- package/dist/services/check-parser/package-files/package-json-file.d.ts +59 -0
- package/dist/services/check-parser/package-files/package-json-file.js +248 -0
- package/dist/services/check-parser/package-files/package-json-file.js.map +1 -0
- package/dist/services/check-parser/package-files/package-manager.d.ts +222 -0
- package/dist/services/check-parser/package-files/package-manager.js +785 -0
- package/dist/services/check-parser/package-files/package-manager.js.map +1 -0
- package/dist/services/check-parser/package-files/paths.d.ts +98 -0
- package/dist/services/check-parser/package-files/paths.js +234 -0
- package/dist/services/check-parser/package-files/paths.js.map +1 -0
- package/dist/services/check-parser/package-files/resolver.d.ts +124 -0
- package/dist/services/check-parser/package-files/resolver.js +468 -0
- package/dist/services/check-parser/package-files/resolver.js.map +1 -0
- package/dist/services/check-parser/package-files/result.d.ts +38 -0
- package/dist/services/check-parser/package-files/result.js +53 -0
- package/dist/services/check-parser/package-files/result.js.map +1 -0
- package/dist/services/check-parser/package-files/source-file-parser.d.ts +10 -0
- package/dist/services/check-parser/package-files/source-file-parser.js +13 -0
- package/dist/services/check-parser/package-files/source-file-parser.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 +38 -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 +66 -0
- package/dist/services/check-parser/package-files/tsconfig-json-file.js +81 -0
- package/dist/services/check-parser/package-files/tsconfig-json-file.js.map +1 -0
- package/dist/services/check-parser/package-files/walk.d.ts +8 -0
- package/dist/services/check-parser/package-files/walk.js +35 -0
- package/dist/services/check-parser/package-files/walk.js.map +1 -0
- package/dist/services/check-parser/package-files/workspace.d.ts +60 -0
- package/dist/services/check-parser/package-files/workspace.js +103 -0
- package/dist/services/check-parser/package-files/workspace.js.map +1 -0
- package/dist/services/check-parser/parser.d.ts +67 -0
- package/dist/services/check-parser/parser.js +491 -0
- package/dist/services/check-parser/parser.js.map +1 -0
- package/dist/services/check-parser/playwright-config-expander.d.ts +7 -0
- package/dist/services/check-parser/playwright-config-expander.js +96 -0
- package/dist/services/check-parser/playwright-config-expander.js.map +1 -0
- package/dist/services/checkly-config-codegen.d.ts +4 -0
- package/dist/services/checkly-config-codegen.js +189 -0
- package/dist/services/checkly-config-codegen.js.map +1 -0
- package/dist/services/checkly-config-loader.d.ts +97 -0
- package/dist/services/checkly-config-loader.js +113 -0
- package/dist/services/checkly-config-loader.js.map +1 -0
- package/dist/services/config.d.ts +28 -0
- package/dist/services/config.js +93 -0
- package/dist/services/config.js.map +1 -0
- package/dist/services/engine-detector.d.ts +6 -0
- package/dist/services/engine-detector.js +141 -0
- package/dist/services/engine-detector.js.map +1 -0
- package/dist/services/engine-resolver.d.ts +6 -0
- package/dist/services/engine-resolver.js +47 -0
- package/dist/services/engine-resolver.js.map +1 -0
- package/dist/services/engine-rules-loader.d.ts +21 -0
- package/dist/services/engine-rules-loader.js +44 -0
- package/dist/services/engine-rules-loader.js.map +1 -0
- package/dist/services/load-dotenv.d.ts +1 -0
- package/dist/services/load-dotenv.js +44 -0
- package/dist/services/load-dotenv.js.map +1 -0
- package/dist/services/playwright-config.d.ts +27 -0
- package/dist/services/playwright-config.js +139 -0
- package/dist/services/playwright-config.js.map +1 -0
- package/dist/services/playwright-project-bundler.d.ts +47 -0
- package/dist/services/playwright-project-bundler.js +380 -0
- package/dist/services/playwright-project-bundler.js.map +1 -0
- package/dist/services/project-parser.d.ts +30 -0
- package/dist/services/project-parser.js +291 -0
- package/dist/services/project-parser.js.map +1 -0
- package/dist/services/proxy.d.ts +2 -0
- package/dist/services/proxy.js +36 -0
- package/dist/services/proxy.js.map +1 -0
- package/dist/services/shell.d.ts +2 -0
- package/dist/services/shell.js +15 -0
- package/dist/services/shell.js.map +1 -0
- package/dist/services/snapshot-service.d.ts +13 -0
- package/dist/services/snapshot-service.js +56 -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 +58 -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 +21 -0
- package/dist/services/test-filters.js.map +1 -0
- package/dist/services/test-runner.d.ts +28 -0
- package/dist/services/test-runner.js +82 -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 +49 -0
- package/dist/services/trigger-runner.js.map +1 -0
- package/dist/services/util.d.ts +34 -0
- package/dist/services/util.js +167 -0
- package/dist/services/util.js.map +1 -0
- package/dist/sourcegen/args.d.ts +7 -0
- package/dist/sourcegen/args.js +22 -0
- package/dist/sourcegen/args.js.map +1 -0
- package/dist/sourcegen/argsbuilder.d.ts +22 -0
- package/dist/sourcegen/argsbuilder.js +106 -0
- package/dist/sourcegen/argsbuilder.js.map +1 -0
- package/dist/sourcegen/array.d.ts +8 -0
- package/dist/sourcegen/array.js +28 -0
- package/dist/sourcegen/array.js.map +1 -0
- package/dist/sourcegen/arraybuilder.d.ts +21 -0
- package/dist/sourcegen/arraybuilder.js +104 -0
- package/dist/sourcegen/arraybuilder.js.map +1 -0
- package/dist/sourcegen/boolean.d.ts +7 -0
- package/dist/sourcegen/boolean.js +18 -0
- package/dist/sourcegen/boolean.js.map +1 -0
- package/dist/sourcegen/case.d.ts +9 -0
- package/dist/sourcegen/case.js +96 -0
- package/dist/sourcegen/case.js.map +1 -0
- package/dist/sourcegen/comment.d.ts +32 -0
- package/dist/sourcegen/comment.js +113 -0
- package/dist/sourcegen/comment.js.map +1 -0
- package/dist/sourcegen/decl.d.ts +43 -0
- package/dist/sourcegen/decl.js +86 -0
- package/dist/sourcegen/decl.js.map +1 -0
- package/dist/sourcegen/declbuilder.d.ts +14 -0
- package/dist/sourcegen/declbuilder.js +34 -0
- package/dist/sourcegen/declbuilder.js.map +1 -0
- package/dist/sourcegen/expr.d.ts +39 -0
- package/dist/sourcegen/expr.js +77 -0
- package/dist/sourcegen/expr.js.map +1 -0
- package/dist/sourcegen/exprbuilder.d.ts +13 -0
- package/dist/sourcegen/exprbuilder.js +49 -0
- package/dist/sourcegen/exprbuilder.js.map +1 -0
- package/dist/sourcegen/identifier.d.ts +12 -0
- package/dist/sourcegen/identifier.js +22 -0
- package/dist/sourcegen/identifier.js.map +1 -0
- package/dist/sourcegen/index.d.ts +22 -0
- package/dist/sourcegen/index.js +23 -0
- package/dist/sourcegen/index.js.map +1 -0
- package/dist/sourcegen/null.d.ts +5 -0
- package/dist/sourcegen/null.js +7 -0
- package/dist/sourcegen/null.js.map +1 -0
- package/dist/sourcegen/number.d.ts +7 -0
- package/dist/sourcegen/number.js +18 -0
- package/dist/sourcegen/number.js.map +1 -0
- package/dist/sourcegen/object.d.ts +28 -0
- package/dist/sourcegen/object.js +80 -0
- package/dist/sourcegen/object.js.map +1 -0
- package/dist/sourcegen/objectbuilder.d.ts +25 -0
- package/dist/sourcegen/objectbuilder.js +122 -0
- package/dist/sourcegen/objectbuilder.js.map +1 -0
- package/dist/sourcegen/output.d.ts +14 -0
- package/dist/sourcegen/output.js +81 -0
- package/dist/sourcegen/output.js.map +1 -0
- package/dist/sourcegen/program.d.ts +53 -0
- package/dist/sourcegen/program.js +254 -0
- package/dist/sourcegen/program.js.map +1 -0
- package/dist/sourcegen/string.d.ts +8 -0
- package/dist/sourcegen/string.js +23 -0
- package/dist/sourcegen/string.js.map +1 -0
- package/dist/sourcegen/undefined.d.ts +5 -0
- package/dist/sourcegen/undefined.js +7 -0
- package/dist/sourcegen/undefined.js.map +1 -0
- package/dist/sourcegen/unknown.d.ts +2 -0
- package/dist/sourcegen/unknown.js +36 -0
- package/dist/sourcegen/unknown.js.map +1 -0
- package/dist/sourcegen/value.d.ts +4 -0
- package/dist/sourcegen/value.js +3 -0
- package/dist/sourcegen/value.js.map +1 -0
- package/dist/testing/fixture-sandbox.d.ts +41 -0
- package/dist/testing/fixture-sandbox.js +122 -0
- package/dist/testing/fixture-sandbox.js.map +1 -0
- package/dist/testing/global-setup.d.ts +2 -0
- package/dist/testing/global-setup.js +14 -0
- package/dist/testing/global-setup.js.map +1 -0
- package/dist/util/index.d.ts +9 -0
- package/dist/util/index.js +23 -0
- package/dist/util/index.js.map +1 -0
- package/oclif.manifest.json +3702 -0
- package/package.json +166 -0
|
@@ -0,0 +1,3702 @@
|
|
|
1
|
+
{
|
|
2
|
+
"commands": {
|
|
3
|
+
"api": {
|
|
4
|
+
"aliases": [],
|
|
5
|
+
"args": {
|
|
6
|
+
"endpoint": {
|
|
7
|
+
"description": "API endpoint path (e.g. /v1/checks).",
|
|
8
|
+
"name": "endpoint",
|
|
9
|
+
"required": true
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
"description": "Make an authenticated HTTP request to the Checkly API.\nPass-through for any endpoint — handles auth automatically.\nSee https://www.checklyhq.com/docs/api for available endpoints.\nOpenAPI spec: https://api.checklyhq.com/openapi.json",
|
|
13
|
+
"examples": [
|
|
14
|
+
"checkly api /v1/checks",
|
|
15
|
+
"checkly api /v1/checks -X GET --jq '.[].name'",
|
|
16
|
+
"checkly api /v1/checks -X POST -F name=MyCheck -F activated:=true",
|
|
17
|
+
"checkly api /v1/checks -X GET -F limit=5",
|
|
18
|
+
"echo '{\"name\":\"New\"}' | checkly api /v1/checks -X POST --input -"
|
|
19
|
+
],
|
|
20
|
+
"flags": {
|
|
21
|
+
"method": {
|
|
22
|
+
"char": "X",
|
|
23
|
+
"description": "HTTP method.",
|
|
24
|
+
"name": "method",
|
|
25
|
+
"hasDynamicHelp": false,
|
|
26
|
+
"multiple": false,
|
|
27
|
+
"options": [
|
|
28
|
+
"GET",
|
|
29
|
+
"POST",
|
|
30
|
+
"PUT",
|
|
31
|
+
"PATCH",
|
|
32
|
+
"DELETE"
|
|
33
|
+
],
|
|
34
|
+
"type": "option"
|
|
35
|
+
},
|
|
36
|
+
"field": {
|
|
37
|
+
"char": "F",
|
|
38
|
+
"description": "Add a field: key=value (string) or key:=value (parsed as JSON).",
|
|
39
|
+
"name": "field",
|
|
40
|
+
"default": [],
|
|
41
|
+
"hasDynamicHelp": false,
|
|
42
|
+
"multiple": true,
|
|
43
|
+
"type": "option"
|
|
44
|
+
},
|
|
45
|
+
"header": {
|
|
46
|
+
"char": "H",
|
|
47
|
+
"description": "Custom HTTP header: \"Key: Value\".",
|
|
48
|
+
"name": "header",
|
|
49
|
+
"default": [],
|
|
50
|
+
"hasDynamicHelp": false,
|
|
51
|
+
"multiple": true,
|
|
52
|
+
"type": "option"
|
|
53
|
+
},
|
|
54
|
+
"jq": {
|
|
55
|
+
"description": "Filter JSON output with a jq expression (requires jq installed).",
|
|
56
|
+
"name": "jq",
|
|
57
|
+
"hasDynamicHelp": false,
|
|
58
|
+
"multiple": false,
|
|
59
|
+
"type": "option"
|
|
60
|
+
},
|
|
61
|
+
"input": {
|
|
62
|
+
"description": "Request body from file path, or \"-\" for stdin.",
|
|
63
|
+
"name": "input",
|
|
64
|
+
"hasDynamicHelp": false,
|
|
65
|
+
"multiple": false,
|
|
66
|
+
"type": "option"
|
|
67
|
+
},
|
|
68
|
+
"include": {
|
|
69
|
+
"char": "i",
|
|
70
|
+
"description": "Include HTTP status and response headers in the output.",
|
|
71
|
+
"name": "include",
|
|
72
|
+
"allowNo": false,
|
|
73
|
+
"type": "boolean"
|
|
74
|
+
},
|
|
75
|
+
"verbose": {
|
|
76
|
+
"description": "Print request and response headers to stderr.",
|
|
77
|
+
"name": "verbose",
|
|
78
|
+
"allowNo": false,
|
|
79
|
+
"type": "boolean"
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
"hasDynamicHelp": false,
|
|
83
|
+
"hidden": false,
|
|
84
|
+
"hiddenAliases": [],
|
|
85
|
+
"id": "api",
|
|
86
|
+
"pluginAlias": "checkly",
|
|
87
|
+
"pluginName": "checkly",
|
|
88
|
+
"pluginType": "core",
|
|
89
|
+
"strict": true,
|
|
90
|
+
"enableJsonFlag": false,
|
|
91
|
+
"coreCommand": false,
|
|
92
|
+
"readOnly": false,
|
|
93
|
+
"destructive": true,
|
|
94
|
+
"idempotent": false,
|
|
95
|
+
"isESM": true,
|
|
96
|
+
"relativePath": [
|
|
97
|
+
"dist",
|
|
98
|
+
"commands",
|
|
99
|
+
"api.js"
|
|
100
|
+
]
|
|
101
|
+
},
|
|
102
|
+
"authCommand": {
|
|
103
|
+
"aliases": [],
|
|
104
|
+
"args": {},
|
|
105
|
+
"flags": {},
|
|
106
|
+
"hasDynamicHelp": false,
|
|
107
|
+
"hidden": true,
|
|
108
|
+
"hiddenAliases": [],
|
|
109
|
+
"id": "authCommand",
|
|
110
|
+
"pluginAlias": "checkly",
|
|
111
|
+
"pluginName": "checkly",
|
|
112
|
+
"pluginType": "core",
|
|
113
|
+
"strict": true,
|
|
114
|
+
"enableJsonFlag": false,
|
|
115
|
+
"coreCommand": false,
|
|
116
|
+
"readOnly": false,
|
|
117
|
+
"destructive": false,
|
|
118
|
+
"idempotent": false,
|
|
119
|
+
"isESM": true,
|
|
120
|
+
"relativePath": [
|
|
121
|
+
"dist",
|
|
122
|
+
"commands",
|
|
123
|
+
"authCommand.js"
|
|
124
|
+
]
|
|
125
|
+
},
|
|
126
|
+
"baseCommand": {
|
|
127
|
+
"aliases": [],
|
|
128
|
+
"args": {},
|
|
129
|
+
"flags": {},
|
|
130
|
+
"hasDynamicHelp": false,
|
|
131
|
+
"hidden": true,
|
|
132
|
+
"hiddenAliases": [],
|
|
133
|
+
"id": "baseCommand",
|
|
134
|
+
"pluginAlias": "checkly",
|
|
135
|
+
"pluginName": "checkly",
|
|
136
|
+
"pluginType": "core",
|
|
137
|
+
"strict": true,
|
|
138
|
+
"enableJsonFlag": false,
|
|
139
|
+
"coreCommand": false,
|
|
140
|
+
"readOnly": false,
|
|
141
|
+
"destructive": false,
|
|
142
|
+
"idempotent": false,
|
|
143
|
+
"isESM": true,
|
|
144
|
+
"relativePath": [
|
|
145
|
+
"dist",
|
|
146
|
+
"commands",
|
|
147
|
+
"baseCommand.js"
|
|
148
|
+
]
|
|
149
|
+
},
|
|
150
|
+
"deploy": {
|
|
151
|
+
"aliases": [],
|
|
152
|
+
"args": {},
|
|
153
|
+
"description": "Deploy your project to your Checkly account.",
|
|
154
|
+
"flags": {
|
|
155
|
+
"preview": {
|
|
156
|
+
"char": "p",
|
|
157
|
+
"description": "Show a preview of the changes made by the deploy command.",
|
|
158
|
+
"name": "preview",
|
|
159
|
+
"allowNo": false,
|
|
160
|
+
"type": "boolean"
|
|
161
|
+
},
|
|
162
|
+
"output": {
|
|
163
|
+
"char": "o",
|
|
164
|
+
"description": "Shows the changes made after the deploy command.",
|
|
165
|
+
"name": "output",
|
|
166
|
+
"allowNo": false,
|
|
167
|
+
"type": "boolean"
|
|
168
|
+
},
|
|
169
|
+
"verbose": {
|
|
170
|
+
"char": "v",
|
|
171
|
+
"description": "Show resource names and IDs in the deploy output.",
|
|
172
|
+
"name": "verbose",
|
|
173
|
+
"allowNo": false,
|
|
174
|
+
"type": "boolean"
|
|
175
|
+
},
|
|
176
|
+
"schedule-on-deploy": {
|
|
177
|
+
"description": "Enables automatic check scheduling after a deploy.",
|
|
178
|
+
"name": "schedule-on-deploy",
|
|
179
|
+
"allowNo": true,
|
|
180
|
+
"type": "boolean"
|
|
181
|
+
},
|
|
182
|
+
"force": {
|
|
183
|
+
"char": "f",
|
|
184
|
+
"description": "Skip confirmation prompt.",
|
|
185
|
+
"name": "force",
|
|
186
|
+
"allowNo": false,
|
|
187
|
+
"type": "boolean"
|
|
188
|
+
},
|
|
189
|
+
"config": {
|
|
190
|
+
"char": "c",
|
|
191
|
+
"description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
|
|
192
|
+
"name": "config",
|
|
193
|
+
"hasDynamicHelp": false,
|
|
194
|
+
"multiple": false,
|
|
195
|
+
"type": "option"
|
|
196
|
+
},
|
|
197
|
+
"verify-runtime-dependencies": {
|
|
198
|
+
"description": "[default: true] Return an error if checks import dependencies that are not supported by the selected runtime.",
|
|
199
|
+
"env": "CHECKLY_VERIFY_RUNTIME_DEPENDENCIES",
|
|
200
|
+
"name": "verify-runtime-dependencies",
|
|
201
|
+
"allowNo": true,
|
|
202
|
+
"type": "boolean"
|
|
203
|
+
},
|
|
204
|
+
"debug-bundle": {
|
|
205
|
+
"description": "Output the project bundle to a file without deploying any resources.",
|
|
206
|
+
"hidden": true,
|
|
207
|
+
"name": "debug-bundle",
|
|
208
|
+
"allowNo": false,
|
|
209
|
+
"type": "boolean"
|
|
210
|
+
},
|
|
211
|
+
"debug-bundle-output-file": {
|
|
212
|
+
"description": "The file to output the debug debug bundle to.",
|
|
213
|
+
"hidden": true,
|
|
214
|
+
"name": "debug-bundle-output-file",
|
|
215
|
+
"default": "./debug-bundle.json",
|
|
216
|
+
"hasDynamicHelp": false,
|
|
217
|
+
"multiple": false,
|
|
218
|
+
"type": "option"
|
|
219
|
+
}
|
|
220
|
+
},
|
|
221
|
+
"hasDynamicHelp": false,
|
|
222
|
+
"hidden": false,
|
|
223
|
+
"hiddenAliases": [],
|
|
224
|
+
"id": "deploy",
|
|
225
|
+
"pluginAlias": "checkly",
|
|
226
|
+
"pluginName": "checkly",
|
|
227
|
+
"pluginType": "core",
|
|
228
|
+
"strict": true,
|
|
229
|
+
"enableJsonFlag": false,
|
|
230
|
+
"coreCommand": true,
|
|
231
|
+
"readOnly": false,
|
|
232
|
+
"destructive": false,
|
|
233
|
+
"idempotent": true,
|
|
234
|
+
"isESM": true,
|
|
235
|
+
"relativePath": [
|
|
236
|
+
"dist",
|
|
237
|
+
"commands",
|
|
238
|
+
"deploy.js"
|
|
239
|
+
]
|
|
240
|
+
},
|
|
241
|
+
"destroy": {
|
|
242
|
+
"aliases": [],
|
|
243
|
+
"args": {},
|
|
244
|
+
"description": "Destroy your project with all its related resources.",
|
|
245
|
+
"flags": {
|
|
246
|
+
"force": {
|
|
247
|
+
"char": "f",
|
|
248
|
+
"description": "Skip confirmation prompt.",
|
|
249
|
+
"name": "force",
|
|
250
|
+
"allowNo": false,
|
|
251
|
+
"type": "boolean"
|
|
252
|
+
},
|
|
253
|
+
"config": {
|
|
254
|
+
"char": "c",
|
|
255
|
+
"description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
|
|
256
|
+
"name": "config",
|
|
257
|
+
"hasDynamicHelp": false,
|
|
258
|
+
"multiple": false,
|
|
259
|
+
"type": "option"
|
|
260
|
+
},
|
|
261
|
+
"preserve-resources": {
|
|
262
|
+
"description": "Preserve all project resources (checks, groups, dashboards, etc.) when destroying the project. Resources become normal account-level resources.",
|
|
263
|
+
"name": "preserve-resources",
|
|
264
|
+
"allowNo": false,
|
|
265
|
+
"type": "boolean"
|
|
266
|
+
}
|
|
267
|
+
},
|
|
268
|
+
"hasDynamicHelp": false,
|
|
269
|
+
"hidden": false,
|
|
270
|
+
"hiddenAliases": [],
|
|
271
|
+
"id": "destroy",
|
|
272
|
+
"pluginAlias": "checkly",
|
|
273
|
+
"pluginName": "checkly",
|
|
274
|
+
"pluginType": "core",
|
|
275
|
+
"strict": true,
|
|
276
|
+
"enableJsonFlag": false,
|
|
277
|
+
"coreCommand": false,
|
|
278
|
+
"readOnly": false,
|
|
279
|
+
"destructive": true,
|
|
280
|
+
"idempotent": false,
|
|
281
|
+
"isESM": true,
|
|
282
|
+
"relativePath": [
|
|
283
|
+
"dist",
|
|
284
|
+
"commands",
|
|
285
|
+
"destroy.js"
|
|
286
|
+
]
|
|
287
|
+
},
|
|
288
|
+
"help": {
|
|
289
|
+
"aliases": [],
|
|
290
|
+
"args": {},
|
|
291
|
+
"description": "Display help for <%= config.bin %>.",
|
|
292
|
+
"flags": {},
|
|
293
|
+
"hasDynamicHelp": false,
|
|
294
|
+
"hidden": false,
|
|
295
|
+
"hiddenAliases": [],
|
|
296
|
+
"id": "help",
|
|
297
|
+
"pluginAlias": "checkly",
|
|
298
|
+
"pluginName": "checkly",
|
|
299
|
+
"pluginType": "core",
|
|
300
|
+
"strict": true,
|
|
301
|
+
"enableJsonFlag": false,
|
|
302
|
+
"coreCommand": false,
|
|
303
|
+
"readOnly": false,
|
|
304
|
+
"destructive": false,
|
|
305
|
+
"idempotent": false,
|
|
306
|
+
"isESM": true,
|
|
307
|
+
"relativePath": [
|
|
308
|
+
"dist",
|
|
309
|
+
"commands",
|
|
310
|
+
"help.js"
|
|
311
|
+
]
|
|
312
|
+
},
|
|
313
|
+
"init": {
|
|
314
|
+
"aliases": [],
|
|
315
|
+
"args": {},
|
|
316
|
+
"description": "Initialize Checkly in your project",
|
|
317
|
+
"examples": [
|
|
318
|
+
"$ npx checkly init",
|
|
319
|
+
"$ npx checkly init --target claude",
|
|
320
|
+
"$ CI=true npx checkly init"
|
|
321
|
+
],
|
|
322
|
+
"flags": {
|
|
323
|
+
"target": {
|
|
324
|
+
"char": "t",
|
|
325
|
+
"description": "Install the Checkly skill for a specific AI agent (amp, claude, cline, codex, continue, cursor, gemini-cli, github-copilot, goose, opencode, roo, windsurf).",
|
|
326
|
+
"name": "target",
|
|
327
|
+
"hasDynamicHelp": false,
|
|
328
|
+
"multiple": false,
|
|
329
|
+
"type": "option"
|
|
330
|
+
}
|
|
331
|
+
},
|
|
332
|
+
"hasDynamicHelp": false,
|
|
333
|
+
"hidden": false,
|
|
334
|
+
"hiddenAliases": [],
|
|
335
|
+
"id": "init",
|
|
336
|
+
"pluginAlias": "checkly",
|
|
337
|
+
"pluginName": "checkly",
|
|
338
|
+
"pluginType": "core",
|
|
339
|
+
"strict": true,
|
|
340
|
+
"enableJsonFlag": false,
|
|
341
|
+
"coreCommand": true,
|
|
342
|
+
"readOnly": false,
|
|
343
|
+
"destructive": false,
|
|
344
|
+
"idempotent": true,
|
|
345
|
+
"isESM": true,
|
|
346
|
+
"relativePath": [
|
|
347
|
+
"dist",
|
|
348
|
+
"commands",
|
|
349
|
+
"init.js"
|
|
350
|
+
]
|
|
351
|
+
},
|
|
352
|
+
"login": {
|
|
353
|
+
"aliases": [],
|
|
354
|
+
"args": {},
|
|
355
|
+
"description": "Login to your Checkly account or create a new one.",
|
|
356
|
+
"flags": {},
|
|
357
|
+
"hasDynamicHelp": false,
|
|
358
|
+
"hidden": false,
|
|
359
|
+
"hiddenAliases": [],
|
|
360
|
+
"id": "login",
|
|
361
|
+
"pluginAlias": "checkly",
|
|
362
|
+
"pluginName": "checkly",
|
|
363
|
+
"pluginType": "core",
|
|
364
|
+
"strict": true,
|
|
365
|
+
"enableJsonFlag": false,
|
|
366
|
+
"coreCommand": false,
|
|
367
|
+
"readOnly": false,
|
|
368
|
+
"destructive": false,
|
|
369
|
+
"idempotent": true,
|
|
370
|
+
"isESM": true,
|
|
371
|
+
"relativePath": [
|
|
372
|
+
"dist",
|
|
373
|
+
"commands",
|
|
374
|
+
"login.js"
|
|
375
|
+
]
|
|
376
|
+
},
|
|
377
|
+
"logout": {
|
|
378
|
+
"aliases": [],
|
|
379
|
+
"args": {},
|
|
380
|
+
"description": "Log out and clear any local credentials.",
|
|
381
|
+
"flags": {
|
|
382
|
+
"force": {
|
|
383
|
+
"char": "f",
|
|
384
|
+
"description": "Force mode. Skips the confirmation dialog.",
|
|
385
|
+
"name": "force",
|
|
386
|
+
"allowNo": false,
|
|
387
|
+
"type": "boolean"
|
|
388
|
+
}
|
|
389
|
+
},
|
|
390
|
+
"hasDynamicHelp": false,
|
|
391
|
+
"hidden": false,
|
|
392
|
+
"hiddenAliases": [],
|
|
393
|
+
"id": "logout",
|
|
394
|
+
"pluginAlias": "checkly",
|
|
395
|
+
"pluginName": "checkly",
|
|
396
|
+
"pluginType": "core",
|
|
397
|
+
"strict": true,
|
|
398
|
+
"enableJsonFlag": false,
|
|
399
|
+
"coreCommand": false,
|
|
400
|
+
"readOnly": false,
|
|
401
|
+
"destructive": false,
|
|
402
|
+
"idempotent": true,
|
|
403
|
+
"isESM": true,
|
|
404
|
+
"relativePath": [
|
|
405
|
+
"dist",
|
|
406
|
+
"commands",
|
|
407
|
+
"logout.js"
|
|
408
|
+
]
|
|
409
|
+
},
|
|
410
|
+
"members": {
|
|
411
|
+
"aliases": [],
|
|
412
|
+
"args": {},
|
|
413
|
+
"description": "List account members and pending invites.",
|
|
414
|
+
"flags": {
|
|
415
|
+
"search": {
|
|
416
|
+
"char": "s",
|
|
417
|
+
"description": "Search members and invites by name or email.",
|
|
418
|
+
"name": "search",
|
|
419
|
+
"hasDynamicHelp": false,
|
|
420
|
+
"multiple": false,
|
|
421
|
+
"type": "option"
|
|
422
|
+
},
|
|
423
|
+
"type": {
|
|
424
|
+
"description": "Filter by item type: member or invite.",
|
|
425
|
+
"name": "type",
|
|
426
|
+
"hasDynamicHelp": false,
|
|
427
|
+
"multiple": false,
|
|
428
|
+
"type": "option"
|
|
429
|
+
},
|
|
430
|
+
"role": {
|
|
431
|
+
"description": "Filter by member or invite role: owner, admin, read_write, read_run, read_only.",
|
|
432
|
+
"name": "role",
|
|
433
|
+
"hasDynamicHelp": false,
|
|
434
|
+
"multiple": false,
|
|
435
|
+
"type": "option"
|
|
436
|
+
},
|
|
437
|
+
"status": {
|
|
438
|
+
"description": "Filter by member or invite status: active, pending, expired.",
|
|
439
|
+
"name": "status",
|
|
440
|
+
"hasDynamicHelp": false,
|
|
441
|
+
"multiple": false,
|
|
442
|
+
"type": "option"
|
|
443
|
+
},
|
|
444
|
+
"limit": {
|
|
445
|
+
"char": "l",
|
|
446
|
+
"description": "Number of account members to return (1-100). Enables cursor pagination.",
|
|
447
|
+
"name": "limit",
|
|
448
|
+
"hasDynamicHelp": false,
|
|
449
|
+
"multiple": false,
|
|
450
|
+
"type": "option"
|
|
451
|
+
},
|
|
452
|
+
"next-id": {
|
|
453
|
+
"description": "Cursor for next page. Requires --limit.",
|
|
454
|
+
"name": "next-id",
|
|
455
|
+
"hasDynamicHelp": false,
|
|
456
|
+
"multiple": false,
|
|
457
|
+
"type": "option"
|
|
458
|
+
},
|
|
459
|
+
"hide-id": {
|
|
460
|
+
"description": "Hide member and invite IDs in table output.",
|
|
461
|
+
"name": "hide-id",
|
|
462
|
+
"allowNo": false,
|
|
463
|
+
"type": "boolean"
|
|
464
|
+
},
|
|
465
|
+
"output": {
|
|
466
|
+
"char": "o",
|
|
467
|
+
"description": "Output format.",
|
|
468
|
+
"name": "output",
|
|
469
|
+
"default": "table",
|
|
470
|
+
"hasDynamicHelp": false,
|
|
471
|
+
"multiple": false,
|
|
472
|
+
"options": [
|
|
473
|
+
"table",
|
|
474
|
+
"json",
|
|
475
|
+
"md"
|
|
476
|
+
],
|
|
477
|
+
"type": "option"
|
|
478
|
+
}
|
|
479
|
+
},
|
|
480
|
+
"hasDynamicHelp": false,
|
|
481
|
+
"hidden": false,
|
|
482
|
+
"hiddenAliases": [
|
|
483
|
+
"account members"
|
|
484
|
+
],
|
|
485
|
+
"id": "members",
|
|
486
|
+
"pluginAlias": "checkly",
|
|
487
|
+
"pluginName": "checkly",
|
|
488
|
+
"pluginType": "core",
|
|
489
|
+
"strict": true,
|
|
490
|
+
"enableJsonFlag": false,
|
|
491
|
+
"coreCommand": false,
|
|
492
|
+
"readOnly": true,
|
|
493
|
+
"destructive": false,
|
|
494
|
+
"idempotent": true,
|
|
495
|
+
"isESM": true,
|
|
496
|
+
"relativePath": [
|
|
497
|
+
"dist",
|
|
498
|
+
"commands",
|
|
499
|
+
"members.js"
|
|
500
|
+
]
|
|
501
|
+
},
|
|
502
|
+
"pw-test": {
|
|
503
|
+
"aliases": [],
|
|
504
|
+
"args": {},
|
|
505
|
+
"description": "Test your Playwright Tests on Checkly.",
|
|
506
|
+
"flags": {
|
|
507
|
+
"location": {
|
|
508
|
+
"char": "l",
|
|
509
|
+
"description": "The location to run the checks at.",
|
|
510
|
+
"name": "location",
|
|
511
|
+
"hasDynamicHelp": false,
|
|
512
|
+
"multiple": false,
|
|
513
|
+
"type": "option"
|
|
514
|
+
},
|
|
515
|
+
"private-location": {
|
|
516
|
+
"description": "The private location to run checks at.",
|
|
517
|
+
"exclusive": [
|
|
518
|
+
"location"
|
|
519
|
+
],
|
|
520
|
+
"name": "private-location",
|
|
521
|
+
"hasDynamicHelp": false,
|
|
522
|
+
"multiple": false,
|
|
523
|
+
"type": "option"
|
|
524
|
+
},
|
|
525
|
+
"env": {
|
|
526
|
+
"char": "e",
|
|
527
|
+
"description": "Env vars to be passed to the test run.",
|
|
528
|
+
"exclusive": [
|
|
529
|
+
"env-file"
|
|
530
|
+
],
|
|
531
|
+
"name": "env",
|
|
532
|
+
"default": [],
|
|
533
|
+
"hasDynamicHelp": false,
|
|
534
|
+
"multiple": true,
|
|
535
|
+
"type": "option"
|
|
536
|
+
},
|
|
537
|
+
"env-file": {
|
|
538
|
+
"description": "dotenv file path to be passed. For example --env-file=\"./.env\"",
|
|
539
|
+
"exclusive": [
|
|
540
|
+
"env"
|
|
541
|
+
],
|
|
542
|
+
"name": "env-file",
|
|
543
|
+
"hasDynamicHelp": false,
|
|
544
|
+
"multiple": false,
|
|
545
|
+
"type": "option"
|
|
546
|
+
},
|
|
547
|
+
"timeout": {
|
|
548
|
+
"description": "A timeout (in seconds) to wait for checks to complete.",
|
|
549
|
+
"name": "timeout",
|
|
550
|
+
"default": 1200,
|
|
551
|
+
"hasDynamicHelp": false,
|
|
552
|
+
"multiple": false,
|
|
553
|
+
"type": "option"
|
|
554
|
+
},
|
|
555
|
+
"verbose": {
|
|
556
|
+
"description": "Always show the full logs of the checks.",
|
|
557
|
+
"name": "verbose",
|
|
558
|
+
"allowNo": false,
|
|
559
|
+
"type": "boolean"
|
|
560
|
+
},
|
|
561
|
+
"reporter": {
|
|
562
|
+
"description": "A list of custom reporters for the test output.",
|
|
563
|
+
"name": "reporter",
|
|
564
|
+
"delimiter": ",",
|
|
565
|
+
"hasDynamicHelp": false,
|
|
566
|
+
"multiple": true,
|
|
567
|
+
"options": [
|
|
568
|
+
"list",
|
|
569
|
+
"dot",
|
|
570
|
+
"ci",
|
|
571
|
+
"github",
|
|
572
|
+
"json"
|
|
573
|
+
],
|
|
574
|
+
"type": "option"
|
|
575
|
+
},
|
|
576
|
+
"config": {
|
|
577
|
+
"description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
|
|
578
|
+
"name": "config",
|
|
579
|
+
"hasDynamicHelp": false,
|
|
580
|
+
"multiple": false,
|
|
581
|
+
"type": "option"
|
|
582
|
+
},
|
|
583
|
+
"record": {
|
|
584
|
+
"description": "[default: true] Record test results in Checkly as a test session with full logs, traces and videos.",
|
|
585
|
+
"name": "record",
|
|
586
|
+
"allowNo": true,
|
|
587
|
+
"type": "boolean"
|
|
588
|
+
},
|
|
589
|
+
"test-session-name": {
|
|
590
|
+
"description": "A name to use when storing results in Checkly",
|
|
591
|
+
"name": "test-session-name",
|
|
592
|
+
"hasDynamicHelp": false,
|
|
593
|
+
"multiple": false,
|
|
594
|
+
"type": "option"
|
|
595
|
+
},
|
|
596
|
+
"create-check": {
|
|
597
|
+
"description": "Create a Checkly check from the Playwright test.",
|
|
598
|
+
"name": "create-check",
|
|
599
|
+
"allowNo": false,
|
|
600
|
+
"type": "boolean"
|
|
601
|
+
},
|
|
602
|
+
"frequency": {
|
|
603
|
+
"char": "f",
|
|
604
|
+
"description": "The frequency in minutes for the created check.",
|
|
605
|
+
"name": "frequency",
|
|
606
|
+
"default": 10,
|
|
607
|
+
"hasDynamicHelp": false,
|
|
608
|
+
"multiple": false,
|
|
609
|
+
"options": [
|
|
610
|
+
"1",
|
|
611
|
+
"2",
|
|
612
|
+
"5",
|
|
613
|
+
"10",
|
|
614
|
+
"15",
|
|
615
|
+
"30",
|
|
616
|
+
"60",
|
|
617
|
+
"120",
|
|
618
|
+
"180",
|
|
619
|
+
"360",
|
|
620
|
+
"720",
|
|
621
|
+
"1440"
|
|
622
|
+
],
|
|
623
|
+
"type": "option"
|
|
624
|
+
},
|
|
625
|
+
"stream-logs": {
|
|
626
|
+
"description": "Stream logs from the test run to the console.",
|
|
627
|
+
"name": "stream-logs",
|
|
628
|
+
"allowNo": true,
|
|
629
|
+
"type": "boolean"
|
|
630
|
+
},
|
|
631
|
+
"include": {
|
|
632
|
+
"char": "i",
|
|
633
|
+
"description": "File patterns to include when bundling the test project (e.g., \"utils/**/*\").",
|
|
634
|
+
"name": "include",
|
|
635
|
+
"default": [],
|
|
636
|
+
"hasDynamicHelp": false,
|
|
637
|
+
"multiple": true,
|
|
638
|
+
"type": "option"
|
|
639
|
+
},
|
|
640
|
+
"install-command": {
|
|
641
|
+
"description": "Command to install dependencies before running tests.",
|
|
642
|
+
"name": "install-command",
|
|
643
|
+
"hasDynamicHelp": false,
|
|
644
|
+
"multiple": false,
|
|
645
|
+
"type": "option"
|
|
646
|
+
},
|
|
647
|
+
"refresh-cache": {
|
|
648
|
+
"description": "Force a fresh install of dependencies and update the cached version.",
|
|
649
|
+
"name": "refresh-cache",
|
|
650
|
+
"allowNo": false,
|
|
651
|
+
"type": "boolean"
|
|
652
|
+
},
|
|
653
|
+
"detach": {
|
|
654
|
+
"char": "d",
|
|
655
|
+
"description": "Start checks in the cloud and exit after printing the test session ID.",
|
|
656
|
+
"name": "detach",
|
|
657
|
+
"allowNo": false,
|
|
658
|
+
"type": "boolean"
|
|
659
|
+
}
|
|
660
|
+
},
|
|
661
|
+
"hasDynamicHelp": false,
|
|
662
|
+
"hidden": false,
|
|
663
|
+
"hiddenAliases": [],
|
|
664
|
+
"id": "pw-test",
|
|
665
|
+
"pluginAlias": "checkly",
|
|
666
|
+
"pluginName": "checkly",
|
|
667
|
+
"pluginType": "core",
|
|
668
|
+
"strict": true,
|
|
669
|
+
"enableJsonFlag": false,
|
|
670
|
+
"coreCommand": true,
|
|
671
|
+
"readOnly": true,
|
|
672
|
+
"destructive": false,
|
|
673
|
+
"idempotent": true,
|
|
674
|
+
"isESM": true,
|
|
675
|
+
"relativePath": [
|
|
676
|
+
"dist",
|
|
677
|
+
"commands",
|
|
678
|
+
"pw-test.js"
|
|
679
|
+
]
|
|
680
|
+
},
|
|
681
|
+
"rules": {
|
|
682
|
+
"aliases": [],
|
|
683
|
+
"args": {},
|
|
684
|
+
"description": "Generate a rules file to use with AI IDEs and Copilots.",
|
|
685
|
+
"flags": {},
|
|
686
|
+
"hasDynamicHelp": false,
|
|
687
|
+
"hidden": false,
|
|
688
|
+
"hiddenAliases": [],
|
|
689
|
+
"id": "rules",
|
|
690
|
+
"pluginAlias": "checkly",
|
|
691
|
+
"pluginName": "checkly",
|
|
692
|
+
"pluginType": "core",
|
|
693
|
+
"strict": true,
|
|
694
|
+
"enableJsonFlag": false,
|
|
695
|
+
"coreCommand": false,
|
|
696
|
+
"readOnly": true,
|
|
697
|
+
"destructive": false,
|
|
698
|
+
"idempotent": true,
|
|
699
|
+
"isESM": true,
|
|
700
|
+
"relativePath": [
|
|
701
|
+
"dist",
|
|
702
|
+
"commands",
|
|
703
|
+
"rules.js"
|
|
704
|
+
]
|
|
705
|
+
},
|
|
706
|
+
"runtimes": {
|
|
707
|
+
"aliases": [],
|
|
708
|
+
"args": {},
|
|
709
|
+
"description": "List all supported runtimes and dependencies.",
|
|
710
|
+
"flags": {},
|
|
711
|
+
"hasDynamicHelp": false,
|
|
712
|
+
"hidden": false,
|
|
713
|
+
"hiddenAliases": [],
|
|
714
|
+
"id": "runtimes",
|
|
715
|
+
"pluginAlias": "checkly",
|
|
716
|
+
"pluginName": "checkly",
|
|
717
|
+
"pluginType": "core",
|
|
718
|
+
"strict": true,
|
|
719
|
+
"enableJsonFlag": false,
|
|
720
|
+
"coreCommand": false,
|
|
721
|
+
"readOnly": true,
|
|
722
|
+
"destructive": false,
|
|
723
|
+
"idempotent": true,
|
|
724
|
+
"isESM": true,
|
|
725
|
+
"relativePath": [
|
|
726
|
+
"dist",
|
|
727
|
+
"commands",
|
|
728
|
+
"runtimes.js"
|
|
729
|
+
]
|
|
730
|
+
},
|
|
731
|
+
"switch": {
|
|
732
|
+
"aliases": [],
|
|
733
|
+
"args": {},
|
|
734
|
+
"description": "Switch user account.",
|
|
735
|
+
"flags": {
|
|
736
|
+
"account-id": {
|
|
737
|
+
"char": "a",
|
|
738
|
+
"description": "The id of the account you want to switch to.",
|
|
739
|
+
"name": "account-id",
|
|
740
|
+
"hasDynamicHelp": false,
|
|
741
|
+
"multiple": false,
|
|
742
|
+
"type": "option"
|
|
743
|
+
}
|
|
744
|
+
},
|
|
745
|
+
"hasDynamicHelp": false,
|
|
746
|
+
"hidden": false,
|
|
747
|
+
"hiddenAliases": [],
|
|
748
|
+
"id": "switch",
|
|
749
|
+
"pluginAlias": "checkly",
|
|
750
|
+
"pluginName": "checkly",
|
|
751
|
+
"pluginType": "core",
|
|
752
|
+
"strict": true,
|
|
753
|
+
"enableJsonFlag": false,
|
|
754
|
+
"coreCommand": false,
|
|
755
|
+
"readOnly": false,
|
|
756
|
+
"destructive": false,
|
|
757
|
+
"idempotent": true,
|
|
758
|
+
"isESM": true,
|
|
759
|
+
"relativePath": [
|
|
760
|
+
"dist",
|
|
761
|
+
"commands",
|
|
762
|
+
"switch.js"
|
|
763
|
+
]
|
|
764
|
+
},
|
|
765
|
+
"sync-playwright": {
|
|
766
|
+
"aliases": [],
|
|
767
|
+
"args": {},
|
|
768
|
+
"description": "Copy Playwright config into the Checkly config file.",
|
|
769
|
+
"flags": {},
|
|
770
|
+
"hasDynamicHelp": false,
|
|
771
|
+
"hidden": false,
|
|
772
|
+
"hiddenAliases": [],
|
|
773
|
+
"id": "sync-playwright",
|
|
774
|
+
"pluginAlias": "checkly",
|
|
775
|
+
"pluginName": "checkly",
|
|
776
|
+
"pluginType": "core",
|
|
777
|
+
"strict": true,
|
|
778
|
+
"enableJsonFlag": false,
|
|
779
|
+
"coreCommand": false,
|
|
780
|
+
"readOnly": false,
|
|
781
|
+
"destructive": false,
|
|
782
|
+
"idempotent": true,
|
|
783
|
+
"isESM": true,
|
|
784
|
+
"relativePath": [
|
|
785
|
+
"dist",
|
|
786
|
+
"commands",
|
|
787
|
+
"sync-playwright.js"
|
|
788
|
+
]
|
|
789
|
+
},
|
|
790
|
+
"test": {
|
|
791
|
+
"aliases": [],
|
|
792
|
+
"args": {
|
|
793
|
+
"fileArgs": {
|
|
794
|
+
"default": ".*",
|
|
795
|
+
"description": "Only run checks where the file name matches a regular expression",
|
|
796
|
+
"name": "fileArgs",
|
|
797
|
+
"required": false
|
|
798
|
+
}
|
|
799
|
+
},
|
|
800
|
+
"description": "Test your checks on Checkly.",
|
|
801
|
+
"flags": {
|
|
802
|
+
"location": {
|
|
803
|
+
"char": "l",
|
|
804
|
+
"description": "The location to run the checks at.",
|
|
805
|
+
"name": "location",
|
|
806
|
+
"hasDynamicHelp": false,
|
|
807
|
+
"multiple": false,
|
|
808
|
+
"type": "option"
|
|
809
|
+
},
|
|
810
|
+
"private-location": {
|
|
811
|
+
"description": "The private location to run checks at.",
|
|
812
|
+
"exclusive": [
|
|
813
|
+
"location"
|
|
814
|
+
],
|
|
815
|
+
"name": "private-location",
|
|
816
|
+
"hasDynamicHelp": false,
|
|
817
|
+
"multiple": false,
|
|
818
|
+
"type": "option"
|
|
819
|
+
},
|
|
820
|
+
"grep": {
|
|
821
|
+
"char": "g",
|
|
822
|
+
"description": "Only run checks where the check name matches a regular expression.",
|
|
823
|
+
"name": "grep",
|
|
824
|
+
"default": ".*",
|
|
825
|
+
"hasDynamicHelp": false,
|
|
826
|
+
"multiple": false,
|
|
827
|
+
"type": "option"
|
|
828
|
+
},
|
|
829
|
+
"tags": {
|
|
830
|
+
"char": "t",
|
|
831
|
+
"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).",
|
|
832
|
+
"name": "tags",
|
|
833
|
+
"required": false,
|
|
834
|
+
"hasDynamicHelp": false,
|
|
835
|
+
"multiple": true,
|
|
836
|
+
"type": "option"
|
|
837
|
+
},
|
|
838
|
+
"env": {
|
|
839
|
+
"char": "e",
|
|
840
|
+
"description": "Env vars to be passed to the test run.",
|
|
841
|
+
"exclusive": [
|
|
842
|
+
"env-file"
|
|
843
|
+
],
|
|
844
|
+
"name": "env",
|
|
845
|
+
"default": [],
|
|
846
|
+
"hasDynamicHelp": false,
|
|
847
|
+
"multiple": true,
|
|
848
|
+
"type": "option"
|
|
849
|
+
},
|
|
850
|
+
"env-file": {
|
|
851
|
+
"description": "dotenv file path to be passed. For example --env-file=\"./.env\"",
|
|
852
|
+
"exclusive": [
|
|
853
|
+
"env"
|
|
854
|
+
],
|
|
855
|
+
"name": "env-file",
|
|
856
|
+
"hasDynamicHelp": false,
|
|
857
|
+
"multiple": false,
|
|
858
|
+
"type": "option"
|
|
859
|
+
},
|
|
860
|
+
"list": {
|
|
861
|
+
"description": "list all checks but don't run them.",
|
|
862
|
+
"name": "list",
|
|
863
|
+
"allowNo": false,
|
|
864
|
+
"type": "boolean"
|
|
865
|
+
},
|
|
866
|
+
"timeout": {
|
|
867
|
+
"description": "A timeout (in seconds) to wait for checks to complete.",
|
|
868
|
+
"name": "timeout",
|
|
869
|
+
"default": 600,
|
|
870
|
+
"hasDynamicHelp": false,
|
|
871
|
+
"multiple": false,
|
|
872
|
+
"type": "option"
|
|
873
|
+
},
|
|
874
|
+
"verbose": {
|
|
875
|
+
"char": "v",
|
|
876
|
+
"description": "Always show the full logs of the checks.",
|
|
877
|
+
"name": "verbose",
|
|
878
|
+
"allowNo": true,
|
|
879
|
+
"type": "boolean"
|
|
880
|
+
},
|
|
881
|
+
"reporter": {
|
|
882
|
+
"char": "r",
|
|
883
|
+
"description": "A list of custom reporters for the test output.",
|
|
884
|
+
"name": "reporter",
|
|
885
|
+
"delimiter": ",",
|
|
886
|
+
"hasDynamicHelp": false,
|
|
887
|
+
"multiple": true,
|
|
888
|
+
"options": [
|
|
889
|
+
"list",
|
|
890
|
+
"dot",
|
|
891
|
+
"ci",
|
|
892
|
+
"github",
|
|
893
|
+
"json"
|
|
894
|
+
],
|
|
895
|
+
"type": "option"
|
|
896
|
+
},
|
|
897
|
+
"config": {
|
|
898
|
+
"char": "c",
|
|
899
|
+
"description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
|
|
900
|
+
"name": "config",
|
|
901
|
+
"hasDynamicHelp": false,
|
|
902
|
+
"multiple": false,
|
|
903
|
+
"type": "option"
|
|
904
|
+
},
|
|
905
|
+
"record": {
|
|
906
|
+
"description": "[default: true] Record test results in Checkly as a test session with full logs, traces and videos.",
|
|
907
|
+
"name": "record",
|
|
908
|
+
"allowNo": true,
|
|
909
|
+
"type": "boolean"
|
|
910
|
+
},
|
|
911
|
+
"test-session-name": {
|
|
912
|
+
"char": "n",
|
|
913
|
+
"description": "A name to use when storing results in Checkly.",
|
|
914
|
+
"name": "test-session-name",
|
|
915
|
+
"hasDynamicHelp": false,
|
|
916
|
+
"multiple": false,
|
|
917
|
+
"type": "option"
|
|
918
|
+
},
|
|
919
|
+
"update-snapshots": {
|
|
920
|
+
"char": "u",
|
|
921
|
+
"description": "Update any snapshots using the actual result of this test run.",
|
|
922
|
+
"name": "update-snapshots",
|
|
923
|
+
"allowNo": false,
|
|
924
|
+
"type": "boolean"
|
|
925
|
+
},
|
|
926
|
+
"retries": {
|
|
927
|
+
"description": "[default: 0, max: 3] How many times to retry a failing test run.",
|
|
928
|
+
"name": "retries",
|
|
929
|
+
"hasDynamicHelp": false,
|
|
930
|
+
"multiple": false,
|
|
931
|
+
"type": "option"
|
|
932
|
+
},
|
|
933
|
+
"verify-runtime-dependencies": {
|
|
934
|
+
"description": "[default: true] Return an error if checks import dependencies that are not supported by the selected runtime.",
|
|
935
|
+
"env": "CHECKLY_VERIFY_RUNTIME_DEPENDENCIES",
|
|
936
|
+
"name": "verify-runtime-dependencies",
|
|
937
|
+
"allowNo": true,
|
|
938
|
+
"type": "boolean"
|
|
939
|
+
},
|
|
940
|
+
"refresh-cache": {
|
|
941
|
+
"description": "Force a fresh install of dependencies and update the cached version.",
|
|
942
|
+
"name": "refresh-cache",
|
|
943
|
+
"allowNo": false,
|
|
944
|
+
"type": "boolean"
|
|
945
|
+
},
|
|
946
|
+
"detach": {
|
|
947
|
+
"char": "d",
|
|
948
|
+
"description": "Start checks in the cloud and exit after printing the test session ID.",
|
|
949
|
+
"name": "detach",
|
|
950
|
+
"allowNo": false,
|
|
951
|
+
"type": "boolean"
|
|
952
|
+
}
|
|
953
|
+
},
|
|
954
|
+
"hasDynamicHelp": false,
|
|
955
|
+
"hidden": false,
|
|
956
|
+
"hiddenAliases": [],
|
|
957
|
+
"id": "test",
|
|
958
|
+
"pluginAlias": "checkly",
|
|
959
|
+
"pluginName": "checkly",
|
|
960
|
+
"pluginType": "core",
|
|
961
|
+
"strict": false,
|
|
962
|
+
"enableJsonFlag": false,
|
|
963
|
+
"coreCommand": true,
|
|
964
|
+
"readOnly": true,
|
|
965
|
+
"destructive": false,
|
|
966
|
+
"idempotent": true,
|
|
967
|
+
"isESM": true,
|
|
968
|
+
"relativePath": [
|
|
969
|
+
"dist",
|
|
970
|
+
"commands",
|
|
971
|
+
"test.js"
|
|
972
|
+
]
|
|
973
|
+
},
|
|
974
|
+
"trigger": {
|
|
975
|
+
"aliases": [],
|
|
976
|
+
"args": {},
|
|
977
|
+
"description": "Trigger your existing checks on Checkly.",
|
|
978
|
+
"flags": {
|
|
979
|
+
"location": {
|
|
980
|
+
"char": "l",
|
|
981
|
+
"description": "The location to run the checks at.",
|
|
982
|
+
"name": "location",
|
|
983
|
+
"hasDynamicHelp": false,
|
|
984
|
+
"multiple": false,
|
|
985
|
+
"type": "option"
|
|
986
|
+
},
|
|
987
|
+
"private-location": {
|
|
988
|
+
"description": "The private location to run checks at.",
|
|
989
|
+
"exclusive": [
|
|
990
|
+
"location"
|
|
991
|
+
],
|
|
992
|
+
"name": "private-location",
|
|
993
|
+
"hasDynamicHelp": false,
|
|
994
|
+
"multiple": false,
|
|
995
|
+
"type": "option"
|
|
996
|
+
},
|
|
997
|
+
"tags": {
|
|
998
|
+
"char": "t",
|
|
999
|
+
"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).",
|
|
1000
|
+
"name": "tags",
|
|
1001
|
+
"required": false,
|
|
1002
|
+
"hasDynamicHelp": false,
|
|
1003
|
+
"multiple": true,
|
|
1004
|
+
"type": "option"
|
|
1005
|
+
},
|
|
1006
|
+
"check-id": {
|
|
1007
|
+
"description": "Trigger specific checks by ID. Accepts a comma separated list and can be passed multiple times. Can be combined with --tags to further filter the matching checks.",
|
|
1008
|
+
"name": "check-id",
|
|
1009
|
+
"required": false,
|
|
1010
|
+
"delimiter": ",",
|
|
1011
|
+
"hasDynamicHelp": false,
|
|
1012
|
+
"multiple": true,
|
|
1013
|
+
"type": "option"
|
|
1014
|
+
},
|
|
1015
|
+
"config": {
|
|
1016
|
+
"char": "c",
|
|
1017
|
+
"description": "The Checkly CLI config filename.",
|
|
1018
|
+
"name": "config",
|
|
1019
|
+
"hasDynamicHelp": false,
|
|
1020
|
+
"multiple": false,
|
|
1021
|
+
"type": "option"
|
|
1022
|
+
},
|
|
1023
|
+
"timeout": {
|
|
1024
|
+
"description": "A timeout (in seconds) to wait for checks to complete.",
|
|
1025
|
+
"name": "timeout",
|
|
1026
|
+
"default": 600,
|
|
1027
|
+
"hasDynamicHelp": false,
|
|
1028
|
+
"multiple": false,
|
|
1029
|
+
"type": "option"
|
|
1030
|
+
},
|
|
1031
|
+
"verbose": {
|
|
1032
|
+
"char": "v",
|
|
1033
|
+
"description": "Always show the full logs of the checks.",
|
|
1034
|
+
"name": "verbose",
|
|
1035
|
+
"allowNo": true,
|
|
1036
|
+
"type": "boolean"
|
|
1037
|
+
},
|
|
1038
|
+
"fail-on-no-matching": {
|
|
1039
|
+
"description": "Exit with a failing status code when there are no matching tests. Enabled by default.",
|
|
1040
|
+
"name": "fail-on-no-matching",
|
|
1041
|
+
"allowNo": true,
|
|
1042
|
+
"type": "boolean"
|
|
1043
|
+
},
|
|
1044
|
+
"reporter": {
|
|
1045
|
+
"char": "r",
|
|
1046
|
+
"description": "A list of custom reporters for the test output.",
|
|
1047
|
+
"name": "reporter",
|
|
1048
|
+
"delimiter": ",",
|
|
1049
|
+
"hasDynamicHelp": false,
|
|
1050
|
+
"multiple": true,
|
|
1051
|
+
"options": [
|
|
1052
|
+
"list",
|
|
1053
|
+
"dot",
|
|
1054
|
+
"ci",
|
|
1055
|
+
"github",
|
|
1056
|
+
"json"
|
|
1057
|
+
],
|
|
1058
|
+
"type": "option"
|
|
1059
|
+
},
|
|
1060
|
+
"env": {
|
|
1061
|
+
"char": "e",
|
|
1062
|
+
"description": "Env vars to be passed to the check run.",
|
|
1063
|
+
"exclusive": [
|
|
1064
|
+
"env-file"
|
|
1065
|
+
],
|
|
1066
|
+
"name": "env",
|
|
1067
|
+
"default": [],
|
|
1068
|
+
"hasDynamicHelp": false,
|
|
1069
|
+
"multiple": true,
|
|
1070
|
+
"type": "option"
|
|
1071
|
+
},
|
|
1072
|
+
"env-file": {
|
|
1073
|
+
"description": "dotenv file path to be passed. For example --env-file=\"./.env\"",
|
|
1074
|
+
"exclusive": [
|
|
1075
|
+
"env"
|
|
1076
|
+
],
|
|
1077
|
+
"name": "env-file",
|
|
1078
|
+
"hasDynamicHelp": false,
|
|
1079
|
+
"multiple": false,
|
|
1080
|
+
"type": "option"
|
|
1081
|
+
},
|
|
1082
|
+
"record": {
|
|
1083
|
+
"description": "[default: true] Record check results in Checkly as a test session with full logs, traces and videos.",
|
|
1084
|
+
"name": "record",
|
|
1085
|
+
"allowNo": true,
|
|
1086
|
+
"type": "boolean"
|
|
1087
|
+
},
|
|
1088
|
+
"test-session-name": {
|
|
1089
|
+
"char": "n",
|
|
1090
|
+
"description": "A name to use when storing results in Checkly.",
|
|
1091
|
+
"name": "test-session-name",
|
|
1092
|
+
"hasDynamicHelp": false,
|
|
1093
|
+
"multiple": false,
|
|
1094
|
+
"type": "option"
|
|
1095
|
+
},
|
|
1096
|
+
"retries": {
|
|
1097
|
+
"description": "[default: 0, max: 3] How many times to retry a check run.",
|
|
1098
|
+
"name": "retries",
|
|
1099
|
+
"hasDynamicHelp": false,
|
|
1100
|
+
"multiple": false,
|
|
1101
|
+
"type": "option"
|
|
1102
|
+
},
|
|
1103
|
+
"refresh-cache": {
|
|
1104
|
+
"description": "Force a fresh install of dependencies and update the cached version.",
|
|
1105
|
+
"name": "refresh-cache",
|
|
1106
|
+
"allowNo": false,
|
|
1107
|
+
"type": "boolean"
|
|
1108
|
+
},
|
|
1109
|
+
"detach": {
|
|
1110
|
+
"char": "d",
|
|
1111
|
+
"description": "Start checks in the cloud and exit after printing the test session ID.",
|
|
1112
|
+
"name": "detach",
|
|
1113
|
+
"allowNo": false,
|
|
1114
|
+
"type": "boolean"
|
|
1115
|
+
}
|
|
1116
|
+
},
|
|
1117
|
+
"hasDynamicHelp": false,
|
|
1118
|
+
"hidden": false,
|
|
1119
|
+
"hiddenAliases": [],
|
|
1120
|
+
"id": "trigger",
|
|
1121
|
+
"pluginAlias": "checkly",
|
|
1122
|
+
"pluginName": "checkly",
|
|
1123
|
+
"pluginType": "core",
|
|
1124
|
+
"strict": true,
|
|
1125
|
+
"enableJsonFlag": false,
|
|
1126
|
+
"coreCommand": true,
|
|
1127
|
+
"readOnly": false,
|
|
1128
|
+
"destructive": false,
|
|
1129
|
+
"idempotent": true,
|
|
1130
|
+
"isESM": true,
|
|
1131
|
+
"relativePath": [
|
|
1132
|
+
"dist",
|
|
1133
|
+
"commands",
|
|
1134
|
+
"trigger.js"
|
|
1135
|
+
]
|
|
1136
|
+
},
|
|
1137
|
+
"validate": {
|
|
1138
|
+
"aliases": [],
|
|
1139
|
+
"args": {},
|
|
1140
|
+
"description": "Validate your project.",
|
|
1141
|
+
"flags": {
|
|
1142
|
+
"config": {
|
|
1143
|
+
"char": "c",
|
|
1144
|
+
"description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
|
|
1145
|
+
"name": "config",
|
|
1146
|
+
"hasDynamicHelp": false,
|
|
1147
|
+
"multiple": false,
|
|
1148
|
+
"type": "option"
|
|
1149
|
+
},
|
|
1150
|
+
"verify-runtime-dependencies": {
|
|
1151
|
+
"description": "[default: true] Return an error if checks import dependencies that are not supported by the selected runtime.",
|
|
1152
|
+
"env": "CHECKLY_VERIFY_RUNTIME_DEPENDENCIES",
|
|
1153
|
+
"name": "verify-runtime-dependencies",
|
|
1154
|
+
"allowNo": true,
|
|
1155
|
+
"type": "boolean"
|
|
1156
|
+
}
|
|
1157
|
+
},
|
|
1158
|
+
"hasDynamicHelp": false,
|
|
1159
|
+
"hidden": true,
|
|
1160
|
+
"hiddenAliases": [],
|
|
1161
|
+
"id": "validate",
|
|
1162
|
+
"pluginAlias": "checkly",
|
|
1163
|
+
"pluginName": "checkly",
|
|
1164
|
+
"pluginType": "core",
|
|
1165
|
+
"strict": true,
|
|
1166
|
+
"enableJsonFlag": false,
|
|
1167
|
+
"coreCommand": true,
|
|
1168
|
+
"readOnly": true,
|
|
1169
|
+
"destructive": false,
|
|
1170
|
+
"idempotent": true,
|
|
1171
|
+
"isESM": true,
|
|
1172
|
+
"relativePath": [
|
|
1173
|
+
"dist",
|
|
1174
|
+
"commands",
|
|
1175
|
+
"validate.js"
|
|
1176
|
+
]
|
|
1177
|
+
},
|
|
1178
|
+
"whoami": {
|
|
1179
|
+
"aliases": [],
|
|
1180
|
+
"args": {},
|
|
1181
|
+
"description": "See your currently logged in account and user.",
|
|
1182
|
+
"flags": {},
|
|
1183
|
+
"hasDynamicHelp": false,
|
|
1184
|
+
"hidden": false,
|
|
1185
|
+
"hiddenAliases": [],
|
|
1186
|
+
"id": "whoami",
|
|
1187
|
+
"pluginAlias": "checkly",
|
|
1188
|
+
"pluginName": "checkly",
|
|
1189
|
+
"pluginType": "core",
|
|
1190
|
+
"strict": true,
|
|
1191
|
+
"enableJsonFlag": false,
|
|
1192
|
+
"coreCommand": false,
|
|
1193
|
+
"readOnly": true,
|
|
1194
|
+
"destructive": false,
|
|
1195
|
+
"idempotent": true,
|
|
1196
|
+
"isESM": true,
|
|
1197
|
+
"relativePath": [
|
|
1198
|
+
"dist",
|
|
1199
|
+
"commands",
|
|
1200
|
+
"whoami.js"
|
|
1201
|
+
]
|
|
1202
|
+
},
|
|
1203
|
+
"account:plan": {
|
|
1204
|
+
"aliases": [],
|
|
1205
|
+
"args": {
|
|
1206
|
+
"key": {
|
|
1207
|
+
"description": "Entitlement key to look up (e.g. BROWSER_CHECKS). Shows detail view.",
|
|
1208
|
+
"name": "key",
|
|
1209
|
+
"required": false
|
|
1210
|
+
}
|
|
1211
|
+
},
|
|
1212
|
+
"description": "Show your account plan, entitlements, and feature limits.",
|
|
1213
|
+
"flags": {
|
|
1214
|
+
"type": {
|
|
1215
|
+
"char": "t",
|
|
1216
|
+
"description": "Filter entitlements by type.",
|
|
1217
|
+
"name": "type",
|
|
1218
|
+
"hasDynamicHelp": false,
|
|
1219
|
+
"multiple": false,
|
|
1220
|
+
"options": [
|
|
1221
|
+
"metered",
|
|
1222
|
+
"flag"
|
|
1223
|
+
],
|
|
1224
|
+
"type": "option"
|
|
1225
|
+
},
|
|
1226
|
+
"search": {
|
|
1227
|
+
"char": "s",
|
|
1228
|
+
"description": "Search entitlements by name or description.",
|
|
1229
|
+
"name": "search",
|
|
1230
|
+
"hasDynamicHelp": false,
|
|
1231
|
+
"multiple": false,
|
|
1232
|
+
"type": "option"
|
|
1233
|
+
},
|
|
1234
|
+
"disabled": {
|
|
1235
|
+
"description": "Show only entitlements not included in your plan.",
|
|
1236
|
+
"name": "disabled",
|
|
1237
|
+
"allowNo": false,
|
|
1238
|
+
"type": "boolean"
|
|
1239
|
+
},
|
|
1240
|
+
"output": {
|
|
1241
|
+
"char": "o",
|
|
1242
|
+
"description": "Output format.",
|
|
1243
|
+
"name": "output",
|
|
1244
|
+
"default": "table",
|
|
1245
|
+
"hasDynamicHelp": false,
|
|
1246
|
+
"multiple": false,
|
|
1247
|
+
"options": [
|
|
1248
|
+
"table",
|
|
1249
|
+
"json",
|
|
1250
|
+
"md"
|
|
1251
|
+
],
|
|
1252
|
+
"type": "option"
|
|
1253
|
+
}
|
|
1254
|
+
},
|
|
1255
|
+
"hasDynamicHelp": false,
|
|
1256
|
+
"hidden": false,
|
|
1257
|
+
"hiddenAliases": [],
|
|
1258
|
+
"id": "account:plan",
|
|
1259
|
+
"pluginAlias": "checkly",
|
|
1260
|
+
"pluginName": "checkly",
|
|
1261
|
+
"pluginType": "core",
|
|
1262
|
+
"strict": true,
|
|
1263
|
+
"enableJsonFlag": false,
|
|
1264
|
+
"coreCommand": false,
|
|
1265
|
+
"readOnly": true,
|
|
1266
|
+
"destructive": false,
|
|
1267
|
+
"idempotent": true,
|
|
1268
|
+
"isESM": true,
|
|
1269
|
+
"relativePath": [
|
|
1270
|
+
"dist",
|
|
1271
|
+
"commands",
|
|
1272
|
+
"account",
|
|
1273
|
+
"plan.js"
|
|
1274
|
+
]
|
|
1275
|
+
},
|
|
1276
|
+
"alert-channels:get": {
|
|
1277
|
+
"aliases": [],
|
|
1278
|
+
"args": {
|
|
1279
|
+
"id": {
|
|
1280
|
+
"description": "The alert channel ID to retrieve.",
|
|
1281
|
+
"name": "id",
|
|
1282
|
+
"required": true
|
|
1283
|
+
}
|
|
1284
|
+
},
|
|
1285
|
+
"description": "Get details of an alert channel.",
|
|
1286
|
+
"flags": {
|
|
1287
|
+
"output": {
|
|
1288
|
+
"char": "o",
|
|
1289
|
+
"description": "Output format.",
|
|
1290
|
+
"name": "output",
|
|
1291
|
+
"default": "detail",
|
|
1292
|
+
"hasDynamicHelp": false,
|
|
1293
|
+
"multiple": false,
|
|
1294
|
+
"options": [
|
|
1295
|
+
"detail",
|
|
1296
|
+
"json",
|
|
1297
|
+
"md"
|
|
1298
|
+
],
|
|
1299
|
+
"type": "option"
|
|
1300
|
+
}
|
|
1301
|
+
},
|
|
1302
|
+
"hasDynamicHelp": false,
|
|
1303
|
+
"hidden": false,
|
|
1304
|
+
"hiddenAliases": [],
|
|
1305
|
+
"id": "alert-channels:get",
|
|
1306
|
+
"pluginAlias": "checkly",
|
|
1307
|
+
"pluginName": "checkly",
|
|
1308
|
+
"pluginType": "core",
|
|
1309
|
+
"strict": true,
|
|
1310
|
+
"enableJsonFlag": false,
|
|
1311
|
+
"coreCommand": false,
|
|
1312
|
+
"readOnly": true,
|
|
1313
|
+
"destructive": false,
|
|
1314
|
+
"idempotent": true,
|
|
1315
|
+
"isESM": true,
|
|
1316
|
+
"relativePath": [
|
|
1317
|
+
"dist",
|
|
1318
|
+
"commands",
|
|
1319
|
+
"alert-channels",
|
|
1320
|
+
"get.js"
|
|
1321
|
+
]
|
|
1322
|
+
},
|
|
1323
|
+
"alert-channels:list": {
|
|
1324
|
+
"aliases": [],
|
|
1325
|
+
"args": {},
|
|
1326
|
+
"description": "List all alert channels in your account.",
|
|
1327
|
+
"flags": {
|
|
1328
|
+
"limit": {
|
|
1329
|
+
"char": "l",
|
|
1330
|
+
"description": "Number of alert channels to return (1-100).",
|
|
1331
|
+
"name": "limit",
|
|
1332
|
+
"default": 25,
|
|
1333
|
+
"hasDynamicHelp": false,
|
|
1334
|
+
"multiple": false,
|
|
1335
|
+
"type": "option"
|
|
1336
|
+
},
|
|
1337
|
+
"page": {
|
|
1338
|
+
"char": "p",
|
|
1339
|
+
"description": "Page number.",
|
|
1340
|
+
"name": "page",
|
|
1341
|
+
"default": 1,
|
|
1342
|
+
"hasDynamicHelp": false,
|
|
1343
|
+
"multiple": false,
|
|
1344
|
+
"type": "option"
|
|
1345
|
+
},
|
|
1346
|
+
"output": {
|
|
1347
|
+
"char": "o",
|
|
1348
|
+
"description": "Output format.",
|
|
1349
|
+
"name": "output",
|
|
1350
|
+
"default": "table",
|
|
1351
|
+
"hasDynamicHelp": false,
|
|
1352
|
+
"multiple": false,
|
|
1353
|
+
"options": [
|
|
1354
|
+
"table",
|
|
1355
|
+
"json",
|
|
1356
|
+
"md"
|
|
1357
|
+
],
|
|
1358
|
+
"type": "option"
|
|
1359
|
+
}
|
|
1360
|
+
},
|
|
1361
|
+
"hasDynamicHelp": false,
|
|
1362
|
+
"hidden": false,
|
|
1363
|
+
"hiddenAliases": [],
|
|
1364
|
+
"id": "alert-channels:list",
|
|
1365
|
+
"pluginAlias": "checkly",
|
|
1366
|
+
"pluginName": "checkly",
|
|
1367
|
+
"pluginType": "core",
|
|
1368
|
+
"strict": true,
|
|
1369
|
+
"enableJsonFlag": false,
|
|
1370
|
+
"coreCommand": false,
|
|
1371
|
+
"readOnly": true,
|
|
1372
|
+
"destructive": false,
|
|
1373
|
+
"idempotent": true,
|
|
1374
|
+
"isESM": true,
|
|
1375
|
+
"relativePath": [
|
|
1376
|
+
"dist",
|
|
1377
|
+
"commands",
|
|
1378
|
+
"alert-channels",
|
|
1379
|
+
"list.js"
|
|
1380
|
+
]
|
|
1381
|
+
},
|
|
1382
|
+
"alert-channels:logs": {
|
|
1383
|
+
"aliases": [],
|
|
1384
|
+
"args": {
|
|
1385
|
+
"id": {
|
|
1386
|
+
"description": "The alert channel ID to retrieve logs for.",
|
|
1387
|
+
"name": "id",
|
|
1388
|
+
"required": true
|
|
1389
|
+
}
|
|
1390
|
+
},
|
|
1391
|
+
"description": "List notification logs for an alert channel.",
|
|
1392
|
+
"flags": {
|
|
1393
|
+
"limit": {
|
|
1394
|
+
"char": "l",
|
|
1395
|
+
"description": "Number of logs to return (1-100).",
|
|
1396
|
+
"name": "limit",
|
|
1397
|
+
"default": 25,
|
|
1398
|
+
"hasDynamicHelp": false,
|
|
1399
|
+
"multiple": false,
|
|
1400
|
+
"type": "option"
|
|
1401
|
+
},
|
|
1402
|
+
"page": {
|
|
1403
|
+
"char": "p",
|
|
1404
|
+
"description": "Page number.",
|
|
1405
|
+
"name": "page",
|
|
1406
|
+
"default": 1,
|
|
1407
|
+
"hasDynamicHelp": false,
|
|
1408
|
+
"multiple": false,
|
|
1409
|
+
"type": "option"
|
|
1410
|
+
},
|
|
1411
|
+
"from": {
|
|
1412
|
+
"description": "Unix timestamp for the start of the log window.",
|
|
1413
|
+
"name": "from",
|
|
1414
|
+
"hasDynamicHelp": false,
|
|
1415
|
+
"multiple": false,
|
|
1416
|
+
"type": "option"
|
|
1417
|
+
},
|
|
1418
|
+
"to": {
|
|
1419
|
+
"description": "Unix timestamp for the end of the log window.",
|
|
1420
|
+
"name": "to",
|
|
1421
|
+
"hasDynamicHelp": false,
|
|
1422
|
+
"multiple": false,
|
|
1423
|
+
"type": "option"
|
|
1424
|
+
},
|
|
1425
|
+
"status": {
|
|
1426
|
+
"char": "s",
|
|
1427
|
+
"description": "Filter logs by status.",
|
|
1428
|
+
"name": "status",
|
|
1429
|
+
"hasDynamicHelp": false,
|
|
1430
|
+
"multiple": false,
|
|
1431
|
+
"options": [
|
|
1432
|
+
"failed"
|
|
1433
|
+
],
|
|
1434
|
+
"type": "option"
|
|
1435
|
+
},
|
|
1436
|
+
"output": {
|
|
1437
|
+
"char": "o",
|
|
1438
|
+
"description": "Output format.",
|
|
1439
|
+
"name": "output",
|
|
1440
|
+
"default": "table",
|
|
1441
|
+
"hasDynamicHelp": false,
|
|
1442
|
+
"multiple": false,
|
|
1443
|
+
"options": [
|
|
1444
|
+
"table",
|
|
1445
|
+
"json",
|
|
1446
|
+
"md"
|
|
1447
|
+
],
|
|
1448
|
+
"type": "option"
|
|
1449
|
+
}
|
|
1450
|
+
},
|
|
1451
|
+
"hasDynamicHelp": false,
|
|
1452
|
+
"hidden": false,
|
|
1453
|
+
"hiddenAliases": [],
|
|
1454
|
+
"id": "alert-channels:logs",
|
|
1455
|
+
"pluginAlias": "checkly",
|
|
1456
|
+
"pluginName": "checkly",
|
|
1457
|
+
"pluginType": "core",
|
|
1458
|
+
"strict": true,
|
|
1459
|
+
"enableJsonFlag": false,
|
|
1460
|
+
"coreCommand": false,
|
|
1461
|
+
"readOnly": true,
|
|
1462
|
+
"destructive": false,
|
|
1463
|
+
"idempotent": true,
|
|
1464
|
+
"isESM": true,
|
|
1465
|
+
"relativePath": [
|
|
1466
|
+
"dist",
|
|
1467
|
+
"commands",
|
|
1468
|
+
"alert-channels",
|
|
1469
|
+
"logs.js"
|
|
1470
|
+
]
|
|
1471
|
+
},
|
|
1472
|
+
"checks:delete": {
|
|
1473
|
+
"aliases": [],
|
|
1474
|
+
"args": {
|
|
1475
|
+
"id": {
|
|
1476
|
+
"description": "The ID of the check to delete.",
|
|
1477
|
+
"name": "id",
|
|
1478
|
+
"required": true
|
|
1479
|
+
}
|
|
1480
|
+
},
|
|
1481
|
+
"description": "Delete a check by ID. Checks managed by a CLI project are recreated on the next deploy — remove those from your project code instead.",
|
|
1482
|
+
"flags": {
|
|
1483
|
+
"force": {
|
|
1484
|
+
"char": "f",
|
|
1485
|
+
"description": "Skip confirmation prompt.",
|
|
1486
|
+
"name": "force",
|
|
1487
|
+
"allowNo": false,
|
|
1488
|
+
"type": "boolean"
|
|
1489
|
+
},
|
|
1490
|
+
"dry-run": {
|
|
1491
|
+
"description": "Preview what would happen without executing.",
|
|
1492
|
+
"name": "dry-run",
|
|
1493
|
+
"allowNo": false,
|
|
1494
|
+
"type": "boolean"
|
|
1495
|
+
}
|
|
1496
|
+
},
|
|
1497
|
+
"hasDynamicHelp": false,
|
|
1498
|
+
"hidden": false,
|
|
1499
|
+
"hiddenAliases": [],
|
|
1500
|
+
"id": "checks:delete",
|
|
1501
|
+
"pluginAlias": "checkly",
|
|
1502
|
+
"pluginName": "checkly",
|
|
1503
|
+
"pluginType": "core",
|
|
1504
|
+
"strict": true,
|
|
1505
|
+
"enableJsonFlag": false,
|
|
1506
|
+
"coreCommand": false,
|
|
1507
|
+
"readOnly": false,
|
|
1508
|
+
"destructive": true,
|
|
1509
|
+
"idempotent": true,
|
|
1510
|
+
"isESM": true,
|
|
1511
|
+
"relativePath": [
|
|
1512
|
+
"dist",
|
|
1513
|
+
"commands",
|
|
1514
|
+
"checks",
|
|
1515
|
+
"delete.js"
|
|
1516
|
+
]
|
|
1517
|
+
},
|
|
1518
|
+
"checks:get": {
|
|
1519
|
+
"aliases": [],
|
|
1520
|
+
"args": {
|
|
1521
|
+
"id": {
|
|
1522
|
+
"description": "The ID of the check to retrieve.",
|
|
1523
|
+
"name": "id",
|
|
1524
|
+
"required": true
|
|
1525
|
+
}
|
|
1526
|
+
},
|
|
1527
|
+
"description": "Get details of a specific check, including recent results. Use --result to drill into a specific result.",
|
|
1528
|
+
"flags": {
|
|
1529
|
+
"result": {
|
|
1530
|
+
"char": "r",
|
|
1531
|
+
"description": "Show details for a specific result ID.",
|
|
1532
|
+
"name": "result",
|
|
1533
|
+
"hasDynamicHelp": false,
|
|
1534
|
+
"multiple": false,
|
|
1535
|
+
"type": "option"
|
|
1536
|
+
},
|
|
1537
|
+
"include-attempts": {
|
|
1538
|
+
"dependsOn": [
|
|
1539
|
+
"result"
|
|
1540
|
+
],
|
|
1541
|
+
"description": "Show individual retry attempts for the result (use with --result).",
|
|
1542
|
+
"name": "include-attempts",
|
|
1543
|
+
"allowNo": false,
|
|
1544
|
+
"type": "boolean"
|
|
1545
|
+
},
|
|
1546
|
+
"error-group": {
|
|
1547
|
+
"char": "e",
|
|
1548
|
+
"description": "Show full details for a specific error group ID.",
|
|
1549
|
+
"name": "error-group",
|
|
1550
|
+
"hasDynamicHelp": false,
|
|
1551
|
+
"multiple": false,
|
|
1552
|
+
"type": "option"
|
|
1553
|
+
},
|
|
1554
|
+
"results-limit": {
|
|
1555
|
+
"description": "Number of recent results to show.",
|
|
1556
|
+
"name": "results-limit",
|
|
1557
|
+
"default": 10,
|
|
1558
|
+
"hasDynamicHelp": false,
|
|
1559
|
+
"multiple": false,
|
|
1560
|
+
"type": "option"
|
|
1561
|
+
},
|
|
1562
|
+
"results-cursor": {
|
|
1563
|
+
"description": "Cursor for results pagination (from previous output).",
|
|
1564
|
+
"name": "results-cursor",
|
|
1565
|
+
"hasDynamicHelp": false,
|
|
1566
|
+
"multiple": false,
|
|
1567
|
+
"type": "option"
|
|
1568
|
+
},
|
|
1569
|
+
"stats-range": {
|
|
1570
|
+
"description": "Time range for stats.",
|
|
1571
|
+
"name": "stats-range",
|
|
1572
|
+
"default": "last24Hours",
|
|
1573
|
+
"hasDynamicHelp": false,
|
|
1574
|
+
"multiple": false,
|
|
1575
|
+
"options": [
|
|
1576
|
+
"last24Hours",
|
|
1577
|
+
"last7Days",
|
|
1578
|
+
"last30Days",
|
|
1579
|
+
"thisWeek",
|
|
1580
|
+
"thisMonth",
|
|
1581
|
+
"lastWeek",
|
|
1582
|
+
"lastMonth"
|
|
1583
|
+
],
|
|
1584
|
+
"type": "option"
|
|
1585
|
+
},
|
|
1586
|
+
"group-by": {
|
|
1587
|
+
"description": "Group stats by dimension.",
|
|
1588
|
+
"name": "group-by",
|
|
1589
|
+
"hasDynamicHelp": false,
|
|
1590
|
+
"multiple": false,
|
|
1591
|
+
"options": [
|
|
1592
|
+
"location",
|
|
1593
|
+
"statusCode"
|
|
1594
|
+
],
|
|
1595
|
+
"type": "option"
|
|
1596
|
+
},
|
|
1597
|
+
"metrics": {
|
|
1598
|
+
"description": "Comma-separated list of metrics to show (overrides defaults).",
|
|
1599
|
+
"name": "metrics",
|
|
1600
|
+
"hasDynamicHelp": false,
|
|
1601
|
+
"multiple": false,
|
|
1602
|
+
"type": "option"
|
|
1603
|
+
},
|
|
1604
|
+
"filter-status": {
|
|
1605
|
+
"description": "Only include runs with this status in stats.",
|
|
1606
|
+
"name": "filter-status",
|
|
1607
|
+
"hasDynamicHelp": false,
|
|
1608
|
+
"multiple": false,
|
|
1609
|
+
"options": [
|
|
1610
|
+
"success",
|
|
1611
|
+
"failure"
|
|
1612
|
+
],
|
|
1613
|
+
"type": "option"
|
|
1614
|
+
},
|
|
1615
|
+
"output": {
|
|
1616
|
+
"char": "o",
|
|
1617
|
+
"description": "Output format.",
|
|
1618
|
+
"name": "output",
|
|
1619
|
+
"default": "detail",
|
|
1620
|
+
"hasDynamicHelp": false,
|
|
1621
|
+
"multiple": false,
|
|
1622
|
+
"options": [
|
|
1623
|
+
"detail",
|
|
1624
|
+
"json",
|
|
1625
|
+
"md"
|
|
1626
|
+
],
|
|
1627
|
+
"type": "option"
|
|
1628
|
+
}
|
|
1629
|
+
},
|
|
1630
|
+
"hasDynamicHelp": false,
|
|
1631
|
+
"hidden": false,
|
|
1632
|
+
"hiddenAliases": [],
|
|
1633
|
+
"id": "checks:get",
|
|
1634
|
+
"pluginAlias": "checkly",
|
|
1635
|
+
"pluginName": "checkly",
|
|
1636
|
+
"pluginType": "core",
|
|
1637
|
+
"strict": true,
|
|
1638
|
+
"enableJsonFlag": false,
|
|
1639
|
+
"coreCommand": false,
|
|
1640
|
+
"readOnly": true,
|
|
1641
|
+
"destructive": false,
|
|
1642
|
+
"idempotent": true,
|
|
1643
|
+
"isESM": true,
|
|
1644
|
+
"relativePath": [
|
|
1645
|
+
"dist",
|
|
1646
|
+
"commands",
|
|
1647
|
+
"checks",
|
|
1648
|
+
"get.js"
|
|
1649
|
+
],
|
|
1650
|
+
"MAX_SEQUENCE_SPAN_SECONDS": 1800,
|
|
1651
|
+
"MAX_RESULT_PAGES": 15
|
|
1652
|
+
},
|
|
1653
|
+
"checks:list": {
|
|
1654
|
+
"aliases": [],
|
|
1655
|
+
"args": {},
|
|
1656
|
+
"description": "List all checks in your account.",
|
|
1657
|
+
"flags": {
|
|
1658
|
+
"limit": {
|
|
1659
|
+
"char": "l",
|
|
1660
|
+
"description": "Number of checks to return (1-100).",
|
|
1661
|
+
"name": "limit",
|
|
1662
|
+
"default": 25,
|
|
1663
|
+
"hasDynamicHelp": false,
|
|
1664
|
+
"multiple": false,
|
|
1665
|
+
"type": "option"
|
|
1666
|
+
},
|
|
1667
|
+
"page": {
|
|
1668
|
+
"char": "p",
|
|
1669
|
+
"description": "Page number.",
|
|
1670
|
+
"name": "page",
|
|
1671
|
+
"default": 1,
|
|
1672
|
+
"hasDynamicHelp": false,
|
|
1673
|
+
"multiple": false,
|
|
1674
|
+
"type": "option"
|
|
1675
|
+
},
|
|
1676
|
+
"tag": {
|
|
1677
|
+
"char": "t",
|
|
1678
|
+
"description": "Filter by tag. Can be specified multiple times.",
|
|
1679
|
+
"name": "tag",
|
|
1680
|
+
"delimiter": ",",
|
|
1681
|
+
"hasDynamicHelp": false,
|
|
1682
|
+
"multiple": true,
|
|
1683
|
+
"type": "option"
|
|
1684
|
+
},
|
|
1685
|
+
"search": {
|
|
1686
|
+
"char": "s",
|
|
1687
|
+
"description": "Filter checks by name (case-insensitive).",
|
|
1688
|
+
"name": "search",
|
|
1689
|
+
"hasDynamicHelp": false,
|
|
1690
|
+
"multiple": false,
|
|
1691
|
+
"type": "option"
|
|
1692
|
+
},
|
|
1693
|
+
"type": {
|
|
1694
|
+
"description": "Filter by check type.",
|
|
1695
|
+
"name": "type",
|
|
1696
|
+
"hasDynamicHelp": false,
|
|
1697
|
+
"multiple": false,
|
|
1698
|
+
"options": [
|
|
1699
|
+
"API",
|
|
1700
|
+
"BROWSER",
|
|
1701
|
+
"HEARTBEAT",
|
|
1702
|
+
"MULTI_STEP",
|
|
1703
|
+
"PLAYWRIGHT",
|
|
1704
|
+
"TCP",
|
|
1705
|
+
"ICMP",
|
|
1706
|
+
"DNS",
|
|
1707
|
+
"URL",
|
|
1708
|
+
"AGENTIC"
|
|
1709
|
+
],
|
|
1710
|
+
"type": "option"
|
|
1711
|
+
},
|
|
1712
|
+
"status": {
|
|
1713
|
+
"description": "Filter by check status.",
|
|
1714
|
+
"name": "status",
|
|
1715
|
+
"hasDynamicHelp": false,
|
|
1716
|
+
"multiple": false,
|
|
1717
|
+
"options": [
|
|
1718
|
+
"passing",
|
|
1719
|
+
"failing",
|
|
1720
|
+
"degraded"
|
|
1721
|
+
],
|
|
1722
|
+
"type": "option"
|
|
1723
|
+
},
|
|
1724
|
+
"hide-id": {
|
|
1725
|
+
"description": "Hide check IDs in table output.",
|
|
1726
|
+
"name": "hide-id",
|
|
1727
|
+
"allowNo": false,
|
|
1728
|
+
"type": "boolean"
|
|
1729
|
+
},
|
|
1730
|
+
"output": {
|
|
1731
|
+
"char": "o",
|
|
1732
|
+
"description": "Output format.",
|
|
1733
|
+
"name": "output",
|
|
1734
|
+
"default": "table",
|
|
1735
|
+
"hasDynamicHelp": false,
|
|
1736
|
+
"multiple": false,
|
|
1737
|
+
"options": [
|
|
1738
|
+
"table",
|
|
1739
|
+
"json",
|
|
1740
|
+
"md"
|
|
1741
|
+
],
|
|
1742
|
+
"type": "option"
|
|
1743
|
+
}
|
|
1744
|
+
},
|
|
1745
|
+
"hasDynamicHelp": false,
|
|
1746
|
+
"hidden": false,
|
|
1747
|
+
"hiddenAliases": [],
|
|
1748
|
+
"id": "checks:list",
|
|
1749
|
+
"pluginAlias": "checkly",
|
|
1750
|
+
"pluginName": "checkly",
|
|
1751
|
+
"pluginType": "core",
|
|
1752
|
+
"strict": true,
|
|
1753
|
+
"enableJsonFlag": false,
|
|
1754
|
+
"coreCommand": false,
|
|
1755
|
+
"readOnly": true,
|
|
1756
|
+
"destructive": false,
|
|
1757
|
+
"idempotent": true,
|
|
1758
|
+
"isESM": true,
|
|
1759
|
+
"relativePath": [
|
|
1760
|
+
"dist",
|
|
1761
|
+
"commands",
|
|
1762
|
+
"checks",
|
|
1763
|
+
"list.js"
|
|
1764
|
+
]
|
|
1765
|
+
},
|
|
1766
|
+
"checks:stats": {
|
|
1767
|
+
"aliases": [],
|
|
1768
|
+
"args": {
|
|
1769
|
+
"checkIds": {
|
|
1770
|
+
"description": "One or more check IDs to get stats for.",
|
|
1771
|
+
"name": "checkIds",
|
|
1772
|
+
"required": false
|
|
1773
|
+
}
|
|
1774
|
+
},
|
|
1775
|
+
"description": "Show analytics stats for your checks.",
|
|
1776
|
+
"flags": {
|
|
1777
|
+
"range": {
|
|
1778
|
+
"char": "r",
|
|
1779
|
+
"description": "Time range for stats.",
|
|
1780
|
+
"name": "range",
|
|
1781
|
+
"default": "last24Hours",
|
|
1782
|
+
"hasDynamicHelp": false,
|
|
1783
|
+
"multiple": false,
|
|
1784
|
+
"options": [
|
|
1785
|
+
"last24Hours",
|
|
1786
|
+
"last7Days",
|
|
1787
|
+
"thisWeek",
|
|
1788
|
+
"lastWeek",
|
|
1789
|
+
"lastMonth"
|
|
1790
|
+
],
|
|
1791
|
+
"type": "option"
|
|
1792
|
+
},
|
|
1793
|
+
"limit": {
|
|
1794
|
+
"char": "l",
|
|
1795
|
+
"description": "Number of checks to return (1-100).",
|
|
1796
|
+
"name": "limit",
|
|
1797
|
+
"default": 25,
|
|
1798
|
+
"hasDynamicHelp": false,
|
|
1799
|
+
"multiple": false,
|
|
1800
|
+
"type": "option"
|
|
1801
|
+
},
|
|
1802
|
+
"page": {
|
|
1803
|
+
"char": "p",
|
|
1804
|
+
"description": "Page number.",
|
|
1805
|
+
"name": "page",
|
|
1806
|
+
"default": 1,
|
|
1807
|
+
"hasDynamicHelp": false,
|
|
1808
|
+
"multiple": false,
|
|
1809
|
+
"type": "option"
|
|
1810
|
+
},
|
|
1811
|
+
"tag": {
|
|
1812
|
+
"char": "t",
|
|
1813
|
+
"description": "Filter by tag. Can be specified multiple times.",
|
|
1814
|
+
"name": "tag",
|
|
1815
|
+
"hasDynamicHelp": false,
|
|
1816
|
+
"multiple": true,
|
|
1817
|
+
"type": "option"
|
|
1818
|
+
},
|
|
1819
|
+
"search": {
|
|
1820
|
+
"char": "s",
|
|
1821
|
+
"description": "Filter checks by name (case-insensitive).",
|
|
1822
|
+
"name": "search",
|
|
1823
|
+
"hasDynamicHelp": false,
|
|
1824
|
+
"multiple": false,
|
|
1825
|
+
"type": "option"
|
|
1826
|
+
},
|
|
1827
|
+
"type": {
|
|
1828
|
+
"description": "Filter by check type.",
|
|
1829
|
+
"name": "type",
|
|
1830
|
+
"hasDynamicHelp": false,
|
|
1831
|
+
"multiple": false,
|
|
1832
|
+
"options": [
|
|
1833
|
+
"API",
|
|
1834
|
+
"BROWSER",
|
|
1835
|
+
"HEARTBEAT",
|
|
1836
|
+
"MULTI_STEP",
|
|
1837
|
+
"PLAYWRIGHT",
|
|
1838
|
+
"TCP",
|
|
1839
|
+
"ICMP",
|
|
1840
|
+
"DNS",
|
|
1841
|
+
"URL",
|
|
1842
|
+
"AGENTIC"
|
|
1843
|
+
],
|
|
1844
|
+
"type": "option"
|
|
1845
|
+
},
|
|
1846
|
+
"output": {
|
|
1847
|
+
"char": "o",
|
|
1848
|
+
"description": "Output format.",
|
|
1849
|
+
"name": "output",
|
|
1850
|
+
"default": "table",
|
|
1851
|
+
"hasDynamicHelp": false,
|
|
1852
|
+
"multiple": false,
|
|
1853
|
+
"options": [
|
|
1854
|
+
"table",
|
|
1855
|
+
"json",
|
|
1856
|
+
"md"
|
|
1857
|
+
],
|
|
1858
|
+
"type": "option"
|
|
1859
|
+
}
|
|
1860
|
+
},
|
|
1861
|
+
"hasDynamicHelp": false,
|
|
1862
|
+
"hidden": false,
|
|
1863
|
+
"hiddenAliases": [],
|
|
1864
|
+
"id": "checks:stats",
|
|
1865
|
+
"pluginAlias": "checkly",
|
|
1866
|
+
"pluginName": "checkly",
|
|
1867
|
+
"pluginType": "core",
|
|
1868
|
+
"strict": false,
|
|
1869
|
+
"enableJsonFlag": false,
|
|
1870
|
+
"coreCommand": false,
|
|
1871
|
+
"readOnly": true,
|
|
1872
|
+
"destructive": false,
|
|
1873
|
+
"idempotent": true,
|
|
1874
|
+
"isESM": true,
|
|
1875
|
+
"relativePath": [
|
|
1876
|
+
"dist",
|
|
1877
|
+
"commands",
|
|
1878
|
+
"checks",
|
|
1879
|
+
"stats.js"
|
|
1880
|
+
]
|
|
1881
|
+
},
|
|
1882
|
+
"assets:download": {
|
|
1883
|
+
"aliases": [],
|
|
1884
|
+
"args": {},
|
|
1885
|
+
"description": "Download result assets.",
|
|
1886
|
+
"flags": {
|
|
1887
|
+
"check-id": {
|
|
1888
|
+
"description": "Check ID for a scheduled check result.",
|
|
1889
|
+
"name": "check-id",
|
|
1890
|
+
"hasDynamicHelp": false,
|
|
1891
|
+
"multiple": false,
|
|
1892
|
+
"type": "option"
|
|
1893
|
+
},
|
|
1894
|
+
"test-session-id": {
|
|
1895
|
+
"description": "Test session ID for a test-session result.",
|
|
1896
|
+
"name": "test-session-id",
|
|
1897
|
+
"hasDynamicHelp": false,
|
|
1898
|
+
"multiple": false,
|
|
1899
|
+
"type": "option"
|
|
1900
|
+
},
|
|
1901
|
+
"result-id": {
|
|
1902
|
+
"description": "Check result ID or test-session result ID.",
|
|
1903
|
+
"name": "result-id",
|
|
1904
|
+
"required": true,
|
|
1905
|
+
"hasDynamicHelp": false,
|
|
1906
|
+
"multiple": false,
|
|
1907
|
+
"type": "option"
|
|
1908
|
+
},
|
|
1909
|
+
"type": {
|
|
1910
|
+
"description": "Select assets by type.",
|
|
1911
|
+
"name": "type",
|
|
1912
|
+
"hasDynamicHelp": false,
|
|
1913
|
+
"multiple": false,
|
|
1914
|
+
"options": [
|
|
1915
|
+
"log",
|
|
1916
|
+
"trace",
|
|
1917
|
+
"video",
|
|
1918
|
+
"screenshot",
|
|
1919
|
+
"pcap",
|
|
1920
|
+
"report",
|
|
1921
|
+
"file",
|
|
1922
|
+
"all"
|
|
1923
|
+
],
|
|
1924
|
+
"type": "option"
|
|
1925
|
+
},
|
|
1926
|
+
"asset": {
|
|
1927
|
+
"description": "Select an asset by exact Asset/Name value or glob.",
|
|
1928
|
+
"name": "asset",
|
|
1929
|
+
"hasDynamicHelp": false,
|
|
1930
|
+
"multiple": false,
|
|
1931
|
+
"type": "option"
|
|
1932
|
+
},
|
|
1933
|
+
"dir": {
|
|
1934
|
+
"description": "Directory to write assets into.",
|
|
1935
|
+
"name": "dir",
|
|
1936
|
+
"hasDynamicHelp": false,
|
|
1937
|
+
"multiple": false,
|
|
1938
|
+
"type": "option"
|
|
1939
|
+
},
|
|
1940
|
+
"force": {
|
|
1941
|
+
"description": "Overwrite existing files.",
|
|
1942
|
+
"name": "force",
|
|
1943
|
+
"allowNo": false,
|
|
1944
|
+
"type": "boolean"
|
|
1945
|
+
},
|
|
1946
|
+
"skip-existing": {
|
|
1947
|
+
"description": "Skip files that already exist.",
|
|
1948
|
+
"name": "skip-existing",
|
|
1949
|
+
"allowNo": false,
|
|
1950
|
+
"type": "boolean"
|
|
1951
|
+
},
|
|
1952
|
+
"output": {
|
|
1953
|
+
"char": "o",
|
|
1954
|
+
"description": "Output format.",
|
|
1955
|
+
"name": "output",
|
|
1956
|
+
"default": "table",
|
|
1957
|
+
"hasDynamicHelp": false,
|
|
1958
|
+
"multiple": false,
|
|
1959
|
+
"options": [
|
|
1960
|
+
"table",
|
|
1961
|
+
"json"
|
|
1962
|
+
],
|
|
1963
|
+
"type": "option"
|
|
1964
|
+
}
|
|
1965
|
+
},
|
|
1966
|
+
"hasDynamicHelp": false,
|
|
1967
|
+
"hidden": false,
|
|
1968
|
+
"hiddenAliases": [],
|
|
1969
|
+
"id": "assets:download",
|
|
1970
|
+
"pluginAlias": "checkly",
|
|
1971
|
+
"pluginName": "checkly",
|
|
1972
|
+
"pluginType": "core",
|
|
1973
|
+
"strict": true,
|
|
1974
|
+
"enableJsonFlag": false,
|
|
1975
|
+
"coreCommand": false,
|
|
1976
|
+
"readOnly": true,
|
|
1977
|
+
"destructive": false,
|
|
1978
|
+
"idempotent": true,
|
|
1979
|
+
"isESM": true,
|
|
1980
|
+
"relativePath": [
|
|
1981
|
+
"dist",
|
|
1982
|
+
"commands",
|
|
1983
|
+
"assets",
|
|
1984
|
+
"download.js"
|
|
1985
|
+
]
|
|
1986
|
+
},
|
|
1987
|
+
"assets:list": {
|
|
1988
|
+
"aliases": [],
|
|
1989
|
+
"args": {},
|
|
1990
|
+
"description": "List result assets.",
|
|
1991
|
+
"flags": {
|
|
1992
|
+
"check-id": {
|
|
1993
|
+
"description": "Check ID for a scheduled check result.",
|
|
1994
|
+
"name": "check-id",
|
|
1995
|
+
"hasDynamicHelp": false,
|
|
1996
|
+
"multiple": false,
|
|
1997
|
+
"type": "option"
|
|
1998
|
+
},
|
|
1999
|
+
"test-session-id": {
|
|
2000
|
+
"description": "Test session ID for a test-session result.",
|
|
2001
|
+
"name": "test-session-id",
|
|
2002
|
+
"hasDynamicHelp": false,
|
|
2003
|
+
"multiple": false,
|
|
2004
|
+
"type": "option"
|
|
2005
|
+
},
|
|
2006
|
+
"result-id": {
|
|
2007
|
+
"description": "Check result ID or test-session result ID.",
|
|
2008
|
+
"name": "result-id",
|
|
2009
|
+
"required": true,
|
|
2010
|
+
"hasDynamicHelp": false,
|
|
2011
|
+
"multiple": false,
|
|
2012
|
+
"type": "option"
|
|
2013
|
+
},
|
|
2014
|
+
"type": {
|
|
2015
|
+
"description": "Filter assets by type.",
|
|
2016
|
+
"name": "type",
|
|
2017
|
+
"default": "all",
|
|
2018
|
+
"hasDynamicHelp": false,
|
|
2019
|
+
"multiple": false,
|
|
2020
|
+
"options": [
|
|
2021
|
+
"log",
|
|
2022
|
+
"trace",
|
|
2023
|
+
"video",
|
|
2024
|
+
"screenshot",
|
|
2025
|
+
"pcap",
|
|
2026
|
+
"report",
|
|
2027
|
+
"file",
|
|
2028
|
+
"all"
|
|
2029
|
+
],
|
|
2030
|
+
"type": "option"
|
|
2031
|
+
},
|
|
2032
|
+
"asset": {
|
|
2033
|
+
"description": "Filter assets by exact Asset/Name value or glob.",
|
|
2034
|
+
"name": "asset",
|
|
2035
|
+
"hasDynamicHelp": false,
|
|
2036
|
+
"multiple": false,
|
|
2037
|
+
"type": "option"
|
|
2038
|
+
},
|
|
2039
|
+
"view": {
|
|
2040
|
+
"description": "Human output view. Ignored with --output json.",
|
|
2041
|
+
"name": "view",
|
|
2042
|
+
"default": "table",
|
|
2043
|
+
"hasDynamicHelp": false,
|
|
2044
|
+
"multiple": false,
|
|
2045
|
+
"options": [
|
|
2046
|
+
"table",
|
|
2047
|
+
"tree"
|
|
2048
|
+
],
|
|
2049
|
+
"type": "option"
|
|
2050
|
+
},
|
|
2051
|
+
"output": {
|
|
2052
|
+
"char": "o",
|
|
2053
|
+
"description": "Output format.",
|
|
2054
|
+
"name": "output",
|
|
2055
|
+
"default": "table",
|
|
2056
|
+
"hasDynamicHelp": false,
|
|
2057
|
+
"multiple": false,
|
|
2058
|
+
"options": [
|
|
2059
|
+
"table",
|
|
2060
|
+
"json",
|
|
2061
|
+
"md"
|
|
2062
|
+
],
|
|
2063
|
+
"type": "option"
|
|
2064
|
+
}
|
|
2065
|
+
},
|
|
2066
|
+
"hasDynamicHelp": false,
|
|
2067
|
+
"hidden": false,
|
|
2068
|
+
"hiddenAliases": [],
|
|
2069
|
+
"id": "assets:list",
|
|
2070
|
+
"pluginAlias": "checkly",
|
|
2071
|
+
"pluginName": "checkly",
|
|
2072
|
+
"pluginType": "core",
|
|
2073
|
+
"strict": true,
|
|
2074
|
+
"enableJsonFlag": false,
|
|
2075
|
+
"coreCommand": false,
|
|
2076
|
+
"readOnly": true,
|
|
2077
|
+
"destructive": false,
|
|
2078
|
+
"idempotent": true,
|
|
2079
|
+
"isESM": true,
|
|
2080
|
+
"relativePath": [
|
|
2081
|
+
"dist",
|
|
2082
|
+
"commands",
|
|
2083
|
+
"assets",
|
|
2084
|
+
"list.js"
|
|
2085
|
+
]
|
|
2086
|
+
},
|
|
2087
|
+
"debug:parse-file": {
|
|
2088
|
+
"aliases": [],
|
|
2089
|
+
"args": {},
|
|
2090
|
+
"description": "Parses and outputs relevant details of a code file.",
|
|
2091
|
+
"flags": {
|
|
2092
|
+
"file": {
|
|
2093
|
+
"name": "file",
|
|
2094
|
+
"required": true,
|
|
2095
|
+
"hasDynamicHelp": false,
|
|
2096
|
+
"multiple": false,
|
|
2097
|
+
"type": "option"
|
|
2098
|
+
},
|
|
2099
|
+
"restricted": {
|
|
2100
|
+
"name": "restricted",
|
|
2101
|
+
"allowNo": false,
|
|
2102
|
+
"type": "boolean"
|
|
2103
|
+
},
|
|
2104
|
+
"detect-workspace": {
|
|
2105
|
+
"name": "detect-workspace",
|
|
2106
|
+
"allowNo": true,
|
|
2107
|
+
"type": "boolean"
|
|
2108
|
+
},
|
|
2109
|
+
"supported-module": {
|
|
2110
|
+
"name": "supported-module",
|
|
2111
|
+
"default": [],
|
|
2112
|
+
"delimiter": ",",
|
|
2113
|
+
"hasDynamicHelp": false,
|
|
2114
|
+
"multiple": true,
|
|
2115
|
+
"type": "option"
|
|
2116
|
+
},
|
|
2117
|
+
"check-unsupported-modules": {
|
|
2118
|
+
"name": "check-unsupported-modules",
|
|
2119
|
+
"allowNo": false,
|
|
2120
|
+
"type": "boolean"
|
|
2121
|
+
}
|
|
2122
|
+
},
|
|
2123
|
+
"hasDynamicHelp": false,
|
|
2124
|
+
"hidden": true,
|
|
2125
|
+
"hiddenAliases": [],
|
|
2126
|
+
"id": "debug:parse-file",
|
|
2127
|
+
"pluginAlias": "checkly",
|
|
2128
|
+
"pluginName": "checkly",
|
|
2129
|
+
"pluginType": "core",
|
|
2130
|
+
"strict": true,
|
|
2131
|
+
"enableJsonFlag": false,
|
|
2132
|
+
"isESM": true,
|
|
2133
|
+
"relativePath": [
|
|
2134
|
+
"dist",
|
|
2135
|
+
"commands",
|
|
2136
|
+
"debug",
|
|
2137
|
+
"parse-file.js"
|
|
2138
|
+
]
|
|
2139
|
+
},
|
|
2140
|
+
"debug:parse-playwright-config": {
|
|
2141
|
+
"aliases": [],
|
|
2142
|
+
"args": {},
|
|
2143
|
+
"description": "Parses and outputs relevant details of a Playwright configuration file.",
|
|
2144
|
+
"flags": {
|
|
2145
|
+
"file": {
|
|
2146
|
+
"env": "CHECKLY_PLAYWRIGHT_CONFIG_FILE",
|
|
2147
|
+
"name": "file",
|
|
2148
|
+
"default": "/home/runner/work/checkly-cli/checkly-cli/packages/cli/playwright.config.ts",
|
|
2149
|
+
"hasDynamicHelp": false,
|
|
2150
|
+
"multiple": false,
|
|
2151
|
+
"type": "option"
|
|
2152
|
+
}
|
|
2153
|
+
},
|
|
2154
|
+
"hasDynamicHelp": false,
|
|
2155
|
+
"hidden": true,
|
|
2156
|
+
"hiddenAliases": [],
|
|
2157
|
+
"id": "debug:parse-playwright-config",
|
|
2158
|
+
"pluginAlias": "checkly",
|
|
2159
|
+
"pluginName": "checkly",
|
|
2160
|
+
"pluginType": "core",
|
|
2161
|
+
"strict": true,
|
|
2162
|
+
"enableJsonFlag": false,
|
|
2163
|
+
"isESM": true,
|
|
2164
|
+
"relativePath": [
|
|
2165
|
+
"dist",
|
|
2166
|
+
"commands",
|
|
2167
|
+
"debug",
|
|
2168
|
+
"parse-playwright-config.js"
|
|
2169
|
+
]
|
|
2170
|
+
},
|
|
2171
|
+
"debug:parse-project": {
|
|
2172
|
+
"aliases": [],
|
|
2173
|
+
"args": {},
|
|
2174
|
+
"description": "Parses a Checkly project.",
|
|
2175
|
+
"flags": {
|
|
2176
|
+
"config": {
|
|
2177
|
+
"char": "c",
|
|
2178
|
+
"description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
|
|
2179
|
+
"env": "CHECKLY_CONFIG_FILE",
|
|
2180
|
+
"name": "config",
|
|
2181
|
+
"hasDynamicHelp": false,
|
|
2182
|
+
"multiple": false,
|
|
2183
|
+
"type": "option"
|
|
2184
|
+
},
|
|
2185
|
+
"default-runtime": {
|
|
2186
|
+
"description": "The default runtime to use if none is specified.",
|
|
2187
|
+
"env": "CHECKLY_DEFAULT_RUNTIME",
|
|
2188
|
+
"name": "default-runtime",
|
|
2189
|
+
"default": "2025.04",
|
|
2190
|
+
"hasDynamicHelp": false,
|
|
2191
|
+
"multiple": false,
|
|
2192
|
+
"type": "option"
|
|
2193
|
+
},
|
|
2194
|
+
"verify-runtime-dependencies": {
|
|
2195
|
+
"description": "[default: true] Return an error if checks import dependencies that are not supported by the selected runtime.",
|
|
2196
|
+
"env": "CHECKLY_VERIFY_RUNTIME_DEPENDENCIES",
|
|
2197
|
+
"name": "verify-runtime-dependencies",
|
|
2198
|
+
"allowNo": true,
|
|
2199
|
+
"type": "boolean"
|
|
2200
|
+
},
|
|
2201
|
+
"emulate-pw-test": {
|
|
2202
|
+
"description": "Pretend to be the pw-test command. Affects validation.",
|
|
2203
|
+
"env": "CHECKLY_EMULATE_PW_TEST",
|
|
2204
|
+
"name": "emulate-pw-test",
|
|
2205
|
+
"allowNo": false,
|
|
2206
|
+
"type": "boolean"
|
|
2207
|
+
},
|
|
2208
|
+
"include": {
|
|
2209
|
+
"description": "File patterns to include when bundling the test project (e.g., \"utils/**/*\").",
|
|
2210
|
+
"name": "include",
|
|
2211
|
+
"default": [],
|
|
2212
|
+
"hasDynamicHelp": false,
|
|
2213
|
+
"multiple": true,
|
|
2214
|
+
"type": "option"
|
|
2215
|
+
},
|
|
2216
|
+
"inject-private-location": {
|
|
2217
|
+
"description": "Pretend that the given private location exists (e.g., \"70c4ded4-2229-45a7-acf4-6b1eb56a86df:my-external-private-location\").",
|
|
2218
|
+
"name": "inject-private-location",
|
|
2219
|
+
"default": [],
|
|
2220
|
+
"delimiter": ",",
|
|
2221
|
+
"hasDynamicHelp": false,
|
|
2222
|
+
"multiple": true,
|
|
2223
|
+
"type": "option"
|
|
2224
|
+
},
|
|
2225
|
+
"stats": {
|
|
2226
|
+
"description": "Print parse/bundle/synthesize timing and heap usage to stderr. Run with NODE_OPTIONS=--expose-gc to also report the retained (post-GC) heap.",
|
|
2227
|
+
"name": "stats",
|
|
2228
|
+
"allowNo": false,
|
|
2229
|
+
"type": "boolean"
|
|
2230
|
+
}
|
|
2231
|
+
},
|
|
2232
|
+
"hasDynamicHelp": false,
|
|
2233
|
+
"hidden": true,
|
|
2234
|
+
"hiddenAliases": [],
|
|
2235
|
+
"id": "debug:parse-project",
|
|
2236
|
+
"pluginAlias": "checkly",
|
|
2237
|
+
"pluginName": "checkly",
|
|
2238
|
+
"pluginType": "core",
|
|
2239
|
+
"strict": true,
|
|
2240
|
+
"enableJsonFlag": false,
|
|
2241
|
+
"isESM": true,
|
|
2242
|
+
"relativePath": [
|
|
2243
|
+
"dist",
|
|
2244
|
+
"commands",
|
|
2245
|
+
"debug",
|
|
2246
|
+
"parse-project.js"
|
|
2247
|
+
]
|
|
2248
|
+
},
|
|
2249
|
+
"env:add": {
|
|
2250
|
+
"aliases": [],
|
|
2251
|
+
"args": {
|
|
2252
|
+
"key": {
|
|
2253
|
+
"description": "Environment variable key.",
|
|
2254
|
+
"name": "key",
|
|
2255
|
+
"required": true
|
|
2256
|
+
},
|
|
2257
|
+
"value": {
|
|
2258
|
+
"description": "Environment variable value.",
|
|
2259
|
+
"name": "value",
|
|
2260
|
+
"required": false
|
|
2261
|
+
}
|
|
2262
|
+
},
|
|
2263
|
+
"description": "Add environment variable via \"checkly env add <key> <value>\".",
|
|
2264
|
+
"flags": {
|
|
2265
|
+
"locked": {
|
|
2266
|
+
"char": "l",
|
|
2267
|
+
"description": "Indicate that the environment variable will be locked.",
|
|
2268
|
+
"name": "locked",
|
|
2269
|
+
"allowNo": false,
|
|
2270
|
+
"type": "boolean"
|
|
2271
|
+
},
|
|
2272
|
+
"secret": {
|
|
2273
|
+
"char": "s",
|
|
2274
|
+
"description": "Indicate that the environment variable will be secret.",
|
|
2275
|
+
"exclusive": [
|
|
2276
|
+
"locked"
|
|
2277
|
+
],
|
|
2278
|
+
"name": "secret",
|
|
2279
|
+
"allowNo": false,
|
|
2280
|
+
"type": "boolean"
|
|
2281
|
+
}
|
|
2282
|
+
},
|
|
2283
|
+
"hasDynamicHelp": false,
|
|
2284
|
+
"hidden": false,
|
|
2285
|
+
"hiddenAliases": [],
|
|
2286
|
+
"id": "env:add",
|
|
2287
|
+
"pluginAlias": "checkly",
|
|
2288
|
+
"pluginName": "checkly",
|
|
2289
|
+
"pluginType": "core",
|
|
2290
|
+
"strict": true,
|
|
2291
|
+
"enableJsonFlag": false,
|
|
2292
|
+
"coreCommand": false,
|
|
2293
|
+
"readOnly": false,
|
|
2294
|
+
"destructive": false,
|
|
2295
|
+
"idempotent": false,
|
|
2296
|
+
"isESM": true,
|
|
2297
|
+
"relativePath": [
|
|
2298
|
+
"dist",
|
|
2299
|
+
"commands",
|
|
2300
|
+
"env",
|
|
2301
|
+
"add.js"
|
|
2302
|
+
]
|
|
2303
|
+
},
|
|
2304
|
+
"env:ls": {
|
|
2305
|
+
"aliases": [],
|
|
2306
|
+
"args": {},
|
|
2307
|
+
"description": "List all Checkly environment variables via \"checkly env ls\".",
|
|
2308
|
+
"flags": {},
|
|
2309
|
+
"hasDynamicHelp": false,
|
|
2310
|
+
"hidden": false,
|
|
2311
|
+
"hiddenAliases": [],
|
|
2312
|
+
"id": "env:ls",
|
|
2313
|
+
"pluginAlias": "checkly",
|
|
2314
|
+
"pluginName": "checkly",
|
|
2315
|
+
"pluginType": "core",
|
|
2316
|
+
"strict": true,
|
|
2317
|
+
"enableJsonFlag": false,
|
|
2318
|
+
"coreCommand": false,
|
|
2319
|
+
"readOnly": true,
|
|
2320
|
+
"destructive": false,
|
|
2321
|
+
"idempotent": true,
|
|
2322
|
+
"isESM": true,
|
|
2323
|
+
"relativePath": [
|
|
2324
|
+
"dist",
|
|
2325
|
+
"commands",
|
|
2326
|
+
"env",
|
|
2327
|
+
"ls.js"
|
|
2328
|
+
]
|
|
2329
|
+
},
|
|
2330
|
+
"env:pull": {
|
|
2331
|
+
"aliases": [],
|
|
2332
|
+
"args": {
|
|
2333
|
+
"filename": {
|
|
2334
|
+
"default": ".env",
|
|
2335
|
+
"description": "Filename of the generated file.",
|
|
2336
|
+
"name": "filename",
|
|
2337
|
+
"required": false
|
|
2338
|
+
}
|
|
2339
|
+
},
|
|
2340
|
+
"description": "Pull Checkly environment variables via \"checkly env pull <filename>\".",
|
|
2341
|
+
"flags": {
|
|
2342
|
+
"force": {
|
|
2343
|
+
"char": "f",
|
|
2344
|
+
"description": "Force to overwrite existing file.",
|
|
2345
|
+
"name": "force",
|
|
2346
|
+
"allowNo": false,
|
|
2347
|
+
"type": "boolean"
|
|
2348
|
+
}
|
|
2349
|
+
},
|
|
2350
|
+
"hasDynamicHelp": false,
|
|
2351
|
+
"hidden": false,
|
|
2352
|
+
"hiddenAliases": [],
|
|
2353
|
+
"id": "env:pull",
|
|
2354
|
+
"pluginAlias": "checkly",
|
|
2355
|
+
"pluginName": "checkly",
|
|
2356
|
+
"pluginType": "core",
|
|
2357
|
+
"strict": true,
|
|
2358
|
+
"enableJsonFlag": false,
|
|
2359
|
+
"coreCommand": false,
|
|
2360
|
+
"readOnly": true,
|
|
2361
|
+
"destructive": false,
|
|
2362
|
+
"idempotent": true,
|
|
2363
|
+
"isESM": true,
|
|
2364
|
+
"relativePath": [
|
|
2365
|
+
"dist",
|
|
2366
|
+
"commands",
|
|
2367
|
+
"env",
|
|
2368
|
+
"pull.js"
|
|
2369
|
+
]
|
|
2370
|
+
},
|
|
2371
|
+
"env:rm": {
|
|
2372
|
+
"aliases": [],
|
|
2373
|
+
"args": {
|
|
2374
|
+
"key": {
|
|
2375
|
+
"description": "Environment variable key to remove.",
|
|
2376
|
+
"name": "key",
|
|
2377
|
+
"required": true
|
|
2378
|
+
}
|
|
2379
|
+
},
|
|
2380
|
+
"description": "Remove environment variable via \"checkly env rm <key>\".",
|
|
2381
|
+
"flags": {
|
|
2382
|
+
"force": {
|
|
2383
|
+
"char": "f",
|
|
2384
|
+
"description": "Skip confirmation prompt.",
|
|
2385
|
+
"name": "force",
|
|
2386
|
+
"allowNo": false,
|
|
2387
|
+
"type": "boolean"
|
|
2388
|
+
}
|
|
2389
|
+
},
|
|
2390
|
+
"hasDynamicHelp": false,
|
|
2391
|
+
"hidden": false,
|
|
2392
|
+
"hiddenAliases": [],
|
|
2393
|
+
"id": "env:rm",
|
|
2394
|
+
"pluginAlias": "checkly",
|
|
2395
|
+
"pluginName": "checkly",
|
|
2396
|
+
"pluginType": "core",
|
|
2397
|
+
"strict": true,
|
|
2398
|
+
"enableJsonFlag": false,
|
|
2399
|
+
"coreCommand": false,
|
|
2400
|
+
"readOnly": false,
|
|
2401
|
+
"destructive": true,
|
|
2402
|
+
"idempotent": false,
|
|
2403
|
+
"isESM": true,
|
|
2404
|
+
"relativePath": [
|
|
2405
|
+
"dist",
|
|
2406
|
+
"commands",
|
|
2407
|
+
"env",
|
|
2408
|
+
"rm.js"
|
|
2409
|
+
]
|
|
2410
|
+
},
|
|
2411
|
+
"env:update": {
|
|
2412
|
+
"aliases": [],
|
|
2413
|
+
"args": {
|
|
2414
|
+
"key": {
|
|
2415
|
+
"description": "Environment variable key.",
|
|
2416
|
+
"name": "key",
|
|
2417
|
+
"required": true
|
|
2418
|
+
},
|
|
2419
|
+
"value": {
|
|
2420
|
+
"description": "Environment variable value.",
|
|
2421
|
+
"name": "value",
|
|
2422
|
+
"required": false
|
|
2423
|
+
}
|
|
2424
|
+
},
|
|
2425
|
+
"description": "Update environment variable via \"checkly env update <key> <value>\".",
|
|
2426
|
+
"flags": {
|
|
2427
|
+
"locked": {
|
|
2428
|
+
"char": "l",
|
|
2429
|
+
"description": "Indicate if environment variable is locked.",
|
|
2430
|
+
"name": "locked",
|
|
2431
|
+
"allowNo": false,
|
|
2432
|
+
"type": "boolean"
|
|
2433
|
+
},
|
|
2434
|
+
"secret": {
|
|
2435
|
+
"char": "s",
|
|
2436
|
+
"description": "Indicate if environment variable is secret.",
|
|
2437
|
+
"exclusive": [
|
|
2438
|
+
"locked"
|
|
2439
|
+
],
|
|
2440
|
+
"name": "secret",
|
|
2441
|
+
"allowNo": false,
|
|
2442
|
+
"type": "boolean"
|
|
2443
|
+
}
|
|
2444
|
+
},
|
|
2445
|
+
"hasDynamicHelp": false,
|
|
2446
|
+
"hidden": false,
|
|
2447
|
+
"hiddenAliases": [],
|
|
2448
|
+
"id": "env:update",
|
|
2449
|
+
"pluginAlias": "checkly",
|
|
2450
|
+
"pluginName": "checkly",
|
|
2451
|
+
"pluginType": "core",
|
|
2452
|
+
"strict": true,
|
|
2453
|
+
"enableJsonFlag": false,
|
|
2454
|
+
"coreCommand": false,
|
|
2455
|
+
"readOnly": false,
|
|
2456
|
+
"destructive": false,
|
|
2457
|
+
"idempotent": true,
|
|
2458
|
+
"isESM": true,
|
|
2459
|
+
"relativePath": [
|
|
2460
|
+
"dist",
|
|
2461
|
+
"commands",
|
|
2462
|
+
"env",
|
|
2463
|
+
"update.js"
|
|
2464
|
+
]
|
|
2465
|
+
},
|
|
2466
|
+
"import:apply": {
|
|
2467
|
+
"aliases": [],
|
|
2468
|
+
"args": {},
|
|
2469
|
+
"description": "Attach imported resources into your project in a pending state.",
|
|
2470
|
+
"flags": {
|
|
2471
|
+
"config": {
|
|
2472
|
+
"char": "c",
|
|
2473
|
+
"description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
|
|
2474
|
+
"name": "config",
|
|
2475
|
+
"hasDynamicHelp": false,
|
|
2476
|
+
"multiple": false,
|
|
2477
|
+
"type": "option"
|
|
2478
|
+
}
|
|
2479
|
+
},
|
|
2480
|
+
"hasDynamicHelp": false,
|
|
2481
|
+
"hidden": false,
|
|
2482
|
+
"hiddenAliases": [],
|
|
2483
|
+
"id": "import:apply",
|
|
2484
|
+
"pluginAlias": "checkly",
|
|
2485
|
+
"pluginName": "checkly",
|
|
2486
|
+
"pluginType": "core",
|
|
2487
|
+
"strict": true,
|
|
2488
|
+
"enableJsonFlag": false,
|
|
2489
|
+
"coreCommand": false,
|
|
2490
|
+
"readOnly": false,
|
|
2491
|
+
"destructive": false,
|
|
2492
|
+
"idempotent": false,
|
|
2493
|
+
"isESM": true,
|
|
2494
|
+
"relativePath": [
|
|
2495
|
+
"dist",
|
|
2496
|
+
"commands",
|
|
2497
|
+
"import",
|
|
2498
|
+
"apply.js"
|
|
2499
|
+
]
|
|
2500
|
+
},
|
|
2501
|
+
"import:cancel": {
|
|
2502
|
+
"aliases": [],
|
|
2503
|
+
"args": {},
|
|
2504
|
+
"description": "Cancels an ongoing import plan that has not been committed yet.",
|
|
2505
|
+
"flags": {
|
|
2506
|
+
"config": {
|
|
2507
|
+
"char": "c",
|
|
2508
|
+
"description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
|
|
2509
|
+
"name": "config",
|
|
2510
|
+
"hasDynamicHelp": false,
|
|
2511
|
+
"multiple": false,
|
|
2512
|
+
"type": "option"
|
|
2513
|
+
},
|
|
2514
|
+
"all": {
|
|
2515
|
+
"description": "Cancel all plans.",
|
|
2516
|
+
"name": "all",
|
|
2517
|
+
"allowNo": false,
|
|
2518
|
+
"type": "boolean"
|
|
2519
|
+
}
|
|
2520
|
+
},
|
|
2521
|
+
"hasDynamicHelp": false,
|
|
2522
|
+
"hidden": false,
|
|
2523
|
+
"hiddenAliases": [],
|
|
2524
|
+
"id": "import:cancel",
|
|
2525
|
+
"pluginAlias": "checkly",
|
|
2526
|
+
"pluginName": "checkly",
|
|
2527
|
+
"pluginType": "core",
|
|
2528
|
+
"strict": true,
|
|
2529
|
+
"enableJsonFlag": false,
|
|
2530
|
+
"coreCommand": false,
|
|
2531
|
+
"readOnly": false,
|
|
2532
|
+
"destructive": false,
|
|
2533
|
+
"idempotent": true,
|
|
2534
|
+
"isESM": true,
|
|
2535
|
+
"relativePath": [
|
|
2536
|
+
"dist",
|
|
2537
|
+
"commands",
|
|
2538
|
+
"import",
|
|
2539
|
+
"cancel.js"
|
|
2540
|
+
]
|
|
2541
|
+
},
|
|
2542
|
+
"import:commit": {
|
|
2543
|
+
"aliases": [],
|
|
2544
|
+
"args": {},
|
|
2545
|
+
"description": "Permanently commit imported resources into your project.",
|
|
2546
|
+
"flags": {
|
|
2547
|
+
"config": {
|
|
2548
|
+
"char": "c",
|
|
2549
|
+
"description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
|
|
2550
|
+
"name": "config",
|
|
2551
|
+
"hasDynamicHelp": false,
|
|
2552
|
+
"multiple": false,
|
|
2553
|
+
"type": "option"
|
|
2554
|
+
}
|
|
2555
|
+
},
|
|
2556
|
+
"hasDynamicHelp": false,
|
|
2557
|
+
"hidden": false,
|
|
2558
|
+
"hiddenAliases": [],
|
|
2559
|
+
"id": "import:commit",
|
|
2560
|
+
"pluginAlias": "checkly",
|
|
2561
|
+
"pluginName": "checkly",
|
|
2562
|
+
"pluginType": "core",
|
|
2563
|
+
"strict": true,
|
|
2564
|
+
"enableJsonFlag": false,
|
|
2565
|
+
"coreCommand": false,
|
|
2566
|
+
"readOnly": false,
|
|
2567
|
+
"destructive": false,
|
|
2568
|
+
"idempotent": false,
|
|
2569
|
+
"isESM": true,
|
|
2570
|
+
"relativePath": [
|
|
2571
|
+
"dist",
|
|
2572
|
+
"commands",
|
|
2573
|
+
"import",
|
|
2574
|
+
"commit.js"
|
|
2575
|
+
]
|
|
2576
|
+
},
|
|
2577
|
+
"import:plan": {
|
|
2578
|
+
"aliases": [],
|
|
2579
|
+
"args": {
|
|
2580
|
+
"resource": {
|
|
2581
|
+
"description": "A specific resource to import.",
|
|
2582
|
+
"name": "resource",
|
|
2583
|
+
"required": false
|
|
2584
|
+
}
|
|
2585
|
+
},
|
|
2586
|
+
"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.",
|
|
2587
|
+
"flags": {
|
|
2588
|
+
"config": {
|
|
2589
|
+
"char": "c",
|
|
2590
|
+
"description": "The Checkly CLI configuration file. If not passed, uses the checkly.config.ts|js file in the current directory.",
|
|
2591
|
+
"name": "config",
|
|
2592
|
+
"hasDynamicHelp": false,
|
|
2593
|
+
"multiple": false,
|
|
2594
|
+
"type": "option"
|
|
2595
|
+
},
|
|
2596
|
+
"root": {
|
|
2597
|
+
"description": "The root folder in which to write generated code files.",
|
|
2598
|
+
"name": "root",
|
|
2599
|
+
"default": "__checks__",
|
|
2600
|
+
"hasDynamicHelp": false,
|
|
2601
|
+
"multiple": false,
|
|
2602
|
+
"type": "option"
|
|
2603
|
+
},
|
|
2604
|
+
"preview": {
|
|
2605
|
+
"description": "Preview generated code without creating an actual import plan.",
|
|
2606
|
+
"name": "preview",
|
|
2607
|
+
"allowNo": false,
|
|
2608
|
+
"type": "boolean"
|
|
2609
|
+
},
|
|
2610
|
+
"debug-import-plan": {
|
|
2611
|
+
"description": "Output the import plan to a file.",
|
|
2612
|
+
"hidden": true,
|
|
2613
|
+
"name": "debug-import-plan",
|
|
2614
|
+
"allowNo": false,
|
|
2615
|
+
"type": "boolean"
|
|
2616
|
+
},
|
|
2617
|
+
"debug-import-plan-input-file": {
|
|
2618
|
+
"description": "A file to load an import plan from.",
|
|
2619
|
+
"hidden": true,
|
|
2620
|
+
"name": "debug-import-plan-input-file",
|
|
2621
|
+
"hasDynamicHelp": false,
|
|
2622
|
+
"multiple": false,
|
|
2623
|
+
"type": "option"
|
|
2624
|
+
},
|
|
2625
|
+
"debug-import-plan-output-file": {
|
|
2626
|
+
"description": "The file to output the import plan to.",
|
|
2627
|
+
"hidden": true,
|
|
2628
|
+
"name": "debug-import-plan-output-file",
|
|
2629
|
+
"default": "./debug-import-plan.json",
|
|
2630
|
+
"hasDynamicHelp": false,
|
|
2631
|
+
"multiple": false,
|
|
2632
|
+
"type": "option"
|
|
2633
|
+
}
|
|
2634
|
+
},
|
|
2635
|
+
"hasDynamicHelp": false,
|
|
2636
|
+
"hidden": false,
|
|
2637
|
+
"hiddenAliases": [
|
|
2638
|
+
"import"
|
|
2639
|
+
],
|
|
2640
|
+
"id": "import:plan",
|
|
2641
|
+
"pluginAlias": "checkly",
|
|
2642
|
+
"pluginName": "checkly",
|
|
2643
|
+
"pluginType": "core",
|
|
2644
|
+
"strict": false,
|
|
2645
|
+
"enableJsonFlag": false,
|
|
2646
|
+
"coreCommand": false,
|
|
2647
|
+
"readOnly": true,
|
|
2648
|
+
"destructive": false,
|
|
2649
|
+
"idempotent": true,
|
|
2650
|
+
"isESM": true,
|
|
2651
|
+
"relativePath": [
|
|
2652
|
+
"dist",
|
|
2653
|
+
"commands",
|
|
2654
|
+
"import",
|
|
2655
|
+
"plan.js"
|
|
2656
|
+
]
|
|
2657
|
+
},
|
|
2658
|
+
"incidents:create": {
|
|
2659
|
+
"aliases": [],
|
|
2660
|
+
"args": {},
|
|
2661
|
+
"description": "Declare a new incident on a status page.",
|
|
2662
|
+
"flags": {
|
|
2663
|
+
"status-page-id": {
|
|
2664
|
+
"description": "Target status page ID.",
|
|
2665
|
+
"name": "status-page-id",
|
|
2666
|
+
"required": true,
|
|
2667
|
+
"hasDynamicHelp": false,
|
|
2668
|
+
"multiple": false,
|
|
2669
|
+
"type": "option"
|
|
2670
|
+
},
|
|
2671
|
+
"title": {
|
|
2672
|
+
"description": "Incident title.",
|
|
2673
|
+
"name": "title",
|
|
2674
|
+
"required": true,
|
|
2675
|
+
"hasDynamicHelp": false,
|
|
2676
|
+
"multiple": false,
|
|
2677
|
+
"type": "option"
|
|
2678
|
+
},
|
|
2679
|
+
"services": {
|
|
2680
|
+
"description": "Affected service IDs. Repeat the flag for multiple services.",
|
|
2681
|
+
"name": "services",
|
|
2682
|
+
"delimiter": ",",
|
|
2683
|
+
"hasDynamicHelp": false,
|
|
2684
|
+
"multiple": true,
|
|
2685
|
+
"type": "option"
|
|
2686
|
+
},
|
|
2687
|
+
"severity": {
|
|
2688
|
+
"description": "Incident severity.",
|
|
2689
|
+
"name": "severity",
|
|
2690
|
+
"default": "minor",
|
|
2691
|
+
"hasDynamicHelp": false,
|
|
2692
|
+
"multiple": false,
|
|
2693
|
+
"options": [
|
|
2694
|
+
"minor",
|
|
2695
|
+
"medium",
|
|
2696
|
+
"major",
|
|
2697
|
+
"critical"
|
|
2698
|
+
],
|
|
2699
|
+
"type": "option"
|
|
2700
|
+
},
|
|
2701
|
+
"message": {
|
|
2702
|
+
"description": "Initial incident update message.",
|
|
2703
|
+
"name": "message",
|
|
2704
|
+
"hasDynamicHelp": false,
|
|
2705
|
+
"multiple": false,
|
|
2706
|
+
"type": "option"
|
|
2707
|
+
},
|
|
2708
|
+
"notify-subscribers": {
|
|
2709
|
+
"description": "Notify status page subscribers about this incident update.",
|
|
2710
|
+
"name": "notify-subscribers",
|
|
2711
|
+
"allowNo": true,
|
|
2712
|
+
"type": "boolean"
|
|
2713
|
+
},
|
|
2714
|
+
"output": {
|
|
2715
|
+
"char": "o",
|
|
2716
|
+
"description": "Output format.",
|
|
2717
|
+
"name": "output",
|
|
2718
|
+
"default": "table",
|
|
2719
|
+
"hasDynamicHelp": false,
|
|
2720
|
+
"multiple": false,
|
|
2721
|
+
"options": [
|
|
2722
|
+
"table",
|
|
2723
|
+
"json",
|
|
2724
|
+
"md"
|
|
2725
|
+
],
|
|
2726
|
+
"type": "option"
|
|
2727
|
+
},
|
|
2728
|
+
"force": {
|
|
2729
|
+
"char": "f",
|
|
2730
|
+
"description": "Skip confirmation prompt.",
|
|
2731
|
+
"name": "force",
|
|
2732
|
+
"allowNo": false,
|
|
2733
|
+
"type": "boolean"
|
|
2734
|
+
},
|
|
2735
|
+
"dry-run": {
|
|
2736
|
+
"description": "Preview what would happen without executing.",
|
|
2737
|
+
"name": "dry-run",
|
|
2738
|
+
"allowNo": false,
|
|
2739
|
+
"type": "boolean"
|
|
2740
|
+
}
|
|
2741
|
+
},
|
|
2742
|
+
"hasDynamicHelp": false,
|
|
2743
|
+
"hidden": false,
|
|
2744
|
+
"hiddenAliases": [],
|
|
2745
|
+
"id": "incidents:create",
|
|
2746
|
+
"pluginAlias": "checkly",
|
|
2747
|
+
"pluginName": "checkly",
|
|
2748
|
+
"pluginType": "core",
|
|
2749
|
+
"strict": true,
|
|
2750
|
+
"enableJsonFlag": false,
|
|
2751
|
+
"coreCommand": false,
|
|
2752
|
+
"readOnly": false,
|
|
2753
|
+
"destructive": false,
|
|
2754
|
+
"idempotent": false,
|
|
2755
|
+
"isESM": true,
|
|
2756
|
+
"relativePath": [
|
|
2757
|
+
"dist",
|
|
2758
|
+
"commands",
|
|
2759
|
+
"incidents",
|
|
2760
|
+
"create.js"
|
|
2761
|
+
]
|
|
2762
|
+
},
|
|
2763
|
+
"incidents:list": {
|
|
2764
|
+
"aliases": [],
|
|
2765
|
+
"args": {},
|
|
2766
|
+
"description": "List incidents, optionally filtered by status page or status.",
|
|
2767
|
+
"flags": {
|
|
2768
|
+
"limit": {
|
|
2769
|
+
"char": "l",
|
|
2770
|
+
"description": "Number of incidents to return (1-100).",
|
|
2771
|
+
"name": "limit",
|
|
2772
|
+
"default": 25,
|
|
2773
|
+
"hasDynamicHelp": false,
|
|
2774
|
+
"multiple": false,
|
|
2775
|
+
"type": "option"
|
|
2776
|
+
},
|
|
2777
|
+
"status-page-id": {
|
|
2778
|
+
"description": "Filter incidents by status page ID.",
|
|
2779
|
+
"name": "status-page-id",
|
|
2780
|
+
"hasDynamicHelp": false,
|
|
2781
|
+
"multiple": false,
|
|
2782
|
+
"type": "option"
|
|
2783
|
+
},
|
|
2784
|
+
"status": {
|
|
2785
|
+
"description": "Filter by incident status.",
|
|
2786
|
+
"name": "status",
|
|
2787
|
+
"default": "open",
|
|
2788
|
+
"hasDynamicHelp": false,
|
|
2789
|
+
"multiple": false,
|
|
2790
|
+
"options": [
|
|
2791
|
+
"open",
|
|
2792
|
+
"resolved",
|
|
2793
|
+
"all"
|
|
2794
|
+
],
|
|
2795
|
+
"type": "option"
|
|
2796
|
+
},
|
|
2797
|
+
"output": {
|
|
2798
|
+
"char": "o",
|
|
2799
|
+
"description": "Output format.",
|
|
2800
|
+
"name": "output",
|
|
2801
|
+
"default": "table",
|
|
2802
|
+
"hasDynamicHelp": false,
|
|
2803
|
+
"multiple": false,
|
|
2804
|
+
"options": [
|
|
2805
|
+
"table",
|
|
2806
|
+
"json",
|
|
2807
|
+
"md"
|
|
2808
|
+
],
|
|
2809
|
+
"type": "option"
|
|
2810
|
+
}
|
|
2811
|
+
},
|
|
2812
|
+
"hasDynamicHelp": false,
|
|
2813
|
+
"hidden": false,
|
|
2814
|
+
"hiddenAliases": [],
|
|
2815
|
+
"id": "incidents:list",
|
|
2816
|
+
"pluginAlias": "checkly",
|
|
2817
|
+
"pluginName": "checkly",
|
|
2818
|
+
"pluginType": "core",
|
|
2819
|
+
"strict": true,
|
|
2820
|
+
"enableJsonFlag": false,
|
|
2821
|
+
"coreCommand": false,
|
|
2822
|
+
"readOnly": true,
|
|
2823
|
+
"destructive": false,
|
|
2824
|
+
"idempotent": true,
|
|
2825
|
+
"isESM": true,
|
|
2826
|
+
"relativePath": [
|
|
2827
|
+
"dist",
|
|
2828
|
+
"commands",
|
|
2829
|
+
"incidents",
|
|
2830
|
+
"list.js"
|
|
2831
|
+
]
|
|
2832
|
+
},
|
|
2833
|
+
"incidents:resolve": {
|
|
2834
|
+
"aliases": [],
|
|
2835
|
+
"args": {
|
|
2836
|
+
"id": {
|
|
2837
|
+
"description": "The incident ID.",
|
|
2838
|
+
"name": "id",
|
|
2839
|
+
"required": true
|
|
2840
|
+
}
|
|
2841
|
+
},
|
|
2842
|
+
"description": "Resolve an incident.",
|
|
2843
|
+
"flags": {
|
|
2844
|
+
"message": {
|
|
2845
|
+
"description": "Optional closing note.",
|
|
2846
|
+
"name": "message",
|
|
2847
|
+
"hasDynamicHelp": false,
|
|
2848
|
+
"multiple": false,
|
|
2849
|
+
"type": "option"
|
|
2850
|
+
},
|
|
2851
|
+
"notify-subscribers": {
|
|
2852
|
+
"description": "Notify status page subscribers about this incident update.",
|
|
2853
|
+
"name": "notify-subscribers",
|
|
2854
|
+
"allowNo": true,
|
|
2855
|
+
"type": "boolean"
|
|
2856
|
+
},
|
|
2857
|
+
"output": {
|
|
2858
|
+
"char": "o",
|
|
2859
|
+
"description": "Output format.",
|
|
2860
|
+
"name": "output",
|
|
2861
|
+
"default": "table",
|
|
2862
|
+
"hasDynamicHelp": false,
|
|
2863
|
+
"multiple": false,
|
|
2864
|
+
"options": [
|
|
2865
|
+
"table",
|
|
2866
|
+
"json",
|
|
2867
|
+
"md"
|
|
2868
|
+
],
|
|
2869
|
+
"type": "option"
|
|
2870
|
+
},
|
|
2871
|
+
"force": {
|
|
2872
|
+
"char": "f",
|
|
2873
|
+
"description": "Skip confirmation prompt.",
|
|
2874
|
+
"name": "force",
|
|
2875
|
+
"allowNo": false,
|
|
2876
|
+
"type": "boolean"
|
|
2877
|
+
},
|
|
2878
|
+
"dry-run": {
|
|
2879
|
+
"description": "Preview what would happen without executing.",
|
|
2880
|
+
"name": "dry-run",
|
|
2881
|
+
"allowNo": false,
|
|
2882
|
+
"type": "boolean"
|
|
2883
|
+
}
|
|
2884
|
+
},
|
|
2885
|
+
"hasDynamicHelp": false,
|
|
2886
|
+
"hidden": false,
|
|
2887
|
+
"hiddenAliases": [],
|
|
2888
|
+
"id": "incidents:resolve",
|
|
2889
|
+
"pluginAlias": "checkly",
|
|
2890
|
+
"pluginName": "checkly",
|
|
2891
|
+
"pluginType": "core",
|
|
2892
|
+
"strict": true,
|
|
2893
|
+
"enableJsonFlag": false,
|
|
2894
|
+
"coreCommand": false,
|
|
2895
|
+
"readOnly": false,
|
|
2896
|
+
"destructive": false,
|
|
2897
|
+
"idempotent": false,
|
|
2898
|
+
"isESM": true,
|
|
2899
|
+
"relativePath": [
|
|
2900
|
+
"dist",
|
|
2901
|
+
"commands",
|
|
2902
|
+
"incidents",
|
|
2903
|
+
"resolve.js"
|
|
2904
|
+
]
|
|
2905
|
+
},
|
|
2906
|
+
"incidents:update": {
|
|
2907
|
+
"aliases": [],
|
|
2908
|
+
"args": {
|
|
2909
|
+
"id": {
|
|
2910
|
+
"description": "The incident ID.",
|
|
2911
|
+
"name": "id",
|
|
2912
|
+
"required": true
|
|
2913
|
+
}
|
|
2914
|
+
},
|
|
2915
|
+
"description": "Post a progress update to an incident.",
|
|
2916
|
+
"flags": {
|
|
2917
|
+
"message": {
|
|
2918
|
+
"description": "Update message.",
|
|
2919
|
+
"name": "message",
|
|
2920
|
+
"required": true,
|
|
2921
|
+
"hasDynamicHelp": false,
|
|
2922
|
+
"multiple": false,
|
|
2923
|
+
"type": "option"
|
|
2924
|
+
},
|
|
2925
|
+
"status": {
|
|
2926
|
+
"description": "Incident progress status.",
|
|
2927
|
+
"name": "status",
|
|
2928
|
+
"default": "investigating",
|
|
2929
|
+
"hasDynamicHelp": false,
|
|
2930
|
+
"multiple": false,
|
|
2931
|
+
"options": [
|
|
2932
|
+
"investigating",
|
|
2933
|
+
"identified",
|
|
2934
|
+
"monitoring"
|
|
2935
|
+
],
|
|
2936
|
+
"type": "option"
|
|
2937
|
+
},
|
|
2938
|
+
"severity": {
|
|
2939
|
+
"description": "Update the overall incident severity.",
|
|
2940
|
+
"name": "severity",
|
|
2941
|
+
"hasDynamicHelp": false,
|
|
2942
|
+
"multiple": false,
|
|
2943
|
+
"options": [
|
|
2944
|
+
"minor",
|
|
2945
|
+
"medium",
|
|
2946
|
+
"major",
|
|
2947
|
+
"critical"
|
|
2948
|
+
],
|
|
2949
|
+
"type": "option"
|
|
2950
|
+
},
|
|
2951
|
+
"notify-subscribers": {
|
|
2952
|
+
"description": "Notify status page subscribers about this incident update.",
|
|
2953
|
+
"name": "notify-subscribers",
|
|
2954
|
+
"allowNo": true,
|
|
2955
|
+
"type": "boolean"
|
|
2956
|
+
},
|
|
2957
|
+
"output": {
|
|
2958
|
+
"char": "o",
|
|
2959
|
+
"description": "Output format.",
|
|
2960
|
+
"name": "output",
|
|
2961
|
+
"default": "table",
|
|
2962
|
+
"hasDynamicHelp": false,
|
|
2963
|
+
"multiple": false,
|
|
2964
|
+
"options": [
|
|
2965
|
+
"table",
|
|
2966
|
+
"json",
|
|
2967
|
+
"md"
|
|
2968
|
+
],
|
|
2969
|
+
"type": "option"
|
|
2970
|
+
},
|
|
2971
|
+
"force": {
|
|
2972
|
+
"char": "f",
|
|
2973
|
+
"description": "Skip confirmation prompt.",
|
|
2974
|
+
"name": "force",
|
|
2975
|
+
"allowNo": false,
|
|
2976
|
+
"type": "boolean"
|
|
2977
|
+
},
|
|
2978
|
+
"dry-run": {
|
|
2979
|
+
"description": "Preview what would happen without executing.",
|
|
2980
|
+
"name": "dry-run",
|
|
2981
|
+
"allowNo": false,
|
|
2982
|
+
"type": "boolean"
|
|
2983
|
+
}
|
|
2984
|
+
},
|
|
2985
|
+
"hasDynamicHelp": false,
|
|
2986
|
+
"hidden": false,
|
|
2987
|
+
"hiddenAliases": [],
|
|
2988
|
+
"id": "incidents:update",
|
|
2989
|
+
"pluginAlias": "checkly",
|
|
2990
|
+
"pluginName": "checkly",
|
|
2991
|
+
"pluginType": "core",
|
|
2992
|
+
"strict": true,
|
|
2993
|
+
"enableJsonFlag": false,
|
|
2994
|
+
"coreCommand": false,
|
|
2995
|
+
"readOnly": false,
|
|
2996
|
+
"destructive": false,
|
|
2997
|
+
"idempotent": false,
|
|
2998
|
+
"isESM": true,
|
|
2999
|
+
"relativePath": [
|
|
3000
|
+
"dist",
|
|
3001
|
+
"commands",
|
|
3002
|
+
"incidents",
|
|
3003
|
+
"update.js"
|
|
3004
|
+
]
|
|
3005
|
+
},
|
|
3006
|
+
"members:delete": {
|
|
3007
|
+
"aliases": [],
|
|
3008
|
+
"args": {
|
|
3009
|
+
"member": {
|
|
3010
|
+
"description": "The account member email or user ID.",
|
|
3011
|
+
"name": "member",
|
|
3012
|
+
"required": true
|
|
3013
|
+
}
|
|
3014
|
+
},
|
|
3015
|
+
"description": "Delete an account member.",
|
|
3016
|
+
"flags": {
|
|
3017
|
+
"email": {
|
|
3018
|
+
"description": "Treat the member argument as an email address.",
|
|
3019
|
+
"exclusive": [
|
|
3020
|
+
"id"
|
|
3021
|
+
],
|
|
3022
|
+
"name": "email",
|
|
3023
|
+
"allowNo": false,
|
|
3024
|
+
"type": "boolean"
|
|
3025
|
+
},
|
|
3026
|
+
"id": {
|
|
3027
|
+
"description": "Treat the member argument as a user ID.",
|
|
3028
|
+
"exclusive": [
|
|
3029
|
+
"email"
|
|
3030
|
+
],
|
|
3031
|
+
"name": "id",
|
|
3032
|
+
"allowNo": false,
|
|
3033
|
+
"type": "boolean"
|
|
3034
|
+
},
|
|
3035
|
+
"force": {
|
|
3036
|
+
"char": "f",
|
|
3037
|
+
"description": "Skip confirmation prompt.",
|
|
3038
|
+
"name": "force",
|
|
3039
|
+
"allowNo": false,
|
|
3040
|
+
"type": "boolean"
|
|
3041
|
+
},
|
|
3042
|
+
"dry-run": {
|
|
3043
|
+
"description": "Preview what would happen without executing.",
|
|
3044
|
+
"name": "dry-run",
|
|
3045
|
+
"allowNo": false,
|
|
3046
|
+
"type": "boolean"
|
|
3047
|
+
}
|
|
3048
|
+
},
|
|
3049
|
+
"hasDynamicHelp": false,
|
|
3050
|
+
"hidden": false,
|
|
3051
|
+
"hiddenAliases": [
|
|
3052
|
+
"account members delete"
|
|
3053
|
+
],
|
|
3054
|
+
"id": "members:delete",
|
|
3055
|
+
"pluginAlias": "checkly",
|
|
3056
|
+
"pluginName": "checkly",
|
|
3057
|
+
"pluginType": "core",
|
|
3058
|
+
"strict": true,
|
|
3059
|
+
"enableJsonFlag": false,
|
|
3060
|
+
"coreCommand": false,
|
|
3061
|
+
"readOnly": false,
|
|
3062
|
+
"destructive": true,
|
|
3063
|
+
"idempotent": true,
|
|
3064
|
+
"isESM": true,
|
|
3065
|
+
"relativePath": [
|
|
3066
|
+
"dist",
|
|
3067
|
+
"commands",
|
|
3068
|
+
"members",
|
|
3069
|
+
"delete.js"
|
|
3070
|
+
]
|
|
3071
|
+
},
|
|
3072
|
+
"members:update": {
|
|
3073
|
+
"aliases": [],
|
|
3074
|
+
"args": {
|
|
3075
|
+
"member": {
|
|
3076
|
+
"description": "The account member email or user ID.",
|
|
3077
|
+
"name": "member",
|
|
3078
|
+
"required": true
|
|
3079
|
+
}
|
|
3080
|
+
},
|
|
3081
|
+
"description": "Update an account member role.",
|
|
3082
|
+
"flags": {
|
|
3083
|
+
"role": {
|
|
3084
|
+
"char": "r",
|
|
3085
|
+
"description": "New member role: admin, read_write, read_run, read_only.",
|
|
3086
|
+
"name": "role",
|
|
3087
|
+
"required": true,
|
|
3088
|
+
"hasDynamicHelp": false,
|
|
3089
|
+
"multiple": false,
|
|
3090
|
+
"type": "option"
|
|
3091
|
+
},
|
|
3092
|
+
"email": {
|
|
3093
|
+
"description": "Treat the member argument as an email address.",
|
|
3094
|
+
"exclusive": [
|
|
3095
|
+
"id"
|
|
3096
|
+
],
|
|
3097
|
+
"name": "email",
|
|
3098
|
+
"allowNo": false,
|
|
3099
|
+
"type": "boolean"
|
|
3100
|
+
},
|
|
3101
|
+
"id": {
|
|
3102
|
+
"description": "Treat the member argument as a user ID.",
|
|
3103
|
+
"exclusive": [
|
|
3104
|
+
"email"
|
|
3105
|
+
],
|
|
3106
|
+
"name": "id",
|
|
3107
|
+
"allowNo": false,
|
|
3108
|
+
"type": "boolean"
|
|
3109
|
+
},
|
|
3110
|
+
"output": {
|
|
3111
|
+
"char": "o",
|
|
3112
|
+
"description": "Output format.",
|
|
3113
|
+
"name": "output",
|
|
3114
|
+
"default": "table",
|
|
3115
|
+
"hasDynamicHelp": false,
|
|
3116
|
+
"multiple": false,
|
|
3117
|
+
"options": [
|
|
3118
|
+
"table",
|
|
3119
|
+
"json",
|
|
3120
|
+
"md"
|
|
3121
|
+
],
|
|
3122
|
+
"type": "option"
|
|
3123
|
+
},
|
|
3124
|
+
"force": {
|
|
3125
|
+
"char": "f",
|
|
3126
|
+
"description": "Skip confirmation prompt.",
|
|
3127
|
+
"name": "force",
|
|
3128
|
+
"allowNo": false,
|
|
3129
|
+
"type": "boolean"
|
|
3130
|
+
},
|
|
3131
|
+
"dry-run": {
|
|
3132
|
+
"description": "Preview what would happen without executing.",
|
|
3133
|
+
"name": "dry-run",
|
|
3134
|
+
"allowNo": false,
|
|
3135
|
+
"type": "boolean"
|
|
3136
|
+
}
|
|
3137
|
+
},
|
|
3138
|
+
"hasDynamicHelp": false,
|
|
3139
|
+
"hidden": false,
|
|
3140
|
+
"hiddenAliases": [
|
|
3141
|
+
"account members update"
|
|
3142
|
+
],
|
|
3143
|
+
"id": "members:update",
|
|
3144
|
+
"pluginAlias": "checkly",
|
|
3145
|
+
"pluginName": "checkly",
|
|
3146
|
+
"pluginType": "core",
|
|
3147
|
+
"strict": true,
|
|
3148
|
+
"enableJsonFlag": false,
|
|
3149
|
+
"coreCommand": false,
|
|
3150
|
+
"readOnly": false,
|
|
3151
|
+
"destructive": false,
|
|
3152
|
+
"idempotent": true,
|
|
3153
|
+
"isESM": true,
|
|
3154
|
+
"relativePath": [
|
|
3155
|
+
"dist",
|
|
3156
|
+
"commands",
|
|
3157
|
+
"members",
|
|
3158
|
+
"update.js"
|
|
3159
|
+
]
|
|
3160
|
+
},
|
|
3161
|
+
"rca:get": {
|
|
3162
|
+
"aliases": [],
|
|
3163
|
+
"args": {
|
|
3164
|
+
"id": {
|
|
3165
|
+
"description": "The RCA ID to retrieve.",
|
|
3166
|
+
"name": "id",
|
|
3167
|
+
"required": true
|
|
3168
|
+
}
|
|
3169
|
+
},
|
|
3170
|
+
"description": "Retrieve a root cause analysis by ID.",
|
|
3171
|
+
"flags": {
|
|
3172
|
+
"watch": {
|
|
3173
|
+
"char": "w",
|
|
3174
|
+
"description": "Wait for the analysis to complete if still generating.",
|
|
3175
|
+
"name": "watch",
|
|
3176
|
+
"allowNo": false,
|
|
3177
|
+
"type": "boolean"
|
|
3178
|
+
},
|
|
3179
|
+
"output": {
|
|
3180
|
+
"char": "o",
|
|
3181
|
+
"description": "Output format.",
|
|
3182
|
+
"name": "output",
|
|
3183
|
+
"default": "detail",
|
|
3184
|
+
"hasDynamicHelp": false,
|
|
3185
|
+
"multiple": false,
|
|
3186
|
+
"options": [
|
|
3187
|
+
"detail",
|
|
3188
|
+
"json",
|
|
3189
|
+
"md"
|
|
3190
|
+
],
|
|
3191
|
+
"type": "option"
|
|
3192
|
+
}
|
|
3193
|
+
},
|
|
3194
|
+
"hasDynamicHelp": false,
|
|
3195
|
+
"hidden": false,
|
|
3196
|
+
"hiddenAliases": [],
|
|
3197
|
+
"id": "rca:get",
|
|
3198
|
+
"pluginAlias": "checkly",
|
|
3199
|
+
"pluginName": "checkly",
|
|
3200
|
+
"pluginType": "core",
|
|
3201
|
+
"strict": true,
|
|
3202
|
+
"enableJsonFlag": false,
|
|
3203
|
+
"coreCommand": false,
|
|
3204
|
+
"readOnly": true,
|
|
3205
|
+
"destructive": false,
|
|
3206
|
+
"idempotent": true,
|
|
3207
|
+
"isESM": true,
|
|
3208
|
+
"relativePath": [
|
|
3209
|
+
"dist",
|
|
3210
|
+
"commands",
|
|
3211
|
+
"rca",
|
|
3212
|
+
"get.js"
|
|
3213
|
+
]
|
|
3214
|
+
},
|
|
3215
|
+
"rca:run": {
|
|
3216
|
+
"aliases": [],
|
|
3217
|
+
"args": {},
|
|
3218
|
+
"description": "Trigger a root cause analysis for a check or test session error group.",
|
|
3219
|
+
"flags": {
|
|
3220
|
+
"error-group": {
|
|
3221
|
+
"char": "e",
|
|
3222
|
+
"description": "The error group ID to analyze.",
|
|
3223
|
+
"exclusive": [
|
|
3224
|
+
"test-session-error-group"
|
|
3225
|
+
],
|
|
3226
|
+
"name": "error-group",
|
|
3227
|
+
"hasDynamicHelp": false,
|
|
3228
|
+
"multiple": false,
|
|
3229
|
+
"type": "option"
|
|
3230
|
+
},
|
|
3231
|
+
"test-session-error-group": {
|
|
3232
|
+
"description": "The test session error group ID to analyze.",
|
|
3233
|
+
"helpLabel": "-te, --test-session-error-group",
|
|
3234
|
+
"name": "test-session-error-group",
|
|
3235
|
+
"hasDynamicHelp": false,
|
|
3236
|
+
"multiple": false,
|
|
3237
|
+
"type": "option"
|
|
3238
|
+
},
|
|
3239
|
+
"user-context": {
|
|
3240
|
+
"description": "Extra context to pass into the root cause analysis.",
|
|
3241
|
+
"name": "user-context",
|
|
3242
|
+
"hasDynamicHelp": false,
|
|
3243
|
+
"multiple": false,
|
|
3244
|
+
"type": "option"
|
|
3245
|
+
},
|
|
3246
|
+
"watch": {
|
|
3247
|
+
"char": "w",
|
|
3248
|
+
"description": "Wait for the analysis to complete and display the result.",
|
|
3249
|
+
"name": "watch",
|
|
3250
|
+
"allowNo": false,
|
|
3251
|
+
"type": "boolean"
|
|
3252
|
+
},
|
|
3253
|
+
"output": {
|
|
3254
|
+
"char": "o",
|
|
3255
|
+
"description": "Output format.",
|
|
3256
|
+
"name": "output",
|
|
3257
|
+
"default": "detail",
|
|
3258
|
+
"hasDynamicHelp": false,
|
|
3259
|
+
"multiple": false,
|
|
3260
|
+
"options": [
|
|
3261
|
+
"detail",
|
|
3262
|
+
"json",
|
|
3263
|
+
"md"
|
|
3264
|
+
],
|
|
3265
|
+
"type": "option"
|
|
3266
|
+
}
|
|
3267
|
+
},
|
|
3268
|
+
"hasDynamicHelp": false,
|
|
3269
|
+
"hidden": false,
|
|
3270
|
+
"hiddenAliases": [],
|
|
3271
|
+
"id": "rca:run",
|
|
3272
|
+
"pluginAlias": "checkly",
|
|
3273
|
+
"pluginName": "checkly",
|
|
3274
|
+
"pluginType": "core",
|
|
3275
|
+
"strict": true,
|
|
3276
|
+
"usage": "rca run [-e <value> | -te <value>] [--user-context <text>] [-w] [-o detail|json|md]",
|
|
3277
|
+
"enableJsonFlag": false,
|
|
3278
|
+
"coreCommand": false,
|
|
3279
|
+
"readOnly": false,
|
|
3280
|
+
"destructive": false,
|
|
3281
|
+
"idempotent": false,
|
|
3282
|
+
"isESM": true,
|
|
3283
|
+
"relativePath": [
|
|
3284
|
+
"dist",
|
|
3285
|
+
"commands",
|
|
3286
|
+
"rca",
|
|
3287
|
+
"run.js"
|
|
3288
|
+
]
|
|
3289
|
+
},
|
|
3290
|
+
"skills": {
|
|
3291
|
+
"aliases": [],
|
|
3292
|
+
"args": {
|
|
3293
|
+
"action": {
|
|
3294
|
+
"description": "The action name (e.g. \"configure\", \"initialize\").",
|
|
3295
|
+
"name": "action",
|
|
3296
|
+
"required": false
|
|
3297
|
+
},
|
|
3298
|
+
"reference": {
|
|
3299
|
+
"description": "A specific reference within the action (e.g. \"api-checks\").",
|
|
3300
|
+
"name": "reference",
|
|
3301
|
+
"required": false
|
|
3302
|
+
}
|
|
3303
|
+
},
|
|
3304
|
+
"description": "Show Checkly AI skills, actions and their references.",
|
|
3305
|
+
"flags": {},
|
|
3306
|
+
"hasDynamicHelp": false,
|
|
3307
|
+
"hidden": false,
|
|
3308
|
+
"hiddenAliases": [],
|
|
3309
|
+
"id": "skills",
|
|
3310
|
+
"pluginAlias": "checkly",
|
|
3311
|
+
"pluginName": "checkly",
|
|
3312
|
+
"pluginType": "core",
|
|
3313
|
+
"strict": true,
|
|
3314
|
+
"enableJsonFlag": false,
|
|
3315
|
+
"coreCommand": false,
|
|
3316
|
+
"readOnly": false,
|
|
3317
|
+
"destructive": false,
|
|
3318
|
+
"idempotent": false,
|
|
3319
|
+
"isESM": true,
|
|
3320
|
+
"relativePath": [
|
|
3321
|
+
"dist",
|
|
3322
|
+
"commands",
|
|
3323
|
+
"skills",
|
|
3324
|
+
"index.js"
|
|
3325
|
+
]
|
|
3326
|
+
},
|
|
3327
|
+
"skills:install": {
|
|
3328
|
+
"aliases": [],
|
|
3329
|
+
"args": {},
|
|
3330
|
+
"description": "Install the Checkly agent skill (SKILL.md) into your project.",
|
|
3331
|
+
"flags": {
|
|
3332
|
+
"target": {
|
|
3333
|
+
"char": "t",
|
|
3334
|
+
"description": "Platform to install the skill for (amp, claude, cline, codex, continue, cursor, gemini-cli, github-copilot, goose, opencode, roo, windsurf).",
|
|
3335
|
+
"exclusive": [
|
|
3336
|
+
"path"
|
|
3337
|
+
],
|
|
3338
|
+
"name": "target",
|
|
3339
|
+
"hasDynamicHelp": false,
|
|
3340
|
+
"multiple": false,
|
|
3341
|
+
"type": "option"
|
|
3342
|
+
},
|
|
3343
|
+
"path": {
|
|
3344
|
+
"char": "p",
|
|
3345
|
+
"description": "Custom target directory to install the skill into.",
|
|
3346
|
+
"exclusive": [
|
|
3347
|
+
"target"
|
|
3348
|
+
],
|
|
3349
|
+
"name": "path",
|
|
3350
|
+
"hasDynamicHelp": false,
|
|
3351
|
+
"multiple": false,
|
|
3352
|
+
"type": "option"
|
|
3353
|
+
},
|
|
3354
|
+
"force": {
|
|
3355
|
+
"char": "f",
|
|
3356
|
+
"description": "Overwrite existing SKILL.md without confirmation.",
|
|
3357
|
+
"name": "force",
|
|
3358
|
+
"allowNo": false,
|
|
3359
|
+
"type": "boolean"
|
|
3360
|
+
}
|
|
3361
|
+
},
|
|
3362
|
+
"hasDynamicHelp": false,
|
|
3363
|
+
"hidden": false,
|
|
3364
|
+
"hiddenAliases": [],
|
|
3365
|
+
"id": "skills:install",
|
|
3366
|
+
"pluginAlias": "checkly",
|
|
3367
|
+
"pluginName": "checkly",
|
|
3368
|
+
"pluginType": "core",
|
|
3369
|
+
"strict": true,
|
|
3370
|
+
"enableJsonFlag": false,
|
|
3371
|
+
"coreCommand": false,
|
|
3372
|
+
"readOnly": false,
|
|
3373
|
+
"destructive": false,
|
|
3374
|
+
"idempotent": true,
|
|
3375
|
+
"isESM": true,
|
|
3376
|
+
"relativePath": [
|
|
3377
|
+
"dist",
|
|
3378
|
+
"commands",
|
|
3379
|
+
"skills",
|
|
3380
|
+
"install.js"
|
|
3381
|
+
]
|
|
3382
|
+
},
|
|
3383
|
+
"status-pages:get": {
|
|
3384
|
+
"aliases": [],
|
|
3385
|
+
"args": {
|
|
3386
|
+
"id": {
|
|
3387
|
+
"description": "The ID of the status page to retrieve.",
|
|
3388
|
+
"name": "id",
|
|
3389
|
+
"required": true
|
|
3390
|
+
}
|
|
3391
|
+
},
|
|
3392
|
+
"description": "Get details of a status page, including its cards and services.",
|
|
3393
|
+
"flags": {
|
|
3394
|
+
"output": {
|
|
3395
|
+
"char": "o",
|
|
3396
|
+
"description": "Output format.",
|
|
3397
|
+
"name": "output",
|
|
3398
|
+
"default": "detail",
|
|
3399
|
+
"hasDynamicHelp": false,
|
|
3400
|
+
"multiple": false,
|
|
3401
|
+
"options": [
|
|
3402
|
+
"detail",
|
|
3403
|
+
"json",
|
|
3404
|
+
"md"
|
|
3405
|
+
],
|
|
3406
|
+
"type": "option"
|
|
3407
|
+
}
|
|
3408
|
+
},
|
|
3409
|
+
"hasDynamicHelp": false,
|
|
3410
|
+
"hidden": false,
|
|
3411
|
+
"hiddenAliases": [],
|
|
3412
|
+
"id": "status-pages:get",
|
|
3413
|
+
"pluginAlias": "checkly",
|
|
3414
|
+
"pluginName": "checkly",
|
|
3415
|
+
"pluginType": "core",
|
|
3416
|
+
"strict": true,
|
|
3417
|
+
"enableJsonFlag": false,
|
|
3418
|
+
"coreCommand": false,
|
|
3419
|
+
"readOnly": true,
|
|
3420
|
+
"destructive": false,
|
|
3421
|
+
"idempotent": true,
|
|
3422
|
+
"isESM": true,
|
|
3423
|
+
"relativePath": [
|
|
3424
|
+
"dist",
|
|
3425
|
+
"commands",
|
|
3426
|
+
"status-pages",
|
|
3427
|
+
"get.js"
|
|
3428
|
+
]
|
|
3429
|
+
},
|
|
3430
|
+
"status-pages:list": {
|
|
3431
|
+
"aliases": [],
|
|
3432
|
+
"args": {},
|
|
3433
|
+
"description": "List all status pages in your account.",
|
|
3434
|
+
"flags": {
|
|
3435
|
+
"limit": {
|
|
3436
|
+
"char": "l",
|
|
3437
|
+
"description": "Number of status pages to return (1-100).",
|
|
3438
|
+
"name": "limit",
|
|
3439
|
+
"default": 25,
|
|
3440
|
+
"hasDynamicHelp": false,
|
|
3441
|
+
"multiple": false,
|
|
3442
|
+
"type": "option"
|
|
3443
|
+
},
|
|
3444
|
+
"cursor": {
|
|
3445
|
+
"description": "Cursor for next page (from previous output).",
|
|
3446
|
+
"name": "cursor",
|
|
3447
|
+
"hasDynamicHelp": false,
|
|
3448
|
+
"multiple": false,
|
|
3449
|
+
"type": "option"
|
|
3450
|
+
},
|
|
3451
|
+
"compact": {
|
|
3452
|
+
"description": "Show one row per status page instead of per service.",
|
|
3453
|
+
"name": "compact",
|
|
3454
|
+
"allowNo": false,
|
|
3455
|
+
"type": "boolean"
|
|
3456
|
+
},
|
|
3457
|
+
"output": {
|
|
3458
|
+
"char": "o",
|
|
3459
|
+
"description": "Output format.",
|
|
3460
|
+
"name": "output",
|
|
3461
|
+
"default": "table",
|
|
3462
|
+
"hasDynamicHelp": false,
|
|
3463
|
+
"multiple": false,
|
|
3464
|
+
"options": [
|
|
3465
|
+
"table",
|
|
3466
|
+
"json",
|
|
3467
|
+
"md"
|
|
3468
|
+
],
|
|
3469
|
+
"type": "option"
|
|
3470
|
+
}
|
|
3471
|
+
},
|
|
3472
|
+
"hasDynamicHelp": false,
|
|
3473
|
+
"hidden": false,
|
|
3474
|
+
"hiddenAliases": [],
|
|
3475
|
+
"id": "status-pages:list",
|
|
3476
|
+
"pluginAlias": "checkly",
|
|
3477
|
+
"pluginName": "checkly",
|
|
3478
|
+
"pluginType": "core",
|
|
3479
|
+
"strict": true,
|
|
3480
|
+
"enableJsonFlag": false,
|
|
3481
|
+
"coreCommand": false,
|
|
3482
|
+
"readOnly": true,
|
|
3483
|
+
"destructive": false,
|
|
3484
|
+
"idempotent": true,
|
|
3485
|
+
"isESM": true,
|
|
3486
|
+
"relativePath": [
|
|
3487
|
+
"dist",
|
|
3488
|
+
"commands",
|
|
3489
|
+
"status-pages",
|
|
3490
|
+
"list.js"
|
|
3491
|
+
]
|
|
3492
|
+
},
|
|
3493
|
+
"test-sessions:get": {
|
|
3494
|
+
"aliases": [],
|
|
3495
|
+
"args": {
|
|
3496
|
+
"id": {
|
|
3497
|
+
"description": "The ID of the test session to retrieve.",
|
|
3498
|
+
"name": "id",
|
|
3499
|
+
"required": true
|
|
3500
|
+
}
|
|
3501
|
+
},
|
|
3502
|
+
"description": "Get details of a recorded test session, including result error groups for RCA.",
|
|
3503
|
+
"flags": {
|
|
3504
|
+
"result": {
|
|
3505
|
+
"char": "r",
|
|
3506
|
+
"description": "Show details for a specific test session result ID.",
|
|
3507
|
+
"name": "result",
|
|
3508
|
+
"hasDynamicHelp": false,
|
|
3509
|
+
"multiple": false,
|
|
3510
|
+
"type": "option"
|
|
3511
|
+
},
|
|
3512
|
+
"error-group": {
|
|
3513
|
+
"description": "Show details for a test session error group ID from this session.",
|
|
3514
|
+
"name": "error-group",
|
|
3515
|
+
"hasDynamicHelp": false,
|
|
3516
|
+
"multiple": false,
|
|
3517
|
+
"type": "option"
|
|
3518
|
+
},
|
|
3519
|
+
"error-groups-limit": {
|
|
3520
|
+
"description": "Number of error group IDs to show in the session summary.",
|
|
3521
|
+
"name": "error-groups-limit",
|
|
3522
|
+
"default": 5,
|
|
3523
|
+
"hasDynamicHelp": false,
|
|
3524
|
+
"multiple": false,
|
|
3525
|
+
"type": "option"
|
|
3526
|
+
},
|
|
3527
|
+
"full-error": {
|
|
3528
|
+
"description": "Print the complete raw error when showing a test session error group.",
|
|
3529
|
+
"name": "full-error",
|
|
3530
|
+
"allowNo": false,
|
|
3531
|
+
"type": "boolean"
|
|
3532
|
+
},
|
|
3533
|
+
"watch": {
|
|
3534
|
+
"char": "w",
|
|
3535
|
+
"description": "Watch a running test session until it completes before rendering.",
|
|
3536
|
+
"name": "watch",
|
|
3537
|
+
"allowNo": false,
|
|
3538
|
+
"type": "boolean"
|
|
3539
|
+
},
|
|
3540
|
+
"output": {
|
|
3541
|
+
"char": "o",
|
|
3542
|
+
"description": "Output format.",
|
|
3543
|
+
"name": "output",
|
|
3544
|
+
"default": "detail",
|
|
3545
|
+
"hasDynamicHelp": false,
|
|
3546
|
+
"multiple": false,
|
|
3547
|
+
"options": [
|
|
3548
|
+
"detail",
|
|
3549
|
+
"json",
|
|
3550
|
+
"md"
|
|
3551
|
+
],
|
|
3552
|
+
"type": "option"
|
|
3553
|
+
}
|
|
3554
|
+
},
|
|
3555
|
+
"hasDynamicHelp": false,
|
|
3556
|
+
"hidden": false,
|
|
3557
|
+
"hiddenAliases": [],
|
|
3558
|
+
"id": "test-sessions:get",
|
|
3559
|
+
"pluginAlias": "checkly",
|
|
3560
|
+
"pluginName": "checkly",
|
|
3561
|
+
"pluginType": "core",
|
|
3562
|
+
"strict": true,
|
|
3563
|
+
"enableJsonFlag": false,
|
|
3564
|
+
"coreCommand": false,
|
|
3565
|
+
"readOnly": true,
|
|
3566
|
+
"destructive": false,
|
|
3567
|
+
"idempotent": true,
|
|
3568
|
+
"isESM": true,
|
|
3569
|
+
"relativePath": [
|
|
3570
|
+
"dist",
|
|
3571
|
+
"commands",
|
|
3572
|
+
"test-sessions",
|
|
3573
|
+
"get.js"
|
|
3574
|
+
]
|
|
3575
|
+
},
|
|
3576
|
+
"test-sessions:list": {
|
|
3577
|
+
"aliases": [],
|
|
3578
|
+
"args": {},
|
|
3579
|
+
"description": "List recorded test sessions.",
|
|
3580
|
+
"flags": {
|
|
3581
|
+
"limit": {
|
|
3582
|
+
"char": "l",
|
|
3583
|
+
"description": "Number of test sessions to return (1-100).",
|
|
3584
|
+
"name": "limit",
|
|
3585
|
+
"default": 20,
|
|
3586
|
+
"hasDynamicHelp": false,
|
|
3587
|
+
"multiple": false,
|
|
3588
|
+
"type": "option"
|
|
3589
|
+
},
|
|
3590
|
+
"cursor": {
|
|
3591
|
+
"description": "Cursor for next page (from previous output).",
|
|
3592
|
+
"name": "cursor",
|
|
3593
|
+
"hasDynamicHelp": false,
|
|
3594
|
+
"multiple": false,
|
|
3595
|
+
"type": "option"
|
|
3596
|
+
},
|
|
3597
|
+
"from": {
|
|
3598
|
+
"description": "Only include test sessions created at or after this ISO date or Unix timestamp.",
|
|
3599
|
+
"name": "from",
|
|
3600
|
+
"hasDynamicHelp": false,
|
|
3601
|
+
"multiple": false,
|
|
3602
|
+
"type": "option"
|
|
3603
|
+
},
|
|
3604
|
+
"to": {
|
|
3605
|
+
"description": "Only include test sessions created before this ISO date or Unix timestamp.",
|
|
3606
|
+
"name": "to",
|
|
3607
|
+
"hasDynamicHelp": false,
|
|
3608
|
+
"multiple": false,
|
|
3609
|
+
"type": "option"
|
|
3610
|
+
},
|
|
3611
|
+
"status": {
|
|
3612
|
+
"description": "Filter by test session status: running, failed, passed, cancelled. Can be specified multiple times.",
|
|
3613
|
+
"name": "status",
|
|
3614
|
+
"delimiter": ",",
|
|
3615
|
+
"hasDynamicHelp": false,
|
|
3616
|
+
"multiple": true,
|
|
3617
|
+
"type": "option"
|
|
3618
|
+
},
|
|
3619
|
+
"branch": {
|
|
3620
|
+
"description": "Filter by Git branch name. Can be specified multiple times.",
|
|
3621
|
+
"name": "branch",
|
|
3622
|
+
"delimiter": ",",
|
|
3623
|
+
"hasDynamicHelp": false,
|
|
3624
|
+
"multiple": true,
|
|
3625
|
+
"type": "option"
|
|
3626
|
+
},
|
|
3627
|
+
"user": {
|
|
3628
|
+
"description": "Filter by commit owner or invoking user ID. Can be specified multiple times.",
|
|
3629
|
+
"name": "user",
|
|
3630
|
+
"delimiter": ",",
|
|
3631
|
+
"hasDynamicHelp": false,
|
|
3632
|
+
"multiple": true,
|
|
3633
|
+
"type": "option"
|
|
3634
|
+
},
|
|
3635
|
+
"no-users": {
|
|
3636
|
+
"description": "Include sessions with no commit owner and no invoking user.",
|
|
3637
|
+
"name": "no-users",
|
|
3638
|
+
"allowNo": false,
|
|
3639
|
+
"type": "boolean"
|
|
3640
|
+
},
|
|
3641
|
+
"provider": {
|
|
3642
|
+
"description": "Filter by test session provider: github, vercel, api, trigger, pw_reporter. Can be specified multiple times.",
|
|
3643
|
+
"name": "provider",
|
|
3644
|
+
"delimiter": ",",
|
|
3645
|
+
"hasDynamicHelp": false,
|
|
3646
|
+
"multiple": true,
|
|
3647
|
+
"type": "option"
|
|
3648
|
+
},
|
|
3649
|
+
"search": {
|
|
3650
|
+
"char": "s",
|
|
3651
|
+
"description": "Search test session text fields (3-200 characters).",
|
|
3652
|
+
"name": "search",
|
|
3653
|
+
"hasDynamicHelp": false,
|
|
3654
|
+
"multiple": false,
|
|
3655
|
+
"type": "option"
|
|
3656
|
+
},
|
|
3657
|
+
"error-group": {
|
|
3658
|
+
"description": "Filter by test-session error group ID.",
|
|
3659
|
+
"name": "error-group",
|
|
3660
|
+
"hasDynamicHelp": false,
|
|
3661
|
+
"multiple": false,
|
|
3662
|
+
"type": "option"
|
|
3663
|
+
},
|
|
3664
|
+
"output": {
|
|
3665
|
+
"char": "o",
|
|
3666
|
+
"description": "Output format.",
|
|
3667
|
+
"name": "output",
|
|
3668
|
+
"default": "table",
|
|
3669
|
+
"hasDynamicHelp": false,
|
|
3670
|
+
"multiple": false,
|
|
3671
|
+
"options": [
|
|
3672
|
+
"table",
|
|
3673
|
+
"json",
|
|
3674
|
+
"md"
|
|
3675
|
+
],
|
|
3676
|
+
"type": "option"
|
|
3677
|
+
}
|
|
3678
|
+
},
|
|
3679
|
+
"hasDynamicHelp": false,
|
|
3680
|
+
"hidden": false,
|
|
3681
|
+
"hiddenAliases": [],
|
|
3682
|
+
"id": "test-sessions:list",
|
|
3683
|
+
"pluginAlias": "checkly",
|
|
3684
|
+
"pluginName": "checkly",
|
|
3685
|
+
"pluginType": "core",
|
|
3686
|
+
"strict": true,
|
|
3687
|
+
"enableJsonFlag": false,
|
|
3688
|
+
"coreCommand": false,
|
|
3689
|
+
"readOnly": true,
|
|
3690
|
+
"destructive": false,
|
|
3691
|
+
"idempotent": true,
|
|
3692
|
+
"isESM": true,
|
|
3693
|
+
"relativePath": [
|
|
3694
|
+
"dist",
|
|
3695
|
+
"commands",
|
|
3696
|
+
"test-sessions",
|
|
3697
|
+
"list.js"
|
|
3698
|
+
]
|
|
3699
|
+
}
|
|
3700
|
+
},
|
|
3701
|
+
"version": "0.0.0-canary.7166ed8"
|
|
3702
|
+
}
|