@camstack/addon-provider-amcrest 0.2.57 → 0.2.58
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
|
@@ -19563,7 +19563,21 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19563
19563
|
/** Include stationary-promoted rows (parked objects handed to the
|
|
19564
19564
|
* stationary registry). Default false: the timeline lists passages,
|
|
19565
19565
|
* not parking records (operator decision, 2026-08-15). */
|
|
19566
|
-
includeStationary: boolean().optional()
|
|
19566
|
+
includeStationary: boolean().optional(),
|
|
19567
|
+
/**
|
|
19568
|
+
* Restrict to these track classes. ABSENT or EMPTY means no filter.
|
|
19569
|
+
*
|
|
19570
|
+
* Added 2026-09-03: the timeline's class chips filtered in the CLIENT,
|
|
19571
|
+
* on a day of rows already downloaded. The zone filter had been moved
|
|
19572
|
+
* here for exactly that reason — and it is also what lets the rows come
|
|
19573
|
+
* back `slim` — but the class filter was left behind, so a narrow
|
|
19574
|
+
* selection was still a wide read followed by a wide discard.
|
|
19575
|
+
*
|
|
19576
|
+
* Empty is "show all", not "nothing matches": a chip row with nothing
|
|
19577
|
+
* selected is an operator who has not narrowed anything, and an empty
|
|
19578
|
+
* timeline would read as a camera that saw nothing.
|
|
19579
|
+
*/
|
|
19580
|
+
classes: array(string()).optional()
|
|
19567
19581
|
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
19568
19582
|
kind: "mutation",
|
|
19569
19583
|
auth: "admin"
|
package/dist/addon.mjs
CHANGED
|
@@ -19564,7 +19564,21 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19564
19564
|
/** Include stationary-promoted rows (parked objects handed to the
|
|
19565
19565
|
* stationary registry). Default false: the timeline lists passages,
|
|
19566
19566
|
* not parking records (operator decision, 2026-08-15). */
|
|
19567
|
-
includeStationary: boolean().optional()
|
|
19567
|
+
includeStationary: boolean().optional(),
|
|
19568
|
+
/**
|
|
19569
|
+
* Restrict to these track classes. ABSENT or EMPTY means no filter.
|
|
19570
|
+
*
|
|
19571
|
+
* Added 2026-09-03: the timeline's class chips filtered in the CLIENT,
|
|
19572
|
+
* on a day of rows already downloaded. The zone filter had been moved
|
|
19573
|
+
* here for exactly that reason — and it is also what lets the rows come
|
|
19574
|
+
* back `slim` — but the class filter was left behind, so a narrow
|
|
19575
|
+
* selection was still a wide read followed by a wide discard.
|
|
19576
|
+
*
|
|
19577
|
+
* Empty is "show all", not "nothing matches": a chip row with nothing
|
|
19578
|
+
* selected is an operator who has not narrowed anything, and an empty
|
|
19579
|
+
* timeline would read as a camera that saw nothing.
|
|
19580
|
+
*/
|
|
19581
|
+
classes: array(string()).optional()
|
|
19568
19582
|
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
19569
19583
|
kind: "mutation",
|
|
19570
19584
|
auth: "admin"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-provider-amcrest",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.58",
|
|
4
4
|
"description": "Amcrest/Dahua camera device provider addon for CamStack — Dahua CGI over HTTP(S) with digest auth (snapshot, RTSP catalog, PTZ, image/day-night config)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|