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