@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 +1 -1
- package/bin/recordkit-rpc +0 -0
- package/out/RecordKit.d.ts +7 -0
- package/package.json +1 -1
- package/src/RecordKit.ts +9 -1
package/bin/README.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
# recordkit-rpc 0.
|
|
1
|
+
# recordkit-rpc 0.4.0
|
package/bin/recordkit-rpc
CHANGED
|
Binary file
|
package/out/RecordKit.d.ts
CHANGED
|
@@ -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
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
|
/**
|