@camstack/addon-agent-ui 1.2.59 → 1.2.60
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 +16 -2
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -19231,7 +19231,21 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
|
|
|
19231
19231
|
/** Include stationary-promoted rows (parked objects handed to the
|
|
19232
19232
|
* stationary registry). Default false: the timeline lists passages,
|
|
19233
19233
|
* not parking records (operator decision, 2026-08-15). */
|
|
19234
|
-
includeStationary: boolean().optional()
|
|
19234
|
+
includeStationary: boolean().optional(),
|
|
19235
|
+
/**
|
|
19236
|
+
* Restrict to these track classes. ABSENT or EMPTY means no filter.
|
|
19237
|
+
*
|
|
19238
|
+
* Added 2026-09-03: the timeline's class chips filtered in the CLIENT,
|
|
19239
|
+
* on a day of rows already downloaded. The zone filter had been moved
|
|
19240
|
+
* here for exactly that reason — and it is also what lets the rows come
|
|
19241
|
+
* back `slim` — but the class filter was left behind, so a narrow
|
|
19242
|
+
* selection was still a wide read followed by a wide discard.
|
|
19243
|
+
*
|
|
19244
|
+
* Empty is "show all", not "nothing matches": a chip row with nothing
|
|
19245
|
+
* selected is an operator who has not narrowed anything, and an empty
|
|
19246
|
+
* timeline would read as a camera that saw nothing.
|
|
19247
|
+
*/
|
|
19248
|
+
classes: array(string()).optional()
|
|
19235
19249
|
}), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
|
|
19236
19250
|
kind: "mutation",
|
|
19237
19251
|
auth: "admin"
|
|
@@ -37172,7 +37186,7 @@ var AgentUIAddon = class extends BaseAddon {
|
|
|
37172
37186
|
capability: adminUiCapability,
|
|
37173
37187
|
provider: {
|
|
37174
37188
|
getStaticDir: async () => ({ staticDir: path.resolve(__dirname) }),
|
|
37175
|
-
getVersion: async () => ({ version: "1.2.
|
|
37189
|
+
getVersion: async () => ({ version: "1.2.60" })
|
|
37176
37190
|
}
|
|
37177
37191
|
}];
|
|
37178
37192
|
}
|