@camstack/types 1.2.71 → 1.2.73

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  import { t as EventCategory } from "./event-category-Bxo5yJjt.mjs";
2
- import { $ as FrameHandleFormatSchema, A as isDeviceConfigCap, B as emitDownForOwnedCaps, C as DeviceType, Ct as WELL_KNOWN_TAB_MAP, D as DEVICE_STATUS_METHOD, Dt as resolveHydratedFieldValue, E as DEVICE_SETTINGS_CONTRIBUTION_METHODS, Et as hydrateSchema, F as nodePin, G as CAM_PROFILE_ORDER, H as scopeKey, I as readNodePin, J as CamStreamResolutionSchema, K as CamProfileSchema, L as toNodeId, M as resolveCapMount, N as systemMethod, O as event, P as CAP_NODE_PIN_CONTEXT_KEY, Q as EncodedPacketSchema, R as ReadinessRegistry, S as DeviceRole, St as WELL_KNOWN_TABS, T as DEFAULT_RUNTIME_STATE_DURABILITY, Tt as collectHydratedFieldValues, U as BrokerStatsSchema, V as readinessKey, W as BrokerStatusSchema, X as DecodedAudioChunkSchema, Y as CameraStreamSchema, Z as DecodedFrameSchema, _ as RawStateResultSchema, _t as normalizeAddonInitResult, a as asJsonObject, at as StreamSourceSchema, b as ChargingStatus, bt as emitReadiness, c as parseJsonArray, ct as SubscribeFramesInputSchema, d as DEVICE_SCOPED_CAPS, dt as makeSourceBrokerId, et as FrameHandleSchema, f as isDeviceScopedCap, ft as parseProfileBrokerId, g as createSliceHandle, gt as BaseAddon, h as createMirrorSource, ht as DisposerChain, i as asJsonArray, it as StreamSourceEntrySchema, j as method, k as expandCapMethods, l as parseJsonObject, lt as SubscribeFramesResultSchema, m as createLazyTrpcSource, mt as DATAPLANE_SECRET_HEADER, n as sleepCancellable, nt as ProfileSlotSchema, o as asNumber, ot as SubscribeAudioChunksInputSchema, p as createDeviceProxy, pt as selectAssignedProfileSlots, q as CamStreamKindSchema, r as asBoolean, rt as ProfileSlotStatusSchema, s as asString, st as SubscribeAudioChunksResultSchema, t as sleep, tt as ProfileRtspEntrySchema, u as parseJsonUnknown, ut as makeProfileBrokerId, v as deviceOpsCapability, vt as createDurableState, w as adminUiCapability, wt as collectHydratedFieldEntries, x as DeviceFeature, xt as isEvent, y as viewerUiCapability, yt as createEvent, z as ReadinessTimeoutError } from "./sleep-CTgUmjYq.mjs";
2
+ import { $ as FrameHandleFormatSchema, A as isDeviceConfigCap, B as emitDownForOwnedCaps, C as DeviceType, Ct as WELL_KNOWN_TAB_MAP, D as DEVICE_STATUS_METHOD, Dt as resolveHydratedFieldValue, E as DEVICE_SETTINGS_CONTRIBUTION_METHODS, Et as hydrateSchema, F as nodePin, G as CAM_PROFILE_ORDER, H as scopeKey, I as readNodePin, J as CamStreamResolutionSchema, K as CamProfileSchema, L as toNodeId, M as resolveCapMount, N as systemMethod, O as event, P as CAP_NODE_PIN_CONTEXT_KEY, Q as EncodedPacketSchema, R as ReadinessRegistry, S as DeviceRole, St as WELL_KNOWN_TABS, T as DEFAULT_RUNTIME_STATE_DURABILITY, Tt as collectHydratedFieldValues, U as BrokerStatsSchema, V as readinessKey, W as BrokerStatusSchema, X as DecodedAudioChunkSchema, Y as CameraStreamSchema, Z as DecodedFrameSchema, _ as RawStateResultSchema, _t as normalizeAddonInitResult, a as asJsonObject, at as StreamSourceSchema, b as ChargingStatus, bt as emitReadiness, c as parseJsonArray, ct as SubscribeFramesInputSchema, d as DEVICE_SCOPED_CAPS, dt as makeSourceBrokerId, et as FrameHandleSchema, f as isDeviceScopedCap, ft as parseProfileBrokerId, g as createSliceHandle, gt as BaseAddon, h as createMirrorSource, ht as DisposerChain, i as asJsonArray, it as StreamSourceEntrySchema, j as method, k as expandCapMethods, l as parseJsonObject, lt as SubscribeFramesResultSchema, m as createLazyTrpcSource, mt as DATAPLANE_SECRET_HEADER, n as sleepCancellable, nt as ProfileSlotSchema, o as asNumber, ot as SubscribeAudioChunksInputSchema, p as createDeviceProxy, pt as selectAssignedProfileSlots, q as CamStreamKindSchema, r as asBoolean, rt as ProfileSlotStatusSchema, s as asString, st as SubscribeAudioChunksResultSchema, t as sleep, tt as ProfileRtspEntrySchema, u as parseJsonUnknown, ut as makeProfileBrokerId, v as deviceOpsCapability, vt as createDurableState, w as adminUiCapability, wt as collectHydratedFieldEntries, x as DeviceFeature, xt as isEvent, y as viewerUiCapability, yt as createEvent, z as ReadinessTimeoutError } from "./sleep-CQayd2Su.mjs";
3
3
  import { a as buildAudioArgs, c as buildVideoArgs, d as logBannerArgs, f as pickVideoEncoder, i as audioPlanFromEncodeProfile, l as invocationFromEncodeProfile, n as Fmp4BoxSplitter, o as buildFfmpegArgs, r as AUDIO_PRESETS, s as buildInputArgs, t as canonicalHash, u as isSoftwareDecode } from "./canonical-hash-rO1sRmEK.mjs";
4
4
  import { EventSourceType } from "./enums.mjs";
5
5
  import { t as errMsg } from "./err-msg-IQTHeDzc.mjs";
@@ -9437,6 +9437,35 @@ var LlmImageSchema = z.object({
9437
9437
  bytes: z.instanceof(Uint8Array),
9438
9438
  mimeType: z.string()
9439
9439
  });
