@camstack/addon-pipeline 1.2.102 → 1.2.104

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 (52) hide show
  1. package/dist/{addon-utils-CLc6yHCN.js → addon-utils-DRbRzrDy.js} +1 -1
  2. package/dist/audio-analyzer/index.js +3 -3
  3. package/dist/audio-analyzer/index.mjs +2 -2
  4. package/dist/detection-pipeline/index.js +844 -110
  5. package/dist/detection-pipeline/index.mjs +842 -108
  6. package/dist/{dist-Ccmt3fGJ.mjs → dist-D9sltFoR.mjs} +230 -6
  7. package/dist/{dist-C11WuNUP.js → dist-gLAVhbvO.js} +247 -5
  8. package/dist/{event-loop-stall-monitor-OJrOMeuu.mjs → event-loop-stall-monitor-BS_lPX6H.mjs} +82 -88
  9. package/dist/{event-loop-stall-monitor-Cq_NeC4o.js → event-loop-stall-monitor-BUhYY39J.js} +82 -88
  10. package/dist/{lazy-sharp-RxUs6on_.js → lazy-sharp-OiAUva0g.js} +1 -1
  11. package/dist/motion-wasm/index.js +2 -2
  12. package/dist/motion-wasm/index.mjs +1 -1
  13. package/dist/pipeline-runner/index.js +8 -6
  14. package/dist/pipeline-runner/index.mjs +6 -4
  15. package/dist/{process-memory-DOjQ3MgC.js → process-memory-DY4RHcTj.js} +1 -1
  16. package/dist/{process-memory-D0zDmXLI.mjs → process-memory-Dw7-9jCI.mjs} +1 -1
  17. package/dist/recorder/index.js +660 -130
  18. package/dist/recorder/index.mjs +659 -129
  19. package/dist/remote-restream-BeHi78PZ.mjs +25 -0
  20. package/dist/remote-restream-CO36Sr30.js +36 -0
  21. package/dist/restream-intent-B4BXZra7.mjs +72 -0
  22. package/dist/{remote-restream-BYbAsgUf.js → restream-intent-Cv9x3jmu.js} +30 -30
  23. package/dist/session-decode/decode-worker-child.js +2 -2
  24. package/dist/session-decode/decode-worker-child.mjs +1 -1
  25. package/dist/stream-broker/_stub.js +1 -1
  26. package/dist/stream-broker/{_virtual_mf-localSharedImportMap___mfe_internal__addon_stream_broker_widgets-BdgcF1lL.mjs → _virtual_mf-localSharedImportMap___mfe_internal__addon_stream_broker_widgets-ZaqZ17-x.mjs} +3 -3
  27. package/dist/stream-broker/_virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-BnhMnnKV.mjs +26 -0
  28. package/dist/stream-broker/{hostInit-Da9wVA2r.mjs → hostInit-aZY81RnZ.mjs} +3 -3
  29. package/dist/stream-broker/index.js +628 -92
  30. package/dist/stream-broker/index.mjs +627 -91
  31. package/dist/stream-broker/remoteEntry.js +1 -1
  32. package/dist/{worker-protocol-DDpliBIW.mjs → worker-protocol-Bz7-sMZC.mjs} +1 -1
  33. package/dist/{worker-protocol-BePduZVV.js → worker-protocol-D_0q_4Le.js} +1 -1
  34. package/package.json +1 -1
  35. package/python/inference_pool.py +193 -1
  36. package/python/postprocessors/__init__.py +4 -0
  37. package/python/postprocessors/ctc.py +52 -0
  38. package/python/postprocessors/plate_slots.py +180 -0
  39. package/python/postprocessors/test_ctc.py +39 -0
  40. package/python/postprocessors/test_plate_slots.py +217 -0
  41. package/python/postprocessors/test_yolonas.py +83 -0
  42. package/python/postprocessors/yolonas.py +67 -0
  43. package/python/test_inference_pool_backpressure.py +6 -2
  44. package/python/test_inference_pool_coreml_cache.py +12 -4
  45. package/python/test_inference_pool_device_selection.py +12 -4
  46. package/python/test_inference_pool_layout.py +16 -5
  47. package/python/test_inference_pool_memstats.py +6 -2
  48. package/python/test_inference_pool_ov_ppp.py +12 -9
  49. package/python/test_inference_pool_preprocess.py +57 -0
  50. package/python/test_inference_pool_static_batch.py +426 -0
  51. package/dist/remote-restream-Ci7RXNGb.mjs +0 -66
  52. package/dist/stream-broker/_virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-DY31bUCj.mjs +0 -26
