@camstack/addon-agent-ui 1.2.21 → 1.2.22
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 +9 -1
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -19874,6 +19874,14 @@ var ClipSchema = object({
|
|
|
19874
19874
|
endMs: number()
|
|
19875
19875
|
}),
|
|
19876
19876
|
/**
|
|
19877
|
+
* Distinct object classes attached to this visit (`person`, `car`, …),
|
|
19878
|
+
* dominant first, capped at {@link MAX_CLIP_LABELS}. The ribbon renders these
|
|
19879
|
+
* instead of the bare kind — "Object" tells the operator nothing a colour bar
|
|
19880
|
+
* did not. Absent (never empty) when the visit attached no classified object
|
|
19881
|
+
* event, so a motion/audio-only visit keeps its kind label.
|
|
19882
|
+
*/
|
|
19883
|
+
labels: array(string()).max(3).optional(),
|
|
19884
|
+
/**
|
|
19877
19885
|
* Lazy thumbnail URL, never inlined.
|
|
19878
19886
|
*
|
|
19879
19887
|
* Recording-derived clips (events-mode keep-window, and the prepared
|
|
@@ -33730,7 +33738,7 @@ var AgentUIAddon = class extends BaseAddon {
|
|
|
33730
33738
|
capability: adminUiCapability,
|
|
33731
33739
|
provider: {
|
|
33732
33740
|
getStaticDir: async () => ({ staticDir: path.resolve(__dirname) }),
|
|
33733
|
-
getVersion: async () => ({ version: "1.2.
|
|
33741
|
+
getVersion: async () => ({ version: "1.2.22" })
|
|
33734
33742
|
}
|
|
33735
33743
|
}];
|
|
33736
33744
|
}
|