@camstack/addon-provider-reolink 1.2.43 → 1.2.44
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
|
@@ -20552,6 +20552,14 @@ var ClipSchema = object({
|
|
|
20552
20552
|
endMs: number()
|
|
20553
20553
|
}),
|
|
20554
20554
|
/**
|
|
20555
|
+
* Distinct object classes attached to this visit (`person`, `car`, …),
|
|
20556
|
+
* dominant first, capped at {@link MAX_CLIP_LABELS}. The ribbon renders these
|
|
20557
|
+
* instead of the bare kind — "Object" tells the operator nothing a colour bar
|
|
20558
|
+
* did not. Absent (never empty) when the visit attached no classified object
|
|
20559
|
+
* event, so a motion/audio-only visit keeps its kind label.
|
|
20560
|
+
*/
|
|
20561
|
+
labels: array(string()).max(3).optional(),
|
|
20562
|
+
/**
|
|
20555
20563
|
* Lazy thumbnail URL, never inlined.
|
|
20556
20564
|
*
|
|
20557
20565
|
* Recording-derived clips (events-mode keep-window, and the prepared
|
package/dist/addon.mjs
CHANGED
|
@@ -20547,6 +20547,14 @@ var ClipSchema = object({
|
|
|
20547
20547
|
endMs: number()
|
|
20548
20548
|
}),
|
|
20549
20549
|
/**
|
|
20550
|
+
* Distinct object classes attached to this visit (`person`, `car`, …),
|
|
20551
|
+
* dominant first, capped at {@link MAX_CLIP_LABELS}. The ribbon renders these
|
|
20552
|
+
* instead of the bare kind — "Object" tells the operator nothing a colour bar
|
|
20553
|
+
* did not. Absent (never empty) when the visit attached no classified object
|
|
20554
|
+
* event, so a motion/audio-only visit keeps its kind label.
|
|
20555
|
+
*/
|
|
20556
|
+
labels: array(string()).max(3).optional(),
|
|
20557
|
+
/**
|
|
20550
20558
|
* Lazy thumbnail URL, never inlined.
|
|
20551
20559
|
*
|
|
20552
20560
|
* Recording-derived clips (events-mode keep-window, and the prepared
|