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