@camstack/addon-provider-petkit 0.2.56 → 0.2.57
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 +15 -1
- package/dist/addon.mjs +15 -1
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -20689,7 +20689,21 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
20689
20689
|
/** Include stationary-promoted rows (parked objects handed to the
|
|
20690
20690
|
* stationary registry). Default false: the timeline lists passages,
|
|
20691
20691
|
* not parking records (operator decision, 2026-08-15). */
|
|
20692
|
-
includeStationary: boolean().optional()
|
|
20692
|
+
includeStationary: boolean().optional(),
|
|
20693
|
+
/**
|
|
20694
|
+
* Restrict to these track classes. ABSENT or EMPTY means no filter.
|
|
20695
|
+
*
|
|
20696
|
+
* Added 2026-09-03: the timeline's class chips filtered in the CLIENT,
|
|
20697
|
+
* on a day of rows already downloaded. The zone filter had been moved
|
|
20698
|
+
* here for exactly that reason — and it is also what lets the rows come
|
|
20699
|
+
* back `slim` — but the class filter was left behind, so a narrow
|
|
20700
|
+
* selection was still a wide read followed by a wide discard.
|
|
20701
|
+
*
|
|
20702
|
+
* Empty is "show all", not "nothing matches": a chip row with nothing
|
|
20703
|
+
* selected is an operator who has not narrowed anything, and an empty
|
|
20704
|
+
* timeline would read as a camera that saw nothing.
|
|
20705
|
+
*/
|
|
20706
|
+
classes: array(string()).optional()
|
|
20693
20707
|
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
20694
20708
|
kind: "mutation",
|
|
20695
20709
|
auth: "admin"
|
package/dist/addon.mjs
CHANGED
|
@@ -20688,7 +20688,21 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
20688
20688
|
/** Include stationary-promoted rows (parked objects handed to the
|
|
20689
20689
|
* stationary registry). Default false: the timeline lists passages,
|
|
20690
20690
|
* not parking records (operator decision, 2026-08-15). */
|
|
20691
|
-
includeStationary: boolean().optional()
|
|
20691
|
+
includeStationary: boolean().optional(),
|
|
20692
|
+
/**
|
|
20693
|
+
* Restrict to these track classes. ABSENT or EMPTY means no filter.
|
|
20694
|
+
*
|
|
20695
|
+
* Added 2026-09-03: the timeline's class chips filtered in the CLIENT,
|
|
20696
|
+
* on a day of rows already downloaded. The zone filter had been moved
|
|
20697
|
+
* here for exactly that reason — and it is also what lets the rows come
|
|
20698
|
+
* back `slim` — but the class filter was left behind, so a narrow
|
|
20699
|
+
* selection was still a wide read followed by a wide discard.
|
|
20700
|
+
*
|
|
20701
|
+
* Empty is "show all", not "nothing matches": a chip row with nothing
|
|
20702
|
+
* selected is an operator who has not narrowed anything, and an empty
|
|
20703
|
+
* timeline would read as a camera that saw nothing.
|
|
20704
|
+
*/
|
|
20705
|
+
classes: array(string()).optional()
|
|
20692
20706
|
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
20693
20707
|
kind: "mutation",
|
|
20694
20708
|
auth: "admin"
|
package/package.json
CHANGED