@camstack/addon-agent-ui 1.2.85 → 1.2.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.
Files changed (2) hide show
  1. package/dist/addon.js +20 -3
  2. package/package.json +1 -1
package/dist/addon.js CHANGED
@@ -20134,8 +20134,25 @@ var occupancyRecheckFramesField = {
20134
20134
  * (analyzer attaches detected `regions[]`; onboard does not — the
20135
20135
  * camera typically only reports a binary signal plus an optional
20136
20136
  * channel/AI class which lives in dedicated event channels).
20137
- */
20138
- var MotionSourceEnum = _enum(["onboard", "analyzer"]);
20137
+ *
20138
+ * - `onboard` — the camera's firmware said something moved.
20139
+ * - `analyzer` — this runner's frame-diff said so, and attaches `regions[]`.
20140
+ * - `device-activity` — the DEVICE said it is doing its job: the
20141
+ * `recording-signal` LEVEL the same device raises for the recorder
20142
+ * ([D380](../../../../docs/decisions/adr-0380-a-device-decided-recording-is-a-mode-with-no-schedule-seeded-once.md)),
20143
+ * republished as a motion source. It attaches **nothing** — no regions, no
20144
+ * class: the only fact it carries is that the device is active, and a robot
20145
+ * vacuum that is itself the moving object has no region worth sending. It is
20146
+ * a LEVEL, so unlike `onboard` it has a real falling edge, and unlike
20147
+ * `analyzer` it must not open the frame-diff side-channel — the runner's
20148
+ * `handleOnboardMotionAnalyzer` gate is `source === 'onboard'` and stays that
20149
+ * way ([D392](../../../../docs/decisions/adr-0392-a-device-that-says-it-is-working-is-a-motion-source-of-its-own.md)).
20150
+ */
20151
+ var MotionSourceEnum = _enum([
20152
+ "onboard",
20153
+ "analyzer",
20154
+ "device-activity"
20155
+ ]);
20139
20156
  /**
20140
20157
  * List of motion sources active on a camera. Empty array is valid:
20141
20158
  * "no source" — happens for battery cams without firmware motion when
@@ -38099,7 +38116,7 @@ var AgentUIAddon = class extends BaseAddon {
38099
38116
  capability: adminUiCapability,
38100
38117
  provider: {
38101
38118
  getStaticDir: async () => ({ staticDir: path.resolve(__dirname) }),
38102
- getVersion: async () => ({ version: "1.2.85" })
38119
+ getVersion: async () => ({ version: "1.2.86" })
38103
38120
  }
38104
38121
  }];
38105
38122
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/addon-agent-ui",
3
- "version": "1.2.85",
3
+ "version": "1.2.86",
4
4
  "description": "Agent UI — lightweight status dashboard served by every agent node",
5
5
  "keywords": [
6
6
  "camstack",