@camstack/addon-decoder-nodeav 1.2.16 → 1.2.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/dist/index.js +2690 -85
  2. package/dist/index.mjs +2690 -85
  3. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  import { randomUUID } from "node:crypto";
2
- //#region ../types/dist/event-category-Cv9dO26A.mjs
2
+ //#region ../types/dist/event-category-Bxo5yJjt.mjs
3
3
  var EventCategory = /* @__PURE__ */ function(EventCategory) {
4
4
  EventCategory["SystemBoot"] = "system.boot";
5
5
  EventCategory["SystemAddonsReady"] = "system.addons-ready";
@@ -206,6 +206,33 @@ var EventCategory = /* @__PURE__ */ function(EventCategory) {
206
206
  EventCategory["PipelineCameraAssigned"] = "pipeline.camera-assigned";
207
207
  EventCategory["PipelineCameraUnassigned"] = "pipeline.camera-unassigned";
208
208
  /**
209
+ * A node the orchestrator would otherwise place cameras on has NO usable
210
+ * inference device: the operator enabled one or more accelerators there and
211
+ * the live probe reports every one of them unavailable. Emitted once per
212
+ * TRANSITION into that state (never per dispatch), and the node is dropped
213
+ * from the placement candidate set for as long as it holds.
214
+ *
215
+ * This exists because the state was previously invisible: little-unraid
216
+ * absorbed 283k inference errors in a day while still being handed cameras,
217
+ * and nothing in the system said so.
218
+ *
219
+ * A node with no accelerators configured at all is NOT this — its devices
220
+ * are `disabled`, not `unavailable`, and the runner's default CPU pool
221
+ * serves it exactly as before.
222
+ */
223
+ EventCategory["PipelineNodeInferenceUnavailable"] = "pipeline.node-inference-unavailable";
224
+ /**
225
+ * A camera has an OPEN detection session and has produced no detection at
226
+ * all for longer than the blind threshold — the camera is being decoded and
227
+ * inferred and is returning nothing. Emitted once per transition into blind,
228
+ * per camera.
229
+ *
230
+ * The failure it reports: a 1h43 detection blackout on the entrance camera
231
+ * that nobody noticed, because "a camera that detects nothing" and "a quiet
232
+ * camera" produce byte-identical silence.
233
+ */
234
+ EventCategory["PipelineDetectionBlind"] = "pipeline.detection-blind";
235
+ /**
209
236
  * Per-camera pipeline config was mutated by the orchestrator
210
237
  * (3-level settings change via `setAgentAddonDefaults` /
211
238
  * `setCameraStepToggle` / `setCameraPipelineForAgent` or a
@@ -2997,6 +3024,9 @@ function handlePipeResult(left, next, ctx) {
2997
3024
  fallback: left.fallback
2998
3025
  }, ctx);
2999
3026
  }
3027
+ var $ZodPreprocess = /*@__PURE__*/ $constructor("$ZodPreprocess", (inst, def) => {
3028
+ $ZodPipe.init(inst, def);
3029
+ });
3000
3030
  var $ZodReadonly = /*@__PURE__*/ $constructor("$ZodReadonly", (inst, def) => {
3001
3031
  $ZodType.init(inst, def);
3002
3032
  defineLazy(inst._zod, "propValues", () => def.innerType._zod.propValues);
@@ -5182,6 +5212,10 @@ function pipe(in_, out) {
5182
5212
  out
5183
5213
  });
5184
5214
  }
5215
+ var ZodPreprocess = /*@__PURE__*/ $constructor("ZodPreprocess", (inst, def) => {
5216
+ ZodPipe.init(inst, def);
5217
+ $ZodPreprocess.init(inst, def);
5218
+ });
5185
5219
  var ZodReadonly = /*@__PURE__*/ $constructor("ZodReadonly", (inst, def) => {
5186
5220
  $ZodReadonly.init(inst, def);
5187
5221
  ZodType.init(inst, def);
@@ -5240,6 +5274,13 @@ function _instanceof(cls, params = {}) {
5240
5274
  };
5241
5275
  return inst;
5242
5276
  }
5277
+ function preprocess(fn, schema) {
5278
+ return new ZodPreprocess({
5279
+ type: "pipe",
5280
+ in: transform(fn),
5281
+ out: schema
5282
+ });
5283
+ }
5243
5284
  //#endregion
5244
5285
  //#region ../../node_modules/zod/v4/classic/compat.js
5245
5286
  /** @deprecated Use the raw string literal codes instead, e.g. "invalid_type". */
@@ -10807,6 +10848,8 @@ var QueryFilterSchema = object({
10807
10848
  where: record(string(), unknown()).optional(),
10808
10849
  whereIn: record(string(), array(unknown())).optional(),
10809
10850
  whereBetween: record(string(), tuple([unknown(), unknown()])).optional(),
10851
+ /** NULL-safe exclusion: matches rows whose field is NULL OR != the value. */
10852
+ whereNot: record(string(), unknown()).optional(),
10810
10853
  orderBy: object({
10811
10854
  field: string(),
10812
10855
  direction: _enum(["asc", "desc"])
@@ -10826,7 +10869,8 @@ var QueryFilterSchema = object({
10826
10869
  var MutationFilterSchema = object({
10827
10870
  where: record(string(), unknown()).optional(),
10828
10871
  whereIn: record(string(), array(unknown())).optional(),
10829
- whereBetween: record(string(), tuple([unknown(), unknown()])).optional()
10872
+ whereBetween: record(string(), tuple([unknown(), unknown()])).optional(),
10873
+ whereNot: record(string(), unknown()).optional()
10830
10874
  });
10831
10875
  /** A single stored record: `{ id, data }`. */
10832
10876
  var SettingsRecordSchema = object({
@@ -12276,6 +12320,17 @@ var LlmImageSchema = object({
12276
12320
  bytes: _instanceof(Uint8Array),
12277
12321
  mimeType: string()
12278
12322
  });
12323
+ /**
12324
+ * Retry policy. `enabled: false` is NOT the same as `maxAttempts: 1` in intent —
12325
+ * the flag is what a consumer table flips, the count is what the operator tunes.
12326
+ * A retry doubles the wall time of a call, so the two gates that run inside a
12327
+ * notification's budget keep it off (see `CONSUMER_RETRY_POLICY` in addon-ai).
12328
+ */
12329
+ var LlmRetryPolicySchema = object({
12330
+ enabled: boolean().default(false),
12331
+ /** Total attempts INCLUDING the first. 1 = no retry. */
12332
+ maxAttempts: number().int().min(1).max(5).default(1)
12333
+ });
12279
12334
  var LlmGenerateBaseInputSchema = object({
12280
12335
  /** Collection routing (the notification-output posture). */
12281
12336
  addonId: string().optional(),
@@ -12290,7 +12345,28 @@ var LlmGenerateBaseInputSchema = object({
12290
12345
  jsonSchema: record(string(), unknown()).optional(),
12291
12346
  /** Per-call override of the profile default. */
12292
12347
  maxTokens: number().int().positive().optional(),
12293
- temperature: number().optional()
12348
+ temperature: number().optional(),
12349
+ /** Per-call override of the profile default (nucleus sampling). */
12350
+ topP: number().min(0).max(1).optional(),
12351
+ /** Per-call override of the profile default (top-k sampling). */
12352
+ topK: number().int().positive().optional(),
12353
+ /** Per-call override of `profile.timeoutMs` — the total generation bound. */
12354
+ timeoutMs: number().int().positive().optional(),
12355
+ /** Per-call override; beats both the consumer table and the profile. */
12356
+ retry: LlmRetryPolicySchema.optional(),
12357
+ /**
12358
+ * Caller-minted id that makes this generation CANCELLABLE.
12359
+ *
12360
+ * Without it a caller that stops waiting cannot stop the work: the gates race
12361
+ * the call against 8 s and free their own slot when the timer wins, while the
12362
+ * generation upstream keeps running to `profile.timeoutMs` — 60 s by default,
12363
+ * on a single-threaded local model. The per-camera bound then counts WAITS,
12364
+ * not generations, and the real load is unbounded.
12365
+ *
12366
+ * `AbortSignal` cannot cross a process boundary; an id can. Pass one here and
12367
+ * `llm.cancel({ requestId })` tears the socket down.
12368
+ */
12369
+ requestId: string().optional()
12294
12370
  });
12295
12371
  /**
12296
12372
  * `llm-runtime` — node-side managed llama.cpp executor (spec §4). Registered
@@ -12303,6 +12379,18 @@ var LlmGenerateBaseInputSchema = object({
12303
12379
  * Resource ceiling = llama-server flags + idleStopMinutes ONLY (no RSS
12304
12380
  * watchdog — operator decision #3).
12305
12381
  */
12382
+ /**
12383
+ * A companion artifact that MUST land beside the main GGUF: the `mmproj`
12384
+ * projector of a vision model, or shards 2..N of a split GGUF. Carried on the
12385
+ * REF rather than looked up at install time, so what the operator approved in
12386
+ * the preview is exactly what the node downloads.
12387
+ */
12388
+ var ManagedModelExtraFileSchema = object({
12389
+ url: string(),
12390
+ filename: string(),
12391
+ sizeBytes: number(),
12392
+ sha256: string().optional()
12393
+ });
12306
12394
  var ManagedModelRefSchema = discriminatedUnion("kind", [
12307
12395
  object({
12308
12396
  kind: literal("catalog"),
@@ -12311,7 +12399,11 @@ var ManagedModelRefSchema = discriminatedUnion("kind", [
12311
12399
  object({
12312
12400
  kind: literal("url"),
12313
12401
  url: string(),
12314
- sha256: string().optional()
12402
+ sha256: string().optional(),
12403
+ /** Picker/status label; the file basename when absent. */
12404
+ label: string().optional(),
12405
+ sizeBytes: number().optional(),
12406
+ extraFiles: array(ManagedModelExtraFileSchema).optional()
12315
12407
  }),
12316
12408
  object({
12317
12409
  kind: literal("path"),
@@ -12329,13 +12421,82 @@ var ManagedRuntimeConfigSchema = object({
12329
12421
  gpuLayers: number().int().default(0),
12330
12422
  /** Default: cpus-2, clamped ≥1 (resolved node-side). */
12331
12423
  threads: number().int().optional(),
12332
- /** Concurrent slots. */
12424
+ /** Concurrent slots (`--parallel`). */
12333
12425
  parallel: number().int().default(1),
12426
+ /** Logical batch size (`-b`). Larger = faster prompt ingest, more RAM. */
12427
+ batchSize: number().int().positive().optional(),
12428
+ /** Physical batch / micro-batch (`-ub`). */
12429
+ ubatchSize: number().int().positive().optional(),
12430
+ /**
12431
+ * `--flash-attn`. Cuts KV-cache memory on the backends that implement it and
12432
+ * is a no-op elsewhere, so it is offered rather than assumed.
12433
+ */
12434
+ flashAttention: boolean().default(false),
12435
+ /**
12436
+ * `--mlock`. Pins the weights in RAM so the OS cannot page them out mid
12437
+ * inference. Costs the full model size in resident memory — which is exactly
12438
+ * what the RAM budget is counting.
12439
+ */
12440
+ mlock: boolean().default(false),
12441
+ /**
12442
+ * `--no-mmap`. Reads the whole GGUF up front instead of mapping it. Slower to
12443
+ * start, but avoids the page-fault stalls a network or spinning-disk model
12444
+ * store produces on every first token.
12445
+ */
12446
+ noMmap: boolean().default(false),
12447
+ /** `--cache-type-k` / `--cache-type-v` — quantising the KV cache is the
12448
+ * cheapest way to fit a longer context in the same RAM. */
12449
+ cacheTypeK: _enum([
12450
+ "f32",
12451
+ "f16",
12452
+ "q8_0",
12453
+ "q5_1",
12454
+ "q5_0",
12455
+ "q4_1",
12456
+ "q4_0"
12457
+ ]).optional(),
12458
+ cacheTypeV: _enum([
12459
+ "f32",
12460
+ "f16",
12461
+ "q8_0",
12462
+ "q5_1",
12463
+ "q5_0",
12464
+ "q4_1",
12465
+ "q4_0"
12466
+ ]).optional(),
12467
+ /**
12468
+ * Escape hatch for llama-server flags this schema does NOT model — `--jinja`
12469
+ * (which most vision chat templates need and some language-only models
12470
+ * dislike), `--cont-batching`, `--rope-scaling`, …
12471
+ *
12472
+ * It is NOT a second place to set the flags above. A token that collides
12473
+ * with a typed field is REJECTED at start, naming the field that owns it
12474
+ * (`assertNoOwnedFlags`), because two knobs writing the same argv is exactly
12475
+ * the "two switches that disagree" failure this repo has already shipped
12476
+ * twice (D62).
12477
+ */
12478
+ extraArgs: array(string()).default([]),
12334
12479
  /** Else lazy: first generate boots it. */
12335
12480
  autoStart: boolean().default(false),
12336
12481
  /** 0 = never; frees RAM after quiet periods. */
12337
12482
  idleStopMinutes: number().int().default(30)
12338
12483
  });
12484
+ /**
12485
+ * Where a multi-GB install currently is. A single 0..1 fraction cannot answer
12486
+ * "is it stuck?" for an install that is three files (shards + mmproj) followed
12487
+ * by a sha256 pass over 22 GB — during which the fraction sat at 1.0 and the
12488
+ * node looked hung. Phase + file + bytes is the smallest shape that does.
12489
+ */
12490
+ var LlmDownloadProgressSchema = object({
12491
+ phase: _enum(["downloading", "verifying"]),
12492
+ /** The artifact currently moving, e.g. `mmproj-F16.gguf`. */
12493
+ file: string(),
12494
+ fileIndex: number().int(),
12495
+ fileCount: number().int(),
12496
+ /** Across the WHOLE install, not the current file. */
12497
+ downloadedBytes: number(),
12498
+ totalBytes: number().optional()
12499
+ });
12339
12500
  var LlmRuntimeStatusSchema = object({
12340
12501
  /** Status is ALWAYS node-qualified. */
12341
12502
  nodeId: string(),
@@ -12352,6 +12513,8 @@ var LlmRuntimeStatusSchema = object({
12352
12513
  modelPath: string().optional(),
12353
12514
  modelId: string().optional(),
12354
12515
  downloadProgress: number().min(0).max(1).optional(),
12516
+ /** Detail behind `downloadProgress`; present for the same lifetime. */
12517
+ download: LlmDownloadProgressSchema.optional(),
12355
12518
  lastError: string().optional(),
12356
12519
  crashesInWindow: number(),
12357
12520
  /** Child RSS (sampled best-effort). */
@@ -12362,7 +12525,14 @@ var LlmNodeModelSchema = object({
12362
12525
  file: string(),
12363
12526
  sizeBytes: number(),
12364
12527
  catalogId: string().optional(),
12365
- installedAt: number().optional()
12528
+ installedAt: number().optional(),
12529
+ /**
12530
+ * Absolute path on the node. Present so a file that is on disk but matches
12531
+ * no catalog entry — a custom Hugging Face install, or a GGUF the operator
12532
+ * copied in by hand — is still SELECTABLE, as a `{kind:'path'}` ref. Without
12533
+ * it the picker could list such a file and do nothing with it.
12534
+ */
12535
+ path: string().optional()
12366
12536
  });
12367
12537
  var LlmRuntimeDiskUsageSchema = object({
12368
12538
  nodeId: string(),
@@ -12418,10 +12588,47 @@ var LlmProfileSchema = object({
12418
12588
  baseUrl: string().optional(),
12419
12589
  /** ConfigUISchema type:'password' — never round-trips (spec §5). */
12420
12590
  apiKey: string().optional(),
12591
+ /** Vision on/off. A vision call against a `false` profile is REFUSED, never
12592
+ * degraded to text — that shipped once and produced a confident answer to a
12593
+ * question about a picture nobody sent. */
12421
12594
  supportsVision: boolean(),
12422
12595
  temperature: number().min(0).max(2).optional(),
12596
+ /** Nucleus sampling. Every wire we speak has it. */
12597
+ topP: number().min(0).max(1).optional(),
12598
+ /** Top-k sampling. Carried only by the wires that have it — NEITHER OpenAI
12599
+ * wire does, and the client drops it there (measured: the request body gets
12600
+ * `top_p` and no `top_k`). The profile editor hides the field wherever it
12601
+ * would change nothing; `KINDS_WITH_TOP_K` is the single owner of that list. */
12602
+ topK: number().int().positive().optional(),
12423
12603
  maxTokens: number().int().positive().optional(),
12604
+ /** Prompt context window. Advisory for cloud kinds (they enforce their own);
12605
+ * for `managed-local` it is the llama.cpp `--ctx-size` the runtime starts
12606
+ * the model with, so it is the one field that changes a PROCESS. */
12607
+ contextLength: number().int().positive().optional(),
12608
+ /** Default system prompt. A caller's `system` REPLACES it (never appends —
12609
+ * two system prompts fighting is worse than either alone). */
12610
+ systemPrompt: string().optional(),
12611
+ /** Total generation bound — the only one a unary call has. */
12424
12612
  timeoutMs: number().int().positive().default(6e4),
12613
+ /** The TCP handshake only — "is the port even open". NOT the wait for
12614
+ * response headers: on the LM Studio / llama-server wire those are written
12615
+ * once the model has finished loading, so they belong to the bound below. */
12616
+ connectTimeoutMs: number().int().positive().default(1e4),
12617
+ /** Accepted, but no output yet — response headers included, because a cold
12618
+ * GPU load is exactly what happens before them. */
12619
+ firstTokenTimeoutMs: number().int().positive().default(12e4),
12620
+ /** Output started then stopped. */
12621
+ idleTimeoutMs: number().int().positive().default(6e4),
12622
+ /** Profile-level default. The per-consumer table and a per-call override
12623
+ * both beat it — see `resolveRetryPolicy`. */
12624
+ retry: LlmRetryPolicySchema.default({
12625
+ enabled: false,
12626
+ maxAttempts: 1
12627
+ }),
12628
+ /** Whether this profile may use tools. The tool-call plumbing rides the
12629
+ * library; the REGISTRY of callable tools is ours and is empty in v1, so a
12630
+ * `true` here buys the wiring, not behaviour, until tools are registered. */
12631
+ toolsEnabled: boolean().default(false),
12425
12632
  extraHeaders: record(string(), string()).optional(),
12426
12633
  /** kind === 'managed-local' only (spec §4). */
12427
12634
  runtime: ManagedRuntimeConfigSchema.optional()
@@ -12471,6 +12678,36 @@ var ManagedModelCatalogEntrySchema = object({
12471
12678
  /** Vision models: companion projector file. */
12472
12679
  mmprojUrl: string().optional()
12473
12680
  });
12681
+ /**
12682
+ * The outcome of turning one operator-typed Hugging Face reference into a
12683
+ * download plan. A RESULT, never a throw: "this repo has 24 quantizations and
12684
+ * I will not pick for you" is a normal answer the UI has to render, not an
12685
+ * exception.
12686
+ *
12687
+ * `candidates` is the whole reason the refusal is usable — every string in it
12688
+ * is a tag that resolves when pasted back as `<org>/<repo>:<TAG>`.
12689
+ */
12690
+ var HfModelResolutionSchema = discriminatedUnion("ok", [object({
12691
+ ok: literal(true),
12692
+ /** Ready to hand to `installModel` unchanged. */
12693
+ model: ManagedModelRefSchema,
12694
+ label: string(),
12695
+ repo: string(),
12696
+ quantization: string(),
12697
+ purpose: _enum(["text", "vision"]),
12698
+ totalBytes: number(),
12699
+ /** mmproj + shards, for the preview: an operator approving 23 GB should
12700
+ * see that 0.9 GB of it is a projector they did not name. */
12701
+ extraFilenames: array(string())
12702
+ }), object({
12703
+ ok: literal(false),
12704
+ code: string(),
12705
+ message: string(),
12706
+ candidates: array(string()).optional(),
12707
+ /** Set when the refusal was only the ceiling: re-calling with
12708
+ * `maxBytes: requiredBytes` is the operator's explicit override. */
12709
+ requiredBytes: number().optional()
12710
+ })]);
12474
12711
  var LlmRuntimeNodeSchema = object({
12475
12712
  nodeId: string(),
12476
12713
  reachable: boolean(),
@@ -12483,7 +12720,10 @@ var ProfileRefInputSchema = object({
12483
12720
  addonId: string(),
12484
12721
  profileId: string()
12485
12722
  });
12486
- method(LlmGenerateBaseInputSchema, LlmGenerateResultSchema, { kind: "mutation" }), method(GenerateVisionInputSchema, LlmGenerateResultSchema, { kind: "mutation" }), method(object({}), array(LlmProfileKindDescriptorSchema)), method(object({}), array(LlmProfileSchema)), method(object({ profile: LlmProfileSchema }), LlmProfileSchema, {
12723
+ method(LlmGenerateBaseInputSchema, LlmGenerateResultSchema, { kind: "mutation" }), method(GenerateVisionInputSchema, LlmGenerateResultSchema, { kind: "mutation" }), method(object({
12724
+ addonId: string().optional(),
12725
+ requestId: string()
12726
+ }), _void(), { kind: "mutation" }), method(object({}), array(LlmProfileKindDescriptorSchema)), method(object({}), array(LlmProfileSchema)), method(object({ profile: LlmProfileSchema }), LlmProfileSchema, {
12487
12727
  kind: "mutation",
12488
12728
  auth: "admin"
12489
12729
  }), method(ProfileRefInputSchema, _void(), {
@@ -12504,6 +12744,15 @@ method(LlmGenerateBaseInputSchema, LlmGenerateResultSchema, { kind: "mutation" }
12504
12744
  consumer: string().optional(),
12505
12745
  profileId: string().optional()
12506
12746
  }), array(LlmUsageRollupSchema)), method(object({}), array(ManagedModelCatalogEntrySchema)), method(object({}), array(LlmRuntimeNodeSchema)), method(object({ nodeId: string() }), array(LlmNodeModelSchema)), method(object({
12747
+ /** `https://huggingface.co/<org>/<repo>/resolve/main/<f>.gguf`,
12748
+ * `<org>/<repo>/<f>.gguf`, `<org>/<repo>` or `<org>/<repo>:<QUANT>`. */
12749
+ ref: string(),
12750
+ /** Explicit ceiling override, in bytes. Absent = the built-in ceiling. */
12751
+ maxBytes: number().positive().optional()
12752
+ }), HfModelResolutionSchema, {
12753
+ kind: "mutation",
12754
+ auth: "admin"
12755
+ }), method(object({
12507
12756
  nodeId: string(),
12508
12757
  model: ManagedModelRefSchema
12509
12758
  }), _void(), {
@@ -14113,6 +14362,8 @@ var NcSystemEventKindSchema = _enum([
14113
14362
  "stream-offline",
14114
14363
  "node-online",
14115
14364
  "node-offline",
14365
+ "node-inference-unavailable",
14366
+ "detection-blind",
14116
14367
  "addon-update-available",
14117
14368
  "server-update-available",
14118
14369
  "alarm-triggered",
@@ -14174,7 +14425,16 @@ var NcScheduleSchema = object({
14174
14425
  });
14175
14426
  /** Fuzzy plate matcher — OCR noise makes exact match useless (spec row 12/13). */
14176
14427
  var NcPlateMatcherSchema = object({
14177
- values: array(string().min(1)).min(1),
14428
+ /**
14429
+ * Plate texts (or gallery vehicle names) to match. EMPTY = **any plate the
14430
+ * pipeline could read** — the plate half of "no selection = no narrowing",
14431
+ * and the switch that says this rule is about vehicles that were IDENTIFIED
14432
+ * rather than merely seen. A subject carrying no plate still fails.
14433
+ *
14434
+ * The `.min(1)` this used to carry made that state unauthorable; nothing has
14435
+ * ever persisted an empty list, so widening it cannot change an existing rule.
14436
+ */
14437
+ values: array(string().min(1)),
14178
14438
  /** Max Levenshtein distance after normalization (uppercase alphanumeric). */
14179
14439
  maxDistance: number().int().min(0).max(3).default(1)
14180
14440
  });
@@ -14208,28 +14468,36 @@ var NcOccupancyConditionSchema = object({
14208
14468
  /**
14209
14469
  * Audio condition (IMMEDIATE trigger) — a rule on SOUND, not on a picture.
14210
14470
  *
14211
- * Operator-approved vocabulary (2026-08-12, option A — the same one the
14212
- * reference notifier uses, so an operator moving between them re-uses what
14213
- * they already know): a rule matches when, over a sampling window of
14214
- * `samplingSeconds`, at least `hitPercent`% of the audio samples in that
14215
- * window are HITS. A sample is a hit when it satisfies BOTH present filters:
14216
- *
14217
- * - `dbThreshold` its level is at or above this many dBFS (see
14218
- * {@link NC_AUDIO_DBFS_FLOOR}: negative-going, `0` = full scale);
14219
- * - `labels` the classifier put at least one of these labels on it.
14220
- *
14221
- * Both are OPTIONAL and independent, which is the point of the shape: a
14222
- * loudness rule ("something loud at 3am") needs no model to be right, and a
14223
- * label rule ("a dog barked") needs no threshold. **Fail-closed when NEITHER
14224
- * is given** a window in which every sample is trivially a hit would fire on
14225
- * silence, so the engine refuses such a condition rather than notifying on
14226
- * nothing (the schema cannot express "at least one of" without becoming a
14227
- * ZodEffects the cap path would have to special-case).
14228
- *
14229
- * `hitPercent` is over the samples the window actually HOLDS, and the window
14230
- * must be FULL before it can match a window that has been open for two
14231
- * seconds of its ten is 100% of nothing, and firing on it would make
14232
- * `samplingSeconds` decorative.
14471
+ * **TWO EXCLUSIVE MODES** (operator decision 2026-08-14, D157). Which one a
14472
+ * rule is in is not a stored field it is WHICH FILTER the rule carries, so
14473
+ * there is no second switch that can disagree with the first and every rule
14474
+ * authored before the decision migrates for free (`audioModeOf`):
14475
+ *
14476
+ * - **LABEL mode — `labels` present.** The rule fires on the FIRST frame the
14477
+ * classifier labels with one of them. No window, no percentage:
14478
+ * `hitPercent` and `samplingSeconds` are ignored, and the rule's own
14479
+ * `throttle` cooldown is the only brake. The per-label confidence floor is
14480
+ * the analyzer's (`classificationMinScore`, per device) — a label only
14481
+ * reaches this condition if the classifier was already confident enough.
14482
+ * - **LEVEL mode `dbThreshold` present, no labels.** The sampling window IS
14483
+ * the condition: at least `hitPercent`% of the samples over
14484
+ * `samplingSeconds` must be at or above `dbThreshold` dBFS (see
14485
+ * {@link NC_AUDIO_DBFS_FLOOR}: negative-going, `0` = full scale). The window
14486
+ * must be FULL before it can match a window open for two of its ten
14487
+ * seconds is 100% of nothing.
14488
+ *
14489
+ * **Why label mode has no window.** It had one, and it never fired: the
14490
+ * analyzer emits ~1 audio frame per second but YAMNet only LABELS one to three
14491
+ * of them per episode, even through continuous crying. The measured maximum
14492
+ * `hitPercent` over the whole live history was 40 — under the shipped default
14493
+ * of 60, so a label rule could not fire at all, ever. A percentage of frames is
14494
+ * the wrong question to ask of a sparse classifier.
14495
+ *
14496
+ * **Fail-closed when NEITHER is given** — every sample would be a trivial hit
14497
+ * and the rule would fire on silence. The schema cannot express "exactly one
14498
+ * of" without becoming a ZodEffects the cap path would have to special-case, so
14499
+ * the exclusivity is enforced where every editor writes (`patchAudio`) and a
14500
+ * legacy rule carrying both resolves to LABEL (the mode that fires).
14233
14501
  *
14234
14502
  * Labels are the audio macro classes (`AUDIO_MACRO_LABELS` / the NC taxonomy's
14235
14503
  * `audio-*` ids). Both spellings are accepted — the matcher normalizes the
@@ -14237,13 +14505,13 @@ var NcOccupancyConditionSchema = object({
14237
14505
  * an operator who typed `dog` mean the same thing.
14238
14506
  */
14239
14507
  var NcAudioConditionSchema = object({
14240
- /** Audio macro labels; absent = any sound (level-only rule). */
14508
+ /** LABEL MODE: audio macro labels. Present fires on the first labelled frame. */
14241
14509
  labels: array(string().min(1)).min(1).optional(),
14242
- /** Level floor in dBFS (negative-going, `0` = full scale); absent = any level. */
14510
+ /** LEVEL MODE: floor in dBFS (negative-going, `0` = full scale). */
14243
14511
  dbThreshold: number().min(-96).max(0).optional(),
14244
- /** Percentage of the window's samples that must be hits (1–100). */
14512
+ /** LEVEL MODE ONLY: percentage of the window's samples that must be hits (1–100). */
14245
14513
  hitPercent: number().int().min(1).max(100).default(60),
14246
- /** Length of the sampling window in seconds. */
14514
+ /** LEVEL MODE ONLY: length of the sampling window in seconds. */
14247
14515
  samplingSeconds: number().int().min(1).max(300).default(10)
14248
14516
  });
14249
14517
  /**
@@ -14381,13 +14649,81 @@ var NcRuleActionsSchema = object({
14381
14649
  */
14382
14650
  buttons: array(NcRuleNotificationButtonSchema).max(8).optional()
14383
14651
  });
14652
+ /**
14653
+ * "This rule applies only while `deviceId` is in one of `states`."
14654
+ *
14655
+ * The states are the DEVICE's own vocabulary — `AlarmState` for a panel,
14656
+ * `on`/`off` for a switch — not a normalised set, because normalising would
14657
+ * make the condition lie about devices whose states have no equivalent.
14658
+ *
14659
+ * An unreadable state does NOT match: see the engine's fail-closed gate. A
14660
+ * condition that fired on "I could not read it" would be worse than no gate.
14661
+ */
14662
+ var NcDeviceStateConditionSchema = object({
14663
+ deviceId: number().int(),
14664
+ /** Any of these matches. */
14665
+ states: array(string().min(1)).min(1)
14666
+ });
14667
+ /**
14668
+ * "This rule applies only while scene `sceneId` is `matched` / `diverged`."
14669
+ *
14670
+ * A GATE, not a trigger. `occupancy` and `audio` each DISCRIMINATE their rule —
14671
+ * carrying one makes the rule fire on that subject and nothing else. Scene is
14672
+ * the other shape entirely, the `deviceState` shape: it narrows a rule that
14673
+ * already has a trigger ("tell me about a person at the front door, but only
14674
+ * while the bin is still out"). That is why it composes with every delivery
14675
+ * instead of owning one, and why no new `NcDelivery` member and no new subject
14676
+ * kind exist for it — see D159.
14677
+ *
14678
+ * ── Identity ───────────────────────────────────────────────────────────────
14679
+ * `sceneId` is `SceneMonitor.id`, a `randomUUID()` minted by `createScene` —
14680
+ * globally unique, so it needs no device to disambiguate it. `deviceId` is
14681
+ * carried as a HINT for the editor and for the log line, never as part of the
14682
+ * lookup key: a rule whose hint drifted must still gate correctly.
14683
+ *
14684
+ * ── Which boolean ──────────────────────────────────────────────────────────
14685
+ * `latched` ABSENT means "whatever the scene itself says" — `SceneMonitor.emit`
14686
+ * already declares which boolean drives notification rules, and a second knob
14687
+ * that could disagree with it is exactly the D62 failure. Set it only to
14688
+ * override one rule against the scene's own default.
14689
+ *
14690
+ * - LIVE reading (`emit`/`latched` resolve to live): passes iff
14691
+ * `verdict === requiredState`. `unknown` — no reference for this light, view
14692
+ * shifted, no snapshot — passes NEITHER. A scene that cannot judge is not
14693
+ * evidence, in either direction.
14694
+ * - LATCHED reading: passes iff `latched === (requiredState === 'diverged')`.
14695
+ * The latch is a durable fact about the past ("it has diverged since I armed
14696
+ * it"), so a camera that has gone dark does not clear it — that is the whole
14697
+ * reason the operator asked for a latch.
14698
+ *
14699
+ * The gate reads an in-memory mirror (`NcSceneStateCache`) refreshed OFF the
14700
+ * event path, never the cap: D49. A mirror that has never loaded, or a scene it
14701
+ * does not carry, reads absent and the rule does NOT fire — fail closed, and
14702
+ * said out loud in the log rather than dropped in silence.
14703
+ */
14704
+ var NcSceneConditionSchema = object({
14705
+ /** `SceneMonitor.id` — the uuid the cap mints. The whole lookup key. */
14706
+ sceneId: string().min(1),
14707
+ /** The camera the scene lives on. A hint for the editor and the log line. */
14708
+ deviceId: number().int().optional(),
14709
+ /** The state the scene must be in for the rule to fire. */
14710
+ requiredState: _enum(["matched", "diverged"]),
14711
+ /**
14712
+ * Read the LATCH (`true`) or the LIVE verdict (`false`). Absent = follow the
14713
+ * scene's own `emit` field, which is the only place that decision belongs.
14714
+ */
14715
+ latched: boolean().optional()
14716
+ });
14384
14717
  var NcConditionsSchema = object({
14385
14718
  /** Gate on ANOTHER device's current state (the alarm armed, a switch on). */
14386
- deviceState: object({
14387
- deviceId: number().int(),
14388
- /** Any of these matches. */
14389
- states: array(string().min(1)).min(1)
14390
- }).optional(),
14719
+ deviceState: NcDeviceStateConditionSchema.optional(),
14720
+ /**
14721
+ * Gate on a SCENE's state — "only while the bin is still out". Composes with
14722
+ * every trigger (detection, occupancy, audio, sensor, package, track-end);
14723
+ * unlike `occupancy`/`audio` it discriminates nothing. See
14724
+ * {@link NcSceneCondition} and D159.
14725
+ */
14726
+ scene: NcSceneConditionSchema.optional(),
14391
14727
  /** Device scope — absent = all devices. */
14392
14728
  devices: array(number()).optional(),
14393
14729
  /** Detector class names (any overlap with the record's class set). */
@@ -14413,18 +14749,47 @@ var NcConditionsSchema = object({
14413
14749
  */
14414
14750
  labelEquals: array(string().min(1)).optional(),
14415
14751
  /**
14416
- * Identity matcher. P1 boundary: matched against the record's collapsed
14417
- * `label` (the identity display name propagated by the face pipeline) —
14418
- * identity-ID matching rides in P2 when identity ids reach the record.
14752
+ * KNOWN FACES the rule's identity scope, and the switch that says the rule
14753
+ * is about recognised people at all.
14754
+ *
14755
+ * Three states, and the empty one is the point:
14756
+ *
14757
+ * | value | meaning |
14758
+ * | --- | --- |
14759
+ * | absent | the rule does not care who it is; an unrecognised person matches |
14760
+ * | `[]` | **only known faces** — any identity in the gallery, nobody in particular |
14761
+ * | a list | only these identities |
14762
+ *
14763
+ * `[]` is the repo-wide "no selection = no narrowing" reading (an absent
14764
+ * `devices` list is every device), applied one level down: the operator has
14765
+ * turned the face scope ON and narrowed it to nothing, which is every known
14766
+ * face. No second field states the same thing — a switch that can disagree
14767
+ * with the list under it is worse than no switch (D62).
14768
+ *
14769
+ * MEMBERS ARE FACE-GALLERY `Identity.id`s (uuid), not display names. A name is
14770
+ * renameable, and a rule authored on "Gianluca" went silently dark the moment
14771
+ * the operator fixed the spelling. The id reaches the record on
14772
+ * `LabelAttribution.identityId`; the name is what the editor shows and what
14773
+ * `{{label}}` renders.
14774
+ *
14775
+ * Rules written before this carry NAMES, and are resolved to ids lazily at
14776
+ * load (`NcRuleStore.load`) against the live gallery — a name nothing answers
14777
+ * for is left as it stands and reported, never dropped. The engine also
14778
+ * accepts a display-name hit as a compatibility leg, so a rule whose
14779
+ * migration could not resolve keeps matching exactly what it matched before.
14419
14780
  */
14420
14781
  identities: array(string().min(1)).optional(),
14421
- /** Fuzzy plate matcher against the record's `label` (plate text). */
14782
+ /**
14783
+ * KNOWN PLATES / VEHICLES — the plate mirror of {@link identities}, including
14784
+ * the empty-list reading: `values: []` is "any plate the OCR could read",
14785
+ * a non-empty list is those plates (fuzzily). See {@link NcPlateMatcherSchema}.
14786
+ */
14422
14787
  plates: NcPlateMatcherSchema.optional(),
14423
14788
  /**
14424
- * Identity EXCLUDE — mirror of {@link identities} with `notIn` semantics.
14425
- * Same P1 boundary: matched against the record's collapsed `label` (the
14426
- * identity display name). A record with NO label passes (nothing to
14427
- * exclude), unlike the include variant which fails on an absent label.
14789
+ * Identity EXCLUDE — mirror of {@link identities} with `notIn` semantics, and
14790
+ * the same id members and the same lazy name→id migration. A record with NO
14791
+ * identity passes (nothing to exclude), unlike the include variant which
14792
+ * fails on an unrecognised subject. An EMPTY list excludes nobody.
14428
14793
  */
14429
14794
  identitiesExclude: array(string().min(1)).optional(),
14430
14795
  /**
@@ -14816,7 +15181,80 @@ var NcRuleInputSchema = object({
14816
15181
  * a rule that predates the gate must keep delivering byte-for-byte as it
14817
15182
  * did, and absent is the only way to say that without a migration.
14818
15183
  */
14819
- confirm: NcConfirmSchema.optional()
15184
+ confirm: NcConfirmSchema.optional(),
15185
+ /**
15186
+ * WAIT for face/plate recognition before saying anything.
15187
+ *
15188
+ * A notification's TEXT is frozen at enqueue and its media is re-resolved at
15189
+ * send; the identity is neither. A face is confirmed after `confirmFrames`
15190
+ * agreeing observations — p50 **11.4 s** after the track was first seen,
15191
+ * measured on this hub — and an `immediate` rule enqueues on the first object
15192
+ * event, seconds before that. So "Gianluca è arrivato" is unsayable on the
15193
+ * immediate path, and no amount of media re-resolution fixes a sentence.
15194
+ *
15195
+ * Only two honest answers exist, and this flag picks between them. It has
15196
+ * effect ONLY on a rule that declares a recognition scope
15197
+ * ({@link NcConditions.identities} or {@link NcConditions.plates}) — on any
15198
+ * other rule there is nothing to wait for and the flag is inert.
15199
+ *
15200
+ * | value | what happens |
15201
+ * | --- | --- |
15202
+ * | `true` | the rule stops firing on the object event and fires at TRACK CLOSE instead, once, with the name — later, and complete |
15203
+ * | absent / `false` | it fires at once WITHOUT the name, and if recognition lands before the track closes a SECOND, "…is Gianluca" notification follows (one per track, per rule, per target) |
15204
+ *
15205
+ * `.optional()` and deliberately NOT `.default()`: a Zod default does not run
15206
+ * on the addon cap path, and absent has to keep meaning exactly what every
15207
+ * rule authored before this field meant.
15208
+ *
15209
+ * The cost of `true` is stated here because the editor states it too: a rule
15210
+ * that waits also inherits track-close SEMANTICS — its `zones` condition
15211
+ * tests every zone the track visited and a `crossing` condition can no longer
15212
+ * be satisfied, because a closed track carries no crossing.
15213
+ */
15214
+ waitForEnhancement: boolean().optional(),
15215
+ /**
15216
+ * GROUP a burst of subjects into ONE notification that grows.
15217
+ *
15218
+ * Seconds of quiet after the last matching subject before the burst is
15219
+ * considered over. While it is open, the first subject enqueues immediately —
15220
+ * **exactly as today, with no added latency** — and every real growth (a new
15221
+ * subject, or a name confirmed on one already in it) REPLACES that
15222
+ * notification with an updated one naming everybody. The push carries the
15223
+ * group's own coalescing tag, so the phone replaces rather than stacks.
15224
+ *
15225
+ * `0` / absent = off, and off is today's behaviour byte for byte.
15226
+ *
15227
+ * ### Why an idle cutoff and not a window
15228
+ *
15229
+ * The measured seven-person arrival on device 590 spans 110 s with every
15230
+ * internal gap under 30 s. A 12 s fixed window cuts it into three groups; an
15231
+ * idle cutoff holds it as one and ends it when the arrival actually ends.
15232
+ * 30 is Frigate's shipped value for the same decision.
15233
+ *
15234
+ * ### What it replaces
15235
+ *
15236
+ * The blind cooldown, which collapses a burst by DISCARDING it. Measured on
15237
+ * device 615 / *Persona su Uscio* over six days: 116 qualifying tracks → 74
15238
+ * notifications, **44 (37.9%) suppressed outright**, 23 of them overlapping a
15239
+ * track that did fire and 7 carrying a confirmed identity nobody heard about.
15240
+ * A group collapses the same volume by MERGING, so the cooldown becomes a
15241
+ * budget over GROUPS — which is what it always meant — and a growth is never
15242
+ * throttled by the window its own first member spent.
15243
+ *
15244
+ * ### Interaction with {@link waitForEnhancement}
15245
+ *
15246
+ * They compose, and the order matters. `waitForEnhancement` defers the rule to
15247
+ * TRACK CLOSE, so with both set the group is opened by the first member to
15248
+ * CLOSE — already carrying its name — and grows as later members close. That
15249
+ * is later, and complete. With grouping alone the group opens on the first
15250
+ * object event and picks up names as they are confirmed, through the growth
15251
+ * path. Neither combination fires twice for one subject.
15252
+ *
15253
+ * `.optional()` and deliberately NOT `.default()`: a Zod default does not run
15254
+ * on the addon cap path, so absent must keep meaning what it meant before this
15255
+ * field existed.
15256
+ */
15257
+ groupIdleSec: number().int().min(0).max(600).optional()
14820
15258
  });
14821
15259
  /**
14822
15260
  * Partial patch for `updateRule` — any subset of the input fields, plus the
@@ -14923,6 +15361,7 @@ var NcConditionDescriptorSchema = object({
14923
15361
  "occupancy",
14924
15362
  "audio",
14925
15363
  "deviceState",
15364
+ "scene",
14926
15365
  "systemEvent"
14927
15366
  ]),
14928
15367
  operator: _enum([
@@ -15328,7 +15767,87 @@ var MethodAccessSchema = _enum([
15328
15767
  var AllowedProviderSchema = union([literal("*"), array(string())]);
15329
15768
  var AllowedDevicesSchema = record(string(), union([literal("*"), array(string())]));
15330
15769
  var CapScopeSchema = _enum(["device", "system"]);
15331
- var TokenScopeSchema = discriminatedUnion("type", [
15770
+ /**
15771
+ * DeviceSelector (scope model v3 — 2026-08-12).
15772
+ *
15773
+ * A `device` grant no longer carries a frozen list of deviceIds. It carries
15774
+ * a SELECTOR the matcher resolves against the live fleet, so the grant can be
15775
+ * DYNAMIC: a `types:['camera']` selector automatically covers a camera added
15776
+ * AFTER the grant was minted — no re-grant, no re-login.
15777
+ *
15778
+ * - `all` — every device in the deployment. The broad viewer/operator
15779
+ * lever without a `category` grant (a `category` grant also covers device
15780
+ * caps that carry no deviceId; `all` is specifically the device set).
15781
+ * - `ids` — an explicit deviceId list. This is what a v2 `device:[…]`
15782
+ * grant migrates to (see {@link TokenScopeSchema}); STATIC — a new camera
15783
+ * is NOT covered until the grant is edited.
15784
+ * - `types` — every device of a `DeviceType` (e.g. every `camera`).
15785
+ * DYNAMIC. A device that changes type, or a new device of the type,
15786
+ * re-resolves on the next request.
15787
+ * - `locations` — every device whose operator-assigned `location` label is
15788
+ * in the set (e.g. "Garden", "Front door"). DYNAMIC. A device with a
15789
+ * null/unset location matches NO `locations` selector.
15790
+ */
15791
+ var DeviceSelectorSchema = discriminatedUnion("kind", [
15792
+ object({ kind: literal("all") }),
15793
+ object({
15794
+ kind: literal("ids"),
15795
+ ids: array(number().int()).min(1)
15796
+ }),
15797
+ object({
15798
+ kind: literal("types"),
15799
+ types: array(_enum(DeviceType)).min(1)
15800
+ }),
15801
+ object({
15802
+ kind: literal("locations"),
15803
+ locations: array(string().min(1)).min(1)
15804
+ })
15805
+ ]);
15806
+ var DeviceTokenScopeSchema = object({
15807
+ type: literal("device"),
15808
+ /** The device SET this grant covers — resolved against the live fleet. */
15809
+ selector: DeviceSelectorSchema,
15810
+ access: array(MethodAccessSchema).min(1),
15811
+ /**
15812
+ * Whether a grant on a PARENT device transparently covers its accessory
15813
+ * CHILDREN (siren / floodlight / PIR) via the persisted-parentage walk.
15814
+ * Direction is parent → children ONLY.
15815
+ *
15816
+ * Absent → the matcher DERIVES it from the access flavour: `view`
15817
+ * inherits (a camera viewer sees the camera's accessories), `create` /
15818
+ * `delete` do NOT (actuating/removing a child is an explicit act the
15819
+ * operator must grant on the child, not inherit from the parent). Set it
15820
+ * explicitly to override that default per grant.
15821
+ */
15822
+ includeLinked: boolean().optional()
15823
+ });
15824
+ /**
15825
+ * v2 → v3 lazy migration. A pre-v3 `device` grant carried
15826
+ * `targets: string[]` (stringified deviceIds); it rewrites to the equivalent
15827
+ * `selector: {kind:'ids', ids}`. Applied as a `preprocess` so it runs on
15828
+ * EVERY parse path — stored records AND the JWT-carried scope arrays
15829
+ * normalised at the request boundary ({@link normalizeTokenScopes} in
15830
+ * `device-selector.ts`). Chosen over a one-time DB migration because a
15831
+ * migration cannot reach a JWT already in a client's hands; parse-time
15832
+ * migration covers both without a flag day. No cast — the raw object is read
15833
+ * through `Reflect.get` (its static type is `unknown`).
15834
+ */
15835
+ function migrateLegacyTokenScope(raw) {
15836
+ if (raw === null || typeof raw !== "object" || Array.isArray(raw)) return raw;
15837
+ if (Reflect.get(raw, "type") !== "device") return raw;
15838
+ if (Reflect.get(raw, "selector") !== void 0) return raw;
15839
+ const targets = Reflect.get(raw, "targets");
15840
+ if (!Array.isArray(targets)) return raw;
15841
+ return {
15842
+ type: "device",
15843
+ selector: {
15844
+ kind: "ids",
15845
+ ids: targets.map((t) => typeof t === "string" ? Number(t) : t).filter((n) => typeof n === "number" && Number.isInteger(n))
15846
+ },
15847
+ access: Reflect.get(raw, "access")
15848
+ };
15849
+ }
15850
+ var TokenScopeSchema = preprocess(migrateLegacyTokenScope, discriminatedUnion("type", [
15332
15851
  object({
15333
15852
  type: literal("category"),
15334
15853
  target: CapScopeSchema,
@@ -15344,18 +15863,8 @@ var TokenScopeSchema = discriminatedUnion("type", [
15344
15863
  target: string(),
15345
15864
  access: array(MethodAccessSchema).min(1)
15346
15865
  }),
15347
- object({
15348
- type: literal("device"),
15349
- /**
15350
- * One or more deviceIds (serialised as strings for wire-format
15351
- * consistency with the rest of the union). Matcher accepts if
15352
- * `input.deviceId` ∈ `targets`. Array shape avoids the row-explosion
15353
- * of one scope-per-device when granting access to a set of cameras.
15354
- */
15355
- targets: array(string()).min(1),
15356
- access: array(MethodAccessSchema).min(1)
15357
- })
15358
- ]);
15866
+ DeviceTokenScopeSchema
15867
+ ]));
15359
15868
  object({
15360
15869
  id: string(),
15361
15870
  username: string(),
@@ -15672,7 +16181,7 @@ var TrackEnvelopeSchema = object({
15672
16181
  * `snapshots[]` references — megabytes across a page of tracks. `slim`
15673
16182
  * keeps every scalar the list surfaces actually render (ids, class(es),
15674
16183
  * label / audioLabels / importance enrichment, firstSeen/lastSeen, state,
15675
- * zonesVisited, bestEventId, envelope, hasFace) and returns `positions` /
16184
+ * zonesVisited, bestEventId, envelope, hasFace, hasRider) and returns `positions` /
15676
16185
  * `snapshots` as EMPTY arrays — detail views re-fetch the full row via
15677
16186
  * `getTrack`. Mirrors the event-store `projection` convention
15678
16187
  * (`getObjectEvents` et al.).
@@ -15808,7 +16317,21 @@ union([literal(1), literal(2)]);
15808
16317
  var LabelAttributionSchema = object({
15809
16318
  stepId: string(),
15810
16319
  modelId: string().optional(),
15811
- decidedAt: number()
16320
+ decidedAt: number(),
16321
+ /**
16322
+ * The GALLERY id behind a recognised tier-2 label — a face-gallery
16323
+ * `Identity.id` or a plate-gallery `Vehicle.id` (both `randomUUID`).
16324
+ *
16325
+ * The text alone is a DISPLAY NAME, and a display name is renameable: a
16326
+ * notification rule authored on "Gianluca" stopped matching the moment the
16327
+ * operator fixed the spelling in the gallery, and nothing said so. The id is
16328
+ * the thing that does not move, so it is what a rule matches on
16329
+ * (`NcConditions.identities`) and the text is what a human is shown.
16330
+ *
16331
+ * Absent when the label names no gallery row — a plate the OCR read but no
16332
+ * vehicle claims, a sub-class, a species, any tier-1 value.
16333
+ */
16334
+ identityId: string().optional()
15812
16335
  });
15813
16336
  /**
15814
16337
  * The TIERED label model (roadmap 4g), spread into `TrackSchema` and
@@ -15945,6 +16468,28 @@ var TrackSchema = object({
15945
16468
  * `=== true` and render nothing otherwise, never infer "no face".
15946
16469
  */
15947
16470
  hasFace: boolean().optional(),
16471
+ /**
16472
+ * This subject CONTAINS a folded rider — a person the rider-pairing step
16473
+ * ([D34](../decisions/adr-0034.md)) removed from the frame BEFORE the tracker,
16474
+ * so the passage is tracked once and as a VEHICLE.
16475
+ *
16476
+ * It exists because the fold's record was dishonest. D34 and the code both
16477
+ * said "the person is not lost — it is reported so both entities stay on the
16478
+ * record"; in fact the pair went into a per-processor RAM field behind an
16479
+ * accessor nobody called, and every durable surface said `vehicle`, full
16480
+ * stop. This is the composition note that makes the row true.
16481
+ *
16482
+ * A COMPOSITION, never a class and never a label. "This vehicle contains a
16483
+ * person" is not an answer to "what is this" — both label tiers would refuse
16484
+ * a macro token anyway (D89), and correctly. Nothing here changes what the
16485
+ * subject IS: a cyclist stays one vehicle track, occupancy still counts one,
16486
+ * and a `person` rule still does not fire for someone cycling past.
16487
+ *
16488
+ * **Absent ≠ false**, exactly like {@link hasFace}: every row written before
16489
+ * the column, and every hub that predates the field, omits it. Test
16490
+ * `=== true` and render nothing otherwise — never infer "no rider".
16491
+ */
16492
+ hasRider: boolean().optional(),
15948
16493
  ...TrackFlagFields,
15949
16494
  ...TrackRetrainFields
15950
16495
  });
@@ -16294,7 +16839,10 @@ var RecentTracksQueryInput = object({
16294
16839
  * Encodes the (lastSeen, trackId) sort position — treat as opaque. */
16295
16840
  cursor: string().optional(),
16296
16841
  /** See {@link TrackProjectionSchema}. Default `full`. */
16297
- projection: TrackProjectionSchema.optional()
16842
+ projection: TrackProjectionSchema.optional(),
16843
+ /** Include stationary-promoted rows (parked objects). Default false: the
16844
+ * feed lists passages; parking records live on the stationary registry. */
16845
+ includeStationary: boolean().optional()
16298
16846
  });
16299
16847
  var RecentTracksPageSchema = object({
16300
16848
  /** Merged page, ordered by (`lastSeen` DESC, `trackId` DESC). */
@@ -16512,7 +17060,11 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
16512
17060
  zone: TrackZoneFilterSchema.optional(),
16513
17061
  /** See {@link TrackProjectionSchema}. Default `full` (backward
16514
17062
  * compatible — omitting the field keeps today's exact behaviour). */
16515
- projection: TrackProjectionSchema.optional()
17063
+ projection: TrackProjectionSchema.optional(),
17064
+ /** Include stationary-promoted rows (parked objects handed to the
17065
+ * stationary registry). Default false: the timeline lists passages,
17066
+ * not parking records (operator decision, 2026-08-15). */
17067
+ includeStationary: boolean().optional()
16516
17068
  }), array(TrackSchema).readonly()), method(RecentTracksQueryInput, RecentTracksPageSchema), method(object({ deviceId: number() }), _void(), {
16517
17069
  kind: "mutation",
16518
17070
  auth: "admin"
@@ -16676,11 +17228,16 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
16676
17228
  auth: "admin"
16677
17229
  }), method(object({
16678
17230
  eventId: string(),
16679
- kind: MediaFileKindEnum.optional()
17231
+ kind: MediaFileKindEnum.optional(),
17232
+ deviceId: number()
16680
17233
  }), array(MediaFileSchema).readonly()), method(object({
16681
17234
  trackId: string(),
16682
- kinds: array(MediaFileKindEnum).optional()
16683
- }), array(MediaFileSchema).readonly()), method(object({ trackId: string() }), array(MediaFileInfoSchema).readonly()), method(SearchObjectEventsInput, array(ScoredObjectEventSchema).readonly()), method(object({}), WipeObjectEmbeddingsResultSchema, {
17235
+ kinds: array(MediaFileKindEnum).optional(),
17236
+ deviceId: number()
17237
+ }), array(MediaFileSchema).readonly()), method(object({
17238
+ trackId: string(),
17239
+ deviceId: number()
17240
+ }), array(MediaFileInfoSchema).readonly()), method(SearchObjectEventsInput, array(ScoredObjectEventSchema).readonly()), method(object({}), WipeObjectEmbeddingsResultSchema, {
16684
17241
  kind: "mutation",
16685
17242
  auth: "admin"
16686
17243
  }), method(RebuildObjectEmbeddingsInput, RebuildObjectEmbeddingsResultSchema, {
@@ -17340,6 +17897,17 @@ var maxSessionHoldMsField = {
17340
17897
  default: 12e4,
17341
17898
  step: 5e3
17342
17899
  };
17900
+ /**
17901
+ * Quiet period that closes an `audioMode: 'on-motion'` audio window. Floor of
17902
+ * 5s so a rearm can never degenerate into per-event stream churn; default 90s
17903
+ * comfortably outlives the gap between two PIR wakes on a battery camera.
17904
+ */
17905
+ var audioMotionWindowMsField = {
17906
+ min: 5e3,
17907
+ max: 6e5,
17908
+ default: 9e4,
17909
+ step: 5e3
17910
+ };
17343
17911
  var motionFpsField = {
17344
17912
  min: 1,
17345
17913
  max: 30,
@@ -17371,7 +17939,7 @@ var detectionFpsField = {
17371
17939
  var occupancyRecheckSecField = {
17372
17940
  min: 0,
17373
17941
  max: 300,
17374
- default: 30,
17942
+ default: 300,
17375
17943
  step: 5
17376
17944
  };
17377
17945
  var occupancyRecheckFramesField = {
@@ -17516,6 +18084,27 @@ var RunnerCameraConfigSchema = object({
17516
18084
  * resolved `CameraDetectionConfig`.
17517
18085
  */
17518
18086
  maxSessionHoldMs: number().min(maxSessionHoldMsField.min).max(maxSessionHoldMsField.max).optional(),
18087
+ /**
18088
+ * Orchestrator-side quiet period (ms) that closes an `audioMode:
18089
+ * 'on-motion'` audio window, measured from the LAST motion event.
18090
+ *
18091
+ * This exists because the falling edge cannot be relied on. Camera-native
18092
+ * providers emit motion as a RISING EDGE ONLY (Reolink's Baichuan push and
18093
+ * its email-push SMTP path both emit `detected: true` and never the
18094
+ * counterpart); only the frame-diff analyzer emits falls. So on an
18095
+ * onboard-only camera a window that closed only on `detected: false` never
18096
+ * closed at all, and `on-motion` silently behaved as `always-on` — on a
18097
+ * battery camera, the one failure mode the mode exists to prevent.
18098
+ *
18099
+ * Every motion event rearms this timer WITHOUT restarting the stream, so a
18100
+ * burst of re-fires costs nothing. A falling edge, when one does arrive,
18101
+ * still closes earlier via `motionCooldownMs` — whichever comes first wins.
18102
+ *
18103
+ * Not consumed by the runner: carried here so it shares the per-camera
18104
+ * device-settings surface with `motionCooldownMs`, exactly like
18105
+ * `maxSessionHoldMs`.
18106
+ */
18107
+ audioMotionWindowMs: number().min(audioMotionWindowMsField.min).max(audioMotionWindowMsField.max).optional(),
17519
18108
  motionFps: number().min(motionFpsField.min).max(motionFpsField.max).default(motionFpsField.default),
17520
18109
  detectionFps: number().min(detectionFpsField.min).max(detectionFpsField.max).default(detectionFpsField.default),
17521
18110
  motionStreamId: string(),
@@ -17611,7 +18200,7 @@ var RunnerCameraConfigSchema = object({
17611
18200
  */
17612
18201
  inferenceDevices: array(RunnerInferenceDeviceSchema).readonly().optional()
17613
18202
  });
17614
- motionFpsField.min, motionFpsField.max, motionFpsField.step, motionFpsField.default, detectionFpsField.min, detectionFpsField.max, detectionFpsField.step, detectionFpsField.default, motionCooldownMsField.min, motionCooldownMsField.max, motionCooldownMsField.step, motionCooldownMsField.default, maxSessionHoldMsField.min, maxSessionHoldMsField.max, maxSessionHoldMsField.step, maxSessionHoldMsField.default, occupancyRecheckSecField.min, occupancyRecheckSecField.max, occupancyRecheckSecField.step, occupancyRecheckSecField.default, occupancyRecheckFramesField.min, occupancyRecheckFramesField.max, occupancyRecheckFramesField.step, occupancyRecheckFramesField.default;
18203
+ motionFpsField.min, motionFpsField.max, motionFpsField.step, motionFpsField.default, detectionFpsField.min, detectionFpsField.max, detectionFpsField.step, detectionFpsField.default, motionCooldownMsField.min, motionCooldownMsField.max, motionCooldownMsField.step, motionCooldownMsField.default, maxSessionHoldMsField.min, maxSessionHoldMsField.max, maxSessionHoldMsField.step, maxSessionHoldMsField.default, audioMotionWindowMsField.min, audioMotionWindowMsField.max, audioMotionWindowMsField.step, audioMotionWindowMsField.default, occupancyRecheckSecField.min, occupancyRecheckSecField.max, occupancyRecheckSecField.step, occupancyRecheckSecField.default, occupancyRecheckFramesField.min, occupancyRecheckFramesField.max, occupancyRecheckFramesField.step, occupancyRecheckFramesField.default;
17615
18204
  /**
17616
18205
  * Runtime load summary returned by `getLocalLoad`. Used by the orchestrator's
17617
18206
  * load-balancing levels (L2 capacity-based, L3 hardware-aware) to decide
@@ -18597,7 +19186,31 @@ DeviceType.Camera, method(object({
18597
19186
  lastCapturedAt: number().nullable(),
18598
19187
  cacheAgeMs: number().nullable(),
18599
19188
  etag: string().nullable()
18600
- }))), systemMethod(object({
19189
+ }))), systemMethod(object({ deviceId: number() }), object({
19190
+ /** The battery slice as read, or null when the device has none. */
19191
+ battery: object({
19192
+ sleeping: boolean(),
19193
+ lastUpdated: number(),
19194
+ lastContactAt: number().optional()
19195
+ }).nullable(),
19196
+ /** The resolved snapshot state (what the overlay decision used). */
19197
+ state: object({
19198
+ isBattery: boolean(),
19199
+ reason: _enum([
19200
+ "disabled",
19201
+ "sleeping",
19202
+ "unreachable",
19203
+ "waking"
19204
+ ]).nullable()
19205
+ }),
19206
+ /** The cached frame behind the next paint. */
19207
+ frame: object({
19208
+ capturedAt: number().nullable(),
19209
+ ageMs: number().nullable()
19210
+ }),
19211
+ /** A wake window is currently open (the Waking overlay's source). */
19212
+ waking: boolean()
19213
+ })), systemMethod(object({
18601
19214
  /** The tiles a surface is actually rendering. One entry per (device,
18602
19215
  * width) the caller will paint — the width is snapped to the server's
18603
19216
  * ladder and becomes part of the link's SIGNED identity. */
@@ -18627,7 +19240,16 @@ targets: array(object({
18627
19240
  /** A sleeping battery camera: the frame is deliberately stale and will
18628
19241
  * NOT refresh in the background. A surface should say so rather than
18629
19242
  * present it as current. */
18630
- sleeping: boolean()
19243
+ sleeping: boolean(),
19244
+ /** Current device state rendered over the cached frame. State images
19245
+ * remain authoritative even when their photographic background is
19246
+ * old; null means the link must carry a current camera frame. */
19247
+ stateReason: _enum([
19248
+ "disabled",
19249
+ "sleeping",
19250
+ "unreachable",
19251
+ "waking"
19252
+ ]).nullable()
18631
19253
  })));
18632
19254
  /**
18633
19255
  * `sso-bridge` — internal hub-only cap that lets SSO-style auth
@@ -20149,6 +20771,25 @@ var BatteryStatusSchema = object({
20149
20771
  /** Ms epoch of the last observation. Lets consumers reason about freshness. */
20150
20772
  lastUpdated: number(),
20151
20773
  /**
20774
+ * Ms epoch of the last time the device PROVED it was reachable — a
20775
+ * completed firmware round-trip, an observed wake, or an inbound push
20776
+ * (firmware event, email). `0`/absent = never since this slice was born.
20777
+ *
20778
+ * This is the ONLY input that separates "asleep" from "gone", and it is
20779
+ * fed exclusively by PASSIVE signals: nothing may write it by reaching
20780
+ * for the radio, because a poll that confirms reachability is the same
20781
+ * poll that drains the battery. See {@link deriveBatteryPresence} — the
20782
+ * single derivation every consumer must use; no surface computes its own.
20783
+ *
20784
+ * It is deliberately NOT a clock in the
20785
+ * `scripts/check-runtime-state-durability.ts` sense: it is the
20786
+ * observation itself, and it is the only thing a 30-hour silence is
20787
+ * visible in. Writers quantise it (see `CONTACT_WRITE_QUANTUM_MS` in the
20788
+ * Reolink provider) so a value that means "recently" cannot cost a
20789
+ * SQLite commit per round-trip.
20790
+ */
20791
+ lastContactAt: number().optional(),
20792
+ /**
20152
20793
  * True when the source is a BINARY low-battery indicator (HA
20153
20794
  * `binary_sensor` device_class=battery / `LOW_BAT`) that has no real
20154
20795
  * charge level — `percentage` is then a coarse stand-in (100 = normal,
@@ -23686,7 +24327,7 @@ method(object({
23686
24327
  toMs: number()
23687
24328
  }), RecordingAvailabilitySchema, {
23688
24329
  kind: "query",
23689
- auth: "admin"
24330
+ auth: "protected"
23690
24331
  }), method(object({
23691
24332
  deviceId: number(),
23692
24333
  fromMs: number(),
@@ -23694,14 +24335,14 @@ method(object({
23694
24335
  tzOffsetMinutes: number()
23695
24336
  }), RecordingDaysSchema, {
23696
24337
  kind: "query",
23697
- auth: "admin"
24338
+ auth: "protected"
23698
24339
  }), method(object({
23699
24340
  deviceId: number(),
23700
24341
  fromMs: number(),
23701
24342
  toMs: number()
23702
24343
  }), RecordingManifestSchema, {
23703
24344
  kind: "query",
23704
- auth: "admin"
24345
+ auth: "protected"
23705
24346
  }), method(object({}), RecordingStorageUsageSchema, {
23706
24347
  kind: "query",
23707
24348
  auth: "admin"
@@ -23991,14 +24632,77 @@ method(object({
23991
24632
  * thing except the comparator: `similarity` (CLIP cosine at the same ROI coords
23992
24633
  * vs condition-tagged references) and `llm` (vision-LLM judgment over the crop).
23993
24634
  *
23994
- * D14 device-config archetype (`deviceConfig.ui.kind:'widget'`) the framework
23995
- * derives the device-detail contribution; the provider carries NO hand-written
23996
- * settings-contribution methods. `status.kind:'push'` the engine pushes on
23997
- * every hysteresis flip / availability change; consumers never poll.
23998
- */
23999
- /** Extensible condition tag. Seeded 'day' | 'night'; open by design so more can
24000
- * be added without a wire break (matching falls back to any-condition refs). */
24635
+ * **No `deviceConfig`, deliberately.** This shipped as the D14 widget archetype,
24636
+ * which put a "Scenes" tab on one camera's detail page. That is the wrong shape
24637
+ * for the thing: a scene is a standing question about the property ("is the bin
24638
+ * still out"), and the operator's question is "which of my scenes have tripped",
24639
+ * across every camera at once — not "what does camera 617 think". Buried one
24640
+ * camera deep it also could not be found. The surface is now a top-level admin
24641
+ * page (`/scenes`, `pages/Scenes.tsx`) that lists every scene on every camera and
24642
+ * picks the camera inside the create flow, the same shape Events and Faces have.
24643
+ *
24644
+ * The consequence to keep in mind: `host/scene-monitor-editor` is gone from
24645
+ * `HOST_WIDGETS` too. `scripts/check-host-widget-resolves.ts` asserts BOTH
24646
+ * directions, so a registration nobody declares fails exactly as loudly as a
24647
+ * declaration nobody registers. The editor is imported directly by the page.
24648
+ *
24649
+ * `status.kind:'push'` — the engine pushes on every hysteresis flip /
24650
+ * availability change; consumers never poll.
24651
+ */
24652
+ /** Extensible condition tag. Seeded 'day' | 'ir' (the two variants the operator
24653
+ * captures) plus 'night' | 'dawn' | 'dusk' from the resolver's sun-times band.
24654
+ * Open by design so more can be added without a wire break.
24655
+ *
24656
+ * Matching does NOT fall back across conditions: cross-condition cosines are
24657
+ * not comparable, so "I have never seen this scene in this light" is reported
24658
+ * as `unknown`, never guessed. A day reference scored against an IR frame
24659
+ * collapses the cosine and would latch a false alarm every single night. */
24001
24660
  var SceneConditionSchema = string();
24661
+ /**
24662
+ * What a scene does when the CURRENT light has no reference of its own.
24663
+ *
24664
+ * The lighting variants are not equally likely to exist. Almost every operator
24665
+ * captures daylight and then never stands outside at 22:00 to capture IR, and a
24666
+ * scene that is only ever going to be asked about a daytime question ("is the
24667
+ * bin still on the kerb at 08:00") does not need a night reference at all. The
24668
+ * night half must therefore be OPTIONAL, and optional means the scene keeps
24669
+ * working without it rather than degrading into a permanent complaint.
24670
+ *
24671
+ * - `skip` (default) — the check in that light is not made. Not a verdict, not
24672
+ * an alarm, not even an `unknown`: the live state simply stays whatever the
24673
+ * last covered light left it at, the latch is untouched, and the hysteresis
24674
+ * run is neither spent nor cleared. The scene resumes by itself at first
24675
+ * light. This is the only behaviour under which "I never captured IR" is a
24676
+ * configuration choice instead of a nightly fault.
24677
+ * - `judge-anyway` — score against the OTHER conditions' references. Available
24678
+ * for cameras whose IR frame is close enough to daylight (a floodlit
24679
+ * driveway, an always-white-light doorbell), and wrong for everything else:
24680
+ * cross-condition cosines are not comparable, so a day reference against a
24681
+ * true IR frame collapses and the scene reports a theft at 21:40.
24682
+ *
24683
+ * Never applies when the scene has NO comparable reference at all — that is
24684
+ * "not armed yet", it is reported as `no-reference-for-condition`, and silence
24685
+ * there would hide a scene the operator never finished setting up.
24686
+ */
24687
+ var SceneUncoveredPolicySchema = _enum(["skip", "judge-anyway"]);
24688
+ /** `matched` = the baseline is what we see; `diverged` = it demonstrably is not;
24689
+ * `unknown` = we cannot judge (no reference for this condition, encoder model
24690
+ * changed, view shifted, no snapshot). `unknown` is a real value, not a null,
24691
+ * and never counts toward hysteresis in either direction. */
24692
+ var SceneVerdictSchema = _enum([
24693
+ "matched",
24694
+ "diverged",
24695
+ "unknown"
24696
+ ]);
24697
+ /** Why a scene cannot judge. Named, because this feature's failure mode is
24698
+ * silence that reads as "nothing has happened". */
24699
+ var SceneUnavailableSchema = _enum([
24700
+ "no-reference-for-condition",
24701
+ "view-shifted",
24702
+ "no-vision-profile",
24703
+ "encoder-model-changed",
24704
+ "no-snapshot"
24705
+ ]);
24002
24706
  /** One captured reference — condition-tagged, model-version-gated. `embedding`
24003
24707
  * is `number[]` (Float32Array does NOT survive MsgPack/UDS). */
24004
24708
  var SceneReferenceSchema = object({
@@ -24006,7 +24710,14 @@ var SceneReferenceSchema = object({
24006
24710
  modelId: string(),
24007
24711
  condition: SceneConditionSchema,
24008
24712
  capturedAt: number(),
24009
- thumbnailMediaId: string().optional()
24713
+ thumbnailMediaId: string().optional(),
24714
+ /** Whole-frame (downscaled) embedding captured alongside the ROI crop. The
24715
+ * anti-view-shift anchor: a bumped camera, a PTZ preset or a re-aim makes the
24716
+ * normalized rect frame a different piece of world, and the scene would
24717
+ * diverge forever with a perfectly plausible cosine. Checked LAZILY, only
24718
+ * when hysteresis is about to flip — one extra encode per candidate
24719
+ * transition, not per poll. */
24720
+ anchorEmbedding: array(number()).optional()
24010
24721
  });
24011
24722
  var SceneMonitorStateSchema = object({
24012
24723
  id: string(),
@@ -24028,6 +24739,28 @@ var SceneCheckSchema = discriminatedUnion("mode", [object({
24028
24739
  profileId: string().optional(),
24029
24740
  hysteresisCount: number().int().positive()
24030
24741
  })]);
24742
+ var SCENE_DEFAULT_ANCHOR_THRESHOLD = .85;
24743
+ /** Night is OPTIONAL. A scene with only a daylight reference sits the IR hours
24744
+ * out in silence rather than reporting a fault every night. */
24745
+ var SCENE_DEFAULT_UNCOVERED_POLICY = "skip";
24746
+ /**
24747
+ * Vision-model adjudication of a candidate flip. Field names deliberately
24748
+ * mirror `NcConfirmSchema` so an operator meets one vocabulary, not two.
24749
+ *
24750
+ * `onTimeout` defaults to **'hold'**, the OPPOSITE of `NcConfirmGate`'s
24751
+ * fail-open: a notification suppressed is the worse error there, but a vision
24752
+ * model that timed out has not told us the bin is gone, and a latch is a
24753
+ * stateful claim that costs the operator a trip to reset.
24754
+ */
24755
+ var SceneConfirmSchema = object({
24756
+ enabled: boolean().default(false),
24757
+ prompt: string().min(1).max(1e3),
24758
+ profileId: string().optional(),
24759
+ timeoutMs: number().int().min(1e3).max(2e4).default(8e3),
24760
+ maxImagePx: number().int().min(64).max(2048).default(448),
24761
+ /** What a timeout / unavailable model means for the PENDING flip. */
24762
+ onTimeout: _enum(["flip", "hold"]).default("hold")
24763
+ });
24031
24764
  var SceneMonitorSchema = object({
24032
24765
  id: string(),
24033
24766
  label: string(),
@@ -24046,7 +24779,56 @@ var SceneMonitorSchema = object({
24046
24779
  lastConfidence: number().nullable(),
24047
24780
  currentCondition: SceneConditionSchema.nullable(),
24048
24781
  availability: _enum(["ok", "unavailable"]),
24049
- unavailableReason: string().nullable()
24782
+ unavailableReason: string().nullable(),
24783
+ /** Which state is "the initial screen". `null` until the first capture. */
24784
+ baselineStateId: string().nullable(),
24785
+ /** Which boolean drives notification rules and any export. */
24786
+ emit: _enum(["latched", "live"]).default("latched"),
24787
+ /** Live: does the region match the baseline RIGHT NOW. */
24788
+ verdict: SceneVerdictSchema,
24789
+ /** Has it been `diverged` at least once since `armedAt` — the operator's boolean. */
24790
+ latched: boolean(),
24791
+ /** Last reset (or creation). */
24792
+ armedAt: number(),
24793
+ divergedAt: number().nullable(),
24794
+ restoredAt: number().nullable(),
24795
+ /** A check is only COUNTED when the device has been quiet this long. Motion
24796
+ * during the window DISCARDS the observation — a car pulling up in front of
24797
+ * the bin must not be able to spend hysteresis credit. */
24798
+ quietSeconds: number().int().min(0).max(3600).default(60),
24799
+ /** An observation only advances the pending count when it is at least this
24800
+ * far from the previously counted one, so N agreeing checks span real time
24801
+ * rather than N adjacent polls inside one occlusion. */
24802
+ minObservationSpacingSec: number().int().min(0).max(3600).default(120),
24803
+ /** Vision-model adjudication of a candidate flip. Similarity primary only. */
24804
+ confirm: SceneConfirmSchema.optional(),
24805
+ /** Whole-frame anchor cosine below which a flip is REFUSED as `view-shifted`. */
24806
+ anchorThreshold: number().min(0).max(1).default(SCENE_DEFAULT_ANCHOR_THRESHOLD),
24807
+ /** Clear the latch on its own when the scene matches again? Default false —
24808
+ * `restoredAt` and the `scene-restored` edge are recorded regardless, so an
24809
+ * automation can react to the bin coming back without the operator's own
24810
+ * alarm silently clearing itself. */
24811
+ autoRestore: boolean().default(false),
24812
+ /** What to do when the current light has no reference of its own. See
24813
+ * {@link SceneUncoveredPolicySchema} — the default makes night OPTIONAL. */
24814
+ onUncoveredCondition: SceneUncoveredPolicySchema.default(SCENE_DEFAULT_UNCOVERED_POLICY),
24815
+ /**
24816
+ * The light whose checks are currently being SAT OUT under
24817
+ * `onUncoveredCondition: 'skip'` — `null` when the scene is checking normally.
24818
+ *
24819
+ * Engine-reported and advisory only: it moves no verdict, no latch and no
24820
+ * hysteresis. It exists so the card can say *"night (IR) — checks paused,
24821
+ * nothing captured in this light"* in the same calm voice as the coverage
24822
+ * line, because the alternative is a scene that silently stops answering
24823
+ * after sunset with nothing anywhere saying why. A skipped check must never
24824
+ * read as a broken one.
24825
+ */
24826
+ suspendedCondition: SceneConditionSchema.nullable().default(null),
24827
+ /** Named cause when `verdict === 'unknown'`. */
24828
+ unavailable: SceneUnavailableSchema.nullable(),
24829
+ /** Conditions that have at least one comparable reference — the coverage line
24830
+ * ("day ✓ · ir ✓ · dusk ✗") that turns a silent fallback into a visible fact. */
24831
+ coveredConditions: array(SceneConditionSchema)
24050
24832
  });
24051
24833
  var SceneMonitorStatusSchema = object({
24052
24834
  monitors: array(SceneMonitorSchema),
@@ -24079,7 +24861,15 @@ DeviceType.Camera, method(object({ deviceId: number() }), SceneMonitorStatusSche
24079
24861
  "both"
24080
24862
  ]).optional(),
24081
24863
  checkIntervalSec: number().optional(),
24082
- check: SceneCheckSchema.optional()
24864
+ check: SceneCheckSchema.optional(),
24865
+ emit: _enum(["latched", "live"]).optional(),
24866
+ quietSeconds: number().int().min(0).max(3600).optional(),
24867
+ minObservationSpacingSec: number().int().min(0).max(3600).optional(),
24868
+ anchorThreshold: number().min(0).max(1).optional(),
24869
+ autoRestore: boolean().optional(),
24870
+ onUncoveredCondition: SceneUncoveredPolicySchema.optional(),
24871
+ /** `null` clears the vision-model adjudicator. */
24872
+ confirm: SceneConfirmSchema.nullable().optional()
24083
24873
  })
24084
24874
  }), _void(), {
24085
24875
  kind: "mutation",
@@ -24116,6 +24906,14 @@ DeviceType.Camera, method(object({ deviceId: number() }), SceneMonitorStatusSche
24116
24906
  }), _void(), {
24117
24907
  kind: "mutation",
24118
24908
  auth: "admin"
24909
+ }), method(object({
24910
+ deviceId: number(),
24911
+ monitorId: string(),
24912
+ /** Defaults to TRUE at the provider seam — see `SCENE_RESET_RECAPTURES`. */
24913
+ recapture: boolean().optional()
24914
+ }), _void(), {
24915
+ kind: "mutation",
24916
+ auth: "admin"
24119
24917
  });
24120
24918
  /**
24121
24919
  * Per-stage gating mode applied to the zones a rule references.
@@ -24269,6 +25067,16 @@ var CamStreamDescriptorSchema = object({
24269
25067
  /** Transport-specific opaque metadata (e.g. rfc4571 SDP). */
24270
25068
  metadata: record(string(), unknown()).optional()
24271
25069
  });
25070
+ object({
25071
+ /** The descriptors as last built from a real camera response. Never a guess:
25072
+ * a failed or refused build writes NOTHING, so a restored catalog is always
25073
+ * one the camera itself once produced. */
25074
+ descriptors: array(CamStreamDescriptorSchema),
25075
+ /** Ms epoch of the build that produced {@link descriptors}. Lets the wake
25076
+ * path decide whether the camera's own awake window is worth spending on a
25077
+ * re-read. */
25078
+ lastFetchedAt: number()
25079
+ });
24272
25080
  DeviceType.Camera, method(object({ deviceId: number().int().nonnegative() }), array(CamStreamDescriptorSchema).readonly());
24273
25081
  /** One of the camera's stream profiles. */
24274
25082
  var StreamProfileSchema = _enum([
@@ -24424,12 +25232,64 @@ var NetworkAddressSchema = object({
24424
25232
  family: string(),
24425
25233
  internal: boolean()
24426
25234
  });
25235
+ /**
25236
+ * Provenance of the site coordinates, and the whole reason this is not just two
25237
+ * numbers.
25238
+ *
25239
+ * - `operator-set` — a human typed it, or accepted a detection. Authoritative;
25240
+ * nothing overwrites it.
25241
+ * - `derived-from-ip` — the hub geolocated its own public IP once, because a
25242
+ * default that is right to a few kilometres beats the coarse UTC clock split
25243
+ * the sun-times consumers otherwise fall back to.
25244
+ *
25245
+ * The UI shows which one it is. An operator who cannot tell a guess from their
25246
+ * own input will eventually trust the guess.
25247
+ */
25248
+ var SiteLocationSourceSchema = _enum(["operator-set", "derived-from-ip"]);
25249
+ /**
25250
+ * The read shape: the location plus the honest state of the one-shot derivation.
25251
+ *
25252
+ * `derivationAttemptedAt` is what makes the "one call, ever" contract
25253
+ * inspectable. When it is set and `location` is null, the geo-IP lookup ran and
25254
+ * failed; the hub will NOT try again on its own — the fallback is declared
25255
+ * (consumers degrade to their own last resort) and the operator either types the
25256
+ * coordinates or presses detect.
25257
+ */
25258
+ var SiteLocationStatusSchema = object({
25259
+ location: object({
25260
+ /** WGS84 decimal degrees. */
25261
+ latitude: number().min(-90).max(90),
25262
+ longitude: number().min(-180).max(180),
25263
+ source: SiteLocationSourceSchema,
25264
+ /** Epoch ms the value was last written. */
25265
+ updatedAt: number(),
25266
+ /**
25267
+ * Human-readable place the geo-IP service reported ("Napoli, IT"). Display
25268
+ * only — never parsed, never matched on. Absent for an operator-typed value.
25269
+ */
25270
+ label: string().optional()
25271
+ }).nullable(),
25272
+ derivationAttemptedAt: number().nullable(),
25273
+ /** Why the last derivation failed, for the UI to show instead of a shrug. */
25274
+ derivationError: string().nullable()
25275
+ });
25276
+ /** `null` clears the location and re-arms nothing — the derivation stays spent. */
25277
+ var SetSiteLocationInputSchema = object({
25278
+ latitude: number().min(-90).max(90),
25279
+ longitude: number().min(-180).max(180)
25280
+ }).nullable();
24427
25281
  method(_void(), FeatureManifestSchema), method(_void(), HealthStatusSchema), method(_void(), FeatureManifestSchema), method(_void(), array(NetworkAddressSchema).readonly()), method(_void(), unknown().nullable(), { auth: "admin" }), method(record(string(), unknown()), _null(), {
24428
25282
  kind: "mutation",
24429
25283
  auth: "admin"
24430
25284
  }), method(_void(), _void(), {
24431
25285
  kind: "mutation",
24432
25286
  auth: "admin"
25287
+ }), method(_void(), SiteLocationStatusSchema), method(SetSiteLocationInputSchema, SiteLocationStatusSchema, {
25288
+ kind: "mutation",
25289
+ auth: "admin"
25290
+ }), method(_void(), SiteLocationStatusSchema, {
25291
+ kind: "mutation",
25292
+ auth: "admin"
24433
25293
  });
24434
25294
  object({
24435
25295
  /** True when the device's tamper switch / case-open contact is
@@ -27159,6 +28019,12 @@ Object.freeze({
27159
28019
  addonId: null,
27160
28020
  access: "create"
27161
28021
  },
28022
+ "llm.cancel": {
28023
+ capName: "llm",
28024
+ capScope: "system",
28025
+ addonId: null,
28026
+ access: "create"
28027
+ },
27162
28028
  "llm.deleteModel": {
27163
28029
  capName: "llm",
27164
28030
  capScope: "system",
@@ -27243,6 +28109,12 @@ Object.freeze({
27243
28109
  addonId: null,
27244
28110
  access: "view"
27245
28111
  },
28112
+ "llm.resolveModelRef": {
28113
+ capName: "llm",
28114
+ capScope: "system",
28115
+ addonId: null,
28116
+ access: "create"
28117
+ },
27246
28118
  "llm.setDefault": {
27247
28119
  capName: "llm",
27248
28120
  capScope: "system",
@@ -29409,6 +30281,12 @@ Object.freeze({
29409
30281
  addonId: null,
29410
30282
  access: "create"
29411
30283
  },
30284
+ "sceneMonitor.resetScene": {
30285
+ capName: "scene-monitor",
30286
+ capScope: "device",
30287
+ addonId: null,
30288
+ access: "delete"
30289
+ },
29412
30290
  "sceneMonitor.updateScene": {
29413
30291
  capName: "scene-monitor",
29414
30292
  capScope: "device",
@@ -29547,6 +30425,12 @@ Object.freeze({
29547
30425
  addonId: null,
29548
30426
  access: "view"
29549
30427
  },
30428
+ "snapshot.getDebugState": {
30429
+ capName: "snapshot",
30430
+ capScope: "device",
30431
+ addonId: null,
30432
+ access: "view"
30433
+ },
29550
30434
  "snapshot.getSnapshot": {
29551
30435
  capName: "snapshot",
29552
30436
  capScope: "device",
@@ -30087,6 +30971,12 @@ Object.freeze({
30087
30971
  addonId: null,
30088
30972
  access: "create"
30089
30973
  },
30974
+ "system.detectSiteLocation": {
30975
+ capName: "system",
30976
+ capScope: "system",
30977
+ addonId: null,
30978
+ access: "create"
30979
+ },
30090
30980
  "system.featureFlags": {
30091
30981
  capName: "system",
30092
30982
  capScope: "system",
@@ -30105,6 +30995,12 @@ Object.freeze({
30105
30995
  addonId: null,
30106
30996
  access: "view"
30107
30997
  },
30998
+ "system.getSiteLocation": {
30999
+ capName: "system",
31000
+ capScope: "system",
31001
+ addonId: null,
31002
+ access: "view"
31003
+ },
30108
31004
  "system.health": {
30109
31005
  capName: "system",
30110
31006
  capScope: "system",
@@ -30129,6 +31025,12 @@ Object.freeze({
30129
31025
  addonId: null,
30130
31026
  access: "create"
30131
31027
  },
31028
+ "system.setSiteLocation": {
31029
+ capName: "system",
31030
+ capScope: "system",
31031
+ addonId: null,
31032
+ access: "create"
31033
+ },
30132
31034
  "terminalSession.adoptLegacyMonitor": {
30133
31035
  capName: "terminal-session",
30134
31036
  capScope: "system",
@@ -30700,6 +31602,1709 @@ Object.freeze({
30700
31602
  access: "create"
30701
31603
  }
30702
31604
  });
31605
+ Object.freeze({
31606
+ "accessories.setChildHidden": [{
31607
+ name: "childDeviceId",
31608
+ form: "single",
31609
+ optional: false
31610
+ }, {
31611
+ name: "deviceId",
31612
+ form: "single",
31613
+ optional: false
31614
+ }],
31615
+ "addonSettings.getDeviceSettings": [{
31616
+ name: "deviceId",
31617
+ form: "single",
31618
+ optional: false
31619
+ }],
31620
+ "addonSettings.updateDeviceSettings": [{
31621
+ name: "deviceId",
31622
+ form: "single",
31623
+ optional: false
31624
+ }],
31625
+ "alarmPanel.arm": [{
31626
+ name: "deviceId",
31627
+ form: "single",
31628
+ optional: false
31629
+ }],
31630
+ "alarmPanel.disarm": [{
31631
+ name: "deviceId",
31632
+ form: "single",
31633
+ optional: false
31634
+ }],
31635
+ "alarmPanel.trigger": [{
31636
+ name: "deviceId",
31637
+ form: "single",
31638
+ optional: false
31639
+ }],
31640
+ "audioAnalysis.resolveDeviceSettings": [{
31641
+ name: "deviceId",
31642
+ form: "single",
31643
+ optional: false
31644
+ }],
31645
+ "audioAnalyzer.classify": [{
31646
+ name: "deviceId",
31647
+ form: "single",
31648
+ optional: true
31649
+ }],
31650
+ "audioMetrics.getCurrentSnapshot": [{
31651
+ name: "deviceId",
31652
+ form: "single",
31653
+ optional: false
31654
+ }],
31655
+ "audioMetrics.getHistory": [{
31656
+ name: "deviceId",
31657
+ form: "single",
31658
+ optional: false
31659
+ }],
31660
+ "automationControl.disable": [{
31661
+ name: "deviceId",
31662
+ form: "single",
31663
+ optional: false
31664
+ }],
31665
+ "automationControl.enable": [{
31666
+ name: "deviceId",
31667
+ form: "single",
31668
+ optional: false
31669
+ }],
31670
+ "automationControl.trigger": [{
31671
+ name: "deviceId",
31672
+ form: "single",
31673
+ optional: false
31674
+ }],
31675
+ "battery.wakeForStream": [{
31676
+ name: "deviceId",
31677
+ form: "single",
31678
+ optional: false
31679
+ }],
31680
+ "brightness.setBrightness": [{
31681
+ name: "deviceId",
31682
+ form: "single",
31683
+ optional: false
31684
+ }],
31685
+ "button.press": [{
31686
+ name: "deviceId",
31687
+ form: "single",
31688
+ optional: false
31689
+ }],
31690
+ "cameraCredentials.getCredentials": [{
31691
+ name: "deviceId",
31692
+ form: "single",
31693
+ optional: false
31694
+ }],
31695
+ "cameraStreams.getBrokerStreams": [{
31696
+ name: "deviceId",
31697
+ form: "single",
31698
+ optional: false
31699
+ }],
31700
+ "cameraStreams.getCameraStreams": [{
31701
+ name: "deviceId",
31702
+ form: "single",
31703
+ optional: false
31704
+ }],
31705
+ "cameraStreams.getProfileRtspEntries": [{
31706
+ name: "deviceId",
31707
+ form: "single",
31708
+ optional: false
31709
+ }],
31710
+ "cameraStreams.getRtspEntries": [{
31711
+ name: "deviceId",
31712
+ form: "single",
31713
+ optional: false
31714
+ }],
31715
+ "cameraStreams.pickStream": [{
31716
+ name: "deviceId",
31717
+ form: "single",
31718
+ optional: false
31719
+ }],
31720
+ "climateControl.setFanMode": [{
31721
+ name: "deviceId",
31722
+ form: "single",
31723
+ optional: false
31724
+ }],
31725
+ "climateControl.setMode": [{
31726
+ name: "deviceId",
31727
+ form: "single",
31728
+ optional: false
31729
+ }],
31730
+ "climateControl.setPreset": [{
31731
+ name: "deviceId",
31732
+ form: "single",
31733
+ optional: false
31734
+ }],
31735
+ "climateControl.setSwingHorizontal": [{
31736
+ name: "deviceId",
31737
+ form: "single",
31738
+ optional: false
31739
+ }],
31740
+ "climateControl.setSwingVertical": [{
31741
+ name: "deviceId",
31742
+ form: "single",
31743
+ optional: false
31744
+ }],
31745
+ "climateControl.setTarget": [{
31746
+ name: "deviceId",
31747
+ form: "single",
31748
+ optional: false
31749
+ }],
31750
+ "climateControl.setTargetHumidity": [{
31751
+ name: "deviceId",
31752
+ form: "single",
31753
+ optional: false
31754
+ }],
31755
+ "climateControl.setTargetRange": [{
31756
+ name: "deviceId",
31757
+ form: "single",
31758
+ optional: false
31759
+ }],
31760
+ "color.setColor": [{
31761
+ name: "deviceId",
31762
+ form: "single",
31763
+ optional: false
31764
+ }],
31765
+ "consumables.reset": [{
31766
+ name: "deviceId",
31767
+ form: "single",
31768
+ optional: false
31769
+ }],
31770
+ "control.setValue": [{
31771
+ name: "deviceId",
31772
+ form: "single",
31773
+ optional: false
31774
+ }],
31775
+ "cover.close": [{
31776
+ name: "deviceId",
31777
+ form: "single",
31778
+ optional: false
31779
+ }],
31780
+ "cover.open": [{
31781
+ name: "deviceId",
31782
+ form: "single",
31783
+ optional: false
31784
+ }],
31785
+ "cover.setPosition": [{
31786
+ name: "deviceId",
31787
+ form: "single",
31788
+ optional: false
31789
+ }],
31790
+ "cover.setTiltPosition": [{
31791
+ name: "deviceId",
31792
+ form: "single",
31793
+ optional: false
31794
+ }],
31795
+ "cover.stop": [{
31796
+ name: "deviceId",
31797
+ form: "single",
31798
+ optional: false
31799
+ }],
31800
+ "dayNight.getOptions": [{
31801
+ name: "deviceId",
31802
+ form: "single",
31803
+ optional: false
31804
+ }],
31805
+ "dayNight.setSettings": [{
31806
+ name: "deviceId",
31807
+ form: "single",
31808
+ optional: false
31809
+ }],
31810
+ "decoder.createSession": [{
31811
+ name: "deviceId",
31812
+ form: "single",
31813
+ optional: true
31814
+ }],
31815
+ "deviceAdoption.release": [{
31816
+ name: "camDeviceId",
31817
+ form: "single",
31818
+ optional: false
31819
+ }],
31820
+ "deviceAdoption.resync": [{
31821
+ name: "camDeviceId",
31822
+ form: "single",
31823
+ optional: false
31824
+ }],
31825
+ "deviceDiscovery.adoptDevice": [{
31826
+ name: "deviceId",
31827
+ form: "single",
31828
+ optional: false
31829
+ }],
31830
+ "deviceDiscovery.listDiscovered": [{
31831
+ name: "deviceId",
31832
+ form: "single",
31833
+ optional: false
31834
+ }],
31835
+ "deviceDiscovery.refreshDiscovery": [{
31836
+ name: "deviceId",
31837
+ form: "single",
31838
+ optional: false
31839
+ }],
31840
+ "deviceDiscovery.releaseDevice": [{
31841
+ name: "childDeviceId",
31842
+ form: "single",
31843
+ optional: false
31844
+ }, {
31845
+ name: "deviceId",
31846
+ form: "single",
31847
+ optional: false
31848
+ }],
31849
+ "deviceManager.adoptionRelease": [{
31850
+ name: "camDeviceId",
31851
+ form: "single",
31852
+ optional: false
31853
+ }],
31854
+ "deviceManager.adoptionResync": [{
31855
+ name: "camDeviceId",
31856
+ form: "single",
31857
+ optional: false
31858
+ }],
31859
+ "deviceManager.applyInitialMeta": [{
31860
+ name: "deviceId",
31861
+ form: "single",
31862
+ optional: false
31863
+ }, {
31864
+ name: "linkDeviceId",
31865
+ form: "single",
31866
+ optional: true
31867
+ }],
31868
+ "deviceManager.disable": [{
31869
+ name: "deviceId",
31870
+ form: "single",
31871
+ optional: false
31872
+ }],
31873
+ "deviceManager.enable": [{
31874
+ name: "deviceId",
31875
+ form: "single",
31876
+ optional: false
31877
+ }],
31878
+ "deviceManager.getBindings": [{
31879
+ name: "deviceId",
31880
+ form: "single",
31881
+ optional: false
31882
+ }],
31883
+ "deviceManager.getChildren": [{
31884
+ name: "parentDeviceId",
31885
+ form: "single",
31886
+ optional: false
31887
+ }],
31888
+ "deviceManager.getConfigSchema": [{
31889
+ name: "deviceId",
31890
+ form: "single",
31891
+ optional: false
31892
+ }],
31893
+ "deviceManager.getDevice": [{
31894
+ name: "deviceId",
31895
+ form: "single",
31896
+ optional: false
31897
+ }],
31898
+ "deviceManager.getDeviceAggregate": [{
31899
+ name: "deviceId",
31900
+ form: "single",
31901
+ optional: false
31902
+ }],
31903
+ "deviceManager.getDeviceLiveInfoAggregate": [{
31904
+ name: "deviceId",
31905
+ form: "single",
31906
+ optional: false
31907
+ }],
31908
+ "deviceManager.getDeviceSettingsAggregate": [{
31909
+ name: "deviceId",
31910
+ form: "single",
31911
+ optional: false
31912
+ }],
31913
+ "deviceManager.getDeviceStatusAggregate": [{
31914
+ name: "deviceId",
31915
+ form: "single",
31916
+ optional: false
31917
+ }],
31918
+ "deviceManager.getDeviceStatusAggregateBatch": [{
31919
+ name: "deviceIds",
31920
+ form: "array",
31921
+ optional: false
31922
+ }],
31923
+ "deviceManager.getLinkedDevices": [{
31924
+ name: "deviceId",
31925
+ form: "single",
31926
+ optional: false
31927
+ }],
31928
+ "deviceManager.getSettingsSchema": [{
31929
+ name: "deviceId",
31930
+ form: "single",
31931
+ optional: false
31932
+ }],
31933
+ "deviceManager.getStreamProfileMap": [{
31934
+ name: "deviceId",
31935
+ form: "single",
31936
+ optional: false
31937
+ }],
31938
+ "deviceManager.getStreamSources": [{
31939
+ name: "deviceId",
31940
+ form: "single",
31941
+ optional: false
31942
+ }],
31943
+ "deviceManager.getWireableFields": [{
31944
+ name: "deviceId",
31945
+ form: "single",
31946
+ optional: false
31947
+ }],
31948
+ "deviceManager.loadConfig": [{
31949
+ name: "deviceId",
31950
+ form: "single",
31951
+ optional: false
31952
+ }],
31953
+ "deviceManager.loadMeta": [{
31954
+ name: "deviceId",
31955
+ form: "single",
31956
+ optional: false
31957
+ }],
31958
+ "deviceManager.loadRuntimeState": [{
31959
+ name: "deviceId",
31960
+ form: "single",
31961
+ optional: false
31962
+ }],
31963
+ "deviceManager.persistConfig": [{
31964
+ name: "deviceId",
31965
+ form: "single",
31966
+ optional: false
31967
+ }],
31968
+ "deviceManager.probeStreams": [{
31969
+ name: "deviceId",
31970
+ form: "single",
31971
+ optional: false
31972
+ }],
31973
+ "deviceManager.registerDevice": [{
31974
+ name: "parentDeviceId",
31975
+ form: "single",
31976
+ optional: true
31977
+ }],
31978
+ "deviceManager.remove": [{
31979
+ name: "deviceId",
31980
+ form: "single",
31981
+ optional: false
31982
+ }],
31983
+ "deviceManager.removeDevice": [{
31984
+ name: "deviceId",
31985
+ form: "single",
31986
+ optional: false
31987
+ }],
31988
+ "deviceManager.runDeviceAction": [{
31989
+ name: "deviceId",
31990
+ form: "single",
31991
+ optional: false
31992
+ }],
31993
+ "deviceManager.setChildLayout": [{
31994
+ name: "deviceId",
31995
+ form: "single",
31996
+ optional: false
31997
+ }],
31998
+ "deviceManager.setDisabled": [{
31999
+ name: "deviceId",
32000
+ form: "single",
32001
+ optional: false
32002
+ }],
32003
+ "deviceManager.setDisplay": [{
32004
+ name: "deviceId",
32005
+ form: "single",
32006
+ optional: false
32007
+ }],
32008
+ "deviceManager.setIntegrationId": [{
32009
+ name: "deviceId",
32010
+ form: "single",
32011
+ optional: false
32012
+ }],
32013
+ "deviceManager.setLinkDeviceId": [{
32014
+ name: "deviceId",
32015
+ form: "single",
32016
+ optional: false
32017
+ }, {
32018
+ name: "linkDeviceId",
32019
+ form: "single",
32020
+ optional: true
32021
+ }],
32022
+ "deviceManager.setLocation": [{
32023
+ name: "deviceId",
32024
+ form: "single",
32025
+ optional: false
32026
+ }],
32027
+ "deviceManager.setMetadata": [{
32028
+ name: "deviceId",
32029
+ form: "single",
32030
+ optional: false
32031
+ }],
32032
+ "deviceManager.setName": [{
32033
+ name: "deviceId",
32034
+ form: "single",
32035
+ optional: false
32036
+ }],
32037
+ "deviceManager.setPrimaryChildEntityId": [{
32038
+ name: "deviceId",
32039
+ form: "single",
32040
+ optional: false
32041
+ }],
32042
+ "deviceManager.setRole": [{
32043
+ name: "deviceId",
32044
+ form: "single",
32045
+ optional: false
32046
+ }],
32047
+ "deviceManager.setStreamProfileMap": [{
32048
+ name: "deviceId",
32049
+ form: "single",
32050
+ optional: false
32051
+ }],
32052
+ "deviceManager.setType": [{
32053
+ name: "deviceId",
32054
+ form: "single",
32055
+ optional: false
32056
+ }],
32057
+ "deviceManager.setWrapperActive": [{
32058
+ name: "deviceId",
32059
+ form: "single",
32060
+ optional: false
32061
+ }],
32062
+ "deviceManager.testField": [{
32063
+ name: "deviceId",
32064
+ form: "single",
32065
+ optional: false
32066
+ }],
32067
+ "deviceManager.updateConfig": [{
32068
+ name: "deviceId",
32069
+ form: "single",
32070
+ optional: false
32071
+ }],
32072
+ "deviceManager.updateDeviceField": [{
32073
+ name: "deviceId",
32074
+ form: "single",
32075
+ optional: false
32076
+ }],
32077
+ "deviceManager.updateDeviceFieldsBatch": [{
32078
+ name: "deviceId",
32079
+ form: "single",
32080
+ optional: false
32081
+ }],
32082
+ "deviceOps.getConfigEntries": [{
32083
+ name: "deviceId",
32084
+ form: "single",
32085
+ optional: false
32086
+ }],
32087
+ "deviceOps.getRawState": [{
32088
+ name: "deviceId",
32089
+ form: "single",
32090
+ optional: false
32091
+ }],
32092
+ "deviceOps.getSettingsSchema": [{
32093
+ name: "deviceId",
32094
+ form: "single",
32095
+ optional: false
32096
+ }],
32097
+ "deviceOps.getStreamSources": [{
32098
+ name: "deviceId",
32099
+ form: "single",
32100
+ optional: false
32101
+ }],
32102
+ "deviceOps.removeDevice": [{
32103
+ name: "deviceId",
32104
+ form: "single",
32105
+ optional: false
32106
+ }],
32107
+ "deviceOps.runAction": [{
32108
+ name: "deviceId",
32109
+ form: "single",
32110
+ optional: false
32111
+ }],
32112
+ "deviceOps.setConfig": [{
32113
+ name: "deviceId",
32114
+ form: "single",
32115
+ optional: false
32116
+ }],
32117
+ "deviceState.getCapSlice": [{
32118
+ name: "deviceId",
32119
+ form: "single",
32120
+ optional: false
32121
+ }],
32122
+ "deviceState.getSnapshot": [{
32123
+ name: "deviceId",
32124
+ form: "single",
32125
+ optional: false
32126
+ }],
32127
+ "deviceState.setCapSlice": [{
32128
+ name: "deviceId",
32129
+ form: "single",
32130
+ optional: false
32131
+ }],
32132
+ "events.getEventClipUrl": [{
32133
+ name: "deviceId",
32134
+ form: "single",
32135
+ optional: false
32136
+ }],
32137
+ "events.getEvents": [{
32138
+ name: "deviceId",
32139
+ form: "single",
32140
+ optional: false
32141
+ }],
32142
+ "events.getEventThumbnail": [{
32143
+ name: "deviceId",
32144
+ form: "single",
32145
+ optional: false
32146
+ }],
32147
+ "faceGallery.getFaceByTrack": [{
32148
+ name: "deviceId",
32149
+ form: "single",
32150
+ optional: false
32151
+ }],
32152
+ "faceGallery.listRecentFaces": [{
32153
+ name: "deviceId",
32154
+ form: "single",
32155
+ optional: true
32156
+ }],
32157
+ "fanControl.setDirection": [{
32158
+ name: "deviceId",
32159
+ form: "single",
32160
+ optional: false
32161
+ }],
32162
+ "fanControl.setOscillating": [{
32163
+ name: "deviceId",
32164
+ form: "single",
32165
+ optional: false
32166
+ }],
32167
+ "fanControl.setPercentage": [{
32168
+ name: "deviceId",
32169
+ form: "single",
32170
+ optional: false
32171
+ }],
32172
+ "fanControl.setPreset": [{
32173
+ name: "deviceId",
32174
+ form: "single",
32175
+ optional: false
32176
+ }],
32177
+ "humidifier.setMode": [{
32178
+ name: "deviceId",
32179
+ form: "single",
32180
+ optional: false
32181
+ }],
32182
+ "humidifier.setOn": [{
32183
+ name: "deviceId",
32184
+ form: "single",
32185
+ optional: false
32186
+ }],
32187
+ "humidifier.setTargetHumidity": [{
32188
+ name: "deviceId",
32189
+ form: "single",
32190
+ optional: false
32191
+ }],
32192
+ "imageSettings.getOptions": [{
32193
+ name: "deviceId",
32194
+ form: "single",
32195
+ optional: false
32196
+ }],
32197
+ "imageSettings.setSettings": [{
32198
+ name: "deviceId",
32199
+ form: "single",
32200
+ optional: false
32201
+ }],
32202
+ "intercom.endTalkSession": [{
32203
+ name: "deviceId",
32204
+ form: "single",
32205
+ optional: false
32206
+ }],
32207
+ "intercom.handleAnswer": [{
32208
+ name: "deviceId",
32209
+ form: "single",
32210
+ optional: false
32211
+ }],
32212
+ "intercom.pushTalkAudio": [{
32213
+ name: "deviceId",
32214
+ form: "single",
32215
+ optional: false
32216
+ }],
32217
+ "intercom.startSession": [{
32218
+ name: "deviceId",
32219
+ form: "single",
32220
+ optional: false
32221
+ }],
32222
+ "intercom.startTalkSession": [{
32223
+ name: "deviceId",
32224
+ form: "single",
32225
+ optional: false
32226
+ }],
32227
+ "intercom.stopSession": [{
32228
+ name: "deviceId",
32229
+ form: "single",
32230
+ optional: false
32231
+ }],
32232
+ "lawnMowerControl.dock": [{
32233
+ name: "deviceId",
32234
+ form: "single",
32235
+ optional: false
32236
+ }],
32237
+ "lawnMowerControl.pause": [{
32238
+ name: "deviceId",
32239
+ form: "single",
32240
+ optional: false
32241
+ }],
32242
+ "lawnMowerControl.startMowing": [{
32243
+ name: "deviceId",
32244
+ form: "single",
32245
+ optional: false
32246
+ }],
32247
+ "lockControl.lock": [{
32248
+ name: "deviceId",
32249
+ form: "single",
32250
+ optional: false
32251
+ }],
32252
+ "lockControl.open": [{
32253
+ name: "deviceId",
32254
+ form: "single",
32255
+ optional: false
32256
+ }],
32257
+ "lockControl.unlock": [{
32258
+ name: "deviceId",
32259
+ form: "single",
32260
+ optional: false
32261
+ }],
32262
+ "mediaPlayer.next": [{
32263
+ name: "deviceId",
32264
+ form: "single",
32265
+ optional: false
32266
+ }],
32267
+ "mediaPlayer.pause": [{
32268
+ name: "deviceId",
32269
+ form: "single",
32270
+ optional: false
32271
+ }],
32272
+ "mediaPlayer.play": [{
32273
+ name: "deviceId",
32274
+ form: "single",
32275
+ optional: false
32276
+ }],
32277
+ "mediaPlayer.playMedia": [{
32278
+ name: "deviceId",
32279
+ form: "single",
32280
+ optional: false
32281
+ }],
32282
+ "mediaPlayer.previous": [{
32283
+ name: "deviceId",
32284
+ form: "single",
32285
+ optional: false
32286
+ }],
32287
+ "mediaPlayer.seek": [{
32288
+ name: "deviceId",
32289
+ form: "single",
32290
+ optional: false
32291
+ }],
32292
+ "mediaPlayer.selectSource": [{
32293
+ name: "deviceId",
32294
+ form: "single",
32295
+ optional: false
32296
+ }],
32297
+ "mediaPlayer.setMute": [{
32298
+ name: "deviceId",
32299
+ form: "single",
32300
+ optional: false
32301
+ }],
32302
+ "mediaPlayer.setRepeat": [{
32303
+ name: "deviceId",
32304
+ form: "single",
32305
+ optional: false
32306
+ }],
32307
+ "mediaPlayer.setShuffle": [{
32308
+ name: "deviceId",
32309
+ form: "single",
32310
+ optional: false
32311
+ }],
32312
+ "mediaPlayer.setVolume": [{
32313
+ name: "deviceId",
32314
+ form: "single",
32315
+ optional: false
32316
+ }],
32317
+ "mediaPlayer.stop": [{
32318
+ name: "deviceId",
32319
+ form: "single",
32320
+ optional: false
32321
+ }],
32322
+ "motion.isDetected": [{
32323
+ name: "deviceId",
32324
+ form: "single",
32325
+ optional: false
32326
+ }],
32327
+ "motionDetection.analyze": [{
32328
+ name: "deviceId",
32329
+ form: "single",
32330
+ optional: false
32331
+ }],
32332
+ "motionDetection.removeCamera": [{
32333
+ name: "deviceId",
32334
+ form: "single",
32335
+ optional: false
32336
+ }],
32337
+ "motionTrigger.setMotionTrigger": [{
32338
+ name: "deviceId",
32339
+ form: "single",
32340
+ optional: false
32341
+ }],
32342
+ "motionZones.getOptions": [{
32343
+ name: "deviceId",
32344
+ form: "single",
32345
+ optional: false
32346
+ }],
32347
+ "motionZones.setZone": [{
32348
+ name: "deviceId",
32349
+ form: "single",
32350
+ optional: false
32351
+ }],
32352
+ "nativeObjectDetection.setEnabled": [{
32353
+ name: "deviceId",
32354
+ form: "single",
32355
+ optional: false
32356
+ }],
32357
+ "networkQuality.getDeviceStats": [{
32358
+ name: "deviceId",
32359
+ form: "single",
32360
+ optional: false
32361
+ }],
32362
+ "networkQuality.reportClientStats": [{
32363
+ name: "deviceId",
32364
+ form: "single",
32365
+ optional: false
32366
+ }],
32367
+ "notificationRules.setDeviceMuted": [{
32368
+ name: "deviceId",
32369
+ form: "single",
32370
+ optional: false
32371
+ }],
32372
+ "notifier.cancel": [{
32373
+ name: "deviceId",
32374
+ form: "single",
32375
+ optional: false
32376
+ }],
32377
+ "notifier.send": [{
32378
+ name: "deviceId",
32379
+ form: "single",
32380
+ optional: false
32381
+ }],
32382
+ "osd.setOverlay": [{
32383
+ name: "deviceId",
32384
+ form: "single",
32385
+ optional: false
32386
+ }],
32387
+ "osdManager.clearSlotBinding": [{
32388
+ name: "deviceId",
32389
+ form: "single",
32390
+ optional: false
32391
+ }],
32392
+ "osdManager.copyDeviceConfiguration": [{
32393
+ name: "sourceDeviceId",
32394
+ form: "single",
32395
+ optional: false
32396
+ }, {
32397
+ name: "targetDeviceId",
32398
+ form: "single",
32399
+ optional: false
32400
+ }],
32401
+ "osdManager.getDeviceOsd": [{
32402
+ name: "deviceId",
32403
+ form: "single",
32404
+ optional: false
32405
+ }],
32406
+ "osdManager.getSourceCatalog": [{
32407
+ name: "deviceId",
32408
+ form: "single",
32409
+ optional: false
32410
+ }],
32411
+ "osdManager.previewSlot": [{
32412
+ name: "deviceId",
32413
+ form: "single",
32414
+ optional: false
32415
+ }],
32416
+ "osdManager.renderDevice": [{
32417
+ name: "deviceId",
32418
+ form: "single",
32419
+ optional: false
32420
+ }],
32421
+ "osdManager.setSlotBinding": [{
32422
+ name: "deviceId",
32423
+ form: "single",
32424
+ optional: false
32425
+ }],
32426
+ "petFeeder.callPet": [{
32427
+ name: "deviceId",
32428
+ form: "single",
32429
+ optional: false
32430
+ }],
32431
+ "petFeeder.cancelFeed": [{
32432
+ name: "deviceId",
32433
+ form: "single",
32434
+ optional: false
32435
+ }],
32436
+ "petFeeder.feed": [{
32437
+ name: "deviceId",
32438
+ form: "single",
32439
+ optional: false
32440
+ }],
32441
+ "petFeeder.markFoodReplenished": [{
32442
+ name: "deviceId",
32443
+ form: "single",
32444
+ optional: false
32445
+ }],
32446
+ "petFeeder.playSound": [{
32447
+ name: "deviceId",
32448
+ form: "single",
32449
+ optional: false
32450
+ }],
32451
+ "petFeeder.resetDesiccant": [{
32452
+ name: "deviceId",
32453
+ form: "single",
32454
+ optional: false
32455
+ }],
32456
+ "petFeeder.setChildLock": [{
32457
+ name: "deviceId",
32458
+ form: "single",
32459
+ optional: false
32460
+ }],
32461
+ "petFeeder.setFeedSound": [{
32462
+ name: "deviceId",
32463
+ form: "single",
32464
+ optional: false
32465
+ }],
32466
+ "petFeeder.setIndicatorLight": [{
32467
+ name: "deviceId",
32468
+ form: "single",
32469
+ optional: false
32470
+ }],
32471
+ "petFeeder.setVolume": [{
32472
+ name: "deviceId",
32473
+ form: "single",
32474
+ optional: false
32475
+ }],
32476
+ "pipelineAnalytics.clearTracks": [{
32477
+ name: "deviceId",
32478
+ form: "single",
32479
+ optional: false
32480
+ }],
32481
+ "pipelineAnalytics.completeRetrainTrack": [{
32482
+ name: "deviceId",
32483
+ form: "single",
32484
+ optional: false
32485
+ }],
32486
+ "pipelineAnalytics.deleteDeviceEvents": [{
32487
+ name: "deviceId",
32488
+ form: "single",
32489
+ optional: false
32490
+ }],
32491
+ "pipelineAnalytics.deleteTracks": [{
32492
+ name: "deviceId",
32493
+ form: "single",
32494
+ optional: false
32495
+ }],
32496
+ "pipelineAnalytics.deselectRetrainFrame": [{
32497
+ name: "deviceId",
32498
+ form: "single",
32499
+ optional: false
32500
+ }],
32501
+ "pipelineAnalytics.getActiveTracks": [{
32502
+ name: "deviceId",
32503
+ form: "single",
32504
+ optional: false
32505
+ }],
32506
+ "pipelineAnalytics.getAudioEvents": [{
32507
+ name: "deviceId",
32508
+ form: "single",
32509
+ optional: false
32510
+ }],
32511
+ "pipelineAnalytics.getEventDensity": [{
32512
+ name: "deviceId",
32513
+ form: "single",
32514
+ optional: false
32515
+ }],
32516
+ "pipelineAnalytics.getEventMedia": [{
32517
+ name: "deviceId",
32518
+ form: "single",
32519
+ optional: false
32520
+ }],
32521
+ "pipelineAnalytics.getKeyEvents": [{
32522
+ name: "deviceId",
32523
+ form: "single",
32524
+ optional: false
32525
+ }],
32526
+ "pipelineAnalytics.getMotionEvents": [{
32527
+ name: "deviceId",
32528
+ form: "single",
32529
+ optional: false
32530
+ }],
32531
+ "pipelineAnalytics.getObjectEvents": [{
32532
+ name: "deviceId",
32533
+ form: "single",
32534
+ optional: false
32535
+ }],
32536
+ "pipelineAnalytics.getRetrainExportUrl": [{
32537
+ name: "deviceIds",
32538
+ form: "array",
32539
+ optional: true
32540
+ }],
32541
+ "pipelineAnalytics.getSensorEvents": [{
32542
+ name: "deviceId",
32543
+ form: "single",
32544
+ optional: false
32545
+ }],
32546
+ "pipelineAnalytics.getTrack": [{
32547
+ name: "deviceId",
32548
+ form: "single",
32549
+ optional: false
32550
+ }],
32551
+ "pipelineAnalytics.getTrackMedia": [{
32552
+ name: "deviceId",
32553
+ form: "single",
32554
+ optional: false
32555
+ }],
32556
+ "pipelineAnalytics.getTrainingExportSummary": [{
32557
+ name: "deviceIds",
32558
+ form: "array",
32559
+ optional: true
32560
+ }],
32561
+ "pipelineAnalytics.getTrainingExportUrl": [{
32562
+ name: "deviceIds",
32563
+ form: "array",
32564
+ optional: true
32565
+ }],
32566
+ "pipelineAnalytics.listEventKinds": [{
32567
+ name: "deviceId",
32568
+ form: "single",
32569
+ optional: false
32570
+ }],
32571
+ "pipelineAnalytics.listEventKindsBatch": [{
32572
+ name: "deviceIds",
32573
+ form: "array",
32574
+ optional: false
32575
+ }],
32576
+ "pipelineAnalytics.listOpsLog": [{
32577
+ name: "deviceId",
32578
+ form: "single",
32579
+ optional: true
32580
+ }],
32581
+ "pipelineAnalytics.listRecentTracks": [{
32582
+ name: "deviceIds",
32583
+ form: "array",
32584
+ optional: false
32585
+ }],
32586
+ "pipelineAnalytics.listRetrainStaging": [{
32587
+ name: "deviceIds",
32588
+ form: "array",
32589
+ optional: true
32590
+ }],
32591
+ "pipelineAnalytics.listTrackMedia": [{
32592
+ name: "deviceId",
32593
+ form: "single",
32594
+ optional: false
32595
+ }],
32596
+ "pipelineAnalytics.listTracks": [{
32597
+ name: "deviceId",
32598
+ form: "single",
32599
+ optional: false
32600
+ }],
32601
+ "pipelineAnalytics.proposeRetrainAnnotations": [{
32602
+ name: "deviceId",
32603
+ form: "single",
32604
+ optional: false
32605
+ }],
32606
+ "pipelineAnalytics.pruneEventsBefore": [{
32607
+ name: "deviceId",
32608
+ form: "single",
32609
+ optional: false
32610
+ }],
32611
+ "pipelineAnalytics.pruneTracksBefore": [{
32612
+ name: "deviceId",
32613
+ form: "single",
32614
+ optional: false
32615
+ }],
32616
+ "pipelineAnalytics.rebuildObjectEmbeddings": [{
32617
+ name: "deviceId",
32618
+ form: "single",
32619
+ optional: true
32620
+ }],
32621
+ "pipelineAnalytics.restageRetrainTrack": [{
32622
+ name: "deviceId",
32623
+ form: "single",
32624
+ optional: false
32625
+ }],
32626
+ "pipelineAnalytics.saveRetrainAnnotations": [{
32627
+ name: "deviceId",
32628
+ form: "single",
32629
+ optional: false
32630
+ }],
32631
+ "pipelineAnalytics.searchObjectEvents": [{
32632
+ name: "deviceId",
32633
+ form: "single",
32634
+ optional: true
32635
+ }],
32636
+ "pipelineAnalytics.selectRetrainFrames": [{
32637
+ name: "deviceId",
32638
+ form: "single",
32639
+ optional: false
32640
+ }],
32641
+ "pipelineAnalytics.setTrackFlags": [{
32642
+ name: "deviceId",
32643
+ form: "single",
32644
+ optional: false
32645
+ }],
32646
+ "pipelineAnalytics.wipeAllAnalytics": [{
32647
+ name: "deviceId",
32648
+ form: "single",
32649
+ optional: false
32650
+ }],
32651
+ "pipelineExecutor.runPipeline": [{
32652
+ name: "deviceId",
32653
+ form: "single",
32654
+ optional: true
32655
+ }],
32656
+ "pipelineExecutor.runPipelineBatch": [{
32657
+ name: "deviceId",
32658
+ form: "single",
32659
+ optional: true
32660
+ }],
32661
+ "pipelineOrchestrator.assignAudio": [{
32662
+ name: "deviceId",
32663
+ form: "single",
32664
+ optional: false
32665
+ }],
32666
+ "pipelineOrchestrator.assignPipeline": [{
32667
+ name: "deviceId",
32668
+ form: "single",
32669
+ optional: false
32670
+ }],
32671
+ "pipelineOrchestrator.getAudioAssignment": [{
32672
+ name: "deviceId",
32673
+ form: "single",
32674
+ optional: false
32675
+ }],
32676
+ "pipelineOrchestrator.getCameraMetrics": [{
32677
+ name: "deviceId",
32678
+ form: "single",
32679
+ optional: false
32680
+ }],
32681
+ "pipelineOrchestrator.getCameraSettings": [{
32682
+ name: "deviceId",
32683
+ form: "single",
32684
+ optional: false
32685
+ }],
32686
+ "pipelineOrchestrator.getCameraStatus": [{
32687
+ name: "deviceId",
32688
+ form: "single",
32689
+ optional: false
32690
+ }],
32691
+ "pipelineOrchestrator.getCameraStatuses": [{
32692
+ name: "deviceIds",
32693
+ form: "array",
32694
+ optional: true
32695
+ }],
32696
+ "pipelineOrchestrator.getCameraStepOverrides": [{
32697
+ name: "deviceId",
32698
+ form: "single",
32699
+ optional: false
32700
+ }],
32701
+ "pipelineOrchestrator.getCameraSwitches": [{
32702
+ name: "deviceId",
32703
+ form: "single",
32704
+ optional: false
32705
+ }],
32706
+ "pipelineOrchestrator.getPipelineAssignment": [{
32707
+ name: "deviceId",
32708
+ form: "single",
32709
+ optional: false
32710
+ }],
32711
+ "pipelineOrchestrator.getPipelineDevicePin": [{
32712
+ name: "deviceId",
32713
+ form: "single",
32714
+ optional: false
32715
+ }],
32716
+ "pipelineOrchestrator.resolvePipeline": [{
32717
+ name: "deviceId",
32718
+ form: "single",
32719
+ optional: false
32720
+ }],
32721
+ "pipelineOrchestrator.setCameraPipelineForAgent": [{
32722
+ name: "deviceId",
32723
+ form: "single",
32724
+ optional: false
32725
+ }],
32726
+ "pipelineOrchestrator.setCameraStepOverride": [{
32727
+ name: "deviceId",
32728
+ form: "single",
32729
+ optional: false
32730
+ }],
32731
+ "pipelineOrchestrator.setCameraStepToggle": [{
32732
+ name: "deviceId",
32733
+ form: "single",
32734
+ optional: false
32735
+ }],
32736
+ "pipelineOrchestrator.setCameraSwitch": [{
32737
+ name: "deviceId",
32738
+ form: "single",
32739
+ optional: false
32740
+ }],
32741
+ "pipelineOrchestrator.setPipelineDevicePin": [{
32742
+ name: "deviceId",
32743
+ form: "single",
32744
+ optional: false
32745
+ }],
32746
+ "pipelineOrchestrator.unassignAudio": [{
32747
+ name: "deviceId",
32748
+ form: "single",
32749
+ optional: false
32750
+ }],
32751
+ "pipelineOrchestrator.unassignPipeline": [{
32752
+ name: "deviceId",
32753
+ form: "single",
32754
+ optional: false
32755
+ }],
32756
+ "pipelineRunner.attachCamera": [{
32757
+ name: "deviceId",
32758
+ form: "single",
32759
+ optional: false
32760
+ }],
32761
+ "pipelineRunner.detachCamera": [{
32762
+ name: "deviceId",
32763
+ form: "single",
32764
+ optional: false
32765
+ }],
32766
+ "pipelineRunner.getCameraMetrics": [{
32767
+ name: "deviceId",
32768
+ form: "single",
32769
+ optional: false
32770
+ }],
32771
+ "pipelineRunner.reportMotion": [{
32772
+ name: "deviceId",
32773
+ form: "single",
32774
+ optional: false
32775
+ }],
32776
+ "pipelineRunner.runDetailSubtree": [{
32777
+ name: "deviceId",
32778
+ form: "single",
32779
+ optional: false
32780
+ }],
32781
+ "pipelineRunner.runStatelessStep": [{
32782
+ name: "sourceDeviceId",
32783
+ form: "single",
32784
+ optional: false
32785
+ }],
32786
+ "plateGallery.getPlateByTrack": [{
32787
+ name: "deviceId",
32788
+ form: "single",
32789
+ optional: false
32790
+ }],
32791
+ "plateGallery.listPlates": [{
32792
+ name: "deviceId",
32793
+ form: "single",
32794
+ optional: true
32795
+ }],
32796
+ "privacyMask.getOptions": [{
32797
+ name: "deviceId",
32798
+ form: "single",
32799
+ optional: false
32800
+ }],
32801
+ "privacyMask.setAudioEnabled": [{
32802
+ name: "deviceId",
32803
+ form: "single",
32804
+ optional: false
32805
+ }],
32806
+ "privacyMask.setMask": [{
32807
+ name: "deviceId",
32808
+ form: "single",
32809
+ optional: false
32810
+ }],
32811
+ "ptz.continuousMove": [{
32812
+ name: "deviceId",
32813
+ form: "single",
32814
+ optional: false
32815
+ }],
32816
+ "ptz.deletePreset": [{
32817
+ name: "deviceId",
32818
+ form: "single",
32819
+ optional: false
32820
+ }],
32821
+ "ptz.getOptions": [{
32822
+ name: "deviceId",
32823
+ form: "single",
32824
+ optional: false
32825
+ }],
32826
+ "ptz.getPosition": [{
32827
+ name: "deviceId",
32828
+ form: "single",
32829
+ optional: false
32830
+ }],
32831
+ "ptz.getPresets": [{
32832
+ name: "deviceId",
32833
+ form: "single",
32834
+ optional: false
32835
+ }],
32836
+ "ptz.goHome": [{
32837
+ name: "deviceId",
32838
+ form: "single",
32839
+ optional: false
32840
+ }],
32841
+ "ptz.goToPreset": [{
32842
+ name: "deviceId",
32843
+ form: "single",
32844
+ optional: false
32845
+ }],
32846
+ "ptz.move": [{
32847
+ name: "deviceId",
32848
+ form: "single",
32849
+ optional: false
32850
+ }],
32851
+ "ptz.savePreset": [{
32852
+ name: "deviceId",
32853
+ form: "single",
32854
+ optional: false
32855
+ }],
32856
+ "ptz.setAutofocus": [{
32857
+ name: "deviceId",
32858
+ form: "single",
32859
+ optional: false
32860
+ }],
32861
+ "ptz.stop": [{
32862
+ name: "deviceId",
32863
+ form: "single",
32864
+ optional: false
32865
+ }],
32866
+ "ptzAutotrack.getSettings": [{
32867
+ name: "deviceId",
32868
+ form: "single",
32869
+ optional: false
32870
+ }],
32871
+ "ptzAutotrack.getStatus": [{
32872
+ name: "deviceId",
32873
+ form: "single",
32874
+ optional: false
32875
+ }],
32876
+ "ptzAutotrack.setEnabled": [{
32877
+ name: "deviceId",
32878
+ form: "single",
32879
+ optional: false
32880
+ }],
32881
+ "ptzAutotrack.setSettings": [{
32882
+ name: "deviceId",
32883
+ form: "single",
32884
+ optional: false
32885
+ }],
32886
+ "reboot.reboot": [{
32887
+ name: "deviceId",
32888
+ form: "single",
32889
+ optional: false
32890
+ }],
32891
+ "recording.deleteFootprint": [{
32892
+ name: "deviceId",
32893
+ form: "single",
32894
+ optional: false
32895
+ }],
32896
+ "recording.getAvailability": [{
32897
+ name: "deviceId",
32898
+ form: "single",
32899
+ optional: false
32900
+ }],
32901
+ "recording.getDaysWithRecordings": [{
32902
+ name: "deviceId",
32903
+ form: "single",
32904
+ optional: false
32905
+ }],
32906
+ "recording.getDeviceConfig": [{
32907
+ name: "deviceId",
32908
+ form: "single",
32909
+ optional: false
32910
+ }],
32911
+ "recording.getPlaybackManifest": [{
32912
+ name: "deviceId",
32913
+ form: "single",
32914
+ optional: false
32915
+ }],
32916
+ "recording.listOpsLog": [{
32917
+ name: "deviceId",
32918
+ form: "single",
32919
+ optional: true
32920
+ }],
32921
+ "recording.locateSegment": [{
32922
+ name: "deviceId",
32923
+ form: "single",
32924
+ optional: false
32925
+ }],
32926
+ "recording.pruneFootage": [{
32927
+ name: "deviceId",
32928
+ form: "single",
32929
+ optional: false
32930
+ }],
32931
+ "recording.readGopBytes": [{
32932
+ name: "deviceId",
32933
+ form: "single",
32934
+ optional: false
32935
+ }],
32936
+ "recording.readSegmentBytes": [{
32937
+ name: "deviceId",
32938
+ form: "single",
32939
+ optional: false
32940
+ }],
32941
+ "recording.relocateFootage": [{
32942
+ name: "deviceId",
32943
+ form: "single",
32944
+ optional: true
32945
+ }],
32946
+ "recording.renderClip": [{
32947
+ name: "deviceId",
32948
+ form: "single",
32949
+ optional: false
32950
+ }],
32951
+ "recording.renderGif": [{
32952
+ name: "deviceId",
32953
+ form: "single",
32954
+ optional: false
32955
+ }],
32956
+ "recording.rescanStorage": [{
32957
+ name: "deviceId",
32958
+ form: "single",
32959
+ optional: false
32960
+ }],
32961
+ "recording.setDeviceConfig": [{
32962
+ name: "deviceId",
32963
+ form: "single",
32964
+ optional: false
32965
+ }],
32966
+ "recording.startStorageMigrationMove": [{
32967
+ name: "deviceId",
32968
+ form: "single",
32969
+ optional: true
32970
+ }],
32971
+ "recordingExport.createExport": [{
32972
+ name: "deviceId",
32973
+ form: "single",
32974
+ optional: false
32975
+ }],
32976
+ "recordingExport.listExports": [{
32977
+ name: "deviceId",
32978
+ form: "single",
32979
+ optional: true
32980
+ }],
32981
+ "sceneMonitor.captureReference": [{
32982
+ name: "deviceId",
32983
+ form: "single",
32984
+ optional: false
32985
+ }],
32986
+ "sceneMonitor.createScene": [{
32987
+ name: "deviceId",
32988
+ form: "single",
32989
+ optional: false
32990
+ }],
32991
+ "sceneMonitor.deleteReference": [{
32992
+ name: "deviceId",
32993
+ form: "single",
32994
+ optional: false
32995
+ }],
32996
+ "sceneMonitor.deleteScene": [{
32997
+ name: "deviceId",
32998
+ form: "single",
32999
+ optional: false
33000
+ }],
33001
+ "sceneMonitor.listScenes": [{
33002
+ name: "deviceId",
33003
+ form: "single",
33004
+ optional: false
33005
+ }],
33006
+ "sceneMonitor.recheckNow": [{
33007
+ name: "deviceId",
33008
+ form: "single",
33009
+ optional: false
33010
+ }],
33011
+ "sceneMonitor.resetScene": [{
33012
+ name: "deviceId",
33013
+ form: "single",
33014
+ optional: false
33015
+ }],
33016
+ "sceneMonitor.updateScene": [{
33017
+ name: "deviceId",
33018
+ form: "single",
33019
+ optional: false
33020
+ }],
33021
+ "scriptRunner.run": [{
33022
+ name: "deviceId",
33023
+ form: "single",
33024
+ optional: false
33025
+ }],
33026
+ "scriptRunner.stop": [{
33027
+ name: "deviceId",
33028
+ form: "single",
33029
+ optional: false
33030
+ }],
33031
+ "snapshot.getDebugState": [{
33032
+ name: "deviceId",
33033
+ form: "single",
33034
+ optional: false
33035
+ }],
33036
+ "snapshot.getSnapshot": [{
33037
+ name: "deviceId",
33038
+ form: "single",
33039
+ optional: false
33040
+ }],
33041
+ "snapshot.getSnapshotLinks": [{
33042
+ name: "targets",
33043
+ form: "object-array",
33044
+ optional: false,
33045
+ itemField: "deviceId"
33046
+ }],
33047
+ "snapshot.getSnapshotOverview": [{
33048
+ name: "deviceIds",
33049
+ form: "array",
33050
+ optional: false
33051
+ }],
33052
+ "snapshot.invalidateCache": [{
33053
+ name: "deviceId",
33054
+ form: "single",
33055
+ optional: false
33056
+ }],
33057
+ "streamBroker.acquireEgressTranscode": [{
33058
+ name: "deviceId",
33059
+ form: "single",
33060
+ optional: false
33061
+ }],
33062
+ "streamBroker.assignProfile": [{
33063
+ name: "deviceId",
33064
+ form: "single",
33065
+ optional: false
33066
+ }],
33067
+ "streamBroker.getDeviceAudioMute": [{
33068
+ name: "deviceId",
33069
+ form: "single",
33070
+ optional: false
33071
+ }],
33072
+ "streamBroker.getStreamWithCodec": [{
33073
+ name: "deviceId",
33074
+ form: "single",
33075
+ optional: false
33076
+ }],
33077
+ "streamBroker.produceEventMedia": [{
33078
+ name: "deviceId",
33079
+ form: "single",
33080
+ optional: false
33081
+ }],
33082
+ "streamBroker.publishCameraStream": [{
33083
+ name: "deviceId",
33084
+ form: "single",
33085
+ optional: false
33086
+ }],
33087
+ "streamBroker.renderPreBufferClip": [{
33088
+ name: "deviceId",
33089
+ form: "single",
33090
+ optional: false
33091
+ }],
33092
+ "streamBroker.restartProfile": [{
33093
+ name: "deviceId",
33094
+ form: "single",
33095
+ optional: false
33096
+ }],
33097
+ "streamBroker.retractCameraStream": [{
33098
+ name: "deviceId",
33099
+ form: "single",
33100
+ optional: false
33101
+ }],
33102
+ "streamBroker.setDeviceAudioMute": [{
33103
+ name: "deviceId",
33104
+ form: "single",
33105
+ optional: false
33106
+ }],
33107
+ "streamBroker.unassignProfile": [{
33108
+ name: "deviceId",
33109
+ form: "single",
33110
+ optional: false
33111
+ }],
33112
+ "streamCatalog.getCatalog": [{
33113
+ name: "deviceId",
33114
+ form: "single",
33115
+ optional: false
33116
+ }],
33117
+ "streamParams.getConfigSchema": [{
33118
+ name: "deviceId",
33119
+ form: "single",
33120
+ optional: false
33121
+ }],
33122
+ "streamParams.getOptions": [{
33123
+ name: "deviceId",
33124
+ form: "single",
33125
+ optional: false
33126
+ }],
33127
+ "streamParams.setProfile": [{
33128
+ name: "deviceId",
33129
+ form: "single",
33130
+ optional: false
33131
+ }],
33132
+ "switch.setState": [{
33133
+ name: "deviceId",
33134
+ form: "single",
33135
+ optional: false
33136
+ }],
33137
+ "vacuumControl.locate": [{
33138
+ name: "deviceId",
33139
+ form: "single",
33140
+ optional: false
33141
+ }],
33142
+ "vacuumControl.pause": [{
33143
+ name: "deviceId",
33144
+ form: "single",
33145
+ optional: false
33146
+ }],
33147
+ "vacuumControl.returnToBase": [{
33148
+ name: "deviceId",
33149
+ form: "single",
33150
+ optional: false
33151
+ }],
33152
+ "vacuumControl.setFanSpeed": [{
33153
+ name: "deviceId",
33154
+ form: "single",
33155
+ optional: false
33156
+ }],
33157
+ "vacuumControl.start": [{
33158
+ name: "deviceId",
33159
+ form: "single",
33160
+ optional: false
33161
+ }],
33162
+ "vacuumControl.stop": [{
33163
+ name: "deviceId",
33164
+ form: "single",
33165
+ optional: false
33166
+ }],
33167
+ "valve.close": [{
33168
+ name: "deviceId",
33169
+ form: "single",
33170
+ optional: false
33171
+ }],
33172
+ "valve.open": [{
33173
+ name: "deviceId",
33174
+ form: "single",
33175
+ optional: false
33176
+ }],
33177
+ "valve.setPosition": [{
33178
+ name: "deviceId",
33179
+ form: "single",
33180
+ optional: false
33181
+ }],
33182
+ "valve.stop": [{
33183
+ name: "deviceId",
33184
+ form: "single",
33185
+ optional: false
33186
+ }],
33187
+ "videoclips.getClipPlayback": [{
33188
+ name: "deviceId",
33189
+ form: "single",
33190
+ optional: false
33191
+ }],
33192
+ "videoclips.listClips": [{
33193
+ name: "deviceId",
33194
+ form: "single",
33195
+ optional: false
33196
+ }],
33197
+ "waterHeater.setAway": [{
33198
+ name: "deviceId",
33199
+ form: "single",
33200
+ optional: false
33201
+ }],
33202
+ "waterHeater.setOperationMode": [{
33203
+ name: "deviceId",
33204
+ form: "single",
33205
+ optional: false
33206
+ }],
33207
+ "waterHeater.setTargetTemp": [{
33208
+ name: "deviceId",
33209
+ form: "single",
33210
+ optional: false
33211
+ }],
33212
+ "webrtcSession.addIceCandidate": [{
33213
+ name: "deviceId",
33214
+ form: "single",
33215
+ optional: false
33216
+ }],
33217
+ "webrtcSession.closeSession": [{
33218
+ name: "deviceId",
33219
+ form: "single",
33220
+ optional: false
33221
+ }],
33222
+ "webrtcSession.createSession": [{
33223
+ name: "deviceId",
33224
+ form: "single",
33225
+ optional: false
33226
+ }],
33227
+ "webrtcSession.getIceCandidates": [{
33228
+ name: "deviceId",
33229
+ form: "single",
33230
+ optional: false
33231
+ }],
33232
+ "webrtcSession.getSessionState": [{
33233
+ name: "deviceId",
33234
+ form: "single",
33235
+ optional: false
33236
+ }],
33237
+ "webrtcSession.handleAnswer": [{
33238
+ name: "deviceId",
33239
+ form: "single",
33240
+ optional: false
33241
+ }],
33242
+ "webrtcSession.handleOffer": [{
33243
+ name: "deviceId",
33244
+ form: "single",
33245
+ optional: false
33246
+ }],
33247
+ "webrtcSession.hasAdaptiveBitrate": [{
33248
+ name: "deviceId",
33249
+ form: "single",
33250
+ optional: false
33251
+ }],
33252
+ "webrtcSession.listStreams": [{
33253
+ name: "deviceId",
33254
+ form: "single",
33255
+ optional: false
33256
+ }],
33257
+ "zoneAnalytics.getCameraHistory": [{
33258
+ name: "deviceId",
33259
+ form: "single",
33260
+ optional: false
33261
+ }],
33262
+ "zoneAnalytics.getCurrentSnapshot": [{
33263
+ name: "deviceId",
33264
+ form: "single",
33265
+ optional: false
33266
+ }],
33267
+ "zoneAnalytics.getUnzonedHistory": [{
33268
+ name: "deviceId",
33269
+ form: "single",
33270
+ optional: false
33271
+ }],
33272
+ "zoneAnalytics.getZoneHistory": [{
33273
+ name: "deviceId",
33274
+ form: "single",
33275
+ optional: false
33276
+ }],
33277
+ "zoneRules.listRules": [{
33278
+ name: "deviceId",
33279
+ form: "single",
33280
+ optional: false
33281
+ }],
33282
+ "zoneRules.setRules": [{
33283
+ name: "deviceId",
33284
+ form: "single",
33285
+ optional: false
33286
+ }],
33287
+ "zones.addZone": [{
33288
+ name: "deviceId",
33289
+ form: "single",
33290
+ optional: false
33291
+ }],
33292
+ "zones.listZones": [{
33293
+ name: "deviceId",
33294
+ form: "single",
33295
+ optional: false
33296
+ }],
33297
+ "zones.removeZone": [{
33298
+ name: "deviceId",
33299
+ form: "single",
33300
+ optional: false
33301
+ }],
33302
+ "zones.updateZone": [{
33303
+ name: "deviceId",
33304
+ form: "single",
33305
+ optional: false
33306
+ }]
33307
+ });
30703
33308
  Object.freeze({
30704
33309
  "broker": "broker",
30705
33310
  "device-export": "device-export",