@camstack/addon-osd-manager 0.1.89 → 0.1.90

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-BcU-9zG9.mjs";
2
+ import "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-B8bHCFNK.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-Bu9A8Rdp.mjs";
5
5
  import { d as _, l as v, u as y } from "./use-device-snapshot-BO5IPkxL.mjs";
@@ -1,9 +1,9 @@
1
- import "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-BcU-9zG9.mjs";
1
+ import "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-B8bHCFNK.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.95",
6
+ version: "1.2.96",
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.175",
21
+ version: "1.2.176",
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.143",
36
+ version: "1.2.144",
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.175",
39
+ version: "1.2.176",
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.95",
48
+ version: "1.2.96",
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.143",
84
+ version: "1.2.144",
85
85
  scope: "default",
86
86
  shareConfig: {
87
87
  singleton: !0,
package/dist/index.js CHANGED
@@ -22618,7 +22618,17 @@ var EventDensityBucketSchema = object({
22618
22618
  bucketStart: number(),
22619
22619
  motion: number().int(),
22620
22620
  object: number().int(),
22621
- audio: number().int()
22621
+ audio: number().int(),
22622
+ /**
22623
+ * Energy-weighted mean dBFS of the audio events in this bucket — the LEVEL,
22624
+ * as opposed to `audio`, which is their COUNT (D431).
22625
+ *
22626
+ * ABSENT when the bucket holds no audio event. Absence means "nothing was
22627
+ * measured", which is not the same claim as silence, and a lane that cannot
22628
+ * tell them apart paints a quiet hour at full scale — which is exactly what
22629
+ * the count-on-a-level-meter did.
22630
+ */
22631
+ audioDbfs: number().optional()
22622
22632
  });
22623
22633
  /**
22624
22634
  * One camera's row in a `getEventDensityBatch` answer.
@@ -35123,7 +35133,23 @@ var RecordingRangeSchema = object({
35123
35133
  });
35124
35134
  var RecordingAvailabilitySchema = object({
35125
35135
  deviceId: number(),
35126
- ranges: array(RecordingRangeSchema)
35136
+ ranges: array(RecordingRangeSchema),
35137
+ /**
35138
+ * Every profile this camera has footage in — not only the one `ranges`
35139
+ * describes (D433).
35140
+ *
35141
+ * `ranges` answers for ONE profile by design: the timeline is a single bar,
35142
+ * and enumerating all of them triples the directory reads for a bar that
35143
+ * would look identical. But the answer used to say nothing about that, so a
35144
+ * caller asking "what can I export?" read the single preferred profile as
35145
+ * the only one that exists — on this deployment every camera records `high`
35146
+ * AND `low`, the low tree holding 14 GB for camera 615 alone, and the export
35147
+ * UI could not see it.
35148
+ *
35149
+ * Cheap: it is the same shallow directory read the profile CHOICE already
35150
+ * makes. Ask for a specific profile's ranges with the `profile` input.
35151
+ */
35152
+ profilesWithFootage: array(string())
35127
35153
  });
