@camstack/addon-provider-onvif 1.2.79 → 1.2.80
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 +19 -2
- package/dist/addon.mjs +19 -2
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -20211,8 +20211,25 @@ var occupancyRecheckFramesField = {
|
|
|
20211
20211
|
* (analyzer attaches detected `regions[]`; onboard does not — the
|
|
20212
20212
|
* camera typically only reports a binary signal plus an optional
|
|
20213
20213
|
* channel/AI class which lives in dedicated event channels).
|
|
20214
|
-
|
|
20215
|
-
|
|
20214
|
+
*
|
|
20215
|
+
* - `onboard` — the camera's firmware said something moved.
|
|
20216
|
+
* - `analyzer` — this runner's frame-diff said so, and attaches `regions[]`.
|
|
20217
|
+
* - `device-activity` — the DEVICE said it is doing its job: the
|
|
20218
|
+
* `recording-signal` LEVEL the same device raises for the recorder
|
|
20219
|
+
* ([D380](../../../../docs/decisions/adr-0380-a-device-decided-recording-is-a-mode-with-no-schedule-seeded-once.md)),
|
|
20220
|
+
* republished as a motion source. It attaches **nothing** — no regions, no
|
|
20221
|
+
* class: the only fact it carries is that the device is active, and a robot
|
|
20222
|
+
* vacuum that is itself the moving object has no region worth sending. It is
|
|
20223
|
+
* a LEVEL, so unlike `onboard` it has a real falling edge, and unlike
|
|
20224
|
+
* `analyzer` it must not open the frame-diff side-channel — the runner's
|
|
20225
|
+
* `handleOnboardMotionAnalyzer` gate is `source === 'onboard'` and stays that
|
|
20226
|
+
* way ([D392](../../../../docs/decisions/adr-0392-a-device-that-says-it-is-working-is-a-motion-source-of-its-own.md)).
|
|
20227
|
+
*/
|
|
20228
|
+
var MotionSourceEnum = _enum([
|
|
20229
|
+
"onboard",
|
|
20230
|
+
"analyzer",
|
|
20231
|
+
"device-activity"
|
|
20232
|
+
]);
|
|
20216
20233
|
/**
|
|
20217
20234
|
* List of motion sources active on a camera. Empty array is valid:
|
|
20218
20235
|
* "no source" — happens for battery cams without firmware motion when
|
package/dist/addon.mjs
CHANGED
|
@@ -20212,8 +20212,25 @@ var occupancyRecheckFramesField = {
|
|
|
20212
20212
|
* (analyzer attaches detected `regions[]`; onboard does not — the
|
|
20213
20213
|
* camera typically only reports a binary signal plus an optional
|
|
20214
20214
|
* channel/AI class which lives in dedicated event channels).
|
|
20215
|
-
|
|
20216
|
-
|
|
20215
|
+
*
|
|
20216
|
+
* - `onboard` — the camera's firmware said something moved.
|
|
20217
|
+
* - `analyzer` — this runner's frame-diff said so, and attaches `regions[]`.
|
|
20218
|
+
* - `device-activity` — the DEVICE said it is doing its job: the
|
|
20219
|
+
* `recording-signal` LEVEL the same device raises for the recorder
|
|
20220
|
+
* ([D380](../../../../docs/decisions/adr-0380-a-device-decided-recording-is-a-mode-with-no-schedule-seeded-once.md)),
|
|
20221
|
+
* republished as a motion source. It attaches **nothing** — no regions, no
|
|
20222
|
+
* class: the only fact it carries is that the device is active, and a robot
|
|
20223
|
+
* vacuum that is itself the moving object has no region worth sending. It is
|
|
20224
|
+
* a LEVEL, so unlike `onboard` it has a real falling edge, and unlike
|
|
20225
|
+
* `analyzer` it must not open the frame-diff side-channel — the runner's
|
|
20226
|
+
* `handleOnboardMotionAnalyzer` gate is `source === 'onboard'` and stays that
|
|
20227
|
+
* way ([D392](../../../../docs/decisions/adr-0392-a-device-that-says-it-is-working-is-a-motion-source-of-its-own.md)).
|
|
20228
|
+
*/
|
|
20229
|
+
var MotionSourceEnum = _enum([
|
|
20230
|
+
"onboard",
|
|
20231
|
+
"analyzer",
|
|
20232
|
+
"device-activity"
|
|
20233
|
+
]);
|
|
20217
20234
|
/**
|
|
20218
20235
|
* List of motion sources active on a camera. Empty array is valid:
|
|
20219
20236
|
* "no source" — happens for battery cams without firmware motion when
|