@camstack/addon-provider-rtsp 1.2.64 → 1.2.65
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/dist/addon.js +6 -1
- package/dist/addon.mjs +6 -1
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -13099,7 +13099,12 @@ var ConfigEntrySchema = object({
|
|
|
13099
13099
|
value: unknown(),
|
|
13100
13100
|
description: string().optional()
|
|
13101
13101
|
});
|
|
13102
|
-
|
|
13102
|
+
/**
|
|
13103
|
+
* Only `manual` since D356: the operator picks, nothing links itself. The
|
|
13104
|
+
* field survives on the wire because a viewer already OTA'd parses it —
|
|
13105
|
+
* drop it once no shipped client reads `mode`.
|
|
13106
|
+
*/
|
|
13107
|
+
var LinkedDevicesModeSchema = _enum(["manual"]);
|
|
13103
13108
|
/** One resolved linked device — the compact projection consumers need. */
|
|
13104
13109
|
var LinkedDeviceSchema = object({
|
|
13105
13110
|
deviceId: number(),
|
package/dist/addon.mjs
CHANGED
|
@@ -13075,7 +13075,12 @@ var ConfigEntrySchema = object({
|
|
|
13075
13075
|
value: unknown(),
|
|
13076
13076
|
description: string().optional()
|
|
13077
13077
|
});
|
|
13078
|
-
|
|
13078
|
+
/**
|
|
13079
|
+
* Only `manual` since D356: the operator picks, nothing links itself. The
|
|
13080
|
+
* field survives on the wire because a viewer already OTA'd parses it —
|
|
13081
|
+
* drop it once no shipped client reads `mode`.
|
|
13082
|
+
*/
|
|
13083
|
+
var LinkedDevicesModeSchema = _enum(["manual"]);
|
|
13079
13084
|
/** One resolved linked device — the compact projection consumers need. */
|
|
13080
13085
|
var LinkedDeviceSchema = object({
|
|
13081
13086
|
deviceId: number(),
|