@camstack/addon-provider-reolink 1.2.38 → 1.2.39
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
|
@@ -19789,7 +19789,14 @@ targets: array(object({
|
|
|
19789
19789
|
"sleeping",
|
|
19790
19790
|
"unreachable",
|
|
19791
19791
|
"waking"
|
|
19792
|
-
]).nullable()
|
|
19792
|
+
]).nullable(),
|
|
19793
|
+
/** A battery camera (whatever its current state). An AWAKE battery
|
|
19794
|
+
* camera is deliberately NOT recaptured on the poll cadence — every
|
|
19795
|
+
* capture is a camera hit that would keep it out of sleep — so its
|
|
19796
|
+
* cached frame legitimately ages past the currency ceiling while
|
|
19797
|
+
* nothing is streaming. A surface must keep painting it (a fresh
|
|
19798
|
+
* frame is captured at each wake), not blank to "unavailable". */
|
|
19799
|
+
battery: boolean()
|
|
19793
19800
|
})))
|
|
19794
19801
|
},
|
|
19795
19802
|
status: {
|
package/dist/addon.mjs
CHANGED
|
@@ -19784,7 +19784,14 @@ targets: array(object({
|
|
|
19784
19784
|
"sleeping",
|
|
19785
19785
|
"unreachable",
|
|
19786
19786
|
"waking"
|
|
19787
|
-
]).nullable()
|
|
19787
|
+
]).nullable(),
|
|
19788
|
+
/** A battery camera (whatever its current state). An AWAKE battery
|
|
19789
|
+
* camera is deliberately NOT recaptured on the poll cadence — every
|
|
19790
|
+
* capture is a camera hit that would keep it out of sleep — so its
|
|
19791
|
+
* cached frame legitimately ages past the currency ceiling while
|
|
19792
|
+
* nothing is streaming. A surface must keep painting it (a fresh
|
|
19793
|
+
* frame is captured at each wake), not blank to "unavailable". */
|
|
19794
|
+
battery: boolean()
|
|
19788
19795
|
})))
|
|
19789
19796
|
},
|
|
19790
19797
|
status: {
|