@camstack/addon-pipeline 1.2.75 → 1.2.77

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 (31) hide show
  1. package/dist/{addon-utils-a_36HH_N.js → addon-utils-bZcwLaVW.js} +1 -1
  2. package/dist/audio-analyzer/index.js +2 -2
  3. package/dist/audio-analyzer/index.mjs +1 -1
  4. package/dist/detection-pipeline/index.js +4 -4
  5. package/dist/detection-pipeline/index.mjs +2 -2
  6. package/dist/{dist-6ZJCV0jY.js → dist-DQZzL0Ri.js} +452 -42
  7. package/dist/{dist-T_8jMw7d.mjs → dist-HhcoV-Ky.mjs} +452 -42
  8. package/dist/{event-loop-stall-monitor-Cjof8vA1.js → event-loop-stall-monitor-CBOo1oh_.js} +1 -1
  9. package/dist/{event-loop-stall-monitor-XeGmL4xr.mjs → event-loop-stall-monitor-CqBEWGSZ.mjs} +1 -1
  10. package/dist/{lazy-sharp-DvwPafeP.js → lazy-sharp-DIC1rpea.js} +1 -1
  11. package/dist/motion-wasm/index.js +2 -2
  12. package/dist/motion-wasm/index.mjs +1 -1
  13. package/dist/pipeline-runner/index.js +278 -15
  14. package/dist/pipeline-runner/index.mjs +277 -14
  15. package/dist/recorder/index.js +368 -18
  16. package/dist/recorder/index.mjs +367 -17
  17. package/dist/session-decode/decode-worker-child.js +2 -2
  18. package/dist/session-decode/decode-worker-child.mjs +1 -1
  19. package/dist/stream-broker/_stub.js +2 -2
  20. package/dist/stream-broker/{_virtual_mf-localSharedImportMap___mfe_internal__addon_stream_broker_widgets-H2OTmgR6.mjs → _virtual_mf-localSharedImportMap___mfe_internal__addon_stream_broker_widgets-De_xzvjU.mjs} +3 -3
  21. package/dist/stream-broker/_virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-DHJSxHH1.mjs +26 -0
  22. package/dist/stream-broker/_virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_ui_mf_2_library__loadShare__.js-Dg08SxUW.mjs +26 -0
  23. package/dist/stream-broker/{hostInit-4XDN_Nt0.mjs → hostInit-CDS5frmk.mjs} +3 -3
  24. package/dist/stream-broker/index.js +306 -71
  25. package/dist/stream-broker/index.mjs +306 -71
  26. package/dist/stream-broker/remoteEntry.js +1 -1
  27. package/dist/{worker-protocol-SqED7Y9i.mjs → worker-protocol-BNlLGLBV.mjs} +1 -1
  28. package/dist/{worker-protocol-B0cbTXyw.js → worker-protocol-DZVGVAPU.js} +1 -1
  29. package/package.json +1 -1
  30. package/dist/stream-broker/_virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_types__loadShare__.js-RYTOS6B-.mjs +0 -26
  31. package/dist/stream-broker/_virtual_mf___mfe_internal__addon_stream_broker_widgets__loadShare___mf_0_camstack_mf_1_ui_mf_2_library__loadShare__.js-DfsLsn2e.mjs +0 -26
@@ -1,5 +1,5 @@
1
1
  import { createHash } 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
@@ -13618,6 +13645,17 @@ var LlmImageSchema = object({
13618
13645
  bytes: _instanceof(Uint8Array),
13619
13646
  mimeType: string()
13620
13647
  });
