@camstack/addon-provider-rtsp 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 +8 -0
- package/dist/addon.mjs +8 -0
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -20382,6 +20382,14 @@ var ClipSchema = object({
|
|
|
20382
20382
|
endMs: number()
|
|
20383
20383
|
}),
|
|
20384
20384
|
/**
|
|
20385
|
+
* Distinct object classes attached to this visit (`person`, `car`, …),
|
|
20386
|
+
* dominant first, capped at {@link MAX_CLIP_LABELS}. The ribbon renders these
|
|
20387
|
+
* instead of the bare kind — "Object" tells the operator nothing a colour bar
|
|
20388
|
+
* did not. Absent (never empty) when the visit attached no classified object
|
|
20389
|
+
* event, so a motion/audio-only visit keeps its kind label.
|
|
20390
|
+
*/
|
|
20391
|
+
labels: array(string()).max(3).optional(),
|
|
20392
|
+
/**
|
|
20385
20393
|
* Lazy thumbnail URL, never inlined.
|
|
20386
20394
|
*
|
|
20387
20395
|
* Recording-derived clips (events-mode keep-window, and the prepared
|
package/dist/addon.mjs
CHANGED
|
@@ -20358,6 +20358,14 @@ var ClipSchema = object({
|
|
|
20358
20358
|
endMs: number()
|
|
20359
20359
|
}),
|
|
20360
20360
|
/**
|
|
20361
|
+
* Distinct object classes attached to this visit (`person`, `car`, …),
|
|
20362
|
+
* dominant first, capped at {@link MAX_CLIP_LABELS}. The ribbon renders these
|
|
20363
|
+
* instead of the bare kind — "Object" tells the operator nothing a colour bar
|
|
20364
|
+
* did not. Absent (never empty) when the visit attached no classified object
|
|
20365
|
+
* event, so a motion/audio-only visit keeps its kind label.
|
|
20366
|
+
*/
|
|
20367
|
+
labels: array(string()).max(3).optional(),
|
|
20368
|
+
/**
|
|
20361
20369
|
* Lazy thumbnail URL, never inlined.
|
|
20362
20370
|
*
|
|
20363
20371
|
* Recording-derived clips (events-mode keep-window, and the prepared
|