@camstack/addon-provider-onvif 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/addon.js +8 -1
- package/dist/addon.mjs +8 -1
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -19275,7 +19275,14 @@ targets: array(object({
|
|
|
19275
19275
|
"sleeping",
|
|
19276
19276
|
"unreachable",
|
|
19277
19277
|
"waking"
|
|
19278
|
-
]).nullable()
|
|
19278
|
+
]).nullable(),
|
|
19279
|
+
/** A battery camera (whatever its current state). An AWAKE battery
|
|
19280
|
+
* camera is deliberately NOT recaptured on the poll cadence — every
|
|
19281
|
+
* capture is a camera hit that would keep it out of sleep — so its
|
|
19282
|
+
* cached frame legitimately ages past the currency ceiling while
|
|
19283
|
+
* nothing is streaming. A surface must keep painting it (a fresh
|
|
19284
|
+
* frame is captured at each wake), not blank to "unavailable". */
|
|
19285
|
+
battery: boolean()
|
|
19279
19286
|
})))
|
|
19280
19287
|
},
|
|
19281
19288
|
status: {
|
package/dist/addon.mjs
CHANGED
|
@@ -19276,7 +19276,14 @@ targets: array(object({
|
|
|
19276
19276
|
"sleeping",
|
|
19277
19277
|
"unreachable",
|
|
19278
19278
|
"waking"
|
|
19279
|
-
]).nullable()
|
|
19279
|
+
]).nullable(),
|
|
19280
|
+
/** A battery camera (whatever its current state). An AWAKE battery
|
|
19281
|
+
* camera is deliberately NOT recaptured on the poll cadence — every
|
|
19282
|
+
* capture is a camera hit that would keep it out of sleep — so its
|
|
19283
|
+
* cached frame legitimately ages past the currency ceiling while
|
|
19284
|
+
* nothing is streaming. A surface must keep painting it (a fresh
|
|
19285
|
+
* frame is captured at each wake), not blank to "unavailable". */
|
|
19286
|
+
battery: boolean()
|
|
19280
19287
|
})))
|
|
19281
19288
|
},
|
|
19282
19289
|
status: {
|