@camstack/addon-provider-petkit 0.2.80 → 0.2.81
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
|
@@ -21618,8 +21618,25 @@ var occupancyRecheckFramesField = {
|
|
|
21618
21618
|
* (analyzer attaches detected `regions[]`; onboard does not — the
|
|
21619
21619
|
* camera typically only reports a binary signal plus an optional
|
|
21620
21620
|
* channel/AI class which lives in dedicated event channels).
|
|
21621
|
-
|
|
21622
|
-
|
|
21621
|
+
*
|
|
21622
|
+
* - `onboard` — the camera's firmware said something moved.
|
|
21623
|
+
* - `analyzer` — this runner's frame-diff said so, and attaches `regions[]`.
|
|
21624
|
+
* - `device-activity` — the DEVICE said it is doing its job: the
|
|
21625
|
+
* `recording-signal` LEVEL the same device raises for the recorder
|
|
21626
|
+
* ([D380](../../../../docs/decisions/adr-0380-a-device-decided-recording-is-a-mode-with-no-schedule-seeded-once.md)),
|
|
21627
|
+
* republished as a motion source. It attaches **nothing** — no regions, no
|
|
21628
|
+
* class: the only fact it carries is that the device is active, and a robot
|
|
21629
|
+
* vacuum that is itself the moving object has no region worth sending. It is
|
|
21630
|
+
* a LEVEL, so unlike `onboard` it has a real falling edge, and unlike
|
|
21631
|
+
* `analyzer` it must not open the frame-diff side-channel — the runner's
|
|
21632
|
+
* `handleOnboardMotionAnalyzer` gate is `source === 'onboard'` and stays that
|
|
21633
|
+
* way ([D392](../../../../docs/decisions/adr-0392-a-device-that-says-it-is-working-is-a-motion-source-of-its-own.md)).
|
|
21634
|
+
*/
|
|
21635
|
+
var MotionSourceEnum = _enum([
|
|
21636
|
+
"onboard",
|
|
21637
|
+
"analyzer",
|
|
21638
|
+
"device-activity"
|
|
21639
|
+
]);
|
|
21623
21640
|
/**
|
|
21624
21641
|
* List of motion sources active on a camera. Empty array is valid:
|
|
21625
21642
|
* "no source" — happens for battery cams without firmware motion when
|
package/dist/addon.mjs
CHANGED
|
@@ -21617,8 +21617,25 @@ var occupancyRecheckFramesField = {
|
|
|
21617
21617
|
* (analyzer attaches detected `regions[]`; onboard does not — the
|
|
21618
21618
|
* camera typically only reports a binary signal plus an optional
|
|
21619
21619
|
* channel/AI class which lives in dedicated event channels).
|
|
21620
|
-
|
|
21621
|
-
|
|
21620
|
+
*
|
|
21621
|
+
* - `onboard` — the camera's firmware said something moved.
|
|
21622
|
+
* - `analyzer` — this runner's frame-diff said so, and attaches `regions[]`.
|
|
21623
|
+
* - `device-activity` — the DEVICE said it is doing its job: the
|
|
21624
|
+
* `recording-signal` LEVEL the same device raises for the recorder
|
|
21625
|
+
* ([D380](../../../../docs/decisions/adr-0380-a-device-decided-recording-is-a-mode-with-no-schedule-seeded-once.md)),
|
|
21626
|
+
* republished as a motion source. It attaches **nothing** — no regions, no
|
|
21627
|
+
* class: the only fact it carries is that the device is active, and a robot
|
|
21628
|
+
* vacuum that is itself the moving object has no region worth sending. It is
|
|
21629
|
+
* a LEVEL, so unlike `onboard` it has a real falling edge, and unlike
|
|
21630
|
+
* `analyzer` it must not open the frame-diff side-channel — the runner's
|
|
21631
|
+
* `handleOnboardMotionAnalyzer` gate is `source === 'onboard'` and stays that
|
|
21632
|
+
* way ([D392](../../../../docs/decisions/adr-0392-a-device-that-says-it-is-working-is-a-motion-source-of-its-own.md)).
|
|
21633
|
+
*/
|
|
21634
|
+
var MotionSourceEnum = _enum([
|
|
21635
|
+
"onboard",
|
|
21636
|
+
"analyzer",
|
|
21637
|
+
"device-activity"
|
|
21638
|
+
]);
|
|
21622
21639
|
/**
|
|
21623
21640
|
* List of motion sources active on a camera. Empty array is valid:
|
|
21624
21641
|
* "no source" — happens for battery cams without firmware motion when
|
package/package.json
CHANGED