13648
+ /**
13649
+ * Retry policy. `enabled: false` is NOT the same as `maxAttempts: 1` in intent —
13650
+ * the flag is what a consumer table flips, the count is what the operator tunes.
13651
+ * A retry doubles the wall time of a call, so the two gates that run inside a
13652
+ * notification's budget keep it off (see `CONSUMER_RETRY_POLICY` in addon-ai).
13653
+ */
13654
+ var LlmRetryPolicySchema = object({
13655
+ enabled: boolean().default(false),
13656
+ /** Total attempts INCLUDING the first. 1 = no retry. */
13657
+ maxAttempts: number().int().min(1).max(5).default(1)
13658
+ });
13621
13659
  var LlmGenerateBaseInputSchema = object({
13622
13660
  /** Collection routing (the notification-output posture). */
13623
13661
  addonId: string().optional(),
@@ -13632,7 +13670,28 @@ var LlmGenerateBaseInputSchema = object({
13632
13670
  jsonSchema: record(string(), unknown()).optional(),
13633
13671
  /** Per-call override of the profile default. */
13634
13672
  maxTokens: number().int().positive().optional(),
13635
- temperature: number().optional()
13673
+ temperature: number().optional(),
13674
+ /** Per-call override of the profile default (nucleus sampling). */
13675
+ topP: number().min(0).max(1).optional(),
13676
+ /** Per-call override of the profile default (top-k sampling). */
13677
+ topK: number().int().positive().optional(),
13678
+ /** Per-call override of `profile.timeoutMs` — the total generation bound. */
13679
+ timeoutMs: number().int().positive().optional(),
13680
+ /** Per-call override; beats both the consumer table and the profile. */
13681
+ retry: LlmRetryPolicySchema.optional(),
13682
+ /**
13683
+ * Caller-minted id that makes this generation CANCELLABLE.
13684
+ *
13685
+ * Without it a caller that stops waiting cannot stop the work: the gates race
13686
+ * the call against 8 s and free their own slot when the timer wins, while the
13687
+ * generation upstream keeps running to `profile.timeoutMs` — 60 s by default,
13688
+ * on a single-threaded local model. The per-camera bound then counts WAITS,
13689
+ * not generations, and the real load is unbounded.
13690
+ *
13691
+ * `AbortSignal` cannot cross a process boundary; an id can. Pass one here and
13692
+ * `llm.cancel({ requestId })` tears the socket down.
13693
+ */
13694
+ requestId: string().optional()
13636
13695
  });
13637
13696
  /**
13638
13697
  * `llm-runtime` — node-side managed llama.cpp executor (spec §4). Registered
@@ -13671,8 +13730,49 @@ var ManagedRuntimeConfigSchema = object({
13671
13730
  gpuLayers: number().int().default(0),
13672
13731
  /** Default: cpus-2, clamped ≥1 (resolved node-side). */
13673
13732
  threads: number().int().optional(),
13674
- /** Concurrent slots. */
13733
+ /** Concurrent slots (`--parallel`). */
13675
13734
  parallel: number().int().default(1),
13735
+ /** Logical batch size (`-b`). Larger = faster prompt ingest, more RAM. */
13736
+ batchSize: number().int().positive().optional(),
13737
+ /** Physical batch / micro-batch (`-ub`). */
13738
+ ubatchSize: number().int().positive().optional(),
13739
+ /**
13740
+ * `--flash-attn`. Cuts KV-cache memory on the backends that implement it and
13741
+ * is a no-op elsewhere, so it is offered rather than assumed.
13742
+ */
13743
+ flashAttention: boolean().default(false),
13744
+ /**
13745
+ * `--mlock`. Pins the weights in RAM so the OS cannot page them out mid
13746
+ * inference. Costs the full model size in resident memory — which is exactly
13747
+ * what the RAM budget is counting.
13748
+ */
13749
+ mlock: boolean().default(false),
13750
+ /**
13751
+ * `--no-mmap`. Reads the whole GGUF up front instead of mapping it. Slower to
13752
+ * start, but avoids the page-fault stalls a network or spinning-disk model
13753
+ * store produces on every first token.
13754
+ */
13755
+ noMmap: boolean().default(false),
13756
+ /** `--cache-type-k` / `--cache-type-v` — quantising the KV cache is the
13757
+ * cheapest way to fit a longer context in the same RAM. */
13758
+ cacheTypeK: _enum([
13759
+ "f32",
13760
+ "f16",
13761
+ "q8_0",
13762
+ "q5_1",
13763
+ "q5_0",
13764
+ "q4_1",
13765
+ "q4_0"
13766
+ ]).optional(),
13767
+ cacheTypeV: _enum([
13768
+ "f32",
13769
+ "f16",
13770
+ "q8_0",
13771
+ "q5_1",
13772
+ "q5_0",
13773
+ "q4_1",
13774
+ "q4_0"
13775
+ ]).optional(),
13676
13776
  /** Else lazy: first generate boots it. */
13677
13777
  autoStart: boolean().default(false),
13678
13778
  /** 0 = never; frees RAM after quiet periods. */
@@ -13760,10 +13860,44 @@ var LlmProfileSchema = object({
13760
13860
  baseUrl: string().optional(),
13761
13861
  /** ConfigUISchema type:'password' — never round-trips (spec §5). */
13762
13862
  apiKey: string().optional(),
13863
+ /** Vision on/off. A vision call against a `false` profile is REFUSED, never
13864
+ * degraded to text — that shipped once and produced a confident answer to a
13865
+ * question about a picture nobody sent. */
13763
13866
  supportsVision: boolean(),
13764
13867
  temperature: number().min(0).max(2).optional(),
13868
+ /** Nucleus sampling. Every wire we speak has it. */
13869
+ topP: number().min(0).max(1).optional(),
13870
+ /** Top-k sampling. Carried only by the wires that have it — NEITHER OpenAI
13871
+ * wire does, and the client drops it there (measured: the request body gets
13872
+ * `top_p` and no `top_k`). The profile editor hides the field wherever it
13873
+ * would change nothing; `KINDS_WITH_TOP_K` is the single owner of that list. */
13874
+ topK: number().int().positive().optional(),
13765
13875
  maxTokens: number().int().positive().optional(),
13876
+ /** Prompt context window. Advisory for cloud kinds (they enforce their own);
13877
+ * for `managed-local` it is the llama.cpp `--ctx-size` the runtime starts
13878
+ * the model with, so it is the one field that changes a PROCESS. */
13879
+ contextLength: number().int().positive().optional(),
13880
+ /** Default system prompt. A caller's `system` REPLACES it (never appends —
13881
+ * two system prompts fighting is worse than either alone). */
13882
+ systemPrompt: string().optional(),
13883
+ /** Total generation bound — the only one a unary call has. */
13766
13884
  timeoutMs: number().int().positive().default(6e4),
13885
+ /** Wait for response headers only. */
13886
+ connectTimeoutMs: number().int().positive().default(1e4),
13887
+ /** Accepted, but no output yet — a cold GPU load lives here. */
13888
+ firstTokenTimeoutMs: number().int().positive().default(12e4),
13889
+ /** Output started then stopped. */
13890
+ idleTimeoutMs: number().int().positive().default(6e4),
13891
+ /** Profile-level default. The per-consumer table and a per-call override
13892
+ * both beat it — see `resolveRetryPolicy`. */
13893
+ retry: LlmRetryPolicySchema.default({
13894
+ enabled: false,
13895
+ maxAttempts: 1
13896
+ }),
13897
+ /** Whether this profile may use tools. The tool-call plumbing rides the
13898
+ * library; the REGISTRY of callable tools is ours and is empty in v1, so a
13899
+ * `true` here buys the wiring, not behaviour, until tools are registered. */
13900
+ toolsEnabled: boolean().default(false),
13767
13901
  extraHeaders: record(string(), string()).optional(),
13768
13902
  /** kind === 'managed-local' only (spec §4). */
13769
13903
  runtime: ManagedRuntimeConfigSchema.optional()
@@ -13825,7 +13959,10 @@ var ProfileRefInputSchema = object({
13825
13959
  addonId: string(),
13826
13960
  profileId: string()
13827
13961
  });
13828
- method(LlmGenerateBaseInputSchema, LlmGenerateResultSchema, { kind: "mutation" }), method(GenerateVisionInputSchema, LlmGenerateResultSchema, { kind: "mutation" }), method(object({}), array(LlmProfileKindDescriptorSchema)), method(object({}), array(LlmProfileSchema)), method(object({ profile: LlmProfileSchema }), LlmProfileSchema, {
13962
+ method(LlmGenerateBaseInputSchema, LlmGenerateResultSchema, { kind: "mutation" }), method(GenerateVisionInputSchema, LlmGenerateResultSchema, { kind: "mutation" }), method(object({
13963
+ addonId: string().optional(),
13964
+ requestId: string()
13965
+ }), _void(), { kind: "mutation" }), method(object({}), array(LlmProfileKindDescriptorSchema)), method(object({}), array(LlmProfileSchema)), method(object({ profile: LlmProfileSchema }), LlmProfileSchema, {
13829
13966
  kind: "mutation",
13830
13967
  auth: "admin"
13831
13968
  }), method(ProfileRefInputSchema, _void(), {
@@ -15798,6 +15935,8 @@ var NcSystemEventKindSchema = _enum([
15798
15935
  "stream-offline",
15799
15936
  "node-online",
15800
15937
  "node-offline",
15938
+ "node-inference-unavailable",
15939
+ "detection-blind",
15801
15940
  "addon-update-available",
15802
15941
  "server-update-available",
15803
15942
  "alarm-triggered",
@@ -15902,28 +16041,36 @@ var NcOccupancyConditionSchema = object({
15902
16041
  /**
15903
16042
  * Audio condition (IMMEDIATE trigger) — a rule on SOUND, not on a picture.
15904
16043
  *
15905
- * Operator-approved vocabulary (2026-08-12, option A — the same one the
15906
- * reference notifier uses, so an operator moving between them re-uses what
15907
- * they already know): a rule matches when, over a sampling window of
15908
- * `samplingSeconds`, at least `hitPercent`% of the audio samples in that
15909
- * window are HITS. A sample is a hit when it satisfies BOTH present filters:
15910
- *
15911
- * - `dbThreshold` its level is at or above this many dBFS (see
15912
- * {@link NC_AUDIO_DBFS_FLOOR}: negative-going, `0` = full scale);
15913
- * - `labels` the classifier put at least one of these labels on it.
15914
- *
15915
- * Both are OPTIONAL and independent, which is the point of the shape: a
15916
- * loudness rule ("something loud at 3am") needs no model to be right, and a
15917
- * label rule ("a dog barked") needs no threshold. **Fail-closed when NEITHER
15918
- * is given** a window in which every sample is trivially a hit would fire on
15919
- * silence, so the engine refuses such a condition rather than notifying on
15920
- * nothing (the schema cannot express "at least one of" without becoming a
15921
- * ZodEffects the cap path would have to special-case).
15922
- *
15923
- * `hitPercent` is over the samples the window actually HOLDS, and the window
15924
- * must be FULL before it can match a window that has been open for two
15925
- * seconds of its ten is 100% of nothing, and firing on it would make
15926
- * `samplingSeconds` decorative.
16044
+ * **TWO EXCLUSIVE MODES** (operator decision 2026-08-14, D157). Which one a
16045
+ * rule is in is not a stored field it is WHICH FILTER the rule carries, so
16046
+ * there is no second switch that can disagree with the first and every rule
16047
+ * authored before the decision migrates for free (`audioModeOf`):
16048
+ *
16049
+ * - **LABEL mode — `labels` present.** The rule fires on the FIRST frame the
16050
+ * classifier labels with one of them. No window, no percentage:
16051
+ * `hitPercent` and `samplingSeconds` are ignored, and the rule's own
16052
+ * `throttle` cooldown is the only brake. The per-label confidence floor is
16053
+ * the analyzer's (`classificationMinScore`, per device) — a label only
16054
+ * reaches this condition if the classifier was already confident enough.
16055
+ * - **LEVEL mode `dbThreshold` present, no labels.** The sampling window IS
16056
+ * the condition: at least `hitPercent`% of the samples over
16057
+ * `samplingSeconds` must be at or above `dbThreshold` dBFS (see
16058
+ * {@link NC_AUDIO_DBFS_FLOOR}: negative-going, `0` = full scale). The window
16059
+ * must be FULL before it can match a window open for two of its ten
16060
+ * seconds is 100% of nothing.
16061
+ *
16062
+ * **Why label mode has no window.** It had one, and it never fired: the
16063
+ * analyzer emits ~1 audio frame per second but YAMNet only LABELS one to three
16064
+ * of them per episode, even through continuous crying. The measured maximum
16065
+ * `hitPercent` over the whole live history was 40 — under the shipped default
16066
+ * of 60, so a label rule could not fire at all, ever. A percentage of frames is
16067
+ * the wrong question to ask of a sparse classifier.
16068
+ *
16069
+ * **Fail-closed when NEITHER is given** — every sample would be a trivial hit
16070
+ * and the rule would fire on silence. The schema cannot express "exactly one
16071
+ * of" without becoming a ZodEffects the cap path would have to special-case, so
16072
+ * the exclusivity is enforced where every editor writes (`patchAudio`) and a
16073
+ * legacy rule carrying both resolves to LABEL (the mode that fires).
15927
16074
  *
15928
16075
  * Labels are the audio macro classes (`AUDIO_MACRO_LABELS` / the NC taxonomy's
15929
16076
  * `audio-*` ids). Both spellings are accepted — the matcher normalizes the
@@ -15931,13 +16078,13 @@ var NcOccupancyConditionSchema = object({
15931
16078
  * an operator who typed `dog` mean the same thing.
15932
16079
  */
15933
16080
  var NcAudioConditionSchema = object({
15934
- /** Audio macro labels; absent = any sound (level-only rule). */
16081
+ /** LABEL MODE: audio macro labels. Present fires on the first labelled frame. */
15935
16082
  labels: array(string().min(1)).min(1).optional(),
15936
- /** Level floor in dBFS (negative-going, `0` = full scale); absent = any level. */
16083
+ /** LEVEL MODE: floor in dBFS (negative-going, `0` = full scale). */
15937
16084
  dbThreshold: number().min(-96).max(0).optional(),
15938
- /** Percentage of the window's samples that must be hits (1–100). */
16085
+ /** LEVEL MODE ONLY: percentage of the window's samples that must be hits (1–100). */
15939
16086
  hitPercent: number().int().min(1).max(100).default(60),
15940
- /** Length of the sampling window in seconds. */
16087
+ /** LEVEL MODE ONLY: length of the sampling window in seconds. */
15941
16088
  samplingSeconds: number().int().min(1).max(300).default(10)
15942
16089
  });
15943
16090
  /**
@@ -16569,7 +16716,50 @@ var NcRuleInputSchema = object({
16569
16716
  * tests every zone the track visited and a `crossing` condition can no longer
16570
16717
  * be satisfied, because a closed track carries no crossing.
16571
16718
  */
16572
- waitForEnhancement: boolean().optional()
16719
+ waitForEnhancement: boolean().optional(),
16720
+ /**
16721
+ * GROUP a burst of subjects into ONE notification that grows.
16722
+ *
16723
+ * Seconds of quiet after the last matching subject before the burst is
16724
+ * considered over. While it is open, the first subject enqueues immediately —
16725
+ * **exactly as today, with no added latency** — and every real growth (a new
16726
+ * subject, or a name confirmed on one already in it) REPLACES that
16727
+ * notification with an updated one naming everybody. The push carries the
16728
+ * group's own coalescing tag, so the phone replaces rather than stacks.
16729
+ *
16730
+ * `0` / absent = off, and off is today's behaviour byte for byte.
16731
+ *
16732
+ * ### Why an idle cutoff and not a window
16733
+ *
16734
+ * The measured seven-person arrival on device 590 spans 110 s with every
16735
+ * internal gap under 30 s. A 12 s fixed window cuts it into three groups; an
16736
+ * idle cutoff holds it as one and ends it when the arrival actually ends.
16737
+ * 30 is Frigate's shipped value for the same decision.
16738
+ *
16739
+ * ### What it replaces
16740
+ *
16741
+ * The blind cooldown, which collapses a burst by DISCARDING it. Measured on
16742
+ * device 615 / *Persona su Uscio* over six days: 116 qualifying tracks → 74
16743
+ * notifications, **44 (37.9%) suppressed outright**, 23 of them overlapping a
16744
+ * track that did fire and 7 carrying a confirmed identity nobody heard about.
16745
+ * A group collapses the same volume by MERGING, so the cooldown becomes a
16746
+ * budget over GROUPS — which is what it always meant — and a growth is never
16747
+ * throttled by the window its own first member spent.
16748
+ *
16749
+ * ### Interaction with {@link waitForEnhancement}
16750
+ *
16751
+ * They compose, and the order matters. `waitForEnhancement` defers the rule to
16752
+ * TRACK CLOSE, so with both set the group is opened by the first member to
16753
+ * CLOSE — already carrying its name — and grows as later members close. That
16754
+ * is later, and complete. With grouping alone the group opens on the first
16755
+ * object event and picks up names as they are confirmed, through the growth
16756
+ * path. Neither combination fires twice for one subject.
16757
+ *
16758
+ * `.optional()` and deliberately NOT `.default()`: a Zod default does not run
16759
+ * on the addon cap path, so absent must keep meaning what it meant before this
16760
+ * field existed.
16761
+ */
16762
+ groupIdleSec: number().int().min(0).max(600).optional()
16573
16763
  });
16574
16764
  /**
16575
16765
  * Partial patch for `updateRule` — any subset of the input fields, plus the
@@ -17495,7 +17685,7 @@ var TrackEnvelopeSchema = object({
17495
17685
  * `snapshots[]` references — megabytes across a page of tracks. `slim`
17496
17686
  * keeps every scalar the list surfaces actually render (ids, class(es),
17497
17687
  * label / audioLabels / importance enrichment, firstSeen/lastSeen, state,
17498
- * zonesVisited, bestEventId, envelope, hasFace) and returns `positions` /
17688
+ * zonesVisited, bestEventId, envelope, hasFace, hasRider) and returns `positions` /
17499
17689
  * `snapshots` as EMPTY arrays — detail views re-fetch the full row via
17500
17690
  * `getTrack`. Mirrors the event-store `projection` convention
17501
17691
  * (`getObjectEvents` et al.).
@@ -17782,6 +17972,28 @@ var TrackSchema = object({
17782
17972
  * `=== true` and render nothing otherwise, never infer "no face".
17783
17973
  */
17784
17974
  hasFace: boolean().optional(),
17975
+ /**
17976
+ * This subject CONTAINS a folded rider — a person the rider-pairing step
17977
+ * ([D34](../decisions/adr-0034.md)) removed from the frame BEFORE the tracker,
17978
+ * so the passage is tracked once and as a VEHICLE.
17979
+ *
17980
+ * It exists because the fold's record was dishonest. D34 and the code both
17981
+ * said "the person is not lost — it is reported so both entities stay on the
17982
+ * record"; in fact the pair went into a per-processor RAM field behind an
17983
+ * accessor nobody called, and every durable surface said `vehicle`, full
17984
+ * stop. This is the composition note that makes the row true.
17985
+ *
17986
+ * A COMPOSITION, never a class and never a label. "This vehicle contains a
17987
+ * person" is not an answer to "what is this" — both label tiers would refuse
17988
+ * a macro token anyway (D89), and correctly. Nothing here changes what the
17989
+ * subject IS: a cyclist stays one vehicle track, occupancy still counts one,
17990
+ * and a `person` rule still does not fire for someone cycling past.
17991
+ *
17992
+ * **Absent ≠ false**, exactly like {@link hasFace}: every row written before
17993
+ * the column, and every hub that predates the field, omits it. Test
17994
+ * `=== true` and render nothing otherwise — never infer "no rider".
17995
+ */
17996
+ hasRider: boolean().optional(),
17785
17997
  ...TrackFlagFields,
17786
17998
  ...TrackRetrainFields
17787
17999
  });
@@ -26369,14 +26581,50 @@ var recordingExportCapability = {
26369
26581
  * thing except the comparator: `similarity` (CLIP cosine at the same ROI coords
26370
26582
  * vs condition-tagged references) and `llm` (vision-LLM judgment over the crop).
26371
26583
  *
26372
- * D14 device-config archetype (`deviceConfig.ui.kind:'widget'`) the framework
26373
- * derives the device-detail contribution; the provider carries NO hand-written
26374
- * settings-contribution methods. `status.kind:'push'` the engine pushes on
26375
- * every hysteresis flip / availability change; consumers never poll.
26376
- */
26377
- /** Extensible condition tag. Seeded 'day' | 'night'; open by design so more can
26378
- * be added without a wire break (matching falls back to any-condition refs). */
26584
+ * **No `deviceConfig`, deliberately.** This shipped as the D14 widget archetype,
26585
+ * which put a "Scenes" tab on one camera's detail page. That is the wrong shape
26586
+ * for the thing: a scene is a standing question about the property ("is the bin
26587
+ * still out"), and the operator's question is "which of my scenes have tripped",
26588
+ * across every camera at once — not "what does camera 617 think". Buried one
26589
+ * camera deep it also could not be found. The surface is now a top-level admin
26590
+ * page (`/scenes`, `pages/Scenes.tsx`) that lists every scene on every camera and
26591
+ * picks the camera inside the create flow, the same shape Events and Faces have.
26592
+ *
26593
+ * The consequence to keep in mind: `host/scene-monitor-editor` is gone from
26594
+ * `HOST_WIDGETS` too. `scripts/check-host-widget-resolves.ts` asserts BOTH
26595
+ * directions, so a registration nobody declares fails exactly as loudly as a
26596
+ * declaration nobody registers. The editor is imported directly by the page.
26597
+ *
26598
+ * `status.kind:'push'` — the engine pushes on every hysteresis flip /
26599
+ * availability change; consumers never poll.
26600
+ */
26601
+ /** Extensible condition tag. Seeded 'day' | 'ir' (the two variants the operator
26602
+ * captures) plus 'night' | 'dawn' | 'dusk' from the resolver's sun-times band.
26603
+ * Open by design so more can be added without a wire break.
26604
+ *
26605
+ * Matching does NOT fall back across conditions: cross-condition cosines are
26606
+ * not comparable, so "I have never seen this scene in this light" is reported
26607
+ * as `unknown`, never guessed. A day reference scored against an IR frame
26608
+ * collapses the cosine and would latch a false alarm every single night. */
26379
26609
  var SceneConditionSchema = string();
26610
+ /** `matched` = the baseline is what we see; `diverged` = it demonstrably is not;
26611
+ * `unknown` = we cannot judge (no reference for this condition, encoder model
26612
+ * changed, view shifted, no snapshot). `unknown` is a real value, not a null,
26613
+ * and never counts toward hysteresis in either direction. */
26614
+ var SceneVerdictSchema = _enum([
26615
+ "matched",
26616
+ "diverged",
26617
+ "unknown"
26618
+ ]);
26619
+ /** Why a scene cannot judge. Named, because this feature's failure mode is
26620
+ * silence that reads as "nothing has happened". */
26621
+ var SceneUnavailableSchema = _enum([
26622
+ "no-reference-for-condition",
26623
+ "view-shifted",
26624
+ "no-vision-profile",
26625
+ "encoder-model-changed",
26626
+ "no-snapshot"
26627
+ ]);
26380
26628
  /** One captured reference — condition-tagged, model-version-gated. `embedding`
26381
26629
  * is `number[]` (Float32Array does NOT survive MsgPack/UDS). */
26382
26630
  var SceneReferenceSchema = object({
@@ -26384,7 +26632,14 @@ var SceneReferenceSchema = object({
26384
26632
  modelId: string(),
26385
26633
  condition: SceneConditionSchema,
26386
26634
  capturedAt: number(),
26387
- thumbnailMediaId: string().optional()
26635
+ thumbnailMediaId: string().optional(),
26636
+ /** Whole-frame (downscaled) embedding captured alongside the ROI crop. The
26637
+ * anti-view-shift anchor: a bumped camera, a PTZ preset or a re-aim makes the
26638
+ * normalized rect frame a different piece of world, and the scene would
26639
+ * diverge forever with a perfectly plausible cosine. Checked LAZILY, only
26640
+ * when hysteresis is about to flip — one extra encode per candidate
26641
+ * transition, not per poll. */
26642
+ anchorEmbedding: array(number()).optional()
26388
26643
  });
26389
26644
  var SceneMonitorStateSchema = object({
26390
26645
  id: string(),
@@ -26406,6 +26661,25 @@ var SceneCheckSchema = discriminatedUnion("mode", [object({
26406
26661
  profileId: string().optional(),
26407
26662
  hysteresisCount: number().int().positive()
26408
26663
  })]);
26664
+ var SCENE_DEFAULT_ANCHOR_THRESHOLD = .85;
26665
+ /**
26666
+ * Vision-model adjudication of a candidate flip. Field names deliberately
26667
+ * mirror `NcConfirmSchema` so an operator meets one vocabulary, not two.
26668
+ *
26669
+ * `onTimeout` defaults to **'hold'**, the OPPOSITE of `NcConfirmGate`'s
26670
+ * fail-open: a notification suppressed is the worse error there, but a vision
26671
+ * model that timed out has not told us the bin is gone, and a latch is a
26672
+ * stateful claim that costs the operator a trip to reset.
26673
+ */
26674
+ var SceneConfirmSchema = object({
26675
+ enabled: boolean().default(false),
26676
+ prompt: string().min(1).max(1e3),
26677
+ profileId: string().optional(),
26678
+ timeoutMs: number().int().min(1e3).max(2e4).default(8e3),
26679
+ maxImagePx: number().int().min(64).max(2048).default(448),
26680
+ /** What a timeout / unavailable model means for the PENDING flip. */
26681
+ onTimeout: _enum(["flip", "hold"]).default("hold")
26682
+ });
26409
26683
  var SceneMonitorSchema = object({
26410
26684
  id: string(),
26411
26685
  label: string(),
@@ -26424,7 +26698,41 @@ var SceneMonitorSchema = object({
26424
26698
  lastConfidence: number().nullable(),
26425
26699
  currentCondition: SceneConditionSchema.nullable(),
26426
26700
  availability: _enum(["ok", "unavailable"]),
26427
- unavailableReason: string().nullable()
26701
+ unavailableReason: string().nullable(),
26702
+ /** Which state is "the initial screen". `null` until the first capture. */
26703
+ baselineStateId: string().nullable(),
26704
+ /** Which boolean drives notification rules and any export. */
26705
+ emit: _enum(["latched", "live"]).default("latched"),
26706
+ /** Live: does the region match the baseline RIGHT NOW. */
26707
+ verdict: SceneVerdictSchema,
26708
+ /** Has it been `diverged` at least once since `armedAt` — the operator's boolean. */
26709
+ latched: boolean(),
26710
+ /** Last reset (or creation). */
26711
+ armedAt: number(),
26712
+ divergedAt: number().nullable(),
26713
+ restoredAt: number().nullable(),
26714
+ /** A check is only COUNTED when the device has been quiet this long. Motion
26715
+ * during the window DISCARDS the observation — a car pulling up in front of
26716
+ * the bin must not be able to spend hysteresis credit. */
26717
+ quietSeconds: number().int().min(0).max(3600).default(60),
26718
+ /** An observation only advances the pending count when it is at least this
26719
+ * far from the previously counted one, so N agreeing checks span real time
26720
+ * rather than N adjacent polls inside one occlusion. */
26721
+ minObservationSpacingSec: number().int().min(0).max(3600).default(120),
26722
+ /** Vision-model adjudication of a candidate flip. Similarity primary only. */
26723
+ confirm: SceneConfirmSchema.optional(),
26724
+ /** Whole-frame anchor cosine below which a flip is REFUSED as `view-shifted`. */
26725
+ anchorThreshold: number().min(0).max(1).default(SCENE_DEFAULT_ANCHOR_THRESHOLD),
26726
+ /** Clear the latch on its own when the scene matches again? Default false —
26727
+ * `restoredAt` and the `scene-restored` edge are recorded regardless, so an
26728
+ * automation can react to the bin coming back without the operator's own
26729
+ * alarm silently clearing itself. */
26730
+ autoRestore: boolean().default(false),
26731
+ /** Named cause when `verdict === 'unknown'`. */
26732
+ unavailable: SceneUnavailableSchema.nullable(),
26733
+ /** Conditions that have at least one comparable reference — the coverage line
26734
+ * ("day ✓ · ir ✓ · dusk ✗") that turns a silent fallback into a visible fact. */
26735
+ coveredConditions: array(SceneConditionSchema)
26428
26736
  });
26429
26737
  var SceneMonitorStatusSchema = object({
26430
26738
  monitors: array(SceneMonitorSchema),
@@ -26457,7 +26765,14 @@ DeviceType.Camera, method(object({ deviceId: number() }), SceneMonitorStatusSche
26457
26765
  "both"
26458
26766
  ]).optional(),
26459
26767
  checkIntervalSec: number().optional(),
26460
- check: SceneCheckSchema.optional()
26768
+ check: SceneCheckSchema.optional(),
26769
+ emit: _enum(["latched", "live"]).optional(),
26770
+ quietSeconds: number().int().min(0).max(3600).optional(),
26771
+ minObservationSpacingSec: number().int().min(0).max(3600).optional(),
26772
+ anchorThreshold: number().min(0).max(1).optional(),
26773
+ autoRestore: boolean().optional(),
26774
+ /** `null` clears the vision-model adjudicator. */
26775
+ confirm: SceneConfirmSchema.nullable().optional()
26461
26776
  })
26462
26777
  }), _void(), {
26463
26778
  kind: "mutation",
@@ -26494,6 +26809,14 @@ DeviceType.Camera, method(object({ deviceId: number() }), SceneMonitorStatusSche
26494
26809
  }), _void(), {
26495
26810
  kind: "mutation",
26496
26811
  auth: "admin"
26812
+ }), method(object({
26813
+ deviceId: number(),
26814
+ monitorId: string(),
26815
+ /** Defaults to TRUE at the provider seam — see `SCENE_RESET_RECAPTURES`. */
26816
+ recapture: boolean().optional()
26817
+ }), _void(), {
26818
+ kind: "mutation",
26819
+ auth: "admin"
26497
26820
  });
26498
26821
  /**
26499
26822
  * Per-stage gating mode applied to the zones a rule references.
@@ -26802,12 +27125,64 @@ var NetworkAddressSchema = object({
26802
27125
  family: string(),
26803
27126
  internal: boolean()
26804
27127
  });
27128
+ /**
27129
+ * Provenance of the site coordinates, and the whole reason this is not just two
27130
+ * numbers.
27131
+ *
27132
+ * - `operator-set` — a human typed it, or accepted a detection. Authoritative;
27133
+ * nothing overwrites it.
27134
+ * - `derived-from-ip` — the hub geolocated its own public IP once, because a
27135
+ * default that is right to a few kilometres beats the coarse UTC clock split
27136
+ * the sun-times consumers otherwise fall back to.
27137
+ *
27138
+ * The UI shows which one it is. An operator who cannot tell a guess from their
27139
+ * own input will eventually trust the guess.
27140
+ */
27141
+ var SiteLocationSourceSchema = _enum(["operator-set", "derived-from-ip"]);
27142
+ /**
27143
+ * The read shape: the location plus the honest state of the one-shot derivation.
27144
+ *
27145
+ * `derivationAttemptedAt` is what makes the "one call, ever" contract
27146
+ * inspectable. When it is set and `location` is null, the geo-IP lookup ran and
27147
+ * failed; the hub will NOT try again on its own — the fallback is declared
27148
+ * (consumers degrade to their own last resort) and the operator either types the
27149
+ * coordinates or presses detect.
27150
+ */
27151
+ var SiteLocationStatusSchema = object({
27152
+ location: object({
27153
+ /** WGS84 decimal degrees. */
27154
+ latitude: number().min(-90).max(90),
27155
+ longitude: number().min(-180).max(180),
27156
+ source: SiteLocationSourceSchema,
27157
+ /** Epoch ms the value was last written. */
27158
+ updatedAt: number(),
27159
+ /**
27160
+ * Human-readable place the geo-IP service reported ("Napoli, IT"). Display
27161
+ * only — never parsed, never matched on. Absent for an operator-typed value.
27162
+ */
27163
+ label: string().optional()
27164
+ }).nullable(),
27165
+ derivationAttemptedAt: number().nullable(),
27166
+ /** Why the last derivation failed, for the UI to show instead of a shrug. */
27167
+ derivationError: string().nullable()
27168
+ });
27169
+ /** `null` clears the location and re-arms nothing — the derivation stays spent. */
27170
+ var SetSiteLocationInputSchema = object({
27171
+ latitude: number().min(-90).max(90),
27172
+ longitude: number().min(-180).max(180)
27173
+ }).nullable();
26805
27174
  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(), {
26806
27175
  kind: "mutation",
26807
27176
  auth: "admin"
26808
27177
  }), method(_void(), _void(), {
26809
27178
  kind: "mutation",
26810
27179
  auth: "admin"
27180
+ }), method(_void(), SiteLocationStatusSchema), method(SetSiteLocationInputSchema, SiteLocationStatusSchema, {
27181
+ kind: "mutation",
27182
+ auth: "admin"
27183
+ }), method(_void(), SiteLocationStatusSchema, {
27184
+ kind: "mutation",
27185
+ auth: "admin"
26811
27186
  });
26812
27187
  object({
26813
27188
  /** True when the device's tamper switch / case-open contact is
@@ -29538,6 +29913,12 @@ Object.freeze({
29538
29913
  addonId: null,
29539
29914
  access: "create"
29540
29915
  },
29916
+ "llm.cancel": {
29917
+ capName: "llm",
29918
+ capScope: "system",
29919
+ addonId: null,
29920
+ access: "create"
29921
+ },
29541
29922
  "llm.deleteModel": {
29542
29923
  capName: "llm",
29543
29924
  capScope: "system",
@@ -31788,6 +32169,12 @@ Object.freeze({
31788
32169
  addonId: null,
31789
32170
  access: "create"
31790
32171
  },
32172
+ "sceneMonitor.resetScene": {
32173
+ capName: "scene-monitor",
32174
+ capScope: "device",
32175
+ addonId: null,
32176
+ access: "delete"
32177
+ },
31791
32178
  "sceneMonitor.updateScene": {
31792
32179
  capName: "scene-monitor",
31793
32180
  capScope: "device",
@@ -32466,6 +32853,12 @@ Object.freeze({
32466
32853
  addonId: null,
32467
32854
  access: "create"
32468
32855
  },
32856
+ "system.detectSiteLocation": {
32857
+ capName: "system",
32858
+ capScope: "system",
32859
+ addonId: null,
32860
+ access: "create"
32861
+ },
32469
32862
  "system.featureFlags": {
32470
32863
  capName: "system",
32471
32864
  capScope: "system",
@@ -32484,6 +32877,12 @@ Object.freeze({
32484
32877
  addonId: null,
32485
32878
  access: "view"
32486
32879
  },
32880
+ "system.getSiteLocation": {
32881
+ capName: "system",
32882
+ capScope: "system",
32883
+ addonId: null,
32884
+ access: "view"
32885
+ },
32487
32886
  "system.health": {
32488
32887
  capName: "system",
32489
32888
  capScope: "system",
@@ -32508,6 +32907,12 @@ Object.freeze({
32508
32907
  addonId: null,
32509
32908
  access: "create"
32510
32909
  },
32910
+ "system.setSiteLocation": {
32911
+ capName: "system",
32912
+ capScope: "system",
32913
+ addonId: null,
32914
+ access: "create"
32915
+ },
32511
32916
  "terminalSession.adoptLegacyMonitor": {
32512
32917
  capName: "terminal-session",
32513
32918
  capScope: "system",
@@ -34470,6 +34875,11 @@ Object.freeze({
34470
34875
  form: "single",
34471
34876
  optional: false
34472
34877
  }],
34878
+ "sceneMonitor.resetScene": [{
34879
+ name: "deviceId",
34880
+ form: "single",
34881
+ optional: false
34882
+ }],
34473
34883
  "sceneMonitor.updateScene": [{
34474
34884
  name: "deviceId",
34475
34885
  form: "single",