@camstack/addon-provider-reolink 1.2.79 → 1.2.80
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
|
@@ -20193,7 +20193,21 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
20193
20193
|
/** Include stationary-promoted rows (parked objects handed to the
|
|
20194
20194
|
* stationary registry). Default false: the timeline lists passages,
|
|
20195
20195
|
* not parking records (operator decision, 2026-08-15). */
|
|
20196
|
-
includeStationary: boolean().optional()
|
|
20196
|
+
includeStationary: boolean().optional(),
|
|
20197
|
+
/**
|
|
20198
|
+
* Restrict to these track classes. ABSENT or EMPTY means no filter.
|
|
20199
|
+
*
|
|
20200
|
+
* Added 2026-09-03: the timeline's class chips filtered in the CLIENT,
|
|
20201
|
+
* on a day of rows already downloaded. The zone filter had been moved
|
|
20202
|
+
* here for exactly that reason — and it is also what lets the rows come
|
|
20203
|
+
* back `slim` — but the class filter was left behind, so a narrow
|
|
20204
|
+
* selection was still a wide read followed by a wide discard.
|
|
20205
|
+
*
|
|
20206
|
+
* Empty is "show all", not "nothing matches": a chip row with nothing
|
|
20207
|
+
* selected is an operator who has not narrowed anything, and an empty
|
|
20208
|
+
* timeline would read as a camera that saw nothing.
|
|
20209
|
+
*/
|
|
20210
|
+
classes: array(string()).optional()
|
|
20197
20211
|
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
20198
20212
|
kind: "mutation",
|
|
20199
20213
|
auth: "admin"
|
package/dist/addon.mjs
CHANGED
|
@@ -20188,7 +20188,21 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
20188
20188
|
/** Include stationary-promoted rows (parked objects handed to the
|
|
20189
20189
|
* stationary registry). Default false: the timeline lists passages,
|
|
20190
20190
|
* not parking records (operator decision, 2026-08-15). */
|
|
20191
|
-
includeStationary: boolean().optional()
|
|
20191
|
+
includeStationary: boolean().optional(),
|
|
20192
|
+
/**
|
|
20193
|
+
* Restrict to these track classes. ABSENT or EMPTY means no filter.
|
|
20194
|
+
*
|
|
20195
|
+
* Added 2026-09-03: the timeline's class chips filtered in the CLIENT,
|
|
20196
|
+
* on a day of rows already downloaded. The zone filter had been moved
|
|
20197
|
+
* here for exactly that reason — and it is also what lets the rows come
|
|
20198
|
+
* back `slim` — but the class filter was left behind, so a narrow
|
|
20199
|
+
* selection was still a wide read followed by a wide discard.
|
|
20200
|
+
*
|
|
20201
|
+
* Empty is "show all", not "nothing matches": a chip row with nothing
|
|
20202
|
+
* selected is an operator who has not narrowed anything, and an empty
|
|
20203
|
+
* timeline would read as a camera that saw nothing.
|
|
20204
|
+
*/
|
|
20205
|
+
classes: array(string()).optional()
|
|
20192
20206
|
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
20193
20207
|
kind: "mutation",
|
|
20194
20208
|
auth: "admin"
|