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