@camstack/addon-provider-petkit 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
|
@@ -20584,7 +20584,14 @@ targets: array(object({
|
|
|
20584
20584
|
"sleeping",
|
|
20585
20585
|
"unreachable",
|
|
20586
20586
|
"waking"
|
|
20587
|
-
]).nullable()
|
|
20587
|
+
]).nullable(),
|
|
20588
|
+
/** A battery camera (whatever its current state). An AWAKE battery
|
|
20589
|
+
* camera is deliberately NOT recaptured on the poll cadence — every
|
|
20590
|
+
* capture is a camera hit that would keep it out of sleep — so its
|
|
20591
|
+
* cached frame legitimately ages past the currency ceiling while
|
|
20592
|
+
* nothing is streaming. A surface must keep painting it (a fresh
|
|
20593
|
+
* frame is captured at each wake), not blank to "unavailable". */
|
|
20594
|
+
battery: boolean()
|
|
20588
20595
|
})));
|
|
20589
20596
|
/**
|
|
20590
20597
|
* `sso-bridge` — internal hub-only cap that lets SSO-style auth
|
package/dist/addon.mjs
CHANGED
|
@@ -20583,7 +20583,14 @@ targets: array(object({
|
|
|
20583
20583
|
"sleeping",
|
|
20584
20584
|
"unreachable",
|
|
20585
20585
|
"waking"
|
|
20586
|
-
]).nullable()
|
|
20586
|
+
]).nullable(),
|
|
20587
|
+
/** A battery camera (whatever its current state). An AWAKE battery
|
|
20588
|
+
* camera is deliberately NOT recaptured on the poll cadence — every
|
|
20589
|
+
* capture is a camera hit that would keep it out of sleep — so its
|
|
20590
|
+
* cached frame legitimately ages past the currency ceiling while
|
|
20591
|
+
* nothing is streaming. A surface must keep painting it (a fresh
|
|
20592
|
+
* frame is captured at each wake), not blank to "unavailable". */
|
|
20593
|
+
battery: boolean()
|
|
20587
20594
|
})));
|
|
20588
20595
|
/**
|
|
20589
20596
|
* `sso-bridge` — internal hub-only cap that lets SSO-style auth
|
package/package.json
CHANGED