@camstack/addon-provider-hikvision 1.2.64 → 1.2.65
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
|
@@ -19877,7 +19877,21 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19877
19877
|
/** Include stationary-promoted rows (parked objects handed to the
|
|
19878
19878
|
* stationary registry). Default false: the timeline lists passages,
|
|
19879
19879
|
* not parking records (operator decision, 2026-08-15). */
|
|
19880
|
-
includeStationary: boolean().optional()
|
|
19880
|
+
includeStationary: boolean().optional(),
|
|
19881
|
+
/**
|
|
19882
|
+
* Restrict to these track classes. ABSENT or EMPTY means no filter.
|
|
19883
|
+
*
|
|
19884
|
+
* Added 2026-09-03: the timeline's class chips filtered in the CLIENT,
|
|
19885
|
+
* on a day of rows already downloaded. The zone filter had been moved
|
|
19886
|
+
* here for exactly that reason — and it is also what lets the rows come
|
|
19887
|
+
* back `slim` — but the class filter was left behind, so a narrow
|
|
19888
|
+
* selection was still a wide read followed by a wide discard.
|
|
19889
|
+
*
|
|
19890
|
+
* Empty is "show all", not "nothing matches": a chip row with nothing
|
|
19891
|
+
* selected is an operator who has not narrowed anything, and an empty
|
|
19892
|
+
* timeline would read as a camera that saw nothing.
|
|
19893
|
+
*/
|
|
19894
|
+
classes: array(string()).optional()
|
|
19881
19895
|
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
19882
19896
|
kind: "mutation",
|
|
19883
19897
|
auth: "admin"
|
package/dist/addon.mjs
CHANGED
|
@@ -19878,7 +19878,21 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19878
19878
|
/** Include stationary-promoted rows (parked objects handed to the
|
|
19879
19879
|
* stationary registry). Default false: the timeline lists passages,
|
|
19880
19880
|
* not parking records (operator decision, 2026-08-15). */
|
|
19881
|
-
includeStationary: boolean().optional()
|
|
19881
|
+
includeStationary: boolean().optional(),
|
|
19882
|
+
/**
|
|
19883
|
+
* Restrict to these track classes. ABSENT or EMPTY means no filter.
|
|
19884
|
+
*
|
|
19885
|
+
* Added 2026-09-03: the timeline's class chips filtered in the CLIENT,
|
|
19886
|
+
* on a day of rows already downloaded. The zone filter had been moved
|
|
19887
|
+
* here for exactly that reason — and it is also what lets the rows come
|
|
19888
|
+
* back `slim` — but the class filter was left behind, so a narrow
|
|
19889
|
+
* selection was still a wide read followed by a wide discard.
|
|
19890
|
+
*
|
|
19891
|
+
* Empty is "show all", not "nothing matches": a chip row with nothing
|
|
19892
|
+
* selected is an operator who has not narrowed anything, and an empty
|
|
19893
|
+
* timeline would read as a camera that saw nothing.
|
|
19894
|
+
*/
|
|
19895
|
+
classes: array(string()).optional()
|
|
19882
19896
|
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
19883
19897
|
kind: "mutation",
|
|
19884
19898
|
auth: "admin"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-provider-hikvision",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.65",
|
|
4
4
|
"description": "Hikvision camera device provider addon for CamStack — ISAPI over HTTP(S) with digest auth (snapshot, alarm stream, RTSP discovery)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|