@camstack/addon-model-studio 1.1.106 → 1.1.107

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-CWSi4E_g.mjs";
2
- import "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_model_studio_page__remoteEntry_js-CdPBo7mj.mjs";
2
+ import "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_model_studio_page__remoteEntry_js-vRsGc6Lt.mjs";
3
3
  import { _ as e, c as t, d as n, h as r, i, l as a, m as o, p as s, r as c, t as l, u, y as d } from "./_virtual_mf___mfe_internal__addon_model_studio_page__loadShare__react__loadShare__.js-DJDHChgO.mjs";
4
4
  import { a as f, i as p, o as m, r as h, s as g } from "./responsive-CDob01xQ.mjs";
5
5
  import { d as _, l as v, u as y } from "./use-device-snapshot-esDPfd9B.mjs";
@@ -1,9 +1,9 @@
1
- import "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_model_studio_page__remoteEntry_js-CdPBo7mj.mjs";
1
+ import "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_model_studio_page__remoteEntry_js-vRsGc6Lt.mjs";
2
2
  //#region \0virtual:mf-localSharedImportMap:__mfe_internal__addon_model_studio_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_model_studio_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_model_studio_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_model_studio_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,
@@ -20760,8 +20760,25 @@ var occupancyRecheckFramesField = {
20760
20760
  * (analyzer attaches detected `regions[]`; onboard does not — the
20761
20761
  * camera typically only reports a binary signal plus an optional
20762
20762
  * channel/AI class which lives in dedicated event channels).
20763
- */
20764
- var MotionSourceEnum = _enum(["onboard", "analyzer"]);
20763
+ *
20764
+ * - `onboard` — the camera's firmware said something moved.
20765
+ * - `analyzer` — this runner's frame-diff said so, and attaches `regions[]`.
20766
+ * - `device-activity` — the DEVICE said it is doing its job: the
20767
+ * `recording-signal` LEVEL the same device raises for the recorder
20768
+ * ([D380](../../../../docs/decisions/adr-0380-a-device-decided-recording-is-a-mode-with-no-schedule-seeded-once.md)),
20769
+ * republished as a motion source. It attaches **nothing** — no regions, no
20770
+ * class: the only fact it carries is that the device is active, and a robot
20771
+ * vacuum that is itself the moving object has no region worth sending. It is
20772
+ * a LEVEL, so unlike `onboard` it has a real falling edge, and unlike
20773
+ * `analyzer` it must not open the frame-diff side-channel — the runner's
20774
+ * `handleOnboardMotionAnalyzer` gate is `source === 'onboard'` and stays that
20775
+ * way ([D392](../../../../docs/decisions/adr-0392-a-device-that-says-it-is-working-is-a-motion-source-of-its-own.md)).
20776
+ */
20777
+ var MotionSourceEnum = _enum([
20778
+ "onboard",
20779
+ "analyzer",
20780
+ "device-activity"
20781
+ ]);
20765
20782
  /**
20766
20783
  * List of motion sources active on a camera. Empty array is valid:
20767
20784
  * "no source" — happens for battery cams without firmware motion when
@@ -20739,8 +20739,25 @@ var occupancyRecheckFramesField = {
20739
20739
  * (analyzer attaches detected `regions[]`; onboard does not — the
20740
20740
  * camera typically only reports a binary signal plus an optional
20741
20741
  * channel/AI class which lives in dedicated event channels).
20742
- */
20743
- var MotionSourceEnum = _enum(["onboard", "analyzer"]);
20742
+ *
20743
+ * - `onboard` — the camera's firmware said something moved.
20744
+ * - `analyzer` — this runner's frame-diff said so, and attaches `regions[]`.
20745
+ * - `device-activity` — the DEVICE said it is doing its job: the
20746
+ * `recording-signal` LEVEL the same device raises for the recorder
20747
+ * ([D380](../../../../docs/decisions/adr-0380-a-device-decided-recording-is-a-mode-with-no-schedule-seeded-once.md)),
20748
+ * republished as a motion source. It attaches **nothing** — no regions, no
20749
+ * class: the only fact it carries is that the device is active, and a robot
20750
+ * vacuum that is itself the moving object has no region worth sending. It is
20751
+ * a LEVEL, so unlike `onboard` it has a real falling edge, and unlike
20752
+ * `analyzer` it must not open the frame-diff side-channel — the runner's
20753
+ * `handleOnboardMotionAnalyzer` gate is `source === 'onboard'` and stays that
20754
+ * way ([D392](../../../../docs/decisions/adr-0392-a-device-that-says-it-is-working-is-a-motion-source-of-its-own.md)).
20755
+ */
20756
+ var MotionSourceEnum = _enum([
20757
+ "onboard",
20758
+ "analyzer",
20759
+ "device-activity"
20760
+ ]);
20744
20761
  /**
20745
20762
  * List of motion sources active on a camera. Empty array is valid:
20746
20763
  * "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_model_studio_page__remoteEntry_js-CdPBo7mj.mjs";
1
+ import { n as e, t } from "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_model_studio_page__remoteEntry_js-vRsGc6Lt.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_model_studio_page-h6h-pDo8.mjs")).catch((e) => {
2756
+ return tr ||= rr(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_model_studio_page-D6NPMtuO.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-model-studio",
3
- "version": "1.1.106",
3
+ "version": "1.1.107",
4
4
  "description": "Custom detection model registry, conversion & distribution for CamStack",
5
5
  "keywords": [
6
6
  "camstack",