@nonstrict/recordkit 0.3.3 → 0.4.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.3.3
1
+ # recordkit-rpc 0.4.0
package/bin/recordkit-rpc CHANGED
Binary file
@@ -105,6 +105,13 @@ export interface Camera {
105
105
  model_id: string;
106
106
  manufacturer: string;
107
107
  availability: 'available' | 'lidClosed' | 'unknownSuspended';
108
+ /**
109
+ * This URL can be used in a `img` tag to display a live preview of the camera feed in your user interface.
110
+ *
111
+ * @remarks
112
+ * The preview URL should be available for every camera under normal conditions. If you observe a camera without a preview URL please report it as a bug.
113
+ */
114
+ preview_url?: string;
108
115
  }
109
116
  /**
110
117
  * @group Discovery
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nonstrict/recordkit",
3
- "version": "0.3.3",
3
+ "version": "0.4.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/RecordKit.ts CHANGED
@@ -160,7 +160,15 @@ export interface Camera {
160
160
  name: string;
161
161
  model_id: string;
162
162
  manufacturer: string;
163
- availability: 'available' | 'lidClosed' | 'unknownSuspended'
163
+ availability: 'available' | 'lidClosed' | 'unknownSuspended',
164
+
165
+ /**
166
+ * This URL can be used in a `img` tag to display a live preview of the camera feed in your user interface.
167
+ *
168
+ * @remarks
169
+ * The preview URL should be available for every camera under normal conditions. If you observe a camera without a preview URL please report it as a bug.
170
+ */
171
+ preview_url?: string;
164
172
  }
165
173
 
166
174
  /**