@camstack/addon-provider-rtsp 1.2.56 → 1.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
|
@@ -19626,7 +19626,21 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19626
19626
|
/** Include stationary-promoted rows (parked objects handed to the
|
|
19627
19627
|
* stationary registry). Default false: the timeline lists passages,
|
|
19628
19628
|
* not parking records (operator decision, 2026-08-15). */
|
|
19629
|
-
includeStationary: boolean().optional()
|
|
19629
|
+
includeStationary: boolean().optional(),
|
|
19630
|
+
/**
|
|
19631
|
+
* Restrict to these track classes. ABSENT or EMPTY means no filter.
|
|
19632
|
+
*
|
|
19633
|
+
* Added 2026-09-03: the timeline's class chips filtered in the CLIENT,
|
|
19634
|
+
* on a day of rows already downloaded. The zone filter had been moved
|
|
19635
|
+
* here for exactly that reason — and it is also what lets the rows come
|
|
19636
|
+
* back `slim` — but the class filter was left behind, so a narrow
|
|
19637
|
+
* selection was still a wide read followed by a wide discard.
|
|
19638
|
+
*
|
|
19639
|
+
* Empty is "show all", not "nothing matches": a chip row with nothing
|
|
19640
|
+
* selected is an operator who has not narrowed anything, and an empty
|
|
19641
|
+
* timeline would read as a camera that saw nothing.
|
|
19642
|
+
*/
|
|
19643
|
+
classes: array(string()).optional()
|
|
19630
19644
|
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
19631
19645
|
kind: "mutation",
|
|
19632
19646
|
auth: "admin"
|
package/dist/addon.mjs
CHANGED
|
@@ -19602,7 +19602,21 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19602
19602
|
/** Include stationary-promoted rows (parked objects handed to the
|
|
19603
19603
|
* stationary registry). Default false: the timeline lists passages,
|
|
19604
19604
|
* not parking records (operator decision, 2026-08-15). */
|
|
19605
|
-
includeStationary: boolean().optional()
|
|
19605
|
+
includeStationary: boolean().optional(),
|
|
19606
|
+
/**
|
|
19607
|
+
* Restrict to these track classes. ABSENT or EMPTY means no filter.
|
|
19608
|
+
*
|
|
19609
|
+
* Added 2026-09-03: the timeline's class chips filtered in the CLIENT,
|
|
19610
|
+
* on a day of rows already downloaded. The zone filter had been moved
|
|
19611
|
+
* here for exactly that reason — and it is also what lets the rows come
|
|
19612
|
+
* back `slim` — but the class filter was left behind, so a narrow
|
|
19613
|
+
* selection was still a wide read followed by a wide discard.
|
|
19614
|
+
*
|
|
19615
|
+
* Empty is "show all", not "nothing matches": a chip row with nothing
|
|
19616
|
+
* selected is an operator who has not narrowed anything, and an empty
|
|
19617
|
+
* timeline would read as a camera that saw nothing.
|
|
19618
|
+
*/
|
|
19619
|
+
classes: array(string()).optional()
|
|
19606
19620
|
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
19607
19621
|
kind: "mutation",
|
|
19608
19622
|
auth: "admin"
|