@nonstrict/recordkit 0.6.0 → 0.7.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.6.0
1
+ # recordkit-rpc 0.7.0
package/bin/recordkit-rpc CHANGED
Binary file
package/out/Recorder.d.ts CHANGED
@@ -46,6 +46,7 @@ export interface WindowBasedCropSchema {
46
46
  window: Window | number;
47
47
  shows_cursor?: boolean;
48
48
  mouse_events?: boolean;
49
+ keyboard_events?: boolean;
49
50
  }
50
51
  /**
51
52
  * @group Recording Schemas
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nonstrict/recordkit",
3
- "version": "0.6.0",
3
+ "version": "0.7.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
@@ -109,6 +109,7 @@ export interface WindowBasedCropSchema {
109
109
  window: Window | number // UInt32
110
110
  shows_cursor?: boolean
111
111
  mouse_events?: boolean
112
+ keyboard_events?: boolean
112
113
  }
113
114
 
114
115
  /**