@camstack/addon-terminal 0.1.85 → 0.1.86
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
|
@@ -20517,8 +20517,25 @@ var occupancyRecheckFramesField = {
|
|
|
20517
20517
|
* (analyzer attaches detected `regions[]`; onboard does not — the
|
|
20518
20518
|
* camera typically only reports a binary signal plus an optional
|
|
20519
20519
|
* channel/AI class which lives in dedicated event channels).
|
|
20520
|
-
|
|
20521
|
-
|
|
20520
|
+
*
|
|
20521
|
+
* - `onboard` — the camera's firmware said something moved.
|
|
20522
|
+
* - `analyzer` — this runner's frame-diff said so, and attaches `regions[]`.
|
|
20523
|
+
* - `device-activity` — the DEVICE said it is doing its job: the
|
|
20524
|
+
* `recording-signal` LEVEL the same device raises for the recorder
|
|
20525
|
+
* ([D380](../../../../docs/decisions/adr-0380-a-device-decided-recording-is-a-mode-with-no-schedule-seeded-once.md)),
|
|
20526
|
+
* republished as a motion source. It attaches **nothing** — no regions, no
|
|
20527
|
+
* class: the only fact it carries is that the device is active, and a robot
|
|
20528
|
+
* vacuum that is itself the moving object has no region worth sending. It is
|
|
20529
|
+
* a LEVEL, so unlike `onboard` it has a real falling edge, and unlike
|
|
20530
|
+
* `analyzer` it must not open the frame-diff side-channel — the runner's
|
|
20531
|
+
* `handleOnboardMotionAnalyzer` gate is `source === 'onboard'` and stays that
|
|
20532
|
+
* way ([D392](../../../../docs/decisions/adr-0392-a-device-that-says-it-is-working-is-a-motion-source-of-its-own.md)).
|
|
20533
|
+
*/
|
|
20534
|
+
var MotionSourceEnum = _enum([
|
|
20535
|
+
"onboard",
|
|
20536
|
+
"analyzer",
|
|
20537
|
+
"device-activity"
|
|
20538
|
+
]);
|
|
20522
20539
|
/**
|
|
20523
20540
|
* List of motion sources active on a camera. Empty array is valid:
|
|
20524
20541
|
* "no source" — happens for battery cams without firmware motion when
|
package/dist/addon.mjs
CHANGED
|
@@ -20494,8 +20494,25 @@ var occupancyRecheckFramesField = {
|
|
|
20494
20494
|
* (analyzer attaches detected `regions[]`; onboard does not — the
|
|
20495
20495
|
* camera typically only reports a binary signal plus an optional
|
|
20496
20496
|
* channel/AI class which lives in dedicated event channels).
|
|
20497
|
-
|
|
20498
|
-
|
|
20497
|
+
*
|
|
20498
|
+
* - `onboard` — the camera's firmware said something moved.
|
|
20499
|
+
* - `analyzer` — this runner's frame-diff said so, and attaches `regions[]`.
|
|
20500
|
+
* - `device-activity` — the DEVICE said it is doing its job: the
|
|
20501
|
+
* `recording-signal` LEVEL the same device raises for the recorder
|
|
20502
|
+
* ([D380](../../../../docs/decisions/adr-0380-a-device-decided-recording-is-a-mode-with-no-schedule-seeded-once.md)),
|
|
20503
|
+
* republished as a motion source. It attaches **nothing** — no regions, no
|
|
20504
|
+
* class: the only fact it carries is that the device is active, and a robot
|
|
20505
|
+
* vacuum that is itself the moving object has no region worth sending. It is
|
|
20506
|
+
* a LEVEL, so unlike `onboard` it has a real falling edge, and unlike
|
|
20507
|
+
* `analyzer` it must not open the frame-diff side-channel — the runner's
|
|
20508
|
+
* `handleOnboardMotionAnalyzer` gate is `source === 'onboard'` and stays that
|
|
20509
|
+
* way ([D392](../../../../docs/decisions/adr-0392-a-device-that-says-it-is-working-is-a-motion-source-of-its-own.md)).
|
|
20510
|
+
*/
|
|
20511
|
+
var MotionSourceEnum = _enum([
|
|
20512
|
+
"onboard",
|
|
20513
|
+
"analyzer",
|
|
20514
|
+
"device-activity"
|
|
20515
|
+
]);
|
|
20499
20516
|
/**
|
|
20500
20517
|
* List of motion sources active on a camera. Empty array is valid:
|
|
20501
20518
|
* "no source" — happens for battery cams without firmware motion when
|