@camstack/addon-decoder-nodeav 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/index.js +8 -0
- package/dist/index.mjs +8 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -20010,6 +20010,14 @@ var ClipSchema = object({
|
|
|
20010
20010
|
endMs: number()
|
|
20011
20011
|
}),
|
|
20012
20012
|
/**
|
|
20013
|
+
* Distinct object classes attached to this visit (`person`, `car`, …),
|
|
20014
|
+
* dominant first, capped at {@link MAX_CLIP_LABELS}. The ribbon renders these
|
|
20015
|
+
* instead of the bare kind — "Object" tells the operator nothing a colour bar
|
|
20016
|
+
* did not. Absent (never empty) when the visit attached no classified object
|
|
20017
|
+
* event, so a motion/audio-only visit keeps its kind label.
|
|
20018
|
+
*/
|
|
20019
|
+
labels: array(string()).max(3).optional(),
|
|
20020
|
+
/**
|
|
20013
20021
|
* Lazy thumbnail URL, never inlined.
|
|
20014
20022
|
*
|
|
20015
20023
|
* Recording-derived clips (events-mode keep-window, and the prepared
|
package/dist/index.mjs
CHANGED
|
@@ -20006,6 +20006,14 @@ var ClipSchema = object({
|
|
|
20006
20006
|
endMs: number()
|
|
20007
20007
|
}),
|
|
20008
20008
|
/**
|
|
20009
|
+
* Distinct object classes attached to this visit (`person`, `car`, …),
|
|
20010
|
+
* dominant first, capped at {@link MAX_CLIP_LABELS}. The ribbon renders these
|
|
20011
|
+
* instead of the bare kind — "Object" tells the operator nothing a colour bar
|
|
20012
|
+
* did not. Absent (never empty) when the visit attached no classified object
|
|
20013
|
+
* event, so a motion/audio-only visit keeps its kind label.
|
|
20014
|
+
*/
|
|
20015
|
+
labels: array(string()).max(3).optional(),
|
|
20016
|
+
/**
|
|
20009
20017
|
* Lazy thumbnail URL, never inlined.
|
|
20010
20018
|
*
|
|
20011
20019
|
* Recording-derived clips (events-mode keep-window, and the prepared
|