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