checkly 4.0.0 → 4.0.1
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/dist/commands/test.js +1 -11
- package/dist/commands/test.js.map +1 -1
- package/dist/commands/trigger.d.ts +32 -0
- package/dist/commands/trigger.js +173 -0
- package/dist/commands/trigger.js.map +1 -0
- package/dist/reporters/abstract-list.d.ts +1 -1
- package/dist/reporters/abstract-list.js +10 -4
- package/dist/reporters/abstract-list.js.map +1 -1
- package/dist/reporters/github.d.ts +1 -0
- package/dist/reporters/github.js +13 -3
- package/dist/reporters/github.js.map +1 -1
- package/dist/rest/test-sessions.d.ts +21 -0
- package/dist/rest/test-sessions.js +3 -0
- package/dist/rest/test-sessions.js.map +1 -1
- package/dist/services/config.js +2 -0
- package/dist/services/config.js.map +1 -1
- package/dist/services/trigger-runner.d.ts +26 -0
- package/dist/services/trigger-runner.js +47 -0
- package/dist/services/trigger-runner.js.map +1 -0
- package/dist/services/util.d.ts +1 -0
- package/dist/services/util.js +11 -1
- package/dist/services/util.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/oclif.manifest.json +105 -1
- package/package.json +1 -1
package/oclif.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "4.0.
|
|
2
|
+
"version": "4.0.1",
|
|
3
3
|
"commands": {
|
|
4
4
|
"authCommand": {
|
|
5
5
|
"id": "authCommand",
|
|
@@ -280,6 +280,110 @@
|
|
|
280
280
|
}
|
|
281
281
|
}
|
|
282
282
|
},
|
|
283
|
+
"trigger": {
|
|
284
|
+
"id": "trigger",
|
|
285
|
+
"description": "Trigger checks on Checkly",
|
|
286
|
+
"strict": true,
|
|
287
|
+
"pluginName": "checkly",
|
|
288
|
+
"pluginAlias": "checkly",
|
|
289
|
+
"pluginType": "core",
|
|
290
|
+
"hidden": false,
|
|
291
|
+
"aliases": [],
|
|
292
|
+
"flags": {
|
|
293
|
+
"location": {
|
|
294
|
+
"name": "location",
|
|
295
|
+
"type": "option",
|
|
296
|
+
"char": "l",
|
|
297
|
+
"description": "The location to run the checks at.",
|
|
298
|
+
"multiple": false
|
|
299
|
+
},
|
|
300
|
+
"private-location": {
|
|
301
|
+
"name": "private-location",
|
|
302
|
+
"type": "option",
|
|
303
|
+
"description": "The private location to run checks at.",
|
|
304
|
+
"multiple": false,
|
|
305
|
+
"exclusive": [
|
|
306
|
+
"location"
|
|
307
|
+
]
|
|
308
|
+
},
|
|
309
|
+
"tags": {
|
|
310
|
+
"name": "tags",
|
|
311
|
+
"type": "option",
|
|
312
|
+
"char": "t",
|
|
313
|
+
"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).",
|
|
314
|
+
"required": false,
|
|
315
|
+
"multiple": true
|
|
316
|
+
},
|
|
317
|
+
"config": {
|
|
318
|
+
"name": "config",
|
|
319
|
+
"type": "option",
|
|
320
|
+
"char": "c",
|
|
321
|
+
"description": "The Checkly CLI config filename.",
|
|
322
|
+
"multiple": false
|
|
323
|
+
},
|
|
324
|
+
"timeout": {
|
|
325
|
+
"name": "timeout",
|
|
326
|
+
"type": "option",
|
|
327
|
+
"description": "A timeout (in seconds) to wait for checks to complete.",
|
|
328
|
+
"multiple": false,
|
|
329
|
+
"default": 240
|
|
330
|
+
},
|
|
331
|
+
"verbose": {
|
|
332
|
+
"name": "verbose",
|
|
333
|
+
"type": "boolean",
|
|
334
|
+
"char": "v",
|
|
335
|
+
"description": "Always show the full logs of the checks.",
|
|
336
|
+
"allowNo": true
|
|
337
|
+
},
|
|
338
|
+
"reporter": {
|
|
339
|
+
"name": "reporter",
|
|
340
|
+
"type": "option",
|
|
341
|
+
"char": "r",
|
|
342
|
+
"description": "A list of custom reporters for the test output.",
|
|
343
|
+
"multiple": false,
|
|
344
|
+
"options": [
|
|
345
|
+
"list",
|
|
346
|
+
"dot",
|
|
347
|
+
"ci",
|
|
348
|
+
"github"
|
|
349
|
+
]
|
|
350
|
+
},
|
|
351
|
+
"env": {
|
|
352
|
+
"name": "env",
|
|
353
|
+
"type": "option",
|
|
354
|
+
"char": "e",
|
|
355
|
+
"description": "Env vars to be passed to the check run.",
|
|
356
|
+
"multiple": true,
|
|
357
|
+
"exclusive": [
|
|
358
|
+
"env-file"
|
|
359
|
+
],
|
|
360
|
+
"default": []
|
|
361
|
+
},
|
|
362
|
+
"env-file": {
|
|
363
|
+
"name": "env-file",
|
|
364
|
+
"type": "option",
|
|
365
|
+
"description": "dotenv file path to be passed. For example --env-file=\"./.env\"",
|
|
366
|
+
"multiple": false,
|
|
367
|
+
"exclusive": [
|
|
368
|
+
"env"
|
|
369
|
+
]
|
|
370
|
+
},
|
|
371
|
+
"record": {
|
|
372
|
+
"name": "record",
|
|
373
|
+
"type": "boolean",
|
|
374
|
+
"description": "Record check results in Checkly as a test session with full logs, traces and videos.",
|
|
375
|
+
"allowNo": false
|
|
376
|
+
},
|
|
377
|
+
"test-session-name": {
|
|
378
|
+
"name": "test-session-name",
|
|
379
|
+
"type": "option",
|
|
380
|
+
"char": "n",
|
|
381
|
+
"description": "A name to use when storing results in Checkly with --record.",
|
|
382
|
+
"multiple": false
|
|
383
|
+
}
|
|
384
|
+
},
|
|
385
|
+
"args": {}
|
|
386
|
+
},
|
|
283
387
|
"whoami": {
|
|
284
388
|
"id": "whoami",
|
|
285
389
|
"description": "See your currently logged in account and user.",
|