@camstack/addon-decoder-nodeav 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/index.js +15 -1
- package/dist/index.mjs +15 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -19358,7 +19358,21 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19358
19358
|
/** Include stationary-promoted rows (parked objects handed to the
|
|
19359
19359
|
* stationary registry). Default false: the timeline lists passages,
|
|
19360
19360
|
* not parking records (operator decision, 2026-08-15). */
|
|
19361
|
-
includeStationary: boolean().optional()
|
|
19361
|
+
includeStationary: boolean().optional(),
|
|
19362
|
+
/**
|
|
19363
|
+
* Restrict to these track classes. ABSENT or EMPTY means no filter.
|
|
19364
|
+
*
|
|
19365
|
+
* Added 2026-09-03: the timeline's class chips filtered in the CLIENT,
|
|
19366
|
+
* on a day of rows already downloaded. The zone filter had been moved
|
|
19367
|
+
* here for exactly that reason — and it is also what lets the rows come
|
|
19368
|
+
* back `slim` — but the class filter was left behind, so a narrow
|
|
19369
|
+
* selection was still a wide read followed by a wide discard.
|
|
19370
|
+
*
|
|
19371
|
+
* Empty is "show all", not "nothing matches": a chip row with nothing
|
|
19372
|
+
* selected is an operator who has not narrowed anything, and an empty
|
|
19373
|
+
* timeline would read as a camera that saw nothing.
|
|
19374
|
+
*/
|
|
19375
|
+
classes: array(string()).optional()
|
|
19362
19376
|
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
19363
19377
|
kind: "mutation",
|
|
19364
19378
|
auth: "admin"
|
package/dist/index.mjs
CHANGED
|
@@ -19354,7 +19354,21 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19354
19354
|
/** Include stationary-promoted rows (parked objects handed to the
|
|
19355
19355
|
* stationary registry). Default false: the timeline lists passages,
|
|
19356
19356
|
* not parking records (operator decision, 2026-08-15). */
|
|
19357
|
-
includeStationary: boolean().optional()
|
|
19357
|
+
includeStationary: boolean().optional(),
|
|
19358
|
+
/**
|
|
19359
|
+
* Restrict to these track classes. ABSENT or EMPTY means no filter.
|
|
19360
|
+
*
|
|
19361
|
+
* Added 2026-09-03: the timeline's class chips filtered in the CLIENT,
|
|
19362
|
+
* on a day of rows already downloaded. The zone filter had been moved
|
|
19363
|
+
* here for exactly that reason — and it is also what lets the rows come
|
|
19364
|
+
* back `slim` — but the class filter was left behind, so a narrow
|
|
19365
|
+
* selection was still a wide read followed by a wide discard.
|
|
19366
|
+
*
|
|
19367
|
+
* Empty is "show all", not "nothing matches": a chip row with nothing
|
|
19368
|
+
* selected is an operator who has not narrowed anything, and an empty
|
|
19369
|
+
* timeline would read as a camera that saw nothing.
|
|
19370
|
+
*/
|
|
19371
|
+
classes: array(string()).optional()
|
|
19358
19372
|
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
19359
19373
|
kind: "mutation",
|
|
19360
19374
|
auth: "admin"
|