@camstack/addon-decoder-nodeav 1.2.18 → 1.2.19
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 +8 -1
- package/dist/index.mjs +8 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -19253,7 +19253,14 @@ targets: array(object({
|
|
|
19253
19253
|
"sleeping",
|
|
19254
19254
|
"unreachable",
|
|
19255
19255
|
"waking"
|
|
19256
|
-
]).nullable()
|
|
19256
|
+
]).nullable(),
|
|
19257
|
+
/** A battery camera (whatever its current state). An AWAKE battery
|
|
19258
|
+
* camera is deliberately NOT recaptured on the poll cadence — every
|
|
19259
|
+
* capture is a camera hit that would keep it out of sleep — so its
|
|
19260
|
+
* cached frame legitimately ages past the currency ceiling while
|
|
19261
|
+
* nothing is streaming. A surface must keep painting it (a fresh
|
|
19262
|
+
* frame is captured at each wake), not blank to "unavailable". */
|
|
19263
|
+
battery: boolean()
|
|
19257
19264
|
})));
|
|
19258
19265
|
/**
|
|
19259
19266
|
* `sso-bridge` — internal hub-only cap that lets SSO-style auth
|
package/dist/index.mjs
CHANGED
|
@@ -19249,7 +19249,14 @@ targets: array(object({
|
|
|
19249
19249
|
"sleeping",
|
|
19250
19250
|
"unreachable",
|
|
19251
19251
|
"waking"
|
|
19252
|
-
]).nullable()
|
|
19252
|
+
]).nullable(),
|
|
19253
|
+
/** A battery camera (whatever its current state). An AWAKE battery
|
|
19254
|
+
* camera is deliberately NOT recaptured on the poll cadence — every
|
|
19255
|
+
* capture is a camera hit that would keep it out of sleep — so its
|
|
19256
|
+
* cached frame legitimately ages past the currency ceiling while
|
|
19257
|
+
* nothing is streaming. A surface must keep painting it (a fresh
|
|
19258
|
+
* frame is captured at each wake), not blank to "unavailable". */
|
|
19259
|
+
battery: boolean()
|
|
19253
19260
|
})));
|
|
19254
19261
|
/**
|
|
19255
19262
|
* `sso-bridge` — internal hub-only cap that lets SSO-style auth
|