@camstack/addon-provider-onvif 1.2.63 → 1.2.64
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
|
@@ -12833,7 +12833,12 @@ var ConfigEntrySchema = object({
|
|
|
12833
12833
|
value: unknown(),
|
|
12834
12834
|
description: string().optional()
|
|
12835
12835
|
});
|
|
12836
|
-
|
|
12836
|
+
/**
|
|
12837
|
+
* Only `manual` since D356: the operator picks, nothing links itself. The
|
|
12838
|
+
* field survives on the wire because a viewer already OTA'd parses it —
|
|
12839
|
+
* drop it once no shipped client reads `mode`.
|
|
12840
|
+
*/
|
|
12841
|
+
var LinkedDevicesModeSchema = _enum(["manual"]);
|
|
12837
12842
|
/** One resolved linked device — the compact projection consumers need. */
|
|
12838
12843
|
var LinkedDeviceSchema = object({
|
|
12839
12844
|
deviceId: number(),
|
package/dist/addon.mjs
CHANGED
|
@@ -12834,7 +12834,12 @@ var ConfigEntrySchema = object({
|
|
|
12834
12834
|
value: unknown(),
|
|
12835
12835
|
description: string().optional()
|
|
12836
12836
|
});
|
|
12837
|
-
|
|
12837
|
+
/**
|
|
12838
|
+
* Only `manual` since D356: the operator picks, nothing links itself. The
|
|
12839
|
+
* field survives on the wire because a viewer already OTA'd parses it —
|
|
12840
|
+
* drop it once no shipped client reads `mode`.
|
|
12841
|
+
*/
|
|
12842
|
+
var LinkedDevicesModeSchema = _enum(["manual"]);
|
|
12838
12843
|
/** One resolved linked device — the compact projection consumers need. */
|
|
12839
12844
|
var LinkedDeviceSchema = object({
|
|
12840
12845
|
deviceId: number(),
|