9440
+ /**
9441
+ * Retry policy. `enabled: false` is NOT the same as `maxAttempts: 1` in intent —
9442
+ * the flag is what a consumer table flips, the count is what the operator tunes.
9443
+ * A retry doubles the wall time of a call, so the two gates that run inside a
9444
+ * notification's budget keep it off (see `CONSUMER_RETRY_POLICY` in addon-ai).
9445
+ */
9446
+ var LlmRetryPolicySchema = z.object({
9447
+ enabled: z.boolean().default(false),
9448
+ /** Total attempts INCLUDING the first. 1 = no retry. */
9449
+ maxAttempts: z.number().int().min(1).max(5).default(1)
9450
+ });
9451
+ /**
9452
+ * The four bounds, as ONE vocabulary.
9453
+ *
9454
+ * These were three magic constants inside the test chat (`connect` 10 s,
9455
+ * `first token` 120 s, `idle` 60 s) plus a separate `timeoutMs` on the profile.
9456
+ * They are the same four questions on every call path, so they are profile
9457
+ * fields with defaults — and each still names a DIFFERENT failure:
9458
+ * - `connect` — the endpoint never accepted the request (port closed).
9459
+ * - `firstToken` — accepted, nothing produced yet (cold model loading).
9460
+ * - `idle` — tokens started then stopped (a stall, model proven up).
9461
+ * - `total` — the whole generation, the only bound a unary call has.
9462
+ */
9463
+ var LlmTimeoutDefaults = {
9464
+ totalMs: 6e4,
9465
+ connectMs: 1e4,
9466
+ firstTokenMs: 12e4,
9467
+ idleMs: 6e4
9468
+ };
9440
9469
  var LlmGenerateBaseInputSchema = z.object({
9441
9470
  /** Collection routing (the notification-output posture). */
9442
9471
  addonId: z.string().optional(),
@@ -9451,7 +9480,28 @@ var LlmGenerateBaseInputSchema = z.object({
9451
9480
  jsonSchema: z.record(z.string(), z.unknown()).optional(),
9452
9481
  /** Per-call override of the profile default. */
9453
9482
  maxTokens: z.number().int().positive().optional(),
9454
- temperature: z.number().optional()
9483
+ temperature: z.number().optional(),
9484
+ /** Per-call override of the profile default (nucleus sampling). */
9485
+ topP: z.number().min(0).max(1).optional(),
9486
+ /** Per-call override of the profile default (top-k sampling). */
9487
+ topK: z.number().int().positive().optional(),
9488
+ /** Per-call override of `profile.timeoutMs` — the total generation bound. */
9489
+ timeoutMs: z.number().int().positive().optional(),
9490
+ /** Per-call override; beats both the consumer table and the profile. */
9491
+ retry: LlmRetryPolicySchema.optional(),
9492
+ /**
9493
+ * Caller-minted id that makes this generation CANCELLABLE.
9494
+ *
9495
+ * Without it a caller that stops waiting cannot stop the work: the gates race
9496
+ * the call against 8 s and free their own slot when the timer wins, while the
9497
+ * generation upstream keeps running to `profile.timeoutMs` — 60 s by default,
9498
+ * on a single-threaded local model. The per-camera bound then counts WAITS,
9499
+ * not generations, and the real load is unbounded.
9500
+ *
9501
+ * `AbortSignal` cannot cross a process boundary; an id can. Pass one here and
9502
+ * `llm.cancel({ requestId })` tears the socket down.
9503
+ */
9504
+ requestId: z.string().optional()
9455
9505
  });
9456
9506
  //#endregion
9457
9507
  //#region src/capabilities/llm-runtime.cap.ts
@@ -9492,8 +9542,49 @@ var ManagedRuntimeConfigSchema = z.object({
9492
9542
  gpuLayers: z.number().int().default(0),
9493
9543
  /** Default: cpus-2, clamped ≥1 (resolved node-side). */
9494
9544
  threads: z.number().int().optional(),
9495
- /** Concurrent slots. */
9545
+ /** Concurrent slots (`--parallel`). */
9496
9546
  parallel: z.number().int().default(1),
9547
+ /** Logical batch size (`-b`). Larger = faster prompt ingest, more RAM. */
9548
+ batchSize: z.number().int().positive().optional(),
9549
+ /** Physical batch / micro-batch (`-ub`). */
9550
+ ubatchSize: z.number().int().positive().optional(),
9551
+ /**
9552
+ * `--flash-attn`. Cuts KV-cache memory on the backends that implement it and
9553
+ * is a no-op elsewhere, so it is offered rather than assumed.
9554
+ */
9555
+ flashAttention: z.boolean().default(false),
9556
+ /**
9557
+ * `--mlock`. Pins the weights in RAM so the OS cannot page them out mid
9558
+ * inference. Costs the full model size in resident memory — which is exactly
9559
+ * what the RAM budget is counting.
9560
+ */
9561
+ mlock: z.boolean().default(false),
9562
+ /**
9563
+ * `--no-mmap`. Reads the whole GGUF up front instead of mapping it. Slower to
9564
+ * start, but avoids the page-fault stalls a network or spinning-disk model
9565
+ * store produces on every first token.
9566
+ */
9567
+ noMmap: z.boolean().default(false),
9568
+ /** `--cache-type-k` / `--cache-type-v` — quantising the KV cache is the
9569
+ * cheapest way to fit a longer context in the same RAM. */
9570
+ cacheTypeK: z.enum([
9571
+ "f32",
9572
+ "f16",
9573
+ "q8_0",
9574
+ "q5_1",
9575
+ "q5_0",
9576
+ "q4_1",
9577
+ "q4_0"
9578
+ ]).optional(),
9579
+ cacheTypeV: z.enum([
9580
+ "f32",
9581
+ "f16",
9582
+ "q8_0",
9583
+ "q5_1",
9584
+ "q5_0",
9585
+ "q4_1",
9586
+ "q4_0"
9587
+ ]).optional(),
9497
9588
  /** Else lazy: first generate boots it. */
9498
9589
  autoStart: z.boolean().default(false),
9499
9590
  /** 0 = never; frees RAM after quiet periods. */
@@ -9599,10 +9690,44 @@ var LlmProfileSchema = z.object({
9599
9690
  baseUrl: z.string().optional(),
9600
9691
  /** ConfigUISchema type:'password' — never round-trips (spec §5). */
9601
9692
  apiKey: z.string().optional(),
9693
+ /** Vision on/off. A vision call against a `false` profile is REFUSED, never
9694
+ * degraded to text — that shipped once and produced a confident answer to a
9695
+ * question about a picture nobody sent. */
9602
9696
  supportsVision: z.boolean(),
9603
9697
  temperature: z.number().min(0).max(2).optional(),
9698
+ /** Nucleus sampling. Every wire we speak has it. */
9699
+ topP: z.number().min(0).max(1).optional(),
9700
+ /** Top-k sampling. Carried only by the wires that have it — NEITHER OpenAI
9701
+ * wire does, and the client drops it there (measured: the request body gets
9702
+ * `top_p` and no `top_k`). The profile editor hides the field wherever it
9703
+ * would change nothing; `KINDS_WITH_TOP_K` is the single owner of that list. */
9704
+ topK: z.number().int().positive().optional(),
9604
9705
  maxTokens: z.number().int().positive().optional(),
9706
+ /** Prompt context window. Advisory for cloud kinds (they enforce their own);
9707
+ * for `managed-local` it is the llama.cpp `--ctx-size` the runtime starts
9708
+ * the model with, so it is the one field that changes a PROCESS. */
9709
+ contextLength: z.number().int().positive().optional(),
9710
+ /** Default system prompt. A caller's `system` REPLACES it (never appends —
9711
+ * two system prompts fighting is worse than either alone). */
9712
+ systemPrompt: z.string().optional(),
9713
+ /** Total generation bound — the only one a unary call has. */
9605
9714
  timeoutMs: z.number().int().positive().default(6e4),
9715
+ /** Wait for response headers only. */
9716
+ connectTimeoutMs: z.number().int().positive().default(1e4),
9717
+ /** Accepted, but no output yet — a cold GPU load lives here. */
9718
+ firstTokenTimeoutMs: z.number().int().positive().default(12e4),
9719
+ /** Output started then stopped. */
9720
+ idleTimeoutMs: z.number().int().positive().default(6e4),
9721
+ /** Profile-level default. The per-consumer table and a per-call override
9722
+ * both beat it — see `resolveRetryPolicy`. */
9723
+ retry: LlmRetryPolicySchema.default({
9724
+ enabled: false,
9725
+ maxAttempts: 1
9726
+ }),
9727
+ /** Whether this profile may use tools. The tool-call plumbing rides the
9728
+ * library; the REGISTRY of callable tools is ours and is empty in v1, so a
9729
+ * `true` here buys the wiring, not behaviour, until tools are registered. */
9730
+ toolsEnabled: z.boolean().default(false),
9606
9731
  extraHeaders: z.record(z.string(), z.string()).optional(),
9607
9732
  /** kind === 'managed-local' only (spec §4). */
9608
9733
  runtime: ManagedRuntimeConfigSchema.optional()
@@ -9675,6 +9800,17 @@ var llmCapability = {
9675
9800
  methods: {
9676
9801
  generate: method(LlmGenerateBaseInputSchema, LlmGenerateResultSchema, { kind: "mutation" }),
9677
9802
  generateVision: method(GenerateVisionInputSchema, LlmGenerateResultSchema, { kind: "mutation" }),
9803
+ /**
9804
+ * Stop a generation started with a `requestId`.
9805
+ *
9806
+ * Idempotent and always successful: cancelling an id that already finished,
9807
+ * never existed, or was cancelled a moment ago is a no-op. A caller that has
9808
+ * given up must never have to handle an error from giving up.
9809
+ */
9810
+ cancel: method(z.object({
9811
+ addonId: z.string().optional(),
9812
+ requestId: z.string()
9813
+ }), z.void(), { kind: "mutation" }),
9678
9814
  listProfileKinds: method(z.object({}), z.array(LlmProfileKindDescriptorSchema)),
9679
9815
  listProfiles: method(z.object({}), z.array(LlmProfileSchema)),
9680
9816
  upsertProfile: method(z.object({ profile: LlmProfileSchema }), LlmProfileSchema, {
@@ -12124,28 +12260,36 @@ var NC_AUDIO_DBFS_FLOOR = -96;
12124
12260
  /**
12125
12261
  * Audio condition (IMMEDIATE trigger) — a rule on SOUND, not on a picture.
12126
12262
  *
12127
- * Operator-approved vocabulary (2026-08-12, option A — the same one the
12128
- * reference notifier uses, so an operator moving between them re-uses what
12129
- * they already know): a rule matches when, over a sampling window of
12130
- * `samplingSeconds`, at least `hitPercent`% of the audio samples in that
12131
- * window are HITS. A sample is a hit when it satisfies BOTH present filters:
12132
- *
12133
- * - `dbThreshold` its level is at or above this many dBFS (see
12134
- * {@link NC_AUDIO_DBFS_FLOOR}: negative-going, `0` = full scale);
12135
- * - `labels` the classifier put at least one of these labels on it.
12136
- *
12137
- * Both are OPTIONAL and independent, which is the point of the shape: a
12138
- * loudness rule ("something loud at 3am") needs no model to be right, and a
12139
- * label rule ("a dog barked") needs no threshold. **Fail-closed when NEITHER
12140
- * is given** a window in which every sample is trivially a hit would fire on
12141
- * silence, so the engine refuses such a condition rather than notifying on
12142
- * nothing (the schema cannot express "at least one of" without becoming a
12143
- * ZodEffects the cap path would have to special-case).
12144
- *
12145
- * `hitPercent` is over the samples the window actually HOLDS, and the window
12146
- * must be FULL before it can match a window that has been open for two
12147
- * seconds of its ten is 100% of nothing, and firing on it would make
12148
- * `samplingSeconds` decorative.
12263
+ * **TWO EXCLUSIVE MODES** (operator decision 2026-08-14, D157). Which one a
12264
+ * rule is in is not a stored field it is WHICH FILTER the rule carries, so
12265
+ * there is no second switch that can disagree with the first and every rule
12266
+ * authored before the decision migrates for free (`audioModeOf`):
12267
+ *
12268
+ * - **LABEL mode — `labels` present.** The rule fires on the FIRST frame the
12269
+ * classifier labels with one of them. No window, no percentage:
12270
+ * `hitPercent` and `samplingSeconds` are ignored, and the rule's own
12271
+ * `throttle` cooldown is the only brake. The per-label confidence floor is
12272
+ * the analyzer's (`classificationMinScore`, per device) — a label only
12273
+ * reaches this condition if the classifier was already confident enough.
12274
+ * - **LEVEL mode `dbThreshold` present, no labels.** The sampling window IS
12275
+ * the condition: at least `hitPercent`% of the samples over
12276
+ * `samplingSeconds` must be at or above `dbThreshold` dBFS (see
12277
+ * {@link NC_AUDIO_DBFS_FLOOR}: negative-going, `0` = full scale). The window
12278
+ * must be FULL before it can match a window open for two of its ten
12279
+ * seconds is 100% of nothing.
12280
+ *
12281
+ * **Why label mode has no window.** It had one, and it never fired: the
12282
+ * analyzer emits ~1 audio frame per second but YAMNet only LABELS one to three
12283
+ * of them per episode, even through continuous crying. The measured maximum
12284
+ * `hitPercent` over the whole live history was 40 — under the shipped default
12285
+ * of 60, so a label rule could not fire at all, ever. A percentage of frames is
12286
+ * the wrong question to ask of a sparse classifier.
12287
+ *
12288
+ * **Fail-closed when NEITHER is given** — every sample would be a trivial hit
12289
+ * and the rule would fire on silence. The schema cannot express "exactly one
12290
+ * of" without becoming a ZodEffects the cap path would have to special-case, so
12291
+ * the exclusivity is enforced where every editor writes (`patchAudio`) and a
12292
+ * legacy rule carrying both resolves to LABEL (the mode that fires).
12149
12293
  *
12150
12294
  * Labels are the audio macro classes (`AUDIO_MACRO_LABELS` / the NC taxonomy's
12151
12295
  * `audio-*` ids). Both spellings are accepted — the matcher normalizes the
@@ -12153,13 +12297,13 @@ var NC_AUDIO_DBFS_FLOOR = -96;
12153
12297
  * an operator who typed `dog` mean the same thing.
12154
12298
  */
12155
12299
  var NcAudioConditionSchema = z.object({
12156
- /** Audio macro labels; absent = any sound (level-only rule). */
12300
+ /** LABEL MODE: audio macro labels. Present fires on the first labelled frame. */
12157
12301
  labels: z.array(z.string().min(1)).min(1).optional(),
12158
- /** Level floor in dBFS (negative-going, `0` = full scale); absent = any level. */
12302
+ /** LEVEL MODE: floor in dBFS (negative-going, `0` = full scale). */
12159
12303
  dbThreshold: z.number().min(-96).max(0).optional(),
12160
- /** Percentage of the window's samples that must be hits (1–100). */
12304
+ /** LEVEL MODE ONLY: percentage of the window's samples that must be hits (1–100). */
12161
12305
  hitPercent: z.number().int().min(1).max(100).default(60),
12162
- /** Length of the sampling window in seconds. */
12306
+ /** LEVEL MODE ONLY: length of the sampling window in seconds. */
12163
12307
  samplingSeconds: z.number().int().min(1).max(300).default(10)
12164
12308
  });
12165
12309
  /**
@@ -27372,14 +27516,64 @@ var recordingExportCapability = {
27372
27516
  * thing except the comparator: `similarity` (CLIP cosine at the same ROI coords
27373
27517
  * vs condition-tagged references) and `llm` (vision-LLM judgment over the crop).
27374
27518
  *
27375
- * D14 device-config archetype (`deviceConfig.ui.kind:'widget'`) the framework
27376
- * derives the device-detail contribution; the provider carries NO hand-written
27377
- * settings-contribution methods. `status.kind:'push'` the engine pushes on
27378
- * every hysteresis flip / availability change; consumers never poll.
27379
- */
27380
- /** Extensible condition tag. Seeded 'day' | 'night'; open by design so more can
27381
- * be added without a wire break (matching falls back to any-condition refs). */
27519
+ * **No `deviceConfig`, deliberately.** This shipped as the D14 widget archetype,
27520
+ * which put a "Scenes" tab on one camera's detail page. That is the wrong shape
27521
+ * for the thing: a scene is a standing question about the property ("is the bin
27522
+ * still out"), and the operator's question is "which of my scenes have tripped",
27523
+ * across every camera at once — not "what does camera 617 think". Buried one
27524
+ * camera deep it also could not be found. The surface is now a top-level admin
27525
+ * page (`/scenes`, `pages/Scenes.tsx`) that lists every scene on every camera and
27526
+ * picks the camera inside the create flow, the same shape Events and Faces have.
27527
+ *
27528
+ * The consequence to keep in mind: `host/scene-monitor-editor` is gone from
27529
+ * `HOST_WIDGETS` too. `scripts/check-host-widget-resolves.ts` asserts BOTH
27530
+ * directions, so a registration nobody declares fails exactly as loudly as a
27531
+ * declaration nobody registers. The editor is imported directly by the page.
27532
+ *
27533
+ * `status.kind:'push'` — the engine pushes on every hysteresis flip /
27534
+ * availability change; consumers never poll.
27535
+ */
27536
+ /** Extensible condition tag. Seeded 'day' | 'ir' (the two variants the operator
27537
+ * captures) plus 'night' | 'dawn' | 'dusk' from the resolver's sun-times band.
27538
+ * Open by design so more can be added without a wire break.
27539
+ *
27540
+ * Matching does NOT fall back across conditions: cross-condition cosines are
27541
+ * not comparable, so "I have never seen this scene in this light" is reported
27542
+ * as `unknown`, never guessed. A day reference scored against an IR frame
27543
+ * collapses the cosine and would latch a false alarm every single night. */
27382
27544
  var SceneConditionSchema = z.string();
27545
+ /** The conditions the resolver can produce. Seeds for the UI's coverage line;
27546
+ * the wire type stays an open string. */
27547
+ var SCENE_CONDITIONS = [
27548
+ "day",
27549
+ "ir",
27550
+ "night",
27551
+ "dawn",
27552
+ "dusk"
27553
+ ];
27554
+ /** Reserved, engine-owned state id standing for "the region no longer looks
27555
+ * like ANY captured reference". Never authored by an operator, never stored in
27556
+ * `states[]` — it is the synthetic candidate that makes divergence a
27557
+ * first-class hysteresis input rather than a bare `return`. */
27558
+ var SCENE_DIVERGED = "__diverged__";
27559
+ /** `matched` = the baseline is what we see; `diverged` = it demonstrably is not;
27560
+ * `unknown` = we cannot judge (no reference for this condition, encoder model
27561
+ * changed, view shifted, no snapshot). `unknown` is a real value, not a null,
27562
+ * and never counts toward hysteresis in either direction. */
27563
+ var SceneVerdictSchema = z.enum([
27564
+ "matched",
27565
+ "diverged",
27566
+ "unknown"
27567
+ ]);
27568
+ /** Why a scene cannot judge. Named, because this feature's failure mode is
27569
+ * silence that reads as "nothing has happened". */
27570
+ var SceneUnavailableSchema = z.enum([
27571
+ "no-reference-for-condition",
27572
+ "view-shifted",
27573
+ "no-vision-profile",
27574
+ "encoder-model-changed",
27575
+ "no-snapshot"
27576
+ ]);
27383
27577
  /** One captured reference — condition-tagged, model-version-gated. `embedding`
27384
27578
  * is `number[]` (Float32Array does NOT survive MsgPack/UDS). */
27385
27579
  var SceneReferenceSchema = z.object({
@@ -27387,7 +27581,14 @@ var SceneReferenceSchema = z.object({
27387
27581
  modelId: z.string(),
27388
27582
  condition: SceneConditionSchema,
27389
27583
  capturedAt: z.number(),
27390
- thumbnailMediaId: z.string().optional()
27584
+ thumbnailMediaId: z.string().optional(),
27585
+ /** Whole-frame (downscaled) embedding captured alongside the ROI crop. The
27586
+ * anti-view-shift anchor: a bumped camera, a PTZ preset or a re-aim makes the
27587
+ * normalized rect frame a different piece of world, and the scene would
27588
+ * diverge forever with a perfectly plausible cosine. Checked LAZILY, only
27589
+ * when hysteresis is about to flip — one extra encode per candidate
27590
+ * transition, not per poll. */
27591
+ anchorEmbedding: z.array(z.number()).optional()
27391
27592
  });
27392
27593
  var SceneMonitorStateSchema = z.object({
27393
27594
  id: z.string(),
@@ -27409,6 +27610,38 @@ var SceneCheckSchema = z.discriminatedUnion("mode", [z.object({
27409
27610
  profileId: z.string().optional(),
27410
27611
  hysteresisCount: z.number().int().positive()
27411
27612
  })]);
27613
+ /** Defaults, as CONSTANTS rather than only as Zod `.default()`. A Zod default
27614
+ * does NOT run on the addon→addon cap path, so every runtime seam reads these
27615
+ * as absent-with-a-constant (the `NcConfirmSchema` lesson, three production
27616
+ * failures in one day). The schema defaults and these values are the same
27617
+ * numbers on purpose. */
27618
+ var SCENE_DEFAULT_QUIET_SECONDS = 60;
27619
+ var SCENE_DEFAULT_OBSERVATION_SPACING_SEC = 120;
27620
+ var SCENE_DEFAULT_CHECK_INTERVAL_SEC = 60;
27621
+ var SCENE_DEFAULT_ANCHOR_THRESHOLD = .85;
27622
+ var SCENE_CONFIRM_DEFAULT_TIMEOUT_MS = 8e3;
27623
+ var SCENE_CONFIRM_DEFAULT_MAX_IMAGE_PX = 448;
27624
+ /** `resetScene({ recapture })` absent means TRUE — the operator decision. Read
27625
+ * at the seam, because a Zod `.optional()` carries no default at all. */
27626
+ var SCENE_RESET_RECAPTURES = true;
27627
+ /**
27628
+ * Vision-model adjudication of a candidate flip. Field names deliberately
27629
+ * mirror `NcConfirmSchema` so an operator meets one vocabulary, not two.
27630
+ *
27631
+ * `onTimeout` defaults to **'hold'**, the OPPOSITE of `NcConfirmGate`'s
27632
+ * fail-open: a notification suppressed is the worse error there, but a vision
27633
+ * model that timed out has not told us the bin is gone, and a latch is a
27634
+ * stateful claim that costs the operator a trip to reset.
27635
+ */
27636
+ var SceneConfirmSchema = z.object({
27637
+ enabled: z.boolean().default(false),
27638
+ prompt: z.string().min(1).max(1e3),
27639
+ profileId: z.string().optional(),
27640
+ timeoutMs: z.number().int().min(1e3).max(2e4).default(SCENE_CONFIRM_DEFAULT_TIMEOUT_MS),
27641
+ maxImagePx: z.number().int().min(64).max(2048).default(448),
27642
+ /** What a timeout / unavailable model means for the PENDING flip. */
27643
+ onTimeout: z.enum(["flip", "hold"]).default("hold")
27644
+ });
27412
27645
  var SceneMonitorSchema = z.object({
27413
27646
  id: z.string(),
27414
27647
  label: z.string(),
@@ -27427,7 +27660,41 @@ var SceneMonitorSchema = z.object({
27427
27660
  lastConfidence: z.number().nullable(),
27428
27661
  currentCondition: SceneConditionSchema.nullable(),
27429
27662
  availability: z.enum(["ok", "unavailable"]),
27430
- unavailableReason: z.string().nullable()
27663
+ unavailableReason: z.string().nullable(),
27664
+ /** Which state is "the initial screen". `null` until the first capture. */
27665
+ baselineStateId: z.string().nullable(),
27666
+ /** Which boolean drives notification rules and any export. */
27667
+ emit: z.enum(["latched", "live"]).default("latched"),
27668
+ /** Live: does the region match the baseline RIGHT NOW. */
27669
+ verdict: SceneVerdictSchema,
27670
+ /** Has it been `diverged` at least once since `armedAt` — the operator's boolean. */
27671
+ latched: z.boolean(),
27672
+ /** Last reset (or creation). */
27673
+ armedAt: z.number(),
27674
+ divergedAt: z.number().nullable(),
27675
+ restoredAt: z.number().nullable(),
27676
+ /** A check is only COUNTED when the device has been quiet this long. Motion
27677
+ * during the window DISCARDS the observation — a car pulling up in front of
27678
+ * the bin must not be able to spend hysteresis credit. */
27679
+ quietSeconds: z.number().int().min(0).max(3600).default(60),
27680
+ /** An observation only advances the pending count when it is at least this
27681
+ * far from the previously counted one, so N agreeing checks span real time
27682
+ * rather than N adjacent polls inside one occlusion. */
27683
+ minObservationSpacingSec: z.number().int().min(0).max(3600).default(120),
27684
+ /** Vision-model adjudication of a candidate flip. Similarity primary only. */
27685
+ confirm: SceneConfirmSchema.optional(),
27686
+ /** Whole-frame anchor cosine below which a flip is REFUSED as `view-shifted`. */
27687
+ anchorThreshold: z.number().min(0).max(1).default(SCENE_DEFAULT_ANCHOR_THRESHOLD),
27688
+ /** Clear the latch on its own when the scene matches again? Default false —
27689
+ * `restoredAt` and the `scene-restored` edge are recorded regardless, so an
27690
+ * automation can react to the bin coming back without the operator's own
27691
+ * alarm silently clearing itself. */
27692
+ autoRestore: z.boolean().default(false),
27693
+ /** Named cause when `verdict === 'unknown'`. */
27694
+ unavailable: SceneUnavailableSchema.nullable(),
27695
+ /** Conditions that have at least one comparable reference — the coverage line
27696
+ * ("day ✓ · ir ✓ · dusk ✗") that turns a silent fallback into a visible fact. */
27697
+ coveredConditions: z.array(SceneConditionSchema)
27431
27698
  });
27432
27699
  var SceneMonitorStatusSchema = z.object({
27433
27700
  monitors: z.array(SceneMonitorSchema),
@@ -27440,12 +27707,6 @@ var sceneMonitorCapability = {
27440
27707
  kind: "wrapper",
27441
27708
  defaultActive: true,
27442
27709
  deviceTypes: [DeviceType.Camera],
27443
- deviceConfig: { ui: {
27444
- kind: "widget",
27445
- widgetId: "host/scene-monitor-editor",
27446
- tab: "scenes",
27447
- label: "Scenes"
27448
- } },
27449
27710
  methods: {
27450
27711
  listScenes: method(z.object({ deviceId: z.number() }), SceneMonitorStatusSchema),
27451
27712
  createScene: method(z.object({
@@ -27476,7 +27737,14 @@ var sceneMonitorCapability = {
27476
27737
  "both"
27477
27738
  ]).optional(),
27478
27739
  checkIntervalSec: z.number().optional(),
27479
- check: SceneCheckSchema.optional()
27740
+ check: SceneCheckSchema.optional(),
27741
+ emit: z.enum(["latched", "live"]).optional(),
27742
+ quietSeconds: z.number().int().min(0).max(3600).optional(),
27743
+ minObservationSpacingSec: z.number().int().min(0).max(3600).optional(),
27744
+ anchorThreshold: z.number().min(0).max(1).optional(),
27745
+ autoRestore: z.boolean().optional(),
27746
+ /** `null` clears the vision-model adjudicator. */
27747
+ confirm: SceneConfirmSchema.nullable().optional()
27480
27748
  })
27481
27749
  }), z.void(), {
27482
27750
  kind: "mutation",
@@ -27517,6 +27785,26 @@ var sceneMonitorCapability = {
27517
27785
  }), z.void(), {
27518
27786
  kind: "mutation",
27519
27787
  auth: "admin"
27788
+ }),
27789
+ /**
27790
+ * Clear the latch, re-arm, and — by default — RE-CAPTURE the baseline for
27791
+ * the CURRENT condition. The bin never goes back in exactly the same spot;
27792
+ * "reset" in the operator's head means *this is the new normal*, and
27793
+ * re-capture is what makes the feature self-healing against slow drift
27794
+ * instead of failing silently weeks later.
27795
+ *
27796
+ * Reachable from three surfaces on this one mutation: the scene card, a
27797
+ * notification button (an `onTrigger` sequence with a `kind:'cap'` step —
27798
+ * no new Notification-Center code at all), and tRPC for scripts.
27799
+ */
27800
+ resetScene: method(z.object({
27801
+ deviceId: z.number(),
27802
+ monitorId: z.string(),
27803
+ /** Defaults to TRUE at the provider seam — see `SCENE_RESET_RECAPTURES`. */
27804
+ recapture: z.boolean().optional()
27805
+ }), z.void(), {
27806
+ kind: "mutation",
27807
+ auth: "admin"
27520
27808
  })
27521
27809
  },
27522
27810
  status: {
@@ -28297,6 +28585,61 @@ var NetworkAddressSchema = z.object({
28297
28585
  family: z.string(),
28298
28586
  internal: z.boolean()
28299
28587
  });
28588
+ /**
28589
+ * Provenance of the site coordinates, and the whole reason this is not just two
28590
+ * numbers.
28591
+ *
28592
+ * - `operator-set` — a human typed it, or accepted a detection. Authoritative;
28593
+ * nothing overwrites it.
28594
+ * - `derived-from-ip` — the hub geolocated its own public IP once, because a
28595
+ * default that is right to a few kilometres beats the coarse UTC clock split
28596
+ * the sun-times consumers otherwise fall back to.
28597
+ *
28598
+ * The UI shows which one it is. An operator who cannot tell a guess from their
28599
+ * own input will eventually trust the guess.
28600
+ */
28601
+ var SiteLocationSourceSchema = z.enum(["operator-set", "derived-from-ip"]);
28602
+ /**
28603
+ * Where the installation physically is — a fact of the SITE, not of any addon.
28604
+ *
28605
+ * It used to live in `pipeline-analytics`' global settings, which made a
28606
+ * property of the building a property of one analytics addon. Anything that
28607
+ * needs sun-times (scene condition variants today; anything solar tomorrow)
28608
+ * reads it from here.
28609
+ */
28610
+ var SiteLocationSchema = z.object({
28611
+ /** WGS84 decimal degrees. */
28612
+ latitude: z.number().min(-90).max(90),
28613
+ longitude: z.number().min(-180).max(180),
28614
+ source: SiteLocationSourceSchema,
28615
+ /** Epoch ms the value was last written. */
28616
+ updatedAt: z.number(),
28617
+ /**
28618
+ * Human-readable place the geo-IP service reported ("Napoli, IT"). Display
28619
+ * only — never parsed, never matched on. Absent for an operator-typed value.
28620
+ */
28621
+ label: z.string().optional()
28622
+ });
28623
+ /**
28624
+ * The read shape: the location plus the honest state of the one-shot derivation.
28625
+ *
28626
+ * `derivationAttemptedAt` is what makes the "one call, ever" contract
28627
+ * inspectable. When it is set and `location` is null, the geo-IP lookup ran and
28628
+ * failed; the hub will NOT try again on its own — the fallback is declared
28629
+ * (consumers degrade to their own last resort) and the operator either types the
28630
+ * coordinates or presses detect.
28631
+ */
28632
+ var SiteLocationStatusSchema = z.object({
28633
+ location: SiteLocationSchema.nullable(),
28634
+ derivationAttemptedAt: z.number().nullable(),
28635
+ /** Why the last derivation failed, for the UI to show instead of a shrug. */
28636
+ derivationError: z.string().nullable()
28637
+ });
28638
+ /** `null` clears the location and re-arms nothing — the derivation stays spent. */
28639
+ var SetSiteLocationInputSchema = z.object({
28640
+ latitude: z.number().min(-90).max(90),
28641
+ longitude: z.number().min(-180).max(180)
28642
+ }).nullable();
28300
28643
  var systemCapability = {
28301
28644
  name: "system",
28302
28645
  scope: "system",
@@ -28314,6 +28657,32 @@ var systemCapability = {
28314
28657
  forceRetentionCleanup: method(z.void(), z.void(), {
28315
28658
  kind: "mutation",
28316
28659
  auth: "admin"
28660
+ }),
28661
+ /**
28662
+ * The site coordinates, deriving a default from the hub's public IP on the
28663
+ * FIRST read that finds nothing stored.
28664
+ *
28665
+ * The derivation is one-shot and bounded: one outbound request, a few
28666
+ * seconds, its outcome persisted either way. A hub with no internet pays it
28667
+ * once and never again, and neither boot nor any consumer is blocked on it —
28668
+ * the caller gets `location: null` and degrades exactly as it did before this
28669
+ * method existed.
28670
+ */
28671
+ getSiteLocation: method(z.void(), SiteLocationStatusSchema),
28672
+ /** Operator input. Always lands as `source: 'operator-set'`. */
28673
+ setSiteLocation: method(SetSiteLocationInputSchema, SiteLocationStatusSchema, {
28674
+ kind: "mutation",
28675
+ auth: "admin"
28676
+ }),
28677
+ /**
28678
+ * Re-run the geo-IP derivation now. The ONLY way a spent or failed
28679
+ * derivation is retried — there is no timer, and no read path retries.
28680
+ * Overwrites an existing `derived-from-ip` value; refuses to clobber an
28681
+ * `operator-set` one.
28682
+ */
28683
+ detectSiteLocation: method(z.void(), SiteLocationStatusSchema, {
28684
+ kind: "mutation",
28685
+ auth: "admin"
28317
28686
  })
28318
28687
  },
28319
28688
  /** BIG PLAN 2: declarative mount hint — read by `@camstack/system` `buildCapRouters`. */
@@ -35227,6 +35596,12 @@ var METHOD_ACCESS_MAP = Object.freeze({
35227
35596
  addonId: null,
35228
35597
  access: "create"
35229
35598
  },
35599
+ "llm.cancel": {
35600
+ capName: "llm",
35601
+ capScope: "system",
35602
+ addonId: null,
35603
+ access: "create"
35604
+ },
35230
35605
  "llm.deleteModel": {
35231
35606
  capName: "llm",
35232
35607
  capScope: "system",
@@ -37477,6 +37852,12 @@ var METHOD_ACCESS_MAP = Object.freeze({
37477
37852
  addonId: null,
37478
37853
  access: "create"
37479
37854
  },
37855
+ "sceneMonitor.resetScene": {
37856
+ capName: "scene-monitor",
37857
+ capScope: "device",
37858
+ addonId: null,
37859
+ access: "delete"
37860
+ },
37480
37861
  "sceneMonitor.updateScene": {
37481
37862
  capName: "scene-monitor",
37482
37863
  capScope: "device",
@@ -38155,6 +38536,12 @@ var METHOD_ACCESS_MAP = Object.freeze({
38155
38536
  addonId: null,
38156
38537
  access: "create"
38157
38538
  },
38539
+ "system.detectSiteLocation": {
38540
+ capName: "system",
38541
+ capScope: "system",
38542
+ addonId: null,
38543
+ access: "create"
38544
+ },
38158
38545
  "system.featureFlags": {
38159
38546
  capName: "system",
38160
38547
  capScope: "system",
@@ -38173,6 +38560,12 @@ var METHOD_ACCESS_MAP = Object.freeze({
38173
38560
  addonId: null,
38174
38561
  access: "view"
38175
38562
  },
38563
+ "system.getSiteLocation": {
38564
+ capName: "system",
38565
+ capScope: "system",
38566
+ addonId: null,
38567
+ access: "view"
38568
+ },
38176
38569
  "system.health": {
38177
38570
  capName: "system",
38178
38571
  capScope: "system",
@@ -38197,6 +38590,12 @@ var METHOD_ACCESS_MAP = Object.freeze({
38197
38590
  addonId: null,
38198
38591
  access: "create"
38199
38592
  },
38593
+ "system.setSiteLocation": {
38594
+ capName: "system",
38595
+ capScope: "system",
38596
+ addonId: null,
38597
+ access: "create"
38598
+ },
38200
38599
  "terminalSession.adoptLegacyMonitor": {
38201
38600
  capName: "terminal-session",
38202
38601
  capScope: "system",
@@ -40416,6 +40815,11 @@ var METHOD_DEVICE_SELECTORS = Object.freeze({
40416
40815
  form: "single",
40417
40816
  optional: false
40418
40817
  }],
40818
+ "sceneMonitor.resetScene": [{
40819
+ name: "deviceId",
40820
+ form: "single",
40821
+ optional: false
40822
+ }],
40419
40823
  "sceneMonitor.updateScene": [{
40420
40824
  name: "deviceId",
40421
40825
  form: "single",
@@ -41512,6 +41916,7 @@ function createSystemProxy(api) {
41512
41916
  llm: {
41513
41917
  generate: (input) => dispatch("llm", "generate", "mutation", input),
41514
41918
  generateVision: (input) => dispatch("llm", "generateVision", "mutation", input),
41919
+ cancel: (input) => dispatch("llm", "cancel", "mutation", input),
41515
41920
  listProfileKinds: (input) => dispatch("llm", "listProfileKinds", "query", input),
41516
41921
  listProfiles: (input) => dispatch("llm", "listProfiles", "query", input),
41517
41922
  upsertProfile: (input) => dispatch("llm", "upsertProfile", "mutation", input),
@@ -41808,7 +42213,10 @@ function createSystemProxy(api) {
41808
42213
  networkAddresses: (input) => dispatch("system", "networkAddresses", "query", input),
41809
42214
  getRetentionConfig: (input) => dispatch("system", "getRetentionConfig", "query", input),
41810
42215
  setRetentionConfig: (input) => dispatch("system", "setRetentionConfig", "mutation", input),
41811
- forceRetentionCleanup: (input) => dispatch("system", "forceRetentionCleanup", "mutation", input)
42216
+ forceRetentionCleanup: (input) => dispatch("system", "forceRetentionCleanup", "mutation", input),
42217
+ getSiteLocation: (input) => dispatch("system", "getSiteLocation", "query", input),
42218
+ setSiteLocation: (input) => dispatch("system", "setSiteLocation", "mutation", input),
42219
+ detectSiteLocation: (input) => dispatch("system", "detectSiteLocation", "mutation", input)
41812
42220
  },
41813
42221
  terminalSession: {
41814
42222
  listProfiles: (input) => dispatch("terminalSession", "listProfiles", "query", input),
@@ -41908,8 +42316,16 @@ var NC_AUDIO_DB_STEP = 3;
41908
42316
  * an absent `dbThreshold` means "any level" and stays absent until asked for,
41909
42317
  * and a stepper seeded at the -96 floor would need thirty taps to reach a
41910
42318
  * threshold that can actually fire.
42319
+ *
42320
+ * **It was -30 and -30 is a trap.** dBFS is negative-going, so a HIGHER number
42321
+ * is a NARROWER filter, and the sounds this hub is actually asked about are not
42322
+ * loud: measured on the live installation, real crying sits between -55 and
42323
+ * -26 dBFS. A floor at -30 therefore rejects most of the very sound the
42324
+ * operator turned the filter on for, and the rule looks broken rather than
42325
+ * mis-seeded. The offered floor is the QUIET end of that measured band; the
42326
+ * editor says which way the number runs rather than leaving it to be inferred.
41911
42327
  */
41912
- var NC_AUDIO_DB_OFFERED = -30;
42328
+ var NC_AUDIO_DB_OFFERED = -55;
41913
42329
  var NC_AUDIO_HIT_PERCENT_MIN = 1;
41914
42330
  var NC_AUDIO_HIT_PERCENT_MAX = 100;
41915
42331
  var NC_AUDIO_SAMPLING_MIN_SEC = 1;
@@ -41924,6 +42340,26 @@ function audioOrDefaults(value) {
41924
42340
  return value ?? NC_AUDIO_DEFAULTS;
41925
42341
  }
41926
42342
  /**
42343
+ * Which mode this condition is in — the ONE place that question is answered.
42344
+ *
42345
+ * The mode is NOT a stored field, deliberately. It is which filter the rule
42346
+ * carries, so every rule authored before the modes existed migrates for free
42347
+ * and there is no second switch that can disagree with the first (the failure
42348
+ * this repo has shipped twice). `null` = neither filter, which the engine
42349
+ * refuses (see {@link audioIsFailClosed}).
42350
+ *
42351
+ * A LEGACY rule carrying BOTH resolves to `label`: it is the mode that fires,
42352
+ * and the alternative is silently keeping a window the operator can no longer
42353
+ * see in the editor. Nothing new can reach this branch — {@link patchAudio}
42354
+ * clears the other filter on every write.
42355
+ */
42356
+ function audioModeOf(value) {
42357
+ if (value === void 0) return null;
42358
+ if (value.labels !== void 0 && value.labels.length > 0) return "label";
42359
+ if (value.dbThreshold !== void 0) return "level";
42360
+ return null;
42361
+ }
42362
+ /**
41927
42363
  * True when the condition names NEITHER a level floor NOR any label. The engine
41928
42364
  * refuses such a rule (every sample is a hit, so the window fires on silence) —
41929
42365
  * an editor warns instead of letting the operator ship a rule that never
@@ -41948,13 +42384,29 @@ function has(patch, key) {
41948
42384
  * The result is always in-bounds for `NcAudioConditionSchema`, and a cleared
41949
42385
  * filter is OMITTED rather than written as an explicit `undefined` (which
41950
42386
  * survives a merge patch as a deliberate erase and reads as authored).
42387
+ *
42388
+ * **The two modes are exclusive here, structurally.** Writing labels drops any
42389
+ * stored `dbThreshold`; writing a `dbThreshold` drops the labels. The schema
42390
+ * cannot say "exactly one of" without becoming a ZodEffects the cap path would
42391
+ * have to special-case, so the exclusivity lives in the ONE function every
42392
+ * editor writes through — which also means a legacy both-filters rule is
42393
+ * normalized the first time it is touched, onto the mode {@link audioModeOf}
42394
+ * already reads it as.
42395
+ *
42396
+ * Switching to `level` with nothing stored seeds {@link NC_AUDIO_DB_OFFERED}:
42397
+ * a level rule with no floor is fail-closed, and handing the operator a mode
42398
+ * that cannot fire is the trap this whole change exists to remove.
41951
42399
  */
41952
42400
  function patchAudio(current, patch) {
41953
42401
  const base = audioOrDefaults(current);
41954
- const labels = has(patch, "labels") ? patch.labels : base.labels;
41955
- const dbThreshold = has(patch, "dbThreshold") ? patch.dbThreshold : base.dbThreshold;
42402
+ const wantedLabels = has(patch, "labels") ? patch.labels : base.labels;
42403
+ const wantedDb = has(patch, "dbThreshold") ? patch.dbThreshold : base.dbThreshold;
42404
+ const hasLabels = wantedLabels !== void 0 && wantedLabels.length > 0;
42405
+ const mode = patch.mode ?? (has(patch, "labels") && hasLabels ? "label" : has(patch, "dbThreshold") && wantedDb !== void 0 ? "level" : hasLabels ? "label" : wantedDb !== void 0 ? "level" : null);
42406
+ const labels = mode === "label" && hasLabels ? wantedLabels : void 0;
42407
+ const dbThreshold = mode !== "level" ? void 0 : wantedDb ?? (patch.mode === "level" ? -55 : void 0);
41956
42408
  return {
41957
- ...labels !== void 0 && labels.length > 0 ? { labels: [...labels] } : {},
42409
+ ...labels !== void 0 ? { labels: [...labels] } : {},
41958
42410
  ...dbThreshold !== void 0 ? { dbThreshold: clampInt(dbThreshold, NC_AUDIO_DB_MIN, 0) } : {},
41959
42411
  hitPercent: clampInt(patch.hitPercent ?? base.hitPercent, 1, 100),
41960
42412
  samplingSeconds: clampInt(patch.samplingSeconds ?? base.samplingSeconds, 1, 300)
@@ -44770,4 +45222,4 @@ function enumerateInferenceDevices(hw) {
44770
45222
  return out;
44771
45223
  }
44772
45224
  //#endregion
44773
- export { ACCESSORY_LABEL, ACCESS_ROLES, ALEXA_EGRESS_PROFILE, ALL_CAPABILITY_DEFINITIONS, APPLE_SA_TO_MACRO, AUDIO_ANALYSIS_CAP_NAME, AUDIO_BACKEND_CHOICES, AUDIO_MACRO_LABELS, AUDIO_PRESETS, AccessoriesStatusSchema, AccessoryKind, AddBrokerInputSchema, AddonAutoUpdateSchema, AddonListItemSchema, AddonPageDeclarationSchema, AddonPageInfoSchema, AdoptInputSchema as AdoptionAdoptInputSchema, AdoptResultSchema as AdoptionAdoptResultSchema, AdoptionCandidateResultSchema, AdoptionFilterSchema, GetCandidateInputSchema as AdoptionGetCandidateInputSchema, AdoptionJobSchema, AdoptionJobStateSchema, ListCandidatesInputSchema as AdoptionListCandidatesInputSchema, ListCandidatesOutputSchema as AdoptionListCandidatesOutputSchema, AdoptionOutcomeSchema, ReleaseInputSchema as AdoptionReleaseInputSchema, AdoptionStatusSchema, AgentLoadSummarySchema, AirQualitySensorStatusSchema, AlarmArmModeSchema, AlarmPanelStatusSchema, AlarmStateSchema, AlertSchema, AlertSeveritySchema, AlertSourceSchema, AlertStatusSchema, AmbientLightSensorStatusSchema, ApiKeyRecordSchema, ApiKeySummarySchema, ArchiveEntrySchema, ArchiveManifestSchema, AttachmentMediaTypeSchema, AttachmentSchema, AudioAnalysisResultSchema, AudioAnalysisSettingsSchema, AudioChunkInputSchema, AudioClassSummarySchema, AudioClassificationLabelSchema, AudioClassificationResultSchema, AudioCodecInfoSchema, AudioDecodeSessionConfigSchema, AudioEncodeSchema, AudioEncodeSessionConfigSchema, AudioEncodedChunkSchema, AudioEventSchema, AudioLevelSchema, AudioMetricsHistoryPointSchema, AudioMetricsHistorySchema, AudioMetricsSnapshotSchema, AudioPcmChunkSchema, AuthResultSchema, AutoUpdateSettingsSchema, AutomationActionSchema, AutomationConditionOperatorSchema, AutomationConditionSchema, AutomationControlStatusSchema, AutomationRecipeSchema, AutomationTriggerSchema, AvailableIntegrationTypeSchema, BACKEND_TO_FORMAT, BASE_LIVE_EGRESS_PROFILE, BATTERY_DEVICE_PROFILE, BacklightModeSchema, BackupDestinationInfoSchema, BackupEntrySchema, BaseAddon, BaseDevice, BaseDeviceProvider, BatteryStatusSchema, BinaryStatusSchema, BoundingBoxSchema, BrightnessStatusSchema, AddInputSchema as BrokerAddInputSchema, BrokerAudioClientSchema, BrokerClientsSchema, BrokerConnectionDetailsSchema, BrokerConsumerAttributionSchema, BrokerConsumerKindSchema, BrokerDecodedClientSchema, BrokerEncodedClientSchema, GetStateInputSchema as BrokerGetStateInputSchema, BrokerInfoSchema, BrokerProviderInfoSchema, PublishInputSchema as BrokerPublishInputSchema, RegistryStatusSchema as BrokerRegistryStatusSchema, BrokerRtspClientSchema, BrokerStatsSchema, BrokerStatusEnum, BrokerStatusSchema, SubscribeInputSchema as BrokerSubscribeInputSchema, SubscribeResultSchema as BrokerSubscribeResultSchema, TestConnectionResultSchema as BrokerTestConnectionResultSchema, UnsubscribeInputSchema as BrokerUnsubscribeInputSchema, CAMERA_SWITCH_CATALOG, CAMERA_SWITCH_ORDER, CAM_PROFILE_ORDER, CAPABILITY_NAMES, CAPABILITY_ROUTER_KEYS, CAP_NAMES_WITH_STATUS, CAP_NODE_PIN_CONTEXT_KEY, CAP_PROVIDER_KIND_MAP, COCO_80_LABELS, COCO_TO_MACRO, CONNECTION_TEST_TIMEOUT_MS, CORE_BLOCKS_ADDON_ID, CORE_BLOCK_ADDON_PREFIX, CamProfileSchema, CamStreamDescriptorSchema, CamStreamKindSchema, CamStreamResolutionSchema, CameraAssignmentStatusSchema, CameraAudioStatusSchema, CameraBrokerProfileSchema, CameraBrokerStatusSchema, CameraCredentialsSchema, CameraCredentialsStatusSchema, CameraDecoderShmSchema, CameraDecoderStatusSchema, CameraDetectionPhaseSchema, CameraDetectionProvisioningSchema, CameraDetectionProvisioningStateSchema, CameraDetectionStatusSchema, CameraMetricsSchema, CameraMetricsWithDeviceIdSchema, CameraMotionStatusSchema, CameraRecordingModeSchema, CameraRecordingStatusSchema, CameraSourceStatusSchema, CameraSourceStreamSchema, CameraStatusDegradationReasonSchema, CameraStatusDegradationSchema, CameraStatusSchema, CameraStatusStageSchema, CameraStreamSchema, CameraSwitchAuthoritySchema, CameraSwitchGroupSchema, CameraSwitchIdSchema, CameraSwitchSchema, CameraSwitchUnavailableReasonSchema, CandidateQueryFilterSchema, CapScopeSchema, CapabilityBindingsSchema, CarbonMonoxideStatusSchema, ChargingStatus, ClientNetworkStatsSchema, ClimateControlStatusSchema, ClipPlaybackSchema, ClipSchema, ClusterAddonNodeDeploymentSchema, ClusterAddonStatusEntrySchema, CollectionColumnSchema, CollectionIndexSchema, ColorStatusSchema, ConfigEntrySchema, ConfigSectionWithValuesSchema, ConfigTabDeclarationSchema, ConnectionTestDescriptorSchema, ConnectionTestInputSchema, ConnectionTestOutcomeSchema, ConnectivityStatusSchema, ConsumableItemSchema, ConsumablesStatusSchema, ContactStatusSchema, ControlKindSchema, ControlStatusSchema, ConvertArtifactSchema, ConvertResultSchema, ConvertTargetSchema, CoreBlockCompileResultSchema, CoreBlockInputSchema, CoreBlockPlacementSchema, CoreBlockSchema, CoreBlockStatusSchema, CoverStateSchema, CoverStatusSchema, CreateApiKeyInputSchema, CreateApiKeyResultSchema, CreateIntegrationInputSchema, CreateScopedTokenInputSchema, CreateScopedTokenResultSchema, CreateUserInputSchema, CustomActionInputSchema, CustomModelDescriptorSchema, DATAPLANE_SECRET_HEADER, DECLARED_DEVICE_SWEEP_LIMIT, DECLARED_INTEGRATION_FIXED_KEY, DEFAULT_ADDON_PLACEMENT, DEFAULT_AUDIO_ANALYZER_CONFIG, DEFAULT_DECODER_HWACCEL_CONFIG, DEFAULT_DETAIL_CROP_CONVENTION, DEFAULT_EVENTS_BAND_BUFFER_SEC, DEFAULT_EVENT_COLOR, DEFAULT_FEATURES, DEFAULT_NATIVE_LEASE_SETTINGS, DEFAULT_RETENTION, DEFAULT_RUNTIME_STATE_DURABILITY, DEFAULT_SCRUB_THUMBNAIL_PRESET, DEFAULT_TIMELAPSE_PREVIEW_TEXT, DETAIL_CROP_PADDING_FIELD, DETAIL_CROP_PADDING_KEY, DETAIL_CROP_SECTION_ID, DETAIL_CROP_SQUARE_KEY, DETECTION_MACRO_CLASSES, DETECTION_PIPELINE_CAP_NAME, DEVICE_BACKEND_TO_FORMAT, DEVICE_CAP_NAMES, DEVICE_PROFILES, DEVICE_SCOPED_CAPS, DEVICE_SETTINGS_CONTRIBUTION_METHODS, DEVICE_STATE_READERS, DEVICE_STATUS_METHOD, DEVICE_TYPE_CONTROL_KIND, DEVICE_TYPE_INFO, EngineInfoSchema as DataStoreEngineInfoSchema, DayNightModeSchema, DayNightOptionsSchema, DayNightSettingsPatchSchema, DayNightStatusSchema, DeclaredDevices, DecodedAudioChunkSchema, DecodedFrameSchema, DecoderSessionConfigSchema, DecoderStatsSchema, DeleteIntegrationResultSchema, DetailCropConventionSchema, DetectionSourceSchema, DeviceCodeSeveritySchema, DeviceConfig, DeviceDiscoveryStatusSchema, ExposeInputSchema as DeviceExportExposeInputSchema, DeviceExportStatusSchema, UnexposeInputSchema as DeviceExportUnexposeInputSchema, DeviceFeature, DeviceInfoSchema, DeviceNetworkStatsSchema, DeviceRole, DeviceRuntimeState, DeviceSelectorSchema, DeviceStatusSchema, DeviceType, DiscoveredChildDeviceSchema, DiscoveredChildStatusSchema, DiscoveredDeviceSchema, DiscoveredTargetSchema, DisposerChain, DoorbellPressEventSchema, DoorbellStatusSchema, EVENTFUL_CAP_NAMES, EVENT_KIND_BY_CAP, EVENT_PAD_MS, EVENT_TAXONOMY, EXPORT_DENSE_MAX_RANGES, EXPRESSION_BUILTINS, EXPRESSION_BUILTIN_NAMES, EXPRESSION_COMPILE_CACHE_CAPACITY, EXPRESSION_IDENTIFIER_RE, EXPRESSION_INJECTED_NOW, EgressEncodeSchema, EgressRateControlSchema, EgressTranscodeRequestSchema, EgressTranscodeSchema, ElementConfigStore, EmbeddingInfoSchema, EmbeddingResultSchema, EncodeProfileSchema, EncodedPacketSchema, EnrichedWidgetMetadataSchema, EnumSensorDateTimeFormatSchema, EnumSensorStatusSchema, EventCategory, EventEmitterStatusSchema, EventFireSchema, EventItemSchema, EventKindCategorySchema, EventKindDescriptorSchema, EventKindIconSchema, EventKindSchema, EventKindsForDeviceSchema, EventMediaArtifactSchema, EventMediaCoverageSchema, EventMediaKindSchema, EventMediaProductionSchema, EventSourceType, ExportBytesSchema, ExportDenseRangeSchema, ExportDenseSchema, ExportDownloadSchema, ExportOptionsSchema, ExportRecordSchema, ExportSetupFieldSchema, ExportSetupSchema, ExportSpeedSchema, ExportStateSchema, ExportTimelapseSchema, ExposedDeviceSchema, ExposureModeSchema, ExpressionBindingSourceSchema, ExpressionEvalError, ExpressionFieldBindingSchema, ExpressionGlobalBindingSchema, ExpressionLiteralBindingSchema, ExpressionParseError, ExpressionSourceSchema, FanControlStatusSchema, FanDirectionSchema, FeatureManifestSchema, FeatureProbeStatusSchema, FloodStatusSchema, Fmp4BoxSplitter, FrameHandleFormatSchema, FrameHandleSchema, FrameInputSchema, GasStatusSchema, GetStreamWithCodecInputSchema, GlobalMetricsSchema, HAP_AUDIO_BASE, HAP_AUDIO_BITRATE_KBPS, HAP_AUDIO_VBV_KBITS, HAP_KEYFRAME_INTERVAL_SEC, HF_BASE_URL, HF_REPO, HWACCEL_OPTIONS, HealthStatusSchema, HistoryPointSchema, HistoryResolutionEnum, HumidifierStatusSchema, HumiditySensorStatusSchema, HvacModeSchema, ImageContractSchema, ImageContractStateSchema, ImageRotateSchema, ImageSettingsOptionsSchema, ImageSettingsPatchSchema, ImageSettingsStatusSchema, ImageStatusSchema, IngestOwnerSchema, InstalledPackageSchema, IntegrationLiteSchema, IntegrationWithStateSchema, IntercomAbilitySchema, IntercomStatusSchema, KNOWN_CAP_NAMES, KeyEventSchema, LOG_LEVEL_RANK, LabelAttributionSchema, LabelDefinitionSchema, LabelTierSchema, LawnMowerActivitySchema, LawnMowerControlStatusSchema, LinkedDeviceSchema, LinkedDevicesModeSchema, LlmDefaultSchema, LlmDefaultSelectorSchema, LlmErrorCodeSchema, LlmGenerateBaseInputSchema, LlmGenerateErrSchema, LlmGenerateOkSchema, LlmGenerateResultSchema, LlmImageSchema, LlmNodeModelSchema, LlmProfileKindDescriptorSchema, LlmProfileKindSchema, LlmProfileSchema, LlmRuntimeCompleteInputSchema, LlmRuntimeDiskUsageSchema, LlmRuntimeNodeSchema, LlmRuntimeStatusSchema, LlmUsageRollupSchema, LlmUsageSchema, LocateSegmentResultSchema, LocationStatSchema, LockControlStatusSchema, LockStateSchema, LogEntrySchema, LogLevelSchema, LogStreamEntrySchema, LoginMethodContributionSchema, LoginStageEnum, MACRO_LABELS, MAX_CONDITION_DEPTH, MAX_CONDITION_LEAVES, MAX_EXPRESSION_AST_NODES, MAX_EXPRESSION_BINDINGS, MAX_EXPRESSION_CALL_ARGS, MAX_EXPRESSION_EVAL_STEPS, MAX_EXPRESSION_SOURCE_LENGTH, METHOD_ACCESS_MAP, METHOD_DEVICE_SELECTORS, MODEL_FORMATS, MOTION_TRIGGER_FEATURE, ManagedModelCatalogEntrySchema, ManagedModelRefSchema, ManagedRuntimeConfigSchema, MaskGridDimsSchema, MaskGridShapeSchema, MaskLineShapeSchema, MaskPointSchema, MaskPolygonShapeSchema, MaskPolygonVerticesSchema, MaskRectShapeSchema, MaskShapeKindSchema, MaskShapeSchema, MediaFileInfoSchema, MediaFileSchema, MediaPlayerRepeatSchema, MediaPlayerStateSchema, MediaPlayerStatusSchema, MeshPeerSchema, MeshStatusSchema, MethodAccessSchema, ModelCatalogEntrySchema, ModelConvertInputSchema, ModelConvertMetadataSchema, ModelDistributeInputSchema, ModelDistributeResultSchema, ModelExtraFileSchema, ModelFormatEntrySchema, ModelFormatsSchema, ModelSubstitutionSchema, ModelVariantGroupSchema, MotionAnalysisResultSchema, MotionEventSchema, MotionOnMotionChangedDataSchema, MotionRegionSchema, MotionSourceEnum, MotionSourcesSchema, MotionStatusSchema, MotionTriggerRuntimeStateSchema, MotionTriggerStatusSchema, MotionZoneOptionsSchema, MotionZonePatchSchema, MotionZoneRegionSchema, MotionZoneStatusSchema, StatusSchema as MqttBrokerStatusSchema, MutationFilterSchema, NATIVE_LEASE_ACTIVITY_FIELD, NATIVE_LEASE_ACTIVITY_KEY, NATIVE_LEASE_ADMISSION_FIELD, NATIVE_LEASE_ADMISSION_KEY, NATIVE_LEASE_BUDGET_FIELD, NATIVE_LEASE_BUDGET_KEY, NATIVE_LEASE_HOLD_FIELD, NATIVE_LEASE_HOLD_KEY, NATIVE_LEASE_SECTION_ID, NATIVE_LEASE_TILE_BUDGET_FIELD, NATIVE_LEASE_TILE_BUDGET_KEY, NC_ALARM_SYSTEM_EVENT_KINDS, NC_AUDIO_DBFS_FLOOR, NC_AUDIO_DB_MAX, NC_AUDIO_DB_MIN, NC_AUDIO_DB_OFFERED, NC_AUDIO_DB_STEP, NC_AUDIO_DEFAULTS, NC_AUDIO_HIT_PERCENT_MAX, NC_AUDIO_HIT_PERCENT_MIN, NC_AUDIO_SAMPLING_MAX_SEC, NC_AUDIO_SAMPLING_MIN_SEC, NC_AUTHORABLE_SYSTEM_EVENT_KINDS, NC_BASE_CONDITION_KEYS, NC_CONDITION_CATALOG, NC_CONFIRM_DEFAULT_MAX_IMAGE_PX, NC_CONFIRM_DEFAULT_TIMEOUT_MS, NC_CONFIRM_MAX_TIMEOUT_MS, NC_CONFIRM_MIN_TIMEOUT_MS, NC_DEFAULT_SNOOZE_MINUTES, NC_HISTORY_LIMIT_DEFAULT, NC_HISTORY_LIMIT_MAX, NC_MAX_PER_TRACK_IMMEDIATE, NC_SNOOZE_MAX_MINUTES, NC_TAXONOMY, NativeCropBboxSchema, NativeCropRefSchema, NativeCropResultSchema, NativeDetectionSchema, NativeLeaseAdmissionSchema, NativeLeaseSettingsSchema, NativeObjectClassEnum, NativeObjectDetectionRuntimeStateSchema, NativeObjectDetectionStatusSchema, NcAlarmConfigSchema, NcAlarmModeCoverageSchema, NcAlarmSettingsPatchSchema, NcAlarmSettingsSchema, NcAlarmSkipReasonSchema, NcAlarmSkippedDeviceSchema, NcAudioConditionSchema, NcConditionDescriptorSchema, NcConditionsSchema, NcConfirmExpectSchema, NcConfirmSchema, NcCrossingSchema, NcDeliverySchema, NcDeviceStateConditionSchema, NcHistoryEntrySchema, NcHistoryFilterSchema, NcHistoryRecordKindSchema, NcHistoryStatusSchema, NcHistorySubjectSchema, NcMediaFrameSchema, NcMediaPolicySchema, NcOccupancyConditionSchema, NcPlateMatcherSchema, NcRuleActionSchema, NcRuleActionSequenceSchema, NcRuleActionsSchema, NcRuleInputSchema, NcRuleNotificationButtonSchema, NcRulePatchSchema, NcRuleSchema, NcRuleTargetSchema, NcScheduleSchema, NcScheduleWindowSchema, NcSnoozeInputSchema, NcSnoozeSchema, NcSnoozeScopeSchema, NcSnoozeSuppressedSchema, NcSystemEventConditionSchema, NcSystemEventKindSchema, NcTaxonomyEntrySchema, NcTaxonomySchema, NcTestResultSchema, NcThrottleGranularitySchema, NcThrottleSchema, NcZoneConditionSchema, NetworkAccessStatusSchema, NetworkAddressSchema, NetworkEndpointSchema, NotificationActionIconSchema, NotificationActionSchema, NotificationFormatSchema, NotificationSchema, NotifierStatusSchema, NumericSensorStatusSchema, OPS_LOG_DEFAULT_LIMIT, OPS_LOG_RING_DEFAULT_MAX, OauthIntegrationDescriptorSchema, ObjectEventSchema, OpsLogDomainSchema, OpsLogEntrySchema, OpsLogOpSchema, OpsLogQueryInputSchema, OpsLogReasonSchema, OrchestratorMetricsSchema, OsdOverlayKindEnum, OsdOverlayPatchSchema, OsdOverlaySchema, OsdPositionEnum, OsdRenderOutcomeEnum, OsdRenderResultSchema, OsdSlotBindingSchema, OsdSlotViewSchema, OsdSourceOptionSchema, OsdSourceSchema, OsdSourceValueTypeEnum, OsdStatusSchema, PET_FEEDER_MANUAL_FEED_MAX, PET_FEEDER_MANUAL_FEED_MIN, PIPELINE_FLOW_CAPABILITY_NAMES, PIPELINE_OWNER_CAPABILITY_NAMES, PRIVACY_MASK_CAP_NAME, PROVIDER_KIND_CAP_NAMES, PYTHON_SCRIPT, PackageUpdateSchema, PackageVersionInfoSchema, PasskeyLoginMethodSchema, PasskeySummarySchema, PcmSampleFormatSchema, PerScopeBreakdownSchema, PetFeederStatusSchema, PickStreamPreferencesSchema, PickStreamRequirementsSchema, PickedCamStreamSchema, PipelineAssignmentSchema, PipelineDefaultStepSchema, PipelineEngineChoiceSchema, PipelineRunResultBridge, PipelineStepInputSchema, PipelineValidationIssueSchema, PipelineValidationResultSchema, PlaceholderReasonSchema, PolygonPointSchema, PowerMeterStatusSchema, PresenceStatusSchema, PressureSensorStatusSchema, PrivacyMaskOptionsSchema, PrivacyMaskPatchSchema, PrivacyMaskRegionSchema, PrivacyMaskShapeSchema, PrivacyMaskStatusSchema, ProfileRtspEntrySchema, ProfileSlotSchema, ProfileSlotStatusSchema, ProviderStatusSchema, PtzAutotrackRuntimeStateSchema, PtzAutotrackSettingsSchema, PtzAutotrackStatusSchema, PtzAutotrackTargetOptionSchema, PtzMoveCommandSchema, PtzOptionsSchema, PtzPositionSchema, PtzPresetSchema, PtzStatusSchema, QueryFilterSchema, RATE_CONTROL_RELAXED, RATE_CONTROL_TIGHT, REACHABILITY_FAILURES_TO_OFFLINE, REACHABILITY_POLL_INTERVAL_MS, REACHABILITY_PROBE_TIMEOUT_MS, RECOGNITION_TYPES, RECORDING_EXPORT_MAX_READ_BYTES, RESERVED_BINDING_NAMES, RESTORED_CAP_NAMES, RUNTIME_DEFAULTS, RUNTIME_STATE_POLICY, RUNTIME_TO_FORMAT, RawStateResultSchema, ReadGopBytesResultSchema, ReadSegmentBytesResultSchema, ReadinessRegistry, ReadinessTimeoutError, RecentTracksPageSchema, RecentTracksQueryInput, RecordingAvailabilitySchema, RecordingBandModeSchema, RecordingBandSchema, RecordingBandTriggersSchema, RecordingConfigSchema, RecordingDaysSchema, RecordingDeviceUsageSchema, RecordingLocationUsageSchema, RecordingManifestSchema, RecordingRangeSchema, RecordingRebalanceInputSchema, RecordingRebalanceMoveSchema, RecordingRebalancePlanSchema, RecordingRebalanceSkipReasonSchema, RecordingRebalanceSkipSchema, RecordingRetentionSchema, RecordingStatusSchema, RecordingStorageModeSchema, RecordingStorageUsageSchema, RecordingTriggersSchema, RecordingWeekdaySchema, RedirectLoginMethodSchema, RelocateFootageClassSchema, RelocateFootageInputSchema, RelocateJobSchema, RelocateJobStateSchema, RelocateMediaInputSchema, RenderedAsSchema, ReportMotionInputSchema, RetrainAnnotationDraftSchema, RetrainAnnotationKindSchema, RetrainAnnotationSchema, RetrainAnnotationSourceSchema, RetrainAssistResultSchema, RetrainAssistSubjectSchema, RetrainCopyRefusalSchema, RetrainFrameCandidateSchema, RetrainFrameListSchema, RetrainFrameSchema, RetrainFrameSelectionSchema, RetrainMacroClassSchema, RetrainStatusSchema, RetrainTrackSchema, RetrainTransitionResultSchema, RingBuffer, RtpSourceSchema, RtspRestreamEntrySchema, RunnerCameraConfigSchema, RunnerCameraDeviceUIFields, RunnerFrameSourceSchema, RunnerInferenceDeviceSchema, RunnerLocalLoadSchema, RunnerLocalMetricsSchema, SCOPE_PRESETS, SCRUB_THUMBNAIL_PRESETS, SCRUB_THUMBNAIL_PRESET_LABELS, SCRUB_THUMBNAIL_PRESET_ORDER, SENSOR_FEATURES, SENSOR_MAP, SOURCE_INFO_METADATA_KEY, STREAM_PROFILE_META, STREAM_QUALITY_LABELS, SUB_DETECTION_TYPES, SYSTEM_CAP_NAMES, SYSTEM_SCOPE_DEVICE_METHODS, SceneCheckSchema, SceneConditionSchema, SceneMonitorSchema, SceneMonitorStateSchema, SceneMonitorStatusSchema, SceneReferenceSchema, ScopedTokenSchema, ScopedTokenSummarySchema, ScoredObjectEventSchema, ScriptRunnerStatusSchema, ScrubThumbnailPresetSchema, SearchResultSchema, SendEmailInputSchema, SendEmailResultSchema, SendResultSchema, SensorEventSchema, ServerBootModeSchema, ServerPackageStatusSchema, ServerRollbackInfoSchema, ServerUpdateActionResultSchema, ServerUpdateCheckResultSchema, ServerUpdateStateSchema, SettingsPatchSchema, SettingsRecordSchema, SettingsSchemaWithValuesSchema, SettingsUpdateResultSchema, ShmRingStatsSchema, SmokeStatusSchema, SmtpStatusSchema, SnapshotImageSchema, SourceInfoSchema, SpatialDetectionSchema, SsoBridgeClaimsSchema, StartEmbeddedInputSchema, StationaryObjectSchema, AbortUploadInputSchema as StorageAbortUploadInputSchema, BeginDownloadInputSchema as StorageBeginDownloadInputSchema, BeginDownloadResultSchema as StorageBeginDownloadResultSchema, BeginUploadInputSchema as StorageBeginUploadInputSchema, BeginUploadResultSchema as StorageBeginUploadResultSchema, EndDownloadInputSchema as StorageEndDownloadInputSchema, FinalizeUploadInputSchema as StorageFinalizeUploadInputSchema, StorageLocationDeclarationSchema, StorageLocationRefSchema, StorageLocationSchema, StorageLocationTypeSchema, StorageMigrationClassSchema, StorageMigrationDestinationsSchema, StorageMigrationFootageMoveInputSchema, StorageMigrationInputSchema, StorageMigrationJobSchema, StorageMigrationLeaseInputSchema, StorageMigrationMediaMoveInputSchema, StorageMigrationMoveSchema, StorageMigrationParticipantSchema, StorageMigrationPhaseSchema, StorageMigrationPlanSchema, ProviderInfoSchema as StorageProviderInfoSchema, ReadChunkInputSchema as StorageReadChunkInputSchema, TestLocationResultSchema as StorageTestLocationResultSchema, WriteChunkInputSchema as StorageWriteChunkInputSchema, StreamCodecSchema, StreamFormatSchema, StreamNetworkStatsSchema, StreamParamsOptionsSchema, StreamParamsStatusSchema, StreamProfileConfigSchema, StreamProfileOptionsSchema, StreamProfilePatchSchema, StreamProfileSchema, StreamSourceEntrySchema, StreamSourceSchema, SubscribeAudioChunksInputSchema, SubscribeAudioChunksResultSchema, SubscribeFramesInputSchema, SubscribeFramesResultSchema, SwitchStatusSchema, SystemMetricsSchema, SystemMirror, TAXONOMY_COLORS, TIMELAPSE_DENSE_FLOOR_SEC, TIMEZONES, TRANSCODE_DOWN_MAX_BITRATE_KBPS, TRANSCODE_DOWN_MAX_HEIGHT, TamperStatusSchema, TankStatusSchema, TargetKindCapsSchema, TargetKindLevelSchema, TargetKindSchema, TargetSchema, TemperatureSensorStatusSchema, TerminalInstanceInfoSchema, TerminalLegacyCameraSchema, TerminalOutputBatchSchema, TerminalOutputEventSchema, TerminalProfileInfoSchema, TerminalSessionInfoSchema, TestConnectionResultSchema$1 as TestConnectionResultSchema, TestConnectionStatusEnum, TestResultSchema, TimelapseRuleInputSchema, TimelapseRulePatchSchema, TimelapseRuleSchema, TimelapseTemplateSchema, ToastSchema, TokenScopeSchema, TopologyNodeSchema, TopologyProcessSchema, TopologyServiceSchema, TrackCascadeCountsSchema, TrackEnvelopeSchema, TrackFlagsPatchSchema, TrackFlagsSchema, TrackProjectionSchema, TrackSchema, TrackSourceSchema, TrackStateSchema, TrackZoneFilterSchema, TrackedDetectionSchema, TrainingExportDeviceTotalsSchema, TrainingExportSummarySchema, TurnServerSchema, UNIT_TABLE, BrokerInfoSchema$1 as UnifiedBrokerInfoSchema, UnitConversionError, UpdateIntegrationInputSchema, UpdateStatusSchema, UpdateUserInputSchema, UserRecordSchema, UserSummarySchema, VacuumControlStatusSchema, VacuumStateSchema, ValveStateSchema, ValveStatusSchema, VectorDeclareIndexInputSchema, VectorDeleteByFilterInputSchema, VectorDeleteInputSchema, VectorDeleteResultSchema, VectorFilterSchema, VectorGetInputSchema, VectorGetResultSchema, VectorItemSchema, VectorMatchSchema, VectorMetadataSchema, VectorMetricSchema, VectorQueryInputSchema, VectorQueryResultSchema, VectorStatsInputSchema, VectorStatsResultSchema, VectorUpsertInputSchema, VectorUpsertResultSchema, VibrationStatusSchema, VideoEncodeSchema, WEBRTC_EGRESS_PROFILE, WELL_KNOWN_TABS, WELL_KNOWN_TAB_MAP, WaterHeaterStatusSchema, WeatherStatusSchema, WebrtcStreamChoiceSchema, WebrtcStreamTargetSchema, WhiteBalanceModeSchema, WidgetHostEnum, WidgetLoginMethodSchema, WidgetMetadataSchema, WidgetRemoteSchema, WidgetSizeEnum, YAMNET_TO_MACRO, ZoneCrossingDirectionSchema, ZoneCrossingSchema, ZoneKindEnum, ZoneRuleModeEnum, ZoneRuleSchema, ZoneRuleStageEnum, ZoneRulesArraySchema, ZoneSchema, ZoneScopeBreakdownSchema, accessoriesCapability, accessoryStableId, addonPagesCapability, addonPagesSourceCapability, addonRoutesCapability, addonSettingsCapability, addonWidgetsCapability, addonWidgetsSourceCapability, addonsCapability, adminUiCapability, airQualitySensorCapability, alarmPanelCapability, alertsCapability, ambientLightSensorCapability, asBoolean, asJsonArray, asJsonObject, asNumber, asString, assertTimelapseCadences, audioAnalysisCapability, audioAnalyzerCapability, audioCodecCapability, audioIsFailClosed, audioLabelChoices, audioMetricsCapability, audioOrDefaults, audioPlanFromEncodeProfile, authProviderCapability, autoAssignProfiles, automationControlCapability, backupCapability, bareAddonId, batteryCapability, bestLocationMatch, binaryCapability, bindAddonActions, brightnessCapability, brokerCapability, buildAddonRouteProvider, buildAudioArgs, buildEventKindDescriptor, buildFfmpegArgs, buildInputArgs, buildModelVariantGroups, buildNcTaxonomy, buildRoleScopes, buildStreamParamsConfigSchema, buildVideoArgs, buttonCapability, cameraCredentialsCapability, cameraPipelineConfigCapability, cameraStreamsCapability, canConvertUnit, canonicalEgressPlan, carbonMonoxideCapability, cellsToRects, classifyBearerPrincipal, classifyStream, classifyStreams, climateControlCapability, collectHydratedFieldEntries, collectHydratedFieldValues, colorCapability, colorForKind, compileExpression, compileExpressionSafe, composeSwitchedOff, conditionDepth, connectionTestCapability, connectivityCapability, consumablesCapability, contactCapability, controlCapability, convertUnit, coreBlockAddonId, coreBlockIdFromAddonId, coreBlocksCapability, cosineSimilarity, countConditionLeaves, coverCapability, createDeviceProxy, createDurableState, createEvent, createExpressionScope, createHwAccelCache, createLazyTrpcSource, createMirrorSource, createRuntimeStateBridge, createSliceHandle, createSystemProxy, customAction, customModelRegistryCapability, dataStoreProviderCapability, dayNightCapability, declarationOwnerNodeId, decodeVectorBase64, decoderCapability, defaultDeviceFor, defineCustomActions, deriveCameraSwitches, deriveDetailCropRect, deriveRecordingMode, describeModelVariant, detectAccessRole, detectionPipelineCapability, deviceAdoptionCapability, deviceBackendToFormat, deviceCustomAction, deviceDiscoveryCapability, deviceExportCapability, deviceManagerCapability, deviceMatchesProfile, deviceOpsCapability, deviceProviderCapability, deviceSelectorMatches, deviceStateCapability, deviceStatusCapability, doorbellCapability, egressTranscodeSharingKey, egressTransportFromRequest, embeddingEncoderCapability, emitDownForOwnedCaps, emitReadiness, encodeProfileFromStreamShape, encodeVectorBase64, enumSensorCapability, enumerateInferenceDevices, enumerateItemArrayFields, enumerateSchemaFields, errMsg, evaluateAst, evaluateExpressionSource, evaluateZoneRules, event, eventEmitterCapability, eventsCapability, expandCapMethods, extractNestedAddonId, extractSourceInfoFromMetadata, faceGalleryCapability, fanControlCapability, featureProbeCapability, filesystemBrowseCapability, findTimezone, floodCapability, formatForBackend, formatForRuntime, gasCapability, generateAutomationBlock, getAudioMacroClassIds, getByPath, getCapsByProviderKind, getTaxonomyEntry, hasMotionTrigger, hfModelUrl, htmlToText, humidifierCapability, humiditySensorCapability, hydrateSchema, imageCapability, imageSettingsCapability, integrationsCapability, intercomCapability, invocationFromEncodeProfile, isAgentOnlyPlacement, isArrayOutputSchema, isAudioLabelSelected, isBaseConditionKey, isCollectionArrayMethod, isDeployableToAgent, isDetectionMacroClass, isDeviceConfigCap, isDeviceScopedCap, isEvent, isIsolatedBuiltin, isNode, isObjectInput, isRestoredCap, isSameAddonId, isScheduleActive, isSoftwareDecode, isVoidInput, jobKindSchema, kebabToCamel, knownValues, lawnMowerControlCapability, lifecycleJobSchema, lifecycleJobScopeSchema, lifecycleJobStateSchema, lifecycleTaskSchema, llmCapability, llmRuntimeCapability, localNetworkCapability, locationSimilarity, lockControlCapability, logBannerArgs, logDestinationCapability, logLevelAtMost, loginMethodCapability, looseSchema, makeProfileBrokerId, makeSourceBrokerId, mapAudioLabelToMacro, markdownToHtmlLite, markdownToText, maskUrlCredentials, mediaPlayerCapability, mergeSourceInfo, meshNetworkCapability, method, methodAccessForHttpMethod, metricsProviderCapability, modelConvertCapability, modelDistributorCapability, modelFormatForRuntime, motionCapability, motionDetectionCapability, motionTriggerCapability, motionZonesCapability, mqttBrokerCapability, nativeObjectDetectionCapability, networkAccessCapability, networkQualityCapability, nodePin, nodesCapability, normalizeAddonInitResult, normalizeAudioLabel, normalizeTokenScopes, normalizeUnit, notificationOutputCapability, notificationRulesCapability, notifierCapability, numericSensorCapability, oauthIntegrationCapability, objectInputDeclaresAddonId, osdCapability, osdManagerCapability, parseCameraStreamConfig, parseExpression, parseJsonArray, parseJsonObject, parseJsonUnknown, parseProfileBrokerId, parseStreamParamsFormPatch, patchAudio, petFeederCapability, pickAccessoryControl, pickDetailCropConvention, pickNativeLeaseOverride, pickPreferredRtspEntry, pickVideoEncoder, pickerForCondition, pipelineAnalyticsCapability, pipelineExecutorCapability, pipelineOrchestratorCapability, pipelineRunnerCapability, plateGalleryCapability, platformProbeCapability, powerMeterCapability, prepareNotification, presenceCapability, pressureSensorCapability, principalMayReachAddon, privacyMaskCapability, procedureAuthKey, ptzAutotrackCapability, ptzCapability, pythonScriptForBackend, readDetailCropConvention, readDeviceStateFrom, readNativeLeaseOverride, readNodePin, readTimelapseGeneratedAt, readinessKey, rebootCapability, recordingCapability, recordingExportCapability, rectsToCells, requiresPython, resolveAddonExecution, resolveAddonGroup, resolveAddonPlacement, resolveAddonRuntime, resolveCapMount, resolveDetectionRuntime, resolveDeviceControlKind, resolveDeviceProfile, resolveEgressDecodeHwAccel, resolveFormat, resolveHydratedFieldValue, resolveModelFormat, resolveMutate, resolveRunnerId, resolveScrubThumbnailGeometry, resolveVariantModelId, resolveViewableDeviceIds, roleSpec, runInferenceStep, runtimeDevices, runtimeStatePolicyFor, sceneMonitorCapability, scopeInherits, scopeKey, scopesAllowAddon, scopesAllowDeviceCap, scoreRuntimes, scriptRunnerCapability, selectAssignedProfileSlots, serverManagementCapability, setByPath, settingsStoreCapability, sleep, sleepCancellable, smokeCapability, smtpProviderCapability, snapshotCapability, ssoBridgeCapability, startReachabilityPoll, stateVocabularyFor, storageCapability, storageEvictableCapability, storageMigrationCapability, storageProviderCapability, streamBrokerCapability, streamCatalogCapability, streamParamsCapability, streamPixels, streamQualityLabel, subKindsOf, summarisePrivacyAudio, summarizeEffectiveScope, supportedRuntimes, switchCapability, switchedOffIds, synthesizeSourceInfo, systemCapability, tamperCapability, taskLogEntrySchema, taskPhaseSchema, taskTargetSchema, temperatureSensorCapability, terminalSessionCapability, textToHtml, toDeviceSummary, toExpressionValue, toNodeId, toStreamSourceEntry, toastCapability, toggleAudioLabel, tokenize, transcodeBody, tryConvertUnit, turnProviderCapability, unitDimension, unitsForDimension, updateCapability, userManagementCapability, userPasskeysCapability, vacuumControlCapability, validateExpressionSource, validateRecipeBounds, valveCapability, vectorDimFromBase64, vectorStoreCapability, vibrationCapability, videoclipsCapability, viewerUiCapability, waterHeaterCapability, weatherCapability, webrtcClientHintsSchema, webrtcSessionCapability, wiringAddonHealthSchema, wiringHealthSnapshotSchema, wiringNodeHealthSchema, wiringProbeKindSchema, wiringProbeResultSchema, zodEntriesToConfigUI, zoneAnalyticsCapability, zoneRulesCapability, zonesCapability };
45225
+ export { ACCESSORY_LABEL, ACCESS_ROLES, ALEXA_EGRESS_PROFILE, ALL_CAPABILITY_DEFINITIONS, APPLE_SA_TO_MACRO, AUDIO_ANALYSIS_CAP_NAME, AUDIO_BACKEND_CHOICES, AUDIO_MACRO_LABELS, AUDIO_PRESETS, AccessoriesStatusSchema, AccessoryKind, AddBrokerInputSchema, AddonAutoUpdateSchema, AddonListItemSchema, AddonPageDeclarationSchema, AddonPageInfoSchema, AdoptInputSchema as AdoptionAdoptInputSchema, AdoptResultSchema as AdoptionAdoptResultSchema, AdoptionCandidateResultSchema, AdoptionFilterSchema, GetCandidateInputSchema as AdoptionGetCandidateInputSchema, AdoptionJobSchema, AdoptionJobStateSchema, ListCandidatesInputSchema as AdoptionListCandidatesInputSchema, ListCandidatesOutputSchema as AdoptionListCandidatesOutputSchema, AdoptionOutcomeSchema, ReleaseInputSchema as AdoptionReleaseInputSchema, AdoptionStatusSchema, AgentLoadSummarySchema, AirQualitySensorStatusSchema, AlarmArmModeSchema, AlarmPanelStatusSchema, AlarmStateSchema, AlertSchema, AlertSeveritySchema, AlertSourceSchema, AlertStatusSchema, AmbientLightSensorStatusSchema, ApiKeyRecordSchema, ApiKeySummarySchema, ArchiveEntrySchema, ArchiveManifestSchema, AttachmentMediaTypeSchema, AttachmentSchema, AudioAnalysisResultSchema, AudioAnalysisSettingsSchema, AudioChunkInputSchema, AudioClassSummarySchema, AudioClassificationLabelSchema, AudioClassificationResultSchema, AudioCodecInfoSchema, AudioDecodeSessionConfigSchema, AudioEncodeSchema, AudioEncodeSessionConfigSchema, AudioEncodedChunkSchema, AudioEventSchema, AudioLevelSchema, AudioMetricsHistoryPointSchema, AudioMetricsHistorySchema, AudioMetricsSnapshotSchema, AudioPcmChunkSchema, AuthResultSchema, AutoUpdateSettingsSchema, AutomationActionSchema, AutomationConditionOperatorSchema, AutomationConditionSchema, AutomationControlStatusSchema, AutomationRecipeSchema, AutomationTriggerSchema, AvailableIntegrationTypeSchema, BACKEND_TO_FORMAT, BASE_LIVE_EGRESS_PROFILE, BATTERY_DEVICE_PROFILE, BacklightModeSchema, BackupDestinationInfoSchema, BackupEntrySchema, BaseAddon, BaseDevice, BaseDeviceProvider, BatteryStatusSchema, BinaryStatusSchema, BoundingBoxSchema, BrightnessStatusSchema, AddInputSchema as BrokerAddInputSchema, BrokerAudioClientSchema, BrokerClientsSchema, BrokerConnectionDetailsSchema, BrokerConsumerAttributionSchema, BrokerConsumerKindSchema, BrokerDecodedClientSchema, BrokerEncodedClientSchema, GetStateInputSchema as BrokerGetStateInputSchema, BrokerInfoSchema, BrokerProviderInfoSchema, PublishInputSchema as BrokerPublishInputSchema, RegistryStatusSchema as BrokerRegistryStatusSchema, BrokerRtspClientSchema, BrokerStatsSchema, BrokerStatusEnum, BrokerStatusSchema, SubscribeInputSchema as BrokerSubscribeInputSchema, SubscribeResultSchema as BrokerSubscribeResultSchema, TestConnectionResultSchema as BrokerTestConnectionResultSchema, UnsubscribeInputSchema as BrokerUnsubscribeInputSchema, CAMERA_SWITCH_CATALOG, CAMERA_SWITCH_ORDER, CAM_PROFILE_ORDER, CAPABILITY_NAMES, CAPABILITY_ROUTER_KEYS, CAP_NAMES_WITH_STATUS, CAP_NODE_PIN_CONTEXT_KEY, CAP_PROVIDER_KIND_MAP, COCO_80_LABELS, COCO_TO_MACRO, CONNECTION_TEST_TIMEOUT_MS, CORE_BLOCKS_ADDON_ID, CORE_BLOCK_ADDON_PREFIX, CamProfileSchema, CamStreamDescriptorSchema, CamStreamKindSchema, CamStreamResolutionSchema, CameraAssignmentStatusSchema, CameraAudioStatusSchema, CameraBrokerProfileSchema, CameraBrokerStatusSchema, CameraCredentialsSchema, CameraCredentialsStatusSchema, CameraDecoderShmSchema, CameraDecoderStatusSchema, CameraDetectionPhaseSchema, CameraDetectionProvisioningSchema, CameraDetectionProvisioningStateSchema, CameraDetectionStatusSchema, CameraMetricsSchema, CameraMetricsWithDeviceIdSchema, CameraMotionStatusSchema, CameraRecordingModeSchema, CameraRecordingStatusSchema, CameraSourceStatusSchema, CameraSourceStreamSchema, CameraStatusDegradationReasonSchema, CameraStatusDegradationSchema, CameraStatusSchema, CameraStatusStageSchema, CameraStreamSchema, CameraSwitchAuthoritySchema, CameraSwitchGroupSchema, CameraSwitchIdSchema, CameraSwitchSchema, CameraSwitchUnavailableReasonSchema, CandidateQueryFilterSchema, CapScopeSchema, CapabilityBindingsSchema, CarbonMonoxideStatusSchema, ChargingStatus, ClientNetworkStatsSchema, ClimateControlStatusSchema, ClipPlaybackSchema, ClipSchema, ClusterAddonNodeDeploymentSchema, ClusterAddonStatusEntrySchema, CollectionColumnSchema, CollectionIndexSchema, ColorStatusSchema, ConfigEntrySchema, ConfigSectionWithValuesSchema, ConfigTabDeclarationSchema, ConnectionTestDescriptorSchema, ConnectionTestInputSchema, ConnectionTestOutcomeSchema, ConnectivityStatusSchema, ConsumableItemSchema, ConsumablesStatusSchema, ContactStatusSchema, ControlKindSchema, ControlStatusSchema, ConvertArtifactSchema, ConvertResultSchema, ConvertTargetSchema, CoreBlockCompileResultSchema, CoreBlockInputSchema, CoreBlockPlacementSchema, CoreBlockSchema, CoreBlockStatusSchema, CoverStateSchema, CoverStatusSchema, CreateApiKeyInputSchema, CreateApiKeyResultSchema, CreateIntegrationInputSchema, CreateScopedTokenInputSchema, CreateScopedTokenResultSchema, CreateUserInputSchema, CustomActionInputSchema, CustomModelDescriptorSchema, DATAPLANE_SECRET_HEADER, DECLARED_DEVICE_SWEEP_LIMIT, DECLARED_INTEGRATION_FIXED_KEY, DEFAULT_ADDON_PLACEMENT, DEFAULT_AUDIO_ANALYZER_CONFIG, DEFAULT_DECODER_HWACCEL_CONFIG, DEFAULT_DETAIL_CROP_CONVENTION, DEFAULT_EVENTS_BAND_BUFFER_SEC, DEFAULT_EVENT_COLOR, DEFAULT_FEATURES, DEFAULT_NATIVE_LEASE_SETTINGS, DEFAULT_RETENTION, DEFAULT_RUNTIME_STATE_DURABILITY, DEFAULT_SCRUB_THUMBNAIL_PRESET, DEFAULT_TIMELAPSE_PREVIEW_TEXT, DETAIL_CROP_PADDING_FIELD, DETAIL_CROP_PADDING_KEY, DETAIL_CROP_SECTION_ID, DETAIL_CROP_SQUARE_KEY, DETECTION_MACRO_CLASSES, DETECTION_PIPELINE_CAP_NAME, DEVICE_BACKEND_TO_FORMAT, DEVICE_CAP_NAMES, DEVICE_PROFILES, DEVICE_SCOPED_CAPS, DEVICE_SETTINGS_CONTRIBUTION_METHODS, DEVICE_STATE_READERS, DEVICE_STATUS_METHOD, DEVICE_TYPE_CONTROL_KIND, DEVICE_TYPE_INFO, EngineInfoSchema as DataStoreEngineInfoSchema, DayNightModeSchema, DayNightOptionsSchema, DayNightSettingsPatchSchema, DayNightStatusSchema, DeclaredDevices, DecodedAudioChunkSchema, DecodedFrameSchema, DecoderSessionConfigSchema, DecoderStatsSchema, DeleteIntegrationResultSchema, DetailCropConventionSchema, DetectionSourceSchema, DeviceCodeSeveritySchema, DeviceConfig, DeviceDiscoveryStatusSchema, ExposeInputSchema as DeviceExportExposeInputSchema, DeviceExportStatusSchema, UnexposeInputSchema as DeviceExportUnexposeInputSchema, DeviceFeature, DeviceInfoSchema, DeviceNetworkStatsSchema, DeviceRole, DeviceRuntimeState, DeviceSelectorSchema, DeviceStatusSchema, DeviceType, DiscoveredChildDeviceSchema, DiscoveredChildStatusSchema, DiscoveredDeviceSchema, DiscoveredTargetSchema, DisposerChain, DoorbellPressEventSchema, DoorbellStatusSchema, EVENTFUL_CAP_NAMES, EVENT_KIND_BY_CAP, EVENT_PAD_MS, EVENT_TAXONOMY, EXPORT_DENSE_MAX_RANGES, EXPRESSION_BUILTINS, EXPRESSION_BUILTIN_NAMES, EXPRESSION_COMPILE_CACHE_CAPACITY, EXPRESSION_IDENTIFIER_RE, EXPRESSION_INJECTED_NOW, EgressEncodeSchema, EgressRateControlSchema, EgressTranscodeRequestSchema, EgressTranscodeSchema, ElementConfigStore, EmbeddingInfoSchema, EmbeddingResultSchema, EncodeProfileSchema, EncodedPacketSchema, EnrichedWidgetMetadataSchema, EnumSensorDateTimeFormatSchema, EnumSensorStatusSchema, EventCategory, EventEmitterStatusSchema, EventFireSchema, EventItemSchema, EventKindCategorySchema, EventKindDescriptorSchema, EventKindIconSchema, EventKindSchema, EventKindsForDeviceSchema, EventMediaArtifactSchema, EventMediaCoverageSchema, EventMediaKindSchema, EventMediaProductionSchema, EventSourceType, ExportBytesSchema, ExportDenseRangeSchema, ExportDenseSchema, ExportDownloadSchema, ExportOptionsSchema, ExportRecordSchema, ExportSetupFieldSchema, ExportSetupSchema, ExportSpeedSchema, ExportStateSchema, ExportTimelapseSchema, ExposedDeviceSchema, ExposureModeSchema, ExpressionBindingSourceSchema, ExpressionEvalError, ExpressionFieldBindingSchema, ExpressionGlobalBindingSchema, ExpressionLiteralBindingSchema, ExpressionParseError, ExpressionSourceSchema, FanControlStatusSchema, FanDirectionSchema, FeatureManifestSchema, FeatureProbeStatusSchema, FloodStatusSchema, Fmp4BoxSplitter, FrameHandleFormatSchema, FrameHandleSchema, FrameInputSchema, GasStatusSchema, GetStreamWithCodecInputSchema, GlobalMetricsSchema, HAP_AUDIO_BASE, HAP_AUDIO_BITRATE_KBPS, HAP_AUDIO_VBV_KBITS, HAP_KEYFRAME_INTERVAL_SEC, HF_BASE_URL, HF_REPO, HWACCEL_OPTIONS, HealthStatusSchema, HistoryPointSchema, HistoryResolutionEnum, HumidifierStatusSchema, HumiditySensorStatusSchema, HvacModeSchema, ImageContractSchema, ImageContractStateSchema, ImageRotateSchema, ImageSettingsOptionsSchema, ImageSettingsPatchSchema, ImageSettingsStatusSchema, ImageStatusSchema, IngestOwnerSchema, InstalledPackageSchema, IntegrationLiteSchema, IntegrationWithStateSchema, IntercomAbilitySchema, IntercomStatusSchema, KNOWN_CAP_NAMES, KeyEventSchema, LOG_LEVEL_RANK, LabelAttributionSchema, LabelDefinitionSchema, LabelTierSchema, LawnMowerActivitySchema, LawnMowerControlStatusSchema, LinkedDeviceSchema, LinkedDevicesModeSchema, LlmDefaultSchema, LlmDefaultSelectorSchema, LlmErrorCodeSchema, LlmGenerateBaseInputSchema, LlmGenerateErrSchema, LlmGenerateOkSchema, LlmGenerateResultSchema, LlmImageSchema, LlmNodeModelSchema, LlmProfileKindDescriptorSchema, LlmProfileKindSchema, LlmProfileSchema, LlmRetryPolicySchema, LlmRuntimeCompleteInputSchema, LlmRuntimeDiskUsageSchema, LlmRuntimeNodeSchema, LlmRuntimeStatusSchema, LlmTimeoutDefaults, LlmUsageRollupSchema, LlmUsageSchema, LocateSegmentResultSchema, LocationStatSchema, LockControlStatusSchema, LockStateSchema, LogEntrySchema, LogLevelSchema, LogStreamEntrySchema, LoginMethodContributionSchema, LoginStageEnum, MACRO_LABELS, MAX_CONDITION_DEPTH, MAX_CONDITION_LEAVES, MAX_EXPRESSION_AST_NODES, MAX_EXPRESSION_BINDINGS, MAX_EXPRESSION_CALL_ARGS, MAX_EXPRESSION_EVAL_STEPS, MAX_EXPRESSION_SOURCE_LENGTH, METHOD_ACCESS_MAP, METHOD_DEVICE_SELECTORS, MODEL_FORMATS, MOTION_TRIGGER_FEATURE, ManagedModelCatalogEntrySchema, ManagedModelRefSchema, ManagedRuntimeConfigSchema, MaskGridDimsSchema, MaskGridShapeSchema, MaskLineShapeSchema, MaskPointSchema, MaskPolygonShapeSchema, MaskPolygonVerticesSchema, MaskRectShapeSchema, MaskShapeKindSchema, MaskShapeSchema, MediaFileInfoSchema, MediaFileSchema, MediaPlayerRepeatSchema, MediaPlayerStateSchema, MediaPlayerStatusSchema, MeshPeerSchema, MeshStatusSchema, MethodAccessSchema, ModelCatalogEntrySchema, ModelConvertInputSchema, ModelConvertMetadataSchema, ModelDistributeInputSchema, ModelDistributeResultSchema, ModelExtraFileSchema, ModelFormatEntrySchema, ModelFormatsSchema, ModelSubstitutionSchema, ModelVariantGroupSchema, MotionAnalysisResultSchema, MotionEventSchema, MotionOnMotionChangedDataSchema, MotionRegionSchema, MotionSourceEnum, MotionSourcesSchema, MotionStatusSchema, MotionTriggerRuntimeStateSchema, MotionTriggerStatusSchema, MotionZoneOptionsSchema, MotionZonePatchSchema, MotionZoneRegionSchema, MotionZoneStatusSchema, StatusSchema as MqttBrokerStatusSchema, MutationFilterSchema, NATIVE_LEASE_ACTIVITY_FIELD, NATIVE_LEASE_ACTIVITY_KEY, NATIVE_LEASE_ADMISSION_FIELD, NATIVE_LEASE_ADMISSION_KEY, NATIVE_LEASE_BUDGET_FIELD, NATIVE_LEASE_BUDGET_KEY, NATIVE_LEASE_HOLD_FIELD, NATIVE_LEASE_HOLD_KEY, NATIVE_LEASE_SECTION_ID, NATIVE_LEASE_TILE_BUDGET_FIELD, NATIVE_LEASE_TILE_BUDGET_KEY, NC_ALARM_SYSTEM_EVENT_KINDS, NC_AUDIO_DBFS_FLOOR, NC_AUDIO_DB_MAX, NC_AUDIO_DB_MIN, NC_AUDIO_DB_OFFERED, NC_AUDIO_DB_STEP, NC_AUDIO_DEFAULTS, NC_AUDIO_HIT_PERCENT_MAX, NC_AUDIO_HIT_PERCENT_MIN, NC_AUDIO_SAMPLING_MAX_SEC, NC_AUDIO_SAMPLING_MIN_SEC, NC_AUTHORABLE_SYSTEM_EVENT_KINDS, NC_BASE_CONDITION_KEYS, NC_CONDITION_CATALOG, NC_CONFIRM_DEFAULT_MAX_IMAGE_PX, NC_CONFIRM_DEFAULT_TIMEOUT_MS, NC_CONFIRM_MAX_TIMEOUT_MS, NC_CONFIRM_MIN_TIMEOUT_MS, NC_DEFAULT_SNOOZE_MINUTES, NC_HISTORY_LIMIT_DEFAULT, NC_HISTORY_LIMIT_MAX, NC_MAX_PER_TRACK_IMMEDIATE, NC_SNOOZE_MAX_MINUTES, NC_TAXONOMY, NativeCropBboxSchema, NativeCropRefSchema, NativeCropResultSchema, NativeDetectionSchema, NativeLeaseAdmissionSchema, NativeLeaseSettingsSchema, NativeObjectClassEnum, NativeObjectDetectionRuntimeStateSchema, NativeObjectDetectionStatusSchema, NcAlarmConfigSchema, NcAlarmModeCoverageSchema, NcAlarmSettingsPatchSchema, NcAlarmSettingsSchema, NcAlarmSkipReasonSchema, NcAlarmSkippedDeviceSchema, NcAudioConditionSchema, NcConditionDescriptorSchema, NcConditionsSchema, NcConfirmExpectSchema, NcConfirmSchema, NcCrossingSchema, NcDeliverySchema, NcDeviceStateConditionSchema, NcHistoryEntrySchema, NcHistoryFilterSchema, NcHistoryRecordKindSchema, NcHistoryStatusSchema, NcHistorySubjectSchema, NcMediaFrameSchema, NcMediaPolicySchema, NcOccupancyConditionSchema, NcPlateMatcherSchema, NcRuleActionSchema, NcRuleActionSequenceSchema, NcRuleActionsSchema, NcRuleInputSchema, NcRuleNotificationButtonSchema, NcRulePatchSchema, NcRuleSchema, NcRuleTargetSchema, NcScheduleSchema, NcScheduleWindowSchema, NcSnoozeInputSchema, NcSnoozeSchema, NcSnoozeScopeSchema, NcSnoozeSuppressedSchema, NcSystemEventConditionSchema, NcSystemEventKindSchema, NcTaxonomyEntrySchema, NcTaxonomySchema, NcTestResultSchema, NcThrottleGranularitySchema, NcThrottleSchema, NcZoneConditionSchema, NetworkAccessStatusSchema, NetworkAddressSchema, NetworkEndpointSchema, NotificationActionIconSchema, NotificationActionSchema, NotificationFormatSchema, NotificationSchema, NotifierStatusSchema, NumericSensorStatusSchema, OPS_LOG_DEFAULT_LIMIT, OPS_LOG_RING_DEFAULT_MAX, OauthIntegrationDescriptorSchema, ObjectEventSchema, OpsLogDomainSchema, OpsLogEntrySchema, OpsLogOpSchema, OpsLogQueryInputSchema, OpsLogReasonSchema, OrchestratorMetricsSchema, OsdOverlayKindEnum, OsdOverlayPatchSchema, OsdOverlaySchema, OsdPositionEnum, OsdRenderOutcomeEnum, OsdRenderResultSchema, OsdSlotBindingSchema, OsdSlotViewSchema, OsdSourceOptionSchema, OsdSourceSchema, OsdSourceValueTypeEnum, OsdStatusSchema, PET_FEEDER_MANUAL_FEED_MAX, PET_FEEDER_MANUAL_FEED_MIN, PIPELINE_FLOW_CAPABILITY_NAMES, PIPELINE_OWNER_CAPABILITY_NAMES, PRIVACY_MASK_CAP_NAME, PROVIDER_KIND_CAP_NAMES, PYTHON_SCRIPT, PackageUpdateSchema, PackageVersionInfoSchema, PasskeyLoginMethodSchema, PasskeySummarySchema, PcmSampleFormatSchema, PerScopeBreakdownSchema, PetFeederStatusSchema, PickStreamPreferencesSchema, PickStreamRequirementsSchema, PickedCamStreamSchema, PipelineAssignmentSchema, PipelineDefaultStepSchema, PipelineEngineChoiceSchema, PipelineRunResultBridge, PipelineStepInputSchema, PipelineValidationIssueSchema, PipelineValidationResultSchema, PlaceholderReasonSchema, PolygonPointSchema, PowerMeterStatusSchema, PresenceStatusSchema, PressureSensorStatusSchema, PrivacyMaskOptionsSchema, PrivacyMaskPatchSchema, PrivacyMaskRegionSchema, PrivacyMaskShapeSchema, PrivacyMaskStatusSchema, ProfileRtspEntrySchema, ProfileSlotSchema, ProfileSlotStatusSchema, ProviderStatusSchema, PtzAutotrackRuntimeStateSchema, PtzAutotrackSettingsSchema, PtzAutotrackStatusSchema, PtzAutotrackTargetOptionSchema, PtzMoveCommandSchema, PtzOptionsSchema, PtzPositionSchema, PtzPresetSchema, PtzStatusSchema, QueryFilterSchema, RATE_CONTROL_RELAXED, RATE_CONTROL_TIGHT, REACHABILITY_FAILURES_TO_OFFLINE, REACHABILITY_POLL_INTERVAL_MS, REACHABILITY_PROBE_TIMEOUT_MS, RECOGNITION_TYPES, RECORDING_EXPORT_MAX_READ_BYTES, RESERVED_BINDING_NAMES, RESTORED_CAP_NAMES, RUNTIME_DEFAULTS, RUNTIME_STATE_POLICY, RUNTIME_TO_FORMAT, RawStateResultSchema, ReadGopBytesResultSchema, ReadSegmentBytesResultSchema, ReadinessRegistry, ReadinessTimeoutError, RecentTracksPageSchema, RecentTracksQueryInput, RecordingAvailabilitySchema, RecordingBandModeSchema, RecordingBandSchema, RecordingBandTriggersSchema, RecordingConfigSchema, RecordingDaysSchema, RecordingDeviceUsageSchema, RecordingLocationUsageSchema, RecordingManifestSchema, RecordingRangeSchema, RecordingRebalanceInputSchema, RecordingRebalanceMoveSchema, RecordingRebalancePlanSchema, RecordingRebalanceSkipReasonSchema, RecordingRebalanceSkipSchema, RecordingRetentionSchema, RecordingStatusSchema, RecordingStorageModeSchema, RecordingStorageUsageSchema, RecordingTriggersSchema, RecordingWeekdaySchema, RedirectLoginMethodSchema, RelocateFootageClassSchema, RelocateFootageInputSchema, RelocateJobSchema, RelocateJobStateSchema, RelocateMediaInputSchema, RenderedAsSchema, ReportMotionInputSchema, RetrainAnnotationDraftSchema, RetrainAnnotationKindSchema, RetrainAnnotationSchema, RetrainAnnotationSourceSchema, RetrainAssistResultSchema, RetrainAssistSubjectSchema, RetrainCopyRefusalSchema, RetrainFrameCandidateSchema, RetrainFrameListSchema, RetrainFrameSchema, RetrainFrameSelectionSchema, RetrainMacroClassSchema, RetrainStatusSchema, RetrainTrackSchema, RetrainTransitionResultSchema, RingBuffer, RtpSourceSchema, RtspRestreamEntrySchema, RunnerCameraConfigSchema, RunnerCameraDeviceUIFields, RunnerFrameSourceSchema, RunnerInferenceDeviceSchema, RunnerLocalLoadSchema, RunnerLocalMetricsSchema, SCENE_CONDITIONS, SCENE_CONFIRM_DEFAULT_MAX_IMAGE_PX, SCENE_CONFIRM_DEFAULT_TIMEOUT_MS, SCENE_DEFAULT_ANCHOR_THRESHOLD, SCENE_DEFAULT_CHECK_INTERVAL_SEC, SCENE_DEFAULT_OBSERVATION_SPACING_SEC, SCENE_DEFAULT_QUIET_SECONDS, SCENE_DIVERGED, SCENE_RESET_RECAPTURES, SCOPE_PRESETS, SCRUB_THUMBNAIL_PRESETS, SCRUB_THUMBNAIL_PRESET_LABELS, SCRUB_THUMBNAIL_PRESET_ORDER, SENSOR_FEATURES, SENSOR_MAP, SOURCE_INFO_METADATA_KEY, STREAM_PROFILE_META, STREAM_QUALITY_LABELS, SUB_DETECTION_TYPES, SYSTEM_CAP_NAMES, SYSTEM_SCOPE_DEVICE_METHODS, SceneCheckSchema, SceneConditionSchema, SceneConfirmSchema, SceneMonitorSchema, SceneMonitorStateSchema, SceneMonitorStatusSchema, SceneReferenceSchema, SceneUnavailableSchema, SceneVerdictSchema, ScopedTokenSchema, ScopedTokenSummarySchema, ScoredObjectEventSchema, ScriptRunnerStatusSchema, ScrubThumbnailPresetSchema, SearchResultSchema, SendEmailInputSchema, SendEmailResultSchema, SendResultSchema, SensorEventSchema, ServerBootModeSchema, ServerPackageStatusSchema, ServerRollbackInfoSchema, ServerUpdateActionResultSchema, ServerUpdateCheckResultSchema, ServerUpdateStateSchema, SetSiteLocationInputSchema, SettingsPatchSchema, SettingsRecordSchema, SettingsSchemaWithValuesSchema, SettingsUpdateResultSchema, ShmRingStatsSchema, SiteLocationSchema, SiteLocationSourceSchema, SiteLocationStatusSchema, SmokeStatusSchema, SmtpStatusSchema, SnapshotImageSchema, SourceInfoSchema, SpatialDetectionSchema, SsoBridgeClaimsSchema, StartEmbeddedInputSchema, StationaryObjectSchema, AbortUploadInputSchema as StorageAbortUploadInputSchema, BeginDownloadInputSchema as StorageBeginDownloadInputSchema, BeginDownloadResultSchema as StorageBeginDownloadResultSchema, BeginUploadInputSchema as StorageBeginUploadInputSchema, BeginUploadResultSchema as StorageBeginUploadResultSchema, EndDownloadInputSchema as StorageEndDownloadInputSchema, FinalizeUploadInputSchema as StorageFinalizeUploadInputSchema, StorageLocationDeclarationSchema, StorageLocationRefSchema, StorageLocationSchema, StorageLocationTypeSchema, StorageMigrationClassSchema, StorageMigrationDestinationsSchema, StorageMigrationFootageMoveInputSchema, StorageMigrationInputSchema, StorageMigrationJobSchema, StorageMigrationLeaseInputSchema, StorageMigrationMediaMoveInputSchema, StorageMigrationMoveSchema, StorageMigrationParticipantSchema, StorageMigrationPhaseSchema, StorageMigrationPlanSchema, ProviderInfoSchema as StorageProviderInfoSchema, ReadChunkInputSchema as StorageReadChunkInputSchema, TestLocationResultSchema as StorageTestLocationResultSchema, WriteChunkInputSchema as StorageWriteChunkInputSchema, StreamCodecSchema, StreamFormatSchema, StreamNetworkStatsSchema, StreamParamsOptionsSchema, StreamParamsStatusSchema, StreamProfileConfigSchema, StreamProfileOptionsSchema, StreamProfilePatchSchema, StreamProfileSchema, StreamSourceEntrySchema, StreamSourceSchema, SubscribeAudioChunksInputSchema, SubscribeAudioChunksResultSchema, SubscribeFramesInputSchema, SubscribeFramesResultSchema, SwitchStatusSchema, SystemMetricsSchema, SystemMirror, TAXONOMY_COLORS, TIMELAPSE_DENSE_FLOOR_SEC, TIMEZONES, TRANSCODE_DOWN_MAX_BITRATE_KBPS, TRANSCODE_DOWN_MAX_HEIGHT, TamperStatusSchema, TankStatusSchema, TargetKindCapsSchema, TargetKindLevelSchema, TargetKindSchema, TargetSchema, TemperatureSensorStatusSchema, TerminalInstanceInfoSchema, TerminalLegacyCameraSchema, TerminalOutputBatchSchema, TerminalOutputEventSchema, TerminalProfileInfoSchema, TerminalSessionInfoSchema, TestConnectionResultSchema$1 as TestConnectionResultSchema, TestConnectionStatusEnum, TestResultSchema, TimelapseRuleInputSchema, TimelapseRulePatchSchema, TimelapseRuleSchema, TimelapseTemplateSchema, ToastSchema, TokenScopeSchema, TopologyNodeSchema, TopologyProcessSchema, TopologyServiceSchema, TrackCascadeCountsSchema, TrackEnvelopeSchema, TrackFlagsPatchSchema, TrackFlagsSchema, TrackProjectionSchema, TrackSchema, TrackSourceSchema, TrackStateSchema, TrackZoneFilterSchema, TrackedDetectionSchema, TrainingExportDeviceTotalsSchema, TrainingExportSummarySchema, TurnServerSchema, UNIT_TABLE, BrokerInfoSchema$1 as UnifiedBrokerInfoSchema, UnitConversionError, UpdateIntegrationInputSchema, UpdateStatusSchema, UpdateUserInputSchema, UserRecordSchema, UserSummarySchema, VacuumControlStatusSchema, VacuumStateSchema, ValveStateSchema, ValveStatusSchema, VectorDeclareIndexInputSchema, VectorDeleteByFilterInputSchema, VectorDeleteInputSchema, VectorDeleteResultSchema, VectorFilterSchema, VectorGetInputSchema, VectorGetResultSchema, VectorItemSchema, VectorMatchSchema, VectorMetadataSchema, VectorMetricSchema, VectorQueryInputSchema, VectorQueryResultSchema, VectorStatsInputSchema, VectorStatsResultSchema, VectorUpsertInputSchema, VectorUpsertResultSchema, VibrationStatusSchema, VideoEncodeSchema, WEBRTC_EGRESS_PROFILE, WELL_KNOWN_TABS, WELL_KNOWN_TAB_MAP, WaterHeaterStatusSchema, WeatherStatusSchema, WebrtcStreamChoiceSchema, WebrtcStreamTargetSchema, WhiteBalanceModeSchema, WidgetHostEnum, WidgetLoginMethodSchema, WidgetMetadataSchema, WidgetRemoteSchema, WidgetSizeEnum, YAMNET_TO_MACRO, ZoneCrossingDirectionSchema, ZoneCrossingSchema, ZoneKindEnum, ZoneRuleModeEnum, ZoneRuleSchema, ZoneRuleStageEnum, ZoneRulesArraySchema, ZoneSchema, ZoneScopeBreakdownSchema, accessoriesCapability, accessoryStableId, addonPagesCapability, addonPagesSourceCapability, addonRoutesCapability, addonSettingsCapability, addonWidgetsCapability, addonWidgetsSourceCapability, addonsCapability, adminUiCapability, airQualitySensorCapability, alarmPanelCapability, alertsCapability, ambientLightSensorCapability, asBoolean, asJsonArray, asJsonObject, asNumber, asString, assertTimelapseCadences, audioAnalysisCapability, audioAnalyzerCapability, audioCodecCapability, audioIsFailClosed, audioLabelChoices, audioMetricsCapability, audioModeOf, audioOrDefaults, audioPlanFromEncodeProfile, authProviderCapability, autoAssignProfiles, automationControlCapability, backupCapability, bareAddonId, batteryCapability, bestLocationMatch, binaryCapability, bindAddonActions, brightnessCapability, brokerCapability, buildAddonRouteProvider, buildAudioArgs, buildEventKindDescriptor, buildFfmpegArgs, buildInputArgs, buildModelVariantGroups, buildNcTaxonomy, buildRoleScopes, buildStreamParamsConfigSchema, buildVideoArgs, buttonCapability, cameraCredentialsCapability, cameraPipelineConfigCapability, cameraStreamsCapability, canConvertUnit, canonicalEgressPlan, carbonMonoxideCapability, cellsToRects, classifyBearerPrincipal, classifyStream, classifyStreams, climateControlCapability, collectHydratedFieldEntries, collectHydratedFieldValues, colorCapability, colorForKind, compileExpression, compileExpressionSafe, composeSwitchedOff, conditionDepth, connectionTestCapability, connectivityCapability, consumablesCapability, contactCapability, controlCapability, convertUnit, coreBlockAddonId, coreBlockIdFromAddonId, coreBlocksCapability, cosineSimilarity, countConditionLeaves, coverCapability, createDeviceProxy, createDurableState, createEvent, createExpressionScope, createHwAccelCache, createLazyTrpcSource, createMirrorSource, createRuntimeStateBridge, createSliceHandle, createSystemProxy, customAction, customModelRegistryCapability, dataStoreProviderCapability, dayNightCapability, declarationOwnerNodeId, decodeVectorBase64, decoderCapability, defaultDeviceFor, defineCustomActions, deriveCameraSwitches, deriveDetailCropRect, deriveRecordingMode, describeModelVariant, detectAccessRole, detectionPipelineCapability, deviceAdoptionCapability, deviceBackendToFormat, deviceCustomAction, deviceDiscoveryCapability, deviceExportCapability, deviceManagerCapability, deviceMatchesProfile, deviceOpsCapability, deviceProviderCapability, deviceSelectorMatches, deviceStateCapability, deviceStatusCapability, doorbellCapability, egressTranscodeSharingKey, egressTransportFromRequest, embeddingEncoderCapability, emitDownForOwnedCaps, emitReadiness, encodeProfileFromStreamShape, encodeVectorBase64, enumSensorCapability, enumerateInferenceDevices, enumerateItemArrayFields, enumerateSchemaFields, errMsg, evaluateAst, evaluateExpressionSource, evaluateZoneRules, event, eventEmitterCapability, eventsCapability, expandCapMethods, extractNestedAddonId, extractSourceInfoFromMetadata, faceGalleryCapability, fanControlCapability, featureProbeCapability, filesystemBrowseCapability, findTimezone, floodCapability, formatForBackend, formatForRuntime, gasCapability, generateAutomationBlock, getAudioMacroClassIds, getByPath, getCapsByProviderKind, getTaxonomyEntry, hasMotionTrigger, hfModelUrl, htmlToText, humidifierCapability, humiditySensorCapability, hydrateSchema, imageCapability, imageSettingsCapability, integrationsCapability, intercomCapability, invocationFromEncodeProfile, isAgentOnlyPlacement, isArrayOutputSchema, isAudioLabelSelected, isBaseConditionKey, isCollectionArrayMethod, isDeployableToAgent, isDetectionMacroClass, isDeviceConfigCap, isDeviceScopedCap, isEvent, isIsolatedBuiltin, isNode, isObjectInput, isRestoredCap, isSameAddonId, isScheduleActive, isSoftwareDecode, isVoidInput, jobKindSchema, kebabToCamel, knownValues, lawnMowerControlCapability, lifecycleJobSchema, lifecycleJobScopeSchema, lifecycleJobStateSchema, lifecycleTaskSchema, llmCapability, llmRuntimeCapability, localNetworkCapability, locationSimilarity, lockControlCapability, logBannerArgs, logDestinationCapability, logLevelAtMost, loginMethodCapability, looseSchema, makeProfileBrokerId, makeSourceBrokerId, mapAudioLabelToMacro, markdownToHtmlLite, markdownToText, maskUrlCredentials, mediaPlayerCapability, mergeSourceInfo, meshNetworkCapability, method, methodAccessForHttpMethod, metricsProviderCapability, modelConvertCapability, modelDistributorCapability, modelFormatForRuntime, motionCapability, motionDetectionCapability, motionTriggerCapability, motionZonesCapability, mqttBrokerCapability, nativeObjectDetectionCapability, networkAccessCapability, networkQualityCapability, nodePin, nodesCapability, normalizeAddonInitResult, normalizeAudioLabel, normalizeTokenScopes, normalizeUnit, notificationOutputCapability, notificationRulesCapability, notifierCapability, numericSensorCapability, oauthIntegrationCapability, objectInputDeclaresAddonId, osdCapability, osdManagerCapability, parseCameraStreamConfig, parseExpression, parseJsonArray, parseJsonObject, parseJsonUnknown, parseProfileBrokerId, parseStreamParamsFormPatch, patchAudio, petFeederCapability, pickAccessoryControl, pickDetailCropConvention, pickNativeLeaseOverride, pickPreferredRtspEntry, pickVideoEncoder, pickerForCondition, pipelineAnalyticsCapability, pipelineExecutorCapability, pipelineOrchestratorCapability, pipelineRunnerCapability, plateGalleryCapability, platformProbeCapability, powerMeterCapability, prepareNotification, presenceCapability, pressureSensorCapability, principalMayReachAddon, privacyMaskCapability, procedureAuthKey, ptzAutotrackCapability, ptzCapability, pythonScriptForBackend, readDetailCropConvention, readDeviceStateFrom, readNativeLeaseOverride, readNodePin, readTimelapseGeneratedAt, readinessKey, rebootCapability, recordingCapability, recordingExportCapability, rectsToCells, requiresPython, resolveAddonExecution, resolveAddonGroup, resolveAddonPlacement, resolveAddonRuntime, resolveCapMount, resolveDetectionRuntime, resolveDeviceControlKind, resolveDeviceProfile, resolveEgressDecodeHwAccel, resolveFormat, resolveHydratedFieldValue, resolveModelFormat, resolveMutate, resolveRunnerId, resolveScrubThumbnailGeometry, resolveVariantModelId, resolveViewableDeviceIds, roleSpec, runInferenceStep, runtimeDevices, runtimeStatePolicyFor, sceneMonitorCapability, scopeInherits, scopeKey, scopesAllowAddon, scopesAllowDeviceCap, scoreRuntimes, scriptRunnerCapability, selectAssignedProfileSlots, serverManagementCapability, setByPath, settingsStoreCapability, sleep, sleepCancellable, smokeCapability, smtpProviderCapability, snapshotCapability, ssoBridgeCapability, startReachabilityPoll, stateVocabularyFor, storageCapability, storageEvictableCapability, storageMigrationCapability, storageProviderCapability, streamBrokerCapability, streamCatalogCapability, streamParamsCapability, streamPixels, streamQualityLabel, subKindsOf, summarisePrivacyAudio, summarizeEffectiveScope, supportedRuntimes, switchCapability, switchedOffIds, synthesizeSourceInfo, systemCapability, tamperCapability, taskLogEntrySchema, taskPhaseSchema, taskTargetSchema, temperatureSensorCapability, terminalSessionCapability, textToHtml, toDeviceSummary, toExpressionValue, toNodeId, toStreamSourceEntry, toastCapability, toggleAudioLabel, tokenize, transcodeBody, tryConvertUnit, turnProviderCapability, unitDimension, unitsForDimension, updateCapability, userManagementCapability, userPasskeysCapability, vacuumControlCapability, validateExpressionSource, validateRecipeBounds, valveCapability, vectorDimFromBase64, vectorStoreCapability, vibrationCapability, videoclipsCapability, viewerUiCapability, waterHeaterCapability, weatherCapability, webrtcClientHintsSchema, webrtcSessionCapability, wiringAddonHealthSchema, wiringHealthSnapshotSchema, wiringNodeHealthSchema, wiringProbeKindSchema, wiringProbeResultSchema, zodEntriesToConfigUI, zoneAnalyticsCapability, zoneRulesCapability, zonesCapability };