@camstack/addon-provider-rtsp 1.2.19 → 1.2.20
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 +8 -1
- package/dist/addon.mjs +8 -1
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -19619,7 +19619,14 @@ targets: array(object({
|
|
|
19619
19619
|
"sleeping",
|
|
19620
19620
|
"unreachable",
|
|
19621
19621
|
"waking"
|
|
19622
|
-
]).nullable()
|
|
19622
|
+
]).nullable(),
|
|
19623
|
+
/** A battery camera (whatever its current state). An AWAKE battery
|
|
19624
|
+
* camera is deliberately NOT recaptured on the poll cadence — every
|
|
19625
|
+
* capture is a camera hit that would keep it out of sleep — so its
|
|
19626
|
+
* cached frame legitimately ages past the currency ceiling while
|
|
19627
|
+
* nothing is streaming. A surface must keep painting it (a fresh
|
|
19628
|
+
* frame is captured at each wake), not blank to "unavailable". */
|
|
19629
|
+
battery: boolean()
|
|
19623
19630
|
})))
|
|
19624
19631
|
},
|
|
19625
19632
|
status: {
|
package/dist/addon.mjs
CHANGED
|
@@ -19595,7 +19595,14 @@ targets: array(object({
|
|
|
19595
19595
|
"sleeping",
|
|
19596
19596
|
"unreachable",
|
|
19597
19597
|
"waking"
|
|
19598
|
-
]).nullable()
|
|
19598
|
+
]).nullable(),
|
|
19599
|
+
/** A battery camera (whatever its current state). An AWAKE battery
|
|
19600
|
+
* camera is deliberately NOT recaptured on the poll cadence — every
|
|
19601
|
+
* capture is a camera hit that would keep it out of sleep — so its
|
|
19602
|
+
* cached frame legitimately ages past the currency ceiling while
|
|
19603
|
+
* nothing is streaming. A surface must keep painting it (a fresh
|
|
19604
|
+
* frame is captured at each wake), not blank to "unavailable". */
|
|
19605
|
+
battery: boolean()
|
|
19599
19606
|
})))
|
|
19600
19607
|
},
|
|
19601
19608
|
status: {
|