@camstack/addon-provider-petkit 0.2.21 → 0.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
|
@@ -21341,6 +21341,14 @@ var ClipSchema = object({
|
|
|
21341
21341
|
endMs: number()
|
|
21342
21342
|
}),
|
|
21343
21343
|
/**
|
|
21344
|
+
* Distinct object classes attached to this visit (`person`, `car`, …),
|
|
21345
|
+
* dominant first, capped at {@link MAX_CLIP_LABELS}. The ribbon renders these
|
|
21346
|
+
* instead of the bare kind — "Object" tells the operator nothing a colour bar
|
|
21347
|
+
* did not. Absent (never empty) when the visit attached no classified object
|
|
21348
|
+
* event, so a motion/audio-only visit keeps its kind label.
|
|
21349
|
+
*/
|
|
21350
|
+
labels: array(string()).max(3).optional(),
|
|
21351
|
+
/**
|
|
21344
21352
|
* Lazy thumbnail URL, never inlined.
|
|
21345
21353
|
*
|
|
21346
21354
|
* Recording-derived clips (events-mode keep-window, and the prepared
|
package/dist/addon.mjs
CHANGED
|
@@ -21340,6 +21340,14 @@ var ClipSchema = object({
|
|
|
21340
21340
|
endMs: number()
|
|
21341
21341
|
}),
|
|
21342
21342
|
/**
|
|
21343
|
+
* Distinct object classes attached to this visit (`person`, `car`, …),
|
|
21344
|
+
* dominant first, capped at {@link MAX_CLIP_LABELS}. The ribbon renders these
|
|
21345
|
+
* instead of the bare kind — "Object" tells the operator nothing a colour bar
|
|
21346
|
+
* did not. Absent (never empty) when the visit attached no classified object
|
|
21347
|
+
* event, so a motion/audio-only visit keeps its kind label.
|
|
21348
|
+
*/
|
|
21349
|
+
labels: array(string()).max(3).optional(),
|
|
21350
|
+
/**
|
|
21343
21351
|
* Lazy thumbnail URL, never inlined.
|
|
21344
21352
|
*
|
|
21345
21353
|
* Recording-derived clips (events-mode keep-window, and the prepared
|
package/package.json
CHANGED