@@ -0,0 +1,426 @@
1
+ """Batch capability is a HARDWARE FACT, decided at load — never a setting.
2
+
3
+ Two layers are covered:
4
+
5
+ 1. The PURE derivation — `_ov_static_batch_required` (engine+device -> may the
6
+ graph keep a dynamic batch axis?) and `_static_batch_plan` (which inputs
7
+ have a pinnable dynamic BATCH axis, and which carry a dynamic axis that is
8
+ NOT the batch and therefore cannot be pinned). No OpenVINO import: these
9
+ run in a bare sandbox.
10
+
11
+ 2. The REAL reshape — when OpenVINO is installed the last class builds a tiny
12
+ ONNX graph with a dynamic first dimension, reads it as an OV model and runs
13
+ `_pin_batch_for_device` against an NPU-shaped target and a CPU one. NPU
14
+ must come back STATIC 1 (this is the compile that hung the hub live on
15
+ 2026-08-20: "Got negative shape dim bound: '-1'", then a load that never
16
+ completed), CPU must come back UNTOUCHED and still dynamic.
17
+
18
+ Run: /tmp/conv-venv/bin/python -m pytest test_inference_pool_static_batch.py -v
19
+ (or `python3 -m unittest test_inference_pool_static_batch -v` — the pure
20
+ classes run without OpenVINO; the OV class self-skips.)
21
+ """
22
+ from __future__ import annotations
23
+
24
+ import sys
25
+ import types
26
+ import unittest
27
+ from typing import Any
28
+
29
+ # ---------------------------------------------------------------------------
30
+ # Stub the heavy third-party imports ONLY when they are genuinely absent, and
31
+ # BEFORE importing inference_pool. A blind stub would shadow the REAL numpy the
32
+ # OpenVINO class below needs, so every stub is an ImportError fallback.
33
+ # ---------------------------------------------------------------------------
34
+
35
+ try: # pragma: no cover - environment-dependent
36
+ import numpy # noqa: F401
37
+ except ImportError: # pragma: no cover
38
+ _np = types.ModuleType("numpy")
39
+ _np.array = lambda seq, dtype=None: list(seq) # noqa: E731
40
+ _np.float32 = "float32"
41
+ sys.modules["numpy"] = _np
42
+
43
+ try: # pragma: no cover - environment-dependent
44
+ import PIL.Image # noqa: F401
45
+ except ImportError: # pragma: no cover
46
+ _pil = types.ModuleType("PIL")
47
+ _pil_image = types.ModuleType("PIL.Image")
48
+ _pil.Image = _pil_image
49
+ sys.modules["PIL"] = _pil
50
+ sys.modules["PIL.Image"] = _pil_image
51
+
52
+ try: # pragma: no cover - environment-dependent
53
+ import postprocessors # noqa: F401
54
+ except ImportError: # pragma: no cover
55
+ _pp = types.ModuleType("postprocessors")
56
+ _pp.POSTPROCESSORS = {}
57
+ sys.modules["postprocessors"] = _pp
58
+
59
+ from inference_pool import ( # noqa: E402
60
+ STATIC_BATCH_PIN,
61
+ _pin_batch_for_device,
62
+ _static_batch_plan,
63
+ _static_batch_required,
64
+ )
65
+
66
+
67
+ class StaticBatchRequiredTest(unittest.TestCase):
68
+ """The rule itself: which (engine, device) pairs refuse a dynamic shape.
69
+
70
+ ONE authority for every engine. Only the Intel NPU refuses, and it is not a
71
+ preference — the Level-Zero compiler rejects the graph outright, and because
72
+ a pool load failure is a retry loop rather than an error the caller sees,
73
+ getting this wrong looks like a busy pool, not a broken one.
74
+ """
75
+
76
+ def test_openvino_npu_requires_static_batch(self) -> None:
77
+ self.assertTrue(_static_batch_required("openvino", "NPU"))
78
+
79
+ def test_npu_with_index_suffix_requires_static_batch(self) -> None:
80
+ # OpenVINO enumerates multiple units as NPU.0 / NPU.1.
81
+ self.assertTrue(_static_batch_required("openvino", "NPU.0"))
82
+
83
+ def test_lowercase_and_padded_pin_is_still_the_npu(self) -> None:
84
+ self.assertTrue(_static_batch_required("openvino", " npu "))
85
+
86
+ def test_openvino_cpu_keeps_dynamic(self) -> None:
87
+ self.assertFalse(_static_batch_required("openvino", "CPU"))
88
+
89
+ def test_openvino_gpu_keeps_dynamic(self) -> None:
90
+ self.assertFalse(_static_batch_required("openvino", "GPU"))
91
+
92
+ def test_openvino_gpu_with_index_suffix_keeps_dynamic(self) -> None:
93
+ self.assertFalse(_static_batch_required("openvino", "GPU.1"))
94
+
95
+ def test_empty_device_keeps_dynamic(self) -> None:
96
+ # A missing device name must never silently pin a graph.
97
+ self.assertFalse(_static_batch_required("openvino", ""))
98
+
99
+ def test_onnxruntime_keeps_dynamic(self) -> None:
100
+ self.assertFalse(_static_batch_required("onnxruntime", "cuda"))
101
+ self.assertFalse(_static_batch_required("onnxruntime", "cpu"))
102
+
103
+ def test_coreml_keeps_dynamic(self) -> None:
104
+ # A RangeDim export is what the batched ANE dispatch path reads; the
105
+ # loader must never pin it away.
106
+ self.assertFalse(_static_batch_required("coreml", "ane"))
107
+ self.assertFalse(_static_batch_required("coreml", "all"))
108
+
109
+ def test_edgetpu_keeps_dynamic(self) -> None:
110
+ # A tflite/edgetpu graph is static by construction — nothing to pin.
111
+ self.assertFalse(_static_batch_required("edgetpu", "usb:0"))
112
+
113
+ def test_an_npu_named_device_on_another_engine_is_not_the_intel_npu(self) -> None:
114
+ # The rule is a PAIR. `coreml`'s Neural Engine is not Level Zero.
115
+ self.assertFalse(_static_batch_required("coreml", "npu"))
116
+
117
+
118
+ class StaticBatchPlanTest(unittest.TestCase):
119
+ """Which inputs get pinned, and which are honestly reported as unpinnable."""
120
+
121
+ def test_dynamic_batch_is_pinned_to_one(self) -> None:
122
+ plan, unpinnable = _static_batch_plan([[None, 64, 128, 3]])
123
+ self.assertEqual(plan, {0: [STATIC_BATCH_PIN, 64, 128, 3]})
124
+ self.assertEqual(unpinnable, [])
125
+
126
+ def test_already_static_graph_needs_no_reshape(self) -> None:
127
+ plan, unpinnable = _static_batch_plan([[1, 3, 640, 640]])
128
+ self.assertEqual(plan, {})
129
+ self.assertEqual(unpinnable, [])
130
+
131
+ def test_static_batch_greater_than_one_is_left_alone(self) -> None:
132
+ # An export that deliberately declares batch 4 is a static shape; the
133
+ # rule pins DYNAMIC axes, it does not renegotiate static ones.
134
+ plan, unpinnable = _static_batch_plan([[4, 3, 640, 640]])
135
+ self.assertEqual(plan, {})
136
+ self.assertEqual(unpinnable, [])
137
+
138
+ def test_dynamic_spatial_axis_cannot_be_pinned(self) -> None:
139
+ # A dynamic H/W has no value we are allowed to invent — report it so the
140
+ # compile failure below is explained rather than silent.
141
+ plan, unpinnable = _static_batch_plan([[None, 3, None, 640]])
142
+ self.assertEqual(plan, {})
143
+ self.assertEqual(unpinnable, [0])
144
+
145
+ def test_multi_input_pins_only_the_dynamic_ones(self) -> None:
146
+ plan, unpinnable = _static_batch_plan([
147
+ [1, 3, 640, 640],
148
+ [None, 3, 112, 112],
149
+ ])
150
+ self.assertEqual(plan, {1: [STATIC_BATCH_PIN, 3, 112, 112]})
151
+ self.assertEqual(unpinnable, [])
152
+
153
+ def test_unreadable_shape_is_not_guessed(self) -> None:
154
+ plan, unpinnable = _static_batch_plan([None])
155
+ self.assertEqual(plan, {})
156
+ self.assertEqual(unpinnable, [0])
157
+
158
+ def test_rank_one_dynamic_is_pinnable(self) -> None:
159
+ plan, unpinnable = _static_batch_plan([[None]])
160
+ self.assertEqual(plan, {0: [STATIC_BATCH_PIN]})
161
+ self.assertEqual(unpinnable, [])
162
+
163
+
164
+ def _dynamic_batch_ov_model(core, tmpdir: str):
165
+ """Build the smallest ONNX with a DYNAMIC first dim and read it as an OV
166
+ model. Mirrors what `ov.convert_model` produces from every dynamic-batch
167
+ export in this repo (`scripts/build-camstack-models.py`, and the
168
+ model-studio convert path)."""
169
+ import os
170
+
171
+ import onnx
172
+ from onnx import TensorProto, helper
173
+
174
+ inp = helper.make_tensor_value_info(
175
+ "input", TensorProto.FLOAT, ["batch", 4],
176
+ )
177
+ out = helper.make_tensor_value_info(
178
+ "output", TensorProto.FLOAT, ["batch", 4],
179
+ )
180
+ node = helper.make_node("Relu", ["input"], ["output"])
181
+ graph = helper.make_graph([node], "dyn", [inp], [out])
182
+ model = helper.make_model(
183
+ graph, opset_imports=[helper.make_operatorsetid("", 17)],
184
+ )
185
+ onnx.checker.check_model(model)
186
+ path = os.path.join(tmpdir, "dyn.onnx")
187
+ onnx.save(model, path)
188
+ return core.read_model(path), path
189
+
190
+
191
+ class OpenVinoReshapeTest(unittest.TestCase):
192
+ """The real thing: a dynamic-batch IR compiled for an NPU target.
193
+
194
+ This is the case that hung the hub. Without the load-time reshape the graph
195
+ reaches the Level-Zero compiler with a `-1` dim; with it, the model handed to
196
+ `compile_model` is static and the compile is a normal one.
197
+ """
198
+
199
+ @classmethod
200
+ def setUpClass(cls) -> None:
201
+ try:
202
+ import onnx # noqa: F401
203
+ import openvino # noqa: F401
204
+ except ImportError: # pragma: no cover - sandbox without the runtime
205
+ raise unittest.SkipTest("openvino/onnx not installed")
206
+
207
+ def test_dynamic_batch_is_reshaped_static_for_the_npu(self) -> None:
208
+ import tempfile
209
+
210
+ import openvino as ov
211
+
212
+ core = ov.Core()
213
+ with tempfile.TemporaryDirectory() as tmp:
214
+ model, path = _dynamic_batch_ov_model(core, tmp)
215
+ self.assertTrue(
216
+ model.input(0).get_partial_shape()[0].is_dynamic,
217
+ "fixture must start dynamic or the test proves nothing",
218
+ )
219
+ pinned = _pin_batch_for_device(core, model, path, "NPU")
220
+ shape = pinned.input(0).get_partial_shape()
221
+ self.assertTrue(shape[0].is_static)
222
+ self.assertEqual(shape[0].get_length(), STATIC_BATCH_PIN)
223
+ # Shape inference must have carried the pin to the OUTPUT too — the
224
+ # plate model carried the `-1` on both ends.
225
+ out_shape = pinned.output(0).get_partial_shape()
226
+ self.assertTrue(out_shape[0].is_static)
227
+ self.assertEqual(out_shape[0].get_length(), STATIC_BATCH_PIN)
228
+
229
+ def test_the_source_model_object_is_never_mutated(self) -> None:
230
+ # `Model.reshape` mutates in place, and on the PrePostProcessor path the
231
+ # compile loop REUSES the same object for the next candidate. If the pin
232
+ # leaked, a GPU fallback after a failed NPU attempt would silently
233
+ # compile the pinned graph.
234
+ import tempfile
235
+
236
+ import openvino as ov
237
+
238
+ core = ov.Core()
239
+ with tempfile.TemporaryDirectory() as tmp:
240
+ model, path = _dynamic_batch_ov_model(core, tmp)
241
+ pinned = _pin_batch_for_device(core, model, path, "NPU")
242
+ self.assertIsNot(pinned, model)
243
+ self.assertTrue(
244
+ model.input(0).get_partial_shape()[0].is_dynamic,
245
+ "the source the caller holds must still be dynamic",
246
+ )
247
+
248
+ def test_dynamic_batch_survives_on_cpu(self) -> None:
249
+ import tempfile
250
+
251
+ import openvino as ov
252
+
253
+ core = ov.Core()
254
+ with tempfile.TemporaryDirectory() as tmp:
255
+ model, path = _dynamic_batch_ov_model(core, tmp)
256
+ same = _pin_batch_for_device(core, model, path, "CPU")
257
+ self.assertIs(same, model, "CPU must get the source object untouched")
258
+ self.assertTrue(same.input(0).get_partial_shape()[0].is_dynamic)
259
+
260
+ def test_dynamic_batch_survives_on_gpu(self) -> None:
261
+ import tempfile
262
+
263
+ import openvino as ov
264
+
265
+ core = ov.Core()
266
+ with tempfile.TemporaryDirectory() as tmp:
267
+ model, path = _dynamic_batch_ov_model(core, tmp)
268
+ same = _pin_batch_for_device(core, model, path, "GPU")
269
+ self.assertTrue(same.input(0).get_partial_shape()[0].is_dynamic)
270
+
271
+ def test_a_path_source_is_read_and_pinned_for_the_npu(self) -> None:
272
+ # The non-PPP load path hands `compile_model` the IR PATH, not a model
273
+ # object. The pin has to work from either.
274
+ import tempfile
275
+
276
+ import openvino as ov
277
+
278
+ core = ov.Core()
279
+ with tempfile.TemporaryDirectory() as tmp:
280
+ _model, path = _dynamic_batch_ov_model(core, tmp)
281
+ pinned = _pin_batch_for_device(core, path, path, "NPU")
282
+ self.assertNotIsInstance(pinned, str)
283
+ shape = pinned.input(0).get_partial_shape()
284
+ self.assertTrue(shape[0].is_static)
285
+ self.assertEqual(shape[0].get_length(), STATIC_BATCH_PIN)
286
+
287
+ def test_a_path_source_is_left_a_path_on_cpu(self) -> None:
288
+ # No reshape needed => no wasted read_model; compile still takes the path.
289
+ import tempfile
290
+
291
+ import openvino as ov
292
+
293
+ core = ov.Core()
294
+ with tempfile.TemporaryDirectory() as tmp:
295
+ _model, path = _dynamic_batch_ov_model(core, tmp)
296
+ self.assertEqual(_pin_batch_for_device(core, path, path, "CPU"), path)
297
+
298
+ def test_an_already_static_graph_is_not_re_read_for_the_npu(self) -> None:
299
+ import os
300
+ import tempfile
301
+
302
+ import onnx
303
+ import openvino as ov
304
+ from onnx import TensorProto, helper
305
+
306
+ core = ov.Core()
307
+ with tempfile.TemporaryDirectory() as tmp:
308
+ inp = helper.make_tensor_value_info("input", TensorProto.FLOAT, [1, 4])
309
+ out = helper.make_tensor_value_info("output", TensorProto.FLOAT, [1, 4])
310
+ graph = helper.make_graph(
311
+ [helper.make_node("Relu", ["input"], ["output"])],
312
+ "static", [inp], [out],
313
+ )
314
+ model = helper.make_model(
315
+ graph, opset_imports=[helper.make_operatorsetid("", 17)],
316
+ )
317
+ path = os.path.join(tmp, "static.onnx")
318
+ onnx.save(model, path)
319
+ ov_model = core.read_model(path)
320
+ self.assertIs(_pin_batch_for_device(core, ov_model, path, "NPU"), ov_model)
321
+
322
+ def test_the_pinned_model_actually_compiles_on_cpu(self) -> None:
323
+ # End of the chain: a reshaped model is still a compilable model. (The
324
+ # NPU itself is not present on a dev machine — CPU proves the graph
325
+ # survived the reshape, the shape assertions above prove it is static.)
326
+ import tempfile
327
+
328
+ import numpy as np
329
+ import openvino as ov
330
+
331
+ core = ov.Core()
332
+ with tempfile.TemporaryDirectory() as tmp:
333
+ model, path = _dynamic_batch_ov_model(core, tmp)
334
+ pinned = _pin_batch_for_device(core, model, path, "NPU")
335
+ compiled = core.compile_model(pinned, device_name="CPU")
336
+ result = compiled(np.zeros((1, 4), dtype=np.float32))
337
+ self.assertEqual(list(result[compiled.output(0)].shape), [1, 4])
338
+
339
+
340
+ class _RecordingCore:
341
+ """A real `ov.Core` with `compile_model` intercepted: it records EXACTLY what
342
+ the loader handed the compiler, then compiles it for CPU so the rest of the
343
+ load path (outputs, properties, infer requests) runs for real.
344
+
345
+ This is the fake that cannot lie in the dangerous direction — it supplies
346
+ nothing, it only observes production's own argument.
347
+ """
348
+
349
+ def __init__(self, real: Any) -> None: # noqa: ANN401 - test double
350
+ self._real = real
351
+ self.compiled: list = []
352
+
353
+ def read_model(self, path: str) -> Any: # noqa: ANN401 - test double
354
+ return self._real.read_model(path)
355
+
356
+ def compile_model(self, source: Any, device_name: str, config: Any = None) -> Any: # noqa: ANN401
357
+ self.compiled.append((source, device_name))
358
+ return self._real.compile_model(source, device_name="CPU")
359
+
360
+
361
+ class LoadPathAppliesTheRuleTest(unittest.TestCase):
362
+ """The derivation has to happen AT THE LOAD, not merely be available.
363
+
364
+ Drives `_load_model`'s OpenVINO branch with an operator-pinned NPU device
365
+ and asserts the object that reached `compile_model` was static. Remove the
366
+ `_pin_batch_for_device` call from the compile loop and this goes red —
367
+ the helper tests above would stay green.
368
+ """
369
+
370
+ @classmethod
371
+ def setUpClass(cls) -> None:
372
+ try:
373
+ import onnx # noqa: F401
374
+ import openvino # noqa: F401
375
+ except ImportError: # pragma: no cover - sandbox without the runtime
376
+ raise unittest.SkipTest("openvino/onnx not installed")
377
+
378
+ def _load_with_pinned_device(self, device: str) -> tuple:
379
+ import tempfile
380
+
381
+ import openvino as ov
382
+
383
+ import inference_pool as ip
384
+
385
+ core = ov.Core()
386
+ saved = (ip._runtime, ip._runtime_lib, ip._OV_PPP_ENABLED, ip._OV_ASYNC_ENABLED)
387
+ with tempfile.TemporaryDirectory() as tmp:
388
+ _model, path = _dynamic_batch_ov_model(core, tmp)
389
+ recording = _RecordingCore(core)
390
+ ip._runtime = "openvino"
391
+ ip._runtime_lib = recording
392
+ # PPP folds a uint8 NHWC preprocessor into image graphs; this 2-D
393
+ # fixture is not one, and disabling it keeps the test on the plain
394
+ # path where `compile_source` is the PATH — the harder case.
395
+ ip._OV_PPP_ENABLED = False
396
+ ip._OV_ASYNC_ENABLED = False
397
+ try:
398
+ slot = ip.ModelSlot()
399
+ ip._load_model(slot, {"path": path, "device": device})
400
+ finally:
401
+ (ip._runtime, ip._runtime_lib,
402
+ ip._OV_PPP_ENABLED, ip._OV_ASYNC_ENABLED) = saved
403
+ self.assertTrue(slot.loaded)
404
+ self.assertEqual(len(recording.compiled), 1)
405
+ return recording.compiled[0]
406
+
407
+ def test_npu_pin_reaches_the_compiler_static(self) -> None:
408
+ source, device = self._load_with_pinned_device("NPU")
409
+ self.assertEqual(device, "NPU")
410
+ self.assertNotIsInstance(
411
+ source, str, "the NPU must be handed a reshaped model, not the raw IR path",
412
+ )
413
+ shape = source.input(0).get_partial_shape()
414
+ self.assertTrue(shape[0].is_static)
415
+ self.assertEqual(shape[0].get_length(), STATIC_BATCH_PIN)
416
+
417
+ def test_gpu_pin_reaches_the_compiler_untouched(self) -> None:
418
+ source, device = self._load_with_pinned_device("GPU")
419
+ self.assertEqual(device, "GPU")
420
+ self.assertIsInstance(
421
+ source, str, "a target that accepts dynamic dims gets the path as before",
422
+ )
423
+
424
+
425
+ if __name__ == "__main__":
426
+ unittest.main()
@@ -1,66 +0,0 @@
1
- /**
2
- * Path suffix for the audio-free variant dialed by a DETECTION decode session.
3
- * Muted in every respect (no audio, still `isMuted()`), plus exempt from the
4
- * live-edge join withhold.
5
- */
6
- var DETECTION_MUTED_PATH_SUFFIX = "/muted-detection";
7
- /**
8
- * Split a restream request path (already stripped of `rtsp://host:port/` and of
9
- * any `/trackID=N` control suffix) into its token, mute bit and intent.
10
- */
11
- function parseRestreamPath(streamPath) {
12
- if (streamPath.endsWith("/muted-detection")) return {
13
- lookupPath: streamPath.slice(0, -16),
14
- muted: true,
15
- intent: "detection"
16
- };
17
- if (streamPath.endsWith("/muted")) return {
18
- lookupPath: streamPath.slice(0, -6),
19
- muted: true,
20
- intent: null
21
- };
22
- return {
23
- lookupPath: streamPath,
24
- muted: false,
25
- intent: null
26
- };
27
- }
28
- /**
29
- * Rewrite an acquired restream URL to declare the detection intent.
30
- *
31
- * Only a MUTED url is rewritten. `resolveSourceUrl` falls back to the
32
- * audio-bearing url when the broker has no muted variant; that session is not
33
- * muted, the live-edge withhold never applied to it, and appending the suffix
34
- * would only break the token lookup. Idempotent.
35
- */
36
- function withDetectionIntent(restreamUrl) {
37
- if (restreamUrl.endsWith("/muted-detection")) return restreamUrl;
38
- if (!restreamUrl.endsWith("/muted")) return restreamUrl;
39
- return `${restreamUrl.slice(0, -6)}${DETECTION_MUTED_PATH_SUFFIX}`;
40
- }
41
- //#endregion
42
- //#region src/pipeline-runner/remote-restream.ts
43
- /**
44
- * Runner-side mode selection (pure): whether an attach payload routes this
45
- * camera through the remote-source leg. Absent `frameSource` (a pre-P2c
46
- * payload) and `local-broker` both take the co-located broker path.
47
- */
48
- function isRemoteRestream(frameSource) {
49
- return frameSource !== void 0 && frameSource.kind === "remote-restream";
50
- }
51
- /**
52
- * Resolve WHICH broker profile a camStream id feeds for a device (pure).
53
- *
54
- * `getStreamWithCodec` targets a PROFILE (its assigned camStream), while the
55
- * runner is dispatched with camStream ids (`motionStreamId` /
56
- * `detectionStreamId`). The broker's profile slots carry the mapping
57
- * (`sourceCamStreamId`); a stream no slot feeds returns `null` — the acquire
58
- * fails fast and the caller's backoff retries (the assignment may still be
59
- * propagating).
60
- */
61
- function profileForStreamId(slots, deviceId, streamId) {
62
- for (const slot of slots) if (slot.deviceId === deviceId && slot.sourceCamStreamId === streamId) return slot.profile;
63
- return null;
64
- }
65
- //#endregion
66
- export { withDetectionIntent as i, profileForStreamId as n, parseRestreamPath as r, isRemoteRestream as t };
@@ -1,26 +0,0 @@
1
- //#region \0virtual:mf:__mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_types__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 = (e) => {
19
- e.ACCESSORY_LABEL, e.ACCESS_ROLES, e.ALEXA_EGRESS_PROFILE, e.ALL_CAPABILITY_DEFINITIONS, e.APPLE_SA_TO_MACRO, e.AUDIO_ANALYSIS_CAP_NAME, e.AUDIO_BACKEND_CHOICES, e.AUDIO_MACRO_LABELS, e.AUDIO_PRESETS, e.AccessoriesStatusSchema, e.AccessoryKind, e.AddBrokerInputSchema, e.AddonAutoUpdateSchema, e.AddonListItemSchema, e.AddonPageDeclarationSchema, e.AddonPageInfoSchema, e.AdoptionAdoptInputSchema, e.AdoptionAdoptResultSchema, e.AdoptionCandidateResultSchema, e.AdoptionFilterSchema, e.AdoptionGetCandidateInputSchema, e.AdoptionJobSchema, e.AdoptionJobStateSchema, e.AdoptionListCandidatesInputSchema, e.AdoptionListCandidatesOutputSchema, e.AdoptionOutcomeSchema, e.AdoptionReleaseInputSchema, e.AdoptionStatusSchema, e.AgentLoadSummarySchema, e.AirQualitySensorStatusSchema, e.AlarmArmModeSchema, e.AlarmPanelStatusSchema, e.AlarmStateSchema, e.AlertSchema, e.AlertSeveritySchema, e.AlertSourceSchema, e.AlertStatusSchema, e.AmbientLightSensorStatusSchema, e.ApiKeyRecordSchema, e.ApiKeySummarySchema, e.ArchiveEntrySchema, e.ArchiveManifestSchema, e.AttachmentMediaTypeSchema, e.AttachmentSchema, e.AudioAnalysisResultSchema, e.AudioAnalysisSettingsSchema, e.AudioChunkInputSchema, e.AudioClassSummarySchema, e.AudioClassificationLabelSchema, e.AudioClassificationResultSchema, e.AudioCodecInfoSchema, e.AudioDecodeSessionConfigSchema, e.AudioEncodeSchema, e.AudioEncodeSessionConfigSchema, e.AudioEncodedChunkSchema, e.AudioEventSchema, e.AudioLevelSchema, e.AudioMetricsHistoryPointSchema, e.AudioMetricsHistorySchema, e.AudioMetricsSnapshotSchema, e.AudioPcmChunkSchema, e.AuthResultSchema, e.AutoUpdateSettingsSchema, e.AutomationActionSchema, e.AutomationConditionOperatorSchema, e.AutomationConditionSchema, e.AutomationControlStatusSchema, e.AutomationRecipeSchema, e.AutomationTriggerSchema, e.AvailableIntegrationTypeSchema, e.BACKEND_TO_FORMAT, e.BASE_LIVE_EGRESS_PROFILE, e.BATTERY_DEVICE_PROFILE, e.BATTERY_UNREACHABLE_AFTER_MS, e.BOOT_RECOVERY_BACKOFF_MS, e.BacklightModeSchema, e.BackupDestinationInfoSchema, e.BackupEntrySchema, e.BaseAddon, e.BaseDevice, e.BaseDeviceProvider, e.BatteryStatusSchema, e.BinaryStatusSchema, e.BoundingBoxSchema, e.BrightnessStatusSchema, e.BrokerAddInputSchema, e.BrokerAudioClientSchema, e.BrokerClientsSchema, e.BrokerConnectionDetailsSchema, e.BrokerConsumerAttributionSchema, e.BrokerConsumerKindSchema, e.BrokerDecodedClientSchema, e.BrokerEncodedClientSchema, e.BrokerGetStateInputSchema, e.BrokerInfoSchema, e.BrokerProviderInfoSchema, e.BrokerPublishInputSchema, e.BrokerRegistryStatusSchema, e.BrokerRtspClientSchema, e.BrokerStatsSchema, e.BrokerStatusEnum, e.BrokerStatusSchema, e.BrokerSubscribeInputSchema, e.BrokerSubscribeResultSchema, e.BrokerTestConnectionResultSchema, e.BrokerUnsubscribeInputSchema, e.CAMERA_SWITCH_CATALOG, e.CAMERA_SWITCH_ORDER, e.CAM_PROFILE_ORDER, e.CAPABILITY_NAMES, e.CAPABILITY_ROUTER_KEYS, e.CAP_NAMES_WITH_STATUS, e.CAP_NODE_PIN_CONTEXT_KEY, e.CAP_PROVIDER_KIND_MAP, e.COCO_80_LABELS, e.COCO_TO_MACRO, e.CONNECTION_TEST_TIMEOUT_MS, e.CORE_BLOCKS_ADDON_ID, e.CORE_BLOCK_ADDON_PREFIX, e.CamProfileSchema, e.CamStreamDescriptorSchema, e.CamStreamKindSchema, e.CamStreamResolutionSchema, e.CameraAssignmentStatusSchema, e.CameraAudioStatusSchema, e.CameraBrokerProfileSchema, e.CameraBrokerStatusSchema, e.CameraCredentialsSchema, e.CameraCredentialsStatusSchema, e.CameraDecoderShmSchema, e.CameraDecoderStatusSchema, e.CameraDetectionPhaseSchema, e.CameraDetectionProvisioningSchema, e.CameraDetectionProvisioningStateSchema, e.CameraDetectionStatusSchema, e.CameraMetricsSchema, e.CameraMetricsWithDeviceIdSchema, e.CameraMotionStatusSchema, e.CameraRecordingModeSchema, e.CameraRecordingStatusSchema, e.CameraSourceStatusSchema, e.CameraSourceStreamSchema, e.CameraStatusDegradationReasonSchema, e.CameraStatusDegradationSchema, e.CameraStatusSchema, e.CameraStatusStageSchema, e.CameraStreamSchema, e.CameraSwitchAuthoritySchema, e.CameraSwitchGroupSchema, e.CameraSwitchIdSchema, e.CameraSwitchSchema, e.CameraSwitchUnavailableReasonSchema, e.CandidateQueryFilterSchema, e.CapScopeSchema, e.CapabilityBindingsSchema, e.CarbonMonoxideStatusSchema, e.ChargingStatus, e.ClientNetworkStatsSchema, e.ClimateControlStatusSchema, e.ClipPlaybackSchema, e.ClipSchema, e.ClusterAddonNodeDeploymentSchema, e.ClusterAddonStatusEntrySchema, e.CollectionColumnSchema, e.CollectionIndexSchema, e.ColorStatusSchema, e.ConfigEntrySchema, e.ConfigSectionWithValuesSchema, e.ConfigTabDeclarationSchema, e.ConnectionTestDescriptorSchema, e.ConnectionTestInputSchema, e.ConnectionTestOutcomeSchema, e.ConnectivityStatusSchema, e.ConsumableItemSchema, e.ConsumablesStatusSchema, e.ContactStatusSchema, e.ControlKindSchema, e.ControlStatusSchema, e.ConvertArtifactSchema, e.ConvertResultSchema, e.ConvertTargetSchema, e.CoreBlockCompileResultSchema, e.CoreBlockInputSchema, e.CoreBlockPlacementSchema, e.CoreBlockSchema, e.CoreBlockStatusSchema, e.CoverStateSchema, e.CoverStatusSchema, e.CreateApiKeyInputSchema, e.CreateApiKeyResultSchema, e.CreateIntegrationInputSchema, e.CreateScopedTokenInputSchema, e.CreateScopedTokenResultSchema, e.CreateUserInputSchema, e.CustomActionInputSchema, e.CustomModelDescriptorSchema, e.DATAPLANE_SECRET_HEADER, e.DECLARED_DEVICE_SWEEP_LIMIT, e.DECLARED_INTEGRATION_FIXED_KEY, e.DEFAULT_ADDON_PLACEMENT, e.DEFAULT_AUDIO_ANALYZER_CONFIG, e.DEFAULT_DECODER_HWACCEL_CONFIG, e.DEFAULT_DETAIL_CROP_CONVENTION, e.DEFAULT_EVENTS_BAND_BUFFER_SEC, e.DEFAULT_EVENT_COLOR, e.DEFAULT_FEATURES, e.DEFAULT_NATIVE_LEASE_SETTINGS, e.DEFAULT_POOL_MEMORY_POLICY, e.DEFAULT_RECORDING_PROFILES, e.DEFAULT_RETENTION, e.DEFAULT_RUNTIME_STATE_DURABILITY, e.DEFAULT_SCRUB_THUMBNAIL_PRESET, e.DEFAULT_TIMELAPSE_PREVIEW_TEXT, e.DETAIL_CROP_PADDING_FIELD, e.DETAIL_CROP_PADDING_KEY, e.DETAIL_CROP_SECTION_ID, e.DETAIL_CROP_SQUARE_KEY, e.DETECTION_MACRO_CLASSES, e.DETECTION_PIPELINE_CAP_NAME, e.DEVICE_BACKEND_TO_FORMAT, e.DEVICE_CAP_NAMES, e.DEVICE_PROFILES, e.DEVICE_SCOPED_CAPS, e.DEVICE_SETTINGS_CONTRIBUTION_METHODS, e.DEVICE_STATE_READERS, e.DEVICE_STATUS_METHOD, e.DEVICE_TYPE_CONTROL_KIND, e.DEVICE_TYPE_INFO, e.DataStoreEngineInfoSchema, e.DayNightModeSchema, e.DayNightOptionsSchema, e.DayNightSettingsPatchSchema, e.DayNightStatusSchema, e.DeclaredDevices, e.DecodedAudioChunkSchema, e.DecodedFrameSchema, e.DecoderSessionConfigSchema, e.DecoderStatsSchema, e.DeleteIntegrationResultSchema, e.DetailCropConventionSchema, e.DetectionSourceSchema, e.DeviceCodeSeveritySchema, e.DeviceConfig, e.DeviceDiscoveryStatusSchema, e.DeviceExportExposeInputSchema, e.DeviceExportStatusSchema, e.DeviceExportUnexposeInputSchema, e.DeviceFeature, e.DeviceInfoSchema, e.DeviceNetworkStatsSchema, e.DeviceRole, e.DeviceRuntimeState, e.DeviceSelectorSchema, e.DeviceStatusSchema, e.DeviceType, e.DiscoveredChildDeviceSchema, e.DiscoveredChildStatusSchema, e.DiscoveredDeviceSchema, e.DiscoveredTargetSchema, e.DiskReconcileJobSchema, e.DisposerChain, e.DoorbellPressEventSchema, e.DoorbellStatusSchema, e.EVENTFUL_CAP_NAMES, e.EVENT_KIND_BY_CAP, e.EVENT_PAD_MS, e.EVENT_TAXONOMY, e.EXPORT_DENSE_MAX_RANGES, e.EXPRESSION_BUILTINS, e.EXPRESSION_BUILTIN_NAMES, e.EXPRESSION_COMPILE_CACHE_CAPACITY, e.EXPRESSION_IDENTIFIER_RE, e.EXPRESSION_INJECTED_NOW, e.EgressEncodeSchema, e.EgressRateControlSchema, e.EgressTranscodeRequestSchema, e.EgressTranscodeSchema, e.ElementConfigStore, e.EmbeddingInfoSchema, e.EmbeddingResultSchema, e.EncodeProfileSchema, e.EncodedPacketSchema, e.EnrichedWidgetMetadataSchema, e.EnumSensorDateTimeFormatSchema, e.EnumSensorStatusSchema, e.EventCategory, e.EventEmitterStatusSchema, e.EventFireSchema, e.EventItemSchema, e.EventKindCategorySchema, e.EventKindDescriptorSchema, e.EventKindIconSchema, e.EventKindSchema, e.EventKindsForDeviceSchema, e.EventMediaArtifactSchema, e.EventMediaCoverageSchema, e.EventMediaKindSchema, e.EventMediaProductionSchema, e.EventSourceType, e.ExportBytesSchema, e.ExportDenseRangeSchema, e.ExportDenseSchema, e.ExportDownloadSchema, e.ExportOptionsSchema, e.ExportRecordSchema, e.ExportSetupFieldSchema, e.ExportSetupSchema, e.ExportSpeedSchema, e.ExportStateSchema, e.ExportTimelapseSchema, e.ExposedDeviceSchema, e.ExposureModeSchema, e.ExpressionBindingSourceSchema, e.ExpressionEvalError, e.ExpressionFieldBindingSchema, e.ExpressionGlobalBindingSchema, e.ExpressionLiteralBindingSchema, e.ExpressionParseError, e.ExpressionSourceSchema, e.FanControlStatusSchema, e.FanDirectionSchema, e.FeatureManifestSchema, e.FeatureProbeStatusSchema, e.FloodStatusSchema, e.Fmp4BoxSplitter, e.FrameHandleFormatSchema, e.FrameHandleSchema, e.FrameInputSchema, e.GasStatusSchema, e.GetStreamWithCodecInputSchema, e.GlobalMetricsSchema, e.HAP_AUDIO_BASE, e.HAP_AUDIO_BITRATE_KBPS, e.HAP_AUDIO_VBV_KBITS, e.HAP_KEYFRAME_INTERVAL_SEC, e.HF_BASE_URL, e.HF_REPO, e.HWACCEL_OPTIONS, e.HealthStatusSchema, e.HfModelResolutionSchema, e.HistoryPointSchema, e.HistoryResolutionEnum, e.HumidifierStatusSchema, e.HumiditySensorStatusSchema, e.HvacModeSchema, e.ImageContractSchema, e.ImageContractStateSchema, e.ImageRotateSchema, e.ImageSettingsOptionsSchema, e.ImageSettingsPatchSchema, e.ImageSettingsStatusSchema, e.ImageStatusSchema, e.IngestOwnerSchema, e.InstalledPackageSchema, e.IntegrationLiteSchema, e.IntegrationWithStateSchema, e.IntercomAbilitySchema, e.IntercomStatusSchema, e.KNOWN_CAP_NAMES, e.KeyEventSchema, e.LOG_LEVEL_RANK, e.LabelAttributionSchema, e.LabelDefinitionSchema, e.LabelTierSchema, e.LawnMowerActivitySchema, e.LawnMowerControlStatusSchema, e.LinkedDeviceSchema, e.LinkedDevicesModeSchema, e.LlmDefaultSchema, e.LlmDefaultSelectorSchema, e.LlmDownloadProgressSchema, e.LlmErrorCodeSchema, e.LlmGenerateBaseInputSchema, e.LlmGenerateErrSchema, e.LlmGenerateOkSchema, e.LlmGenerateResultSchema, e.LlmImageSchema, e.LlmNodeModelSchema, e.LlmProfileKindDescriptorSchema, e.LlmProfileKindSchema, e.LlmProfileSchema, e.LlmRetryPolicySchema, e.LlmRuntimeCompleteInputSchema, e.LlmRuntimeDiskUsageSchema, e.LlmRuntimeNodeSchema, e.LlmRuntimeStatusSchema, e.LlmTimeoutDefaults, e.LlmUsageRollupSchema, e.LlmUsageSchema, e.LocateSegmentResultSchema, e.LocationStatSchema, e.LockControlStatusSchema, e.LockStateSchema, e.LogEntrySchema, e.LogLevelSchema, e.LogStreamEntrySchema, e.LoginMethodContributionSchema, e.LoginStageEnum, e.MACRO_LABELS, e.MAX_CLIP_EVENT_IDS, e.MAX_CLIP_LABELS, e.MAX_CONDITION_DEPTH, e.MAX_CONDITION_LEAVES, e.MAX_EXPRESSION_AST_NODES, e.MAX_EXPRESSION_BINDINGS, e.MAX_EXPRESSION_CALL_ARGS, e.MAX_EXPRESSION_EVAL_STEPS, e.MAX_EXPRESSION_SOURCE_LENGTH, e.METHOD_ACCESS_MAP, e.METHOD_DEVICE_SELECTORS, e.MODEL_FORMATS, e.MOTION_TRIGGER_FEATURE, e.ManagedModelCatalogEntrySchema, e.ManagedModelExtraFileSchema, e.ManagedModelRefSchema, e.ManagedRuntimeConfigSchema, e.MaskGridDimsSchema, e.MaskGridShapeSchema, e.MaskLineShapeSchema, e.MaskPointSchema, e.MaskPolygonShapeSchema, e.MaskPolygonVerticesSchema, e.MaskRectShapeSchema, e.MaskShapeKindSchema, e.MaskShapeSchema, e.MediaFileInfoSchema, e.MediaFileSchema, e.MediaPlayerRepeatSchema, e.MediaPlayerStateSchema, e.MediaPlayerStatusSchema, e.MeshPeerSchema, e.MeshStatusSchema, e.MethodAccessSchema, e.ModelCatalogEntrySchema, e.ModelConvertInputSchema, e.ModelConvertMetadataSchema, e.ModelDistributeInputSchema, e.ModelDistributeResultSchema, e.ModelExtraFileSchema, e.ModelFormatEntrySchema, e.ModelFormatsSchema, e.ModelSubstitutionSchema, e.ModelVariantGroupSchema, e.MotionAnalysisResultSchema, e.MotionEventSchema, e.MotionOnMotionChangedDataSchema, e.MotionRegionSchema, e.MotionSourceEnum, e.MotionSourcesSchema, e.MotionStatusSchema, e.MotionTriggerRuntimeStateSchema, e.MotionTriggerStatusSchema, e.MotionZoneOptionsSchema, e.MotionZonePatchSchema, e.MotionZoneRegionSchema, e.MotionZoneStatusSchema, e.MqttBrokerStatusSchema, e.MutationFilterSchema, e.NATIVE_LEASE_ACTIVITY_FIELD, e.NATIVE_LEASE_ACTIVITY_KEY, e.NATIVE_LEASE_ADMISSION_FIELD, e.NATIVE_LEASE_ADMISSION_KEY, e.NATIVE_LEASE_BUDGET_FIELD, e.NATIVE_LEASE_BUDGET_KEY, e.NATIVE_LEASE_HOLD_FIELD, e.NATIVE_LEASE_HOLD_KEY, e.NATIVE_LEASE_SECTION_ID, e.NATIVE_LEASE_TILE_BUDGET_FIELD, e.NATIVE_LEASE_TILE_BUDGET_KEY, e.NC_ALARM_SYSTEM_EVENT_KINDS, e.NC_AUDIO_DBFS_FLOOR, e.NC_AUDIO_DB_MAX, e.NC_AUDIO_DB_MIN, e.NC_AUDIO_DB_OFFERED, e.NC_AUDIO_DB_STEP, e.NC_AUDIO_DEFAULTS, e.NC_AUDIO_HIT_PERCENT_MAX, e.NC_AUDIO_HIT_PERCENT_MIN, e.NC_AUDIO_SAMPLING_MAX_SEC, e.NC_AUDIO_SAMPLING_MIN_SEC, e.NC_AUDIO_SEED, e.NC_AUTHORABLE_SYSTEM_EVENT_KINDS, e.NC_BASE_CONDITION_KEYS, e.NC_CONDITION_CATALOG, e.NC_CONFIRM_DEFAULT_MAX_IMAGE_PX, e.NC_CONFIRM_DEFAULT_TIMEOUT_MS, e.NC_CONFIRM_MAX_TIMEOUT_MS, e.NC_CONFIRM_MIN_TIMEOUT_MS, e.NC_DEFAULT_SNOOZE_MINUTES, e.NC_HISTORY_LIMIT_DEFAULT, e.NC_HISTORY_LIMIT_MAX, e.NC_MAX_PER_TRACK_IMMEDIATE, e.NC_OCCUPANCY_DEFAULTS, e.NC_RULE_EDITOR_SECTION_ORDER, e.NC_RULE_KIND_SPECS, e.NC_RULE_SECTIONS, e.NC_SNOOZE_MAX_MINUTES, e.NC_SYSTEM_DELIVERY, e.NC_SYSTEM_EVENT_FILTER_KEYS, e.NC_TAXONOMY, e.NativeCropBboxSchema, e.NativeCropRefSchema, e.NativeCropResultSchema, e.NativeDetectionSchema, e.NativeLeaseAdmissionSchema, e.NativeLeaseSettingsSchema, e.NativeObjectClassEnum, e.NativeObjectDetectionRuntimeStateSchema, e.NativeObjectDetectionStatusSchema, e.NcAlarmConfigSchema, e.NcAlarmModeCoverageSchema, e.NcAlarmSettingsPatchSchema, e.NcAlarmSettingsSchema, e.NcAlarmSkipReasonSchema, e.NcAlarmSkippedDeviceSchema, e.NcAudioConditionSchema, e.NcConditionDescriptorSchema, e.NcConditionsSchema, e.NcConfirmExpectSchema, e.NcConfirmSchema, e.NcCrossingSchema, e.NcDeliverySchema, e.NcDeviceStateConditionSchema, e.NcHistoryEntrySchema, e.NcHistoryFilterSchema, e.NcHistoryRecordKindSchema, e.NcHistoryStatusSchema, e.NcHistorySubjectSchema, e.NcMediaFrameSchema, e.NcMediaPolicySchema, e.NcOccupancyConditionSchema, e.NcPlateMatcherSchema, e.NcRuleActionSchema, e.NcRuleActionSequenceSchema, e.NcRuleActionsSchema, e.NcRuleInputSchema, e.NcRuleNotificationButtonSchema, e.NcRulePatchSchema, e.NcRuleSchema, e.NcRuleTargetSchema, e.NcSceneConditionSchema, e.NcScheduleSchema, e.NcScheduleWindowSchema, e.NcSnoozeInputSchema, e.NcSnoozeSchema, e.NcSnoozeScopeSchema, e.NcSnoozeSuppressedSchema, e.NcSystemEventConditionSchema, e.NcSystemEventKindSchema, e.NcTaxonomyEntrySchema, e.NcTaxonomySchema, e.NcTestResultSchema, e.NcThrottleGranularitySchema, e.NcThrottleSchema, e.NcZoneConditionSchema, e.NetworkAccessStatusSchema, e.NetworkAddressSchema, e.NetworkEndpointSchema, e.NotificationActionIconSchema, e.NotificationActionSchema, e.NotificationFormatSchema, e.NotificationSchema, e.NotifierStatusSchema, e.NumericSensorStatusSchema, e.OPS_LOG_DEFAULT_LIMIT, e.OPS_LOG_RING_DEFAULT_MAX, e.OauthIntegrationDescriptorSchema, e.ObjectEventSchema, e.OpsLogDomainSchema, e.OpsLogEntrySchema, e.OpsLogOpSchema, e.OpsLogQueryInputSchema, e.OpsLogReasonSchema, e.OrchestratorMetricsSchema, e.OsdOverlayKindEnum, e.OsdOverlayPatchSchema, e.OsdOverlaySchema, e.OsdPositionEnum, e.OsdRenderOutcomeEnum, e.OsdRenderResultSchema, e.OsdSlotBindingSchema, e.OsdSlotViewSchema, e.OsdSourceOptionSchema, e.OsdSourceSchema, e.OsdSourceValueTypeEnum, e.OsdStatusSchema, e.PET_FEEDER_MANUAL_FEED_MAX, e.PET_FEEDER_MANUAL_FEED_MIN, e.PIPELINE_FLOW_CAPABILITY_NAMES, e.PIPELINE_OWNER_CAPABILITY_NAMES, e.PRIVACY_MASK_CAP_NAME, e.PROVIDER_KIND_CAP_NAMES, e.PYTHON_SCRIPT, e.PackageUpdateSchema, e.PackageVersionInfoSchema, e.PasskeyLoginMethodSchema, e.PasskeySummarySchema, e.PcmSampleFormatSchema, e.PerScopeBreakdownSchema, e.PetFeederStatusSchema, e.PickStreamPreferencesSchema, e.PickStreamRequirementsSchema, e.PickedCamStreamSchema, e.PipelineAssignmentSchema, e.PipelineDefaultStepSchema, e.PipelineEngineChoiceSchema, e.PipelineRunResultBridge, e.PipelineStepInputSchema, e.PipelineValidationIssueSchema, e.PipelineValidationResultSchema, e.PlaceholderReasonSchema, e.PolygonPointSchema, e.PoolMemoryWatchdog, e.PowerMeterStatusSchema, e.PresenceStatusSchema, e.PressureSensorStatusSchema, e.PrivacyMaskOptionsSchema, e.PrivacyMaskPatchSchema, e.PrivacyMaskRegionSchema, e.PrivacyMaskShapeSchema, e.PrivacyMaskStatusSchema, e.ProfileRtspEntrySchema, e.ProfileSlotSchema, e.ProfileSlotStatusSchema, e.ProviderStatusSchema, e.PtzAutotrackRuntimeStateSchema, e.PtzAutotrackSettingsSchema, e.PtzAutotrackStatusSchema, e.PtzAutotrackTargetOptionSchema, e.PtzMoveCommandSchema, e.PtzOptionsSchema, e.PtzPositionSchema, e.PtzPresetSchema, e.PtzStatusSchema, e.QueryFilterSchema, e.RATE_CONTROL_RELAXED, e.RATE_CONTROL_TIGHT, e.REACHABILITY_FAILURES_TO_OFFLINE, e.REACHABILITY_POLL_INTERVAL_MS, e.REACHABILITY_PROBE_TIMEOUT_MS, e.RECOGNITION_TYPES, e.RECORDING_EXPORT_MAX_READ_BYTES, e.RESERVED_BINDING_NAMES, e.RESTORED_CAP_NAMES, e.RUNTIME_DEFAULTS, e.RUNTIME_STATE_POLICY, e.RUNTIME_TO_FORMAT, e.RawStateResultSchema, e.ReadGopBytesResultSchema, e.ReadSegmentBytesResultSchema, e.ReadinessRegistry, e.ReadinessTimeoutError, e.RecentTracksPageSchema, e.RecentTracksQueryInput, e.RecordingAvailabilitySchema, e.RecordingBandModeSchema, e.RecordingBandSchema, e.RecordingBandTriggersSchema, e.RecordingConfigSchema, e.RecordingDaysSchema, e.RecordingDeviceUsageSchema, e.RecordingLocationUsageSchema, e.RecordingManifestSchema, e.RecordingRangeSchema, e.RecordingRebalanceInputSchema, e.RecordingRebalanceMoveSchema, e.RecordingRebalancePlanSchema, e.RecordingRebalanceSkipReasonSchema, e.RecordingRebalanceSkipSchema, e.RecordingRetentionSchema, e.RecordingStatusSchema, e.RecordingStorageModeSchema, e.RecordingStorageUsageSchema, e.RecordingTriggersSchema, e.RecordingWeekdaySchema, e.RedirectLoginMethodSchema, e.RelocateFootageClassSchema, e.RelocateFootageInputSchema, e.RelocateJobSchema, e.RelocateJobStateSchema, e.RelocateMediaInputSchema, e.RenderedAsSchema, e.ReportMotionInputSchema, e.RetrainAnnotationDraftSchema, e.RetrainAnnotationKindSchema, e.RetrainAnnotationSchema, e.RetrainAnnotationSourceSchema, e.RetrainAssistResultSchema, e.RetrainAssistSubjectSchema, e.RetrainCopyRefusalSchema, e.RetrainFrameCandidateSchema, e.RetrainFrameListSchema, e.RetrainFrameSchema, e.RetrainFrameSelectionSchema, e.RetrainMacroClassSchema, e.RetrainStatusSchema, e.RetrainTrackSchema, e.RetrainTransitionResultSchema, e.RingBuffer, e.RtpSourceSchema, e.RtspRestreamEntrySchema, e.RunnerCameraConfigSchema, e.RunnerCameraDeviceUIFields, e.RunnerFrameSourceSchema, e.RunnerInferenceDeviceSchema, e.RunnerLocalLoadSchema, e.RunnerLocalMetricsSchema, e.SCENE_CONDITIONS, e.SCENE_CONFIRM_DEFAULT_MAX_IMAGE_PX, e.SCENE_CONFIRM_DEFAULT_TIMEOUT_MS, e.SCENE_DEFAULT_ANCHOR_THRESHOLD, e.SCENE_DEFAULT_CHECK_INTERVAL_SEC, e.SCENE_DEFAULT_OBSERVATION_SPACING_SEC, e.SCENE_DEFAULT_QUIET_SECONDS, e.SCENE_DEFAULT_UNCOVERED_POLICY, e.SCENE_DIVERGED, e.SCENE_RESET_RECAPTURES, e.SCOPE_PRESETS, e.SCRUB_THUMBNAIL_PRESETS, e.SCRUB_THUMBNAIL_PRESET_LABELS, e.SCRUB_THUMBNAIL_PRESET_ORDER, e.SENSOR_FEATURES, e.SENSOR_MAP, e.SOURCE_INFO_METADATA_KEY, e.STREAM_PROFILE_META, e.STREAM_QUALITY_LABELS, e.SUB_DETECTION_TYPES, e.SYSTEM_CAP_NAMES, e.SYSTEM_SCOPE_DEVICE_METHODS, e.SceneCheckSchema, e.SceneConditionSchema, e.SceneConfirmSchema, e.SceneMonitorSchema, e.SceneMonitorStateSchema, e.SceneMonitorStatusSchema, e.SceneReferenceSchema, e.SceneUnavailableSchema, e.SceneUncoveredPolicySchema, e.SceneVerdictSchema, e.ScopedTokenSchema, e.ScopedTokenSummarySchema, e.ScoredObjectEventSchema, e.ScriptRunnerStatusSchema, e.ScrubThumbnailPresetSchema, e.SearchResultSchema, e.SendEmailInputSchema, e.SendEmailResultSchema, e.SendResultSchema, e.SensorEventSchema, e.ServerBootModeSchema, e.ServerPackageStatusSchema, e.ServerRollbackInfoSchema, e.ServerUpdateActionResultSchema, e.ServerUpdateCheckResultSchema, e.ServerUpdateStateSchema, e.SetSiteLocationInputSchema, e.SettingsPatchSchema, e.SettingsRecordSchema, e.SettingsSchemaWithValuesSchema, e.SettingsUpdateResultSchema, e.ShmRingStatsSchema, e.SiteLocationSchema, e.SiteLocationSourceSchema, e.SiteLocationStatusSchema, e.SmokeStatusSchema, e.SmtpStatusSchema, e.SnapshotImageSchema, e.SourceInfoSchema, e.SpatialDetectionSchema, e.SsoBridgeClaimsSchema, e.StartEmbeddedInputSchema, e.StationaryObjectSchema, e.StorageAbortUploadInputSchema, e.StorageBeginDownloadInputSchema, e.StorageBeginDownloadResultSchema, e.StorageBeginUploadInputSchema, e.StorageBeginUploadResultSchema, e.StorageEndDownloadInputSchema, e.StorageFinalizeUploadInputSchema, e.StorageLocationDeclarationSchema, e.StorageLocationRefSchema, e.StorageLocationSchema, e.StorageLocationTypeSchema, e.StorageMigrationClassSchema, e.StorageMigrationDestinationsSchema, e.StorageMigrationFootageMoveInputSchema, e.StorageMigrationInputSchema, e.StorageMigrationJobSchema, e.StorageMigrationLeaseInputSchema, e.StorageMigrationMediaMoveInputSchema, e.StorageMigrationMoveSchema, e.StorageMigrationParticipantSchema, e.StorageMigrationPhaseSchema, e.StorageMigrationPlanSchema, e.StorageProviderInfoSchema, e.StorageReadChunkInputSchema, e.StorageTestLocationResultSchema, e.StorageWriteChunkInputSchema, e.StreamCodecSchema, e.StreamFormatSchema, e.StreamNetworkStatsSchema, e.StreamParamsOptionsSchema, e.StreamParamsStatusSchema, e.StreamProfileConfigSchema, e.StreamProfileOptionsSchema, e.StreamProfilePatchSchema, e.StreamProfileSchema, e.StreamSourceEntrySchema, e.StreamSourceSchema, e.SubscribeAudioChunksInputSchema, e.SubscribeAudioChunksResultSchema, e.SubscribeFramesInputSchema, e.SubscribeFramesResultSchema, e.SwitchStatusSchema, e.SystemMetricsSchema, e.SystemMirror, e.TAXONOMY_COLORS, e.TIMELAPSE_DENSE_FLOOR_SEC, e.TIMEZONES, e.TRANSCODE_DOWN_MAX_BITRATE_KBPS, e.TRANSCODE_DOWN_MAX_HEIGHT, e.TamperStatusSchema, e.TankStatusSchema, e.TargetKindCapsSchema, e.TargetKindLevelSchema, e.TargetKindSchema, e.TargetSchema, e.TemperatureSensorStatusSchema, e.TerminalInstanceInfoSchema, e.TerminalLegacyCameraSchema, e.TerminalOutputBatchSchema, e.TerminalOutputEventSchema, e.TerminalProfileInfoSchema, e.TerminalSessionInfoSchema, e.TestConnectionResultSchema, e.TestConnectionStatusEnum, e.TestResultSchema, e.TimelapseRuleInputSchema, e.TimelapseRulePatchSchema, e.TimelapseRuleSchema, e.TimelapseTemplateSchema, e.ToastSchema, e.TokenScopeSchema, e.TopologyNodeSchema, e.TopologyProcessSchema, e.TopologyServiceSchema, e.TrackCascadeCountsSchema, e.TrackEnvelopeSchema, e.TrackFlagsPatchSchema, e.TrackFlagsSchema, e.TrackProjectionSchema, e.TrackSchema, e.TrackSourceSchema, e.TrackStateSchema, e.TrackZoneFilterSchema, e.TrackedDetectionSchema, e.TrainingExportDeviceTotalsSchema, e.TrainingExportSummarySchema, e.TurnServerSchema, e.UNIT_TABLE, e.UnifiedBrokerInfoSchema, e.UnitConversionError, e.UpdateIntegrationInputSchema, e.UpdateStatusSchema, e.UpdateUserInputSchema, e.UserRecordSchema, e.UserSummarySchema, e.VISIT_MERGE_GAP_MS, e.VacuumControlStatusSchema, e.VacuumStateSchema, e.ValveStateSchema, e.ValveStatusSchema, e.VectorDeclareIndexInputSchema, e.VectorDeleteByFilterInputSchema, e.VectorDeleteInputSchema, e.VectorDeleteResultSchema, e.VectorFilterSchema, e.VectorGetInputSchema, e.VectorGetResultSchema, e.VectorItemSchema, e.VectorMatchSchema, e.VectorMetadataSchema, e.VectorMetricSchema, e.VectorQueryInputSchema, e.VectorQueryResultSchema, e.VectorStatsInputSchema, e.VectorStatsResultSchema, e.VectorUpsertInputSchema, e.VectorUpsertResultSchema, e.VibrationStatusSchema, e.VideoEncodeSchema, e.WEBRTC_EGRESS_PROFILE, e.WELL_KNOWN_TABS, e.WELL_KNOWN_TAB_MAP, e.WaterHeaterStatusSchema, e.WeatherStatusSchema, e.WebrtcStreamChoiceSchema, e.WebrtcStreamTargetSchema, e.WhiteBalanceModeSchema, e.WidgetHostEnum, e.WidgetLoginMethodSchema, e.WidgetMetadataSchema, e.WidgetRemoteSchema, e.WidgetSizeEnum, e.YAMNET_TO_MACRO, e.ZoneCrossingDirectionSchema, e.ZoneCrossingSchema, e.ZoneKindEnum, e.ZoneRuleModeEnum, e.ZoneRuleSchema, e.ZoneRuleStageEnum, e.ZoneRulesArraySchema, e.ZoneSchema, e.ZoneScopeBreakdownSchema, e.accessoriesCapability, e.accessoryStableId, e.addonPagesCapability, e.addonPagesSourceCapability, e.addonRoutesCapability, e.addonSettingsCapability, e.addonWidgetsCapability, e.addonWidgetsSourceCapability, e.addonsCapability, e.adminUiCapability, e.airQualitySensorCapability, e.alarmPanelCapability, e.alertsCapability, e.ambientLightSensorCapability, e.asBoolean, e.asJsonArray, e.asJsonObject, e.asNumber, e.asString, e.assertTimelapseCadences, e.audioAnalysisCapability, e.audioAnalyzerCapability, e.audioCodecCapability, e.audioIsFailClosed, e.audioKindId, e.audioLabelChoices, e.audioMetricsCapability, e.audioModeOf, e.audioOrDefaults, e.audioPlanFromEncodeProfile, e.authProviderCapability, e.autoAssignProfiles, e.automationControlCapability, e.backupCapability, e.bareAddonId, e.batteryCapability, e.bestLocationMatch, e.binaryCapability, e.bindAddonActions, e.brightnessCapability, e.brokerCapability, e.buildAddonRouteProvider, e.buildAudioArgs, e.buildEventKindDescriptor, e.buildFfmpegArgs, e.buildInputArgs, e.buildModelVariantGroups, e.buildNcTaxonomy, e.buildRoleScopes, e.buildStreamParamsConfigSchema, e.buildVideoArgs, e.buttonCapability, e.cameraCredentialsCapability, e.cameraPipelineConfigCapability, e.cameraStreamsCapability, e.canConvertUnit, e.canonicalEgressPlan, e.carbonMonoxideCapability, e.cellsToRects, e.classifyBearerPrincipal, e.classifyStream, e.classifyStreams, e.climateControlCapability, e.collectHydratedFieldEntries, e.collectHydratedFieldValues, e.colorCapability, e.colorForKind, e.commitWatchdogRestart, e.compileExpression, e.compileExpressionSafe, e.composeSwitchedOff, e.conditionDepth, e.conditionExclusionReason, e.conditionVisibleForKind, e.connectionTestCapability, e.connectivityCapability, e.consumablesCapability, e.contactCapability, e.controlCapability, e.convertUnit, e.coreBlockAddonId, e.coreBlockIdFromAddonId, e.coreBlocksCapability, e.cosineSimilarity, e.countConditionLeaves, e.coverCapability, e.createDeviceProxy, e.createDurableState, e.createEvent, e.createExpressionScope, e.createHwAccelCache, e.createLazyTrpcSource, e.createMirrorSource, e.createRuntimeStateBridge, e.createSliceHandle, e.createSystemProxy, e.customAction, e.customModelRegistryCapability, e.dataStoreProviderCapability, e.dayNightCapability, e.declarationOwnerNodeId, e.decodeVectorBase64, e.decoderCapability, e.defaultDeliveryForSection, e.defaultDeviceFor, e.defineCustomActions, e.deriveBatteryPresence, e.deriveCameraSwitches, e.deriveDetailCropRect, e.deriveRecordingMode, e.describeModelVariant, e.detectAccessRole, e.detectionPipelineCapability, e.deviceAdoptionCapability, e.deviceBackendToFormat, e.deviceCustomAction, e.deviceDiscoveryCapability, e.deviceExportCapability, e.deviceManagerCapability, e.deviceMatchesProfile, e.deviceOpsCapability, e.deviceProviderCapability, e.deviceSelectorMatches, e.deviceStateCapability, e.deviceStatusCapability, e.doorbellCapability, e.droppedConditionsForKind, e.egressTranscodeSharingKey, e.egressTransportFromRequest, e.embeddingEncoderCapability, e.emitDownForOwnedCaps, e.emitReadiness, e.encodeProfileFromStreamShape, e.encodeVectorBase64, e.enumSensorCapability, e.enumerateInferenceDevices, e.enumerateItemArrayFields, e.enumerateSchemaFields, e.errMsg, e.evaluateAst, e.evaluateExpressionSource, e.evaluatePoolMemory, e.evaluateZoneRules, e.event, e.eventEmitterCapability, e.eventsCapability, e.expandCapMethods, e.extractNestedAddonId, e.extractSourceInfoFromMetadata, e.faceGalleryCapability, e.fanControlCapability, e.featureProbeCapability, e.filesystemBrowseCapability, e.findTimezone, e.floodCapability, e.formatForBackend, e.formatForRuntime, e.gasCapability, e.generateAutomationBlock, e.getAudioMacroClassIds, e.getByPath, e.getCapsByProviderKind, e.getTaxonomyEntry, e.hasMotionTrigger, e.hfModelUrl, e.htmlToText, e.humidifierCapability, e.humiditySensorCapability, e.hydrateSchema, e.imageCapability, e.imageSettingsCapability, e.initialPoolMemoryState, e.integrationsCapability, e.intercomCapability, e.invocationFromEncodeProfile, e.isAgentOnlyPlacement, e.isArrayOutputSchema, e.isAudioLabelSelected, e.isAudioRule, e.isBaseConditionKey, e.isBatteryPresenceFault, e.isCollectionArrayMethod, e.isDeployableToAgent, e.isDetectionMacroClass, e.isDeviceConfigCap, e.isDeviceScopedCap, e.isEvent, e.isIsolatedBuiltin, e.isNode, e.isObjectInput, e.isOccupancyRule, e.isRestoredCap, e.isSameAddonId, e.isScheduleActive, e.isSoftwareDecode, e.isSystemDelivery, e.isVoidInput, e.jobKindSchema, e.kebabToCamel, e.knownValues, e.lawnMowerControlCapability, e.lifecycleJobSchema, e.lifecycleJobScopeSchema, e.lifecycleJobStateSchema, e.lifecycleTaskSchema, e.llmCapability, e.llmRuntimeCapability, e.localNetworkCapability, e.locationSimilarity, e.lockControlCapability, e.logBannerArgs, e.logDestinationCapability, e.logLevelAtMost, e.loginMethodCapability, e.looseSchema, e.makeProfileBrokerId, a = e.makeSourceBrokerId, e.mapAudioLabelToMacro, e.markdownToHtmlLite, e.markdownToText, e.maskUrlCredentials, e.mediaPlayerCapability, e.mergeSourceInfo, e.meshNetworkCapability, e.method, e.methodAccessForHttpMethod, e.metricsProviderCapability, e.modelConvertCapability, e.modelDistributorCapability, e.modelFormatForRuntime, e.motionCapability, e.motionDetectionCapability, e.motionTriggerCapability, e.motionZonesCapability, e.mqttBrokerCapability, e.nativeObjectDetectionCapability, e.networkAccessCapability, e.networkQualityCapability, e.nodePin, e.nodesCapability, e.normalizeAddonInitResult, e.normalizeAudioLabel, e.normalizeTokenScopes, e.normalizeUnit, e.notificationOutputCapability, e.notificationRulesCapability, e.notifierCapability, e.numericSensorCapability, e.oauthIntegrationCapability, e.objectInputDeclaresAddonId, e.osdCapability, e.osdManagerCapability, e.parseCameraStreamConfig, e.parseExpression, e.parseJsonArray, e.parseJsonObject, e.parseJsonUnknown, e.parseProcStatus, e.parseProfileBrokerId, e.parseRuleSection, e.parseStreamParamsFormPatch, e.patchAudio, e.petFeederCapability, e.pickAccessoryControl, e.pickDetailCropConvention, e.pickNativeLeaseOverride, e.pickPreferredRtspEntry, e.pickRestartCandidate, e.pickVideoEncoder, e.pickerForCondition, e.pipelineAnalyticsCapability, e.pipelineExecutorCapability, e.pipelineOrchestratorCapability, e.pipelineRunnerCapability, e.plateGalleryCapability, e.platformProbeCapability, e.poolMemoryThreshold, e.powerMeterCapability, e.prepareNotification, e.presenceCapability, e.pressureSensorCapability, e.principalMayReachAddon, e.privacyMaskCapability, e.procedureAuthKey, e.ptzAutotrackCapability, e.ptzCapability, e.pythonScriptForBackend, e.readDetailCropConvention, e.readDeviceStateFrom, e.readNativeLeaseOverride, e.readNodePin, e.readTimelapseGeneratedAt, e.readinessKey, e.rebootCapability, e.recordingCapability, e.recordingExportCapability, e.rectsToCells, e.requiresPython, e.resetPoolBaseline, e.resolveAddonExecution, e.resolveAddonGroup, e.resolveAddonPlacement, e.resolveAddonRuntime, e.resolveCapMount, e.resolveDetectionRuntime, e.resolveDeviceControlKind, e.resolveDeviceProfile, e.resolveEgressDecodeHwAccel, e.resolveFormat, e.resolveHydratedFieldValue, e.resolveModelFormat, e.resolveMutate, e.resolvePoolMemoryPolicy, e.resolveRecordingProfiles, e.resolveRunnerId, e.resolveScrubThumbnailGeometry, e.resolveVariantModelId, e.resolveViewableDeviceIds, e.roleSpec, e.ruleEditorSectionsForKind, e.ruleKindOf, e.ruleKindSpec, e.ruleMatchesSection, e.ruleSection, e.ruleSectionOf, e.ruleSeedForSection, e.runInferenceStep, e.runtimeDevices, e.runtimeStatePolicyFor, e.sceneMonitorCapability, e.scopeInherits, e.scopeKey, e.scopesAllowAddon, e.scopesAllowDeviceCap, e.scoreRuntimes, e.scriptRunnerCapability, e.selectAssignedProfileSlots, e.serverManagementCapability, e.setByPath, e.settingsStoreCapability, e.sleep, e.sleepCancellable, e.smokeCapability, e.smtpProviderCapability, e.snapshotCapability, e.ssoBridgeCapability, e.startReachabilityPoll, e.stateVocabularyFor, e.storageCapability, e.storageEvictableCapability, e.storageMigrationCapability, e.storageProviderCapability, e.streamBrokerCapability, e.streamCatalogCapability, e.streamParamsCapability, e.streamPixels, e.streamQualityLabel, e.subKindsOf, e.summarisePrivacyAudio, e.summarizeEffectiveScope, e.supportedRuntimes, e.switchCapability, e.switchedOffIds, e.synthesizeSourceInfo, e.systemCapability, e.systemEventFilterApplies, e.systemEventFilterAppliesToAnyKind, e.tamperCapability, e.taskLogEntrySchema, e.taskPhaseSchema, e.taskTargetSchema, e.temperatureSensorCapability, e.terminalSessionCapability, e.textToHtml, e.toDeviceSummary, e.toExpressionValue, e.toNodeId, e.toStreamSourceEntry, e.toastCapability, e.toggleAudioLabel, e.tokenize, e.transcodeBody, e.tryConvertUnit, e.turnProviderCapability, e.unitDimension, e.unitsForDimension, e.updateCapability, e.userManagementCapability, e.userPasskeysCapability, e.vacuumControlCapability, e.validateExpressionSource, e.validateRecipeBounds, e.valveCapability, e.vectorDimFromBase64, e.vectorStoreCapability, e.vibrationCapability, e.videoclipsCapability, e.viewerUiCapability, e.waterHeaterCapability, e.weatherCapability, e.webrtcClientHintsSchema, e.webrtcSessionCapability, e.wiringAddonHealthSchema, e.wiringHealthSnapshotSchema, e.wiringNodeHealthSchema, e.wiringProbeKindSchema, e.wiringProbeResultSchema, e.zodEntriesToConfigUI, e.zoneAnalyticsCapability, e.zoneRulesCapability, e.zonesCapability, e.default;
20
- }, s = i.share["default:@camstack/types"];
21
- s === void 0 ? n.then(() => {
22
- if (s = i.share["default:@camstack/types"], s === void 0) throw Error("[Module Federation] Shared module @camstack/types was imported before federation bootstrap finished.");
23
- o(s);
24
- }) : o(s);
25
- //#endregion
26
- export { a as t };