@camstack/addon-provider-reolink 1.2.103 → 1.2.104
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
|
@@ -21143,8 +21143,25 @@ var occupancyRecheckFramesField = {
|
|
|
21143
21143
|
* (analyzer attaches detected `regions[]`; onboard does not — the
|
|
21144
21144
|
* camera typically only reports a binary signal plus an optional
|
|
21145
21145
|
* channel/AI class which lives in dedicated event channels).
|
|
21146
|
-
|
|
21147
|
-
|
|
21146
|
+
*
|
|
21147
|
+
* - `onboard` — the camera's firmware said something moved.
|
|
21148
|
+
* - `analyzer` — this runner's frame-diff said so, and attaches `regions[]`.
|
|
21149
|
+
* - `device-activity` — the DEVICE said it is doing its job: the
|
|
21150
|
+
* `recording-signal` LEVEL the same device raises for the recorder
|
|
21151
|
+
* ([D380](../../../../docs/decisions/adr-0380-a-device-decided-recording-is-a-mode-with-no-schedule-seeded-once.md)),
|
|
21152
|
+
* republished as a motion source. It attaches **nothing** — no regions, no
|
|
21153
|
+
* class: the only fact it carries is that the device is active, and a robot
|
|
21154
|
+
* vacuum that is itself the moving object has no region worth sending. It is
|
|
21155
|
+
* a LEVEL, so unlike `onboard` it has a real falling edge, and unlike
|
|
21156
|
+
* `analyzer` it must not open the frame-diff side-channel — the runner's
|
|
21157
|
+
* `handleOnboardMotionAnalyzer` gate is `source === 'onboard'` and stays that
|
|
21158
|
+
* way ([D392](../../../../docs/decisions/adr-0392-a-device-that-says-it-is-working-is-a-motion-source-of-its-own.md)).
|
|
21159
|
+
*/
|
|
21160
|
+
var MotionSourceEnum = _enum([
|
|
21161
|
+
"onboard",
|
|
21162
|
+
"analyzer",
|
|
21163
|
+
"device-activity"
|
|
21164
|
+
]);
|
|
21148
21165
|
/**
|
|
21149
21166
|
* List of motion sources active on a camera. Empty array is valid:
|
|
21150
21167
|
* "no source" — happens for battery cams without firmware motion when
|
package/dist/addon.mjs
CHANGED
|
@@ -21138,8 +21138,25 @@ var occupancyRecheckFramesField = {
|
|
|
21138
21138
|
* (analyzer attaches detected `regions[]`; onboard does not — the
|
|
21139
21139
|
* camera typically only reports a binary signal plus an optional
|
|
21140
21140
|
* channel/AI class which lives in dedicated event channels).
|
|
21141
|
-
|
|
21142
|
-
|
|
21141
|
+
*
|
|
21142
|
+
* - `onboard` — the camera's firmware said something moved.
|
|
21143
|
+
* - `analyzer` — this runner's frame-diff said so, and attaches `regions[]`.
|
|
21144
|
+
* - `device-activity` — the DEVICE said it is doing its job: the
|
|
21145
|
+
* `recording-signal` LEVEL the same device raises for the recorder
|
|
21146
|
+
* ([D380](../../../../docs/decisions/adr-0380-a-device-decided-recording-is-a-mode-with-no-schedule-seeded-once.md)),
|
|
21147
|
+
* republished as a motion source. It attaches **nothing** — no regions, no
|
|
21148
|
+
* class: the only fact it carries is that the device is active, and a robot
|
|
21149
|
+
* vacuum that is itself the moving object has no region worth sending. It is
|
|
21150
|
+
* a LEVEL, so unlike `onboard` it has a real falling edge, and unlike
|
|
21151
|
+
* `analyzer` it must not open the frame-diff side-channel — the runner's
|
|
21152
|
+
* `handleOnboardMotionAnalyzer` gate is `source === 'onboard'` and stays that
|
|
21153
|
+
* way ([D392](../../../../docs/decisions/adr-0392-a-device-that-says-it-is-working-is-a-motion-source-of-its-own.md)).
|
|
21154
|
+
*/
|
|
21155
|
+
var MotionSourceEnum = _enum([
|
|
21156
|
+
"onboard",
|
|
21157
|
+
"analyzer",
|
|
21158
|
+
"device-activity"
|
|
21159
|
+
]);
|
|
21143
21160
|
/**
|
|
21144
21161
|
* List of motion sources active on a camera. Empty array is valid:
|
|
21145
21162
|
* "no source" — happens for battery cams without firmware motion when
|