dashcam 1.4.12-beta → 1.4.13-beta

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -22,7 +22,7 @@ Capture video recordings of automated test runs with synchronized browser logs,
22
22
  # Install in your CI environment
23
23
  npm install -g dashcam
24
24
 
25
- # Authenticate with your API key (get it from app.testdriver.ai/team)
25
+ # Authenticate with your API key (get it from console.testdriver.ai/team)
26
26
  dashcam auth $TD_API_KEY
27
27
 
28
28
  # Wrap your test command
@@ -418,7 +418,7 @@ dashcam stop
418
418
  ### `dashcam auth <apiKey>`
419
419
  Authenticate with your TestDriver API key.
420
420
 
421
- > 💡 **Get your API key** from [app.testdriver.ai/team](https://app.testdriver.ai/team)
421
+ > 💡 **Get your API key** from [console.testdriver.ai/team](https://console.testdriver.ai/team)
422
422
 
423
423
  ```bash
424
424
  dashcam auth 4e93d8bf-3886-4d26-a144-116c4063522d
package/bin/dashcam.js CHANGED
@@ -363,7 +363,7 @@ program
363
363
  .action(async () => {
364
364
  // Call recordingAction with minimal options for instant replay
365
365
  await recordingAction({
366
- fps: '30',
366
+ fps: '10',
367
367
  audio: false,
368
368
  silent: false
369
369
  }, null);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dashcam",
3
- "version": "1.4.12-beta",
3
+ "version": "1.4.13-beta",
4
4
  "description": "Minimal CLI version of Dashcam desktop app",
5
5
  "main": "bin/dashcam.js",
6
6
  "bin": {