@nonstrict/recordkit 0.57.0 → 0.58.0

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/bin/README.md CHANGED
@@ -1 +1 @@
1
- # recordkit-rpc 0.57.0
1
+ # recordkit-rpc 0.58.0
package/bin/recordkit-rpc CHANGED
Binary file
package/out/Recorder.d.ts CHANGED
@@ -37,6 +37,9 @@ export interface WebcamSchema {
37
37
  filename?: string;
38
38
  camera: Camera | string;
39
39
  microphone: Microphone | string;
40
+ preserveActiveCameraConfiguration?: boolean;
41
+ leftAudioChannelOnly?: boolean;
42
+ audioDelay?: number;
40
43
  }
41
44
  /**
42
45
  * Creates a recorder item for recording a single display. Output is stored in a RecordKit bundle.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nonstrict/recordkit",
3
- "version": "0.57.0",
3
+ "version": "0.58.0",
4
4
  "description": "Powerful screen recording for your Electron app on macOS.",
5
5
  "homepage": "https://nonstrict.eu/recordkit",
6
6
  "repository": "nonstrict-hq/RecordKit.Electron",
package/src/Recorder.ts CHANGED
@@ -246,6 +246,9 @@ export interface WebcamSchema {
246
246
  filename?: string
247
247
  camera: Camera | string
248
248
  microphone: Microphone | string
249
+ preserveActiveCameraConfiguration?: boolean
250
+ leftAudioChannelOnly?: boolean
251
+ audioDelay?: number
249
252
  }
250
253
 
251
254
  /**