@camstack/addon-pipeline 1.0.2 → 1.0.4

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.
@@ -3888,22 +3888,68 @@ var DetectionPipelineProvider = class DetectionPipelineProvider {
3888
3888
  async setApi(addonCtx) {
3889
3889
  this.addonCtx = addonCtx;
3890
3890
  }
3891
+ /**
3892
+ * Fetch platform-probe data for engine + device gating. Returns null for
3893
+ * both fields when the probe cap is not yet reachable (cold-start / probe
3894
+ * addon not installed), so callers fall back to the full static catalog.
3895
+ */
3896
+ async fetchProbeGatingData() {
3897
+ try {
3898
+ const api = this.addonCtx?.api;
3899
+ if (!api) return {
3900
+ availableBackends: null,
3901
+ hardware: null
3902
+ };
3903
+ const caps = await api.platformProbe.getCapabilities.query();
3904
+ if (!caps?.scores) return {
3905
+ availableBackends: null,
3906
+ hardware: null
3907
+ };
3908
+ return {
3909
+ availableBackends: caps.scores.filter((s) => s.runtime === "python" && s.available).map((s) => s.backend),
3910
+ hardware: caps.hardware ?? null
3911
+ };
3912
+ } catch {
3913
+ return {
3914
+ availableBackends: null,
3915
+ hardware: null
3916
+ };
3917
+ }
3918
+ }
3891
3919
  async getSchema(engine) {
3892
3920
  if (!engine || !engine.runtime) engine = await this.getSelectedEngine();
3893
3921
  const format = engine.format;
3894
3922
  const slots = buildSchemaSlots(format, this.modelsDir);
3923
+ const { availableBackends, hardware } = await this.fetchProbeGatingData();
3895
3924
  return {
3896
- availableEngines: this.getAvailableEnginesWithDevices(),
3925
+ availableEngines: this.getAvailableEnginesWithDevices(availableBackends, hardware),
3897
3926
  selectedEngine: { ...engine },
3898
3927
  slots
3899
3928
  };
3900
3929
  }
3901
3930
  async getAvailableEngines() {
3902
- return this.getAvailableEnginesWithDevices().map((e) => e.engine);
3931
+ const { availableBackends, hardware } = await this.fetchProbeGatingData();
3932
+ return this.getAvailableEnginesWithDevices(availableBackends, hardware).map((e) => e.engine);
3903
3933
  }
3904
- getAvailableEnginesWithDevices() {
3905
- const engines = [];
3906
- if (process.platform === "darwin") engines.push({
3934
+ /**
3935
+ * Build the engine catalog filtered by probe data.
3936
+ *
3937
+ * When `availableBackends` is not null, only engines whose backend is
3938
+ * reported as available by the platform-probe cap are included. This
3939
+ * prevents the benchmark picker from offering (e.g.) CoreML on an Intel
3940
+ * Linux host where the Python coremltools package is absent.
3941
+ *
3942
+ * When `hardware` is not null, the per-engine device list is narrowed to
3943
+ * entries that are valid on this host's hardware (no Intel NPU → no 'npu'
3944
+ * device for OpenVINO, no NVIDIA GPU → no 'cuda' for ONNX, etc.).
3945
+ *
3946
+ * When either argument is null (probe unreachable / cold-start), the full
3947
+ * static catalog is returned unchanged — conservative fallback so the UI
3948
+ * still renders all options rather than going blank.
3949
+ */
3950
+ getAvailableEnginesWithDevices(availableBackends, hardware) {
3951
+ const allEngines = [];
3952
+ if (process.platform === "darwin") allEngines.push({
3907
3953
  engine: {
3908
3954
  runtime: "python",
3909
3955
  backend: "coreml",
@@ -3912,7 +3958,7 @@ var DetectionPipelineProvider = class DetectionPipelineProvider {
3912
3958
  devices: COREML_DEVICES,
3913
3959
  defaultDevice: "all"
3914
3960
  });
3915
- engines.push({
3961
+ allEngines.push({
3916
3962
  engine: {
3917
3963
  runtime: "python",
3918
3964
  backend: "openvino",
@@ -3921,7 +3967,7 @@ var DetectionPipelineProvider = class DetectionPipelineProvider {
3921
3967
  devices: OPENVINO_DEVICES,
3922
3968
  defaultDevice: "auto"
3923
3969
  });
3924
- engines.push({
3970
+ allEngines.push({
3925
3971
  engine: {
3926
3972
  runtime: "python",
3927
3973
  backend: "onnx",
@@ -3930,7 +3976,19 @@ var DetectionPipelineProvider = class DetectionPipelineProvider {
3930
3976
  devices: ONNX_PYTHON_DEVICES,
3931
3977
  defaultDevice: "cpu"
3932
3978
  });
3933
- return engines;
3979
+ if (!availableBackends) return allEngines;
3980
+ return allEngines.filter((e) => availableBackends.includes(e.engine.backend)).map((e) => {
3981
+ if (!hardware) return e;
3982
+ const filtered = filterDeviceOptionsByHardware(e.devices.map((d) => ({
3983
+ value: d.id,
3984
+ label: d.label
3985
+ })), e.engine.backend, hardware);
3986
+ const allowedIds = new Set(filtered.map((o) => o.value));
3987
+ return {
3988
+ ...e,
3989
+ devices: e.devices.filter((d) => allowedIds.has(d.id))
3990
+ };
3991
+ });
3934
3992
  }
3935
3993
  async getDefaultSteps(engine) {
3936
3994
  return buildDefaultStepTree(engine.format);
@@ -4022,7 +4080,8 @@ var DetectionPipelineProvider = class DetectionPipelineProvider {
4022
4080
  };
4023
4081
  })
4024
4082
  }));
4025
- const engines = this.getAvailableEnginesWithDevices();
4083
+ const { availableBackends, hardware } = await this.fetchProbeGatingData();
4084
+ const engines = this.getAvailableEnginesWithDevices(availableBackends, hardware);
4026
4085
  const nodeBackends = [];
4027
4086
  const pythonBackends = [];
4028
4087
  for (const e of engines) if (e.engine.runtime === "node") nodeBackends.push({
@@ -5123,19 +5182,20 @@ var DetectionPipelineProvider = class DetectionPipelineProvider {
5123
5182
  */
5124
5183
  async loadEngine() {
5125
5184
  const store = await this.readStore();
5126
- const runtime = store["engineRuntime"];
5127
- const backend = store["engineBackend"];
5128
- if (typeof runtime === "string" && typeof backend === "string" && runtime && backend) {
5185
+ const storedRuntime = store["engineRuntime"];
5186
+ const storedBackend = store["engineBackend"];
5187
+ if (typeof storedBackend === "string" && storedBackend.length > 0) {
5188
+ const backend = storedBackend;
5129
5189
  const storedDevice = typeof store["engineDevice"] === "string" ? String(store["engineDevice"]) : "";
5130
5190
  const detected = DetectionPipelineProvider.detectBestEngine();
5131
- if (runtime === "python" && !DetectionPipelineProvider.isPythonBackendAvailable(backend, this.executorOptions.pythonPath ?? "")) {
5191
+ const migratedBackend = typeof storedRuntime === "string" && storedRuntime === "node" && backend === "cpu" ? "onnx" : backend;
5192
+ if (!DetectionPipelineProvider.isPythonBackendAvailable(migratedBackend, this.executorOptions.pythonPath ?? "")) {
5132
5193
  this.log.warn("Stored engine backend unavailable on this node — falling back to detected best", { meta: {
5133
- stored: `${runtime}/${backend}`,
5134
- fallback: `${detected.runtime}/${detected.backend}`
5194
+ stored: migratedBackend,
5195
+ fallback: `${detected.backend}`
5135
5196
  } });
5136
5197
  return detected;
5137
5198
  }
5138
- const migratedBackend = runtime === "node" && backend === "cpu" ? "onnx" : backend;
5139
5199
  const device = storedDevice || detected.device;
5140
5200
  return {
5141
5201
  runtime: "python",
@@ -5305,11 +5365,42 @@ var DetectionPipelineProvider = class DetectionPipelineProvider {
5305
5365
  return { success: true };
5306
5366
  }
5307
5367
  async reprobeEngine() {
5308
- const best = DetectionPipelineProvider.detectBestEngine();
5309
- const probedLabel = `${best.runtime}/${best.backend}/${best.device ?? "default"}`;
5310
- await this.writeStore({ probedBestEngine: probedLabel });
5311
- this.log.info("Re-probed engine", { meta: {
5312
- runtime: best.runtime,
5368
+ const api = this.addonCtx?.api;
5369
+ let best;
5370
+ if (api) try {
5371
+ const caps = await api.platformProbe.getCapabilities.query();
5372
+ const bs = caps?.bestScore;
5373
+ if (bs && bs.runtime === "python") {
5374
+ const probeBackend = bs.backend;
5375
+ const probeDevice = (() => {
5376
+ const hw = caps.hardware;
5377
+ if (probeBackend === "coreml") return hw?.npu?.type === "apple-ane" ? "ane" : "all";
5378
+ if (probeBackend === "openvino") {
5379
+ if (hw?.npu?.type === "intel-npu") return "npu";
5380
+ if (hw?.gpu?.type === "intel") return "gpu";
5381
+ return "auto";
5382
+ }
5383
+ if (probeBackend === "onnx") return hw?.gpu?.type === "nvidia" ? "cuda" : "cpu";
5384
+ return "cpu";
5385
+ })();
5386
+ best = {
5387
+ runtime: "python",
5388
+ backend: probeBackend,
5389
+ format: backendToFormat(probeBackend),
5390
+ device: probeDevice
5391
+ };
5392
+ } else best = DetectionPipelineProvider.detectBestEngine();
5393
+ } catch {
5394
+ best = DetectionPipelineProvider.detectBestEngine();
5395
+ }
5396
+ else best = DetectionPipelineProvider.detectBestEngine();
5397
+ const probedLabel = `${best.backend}/${best.device ?? "default"}`;
5398
+ await this.writeStore({
5399
+ probedBestEngine: probedLabel,
5400
+ engineBackend: best.backend,
5401
+ engineDevice: best.device ?? "cpu"
5402
+ });
5403
+ this.log.info("Re-probed engine — wrote back engineBackend + engineDevice", { meta: {
5313
5404
  backend: best.backend,
5314
5405
  device: best.device ?? null,
5315
5406
  probedBestEngine: probedLabel
@@ -5727,10 +5818,12 @@ function shouldInstallOpenvino(hardware) {
5727
5818
  const hasIntelNpu = hardware.npu?.type === "intel-npu";
5728
5819
  return hasIntelGpu || hasIntelNpu;
5729
5820
  }
5730
- var RUNTIMES = [{
5731
- value: "python",
5732
- label: "Python (CoreML / OpenVINO / ONNX Runtime)"
5733
- }];
5821
+ /**
5822
+ * Full catalog of execution providers. The settings UI only shows the subset
5823
+ * reported as available by the platform-probe cap (`getGlobalSettings` gates
5824
+ * options by probe scores). Kept as the static universe so the static schema
5825
+ * (returned before a live ctx is available) still lists all fields.
5826
+ */
5734
5827
  var BACKENDS_BY_RUNTIME = { python: [
5735
5828
  {
5736
5829
  value: "coreml",
@@ -5801,6 +5894,53 @@ var DEVICES_BY_BACKEND = {
5801
5894
  label: "CPU"
5802
5895
  }]
5803
5896
  };
5897
+ /**
5898
+ * Filter the per-backend device option list by what the platform probe
5899
+ * reports as available hardware on this host. Rules (derived from the
5900
+ * confirmed target model):
5901
+ *
5902
+ * coreml:
5903
+ * - `ane` only when `hardware.npu?.type === 'apple-ane'`
5904
+ * - `gpu` and `all` always shown (CPU+GPU present on every Mac)
5905
+ * - `cpu` always shown
5906
+ *
5907
+ * openvino:
5908
+ * - `npu` only when `hardware.npu?.type === 'intel-npu'`
5909
+ * - `gpu` only when `hardware.gpu?.type === 'intel'`
5910
+ * - `auto` and `cpu` always shown
5911
+ *
5912
+ * onnx:
5913
+ * - `cuda` only when `hardware.gpu?.type === 'nvidia'`
5914
+ * - `coreml` only when `hardware.npu?.type === 'apple-ane'` (CoreML EP)
5915
+ * - `cpu` always shown
5916
+ *
5917
+ * When `hardware` is null (probe unreachable), the full catalog is returned
5918
+ * unchanged so the UI still renders all options.
5919
+ */
5920
+ function filterDeviceOptionsByHardware(options, backend, hardware) {
5921
+ if (!hardware) return options;
5922
+ const hasAppleAne = hardware.npu?.type === "apple-ane";
5923
+ const hasIntelNpu = hardware.npu?.type === "intel-npu";
5924
+ const hasIntelGpu = hardware.gpu?.type === "intel";
5925
+ const hasNvidiaGpu = hardware.gpu?.type === "nvidia";
5926
+ switch (backend) {
5927
+ case "coreml": return options.filter((o) => {
5928
+ if (o.value === "ane") return hasAppleAne;
5929
+ return true;
5930
+ });
5931
+ case "openvino": return options.filter((o) => {
5932
+ if (o.value === "npu") return hasIntelNpu;
5933
+ if (o.value === "gpu") return hasIntelGpu;
5934
+ return true;
5935
+ });
5936
+ case "onnx": return options.filter((o) => {
5937
+ if (o.value === "cuda") return hasNvidiaGpu;
5938
+ if (o.value === "coreml") return hasAppleAne;
5939
+ return true;
5940
+ });
5941
+ default: return options;
5942
+ }
5943
+ }
5804
5944
  var BACKEND_TO_FORMAT = {
5805
5945
  cpu: "onnx",
5806
5946
  coreml: "coreml",
@@ -5932,13 +6072,13 @@ var DetectionPipelineAddon = class extends BaseAddon {
5932
6072
  title: "Object detection",
5933
6073
  tab: "engine",
5934
6074
  order: 0,
5935
- description: "Vision-detection backend (object detection, face detection, plate OCR). Chain: runtime backend hardware. Backend options depend on runtime; hardware options depend on backend. All three restart the addon on change.",
6075
+ description: "Vision-detection execution provider (object detection, face detection, plate OCR). Inference always runs via the embedded Python runtime. Provider and hardware options are gated by what the platform probe reports as available on this host. Changes restart the addon.",
5936
6076
  fields: [
5937
6077
  this.field({
5938
6078
  type: "text",
5939
6079
  key: "probedBestEngine",
5940
6080
  label: "Probed best",
5941
- description: "Auto-detected best engine for this host (format: runtime/backend/device). Click the refresh icon to re-run the probe — the detected values get written back into the three fields below.",
6081
+ description: "Auto-detected best engine for this host (format: provider/device, e.g. \"openvino/npu\"). Click the refresh icon to re-run the probe — the detected provider and hardware device are written back into the two fields below, overwriting any manual override.",
5942
6082
  readonlyField: true,
5943
6083
  default: "",
5944
6084
  actions: [{
@@ -5947,19 +6087,10 @@ var DetectionPipelineAddon = class extends BaseAddon {
5947
6087
  tooltip: "Re-probe engine"
5948
6088
  }]
5949
6089
  }),
5950
- this.field({
5951
- type: "select",
5952
- key: "engineRuntime",
5953
- label: "Runtime",
5954
- options: [...RUNTIMES],
5955
- default: DEFAULT_CONFIG.engineRuntime,
5956
- immediate: true,
5957
- requiresRestart: true
5958
- }),
5959
6090
  this.field({
5960
6091
  type: "select",
5961
6092
  key: "engineBackend",
5962
- label: "Backend",
6093
+ label: "Execution provider",
5963
6094
  options: [...BACKENDS_BY_RUNTIME.python],
5964
6095
  default: DEFAULT_CONFIG.engineBackend,
5965
6096
  immediate: true,
@@ -6097,14 +6228,16 @@ var DetectionPipelineAddon = class extends BaseAddon {
6097
6228
  ...overlay
6098
6229
  } : stored;
6099
6230
  const runtime = "python";
6100
- const availableBackends = await this.resolveAvailableBackends(ctx, runtime);
6231
+ const probeResult = await this.resolveProbeData(ctx, runtime);
6232
+ const availableBackends = probeResult.availableBackends;
6233
+ const hardware = probeResult.hardware;
6101
6234
  const runtimeBackends = availableBackends.length > 0 ? BACKENDS_BY_RUNTIME[runtime].filter((b) => availableBackends.includes(b.value)) : BACKENDS_BY_RUNTIME[runtime];
6102
6235
  const storedBackend = typeof merged.engineBackend === "string" ? merged.engineBackend : "";
6103
- const backend = runtimeBackends.find((b) => b.value === storedBackend)?.value ?? runtimeBackends[0]?.value ?? "coreml";
6104
- const deviceOptions = DEVICES_BY_BACKEND[backend] ?? [{
6236
+ const backend = runtimeBackends.find((b) => b.value === storedBackend)?.value ?? probeResult.bestBackend ?? runtimeBackends[0]?.value ?? "coreml";
6237
+ const deviceOptions = filterDeviceOptionsByHardware(DEVICES_BY_BACKEND[backend] ?? [{
6105
6238
  value: "cpu",
6106
6239
  label: "CPU"
6107
- }];
6240
+ }], backend, hardware);
6108
6241
  const storedDevice = typeof merged.engineDevice === "string" ? merged.engineDevice : "";
6109
6242
  const device = deviceOptions.find((d) => d.value === storedDevice)?.value ?? deviceOptions[0]?.value ?? "cpu";
6110
6243
  const raw = {
@@ -6154,28 +6287,47 @@ var DetectionPipelineAddon = class extends BaseAddon {
6154
6287
  }, raw);
6155
6288
  }
6156
6289
  /**
6157
- * Ask the platform-probe cap which backends are actually installable
6158
- * on this node (checks for `openvino`, `coremltools`, `onnxruntime`
6159
- * Python modules + hardware presence). Returns a subset of the static
6160
- * catalog; an empty list signals the probe wasn't available so the
6161
- * caller should fall back to the full catalog rather than hiding
6162
- * every option.
6290
+ * Fetch the platform-probe capabilities and return:
6291
+ * - `availableBackends`: backends the probe reports as available for `runtime`
6292
+ * (empty caller falls back to full catalog).
6293
+ * - `hardware`: the probed hardware info (null when probe not reachable).
6294
+ * - `bestBackend`: the backend from the probe's `bestScore` (null when unavailable).
6295
+ *
6296
+ * A single probe call is made so both backend AND device gating use the
6297
+ * same snapshot without doubling the cap round-trip.
6163
6298
  */
6164
- async resolveAvailableBackends(ctx, runtime) {
6299
+ async resolveProbeData(ctx, runtime) {
6165
6300
  try {
6166
6301
  const api = ctx?.api;
6167
- if (!api) return [];
6302
+ if (!api) return {
6303
+ availableBackends: [],
6304
+ hardware: null,
6305
+ bestBackend: null
6306
+ };
6168
6307
  const caps = await api.platformProbe.getCapabilities.query();
6169
- if (!caps?.scores) return [];
6308
+ if (!caps?.scores) return {
6309
+ availableBackends: [],
6310
+ hardware: null,
6311
+ bestBackend: null
6312
+ };
6170
6313
  const out = /* @__PURE__ */ new Set();
6171
6314
  for (const s of caps.scores) {
6172
6315
  if (s.runtime !== runtime) continue;
6173
6316
  if (!s.available) continue;
6174
6317
  out.add(s.backend);
6175
6318
  }
6176
- return [...out];
6319
+ const bestBackend = caps.bestScore?.runtime === runtime ? caps.bestScore.backend ?? null : null;
6320
+ return {
6321
+ availableBackends: [...out],
6322
+ hardware: caps.hardware ?? null,
6323
+ bestBackend
6324
+ };
6177
6325
  } catch {
6178
- return [];
6326
+ return {
6327
+ availableBackends: [],
6328
+ hardware: null,
6329
+ bestBackend: null
6330
+ };
6179
6331
  }
6180
6332
  }
6181
6333
  /**
@@ -6396,4 +6548,4 @@ var DetectionPipelineAddon = class extends BaseAddon {
6396
6548
  }
6397
6549
  };
6398
6550
  //#endregion
6399
- export { ALL_STEPS, DetectionPipelineProvider, backendToFormat, DetectionPipelineAddon as default, getDefaultModelForFormat, getStepDefinition, shouldInstallOpenvino };
6551
+ export { ALL_STEPS, DetectionPipelineProvider, backendToFormat, DetectionPipelineAddon as default, filterDeviceOptionsByHardware, getDefaultModelForFormat, getStepDefinition, shouldInstallOpenvino };
@@ -1,5 +1,5 @@
1
1
  import { a as e, i as t, n, o as r, r as i, t as a } from "./_virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare__react__loadShare__.js-C9j-2lBe.mjs";
2
- import { a as o, c as s, i as c, l, n as u, o as d, r as f, s as p, t as m, u as h } from "./_virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_ui_mf_2_library__loadShare__.js-C9WX5HNw.mjs";
2
+ import { a as o, c as s, i as c, l, n as u, o as d, r as f, s as p, t as m, u as h } from "./_virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_ui_mf_2_library__loadShare__.js-B0Z2W5UM.mjs";
3
3
  import { n as g, r as _, t as v } from "./_virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare__react_mf_1_jsx_mf_2_runtime__loadShare__.js-XO0-Pyu6.mjs";
4
4
  import { n as y, t as b } from "./_virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_tanstack_mf_1_react_mf_2_query__loadShare__.js-BO7TIbJV.mjs";
5
5
  import { t as x } from "./_virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-Tf-HACFd.mjs";
@@ -3,7 +3,7 @@ import "./dist-CYZr2fwk.mjs";
3
3
  var e = {
4
4
  "@camstack/sdk": {
5
5
  name: "@camstack/sdk",
6
- version: "1.0.1",
6
+ version: "1.0.3",
7
7
  scope: ["default"],
8
8
  loaded: !1,
9
9
  from: "addon_stream_broker_widgets",
@@ -18,7 +18,7 @@ var e = {
18
18
  },
19
19
  "@camstack/types": {
20
20
  name: "@camstack/types",
21
- version: "1.0.1",
21
+ version: "1.0.3",
22
22
  scope: ["default"],
23
23
  loaded: !1,
24
24
  from: "addon_stream_broker_widgets",
@@ -33,7 +33,7 @@ var e = {
33
33
  },
34
34
  "@camstack/ui-library": {
35
35
  name: "@camstack/ui-library",
36
- version: "1.0.1",
36
+ version: "1.0.3",
37
37
  scope: ["default"],
38
38
  loaded: !1,
39
39
  from: "addon_stream_broker_widgets",
@@ -0,0 +1,26 @@
1
+ //#region \0virtual:mf:__mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_ui_mf_2_library__loadShare__.js
2
+ var e = "__mf_init__virtual:mf:__mfe_internal__addon_stream_broker_widgets__mf_v__runtimeInit__mf_v__.js__", t = globalThis[e];
3
+ if (!t) {
4
+ let n, r, i = new Promise((e, t) => {
5
+ n = e, r = t;
6
+ });
7
+ t = globalThis[e] = {
8
+ initPromise: i,
9
+ initResolve: n,
10
+ initReject: r
11
+ };
12
+ }
13
+ var n = t.initPromise, r = "__mf_module_cache__";
14
+ globalThis[r] ||= {
15
+ share: {},
16
+ remote: {}
17
+ }, globalThis[r].share ||= {}, globalThis[r].remote ||= {};
18
+ var i = globalThis[r], a, o, s, c, l, u, d, f, p, m, h = (e) => {
19
+ e.AddonGlobalSettingsForm, e.AgentStepEditor, e.AlarmHeroCard, e.AlarmPanelInlineControl, e.AppShell, e.ArcKnob, e.AudioClassificationList, e.AudioLevelWaveform, e.AudioWaveform, e.AutotrackSection, e.BTN_COMPACT, e.BTN_COMPACT_DANGER, e.BTN_COMPACT_PRIMARY, e.BTN_COMPACT_WARNING, e.Badge, e.BatteryBadge, e.BottomSheet, e.Breadcrumb, e.BrightnessPanel, e.Button, e.ButtonControl, e.ButtonHeroCard, e.CENTER, e.CHIP_ACTIVE, e.CHIP_BASE, e.CHIP_INACTIVE, e.CLASS_COLORS, e.COLUMN_BREAKPOINT_CLASS, e.COLUMN_PRIORITY, e.CONTROL_CAP_NAMES, e.CONTROL_FILLS, e.CameraStreamPlayer, e.Card, e.Checkbox, e.ChildSectionAccordion, e.ClimatePanel, e.CodeBlock, e.CollapsibleCard, e.ConfigFormBuilder, e.ConfigFormField, e.ConfigSchemaField, e.ConfirmActionButton, e.ConfirmDialogProvider, e.ConsumablesPanel, e.ContainerChildrenProvider, e.ContainerPrimaryHero, e.ControlColumn, e.ControlHeroCard, e.ControlInlineControl, e.ControlPanel, e.CopyButton, e.CoverHeroCard, e.CoverInlineControl, e.CoverPanel, e.CustomFieldRenderersProvider, e.DEFAULT_COLOR, e.DEVICE_COLUMNS, e.DEVICE_LIST_PAGE_SIZE_KEY, e.DEVICE_LIST_PAGE_SIZE_OPTIONS, e.DEVICE_ROLE_META, e.DEVICE_TYPE_CONTROL, e.DEVICE_TYPE_META, e.DataTable, e.DetectionCanvas, e.DetectionOverlay, e.DetectionResultTree, e.DevShell, e.DeviceActivityPanel, e.DeviceBatchToolbar, e.DeviceCard, e.DeviceContextProvider, e.DeviceExportPanel, e.DeviceGrid, e.DeviceItem, e.DeviceList, e.Dialog, e.DialogContent, e.DialogDescription, e.DialogFooter, e.DialogHeader, e.DialogTitle, e.DialogTrigger, e.DiscoveryPanel, e.DoorbellRecentPanel, e.Dropdown, e.DropdownContent, e.DropdownItem, e.DropdownTrigger, e.DummyHeroCard, e.DummyInline, e.EmptyState, e.ErrorBox, e.EventStream, e.EyeOff, e.FILL, e.FanHeroCard, e.FanInlineControl, e.FanPanel, e.FilterBar, e.FloatingEventStream, e.FloatingLogStream, e.FloatingPanel, e.FormField, e.GRID_GAP, e.GRID_PAIRED, e.GRID_QUICK_STATS, e.GripTrack, e.HOST_WIDGETS, e.HlsVideo, e.HoverZoomImage, e.HumidifierHeroCard, e.HumidifierInlineControl, e.INPUT_COMPACT, e.IconAction, e.IconButton, e.ImageHeroCard, e.ImageInlineControl, e.ImageSelector, e.InferenceConfigSelector, e.Input, e.KebabMenu, e.KeyValueList, e.LIST_ROW, e.Label, e.LawnMowerHeroCard, e.LawnMowerInlineControl, e.LightHeroCard, e.LightInlineControl, e.LockHeroCard, e.LockInlineControl, e.LockPanel, e.LogStream, e.LoginForm, e.MODE_COLOR, e.MaskShapeCanvas, e.MediaPlayerHeroCard, e.MediaPlayerInlineControl, e.MediaPlayerPanel, e.MobileDrawer, e.MotionZonesSettings, e.NodeMultiSelectField, e.NodePicker, e.NodeSelectField, e.OfflineBadge, e.PHASE_CONFIG, e.PRIORITY, e.PTZOverlay, e.PageHeader, e.PhaseIcon, e.PipelineBuilder, e.PipelineRuntimeSelector, e.PipelineStep, e.PipelineTreeMatrix, e.PlayerOverlaysProvider, e.Popover, e.PopoverContent, e.PopoverRowAction, e.PopoverTrigger, e.PrivacyMaskSettings, e.ProviderBadge, e.PtzPanel, e.QrCode, e.RIGHT, e.ROLE_DESCRIPTOR, e.RadialGauge, e.RecordingPanel, e.ResponseLog, e.SECTION_BODY, e.SECTION_CARD, e.SECTION_HEADER, e.SPLIT_PANEL_OUTER, e.SPLIT_PANEL_SIDE, e.STACK_GAP, e.STATE_COLOR, e.ScopePicker, e.ScrollArea, e.Select, e.SemanticBadge, e.SensorHeroCard, e.SensorInlineControl, e.SensorValueAtom, e.Separator, e.Sidebar, e.SidebarItem, e.Skeleton, e.SlideOverPanel, e.SlideToggle, e.SnapshotButton, e.Square, e.StatCard, e.StateValuesStream, e.StatusBadge, e.StepTimings, e.StepTreeMaster, e.Stepper, e.StreamBrokerSelector, e.StreamPanel, e.Switch, e.SwitchHeroCard, e.SwitchInlineControl, e.SwitchPanel, e.SystemProvider, e.TEXT_FIELD_LABEL, e.TEXT_HINT, e.TEXT_METRIC, e.TEXT_SECTION_LABEL, e.TEXT_VALUE, e.TIMEZONES, e.Tabs, e.TabsContent, e.TabsList, e.TabsTrigger, e.TapToggle, e.ThemeProvider, e.ThermostatHeroCard, e.ThermostatInlineControl, e.TimezoneSelector, e.Tooltip, e.TooltipContent, e.TooltipTrigger, e.Trash2, e.VacuumHeroCard, e.VacuumInlineControl, e.ValueReadout, e.ValveHeroCard, e.ValveInlineControl, e.VersionBadge, e.VodPlaybackProvider, e.WaterHeaterHeroCard, e.WaterHeaterInlineControl, e.WeatherHeroCard, e.WeatherInlineControl, e.WidgetMetricCard, e.WidgetPanel, e.WidgetRegistryProvider, e.WidgetSlot, e.ZoneEditingProvider, e.allDeviceTypeFilterOptions, e.buildStepTreeFromSchema, e.childEntityId, e.cn, e.columnsForContext, e.containerChildToRef, e.countableDevices, e.coverHighlight, e.createLucideIcon, e.createSharedContext, e.createTheme, e.darkColors, e.defaultTheme, e.deriveDeviceKind, e.deviceRoleMeta, e.deviceRoleMetaOf, e.deviceTypeMeta, e.deviceTypeMetaOf, e.ensureMfHostInit, e.findTimezone, e.formatControlDateTime, e.formatLastSeen, e.fuzzyMatch, e.getClassColor, e.getPhaseVisual, e.groupChildrenByLayout, e.hardwareLabel, e.humidifierTint, e.isAbsentProvider, e.isAbsentProvider$1, e.isFieldVisible, e.lawnMowerActivityMeta, e.lightColors, e.loadRemoteBundle, e.metadataEntries, e.metadataString, e.mirror, e.mountAddonPage, e.nextSort, e.normalizeForSearch, e.overrideEntityIdFromLink, e.providerIcons, e.resolveContainerPrimary, e.resolveControlAlign, e.resolveDeviceControl, e.resolvePrimaryChild, e.sortRows, e.statusIcons, e.tankAlert, e.themeToCss, e.trpc, e.useAccessoriesGetStatus, e.useAccessoriesSetChildHidden, e.useAddonPagesListPages, e.useAddonSettingsGetDeviceSettings, e.useAddonSettingsGetGlobalSettings, e.useAddonSettingsUpdateDeviceSettings, e.useAddonSettingsUpdateGlobalSettings, e.useAddonWidgetsListWidgets, e.useAddonsApplyAutoUpdateToAll, e.useAddonsCancelBulkUpdate, e.useAddonsCustom, e.useAddonsForceRefresh, e.useAddonsGetAddonAutoUpdate, e.useAddonsGetAutoUpdateSettings, e.useAddonsGetBulkUpdateState, e.useAddonsGetLastRestart, e.useAddonsGetLogs, e.useAddonsGetVersions, e.useAddonsInstallFromWorkspace, e.useAddonsInstallPackage, e.useAddonsIsWorkspaceAvailable, e.useAddonsList, e.useAddonsListActiveBulkUpdates, e.useAddonsListCapabilityProviders, e.useAddonsListFrameworkPackages, e.useAddonsListPackages, e.useAddonsListUpdates, e.useAddonsListWorkspacePackages, e.useAddonsOnAddonLogs, e.useAddonsReloadPackages, e.useAddonsRestartAddon, e.useAddonsRestartServer, e.useAddonsRetryLoad, e.useAddonsRollbackPackage, e.useAddonsSearchAvailable, e.useAddonsSetAddonAutoUpdate, e.useAddonsSetAutoUpdateSettings, e.useAddonsSetCapabilityProviderEnabled, e.useAddonsStartBulkUpdate, e.useAddonsUninstallPackage, e.useAddonsUpdateFrameworkPackage, e.useAddonsUpdatePackage, e.useAirQualitySensorGetStatus, e.useAlarmPanelArm, e.useAlarmPanelDisarm, e.useAlarmPanelGetStatus, e.useAlarmPanelTrigger, e.useAlertsDismiss, e.useAlertsEmit, e.useAlertsGetUnreadCount, e.useAlertsList, e.useAlertsMarkAllRead, e.useAlertsMarkRead, e.useAlertsUpdate, e.useAllWidgets, e.useAmbientLightSensorGetStatus, e.useAudioAnalysisApplyDeviceSettingsPatch, e.useAudioAnalysisGetDeviceLiveContribution, e.useAudioAnalysisGetDeviceSettingsContribution, e.useAudioAnalysisResolveDeviceSettings, e.useAudioAnalyzerAnalyseChunk, e.useAudioAnalyzerClassify, e.useAudioAnalyzerDispose, e.useAudioAnalyzerIsReady, e.useAudioAnalyzerReprobeAudioEngine, e.useAudioCodecCanHandle, e.useAudioCodecCloseSession, e.useAudioCodecCreateDecodeSession, e.useAudioCodecCreateEncodeSession, e.useAudioCodecFlushEncode, e.useAudioCodecListActiveSessions, e.useAudioCodecListSupportedCodecs, e.useAudioCodecPullEncoded, e.useAudioCodecPullPcm, e.useAudioCodecPushEncodedFrame, e.useAudioCodecPushPcm, e.useAudioMetricsGetCurrentSnapshot, e.useAudioMetricsGetHistory, e.useAutomationControlDisable, e.useAutomationControlEnable, e.useAutomationControlGetStatus, e.useAutomationControlTrigger, e.useBackupDelete, e.useBackupGetEntries, e.useBackupList, e.useBackupListArchives, e.useBackupListDestinations, e.useBackupListLocations, e.useBackupPreviewSchedule, e.useBackupRestore, e.useBackupTrigger, e.useBackupUpsertDestinationPolicy, e.useBatteryGetStatus, e.useBatteryWakeForStream, e.useBinaryGetStatus, e.useBrightnessGetStatus, e.useBrightnessSetBrightness, e.useBrokerAdd, e.useBrokerGet, e.useBrokerGetBrokerConfig, e.useBrokerGetSettings, e.useBrokerGetSettingsSchema, e.useBrokerGetState, e.useBrokerGetStatus, e.useBrokerList, e.useBrokerListProviders, e.useBrokerPublish, e.useBrokerRemove, e.useBrokerSetSettings, e.useBrokerSubscribe, e.useBrokerTestConnection, e.useBrokerTestSettings, e.useBrokerUnsubscribe, e.useButtonPress, e.useCameraCredentialsGetCredentials, e.useCameraCredentialsGetStatus, e.useCameraPipelineConfigApplyDeviceSettingsPatch, e.useCameraPipelineConfigGetDeviceLiveContribution, e.useCameraPipelineConfigGetDeviceSettingsContribution, e.useCameraStreamsGetBrokerStreams, e.useCameraStreamsGetCameraStreams, e.useCameraStreamsGetProfileRtspEntries, e.useCameraStreamsGetRtspEntries, e.useCameraStreamsPickStream, e.useCarbonMonoxideGetStatus, e.useClimateControlGetStatus, e.useClimateControlSetFanMode, e.useClimateControlSetMode, e.useClimateControlSetPreset, e.useClimateControlSetTarget, e.useClimateControlSetTargetHumidity, e.useClimateControlSetTargetRange, e.useClusterNodes, e.useColorGetStatus, e.useColorSetColor, e.useConfirm, e.useConnectivityGetStatus, e.useConsumablesGetStatus, e.useConsumablesReset, e.useContactGetStatus, e.useContainerChildren, e.useControlGetStatus, e.useControlSetValue, e.useCoverClose, e.useCoverGetStatus, e.useCoverOpen, e.useCoverSetPosition, e.useCoverSetTiltPosition, e.useCoverStop, e.useCustomFieldRenderer, e.useDebouncedString, e.useDecoderCreateSession, e.useDecoderDestroySession, e.useDecoderGetFrame, e.useDecoderGetInfo, e.useDecoderGetShmStats, e.useDecoderGetStats, e.useDecoderListActiveSessions, e.useDecoderOpenStream, e.useDecoderPullFrames, e.useDecoderPullHandles, e.useDecoderPushPacket, e.useDecoderReprobeHwaccel, e.useDecoderSupportsCodec, e.useDecoderUpdateConfig, e.useDetectionPipelineApplyDeviceSettingsPatch, e.useDetectionPipelineGetDeviceLiveContribution, e.useDetectionPipelineGetDeviceSettingsContribution, e.useDevShell, e.useDevice, e.useDeviceAdoptionAdopt, e.useDeviceAdoptionGetCandidate, e.useDeviceAdoptionGetStatus, e.useDeviceAdoptionListCandidateFilters, e.useDeviceAdoptionListCandidates, e.useDeviceAdoptionRefresh, e.useDeviceAdoptionRelease, e.useDeviceAdoptionResync, e.useDeviceAutotrack, e.useDeviceBattery, e.useDeviceCapSlice, e.useDeviceCapability, e.useDeviceDetections, e.useDeviceDiscoveryAdoptDevice, e.useDeviceDiscoveryGetStatus, e.useDeviceDiscoveryListDiscovered, e.useDeviceDiscoveryRefreshDiscovery, e.useDeviceDiscoveryReleaseDevice, e.useDeviceExportApplyDeviceSettingsPatch, e.useDeviceExportExposeDevice, e.useDeviceExportGetDeviceLiveContribution, e.useDeviceExportGetDeviceSettingsContribution, e.useDeviceExportGetStatus, e.useDeviceExportListExposedDevices, e.useDeviceExportListSupportedDeviceKinds, e.useDeviceExportUnexposeDevice, e.useDeviceId, e.useDeviceListPageSize, e.useDeviceManagerAddLocation, e.useDeviceManagerAdoptDevice, e.useDeviceManagerAdoptionAdopt, e.useDeviceManagerAdoptionListCandidates, e.useDeviceManagerAdoptionRefresh, e.useDeviceManagerAdoptionRelease, e.useDeviceManagerAllocateDeviceId, e.useDeviceManagerApplyInitialMeta, e.useDeviceManagerCreateDevice, e.useDeviceManagerDisable, e.useDeviceManagerDiscoverDevices, e.useDeviceManagerEnable, e.useDeviceManagerGetAllBindings, e.useDeviceManagerGetBindings, e.useDeviceManagerGetChildren, e.useDeviceManagerGetConfigSchema, e.useDeviceManagerGetCreationSchema, e.useDeviceManagerGetDevice, e.useDeviceManagerGetDeviceAggregate, e.useDeviceManagerGetDeviceLiveInfoAggregate, e.useDeviceManagerGetDeviceSettingsAggregate, e.useDeviceManagerGetDeviceStatusAggregate, e.useDeviceManagerGetSettingsSchema, e.useDeviceManagerGetStreamProfileMap, e.useDeviceManagerGetStreamSources, e.useDeviceManagerGetWireableFields, e.useDeviceManagerListAll, e.useDeviceManagerListBindableCapsForDeviceType, e.useDeviceManagerListLocations, e.useDeviceManagerListPersistedByAddon, e.useDeviceManagerListWrappersForCap, e.useDeviceManagerLoadConfig, e.useDeviceManagerLoadMeta, e.useDeviceManagerLoadRuntimeState, e.useDeviceManagerPersistConfig, e.useDeviceManagerProbeStreams, e.useDeviceManagerRegisterDevice, e.useDeviceManagerRemove, e.useDeviceManagerRemoveByIntegration, e.useDeviceManagerRemoveDevice, e.useDeviceManagerRemoveLocation, e.useDeviceManagerRunDeviceAction, e.useDeviceManagerSetChildLayout, e.useDeviceManagerSetDeviceLinks, e.useDeviceManagerSetDisabled, e.useDeviceManagerSetIntegrationId, e.useDeviceManagerSetLinkDeviceId, e.useDeviceManagerSetLocation, e.useDeviceManagerSetMetadata, e.useDeviceManagerSetName, e.useDeviceManagerSetPrimaryChildEntityId, e.useDeviceManagerSetRole, e.useDeviceManagerSetStreamProfileMap, e.useDeviceManagerSetType, e.useDeviceManagerSetWrapperActive, e.useDeviceManagerTestCreationField, e.useDeviceManagerTestField, e.useDeviceManagerUpdateConfig, a = e.useDeviceManagerUpdateDeviceField, e.useDeviceManagerUpdateDeviceFieldsBatch, e.useDeviceOpsGetConfigEntries, e.useDeviceOpsGetRawState, e.useDeviceOpsGetSettingsSchema, e.useDeviceOpsGetStreamSources, e.useDeviceOpsRemoveDevice, e.useDeviceOpsRunAction, e.useDeviceOpsSetConfig, e.useDeviceProviderAdoptDiscoveredDevice, e.useDeviceProviderCreateDevice, e.useDeviceProviderDiscoverDevices, e.useDeviceProviderGetChildCreationSchema, e.useDeviceProviderGetDevices, e.useDeviceProviderGetStatus, e.useDeviceProviderStart, e.useDeviceProviderStop, e.useDeviceProviderSupportsDiscovery, e.useDeviceProviderSupportsManualCreation, e.useDeviceProviderTestCreationField, o = e.useDeviceProxy, e.useDeviceProxy$1, e.useDeviceSnapshot, e.useDeviceSnapshotImage, e.useDeviceState, e.useDeviceStateGetAllSnapshots, e.useDeviceStateGetCapSlice, e.useDeviceStateGetSnapshot, e.useDeviceStateSetCapSlice, e.useDeviceStateSlice, e.useDeviceStatusGetStatus, e.useDeviceWebrtc, e.useDevices, e.useDoorbellEvents, e.useDoorbellGetStatus, e.useEnumSensorGetStatus, e.useEventEmitterGetStatus, s = e.useEventInvalidation, c = e.useEventStreamLatest, e.useEventStreamMap, e.useEventsGetEventClipUrl, e.useEventsGetEventThumbnail, e.useEventsGetEvents, e.useFaceGalleryAssignFace, e.useFaceGalleryAssignFaces, e.useFaceGalleryCreateIdentity, e.useFaceGalleryDeleteFace, e.useFaceGalleryDeleteIdentity, e.useFaceGalleryGetFaceByTrack, e.useFaceGalleryGetFaceMedia, e.useFaceGalleryListIdentities, e.useFaceGalleryListIdentitySamples, e.useFaceGalleryListRecentFaces, e.useFaceGalleryRemoveSample, e.useFaceGalleryRenameIdentity, e.useFaceGallerySuggestFaceClusters, e.useFaceGalleryUnassignFace, e.useFaceGalleryUnassignFaces, e.useFanControlGetStatus, e.useFanControlSetDirection, e.useFanControlSetOscillating, e.useFanControlSetPercentage, e.useFanControlSetPreset, e.useFeatureProbeGetStatus, e.useFloodGetStatus, e.useGasGetStatus, e.useHumidifierGetStatus, e.useHumidifierSetMode, e.useHumidifierSetOn, e.useHumidifierSetTargetHumidity, e.useHumiditySensorGetStatus, e.useImageGetStatus, e.useIntegrationsCreate, e.useIntegrationsDelete, e.useIntegrationsGet, e.useIntegrationsGetAvailableTypes, e.useIntegrationsGetByAddonId, e.useIntegrationsGetSettings, e.useIntegrationsList, e.useIntegrationsSetSettings, e.useIntegrationsTestConnection, e.useIntegrationsUpdate, e.useIntercomEndTalkSession, e.useIntercomGetStatus, e.useIntercomHandleAnswer, e.useIntercomPushTalkAudio, e.useIntercomStartSession, e.useIntercomStartTalkSession, e.useIntercomStopSession, e.useIsMidWidth, e.useIsMobile, e.useLawnMowerControlDock, e.useLawnMowerControlGetStatus, e.useLawnMowerControlPause, e.useLawnMowerControlStartMowing, e.useLiveBuffer, e.useLiveEvent, e.useLocalNetworkGetAllowedAddresses, e.useLocalNetworkGetConnectionEndpoints, e.useLocalNetworkGetPreferred, e.useLocalNetworkList, e.useLocalNetworkResetAllowlistToBestMatch, e.useLocalNetworkSetAllowedAddresses, e.useLockControlGetStatus, e.useLockControlLock, e.useLockControlOpen, e.useLockControlUnlock, e.useMediaPlayerGetStatus, e.useMediaPlayerNext, e.useMediaPlayerPause, e.useMediaPlayerPlay, e.useMediaPlayerPlayMedia, e.useMediaPlayerPrevious, e.useMediaPlayerSeek, e.useMediaPlayerSelectSource, e.useMediaPlayerSetMute, e.useMediaPlayerSetRepeat, e.useMediaPlayerSetShuffle, e.useMediaPlayerSetVolume, e.useMediaPlayerStop, e.useMeshNetworkGetStatus, e.useMeshNetworkJoin, e.useMeshNetworkLeave, e.useMeshNetworkListPeers, e.useMeshNetworkLogout, e.useMeshNetworkStartLogin, e.useMeshNetworkTestConnection, e.useMetricsProviderCollectSnapshot, e.useMetricsProviderGetAddonStats, e.useMetricsProviderGetCached, e.useMetricsProviderGetCpuTemperature, e.useMetricsProviderGetCurrent, e.useMetricsProviderGetDiskSpace, e.useMetricsProviderGetGpuInfo, e.useMetricsProviderGetProcessStats, e.useMetricsProviderKillProcess, e.useMetricsProviderListAddonInstances, e.useMetricsProviderListNodeProcesses, e.useMotionDetectionAnalyze, e.useMotionDetectionApplyDeviceSettingsPatch, e.useMotionDetectionGetDeviceLiveContribution, e.useMotionDetectionGetDeviceSettingsContribution, e.useMotionDetectionRemoveCamera, e.useMotionDetectionReset, e.useMotionGetStatus, e.useMotionIsDetected, e.useMotionTriggerGetStatus, e.useMotionTriggerSetMotionTrigger, e.useMotionZonesGetOptions, e.useMotionZonesGetStatus, e.useMotionZonesSetZone, e.useMqttBrokerAddBroker, e.useMqttBrokerGetBrokerConfig, e.useMqttBrokerGetStatus, e.useMqttBrokerListBrokers, e.useMqttBrokerRemoveBroker, e.useMqttBrokerStartEmbeddedBroker, e.useMqttBrokerStopEmbeddedBroker, e.useMqttBrokerTestConnection, e.useNativeObjectDetectionGetStatus, e.useNativeObjectDetectionSetEnabled, e.useNetworkAccessGetEndpoint, e.useNetworkAccessGetStatus, e.useNetworkAccessListEndpoints, e.useNetworkAccessStart, e.useNetworkAccessStop, e.useNetworkQualityGetAllStats, e.useNetworkQualityGetDeviceStats, e.useNetworkQualityReportClientStats, e.useNodesClusterAddonStatus, e.useNodesDeployAddon, e.useNodesExecuteQuery, e.useNodesGetCapUsageGraph, e.useNodesGetNodeAddons, e.useNodesRenameNode, e.useNodesRestartAddon, e.useNodesRestartNode, e.useNodesRestartProcess, e.useNodesSetProcessLogLevel, e.useNodesShutdownNode, e.useNodesTopology, e.useNodesUndeployAddon, e.useNotificationOutputSend, e.useNotificationOutputSendTest, e.useNotifierCancel, e.useNotifierGetStatus, e.useNotifierSend, e.useNumericSensorGetStatus, e.useOptimisticSlice, e.useOptionalSystem, e.useOptionalWidgetRegistry, e.useOsdGetStatus, e.useOsdSetOverlay, e.usePTZ, e.usePipelineAnalyticsApplyDeviceSettingsPatch, e.usePipelineAnalyticsClearTracks, e.usePipelineAnalyticsGetActiveTracks, e.usePipelineAnalyticsGetAudioEvents, e.usePipelineAnalyticsGetDeviceLiveContribution, e.usePipelineAnalyticsGetDeviceSettingsContribution, e.usePipelineAnalyticsGetEventDensity, e.usePipelineAnalyticsGetEventMedia, e.usePipelineAnalyticsGetMotionEvents, e.usePipelineAnalyticsGetObjectEvents, e.usePipelineAnalyticsGetTrack, e.usePipelineAnalyticsGetTrackMedia, e.usePipelineAnalyticsListTracks, e.usePipelineAnalyticsPruneEventsBefore, e.usePipelineExecutorCacheFrameInPool, e.usePipelineExecutorDeleteModel, e.usePipelineExecutorDeleteTemplate, e.usePipelineExecutorDetect, e.usePipelineExecutorDownloadModel, e.usePipelineExecutorGetAddonModels, e.usePipelineExecutorGetAudioCapabilities, e.usePipelineExecutorGetAvailableEngines, e.usePipelineExecutorGetCapabilities, e.usePipelineExecutorGetDefaultSteps, e.usePipelineExecutorGetDetectionConfigSchema, e.usePipelineExecutorGetEffectiveTuning, e.usePipelineExecutorGetGlobalPipelineConfig, e.usePipelineExecutorGetGlobalSteps, e.usePipelineExecutorGetOrchestratorConfigSchema, e.usePipelineExecutorGetReferenceAudio, e.usePipelineExecutorGetReferenceAudioFiles, e.usePipelineExecutorGetReferenceImage, e.usePipelineExecutorGetSchema, e.usePipelineExecutorGetSelectedEngine, e.usePipelineExecutorGetVideoPipelineSteps, e.usePipelineExecutorInferCached, e.usePipelineExecutorKillEngine, e.usePipelineExecutorListLoadedEngines, e.usePipelineExecutorListReferenceImages, e.usePipelineExecutorListTemplates, e.usePipelineExecutorReprobeEngine, e.usePipelineExecutorRunAudioTest, e.usePipelineExecutorRunPipeline, e.usePipelineExecutorRunPipelineBatch, e.usePipelineExecutorSaveTemplate, e.usePipelineExecutorSetVideoPipelineSteps, e.usePipelineExecutorSpinEngine, e.usePipelineExecutorUncacheFrame, e.usePipelineExecutorUpdateTemplate, e.usePipelineOrchestratorApplyDeviceSettingsPatch, e.usePipelineOrchestratorAssignAudio, e.usePipelineOrchestratorAssignDecoder, e.usePipelineOrchestratorAssignPipeline, e.usePipelineOrchestratorDeleteTemplate, e.usePipelineOrchestratorGetAgentLoad, e.usePipelineOrchestratorGetAgentSettings, e.usePipelineOrchestratorGetAudioAssignment, e.usePipelineOrchestratorGetAudioAssignments, e.usePipelineOrchestratorGetAudioNodeLoad, e.usePipelineOrchestratorGetCameraMetrics, e.usePipelineOrchestratorGetCameraSettings, e.usePipelineOrchestratorGetCameraStepOverrides, e.usePipelineOrchestratorGetCapabilityBindings, e.usePipelineOrchestratorGetDecoderAssignment, e.usePipelineOrchestratorGetDecoderAssignments, e.usePipelineOrchestratorGetDeviceLiveContribution, e.usePipelineOrchestratorGetDeviceSettingsContribution, e.usePipelineOrchestratorGetGlobalMetrics, e.usePipelineOrchestratorGetPipelineAssignment, e.usePipelineOrchestratorGetPipelineAssignments, e.usePipelineOrchestratorListAgentSettings, e.usePipelineOrchestratorListTemplates, e.usePipelineOrchestratorRebalance, e.usePipelineOrchestratorRemoveAgentSettings, e.usePipelineOrchestratorResolvePipeline, e.usePipelineOrchestratorSaveTemplate, e.usePipelineOrchestratorSetAgentAddonDefaults, e.usePipelineOrchestratorSetCameraPipelineForAgent, e.usePipelineOrchestratorSetCameraStepOverride, e.usePipelineOrchestratorSetCameraStepToggle, e.usePipelineOrchestratorSetCapabilityBinding, e.usePipelineOrchestratorUnassignAudio, e.usePipelineOrchestratorUnassignDecoder, e.usePipelineOrchestratorUnassignPipeline, e.usePipelineOrchestratorUpdateTemplate, e.usePipelineRunnerAttachCamera, e.usePipelineRunnerDetachCamera, e.usePipelineRunnerGetAllCameraMetrics, e.usePipelineRunnerGetCameraMetrics, e.usePipelineRunnerGetLocalCameras, e.usePipelineRunnerGetLocalLoad, e.usePipelineRunnerGetLocalMetrics, e.usePipelineRunnerReportMotion, e.usePlateGalleryCorrectPlateText, e.usePlateGalleryDeletePlate, e.usePlateGalleryGetPlateByTrack, e.usePlateGalleryGetPlateMedia, e.usePlateGalleryListPlates, e.usePlateGallerySearchPlates, e.usePlateGallerySuggestPlateClusters, e.usePlayerOverlayLayer, e.usePlayerOverlayLayers, e.usePlayerToolbarButton, e.usePlayerToolbarButtons, e.usePowerMeterGetStatus, e.usePresenceGetStatus, e.usePressureSensorGetStatus, e.usePrivacyMaskGetOptions, e.usePrivacyMaskGetStatus, e.usePrivacyMaskSetMask, e.usePtzAutotrackGetSettings, e.usePtzAutotrackGetStatus, e.usePtzAutotrackSetEnabled, e.usePtzAutotrackSetSettings, e.usePtzContinuousMove, e.usePtzDeletePreset, e.usePtzGetOptions, e.usePtzGetPosition, e.usePtzGetPresets, e.usePtzGetStatus, e.usePtzGoHome, e.usePtzGoToPreset, e.usePtzMove, e.usePtzSavePreset, e.usePtzSetAutofocus, e.usePtzStop, e.useRebootReboot, e.useRecordingApplyDeviceSettingsPatch, e.useRecordingGetAvailability, e.useRecordingGetDaysWithRecordings, e.useRecordingGetDeviceConfig, e.useRecordingGetDeviceLiveContribution, e.useRecordingGetDeviceSettingsContribution, e.useRecordingGetPlaybackManifest, e.useRecordingGetStatus, e.useRecordingGetStorageUsage, e.useRecordingLocateSegment, e.useRecordingPruneFootage, e.useRecordingReadSegmentBytes, e.useRecordingRescanStorage, e.useRecordingSetDeviceConfig, e.useRemoteComponent, e.useScriptRunnerGetStatus, e.useScriptRunnerRun, e.useScriptRunnerStop, e.useSettingsStoreCount, e.useSettingsStoreDeclareCollection, e.useSettingsStoreDelete, e.useSettingsStoreGet, e.useSettingsStoreHistogram, e.useSettingsStoreInsert, e.useSettingsStoreIsEmpty, e.useSettingsStoreQuery, e.useSettingsStoreSet, e.useSettingsStoreUpdate, e.useSmokeGetStatus, e.useSnapshotApplyDeviceSettingsPatch, e.useSnapshotGetDeviceLiveContribution, e.useSnapshotGetDeviceSettingsContribution, e.useSnapshotGetSnapshot, e.useSnapshotGetStatus, e.useSnapshotInvalidateCache, e.useSnapshotProviderGetSnapshot, e.useSnapshotProviderSupportsDevice, e.useStorageAbortUpload, e.useStorageBeginDownload, e.useStorageBeginUpload, e.useStorageDelete, e.useStorageDeleteLocation, e.useStorageEndDownload, e.useStorageExists, e.useStorageFinalizeUpload, e.useStorageGetAvailableSpace, e.useStorageGetDefaultLocation, e.useStorageList, e.useStorageListLocationDeclarations, e.useStorageListLocations, e.useStorageListProviders, e.useStorageRead, e.useStorageReadChunk, e.useStorageResolve, e.useStorageTestConfig, e.useStorageTestLocation, e.useStorageUpsertLocation, e.useStorageWrite, e.useStorageWriteChunk, l = e.useStreamBrokerApplyDeviceSettingsPatch, e.useStreamBrokerAssignProfile, e.useStreamBrokerGetAllRtspEntries, e.useStreamBrokerGetBrokerStats, e.useStreamBrokerGetDeviceLiveContribution, u = e.useStreamBrokerGetDeviceSettingsContribution, e.useStreamBrokerGetPreBufferInfo, e.useStreamBrokerGetRtspEntry, e.useStreamBrokerGetRtspPort, e.useStreamBrokerGetStreamUrl, e.useStreamBrokerGetStreamWithCodec, e.useStreamBrokerIsRtspEnabled, d = e.useStreamBrokerKillClient, e.useStreamBrokerListAllCameraStreams, f = e.useStreamBrokerListAllProfileSlots, p = e.useStreamBrokerListClients, e.useStreamBrokerProbeStream, e.useStreamBrokerPublishCameraStream, e.useStreamBrokerPullAudioChunks, e.useStreamBrokerPullFrameHandles, e.useStreamBrokerRegenerateRtspToken, e.useStreamBrokerReleaseStreamWithCodec, e.useStreamBrokerRestartProfile, e.useStreamBrokerRetractCameraStream, e.useStreamBrokerSetPreBufferDuration, e.useStreamBrokerSetRtspEnabled, e.useStreamBrokerSubscribeAudioChunks, e.useStreamBrokerSubscribeFrames, e.useStreamBrokerUnassignProfile, e.useStreamBrokerUnsubscribeAudioChunks, e.useStreamBrokerUnsubscribeFrames, e.useStreamCatalogGetCatalog, e.useStreamParamsGetConfigSchema, e.useStreamParamsGetOptions, e.useStreamParamsGetStatus, e.useStreamParamsSetProfile, e.useSwitchGetStatus, e.useSwitchSetState, m = e.useSystem, e.useSystem$1, e.useSystemFeatureFlags, e.useSystemForceRetentionCleanup, e.useSystemGetRetentionConfig, e.useSystemHealth, e.useSystemInfo, e.useSystemMutation, e.useSystemNetworkAddresses, e.useSystemQuery, e.useSystemSetRetentionConfig, e.useTamperGetStatus, e.useTemperatureSensorGetStatus, e.useThemeMode, e.useToastOnToast, e.useTurnProviderGetTurnServers, e.useUpdateGetStatus, e.useUpdateInstallUpdate, e.useUserManagementConfirmTotp, e.useUserManagementCreateApiKey, e.useUserManagementCreateScopedToken, e.useUserManagementCreateUser, e.useUserManagementDeleteUser, e.useUserManagementDisableTotp, e.useUserManagementGetTotpStatus, e.useUserManagementListApiKeys, e.useUserManagementListOauthSessions, e.useUserManagementListScopedTokens, e.useUserManagementListUsers, e.useUserManagementOauthExchangeCode, e.useUserManagementOauthIssueCode, e.useUserManagementOauthRefresh, e.useUserManagementOauthVerifyAccessToken, e.useUserManagementResetPassword, e.useUserManagementRevokeApiKey, e.useUserManagementRevokeOauthSession, e.useUserManagementRevokeScopedToken, e.useUserManagementSetUserScopes, e.useUserManagementSetupTotp, e.useUserManagementUpdateUser, e.useUserManagementValidateApiKey, e.useUserManagementValidateCredentials, e.useUserManagementValidateScopedToken, e.useUserManagementVerifyTotp, e.useVacuumControlGetStatus, e.useVacuumControlLocate, e.useVacuumControlPause, e.useVacuumControlReturnToBase, e.useVacuumControlSetFanSpeed, e.useVacuumControlStart, e.useVacuumControlStop, e.useValveClose, e.useValveGetStatus, e.useValveOpen, e.useValveSetPosition, e.useValveStop, e.useVibrationGetStatus, e.useVideoclipsGetClipPlayback, e.useVideoclipsListClips, e.useVodPlayback, e.useWaterHeaterGetStatus, e.useWaterHeaterSetAway, e.useWaterHeaterSetOperationMode, e.useWaterHeaterSetTargetTemp, e.useWeatherGetStatus, e.useWebrtcSessionAddIceCandidate, e.useWebrtcSessionCloseSession, e.useWebrtcSessionCreateSession, e.useWebrtcSessionGetIceCandidates, e.useWebrtcSessionGetSessionState, e.useWebrtcSessionHandleAnswer, e.useWebrtcSessionHandleOffer, e.useWebrtcSessionHasAdaptiveBitrate, e.useWebrtcSessionListStreams, e.useWidget, e.useWidgetMetadata, e.useWidgetRegistry, e.useZoneAnalyticsGetCameraHistory, e.useZoneAnalyticsGetCurrentSnapshot, e.useZoneAnalyticsGetUnzonedHistory, e.useZoneAnalyticsGetZoneHistory, e.useZoneEditing, e.useZoneRulesListRules, e.useZoneRulesSetRules, e.useZonesAddZone, e.useZonesListZones, e.useZonesRemoveZone, e.useZonesUpdateZone, e.vacuumStateMeta, e.validateScopes, e.valveStateMeta, e.waterHeaterPhase, e.waterHeaterTint, e.weatherConditionMeta, e.weatherTint, e.default;
20
+ }, g = i.share["default:@camstack/ui-library"];
21
+ g === void 0 ? n.then(() => {
22
+ if (g = i.share["default:@camstack/ui-library"], g === void 0) throw Error("[Module Federation] Shared module @camstack/ui-library was imported before federation bootstrap finished.");
23
+ h(g);
24
+ }) : h(g);
25
+ //#endregion
26
+ export { l as a, f as c, c as i, p as l, o as n, u as o, s as r, d as s, a as t, m as u };
@@ -36,7 +36,7 @@ async function r() {
36
36
  }
37
37
  },
38
38
  "@camstack/types": {
39
- version: "1.0.1",
39
+ version: "1.0.3",
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.0.1",
48
+ version: "1.0.3",
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.0.1",
84
+ version: "1.0.3",
85
85
  scope: "default",
86
86
  shareConfig: {
87
87
  singleton: !0,
@@ -30,7 +30,7 @@ async function d(e) {
30
30
  }
31
31
  }
32
32
  async function f() {
33
- return l ||= d(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_stream_broker_widgets-qX99--rF.mjs")).catch((e) => {
33
+ return l ||= d(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_stream_broker_widgets-dGO6_Xee.mjs")).catch((e) => {
34
34
  throw l = void 0, e;
35
35
  }), l;
36
36
  }