@camstack/addon-provider-onvif 1.2.20 → 1.2.21
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 +8 -0
- package/dist/addon.mjs +8 -0
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -20038,6 +20038,14 @@ var ClipSchema = object({
|
|
|
20038
20038
|
endMs: number()
|
|
20039
20039
|
}),
|
|
20040
20040
|
/**
|
|
20041
|
+
* Distinct object classes attached to this visit (`person`, `car`, …),
|
|
20042
|
+
* dominant first, capped at {@link MAX_CLIP_LABELS}. The ribbon renders these
|
|
20043
|
+
* instead of the bare kind — "Object" tells the operator nothing a colour bar
|
|
20044
|
+
* did not. Absent (never empty) when the visit attached no classified object
|
|
20045
|
+
* event, so a motion/audio-only visit keeps its kind label.
|
|
20046
|
+
*/
|
|
20047
|
+
labels: array(string()).max(3).optional(),
|
|
20048
|
+
/**
|
|
20041
20049
|
* Lazy thumbnail URL, never inlined.
|
|
20042
20050
|
*
|
|
20043
20051
|
* Recording-derived clips (events-mode keep-window, and the prepared
|
package/dist/addon.mjs
CHANGED
|
@@ -20039,6 +20039,14 @@ var ClipSchema = object({
|
|
|
20039
20039
|
endMs: number()
|
|
20040
20040
|
}),
|
|
20041
20041
|
/**
|
|
20042
|
+
* Distinct object classes attached to this visit (`person`, `car`, …),
|
|
20043
|
+
* dominant first, capped at {@link MAX_CLIP_LABELS}. The ribbon renders these
|
|
20044
|
+
* instead of the bare kind — "Object" tells the operator nothing a colour bar
|
|
20045
|
+
* did not. Absent (never empty) when the visit attached no classified object
|
|
20046
|
+
* event, so a motion/audio-only visit keeps its kind label.
|
|
20047
|
+
*/
|
|
20048
|
+
labels: array(string()).max(3).optional(),
|
|
20049
|
+
/**
|
|
20042
20050
|
* Lazy thumbnail URL, never inlined.
|
|
20043
20051
|
*
|
|
20044
20052
|
* Recording-derived clips (events-mode keep-window, and the prepared
|