@camstack/addon-provider-velux 0.2.19 → 0.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
|
@@ -19465,7 +19465,14 @@ targets: array(object({
|
|
|
19465
19465
|
"sleeping",
|
|
19466
19466
|
"unreachable",
|
|
19467
19467
|
"waking"
|
|
19468
|
-
]).nullable()
|
|
19468
|
+
]).nullable(),
|
|
19469
|
+
/** A battery camera (whatever its current state). An AWAKE battery
|
|
19470
|
+
* camera is deliberately NOT recaptured on the poll cadence — every
|
|
19471
|
+
* capture is a camera hit that would keep it out of sleep — so its
|
|
19472
|
+
* cached frame legitimately ages past the currency ceiling while
|
|
19473
|
+
* nothing is streaming. A surface must keep painting it (a fresh
|
|
19474
|
+
* frame is captured at each wake), not blank to "unavailable". */
|
|
19475
|
+
battery: boolean()
|
|
19469
19476
|
})));
|
|
19470
19477
|
/**
|
|
19471
19478
|
* `sso-bridge` — internal hub-only cap that lets SSO-style auth
|
package/dist/addon.mjs
CHANGED
|
@@ -19464,7 +19464,14 @@ targets: array(object({
|
|
|
19464
19464
|
"sleeping",
|
|
19465
19465
|
"unreachable",
|
|
19466
19466
|
"waking"
|
|
19467
|
-
]).nullable()
|
|
19467
|
+
]).nullable(),
|
|
19468
|
+
/** A battery camera (whatever its current state). An AWAKE battery
|
|
19469
|
+
* camera is deliberately NOT recaptured on the poll cadence — every
|
|
19470
|
+
* capture is a camera hit that would keep it out of sleep — so its
|
|
19471
|
+
* cached frame legitimately ages past the currency ceiling while
|
|
19472
|
+
* nothing is streaming. A surface must keep painting it (a fresh
|
|
19473
|
+
* frame is captured at each wake), not blank to "unavailable". */
|
|
19474
|
+
battery: boolean()
|
|
19468
19475
|
})));
|
|
19469
19476
|
/**
|
|
19470
19477
|
* `sso-bridge` — internal hub-only cap that lets SSO-style auth
|
package/package.json
CHANGED