@camstack/addon-provider-onvif 1.2.55 → 1.2.56
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
|
@@ -19282,7 +19282,21 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19282
19282
|
/** Include stationary-promoted rows (parked objects handed to the
|
|
19283
19283
|
* stationary registry). Default false: the timeline lists passages,
|
|
19284
19284
|
* not parking records (operator decision, 2026-08-15). */
|
|
19285
|
-
includeStationary: boolean().optional()
|
|
19285
|
+
includeStationary: boolean().optional(),
|
|
19286
|
+
/**
|
|
19287
|
+
* Restrict to these track classes. ABSENT or EMPTY means no filter.
|
|
19288
|
+
*
|
|
19289
|
+
* Added 2026-09-03: the timeline's class chips filtered in the CLIENT,
|
|
19290
|
+
* on a day of rows already downloaded. The zone filter had been moved
|
|
19291
|
+
* here for exactly that reason — and it is also what lets the rows come
|
|
19292
|
+
* back `slim` — but the class filter was left behind, so a narrow
|
|
19293
|
+
* selection was still a wide read followed by a wide discard.
|
|
19294
|
+
*
|
|
19295
|
+
* Empty is "show all", not "nothing matches": a chip row with nothing
|
|
19296
|
+
* selected is an operator who has not narrowed anything, and an empty
|
|
19297
|
+
* timeline would read as a camera that saw nothing.
|
|
19298
|
+
*/
|
|
19299
|
+
classes: array(string()).optional()
|
|
19286
19300
|
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
19287
19301
|
kind: "mutation",
|
|
19288
19302
|
auth: "admin"
|
package/dist/addon.mjs
CHANGED
|
@@ -19283,7 +19283,21 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19283
19283
|
/** Include stationary-promoted rows (parked objects handed to the
|
|
19284
19284
|
* stationary registry). Default false: the timeline lists passages,
|
|
19285
19285
|
* not parking records (operator decision, 2026-08-15). */
|
|
19286
|
-
includeStationary: boolean().optional()
|
|
19286
|
+
includeStationary: boolean().optional(),
|
|
19287
|
+
/**
|
|
19288
|
+
* Restrict to these track classes. ABSENT or EMPTY means no filter.
|
|
19289
|
+
*
|
|
19290
|
+
* Added 2026-09-03: the timeline's class chips filtered in the CLIENT,
|
|
19291
|
+
* on a day of rows already downloaded. The zone filter had been moved
|
|
19292
|
+
* here for exactly that reason — and it is also what lets the rows come
|
|
19293
|
+
* back `slim` — but the class filter was left behind, so a narrow
|
|
19294
|
+
* selection was still a wide read followed by a wide discard.
|
|
19295
|
+
*
|
|
19296
|
+
* Empty is "show all", not "nothing matches": a chip row with nothing
|
|
19297
|
+
* selected is an operator who has not narrowed anything, and an empty
|
|
19298
|
+
* timeline would read as a camera that saw nothing.
|
|
19299
|
+
*/
|
|
19300
|
+
classes: array(string()).optional()
|
|
19287
19301
|
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
19288
19302
|
kind: "mutation",
|
|
19289
19303
|
auth: "admin"
|