@camstack/addon-provider-ecowitt 0.2.20 → 0.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
|
@@ -20225,6 +20225,14 @@ var ClipSchema = object({
|
|
|
20225
20225
|
endMs: number()
|
|
20226
20226
|
}),
|
|
20227
20227
|
/**
|
|
20228
|
+
* Distinct object classes attached to this visit (`person`, `car`, …),
|
|
20229
|
+
* dominant first, capped at {@link MAX_CLIP_LABELS}. The ribbon renders these
|
|
20230
|
+
* instead of the bare kind — "Object" tells the operator nothing a colour bar
|
|
20231
|
+
* did not. Absent (never empty) when the visit attached no classified object
|
|
20232
|
+
* event, so a motion/audio-only visit keeps its kind label.
|
|
20233
|
+
*/
|
|
20234
|
+
labels: array(string()).max(3).optional(),
|
|
20235
|
+
/**
|
|
20228
20236
|
* Lazy thumbnail URL, never inlined.
|
|
20229
20237
|
*
|
|
20230
20238
|
* Recording-derived clips (events-mode keep-window, and the prepared
|
package/dist/addon.mjs
CHANGED
|
@@ -20224,6 +20224,14 @@ var ClipSchema = object({
|
|
|
20224
20224
|
endMs: number()
|
|
20225
20225
|
}),
|
|
20226
20226
|
/**
|
|
20227
|
+
* Distinct object classes attached to this visit (`person`, `car`, …),
|
|
20228
|
+
* dominant first, capped at {@link MAX_CLIP_LABELS}. The ribbon renders these
|
|
20229
|
+
* instead of the bare kind — "Object" tells the operator nothing a colour bar
|
|
20230
|
+
* did not. Absent (never empty) when the visit attached no classified object
|
|
20231
|
+
* event, so a motion/audio-only visit keeps its kind label.
|
|
20232
|
+
*/
|
|
20233
|
+
labels: array(string()).max(3).optional(),
|
|
20234
|
+
/**
|
|
20227
20235
|
* Lazy thumbnail URL, never inlined.
|
|
20228
20236
|
*
|
|
20229
20237
|
* Recording-derived clips (events-mode keep-window, and the prepared
|
package/package.json
CHANGED