@camstack/addon-provider-reolink 1.2.27 → 1.2.28

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/addon.js +912 -92
  2. package/dist/addon.mjs +912 -92
  3. package/package.json +1 -1
package/dist/addon.mjs CHANGED
@@ -21,7 +21,7 @@ import netImpl from "net";
21
21
  import { fileURLToPath } from "url";
22
22
  import { mkdir } from "fs/promises";
23
23
  import os from "node:os";
24
- //#region ../types/dist/event-category-Cv9dO26A.mjs
24
+ //#region ../types/dist/event-category-Bxo5yJjt.mjs
25
25
  var EventCategory = /* @__PURE__ */ function(EventCategory) {
26
26
  EventCategory["SystemBoot"] = "system.boot";
27
27
  EventCategory["SystemAddonsReady"] = "system.addons-ready";
@@ -228,6 +228,33 @@ var EventCategory = /* @__PURE__ */ function(EventCategory) {
228
228
  EventCategory["PipelineCameraAssigned"] = "pipeline.camera-assigned";
229
229
  EventCategory["PipelineCameraUnassigned"] = "pipeline.camera-unassigned";
230
230
  /**
231
+ * A node the orchestrator would otherwise place cameras on has NO usable
232
+ * inference device: the operator enabled one or more accelerators there and
233
+ * the live probe reports every one of them unavailable. Emitted once per
234
+ * TRANSITION into that state (never per dispatch), and the node is dropped
235
+ * from the placement candidate set for as long as it holds.
236
+ *
237
+ * This exists because the state was previously invisible: little-unraid
238
+ * absorbed 283k inference errors in a day while still being handed cameras,
239
+ * and nothing in the system said so.
240
+ *
241
+ * A node with no accelerators configured at all is NOT this — its devices
242
+ * are `disabled`, not `unavailable`, and the runner's default CPU pool
243
+ * serves it exactly as before.
244
+ */
245
+ EventCategory["PipelineNodeInferenceUnavailable"] = "pipeline.node-inference-unavailable";
246
+ /**
247
+ * A camera has an OPEN detection session and has produced no detection at
248
+ * all for longer than the blind threshold — the camera is being decoded and
249
+ * inferred and is returning nothing. Emitted once per transition into blind,
250
+ * per camera.
251
+ *
252
+ * The failure it reports: a 1h43 detection blackout on the entrance camera
253
+ * that nobody noticed, because "a camera that detects nothing" and "a quiet
254
+ * camera" produce byte-identical silence.
255
+ */
256
+ EventCategory["PipelineDetectionBlind"] = "pipeline.detection-blind";
257
+ /**
231
258
  * Per-camera pipeline config was mutated by the orchestrator
232
259
  * (3-level settings change via `setAgentAddonDefaults` /
233
260
  * `setCameraStepToggle` / `setCameraPipelineForAgent` or a
@@ -12649,6 +12676,17 @@ var LlmImageSchema = object({
12649
12676
  bytes: _instanceof(Uint8Array),
12650
12677
  mimeType: string()
12651
12678
  });
12679
+ /**
12680
+ * Retry policy. `enabled: false` is NOT the same as `maxAttempts: 1` in intent —
12681
+ * the flag is what a consumer table flips, the count is what the operator tunes.
12682
+ * A retry doubles the wall time of a call, so the two gates that run inside a
12683
+ * notification's budget keep it off (see `CONSUMER_RETRY_POLICY` in addon-ai).
12684
+ */
12685
+ var LlmRetryPolicySchema = object({
12686
+ enabled: boolean().default(false),
12687
+ /** Total attempts INCLUDING the first. 1 = no retry. */
12688
+ maxAttempts: number().int().min(1).max(5).default(1)
12689
+ });
12652
12690
  var LlmGenerateBaseInputSchema = object({
12653
12691
  /** Collection routing (the notification-output posture). */
12654
12692
  addonId: string().optional(),
@@ -12663,7 +12701,28 @@ var LlmGenerateBaseInputSchema = object({
12663
12701
  jsonSchema: record(string(), unknown()).optional(),
12664
12702
  /** Per-call override of the profile default. */
12665
12703
  maxTokens: number().int().positive().optional(),
12666
- temperature: number().optional()
12704
+ temperature: number().optional(),
12705
+ /** Per-call override of the profile default (nucleus sampling). */
12706
+ topP: number().min(0).max(1).optional(),
12707
+ /** Per-call override of the profile default (top-k sampling). */
12708
+ topK: number().int().positive().optional(),
12709
+ /** Per-call override of `profile.timeoutMs` — the total generation bound. */
12710
+ timeoutMs: number().int().positive().optional(),
12711
+ /** Per-call override; beats both the consumer table and the profile. */
12712
+ retry: LlmRetryPolicySchema.optional(),
12713
+ /**
12714
+ * Caller-minted id that makes this generation CANCELLABLE.
12715
+ *
12716
+ * Without it a caller that stops waiting cannot stop the work: the gates race
12717
+ * the call against 8 s and free their own slot when the timer wins, while the
12718
+ * generation upstream keeps running to `profile.timeoutMs` — 60 s by default,
12719
+ * on a single-threaded local model. The per-camera bound then counts WAITS,
12720
+ * not generations, and the real load is unbounded.
12721
+ *
12722
+ * `AbortSignal` cannot cross a process boundary; an id can. Pass one here and
12723
+ * `llm.cancel({ requestId })` tears the socket down.
12724
+ */
12725
+ requestId: string().optional()
12667
12726
  });
12668
12727
  /**
12669
12728
  * `llm-runtime` — node-side managed llama.cpp executor (spec §4). Registered
@@ -12676,6 +12735,18 @@ var LlmGenerateBaseInputSchema = object({
12676
12735
  * Resource ceiling = llama-server flags + idleStopMinutes ONLY (no RSS
12677
12736
  * watchdog — operator decision #3).
12678
12737
  */
12738
+ /**
12739
+ * A companion artifact that MUST land beside the main GGUF: the `mmproj`
12740
+ * projector of a vision model, or shards 2..N of a split GGUF. Carried on the
12741
+ * REF rather than looked up at install time, so what the operator approved in
12742
+ * the preview is exactly what the node downloads.
12743
+ */
12744
+ var ManagedModelExtraFileSchema = object({
12745
+ url: string(),
12746
+ filename: string(),
12747
+ sizeBytes: number(),
12748
+ sha256: string().optional()
12749
+ });
12679
12750
  var ManagedModelRefSchema = discriminatedUnion("kind", [
12680
12751
  object({
12681
12752
  kind: literal("catalog"),
@@ -12684,7 +12755,11 @@ var ManagedModelRefSchema = discriminatedUnion("kind", [
12684
12755
  object({
12685
12756
  kind: literal("url"),
12686
12757
  url: string(),
12687
- sha256: string().optional()
12758
+ sha256: string().optional(),
12759
+ /** Picker/status label; the file basename when absent. */
12760
+ label: string().optional(),
12761
+ sizeBytes: number().optional(),
12762
+ extraFiles: array(ManagedModelExtraFileSchema).optional()
12688
12763
  }),
12689
12764
  object({
12690
12765
  kind: literal("path"),
@@ -12702,13 +12777,82 @@ var ManagedRuntimeConfigSchema = object({
12702
12777
  gpuLayers: number().int().default(0),
12703
12778
  /** Default: cpus-2, clamped ≥1 (resolved node-side). */
12704
12779
  threads: number().int().optional(),
12705
- /** Concurrent slots. */
12780
+ /** Concurrent slots (`--parallel`). */
12706
12781
  parallel: number().int().default(1),
12782
+ /** Logical batch size (`-b`). Larger = faster prompt ingest, more RAM. */
12783
+ batchSize: number().int().positive().optional(),
12784
+ /** Physical batch / micro-batch (`-ub`). */
12785
+ ubatchSize: number().int().positive().optional(),
12786
+ /**
12787
+ * `--flash-attn`. Cuts KV-cache memory on the backends that implement it and
12788
+ * is a no-op elsewhere, so it is offered rather than assumed.
12789
+ */
12790
+ flashAttention: boolean().default(false),
12791
+ /**
12792
+ * `--mlock`. Pins the weights in RAM so the OS cannot page them out mid
12793
+ * inference. Costs the full model size in resident memory — which is exactly
12794
+ * what the RAM budget is counting.
12795
+ */
12796
+ mlock: boolean().default(false),
12797
+ /**
12798
+ * `--no-mmap`. Reads the whole GGUF up front instead of mapping it. Slower to
12799
+ * start, but avoids the page-fault stalls a network or spinning-disk model
12800
+ * store produces on every first token.
12801
+ */
12802
+ noMmap: boolean().default(false),
12803
+ /** `--cache-type-k` / `--cache-type-v` — quantising the KV cache is the
12804
+ * cheapest way to fit a longer context in the same RAM. */
12805
+ cacheTypeK: _enum([
12806
+ "f32",
12807
+ "f16",
12808
+ "q8_0",
12809
+ "q5_1",
12810
+ "q5_0",
12811
+ "q4_1",
12812
+ "q4_0"
12813
+ ]).optional(),
12814
+ cacheTypeV: _enum([
12815
+ "f32",
12816
+ "f16",
12817
+ "q8_0",
12818
+ "q5_1",
12819
+ "q5_0",
12820
+ "q4_1",
12821
+ "q4_0"
12822
+ ]).optional(),
12823
+ /**
12824
+ * Escape hatch for llama-server flags this schema does NOT model — `--jinja`
12825
+ * (which most vision chat templates need and some language-only models
12826
+ * dislike), `--cont-batching`, `--rope-scaling`, …
12827
+ *
12828
+ * It is NOT a second place to set the flags above. A token that collides
12829
+ * with a typed field is REJECTED at start, naming the field that owns it
12830
+ * (`assertNoOwnedFlags`), because two knobs writing the same argv is exactly
12831
+ * the "two switches that disagree" failure this repo has already shipped
12832
+ * twice (D62).
12833
+ */
12834
+ extraArgs: array(string()).default([]),
12707
12835
  /** Else lazy: first generate boots it. */
12708
12836
  autoStart: boolean().default(false),
12709
12837
  /** 0 = never; frees RAM after quiet periods. */
12710
12838
  idleStopMinutes: number().int().default(30)
12711
12839
  });
12840
+ /**
12841
+ * Where a multi-GB install currently is. A single 0..1 fraction cannot answer
12842
+ * "is it stuck?" for an install that is three files (shards + mmproj) followed
12843
+ * by a sha256 pass over 22 GB — during which the fraction sat at 1.0 and the
12844
+ * node looked hung. Phase + file + bytes is the smallest shape that does.
12845
+ */
12846
+ var LlmDownloadProgressSchema = object({
12847
+ phase: _enum(["downloading", "verifying"]),
12848
+ /** The artifact currently moving, e.g. `mmproj-F16.gguf`. */
12849
+ file: string(),
12850
+ fileIndex: number().int(),
12851
+ fileCount: number().int(),
12852
+ /** Across the WHOLE install, not the current file. */
12853
+ downloadedBytes: number(),
12854
+ totalBytes: number().optional()
12855
+ });
12712
12856
  var LlmRuntimeStatusSchema = object({
12713
12857
  /** Status is ALWAYS node-qualified. */
12714
12858
  nodeId: string(),
@@ -12725,6 +12869,8 @@ var LlmRuntimeStatusSchema = object({
12725
12869
  modelPath: string().optional(),
12726
12870
  modelId: string().optional(),
12727
12871
  downloadProgress: number().min(0).max(1).optional(),
12872
+ /** Detail behind `downloadProgress`; present for the same lifetime. */
12873
+ download: LlmDownloadProgressSchema.optional(),
12728
12874
  lastError: string().optional(),
12729
12875
  crashesInWindow: number(),
12730
12876
  /** Child RSS (sampled best-effort). */
@@ -12735,7 +12881,14 @@ var LlmNodeModelSchema = object({
12735
12881
  file: string(),
12736
12882
  sizeBytes: number(),
12737
12883
  catalogId: string().optional(),
12738
- installedAt: number().optional()
12884
+ installedAt: number().optional(),
12885
+ /**
12886
+ * Absolute path on the node. Present so a file that is on disk but matches
12887
+ * no catalog entry — a custom Hugging Face install, or a GGUF the operator
12888
+ * copied in by hand — is still SELECTABLE, as a `{kind:'path'}` ref. Without
12889
+ * it the picker could list such a file and do nothing with it.
12890
+ */
12891
+ path: string().optional()
12739
12892
  });
12740
12893
  var LlmRuntimeDiskUsageSchema = object({
12741
12894
  nodeId: string(),
@@ -12791,10 +12944,47 @@ var LlmProfileSchema = object({
12791
12944
  baseUrl: string().optional(),
12792
12945
  /** ConfigUISchema type:'password' — never round-trips (spec §5). */
12793
12946
  apiKey: string().optional(),
12947
+ /** Vision on/off. A vision call against a `false` profile is REFUSED, never
12948
+ * degraded to text — that shipped once and produced a confident answer to a
12949
+ * question about a picture nobody sent. */
12794
12950
  supportsVision: boolean(),
12795
12951
  temperature: number().min(0).max(2).optional(),
12952
+ /** Nucleus sampling. Every wire we speak has it. */
12953
+ topP: number().min(0).max(1).optional(),
12954
+ /** Top-k sampling. Carried only by the wires that have it — NEITHER OpenAI
12955
+ * wire does, and the client drops it there (measured: the request body gets
12956
+ * `top_p` and no `top_k`). The profile editor hides the field wherever it
12957
+ * would change nothing; `KINDS_WITH_TOP_K` is the single owner of that list. */
12958
+ topK: number().int().positive().optional(),
12796
12959
  maxTokens: number().int().positive().optional(),
12960
+ /** Prompt context window. Advisory for cloud kinds (they enforce their own);
12961
+ * for `managed-local` it is the llama.cpp `--ctx-size` the runtime starts
12962
+ * the model with, so it is the one field that changes a PROCESS. */
12963
+ contextLength: number().int().positive().optional(),
12964
+ /** Default system prompt. A caller's `system` REPLACES it (never appends —
12965
+ * two system prompts fighting is worse than either alone). */
12966
+ systemPrompt: string().optional(),
12967
+ /** Total generation bound — the only one a unary call has. */
12797
12968
  timeoutMs: number().int().positive().default(6e4),
12969
+ /** The TCP handshake only — "is the port even open". NOT the wait for
12970
+ * response headers: on the LM Studio / llama-server wire those are written
12971
+ * once the model has finished loading, so they belong to the bound below. */
12972
+ connectTimeoutMs: number().int().positive().default(1e4),
12973
+ /** Accepted, but no output yet — response headers included, because a cold
12974
+ * GPU load is exactly what happens before them. */
12975
+ firstTokenTimeoutMs: number().int().positive().default(12e4),
12976
+ /** Output started then stopped. */
12977
+ idleTimeoutMs: number().int().positive().default(6e4),
12978
+ /** Profile-level default. The per-consumer table and a per-call override
12979
+ * both beat it — see `resolveRetryPolicy`. */
12980
+ retry: LlmRetryPolicySchema.default({
12981
+ enabled: false,
12982
+ maxAttempts: 1
12983
+ }),
12984
+ /** Whether this profile may use tools. The tool-call plumbing rides the
12985
+ * library; the REGISTRY of callable tools is ours and is empty in v1, so a
12986
+ * `true` here buys the wiring, not behaviour, until tools are registered. */
12987
+ toolsEnabled: boolean().default(false),
12798
12988
  extraHeaders: record(string(), string()).optional(),
12799
12989
  /** kind === 'managed-local' only (spec §4). */
12800
12990
  runtime: ManagedRuntimeConfigSchema.optional()
@@ -12844,6 +13034,36 @@ var ManagedModelCatalogEntrySchema = object({
12844
13034
  /** Vision models: companion projector file. */
12845
13035
  mmprojUrl: string().optional()
12846
13036
  });
13037
+ /**
13038
+ * The outcome of turning one operator-typed Hugging Face reference into a
13039
+ * download plan. A RESULT, never a throw: "this repo has 24 quantizations and
13040
+ * I will not pick for you" is a normal answer the UI has to render, not an
13041
+ * exception.
13042
+ *
13043
+ * `candidates` is the whole reason the refusal is usable — every string in it
13044
+ * is a tag that resolves when pasted back as `<org>/<repo>:<TAG>`.
13045
+ */
13046
+ var HfModelResolutionSchema = discriminatedUnion("ok", [object({
13047
+ ok: literal(true),
13048
+ /** Ready to hand to `installModel` unchanged. */
13049
+ model: ManagedModelRefSchema,
13050
+ label: string(),
13051
+ repo: string(),
13052
+ quantization: string(),
13053
+ purpose: _enum(["text", "vision"]),
13054
+ totalBytes: number(),
13055
+ /** mmproj + shards, for the preview: an operator approving 23 GB should
13056
+ * see that 0.9 GB of it is a projector they did not name. */
13057
+ extraFilenames: array(string())
13058
+ }), object({
13059
+ ok: literal(false),
13060
+ code: string(),
13061
+ message: string(),
13062
+ candidates: array(string()).optional(),
13063
+ /** Set when the refusal was only the ceiling: re-calling with
13064
+ * `maxBytes: requiredBytes` is the operator's explicit override. */
13065
+ requiredBytes: number().optional()
13066
+ })]);
12847
13067
  var LlmRuntimeNodeSchema = object({
12848
13068
  nodeId: string(),
12849
13069
  reachable: boolean(),
@@ -12856,7 +13076,10 @@ var ProfileRefInputSchema = object({
12856
13076
  addonId: string(),
12857
13077
  profileId: string()
12858
13078
  });
12859
- method(LlmGenerateBaseInputSchema, LlmGenerateResultSchema, { kind: "mutation" }), method(GenerateVisionInputSchema, LlmGenerateResultSchema, { kind: "mutation" }), method(object({}), array(LlmProfileKindDescriptorSchema)), method(object({}), array(LlmProfileSchema)), method(object({ profile: LlmProfileSchema }), LlmProfileSchema, {
13079
+ method(LlmGenerateBaseInputSchema, LlmGenerateResultSchema, { kind: "mutation" }), method(GenerateVisionInputSchema, LlmGenerateResultSchema, { kind: "mutation" }), method(object({
13080
+ addonId: string().optional(),
13081
+ requestId: string()
13082
+ }), _void(), { kind: "mutation" }), method(object({}), array(LlmProfileKindDescriptorSchema)), method(object({}), array(LlmProfileSchema)), method(object({ profile: LlmProfileSchema }), LlmProfileSchema, {
12860
13083
  kind: "mutation",
12861
13084
  auth: "admin"
12862
13085
  }), method(ProfileRefInputSchema, _void(), {
@@ -12877,6 +13100,15 @@ method(LlmGenerateBaseInputSchema, LlmGenerateResultSchema, { kind: "mutation" }
12877
13100
  consumer: string().optional(),
12878
13101
  profileId: string().optional()
12879
13102
  }), array(LlmUsageRollupSchema)), method(object({}), array(ManagedModelCatalogEntrySchema)), method(object({}), array(LlmRuntimeNodeSchema)), method(object({ nodeId: string() }), array(LlmNodeModelSchema)), method(object({
13103
+ /** `https://huggingface.co/<org>/<repo>/resolve/main/<f>.gguf`,
13104
+ * `<org>/<repo>/<f>.gguf`, `<org>/<repo>` or `<org>/<repo>:<QUANT>`. */
13105
+ ref: string(),
13106
+ /** Explicit ceiling override, in bytes. Absent = the built-in ceiling. */
13107
+ maxBytes: number().positive().optional()
13108
+ }), HfModelResolutionSchema, {
13109
+ kind: "mutation",
13110
+ auth: "admin"
13111
+ }), method(object({
12880
13112
  nodeId: string(),
12881
13113
  model: ManagedModelRefSchema
12882
13114
  }), _void(), {
@@ -14524,6 +14756,8 @@ var NcSystemEventKindSchema = _enum([
14524
14756
  "stream-offline",
14525
14757
  "node-online",
14526
14758
  "node-offline",
14759
+ "node-inference-unavailable",
14760
+ "detection-blind",
14527
14761
  "addon-update-available",
14528
14762
  "server-update-available",
14529
14763
  "alarm-triggered",
@@ -14585,7 +14819,16 @@ var NcScheduleSchema = object({
14585
14819
  });
14586
14820
  /** Fuzzy plate matcher — OCR noise makes exact match useless (spec row 12/13). */
14587
14821
  var NcPlateMatcherSchema = object({
14588
- values: array(string().min(1)).min(1),
14822
+ /**
14823
+ * Plate texts (or gallery vehicle names) to match. EMPTY = **any plate the
14824
+ * pipeline could read** — the plate half of "no selection = no narrowing",
14825
+ * and the switch that says this rule is about vehicles that were IDENTIFIED
14826
+ * rather than merely seen. A subject carrying no plate still fails.
14827
+ *
14828
+ * The `.min(1)` this used to carry made that state unauthorable; nothing has
14829
+ * ever persisted an empty list, so widening it cannot change an existing rule.
14830
+ */
14831
+ values: array(string().min(1)),
14589
14832
  /** Max Levenshtein distance after normalization (uppercase alphanumeric). */
14590
14833
  maxDistance: number().int().min(0).max(3).default(1)
14591
14834
  });
@@ -14619,28 +14862,36 @@ var NcOccupancyConditionSchema = object({
14619
14862
  /**
14620
14863
  * Audio condition (IMMEDIATE trigger) — a rule on SOUND, not on a picture.
14621
14864
  *
14622
- * Operator-approved vocabulary (2026-08-12, option A — the same one the
14623
- * reference notifier uses, so an operator moving between them re-uses what
14624
- * they already know): a rule matches when, over a sampling window of
14625
- * `samplingSeconds`, at least `hitPercent`% of the audio samples in that
14626
- * window are HITS. A sample is a hit when it satisfies BOTH present filters:
14627
- *
14628
- * - `dbThreshold` its level is at or above this many dBFS (see
14629
- * {@link NC_AUDIO_DBFS_FLOOR}: negative-going, `0` = full scale);
14630
- * - `labels` the classifier put at least one of these labels on it.
14631
- *
14632
- * Both are OPTIONAL and independent, which is the point of the shape: a
14633
- * loudness rule ("something loud at 3am") needs no model to be right, and a
14634
- * label rule ("a dog barked") needs no threshold. **Fail-closed when NEITHER
14635
- * is given** a window in which every sample is trivially a hit would fire on
14636
- * silence, so the engine refuses such a condition rather than notifying on
14637
- * nothing (the schema cannot express "at least one of" without becoming a
14638
- * ZodEffects the cap path would have to special-case).
14639
- *
14640
- * `hitPercent` is over the samples the window actually HOLDS, and the window
14641
- * must be FULL before it can match a window that has been open for two
14642
- * seconds of its ten is 100% of nothing, and firing on it would make
14643
- * `samplingSeconds` decorative.
14865
+ * **TWO EXCLUSIVE MODES** (operator decision 2026-08-14, D157). Which one a
14866
+ * rule is in is not a stored field it is WHICH FILTER the rule carries, so
14867
+ * there is no second switch that can disagree with the first and every rule
14868
+ * authored before the decision migrates for free (`audioModeOf`):
14869
+ *
14870
+ * - **LABEL mode — `labels` present.** The rule fires on the FIRST frame the
14871
+ * classifier labels with one of them. No window, no percentage:
14872
+ * `hitPercent` and `samplingSeconds` are ignored, and the rule's own
14873
+ * `throttle` cooldown is the only brake. The per-label confidence floor is
14874
+ * the analyzer's (`classificationMinScore`, per device) — a label only
14875
+ * reaches this condition if the classifier was already confident enough.
14876
+ * - **LEVEL mode `dbThreshold` present, no labels.** The sampling window IS
14877
+ * the condition: at least `hitPercent`% of the samples over
14878
+ * `samplingSeconds` must be at or above `dbThreshold` dBFS (see
14879
+ * {@link NC_AUDIO_DBFS_FLOOR}: negative-going, `0` = full scale). The window
14880
+ * must be FULL before it can match a window open for two of its ten
14881
+ * seconds is 100% of nothing.
14882
+ *
14883
+ * **Why label mode has no window.** It had one, and it never fired: the
14884
+ * analyzer emits ~1 audio frame per second but YAMNet only LABELS one to three
14885
+ * of them per episode, even through continuous crying. The measured maximum
14886
+ * `hitPercent` over the whole live history was 40 — under the shipped default
14887
+ * of 60, so a label rule could not fire at all, ever. A percentage of frames is
14888
+ * the wrong question to ask of a sparse classifier.
14889
+ *
14890
+ * **Fail-closed when NEITHER is given** — every sample would be a trivial hit
14891
+ * and the rule would fire on silence. The schema cannot express "exactly one
14892
+ * of" without becoming a ZodEffects the cap path would have to special-case, so
14893
+ * the exclusivity is enforced where every editor writes (`patchAudio`) and a
14894
+ * legacy rule carrying both resolves to LABEL (the mode that fires).
14644
14895
  *
14645
14896
  * Labels are the audio macro classes (`AUDIO_MACRO_LABELS` / the NC taxonomy's
14646
14897
  * `audio-*` ids). Both spellings are accepted — the matcher normalizes the
@@ -14648,13 +14899,13 @@ var NcOccupancyConditionSchema = object({
14648
14899
  * an operator who typed `dog` mean the same thing.
14649
14900
  */
14650
14901
  var NcAudioConditionSchema = object({
14651
- /** Audio macro labels; absent = any sound (level-only rule). */
14902
+ /** LABEL MODE: audio macro labels. Present fires on the first labelled frame. */
14652
14903
  labels: array(string().min(1)).min(1).optional(),
14653
- /** Level floor in dBFS (negative-going, `0` = full scale); absent = any level. */
14904
+ /** LEVEL MODE: floor in dBFS (negative-going, `0` = full scale). */
14654
14905
  dbThreshold: number().min(-96).max(0).optional(),
14655
- /** Percentage of the window's samples that must be hits (1–100). */
14906
+ /** LEVEL MODE ONLY: percentage of the window's samples that must be hits (1–100). */
14656
14907
  hitPercent: number().int().min(1).max(100).default(60),
14657
- /** Length of the sampling window in seconds. */
14908
+ /** LEVEL MODE ONLY: length of the sampling window in seconds. */
14658
14909
  samplingSeconds: number().int().min(1).max(300).default(10)
14659
14910
  });
14660
14911
  /**
@@ -14792,13 +15043,81 @@ var NcRuleActionsSchema = object({
14792
15043
  */
14793
15044
  buttons: array(NcRuleNotificationButtonSchema).max(8).optional()
14794
15045
  });
15046
+ /**
15047
+ * "This rule applies only while `deviceId` is in one of `states`."
15048
+ *
15049
+ * The states are the DEVICE's own vocabulary — `AlarmState` for a panel,
15050
+ * `on`/`off` for a switch — not a normalised set, because normalising would
15051
+ * make the condition lie about devices whose states have no equivalent.
15052
+ *
15053
+ * An unreadable state does NOT match: see the engine's fail-closed gate. A
15054
+ * condition that fired on "I could not read it" would be worse than no gate.
15055
+ */
15056
+ var NcDeviceStateConditionSchema = object({
15057
+ deviceId: number().int(),
15058
+ /** Any of these matches. */
15059
+ states: array(string().min(1)).min(1)
15060
+ });
15061
+ /**
15062
+ * "This rule applies only while scene `sceneId` is `matched` / `diverged`."
15063
+ *
15064
+ * A GATE, not a trigger. `occupancy` and `audio` each DISCRIMINATE their rule —
15065
+ * carrying one makes the rule fire on that subject and nothing else. Scene is
15066
+ * the other shape entirely, the `deviceState` shape: it narrows a rule that
15067
+ * already has a trigger ("tell me about a person at the front door, but only
15068
+ * while the bin is still out"). That is why it composes with every delivery
15069
+ * instead of owning one, and why no new `NcDelivery` member and no new subject
15070
+ * kind exist for it — see D159.
15071
+ *
15072
+ * ── Identity ───────────────────────────────────────────────────────────────
15073
+ * `sceneId` is `SceneMonitor.id`, a `randomUUID()` minted by `createScene` —
15074
+ * globally unique, so it needs no device to disambiguate it. `deviceId` is
15075
+ * carried as a HINT for the editor and for the log line, never as part of the
15076
+ * lookup key: a rule whose hint drifted must still gate correctly.
15077
+ *
15078
+ * ── Which boolean ──────────────────────────────────────────────────────────
15079
+ * `latched` ABSENT means "whatever the scene itself says" — `SceneMonitor.emit`
15080
+ * already declares which boolean drives notification rules, and a second knob
15081
+ * that could disagree with it is exactly the D62 failure. Set it only to
15082
+ * override one rule against the scene's own default.
15083
+ *
15084
+ * - LIVE reading (`emit`/`latched` resolve to live): passes iff
15085
+ * `verdict === requiredState`. `unknown` — no reference for this light, view
15086
+ * shifted, no snapshot — passes NEITHER. A scene that cannot judge is not
15087
+ * evidence, in either direction.
15088
+ * - LATCHED reading: passes iff `latched === (requiredState === 'diverged')`.
15089
+ * The latch is a durable fact about the past ("it has diverged since I armed
15090
+ * it"), so a camera that has gone dark does not clear it — that is the whole
15091
+ * reason the operator asked for a latch.
15092
+ *
15093
+ * The gate reads an in-memory mirror (`NcSceneStateCache`) refreshed OFF the
15094
+ * event path, never the cap: D49. A mirror that has never loaded, or a scene it
15095
+ * does not carry, reads absent and the rule does NOT fire — fail closed, and
15096
+ * said out loud in the log rather than dropped in silence.
15097
+ */
15098
+ var NcSceneConditionSchema = object({
15099
+ /** `SceneMonitor.id` — the uuid the cap mints. The whole lookup key. */
15100
+ sceneId: string().min(1),
15101
+ /** The camera the scene lives on. A hint for the editor and the log line. */
15102
+ deviceId: number().int().optional(),
15103
+ /** The state the scene must be in for the rule to fire. */
15104
+ requiredState: _enum(["matched", "diverged"]),
15105
+ /**
15106
+ * Read the LATCH (`true`) or the LIVE verdict (`false`). Absent = follow the
15107
+ * scene's own `emit` field, which is the only place that decision belongs.
15108
+ */
15109
+ latched: boolean().optional()
15110
+ });
14795
15111
  var NcConditionsSchema = object({
14796
15112
  /** Gate on ANOTHER device's current state (the alarm armed, a switch on). */
14797
- deviceState: object({
14798
- deviceId: number().int(),
14799
- /** Any of these matches. */
14800
- states: array(string().min(1)).min(1)
14801
- }).optional(),
15113
+ deviceState: NcDeviceStateConditionSchema.optional(),
15114
+ /**
15115
+ * Gate on a SCENE's state — "only while the bin is still out". Composes with
15116
+ * every trigger (detection, occupancy, audio, sensor, package, track-end);
15117
+ * unlike `occupancy`/`audio` it discriminates nothing. See
15118
+ * {@link NcSceneCondition} and D159.
15119
+ */
15120
+ scene: NcSceneConditionSchema.optional(),
14802
15121
  /** Device scope — absent = all devices. */
14803
15122
  devices: array(number()).optional(),
14804
15123
  /** Detector class names (any overlap with the record's class set). */
@@ -14824,18 +15143,47 @@ var NcConditionsSchema = object({
14824
15143
  */
14825
15144
  labelEquals: array(string().min(1)).optional(),
14826
15145
  /**
14827
- * Identity matcher. P1 boundary: matched against the record's collapsed
14828
- * `label` (the identity display name propagated by the face pipeline) —
14829
- * identity-ID matching rides in P2 when identity ids reach the record.
15146
+ * KNOWN FACES the rule's identity scope, and the switch that says the rule
15147
+ * is about recognised people at all.
15148
+ *
15149
+ * Three states, and the empty one is the point:
15150
+ *
15151
+ * | value | meaning |
15152
+ * | --- | --- |
15153
+ * | absent | the rule does not care who it is; an unrecognised person matches |
15154
+ * | `[]` | **only known faces** — any identity in the gallery, nobody in particular |
15155
+ * | a list | only these identities |
15156
+ *
15157
+ * `[]` is the repo-wide "no selection = no narrowing" reading (an absent
15158
+ * `devices` list is every device), applied one level down: the operator has
15159
+ * turned the face scope ON and narrowed it to nothing, which is every known
15160
+ * face. No second field states the same thing — a switch that can disagree
15161
+ * with the list under it is worse than no switch (D62).
15162
+ *
15163
+ * MEMBERS ARE FACE-GALLERY `Identity.id`s (uuid), not display names. A name is
15164
+ * renameable, and a rule authored on "Gianluca" went silently dark the moment
15165
+ * the operator fixed the spelling. The id reaches the record on
15166
+ * `LabelAttribution.identityId`; the name is what the editor shows and what
15167
+ * `{{label}}` renders.
15168
+ *
15169
+ * Rules written before this carry NAMES, and are resolved to ids lazily at
15170
+ * load (`NcRuleStore.load`) against the live gallery — a name nothing answers
15171
+ * for is left as it stands and reported, never dropped. The engine also
15172
+ * accepts a display-name hit as a compatibility leg, so a rule whose
15173
+ * migration could not resolve keeps matching exactly what it matched before.
14830
15174
  */
14831
15175
  identities: array(string().min(1)).optional(),
14832
- /** Fuzzy plate matcher against the record's `label` (plate text). */
15176
+ /**
15177
+ * KNOWN PLATES / VEHICLES — the plate mirror of {@link identities}, including
15178
+ * the empty-list reading: `values: []` is "any plate the OCR could read",
15179
+ * a non-empty list is those plates (fuzzily). See {@link NcPlateMatcherSchema}.
15180
+ */
14833
15181
  plates: NcPlateMatcherSchema.optional(),
14834
15182
  /**
14835
- * Identity EXCLUDE — mirror of {@link identities} with `notIn` semantics.
14836
- * Same P1 boundary: matched against the record's collapsed `label` (the
14837
- * identity display name). A record with NO label passes (nothing to
14838
- * exclude), unlike the include variant which fails on an absent label.
15183
+ * Identity EXCLUDE — mirror of {@link identities} with `notIn` semantics, and
15184
+ * the same id members and the same lazy name→id migration. A record with NO
15185
+ * identity passes (nothing to exclude), unlike the include variant which
15186
+ * fails on an unrecognised subject. An EMPTY list excludes nobody.
14839
15187
  */
14840
15188
  identitiesExclude: array(string().min(1)).optional(),
14841
15189
  /**
@@ -15227,7 +15575,80 @@ var NcRuleInputSchema = object({
15227
15575
  * a rule that predates the gate must keep delivering byte-for-byte as it
15228
15576
  * did, and absent is the only way to say that without a migration.
15229
15577
  */
15230
- confirm: NcConfirmSchema.optional()
15578
+ confirm: NcConfirmSchema.optional(),
15579
+ /**
15580
+ * WAIT for face/plate recognition before saying anything.
15581
+ *
15582
+ * A notification's TEXT is frozen at enqueue and its media is re-resolved at
15583
+ * send; the identity is neither. A face is confirmed after `confirmFrames`
15584
+ * agreeing observations — p50 **11.4 s** after the track was first seen,
15585
+ * measured on this hub — and an `immediate` rule enqueues on the first object
15586
+ * event, seconds before that. So "Gianluca è arrivato" is unsayable on the
15587
+ * immediate path, and no amount of media re-resolution fixes a sentence.
15588
+ *
15589
+ * Only two honest answers exist, and this flag picks between them. It has
15590
+ * effect ONLY on a rule that declares a recognition scope
15591
+ * ({@link NcConditions.identities} or {@link NcConditions.plates}) — on any
15592
+ * other rule there is nothing to wait for and the flag is inert.
15593
+ *
15594
+ * | value | what happens |
15595
+ * | --- | --- |
15596
+ * | `true` | the rule stops firing on the object event and fires at TRACK CLOSE instead, once, with the name — later, and complete |
15597
+ * | 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) |
15598
+ *
15599
+ * `.optional()` and deliberately NOT `.default()`: a Zod default does not run
15600
+ * on the addon cap path, and absent has to keep meaning exactly what every
15601
+ * rule authored before this field meant.
15602
+ *
15603
+ * The cost of `true` is stated here because the editor states it too: a rule
15604
+ * that waits also inherits track-close SEMANTICS — its `zones` condition
15605
+ * tests every zone the track visited and a `crossing` condition can no longer
15606
+ * be satisfied, because a closed track carries no crossing.
15607
+ */
15608
+ waitForEnhancement: boolean().optional(),
15609
+ /**
15610
+ * GROUP a burst of subjects into ONE notification that grows.
15611
+ *
15612
+ * Seconds of quiet after the last matching subject before the burst is
15613
+ * considered over. While it is open, the first subject enqueues immediately —
15614
+ * **exactly as today, with no added latency** — and every real growth (a new
15615
+ * subject, or a name confirmed on one already in it) REPLACES that
15616
+ * notification with an updated one naming everybody. The push carries the
15617
+ * group's own coalescing tag, so the phone replaces rather than stacks.
15618
+ *
15619
+ * `0` / absent = off, and off is today's behaviour byte for byte.
15620
+ *
15621
+ * ### Why an idle cutoff and not a window
15622
+ *
15623
+ * The measured seven-person arrival on device 590 spans 110 s with every
15624
+ * internal gap under 30 s. A 12 s fixed window cuts it into three groups; an
15625
+ * idle cutoff holds it as one and ends it when the arrival actually ends.
15626
+ * 30 is Frigate's shipped value for the same decision.
15627
+ *
15628
+ * ### What it replaces
15629
+ *
15630
+ * The blind cooldown, which collapses a burst by DISCARDING it. Measured on
15631
+ * device 615 / *Persona su Uscio* over six days: 116 qualifying tracks → 74
15632
+ * notifications, **44 (37.9%) suppressed outright**, 23 of them overlapping a
15633
+ * track that did fire and 7 carrying a confirmed identity nobody heard about.
15634
+ * A group collapses the same volume by MERGING, so the cooldown becomes a
15635
+ * budget over GROUPS — which is what it always meant — and a growth is never
15636
+ * throttled by the window its own first member spent.
15637
+ *
15638
+ * ### Interaction with {@link waitForEnhancement}
15639
+ *
15640
+ * They compose, and the order matters. `waitForEnhancement` defers the rule to
15641
+ * TRACK CLOSE, so with both set the group is opened by the first member to
15642
+ * CLOSE — already carrying its name — and grows as later members close. That
15643
+ * is later, and complete. With grouping alone the group opens on the first
15644
+ * object event and picks up names as they are confirmed, through the growth
15645
+ * path. Neither combination fires twice for one subject.
15646
+ *
15647
+ * `.optional()` and deliberately NOT `.default()`: a Zod default does not run
15648
+ * on the addon cap path, so absent must keep meaning what it meant before this
15649
+ * field existed.
15650
+ */
15651
+ groupIdleSec: number().int().min(0).max(600).optional()
15231
15652
  });
15232
15653
  /**
15233
15654
  * Partial patch for `updateRule` — any subset of the input fields, plus the
@@ -15334,6 +15755,7 @@ var NcConditionDescriptorSchema = object({
15334
15755
  "occupancy",
15335
15756
  "audio",
15336
15757
  "deviceState",
15758
+ "scene",
15337
15759
  "systemEvent"
15338
15760
  ]),
15339
15761
  operator: _enum([
@@ -16153,7 +16575,7 @@ var TrackEnvelopeSchema = object({
16153
16575
  * `snapshots[]` references — megabytes across a page of tracks. `slim`
16154
16576
  * keeps every scalar the list surfaces actually render (ids, class(es),
16155
16577
  * label / audioLabels / importance enrichment, firstSeen/lastSeen, state,
16156
- * zonesVisited, bestEventId, envelope, hasFace) and returns `positions` /
16578
+ * zonesVisited, bestEventId, envelope, hasFace, hasRider) and returns `positions` /
16157
16579
  * `snapshots` as EMPTY arrays — detail views re-fetch the full row via
16158
16580
  * `getTrack`. Mirrors the event-store `projection` convention
16159
16581
  * (`getObjectEvents` et al.).
@@ -16289,7 +16711,21 @@ union([literal(1), literal(2)]);
16289
16711
  var LabelAttributionSchema = object({
16290
16712
  stepId: string(),
16291
16713
  modelId: string().optional(),
16292
- decidedAt: number()
16714
+ decidedAt: number(),
16715
+ /**
16716
+ * The GALLERY id behind a recognised tier-2 label — a face-gallery
16717
+ * `Identity.id` or a plate-gallery `Vehicle.id` (both `randomUUID`).
16718
+ *
16719
+ * The text alone is a DISPLAY NAME, and a display name is renameable: a
16720
+ * notification rule authored on "Gianluca" stopped matching the moment the
16721
+ * operator fixed the spelling in the gallery, and nothing said so. The id is
16722
+ * the thing that does not move, so it is what a rule matches on
16723
+ * (`NcConditions.identities`) and the text is what a human is shown.
16724
+ *
16725
+ * Absent when the label names no gallery row — a plate the OCR read but no
16726
+ * vehicle claims, a sub-class, a species, any tier-1 value.
16727
+ */
16728
+ identityId: string().optional()
16293
16729
  });
16294
16730
  /**
16295
16731
  * The TIERED label model (roadmap 4g), spread into `TrackSchema` and
@@ -16426,6 +16862,28 @@ var TrackSchema = object({
16426
16862
  * `=== true` and render nothing otherwise, never infer "no face".
16427
16863
  */
16428
16864
  hasFace: boolean().optional(),
16865
+ /**
16866
+ * This subject CONTAINS a folded rider — a person the rider-pairing step
16867
+ * ([D34](../decisions/adr-0034.md)) removed from the frame BEFORE the tracker,
16868
+ * so the passage is tracked once and as a VEHICLE.
16869
+ *
16870
+ * It exists because the fold's record was dishonest. D34 and the code both
16871
+ * said "the person is not lost — it is reported so both entities stay on the
16872
+ * record"; in fact the pair went into a per-processor RAM field behind an
16873
+ * accessor nobody called, and every durable surface said `vehicle`, full
16874
+ * stop. This is the composition note that makes the row true.
16875
+ *
16876
+ * A COMPOSITION, never a class and never a label. "This vehicle contains a
16877
+ * person" is not an answer to "what is this" — both label tiers would refuse
16878
+ * a macro token anyway (D89), and correctly. Nothing here changes what the
16879
+ * subject IS: a cyclist stays one vehicle track, occupancy still counts one,
16880
+ * and a `person` rule still does not fire for someone cycling past.
16881
+ *
16882
+ * **Absent ≠ false**, exactly like {@link hasFace}: every row written before
16883
+ * the column, and every hub that predates the field, omits it. Test
16884
+ * `=== true` and render nothing otherwise — never infer "no rider".
16885
+ */
16886
+ hasRider: boolean().optional(),
16429
16887
  ...TrackFlagFields,
16430
16888
  ...TrackRetrainFields
16431
16889
  });
@@ -17861,6 +18319,17 @@ var maxSessionHoldMsField = {
17861
18319
  default: 12e4,
17862
18320
  step: 5e3
17863
18321
  };
18322
+ /**
18323
+ * Quiet period that closes an `audioMode: 'on-motion'` audio window. Floor of
18324
+ * 5s so a rearm can never degenerate into per-event stream churn; default 90s
18325
+ * comfortably outlives the gap between two PIR wakes on a battery camera.
18326
+ */
18327
+ var audioMotionWindowMsField = {
18328
+ min: 5e3,
18329
+ max: 6e5,
18330
+ default: 9e4,
18331
+ step: 5e3
18332
+ };
17864
18333
  var motionFpsField = {
17865
18334
  min: 1,
17866
18335
  max: 30,
@@ -18037,6 +18506,27 @@ var RunnerCameraConfigSchema = object({
18037
18506
  * resolved `CameraDetectionConfig`.
18038
18507
  */
18039
18508
  maxSessionHoldMs: number().min(maxSessionHoldMsField.min).max(maxSessionHoldMsField.max).optional(),
18509
+ /**
18510
+ * Orchestrator-side quiet period (ms) that closes an `audioMode:
18511
+ * 'on-motion'` audio window, measured from the LAST motion event.
18512
+ *
18513
+ * This exists because the falling edge cannot be relied on. Camera-native
18514
+ * providers emit motion as a RISING EDGE ONLY (Reolink's Baichuan push and
18515
+ * its email-push SMTP path both emit `detected: true` and never the
18516
+ * counterpart); only the frame-diff analyzer emits falls. So on an
18517
+ * onboard-only camera a window that closed only on `detected: false` never
18518
+ * closed at all, and `on-motion` silently behaved as `always-on` — on a
18519
+ * battery camera, the one failure mode the mode exists to prevent.
18520
+ *
18521
+ * Every motion event rearms this timer WITHOUT restarting the stream, so a
18522
+ * burst of re-fires costs nothing. A falling edge, when one does arrive,
18523
+ * still closes earlier via `motionCooldownMs` — whichever comes first wins.
18524
+ *
18525
+ * Not consumed by the runner: carried here so it shares the per-camera
18526
+ * device-settings surface with `motionCooldownMs`, exactly like
18527
+ * `maxSessionHoldMs`.
18528
+ */
18529
+ audioMotionWindowMs: number().min(audioMotionWindowMsField.min).max(audioMotionWindowMsField.max).optional(),
18040
18530
  motionFps: number().min(motionFpsField.min).max(motionFpsField.max).default(motionFpsField.default),
18041
18531
  detectionFps: number().min(detectionFpsField.min).max(detectionFpsField.max).default(detectionFpsField.default),
18042
18532
  motionStreamId: string(),
@@ -18132,7 +18622,7 @@ var RunnerCameraConfigSchema = object({
18132
18622
  */
18133
18623
  inferenceDevices: array(RunnerInferenceDeviceSchema).readonly().optional()
18134
18624
  });
18135
- 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;
18625
+ 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;
18136
18626
  /**
18137
18627
  * Runtime load summary returned by `getLocalLoad`. Used by the orchestrator's
18138
18628
  * load-balancing levels (L2 capacity-based, L3 hardware-aware) to decide
@@ -26382,14 +26872,77 @@ method(object({
26382
26872
  * thing except the comparator: `similarity` (CLIP cosine at the same ROI coords
26383
26873
  * vs condition-tagged references) and `llm` (vision-LLM judgment over the crop).
26384
26874
  *
26385
- * D14 device-config archetype (`deviceConfig.ui.kind:'widget'`) the framework
26386
- * derives the device-detail contribution; the provider carries NO hand-written
26387
- * settings-contribution methods. `status.kind:'push'` the engine pushes on
26388
- * every hysteresis flip / availability change; consumers never poll.
26389
- */
26390
- /** Extensible condition tag. Seeded 'day' | 'night'; open by design so more can
26391
- * be added without a wire break (matching falls back to any-condition refs). */
26875
+ * **No `deviceConfig`, deliberately.** This shipped as the D14 widget archetype,
26876
+ * which put a "Scenes" tab on one camera's detail page. That is the wrong shape
26877
+ * for the thing: a scene is a standing question about the property ("is the bin
26878
+ * still out"), and the operator's question is "which of my scenes have tripped",
26879
+ * across every camera at once — not "what does camera 617 think". Buried one
26880
+ * camera deep it also could not be found. The surface is now a top-level admin
26881
+ * page (`/scenes`, `pages/Scenes.tsx`) that lists every scene on every camera and
26882
+ * picks the camera inside the create flow, the same shape Events and Faces have.
26883
+ *
26884
+ * The consequence to keep in mind: `host/scene-monitor-editor` is gone from
26885
+ * `HOST_WIDGETS` too. `scripts/check-host-widget-resolves.ts` asserts BOTH
26886
+ * directions, so a registration nobody declares fails exactly as loudly as a
26887
+ * declaration nobody registers. The editor is imported directly by the page.
26888
+ *
26889
+ * `status.kind:'push'` — the engine pushes on every hysteresis flip /
26890
+ * availability change; consumers never poll.
26891
+ */
26892
+ /** Extensible condition tag. Seeded 'day' | 'ir' (the two variants the operator
26893
+ * captures) plus 'night' | 'dawn' | 'dusk' from the resolver's sun-times band.
26894
+ * Open by design so more can be added without a wire break.
26895
+ *
26896
+ * Matching does NOT fall back across conditions: cross-condition cosines are
26897
+ * not comparable, so "I have never seen this scene in this light" is reported
26898
+ * as `unknown`, never guessed. A day reference scored against an IR frame
26899
+ * collapses the cosine and would latch a false alarm every single night. */
26392
26900
  var SceneConditionSchema = string();
26901
+ /**
26902
+ * What a scene does when the CURRENT light has no reference of its own.
26903
+ *
26904
+ * The lighting variants are not equally likely to exist. Almost every operator
26905
+ * captures daylight and then never stands outside at 22:00 to capture IR, and a
26906
+ * scene that is only ever going to be asked about a daytime question ("is the
26907
+ * bin still on the kerb at 08:00") does not need a night reference at all. The
26908
+ * night half must therefore be OPTIONAL, and optional means the scene keeps
26909
+ * working without it rather than degrading into a permanent complaint.
26910
+ *
26911
+ * - `skip` (default) — the check in that light is not made. Not a verdict, not
26912
+ * an alarm, not even an `unknown`: the live state simply stays whatever the
26913
+ * last covered light left it at, the latch is untouched, and the hysteresis
26914
+ * run is neither spent nor cleared. The scene resumes by itself at first
26915
+ * light. This is the only behaviour under which "I never captured IR" is a
26916
+ * configuration choice instead of a nightly fault.
26917
+ * - `judge-anyway` — score against the OTHER conditions' references. Available
26918
+ * for cameras whose IR frame is close enough to daylight (a floodlit
26919
+ * driveway, an always-white-light doorbell), and wrong for everything else:
26920
+ * cross-condition cosines are not comparable, so a day reference against a
26921
+ * true IR frame collapses and the scene reports a theft at 21:40.
26922
+ *
26923
+ * Never applies when the scene has NO comparable reference at all — that is
26924
+ * "not armed yet", it is reported as `no-reference-for-condition`, and silence
26925
+ * there would hide a scene the operator never finished setting up.
26926
+ */
26927
+ var SceneUncoveredPolicySchema = _enum(["skip", "judge-anyway"]);
26928
+ /** `matched` = the baseline is what we see; `diverged` = it demonstrably is not;
26929
+ * `unknown` = we cannot judge (no reference for this condition, encoder model
26930
+ * changed, view shifted, no snapshot). `unknown` is a real value, not a null,
26931
+ * and never counts toward hysteresis in either direction. */
26932
+ var SceneVerdictSchema = _enum([
26933
+ "matched",
26934
+ "diverged",
26935
+ "unknown"
26936
+ ]);
26937
+ /** Why a scene cannot judge. Named, because this feature's failure mode is
26938
+ * silence that reads as "nothing has happened". */
26939
+ var SceneUnavailableSchema = _enum([
26940
+ "no-reference-for-condition",
26941
+ "view-shifted",
26942
+ "no-vision-profile",
26943
+ "encoder-model-changed",
26944
+ "no-snapshot"
26945
+ ]);
26393
26946
  /** One captured reference — condition-tagged, model-version-gated. `embedding`
26394
26947
  * is `number[]` (Float32Array does NOT survive MsgPack/UDS). */
26395
26948
  var SceneReferenceSchema = object({
@@ -26397,7 +26950,14 @@ var SceneReferenceSchema = object({
26397
26950
  modelId: string(),
26398
26951
  condition: SceneConditionSchema,
26399
26952
  capturedAt: number(),
26400
- thumbnailMediaId: string().optional()
26953
+ thumbnailMediaId: string().optional(),
26954
+ /** Whole-frame (downscaled) embedding captured alongside the ROI crop. The
26955
+ * anti-view-shift anchor: a bumped camera, a PTZ preset or a re-aim makes the
26956
+ * normalized rect frame a different piece of world, and the scene would
26957
+ * diverge forever with a perfectly plausible cosine. Checked LAZILY, only
26958
+ * when hysteresis is about to flip — one extra encode per candidate
26959
+ * transition, not per poll. */
26960
+ anchorEmbedding: array(number()).optional()
26401
26961
  });
26402
26962
  var SceneMonitorStateSchema = object({
26403
26963
  id: string(),
@@ -26419,6 +26979,28 @@ var SceneCheckSchema = discriminatedUnion("mode", [object({
26419
26979
  profileId: string().optional(),
26420
26980
  hysteresisCount: number().int().positive()
26421
26981
  })]);
26982
+ var SCENE_DEFAULT_ANCHOR_THRESHOLD = .85;
26983
+ /** Night is OPTIONAL. A scene with only a daylight reference sits the IR hours
26984
+ * out in silence rather than reporting a fault every night. */
26985
+ var SCENE_DEFAULT_UNCOVERED_POLICY = "skip";
26986
+ /**
26987
+ * Vision-model adjudication of a candidate flip. Field names deliberately
26988
+ * mirror `NcConfirmSchema` so an operator meets one vocabulary, not two.
26989
+ *
26990
+ * `onTimeout` defaults to **'hold'**, the OPPOSITE of `NcConfirmGate`'s
26991
+ * fail-open: a notification suppressed is the worse error there, but a vision
26992
+ * model that timed out has not told us the bin is gone, and a latch is a
26993
+ * stateful claim that costs the operator a trip to reset.
26994
+ */
26995
+ var SceneConfirmSchema = object({
26996
+ enabled: boolean().default(false),
26997
+ prompt: string().min(1).max(1e3),
26998
+ profileId: string().optional(),
26999
+ timeoutMs: number().int().min(1e3).max(2e4).default(8e3),
27000
+ maxImagePx: number().int().min(64).max(2048).default(448),
27001
+ /** What a timeout / unavailable model means for the PENDING flip. */
27002
+ onTimeout: _enum(["flip", "hold"]).default("hold")
27003
+ });
26422
27004
  var SceneMonitorSchema = object({
26423
27005
  id: string(),
26424
27006
  label: string(),
@@ -26437,7 +27019,56 @@ var SceneMonitorSchema = object({
26437
27019
  lastConfidence: number().nullable(),
26438
27020
  currentCondition: SceneConditionSchema.nullable(),
26439
27021
  availability: _enum(["ok", "unavailable"]),
26440
- unavailableReason: string().nullable()
27022
+ unavailableReason: string().nullable(),
27023
+ /** Which state is "the initial screen". `null` until the first capture. */
27024
+ baselineStateId: string().nullable(),
27025
+ /** Which boolean drives notification rules and any export. */
27026
+ emit: _enum(["latched", "live"]).default("latched"),
27027
+ /** Live: does the region match the baseline RIGHT NOW. */
27028
+ verdict: SceneVerdictSchema,
27029
+ /** Has it been `diverged` at least once since `armedAt` — the operator's boolean. */
27030
+ latched: boolean(),
27031
+ /** Last reset (or creation). */
27032
+ armedAt: number(),
27033
+ divergedAt: number().nullable(),
27034
+ restoredAt: number().nullable(),
27035
+ /** A check is only COUNTED when the device has been quiet this long. Motion
27036
+ * during the window DISCARDS the observation — a car pulling up in front of
27037
+ * the bin must not be able to spend hysteresis credit. */
27038
+ quietSeconds: number().int().min(0).max(3600).default(60),
27039
+ /** An observation only advances the pending count when it is at least this
27040
+ * far from the previously counted one, so N agreeing checks span real time
27041
+ * rather than N adjacent polls inside one occlusion. */
27042
+ minObservationSpacingSec: number().int().min(0).max(3600).default(120),
27043
+ /** Vision-model adjudication of a candidate flip. Similarity primary only. */
27044
+ confirm: SceneConfirmSchema.optional(),
27045
+ /** Whole-frame anchor cosine below which a flip is REFUSED as `view-shifted`. */
27046
+ anchorThreshold: number().min(0).max(1).default(SCENE_DEFAULT_ANCHOR_THRESHOLD),
27047
+ /** Clear the latch on its own when the scene matches again? Default false —
27048
+ * `restoredAt` and the `scene-restored` edge are recorded regardless, so an
27049
+ * automation can react to the bin coming back without the operator's own
27050
+ * alarm silently clearing itself. */
27051
+ autoRestore: boolean().default(false),
27052
+ /** What to do when the current light has no reference of its own. See
27053
+ * {@link SceneUncoveredPolicySchema} — the default makes night OPTIONAL. */
27054
+ onUncoveredCondition: SceneUncoveredPolicySchema.default(SCENE_DEFAULT_UNCOVERED_POLICY),
27055
+ /**
27056
+ * The light whose checks are currently being SAT OUT under
27057
+ * `onUncoveredCondition: 'skip'` — `null` when the scene is checking normally.
27058
+ *
27059
+ * Engine-reported and advisory only: it moves no verdict, no latch and no
27060
+ * hysteresis. It exists so the card can say *"night (IR) — checks paused,
27061
+ * nothing captured in this light"* in the same calm voice as the coverage
27062
+ * line, because the alternative is a scene that silently stops answering
27063
+ * after sunset with nothing anywhere saying why. A skipped check must never
27064
+ * read as a broken one.
27065
+ */
27066
+ suspendedCondition: SceneConditionSchema.nullable().default(null),
27067
+ /** Named cause when `verdict === 'unknown'`. */
27068
+ unavailable: SceneUnavailableSchema.nullable(),
27069
+ /** Conditions that have at least one comparable reference — the coverage line
27070
+ * ("day ✓ · ir ✓ · dusk ✗") that turns a silent fallback into a visible fact. */
27071
+ coveredConditions: array(SceneConditionSchema)
26441
27072
  });
26442
27073
  var SceneMonitorStatusSchema = object({
26443
27074
  monitors: array(SceneMonitorSchema),
@@ -26450,12 +27081,6 @@ var sceneMonitorCapability = {
26450
27081
  kind: "wrapper",
26451
27082
  defaultActive: true,
26452
27083
  deviceTypes: [DeviceType.Camera],
26453
- deviceConfig: { ui: {
26454
- kind: "widget",
26455
- widgetId: "host/scene-monitor-editor",
26456
- tab: "scenes",
26457
- label: "Scenes"
26458
- } },
26459
27084
  methods: {
26460
27085
  listScenes: method(object({ deviceId: number() }), SceneMonitorStatusSchema),
26461
27086
  createScene: method(object({
@@ -26486,7 +27111,15 @@ var sceneMonitorCapability = {
26486
27111
  "both"
26487
27112
  ]).optional(),
26488
27113
  checkIntervalSec: number().optional(),
26489
- check: SceneCheckSchema.optional()
27114
+ check: SceneCheckSchema.optional(),
27115
+ emit: _enum(["latched", "live"]).optional(),
27116
+ quietSeconds: number().int().min(0).max(3600).optional(),
27117
+ minObservationSpacingSec: number().int().min(0).max(3600).optional(),
27118
+ anchorThreshold: number().min(0).max(1).optional(),
27119
+ autoRestore: boolean().optional(),
27120
+ onUncoveredCondition: SceneUncoveredPolicySchema.optional(),
27121
+ /** `null` clears the vision-model adjudicator. */
27122
+ confirm: SceneConfirmSchema.nullable().optional()
26490
27123
  })
26491
27124
  }), _void(), {
26492
27125
  kind: "mutation",
@@ -26527,6 +27160,26 @@ var sceneMonitorCapability = {
26527
27160
  }), _void(), {
26528
27161
  kind: "mutation",
26529
27162
  auth: "admin"
27163
+ }),
27164
+ /**
27165
+ * Clear the latch, re-arm, and — by default — RE-CAPTURE the baseline for
27166
+ * the CURRENT condition. The bin never goes back in exactly the same spot;
27167
+ * "reset" in the operator's head means *this is the new normal*, and
27168
+ * re-capture is what makes the feature self-healing against slow drift
27169
+ * instead of failing silently weeks later.
27170
+ *
27171
+ * Reachable from three surfaces on this one mutation: the scene card, a
27172
+ * notification button (an `onTrigger` sequence with a `kind:'cap'` step —
27173
+ * no new Notification-Center code at all), and tRPC for scripts.
27174
+ */
27175
+ resetScene: method(object({
27176
+ deviceId: number(),
27177
+ monitorId: string(),
27178
+ /** Defaults to TRUE at the provider seam — see `SCENE_RESET_RECAPTURES`. */
27179
+ recapture: boolean().optional()
27180
+ }), _void(), {
27181
+ kind: "mutation",
27182
+ auth: "admin"
26530
27183
  })
26531
27184
  },
26532
27185
  status: {
@@ -27228,12 +27881,64 @@ var NetworkAddressSchema = object({
27228
27881
  family: string(),
27229
27882
  internal: boolean()
27230
27883
  });
27884
+ /**
27885
+ * Provenance of the site coordinates, and the whole reason this is not just two
27886
+ * numbers.
27887
+ *
27888
+ * - `operator-set` — a human typed it, or accepted a detection. Authoritative;
27889
+ * nothing overwrites it.
27890
+ * - `derived-from-ip` — the hub geolocated its own public IP once, because a
27891
+ * default that is right to a few kilometres beats the coarse UTC clock split
27892
+ * the sun-times consumers otherwise fall back to.
27893
+ *
27894
+ * The UI shows which one it is. An operator who cannot tell a guess from their
27895
+ * own input will eventually trust the guess.
27896
+ */
27897
+ var SiteLocationSourceSchema = _enum(["operator-set", "derived-from-ip"]);
27898
+ /**
27899
+ * The read shape: the location plus the honest state of the one-shot derivation.
27900
+ *
27901
+ * `derivationAttemptedAt` is what makes the "one call, ever" contract
27902
+ * inspectable. When it is set and `location` is null, the geo-IP lookup ran and
27903
+ * failed; the hub will NOT try again on its own — the fallback is declared
27904
+ * (consumers degrade to their own last resort) and the operator either types the
27905
+ * coordinates or presses detect.
27906
+ */
27907
+ var SiteLocationStatusSchema = object({
27908
+ location: object({
27909
+ /** WGS84 decimal degrees. */
27910
+ latitude: number().min(-90).max(90),
27911
+ longitude: number().min(-180).max(180),
27912
+ source: SiteLocationSourceSchema,
27913
+ /** Epoch ms the value was last written. */
27914
+ updatedAt: number(),
27915
+ /**
27916
+ * Human-readable place the geo-IP service reported ("Napoli, IT"). Display
27917
+ * only — never parsed, never matched on. Absent for an operator-typed value.
27918
+ */
27919
+ label: string().optional()
27920
+ }).nullable(),
27921
+ derivationAttemptedAt: number().nullable(),
27922
+ /** Why the last derivation failed, for the UI to show instead of a shrug. */
27923
+ derivationError: string().nullable()
27924
+ });
27925
+ /** `null` clears the location and re-arms nothing — the derivation stays spent. */
27926
+ var SetSiteLocationInputSchema = object({
27927
+ latitude: number().min(-90).max(90),
27928
+ longitude: number().min(-180).max(180)
27929
+ }).nullable();
27231
27930
  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(), {
27232
27931
  kind: "mutation",
27233
27932
  auth: "admin"
27234
27933
  }), method(_void(), _void(), {
27235
27934
  kind: "mutation",
27236
27935
  auth: "admin"
27936
+ }), method(_void(), SiteLocationStatusSchema), method(SetSiteLocationInputSchema, SiteLocationStatusSchema, {
27937
+ kind: "mutation",
27938
+ auth: "admin"
27939
+ }), method(_void(), SiteLocationStatusSchema, {
27940
+ kind: "mutation",
27941
+ auth: "admin"
27237
27942
  });
27238
27943
  /**
27239
27944
  * Tamper / case-open detection sensor. Drives Home Assistant
@@ -29240,6 +29945,15 @@ var BaseDeviceProvider = class extends BaseAddon {
29240
29945
  labels: ["probe not implemented"]
29241
29946
  };
29242
29947
  }
29948
+ /**
29949
+ * Top-level devices restored at once in {@link onRestoreDevices}.
29950
+ *
29951
+ * Four covers the fleets this ships to without turning a boot into a burst a
29952
+ * camera NVR answers with a refusal. A provider whose upstream is a single
29953
+ * session with a serial command channel (a Baichuan hub, an NVR that
29954
+ * serialises ISAPI) should lower it; nothing needs to raise it.
29955
+ */
29956
+ restoreConcurrency = 4;
29243
29957
  async restoreDevices(savedDevices) {
29244
29958
  await this.onRestoreDevices(savedDevices);
29245
29959
  if (savedDevices.length > 0) this.ctx.logger.info(`Restored ${savedDevices.length} ${this.providerName} device(s)`);
@@ -29271,15 +29985,15 @@ var BaseDeviceProvider = class extends BaseAddon {
29271
29985
  */
29272
29986
  async onRestoreDevices(savedDevices) {
29273
29987
  const restored = /* @__PURE__ */ new Set();
29274
- for (const saved of savedDevices) {
29275
- if (saved.parentDeviceId !== null) continue;
29988
+ const topLevel = savedDevices.filter((saved) => saved.parentDeviceId === null);
29989
+ const restoreOne = async (saved) => {
29276
29990
  const Class = this.deviceClasses[saved.type];
29277
29991
  if (!Class) {
29278
29992
  this.ctx.logger.warn("No device class registered for restored type — skipping", {
29279
29993
  tags: { stableId: saved.stableId },
29280
29994
  meta: { type: saved.type }
29281
29995
  });
29282
- continue;
29996
+ return;
29283
29997
  }
29284
29998
  try {
29285
29999
  await this.ctx.kernel.devices.create(saved.stableId, Class, {});
@@ -29293,7 +30007,15 @@ var BaseDeviceProvider = class extends BaseAddon {
29293
30007
  }
29294
30008
  });
29295
30009
  }
29296
- }
30010
+ };
30011
+ let nextTopLevel = 0;
30012
+ await Promise.all(Array.from({ length: Math.min(Math.max(1, this.restoreConcurrency), topLevel.length) }, async () => {
30013
+ for (;;) {
30014
+ const saved = topLevel[nextTopLevel++];
30015
+ if (saved === void 0) return;
30016
+ await restoreOne(saved);
30017
+ }
30018
+ }));
29297
30019
  const childRows = savedDevices.filter((s) => s.parentDeviceId !== null);
29298
30020
  for (const saved of childRows) {
29299
30021
  const Class = this.deviceClasses[saved.type];
@@ -31449,6 +32171,12 @@ Object.freeze({
31449
32171
  addonId: null,
31450
32172
  access: "create"
31451
32173
  },
32174
+ "llm.cancel": {
32175
+ capName: "llm",
32176
+ capScope: "system",
32177
+ addonId: null,
32178
+ access: "create"
32179
+ },
31452
32180
  "llm.deleteModel": {
31453
32181
  capName: "llm",
31454
32182
  capScope: "system",
@@ -31533,6 +32261,12 @@ Object.freeze({
31533
32261
  addonId: null,
31534
32262
  access: "view"
31535
32263
  },
32264
+ "llm.resolveModelRef": {
32265
+ capName: "llm",
32266
+ capScope: "system",
32267
+ addonId: null,
32268
+ access: "create"
32269
+ },
31536
32270
  "llm.setDefault": {
31537
32271
  capName: "llm",
31538
32272
  capScope: "system",
@@ -33699,6 +34433,12 @@ Object.freeze({
33699
34433
  addonId: null,
33700
34434
  access: "create"
33701
34435
  },
34436
+ "sceneMonitor.resetScene": {
34437
+ capName: "scene-monitor",
34438
+ capScope: "device",
34439
+ addonId: null,
34440
+ access: "delete"
34441
+ },
33702
34442
  "sceneMonitor.updateScene": {
33703
34443
  capName: "scene-monitor",
33704
34444
  capScope: "device",
@@ -34377,6 +35117,12 @@ Object.freeze({
34377
35117
  addonId: null,
34378
35118
  access: "create"
34379
35119
  },
35120
+ "system.detectSiteLocation": {
35121
+ capName: "system",
35122
+ capScope: "system",
35123
+ addonId: null,
35124
+ access: "create"
35125
+ },
34380
35126
  "system.featureFlags": {
34381
35127
  capName: "system",
34382
35128
  capScope: "system",
@@ -34395,6 +35141,12 @@ Object.freeze({
34395
35141
  addonId: null,
34396
35142
  access: "view"
34397
35143
  },
35144
+ "system.getSiteLocation": {
35145
+ capName: "system",
35146
+ capScope: "system",
35147
+ addonId: null,
35148
+ access: "view"
35149
+ },
34398
35150
  "system.health": {
34399
35151
  capName: "system",
34400
35152
  capScope: "system",
@@ -34419,6 +35171,12 @@ Object.freeze({
34419
35171
  addonId: null,
34420
35172
  access: "create"
34421
35173
  },
35174
+ "system.setSiteLocation": {
35175
+ capName: "system",
35176
+ capScope: "system",
35177
+ addonId: null,
35178
+ access: "create"
35179
+ },
34422
35180
  "terminalSession.adoptLegacyMonitor": {
34423
35181
  capName: "terminal-session",
34424
35182
  capScope: "system",
@@ -36381,6 +37139,11 @@ Object.freeze({
36381
37139
  form: "single",
36382
37140
  optional: false
36383
37141
  }],
37142
+ "sceneMonitor.resetScene": [{
37143
+ name: "deviceId",
37144
+ form: "single",
37145
+ optional: false
37146
+ }],
36384
37147
  "sceneMonitor.updateScene": [{
36385
37148
  name: "deviceId",
36386
37149
  form: "single",
@@ -225446,6 +226209,44 @@ function capDayNightModeToReolink(mode) {
225446
226209
  }
225447
226210
  }
225448
226211
  //#endregion
226212
+ //#region src/device-features.ts
226213
+ /**
226214
+ * Derive the device-manager feature set for a Reolink camera.
226215
+ *
226216
+ * `battery-operated` is derived from the probe flag **OR** the driver's own
226217
+ * `isBattery` discriminator — never the probe alone. The probe slice is
226218
+ * written only by a SUCCESSFUL `feature-probe` round-trip, and a battery
226219
+ * camera that is asleep (or flat, or off-LAN) never answers one: device 640
226220
+ * "Baby monitor" held `deviceCache.deviceType === 'battery-cam'`, a
226221
+ * `battery` runtime slice reporting `sleeping: true`, and STILL published
226222
+ * `features = ['native-snapshot','rebootable']` because the `feature-probe`
226223
+ * slice had never been written.
226224
+ *
226225
+ * That miss is not cosmetic. `DeviceFeature.BatteryOperated` is the gate for:
226226
+ * - the viewer's battery badge + sleeping overlay (`use-cameras.ts` FEATURE
226227
+ * map) — without it the camera is drawn as an ordinary awake camera;
226228
+ * - the snapshot wrapper's sleep gate (`snapshot.addon.ts`
226229
+ * `lookupDeviceMeta().isBattery`) — without it every thumbnail refresh
226230
+ * issues a Baichuan login and WAKES the camera (observed hourly on 640
226231
+ * while it sat at 14%);
226232
+ * - the broker's `preBufferSec = 0` battery rule and its relaxed stall
226233
+ * watchdog.
226234
+ *
226235
+ * The probe's own `hasBattery` is already sticky-true (`applyProbe` never
226236
+ * clears it). This makes the DERIVED answer sticky the same way, for the
226237
+ * window before any probe has ever succeeded.
226238
+ */
226239
+ function deriveReolinkCameraFeatures(inputs) {
226240
+ const { probe, isBattery } = inputs;
226241
+ const out = [DeviceFeature.NativeSnapshot, DeviceFeature.Rebootable];
226242
+ if (probe.hasBattery === true || isBattery) out.push(DeviceFeature.BatteryOperated);
226243
+ if (probe.hasPtz === true) out.push(DeviceFeature.PanTiltZoom);
226244
+ if (probe.hasAutotrack === true) out.push(DeviceFeature.PtzAutotrack);
226245
+ if (probe.hasIntercom === true) out.push(DeviceFeature.TwoWayAudio);
226246
+ if (probe.hasDoorbell === true) out.push(DeviceFeature.DoorbellButton);
226247
+ return out;
226248
+ }
226249
+ //#endregion
225449
226250
  //#region src/image-settings-mapping.ts
225450
226251
  /**
225451
226252
  * Reolink's `InputAdvanceCfg.Exposure.mode` (Baichuan cmdId 25/26, via
@@ -228965,6 +229766,15 @@ function coerceNumber(value) {
228965
229766
  return null;
228966
229767
  }
228967
229768
  /**
229769
+ * Per-device transient diagnostics blob populated from the lib's
229770
+ * `getOnlineUserSessionsForUi` + `getSocketPoolSummary` +
229771
+ * `getSocketPoolCooldownStatus` calls. NOT persisted — recomputed on
229772
+ * demand and shown in the device's "Sessions" tab. The aggregator UI
229773
+ * polls the device aggregate every ~2.5s and a stale snapshot triggers
229774
+ * a background refresh; the operator can also force one via the
229775
+ * tab's Refresh button (`_refreshSessions` patch sentinel).
229776
+ */
229777
+ /**
228968
229778
  * Reolink camera device — connects via Baichuan protocol and pushes
228969
229779
  * Annex-B H.264/H.265 directly to the stream broker.
228970
229780
  *
@@ -229055,24 +229865,24 @@ function slicesForPatch(patch) {
229055
229865
  var ReolinkCamera = class ReolinkCamera extends BaseDevice {
229056
229866
  type = DeviceType.Camera;
229057
229867
  /**
229058
- * Features derived from the post-probe `feature-probe` runtime-state
229059
- * slice. Surfaced via `device-manager.getDevice` so any service in
229060
- * the cluster (stream-broker, snapshot orchestrator, pipeline-runner)
229061
- * can derive policy from a single source.
229868
+ * Features derived from the `feature-probe` runtime-state slice AND the
229869
+ * driver's own `isBattery` discriminator. Surfaced via
229870
+ * `device-manager.getDevice` so any service in the cluster (stream-broker,
229871
+ * snapshot orchestrator, pipeline-runner) can derive policy from a single
229872
+ * source.
229873
+ *
229874
+ * The rule itself lives in `deriveReolinkCameraFeatures` — see that
229875
+ * function for why `battery-operated` must NOT wait for a probe.
229062
229876
  *
229063
229877
  * Returns a fresh array on each read so consumers can't mutate the
229064
229878
  * underlying state. The set is small (≤6 entries) so allocation cost
229065
229879
  * is negligible vs the staleness of caching.
229066
229880
  */
229067
229881
  get features() {
229068
- const probe = this.getProbeFlags();
229069
- const out = [DeviceFeature.NativeSnapshot, DeviceFeature.Rebootable];
229070
- if (probe.hasBattery === true) out.push(DeviceFeature.BatteryOperated);
229071
- if (probe.hasPtz === true) out.push(DeviceFeature.PanTiltZoom);
229072
- if (probe.hasAutotrack === true) out.push(DeviceFeature.PtzAutotrack);
229073
- if (probe.hasIntercom === true) out.push(DeviceFeature.TwoWayAudio);
229074
- if (probe.hasDoorbell === true) out.push(DeviceFeature.DoorbellButton);
229075
- return out;
229882
+ return deriveReolinkCameraFeatures({
229883
+ probe: this.getProbeFlags(),
229884
+ isBattery: this.isBattery
229885
+ });
229076
229886
  }
229077
229887
  /** Lazy-connected Baichuan API. Spans the lifetime of every active stream. */
229078
229888
  api = null;
@@ -236573,21 +237383,31 @@ var AutodetectCache = class {
236573
237383
  //#endregion
236574
237384
  //#region src/email-push-shared.ts
236575
237385
  /**
236576
- * Map the lib's email-push classifier output onto a `ReolinkSimpleEvent`
236577
- * type the camera understands. AI subtypes + motion + doorbell pass
236578
- * through; anything else collapses to plain `motion` so a wake is never
237386
+ * Map the lib's email-push classifier output onto the `ReolinkSimpleEvent`
237387
+ * types the camera should be fed. AI subtypes + motion pass through;
237388
+ * anything unrecognised collapses to plain `motion` so a wake is never
236579
237389
  * silently dropped.
236580
- */
236581
- function mapInferredTypeToSimpleEvent(inferred) {
237390
+ *
237391
+ * Returns a LIST rather than a single type because of `doorbell`. The
237392
+ * camera's `handleSimpleEvent` emits `MotionOnMotionChanged` for `motion`
237393
+ * and for every AI class, but the `doorbell` branch emits ONLY
237394
+ * `DoorbellOnPressed` and returns. An email is the sole signal a sleeping
237395
+ * battery camera can send, so a doorbell-classified email mapped to
237396
+ * `doorbell` alone rang the bell and left motion, recording and
237397
+ * notification rules blind — the exact "silently dropped wake" this mapping
237398
+ * exists to prevent. Pairing it with `motion` keeps the doorbell semantic
237399
+ * AND the wake.
237400
+ */
237401
+ function mapInferredTypeToSimpleEvents(inferred) {
236582
237402
  switch (inferred) {
236583
237403
  case "people":
236584
237404
  case "vehicle":
236585
237405
  case "animal":
236586
237406
  case "face":
236587
237407
  case "package":
236588
- case "doorbell":
236589
- case "motion": return inferred;
236590
- default: return "motion";
237408
+ case "motion": return [inferred];
237409
+ case "doorbell": return ["doorbell", "motion"];
237410
+ default: return ["motion"];
236591
237411
  }
236592
237412
  }
236593
237413
  /** Default SMTP listen port. Avoid privileged 25; Reolink firmwares are
@@ -236743,8 +237563,8 @@ var ReolinkEmailPushServer = class {
236743
237563
  subject: event.subject.slice(0, 80)
236744
237564
  }
236745
237565
  });
236746
- cam.handleSimpleEvent({
236747
- type: mapInferredTypeToSimpleEvent(event.inferredType),
237566
+ for (const type of mapInferredTypeToSimpleEvents(event.inferredType)) cam.handleSimpleEvent({
237567
+ type,
236748
237568
  channel: cam.emailPushChannel,
236749
237569
  timestamp: event.receivedAtMs
236750
237570
  });