@camstack/types 1.2.81 → 1.2.82
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/capabilities/snapshot.cap.d.ts +1 -0
- package/dist/index.js +8 -1
- package/dist/index.mjs +8 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -19154,7 +19154,14 @@ targets: zod.z.array(zod.z.object({
|
|
|
19154
19154
|
"sleeping",
|
|
19155
19155
|
"unreachable",
|
|
19156
19156
|
"waking"
|
|
19157
|
-
]).nullable()
|
|
19157
|
+
]).nullable(),
|
|
19158
|
+
/** A battery camera (whatever its current state). An AWAKE battery
|
|
19159
|
+
* camera is deliberately NOT recaptured on the poll cadence — every
|
|
19160
|
+
* capture is a camera hit that would keep it out of sleep — so its
|
|
19161
|
+
* cached frame legitimately ages past the currency ceiling while
|
|
19162
|
+
* nothing is streaming. A surface must keep painting it (a fresh
|
|
19163
|
+
* frame is captured at each wake), not blank to "unavailable". */
|
|
19164
|
+
battery: zod.z.boolean()
|
|
19158
19165
|
})))
|
|
19159
19166
|
},
|
|
19160
19167
|
status: {
|
package/dist/index.mjs
CHANGED
|
@@ -19153,7 +19153,14 @@ targets: z.array(z.object({
|
|
|
19153
19153
|
"sleeping",
|
|
19154
19154
|
"unreachable",
|
|
19155
19155
|
"waking"
|
|
19156
|
-
]).nullable()
|
|
19156
|
+
]).nullable(),
|
|
19157
|
+
/** A battery camera (whatever its current state). An AWAKE battery
|
|
19158
|
+
* camera is deliberately NOT recaptured on the poll cadence — every
|
|
19159
|
+
* capture is a camera hit that would keep it out of sleep — so its
|
|
19160
|
+
* cached frame legitimately ages past the currency ceiling while
|
|
19161
|
+
* nothing is streaming. A surface must keep painting it (a fresh
|
|
19162
|
+
* frame is captured at each wake), not blank to "unavailable". */
|
|
19163
|
+
battery: z.boolean()
|
|
19157
19164
|
})))
|
|
19158
19165
|
},
|
|
19159
19166
|
status: {
|