@camstack/addon-decoder-nodeav 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/index.js +6 -1
- package/dist/index.mjs +6 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -12883,7 +12883,12 @@ var ConfigEntrySchema = object({
|
|
|
12883
12883
|
value: unknown(),
|
|
12884
12884
|
description: string().optional()
|
|
12885
12885
|
});
|
|
12886
|
-
|
|
12886
|
+
/**
|
|
12887
|
+
* Only `manual` since D356: the operator picks, nothing links itself. The
|
|
12888
|
+
* field survives on the wire because a viewer already OTA'd parses it —
|
|
12889
|
+
* drop it once no shipped client reads `mode`.
|
|
12890
|
+
*/
|
|
12891
|
+
var LinkedDevicesModeSchema = _enum(["manual"]);
|
|
12887
12892
|
/** One resolved linked device — the compact projection consumers need. */
|
|
12888
12893
|
var LinkedDeviceSchema = object({
|
|
12889
12894
|
deviceId: number(),
|
package/dist/index.mjs
CHANGED
|
@@ -12879,7 +12879,12 @@ var ConfigEntrySchema = object({
|
|
|
12879
12879
|
value: unknown(),
|
|
12880
12880
|
description: string().optional()
|
|
12881
12881
|
});
|
|
12882
|
-
|
|
12882
|
+
/**
|
|
12883
|
+
* Only `manual` since D356: the operator picks, nothing links itself. The
|
|
12884
|
+
* field survives on the wire because a viewer already OTA'd parses it —
|
|
12885
|
+
* drop it once no shipped client reads `mode`.
|
|
12886
|
+
*/
|
|
12887
|
+
var LinkedDevicesModeSchema = _enum(["manual"]);
|
|
12883
12888
|
/** One resolved linked device — the compact projection consumers need. */
|
|
12884
12889
|
var LinkedDeviceSchema = object({
|
|
12885
12890
|
deviceId: number(),
|