@camstack/addon-osd-manager 0.1.77 → 0.1.78

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/_stub.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import "./virtualExposes-BgZ5Cn7S.mjs";
2
- import "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-CtVrWNnx.mjs";
2
+ import "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-ChNl9npD.mjs";
3
3
  import { _ as e, c as t, d as n, h as r, i, l as a, m as o, n as s, p as c, r as l, t as u, u as d, y as f } from "./_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare__react__loadShare__.js-Bs1t18EM.mjs";
4
4
  import { i as p, o as m, r as h, s as g } from "./responsive-veJ_u_lF.mjs";
5
5
  import { d as _, l as v, u as y } from "./use-device-snapshot-CCUZGgXd.mjs";
@@ -1,9 +1,9 @@
1
- import "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-CtVrWNnx.mjs";
1
+ import "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-ChNl9npD.mjs";
2
2
  //#region \0virtual:mf-localSharedImportMap:__mfe_internal__addon_osd_manager_page
3
3
  var e = {
4
4
  "@camstack/sdk": {
5
5
  name: "@camstack/sdk",
6
- version: "1.2.83",
6
+ version: "1.2.84",
7
7
  scope: ["default"],
8
8
  loaded: !1,
9
9
  from: "addon_osd_manager_page",
@@ -18,7 +18,7 @@ var e = {
18
18
  },
19
19
  "@camstack/types": {
20
20
  name: "@camstack/types",
21
- version: "1.2.163",
21
+ version: "1.2.164",
22
22
  scope: ["default"],
23
23
  loaded: !1,
24
24
  from: "addon_osd_manager_page",
@@ -33,7 +33,7 @@ var e = {
33
33
  },
34
34
  "@camstack/ui-library": {
35
35
  name: "@camstack/ui-library",
36
- version: "1.2.131",
36
+ version: "1.2.132",
37
37
  scope: ["default"],
38
38
  loaded: !1,
39
39
  from: "addon_osd_manager_page",
@@ -36,7 +36,7 @@ async function r() {
36
36
  }
37
37
  },
38
38
  "@camstack/types": {
39
- version: "1.2.163",
39
+ version: "1.2.164",
40
40
  scope: "default",
41
41
  shareConfig: {
42
42
  singleton: !0,
@@ -45,7 +45,7 @@ async function r() {
45
45
  }
46
46
  },
47
47
  "@camstack/sdk": {
48
- version: "1.2.83",
48
+ version: "1.2.84",
49
49
  scope: "default",
50
50
  shareConfig: {
51
51
  singleton: !0,
@@ -81,7 +81,7 @@ async function r() {
81
81
  }
82
82
  },
83
83
  "@camstack/ui-library": {
84
- version: "1.2.131",
84
+ version: "1.2.132",
85
85
  scope: "default",
86
86
  shareConfig: {
87
87
  singleton: !0,
package/dist/index.js CHANGED
@@ -23752,8 +23752,25 @@ var occupancyRecheckFramesField = {
23752
23752
  * (analyzer attaches detected `regions[]`; onboard does not — the
23753
23753
  * camera typically only reports a binary signal plus an optional
23754
23754
  * channel/AI class which lives in dedicated event channels).
23755
- */
23756
- var MotionSourceEnum = _enum(["onboard", "analyzer"]);
23755
+ *
23756
+ * - `onboard` — the camera's firmware said something moved.
23757
+ * - `analyzer` — this runner's frame-diff said so, and attaches `regions[]`.
23758
+ * - `device-activity` — the DEVICE said it is doing its job: the
23759
+ * `recording-signal` LEVEL the same device raises for the recorder
23760
+ * ([D380](../../../../docs/decisions/adr-0380-a-device-decided-recording-is-a-mode-with-no-schedule-seeded-once.md)),
23761
+ * republished as a motion source. It attaches **nothing** — no regions, no
23762
+ * class: the only fact it carries is that the device is active, and a robot
23763
+ * vacuum that is itself the moving object has no region worth sending. It is
23764
+ * a LEVEL, so unlike `onboard` it has a real falling edge, and unlike
23765
+ * `analyzer` it must not open the frame-diff side-channel — the runner's
23766
+ * `handleOnboardMotionAnalyzer` gate is `source === 'onboard'` and stays that
23767
+ * way ([D392](../../../../docs/decisions/adr-0392-a-device-that-says-it-is-working-is-a-motion-source-of-its-own.md)).
23768
+ */
23769
+ var MotionSourceEnum = _enum([
23770
+ "onboard",
23771
+ "analyzer",
23772
+ "device-activity"
23773
+ ]);
23757
23774
  /**
23758
23775
  * List of motion sources active on a camera. Empty array is valid:
23759
23776
  * "no source" — happens for battery cams without firmware motion when
package/dist/index.mjs CHANGED
@@ -23748,8 +23748,25 @@ var occupancyRecheckFramesField = {
23748
23748
  * (analyzer attaches detected `regions[]`; onboard does not — the
23749
23749
  * camera typically only reports a binary signal plus an optional
23750
23750
  * channel/AI class which lives in dedicated event channels).
23751
- */
23752
- var MotionSourceEnum = _enum(["onboard", "analyzer"]);
23751
+ *
23752
+ * - `onboard` — the camera's firmware said something moved.
23753
+ * - `analyzer` — this runner's frame-diff said so, and attaches `regions[]`.
23754
+ * - `device-activity` — the DEVICE said it is doing its job: the
23755
+ * `recording-signal` LEVEL the same device raises for the recorder
23756
+ * ([D380](../../../../docs/decisions/adr-0380-a-device-decided-recording-is-a-mode-with-no-schedule-seeded-once.md)),
23757
+ * republished as a motion source. It attaches **nothing** — no regions, no
23758
+ * class: the only fact it carries is that the device is active, and a robot
23759
+ * vacuum that is itself the moving object has no region worth sending. It is
23760
+ * a LEVEL, so unlike `onboard` it has a real falling edge, and unlike
23761
+ * `analyzer` it must not open the frame-diff side-channel — the runner's
23762
+ * `handleOnboardMotionAnalyzer` gate is `source === 'onboard'` and stays that
23763
+ * way ([D392](../../../../docs/decisions/adr-0392-a-device-that-says-it-is-working-is-a-motion-source-of-its-own.md)).
23764
+ */
23765
+ var MotionSourceEnum = _enum([
23766
+ "onboard",
23767
+ "analyzer",
23768
+ "device-activity"
23769
+ ]);
23753
23770
  /**
23754
23771
  * List of motion sources active on a camera. Empty array is valid:
23755
23772
  * "no source" — happens for battery cams without firmware motion when
@@ -1,2 +1,2 @@
1
- import { n as e, t } from "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-CtVrWNnx.mjs";
1
+ import { n as e, t } from "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-ChNl9npD.mjs";
2
2
  export { t as get, e as init };
@@ -2753,7 +2753,7 @@ async function rr(e) {
2753
2753
  }
2754
2754
  }
2755
2755
  async function ir() {
2756
- return tr ||= rr(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_osd_manager_page-CBDnIQTl.mjs")).catch((e) => {
2756
+ return tr ||= rr(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_osd_manager_page-Bi39a2P-.mjs")).catch((e) => {
2757
2757
  throw tr = void 0, e;
2758
2758
  }), tr;
2759
2759
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/addon-osd-manager",
3
- "version": "0.1.77",
3
+ "version": "0.1.78",
4
4
  "description": "Binds camera on-screen-display slots to live state and recognitions",
5
5
  "keywords": [
6
6
  "camstack",