35128
35154
  var RecordingDaysSchema = object({
35129
35155
  deviceId: number(),
@@ -35149,7 +35175,11 @@ var RecordingDaysSchema = object({
35149
35175
  var RecordingAvailabilityForDeviceSchema = object({
35150
35176
  deviceId: number(),
35151
35177
  read: _enum(["read", "unreadable"]),
35152
- ranges: array(RecordingRangeSchema).readonly()
35178
+ ranges: array(RecordingRangeSchema).readonly(),
35179
+ /** Same field, same meaning, as the singular answer (D433). A row that
35180
+ * dropped it would tell a grid caller the archive holds one profile.
35181
+ * Empty on an `'unreadable'` row: nobody looked. */
35182
+ profilesWithFootage: array(string()).readonly()
35153
35183
  });
35154
35184
  /**
35155
35185
  * One camera's row in a `getDaysWithRecordingsBatch` answer. Same rule as
@@ -35449,7 +35479,14 @@ var recordingCapability = {
35449
35479
  getAvailability: method(object({
35450
35480
  deviceId: number(),
35451
35481
  fromMs: number(),
35452
- toMs: number()
35482
+ toMs: number(),
35483
+ /**
35484
+ * Answer for THIS profile instead of the preferred one (D433). Absent
35485
+ * keeps the timeline's behaviour — one bar, one profile, one set of
35486
+ * reads. `profilesWithFootage` on the answer says what may be asked
35487
+ * for.
35488
+ */
35489
+ profile: string().optional()
35453
35490
  }), RecordingAvailabilitySchema, {
35454
35491
  kind: "query",
35455
35492
  auth: "protected"
package/dist/index.mjs CHANGED
@@ -22614,7 +22614,17 @@ var EventDensityBucketSchema = object({
22614
22614
  bucketStart: number(),
22615
22615
  motion: number().int(),
22616
22616
  object: number().int(),
22617
- audio: number().int()
22617
+ audio: number().int(),
22618
+ /**
22619
+ * Energy-weighted mean dBFS of the audio events in this bucket — the LEVEL,
22620
+ * as opposed to `audio`, which is their COUNT (D431).
22621
+ *
22622
+ * ABSENT when the bucket holds no audio event. Absence means "nothing was
22623
+ * measured", which is not the same claim as silence, and a lane that cannot
22624
+ * tell them apart paints a quiet hour at full scale — which is exactly what
22625
+ * the count-on-a-level-meter did.
22626
+ */
22627
+ audioDbfs: number().optional()
22618
22628
  });
22619
22629
  /**
22620
22630
  * One camera's row in a `getEventDensityBatch` answer.
@@ -35119,7 +35129,23 @@ var RecordingRangeSchema = object({
35119
35129
  });
35120
35130
  var RecordingAvailabilitySchema = object({
35121
35131
  deviceId: number(),
35122
- ranges: array(RecordingRangeSchema)
35132
+ ranges: array(RecordingRangeSchema),
35133
+ /**
35134
+ * Every profile this camera has footage in — not only the one `ranges`
35135
+ * describes (D433).
35136
+ *
35137
+ * `ranges` answers for ONE profile by design: the timeline is a single bar,
35138
+ * and enumerating all of them triples the directory reads for a bar that
35139
+ * would look identical. But the answer used to say nothing about that, so a
35140
+ * caller asking "what can I export?" read the single preferred profile as
35141
+ * the only one that exists — on this deployment every camera records `high`
35142
+ * AND `low`, the low tree holding 14 GB for camera 615 alone, and the export
35143
+ * UI could not see it.
35144
+ *
35145
+ * Cheap: it is the same shallow directory read the profile CHOICE already
35146
+ * makes. Ask for a specific profile's ranges with the `profile` input.
35147
+ */
35148
+ profilesWithFootage: array(string())
35123
35149
  });
35124
35150
  var RecordingDaysSchema = object({
35125
35151
  deviceId: number(),
@@ -35145,7 +35171,11 @@ var RecordingDaysSchema = object({
35145
35171
  var RecordingAvailabilityForDeviceSchema = object({
35146
35172
  deviceId: number(),
35147
35173
  read: _enum(["read", "unreadable"]),
35148
- ranges: array(RecordingRangeSchema).readonly()
35174
+ ranges: array(RecordingRangeSchema).readonly(),
35175
+ /** Same field, same meaning, as the singular answer (D433). A row that
35176
+ * dropped it would tell a grid caller the archive holds one profile.
35177
+ * Empty on an `'unreadable'` row: nobody looked. */
35178
+ profilesWithFootage: array(string()).readonly()
35149
35179
  });
35150
35180
  /**
35151
35181
  * One camera's row in a `getDaysWithRecordingsBatch` answer. Same rule as
@@ -35445,7 +35475,14 @@ var recordingCapability = {
35445
35475
  getAvailability: method(object({
35446
35476
  deviceId: number(),
35447
35477
  fromMs: number(),
35448
- toMs: number()
35478
+ toMs: number(),
35479
+ /**
35480
+ * Answer for THIS profile instead of the preferred one (D433). Absent
35481
+ * keeps the timeline's behaviour — one bar, one profile, one set of
35482
+ * reads. `profilesWithFootage` on the answer says what may be asked
35483
+ * for.
35484
+ */
35485
+ profile: string().optional()
35449
35486
  }), RecordingAvailabilitySchema, {
35450
35487
  kind: "query",
35451
35488
  auth: "protected"
@@ -1,2 +1,2 @@
1
- import { n as e, t } from "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-BcU-9zG9.mjs";
1
+ import { n as e, t } from "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-B8bHCFNK.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-ClwEvchD.mjs")).catch((e) => {
2756
+ return tr ||= rr(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_osd_manager_page-mVEk22g7.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.89",
3
+ "version": "0.1.90",
4
4
  "description": "Binds camera on-screen-display slots to live state and recognitions",
5
5
  "keywords": [
6
6
  "camstack",