@camstack/addon-provider-unraid 0.2.13 → 0.2.15

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 +686 -42
  2. package/dist/addon.mjs +686 -42
  3. package/package.json +1 -1
package/dist/addon.js CHANGED
@@ -7219,8 +7219,31 @@ var AdoptionJobSchema = object({
7219
7219
  error: string().nullable()
7220
7220
  });
7221
7221
  /**
7222
- * Per-camera FUNCTION SWITCHES — the one coherent on/off surface over the
7223
- * pipeline functions an operator thinks in terms of.
7222
+ * Per-camera FUNCTION SWITCHES.
7223
+ *
7224
+ * ## The aggregate group is being withdrawn — the BADGE is not (D113)
7225
+ *
7226
+ * This file shipped as "the one coherent on/off surface over the pipeline
7227
+ * functions an operator thinks in terms of". The operator's verdict on
7228
+ * 2026-08-12 was that the coherent surface bought complexity and no clarity:
7229
+ * every function already had a settings page of its own, and a second place to
7230
+ * turn it off is a second place to look. Each switch is going back to its own
7231
+ * component's original options — detection to the detection-pipeline wrapper
7232
+ * binding, audio analysis to its own, recording to `RecordingConfig.enabled`
7233
+ * (which was always first-class; the switch was a veneer over
7234
+ * `recording.setDeviceConfig`), notifications to a notification-center
7235
+ * per-device setting, the two camera planes to their own components.
7236
+ *
7237
+ * What survives is {@link composeSwitchedOff}: `CameraStatus.switchedOff`, the
7238
+ * thing that lets a status surface say DISABLED instead of BROKEN, recomposed
7239
+ * straight from the authorities with no group in the middle. That rule was
7240
+ * never about a control panel.
7241
+ *
7242
+ * Everything else here — {@link CAMERA_SWITCH_CATALOG}, {@link CameraSwitch},
7243
+ * {@link deriveCameraSwitches}, the `pipelineOrchestrator.getCameraSwitches` /
7244
+ * `setCameraSwitch` pair — is a COMPATIBILITY surface for as long as deployed
7245
+ * viewers (v1.0.305) and the admin UI still call it. It is deleted when they
7246
+ * stop; nothing new may be built on it.
7224
7247
  *
7225
7248
  * ## This file adds no state
7226
7249
  *
@@ -7571,7 +7594,15 @@ var RecordingConfigSchema = object({
7571
7594
  * Each completed/failed run also lands one durable ops-log row on its owning
7572
7595
  * addon surface.
7573
7596
  */
7597
+ /**
7598
+ * `queued` exists because the recorder mover is SINGLE-FLIGHT and an operator
7599
+ * rebalance enqueues one job per (camera, profile). Refusing the second job —
7600
+ * what the engine did before — turned a fifteen-camera rebalance into fifteen
7601
+ * manual retries. Queued jobs run FIFO; a queued job that is cancelled never
7602
+ * runs at all.
7603
+ */
7574
7604
  var RelocateJobStateSchema = _enum([
7605
+ "queued",
7575
7606
  "running",
7576
7607
  "done",
7577
7608
  "failed",
@@ -7606,6 +7637,15 @@ var RelocateFootageInputSchema = object({
7606
7637
  /** Limits relocation to the logical profile class. Omit only for the
7607
7638
  * pre-orchestration compatibility path. */
7608
7639
  footageClass: RelocateFootageClassSchema.optional(),
7640
+ /** Scope the move to ONE camera. Absent = every camera on the source, which
7641
+ * is what a whole-disk drain means. The rebalance path always sets it: its
7642
+ * unit is a (camera, profile) pile, not a disk. */
7643
+ deviceId: number().int().optional(),
7644
+ /** Scope the move to specific segment profiles (`high` / `mid` / `low`).
7645
+ * Finer than `footageClass`, which cannot separate high from mid — and the
7646
+ * placement plan assigns those two independently, so a rebalance that could
7647
+ * only say "recordings" would move footage the plan never asked to move. */
7648
+ profiles: array(string()).optional(),
7609
7649
  /** Copy throttle in MB/s (default 40) — the drain is a background chore,
7610
7650
  * never allowed to starve live writers. */
7611
7651
  throttleMbps: number().min(1).max(1e3).optional()
@@ -7741,6 +7781,21 @@ var StorageLocationSchema = object({
7741
7781
  nodeId: string().optional(),
7742
7782
  isDefault: boolean().default(false),
7743
7783
  isSystem: boolean().default(false),
7784
+ /**
7785
+ * Operator opt-in: whether consumers that BALANCE across several locations
7786
+ * of a type may write here. Recordings reads it today; event media and
7787
+ * backups are the next consumers, which is why the flag lives on the
7788
+ * location rather than in any one addon's store — nothing has to be
7789
+ * extended to add the next consumer.
7790
+ *
7791
+ * OPTIONAL, and ABSENT MEANS ACTIVE. Every location persisted before the
7792
+ * flag existed reads back with no flag and keeps working exactly as before;
7793
+ * that is the whole compat story, and it is why no migration ships with it.
7794
+ * A newly CREATED sibling is stamped `false` by the orchestrator (creating a
7795
+ * disk must not silently start writing to it); the default of a type is
7796
+ * always stamped `true`.
7797
+ */
7798
+ enabled: boolean().optional(),
7744
7799
  /** COMPUTED at read time by the orchestrator (statfs of the backing volume
7745
7800
  * for node-local locations it can reach) — never persisted, absent when the
7746
7801
  * volume is remote/unreachable. The single capacity truth every UI reads. */
@@ -12293,7 +12348,8 @@ method(object({
12293
12348
  }), EmbeddingResultSchema), method(object({ text: string() }), EmbeddingResultSchema), method(_void(), EmbeddingInfoSchema);
12294
12349
  /**
12295
12350
  * filesystem-browse — per-node capability for browsing the node's local
12296
- * filesystem, sandboxed to operator-configured allowed roots. Used by the
12351
+ * filesystem. Reads are unconfined (whole filesystem, from `/` down); WRITES
12352
+ * are sandboxed to operator-configured allowed roots (D115). Used by the
12297
12353
  * admin "Add filesystem location" flow to pick a node + path. `mode:'per-node'`
12298
12354
  * (one provider per node); the hub calls it with `{nodeId}` so the codegen
12299
12355
  * routes to that exact node (default `nodeIdMode:'routing'`).
@@ -14134,6 +14190,13 @@ var MaskGridDimsSchema = object({
14134
14190
  * `package-event` are pure trigger kinds (no urgency dimension). Extending
14135
14191
  * this one field keeps the schema additive — a rule still declares exactly
14136
14192
  * one trigger.
14193
+ *
14194
+ * AUDIO rules add no member here, for the reason occupancy added none: the
14195
+ * enum is mirrored by hand in the viewer (`scripts/check-viewer-condition-
14196
+ * mirror.ts` fails the build on a member the app cannot render) and every
14197
+ * member costs a release train. A sustained-sound rule is therefore an
14198
+ * `immediate` rule carrying {@link NcConditions.audio} — the condition is the
14199
+ * trigger discriminator, exactly as `occupancy` is on `device-event`.
14137
14200
  */
14138
14201
  var NcDeliverySchema = _enum([
14139
14202
  "immediate",
@@ -14148,15 +14211,32 @@ var NcDeliverySchema = _enum([
14148
14211
  * depend on a provider's raw event name or payload shape.
14149
14212
  */
14150
14213
  var NcSystemEventKindSchema = _enum([
14151
- "camera-online",
14152
- "camera-offline",
14214
+ "device-online",
14215
+ "device-offline",
14216
+ "device-disabled",
14217
+ "device-enabled",
14153
14218
  "stream-online",
14154
14219
  "stream-offline",
14155
14220
  "node-online",
14156
14221
  "node-offline",
14157
14222
  "addon-update-available",
14158
- "server-update-available"
14223
+ "server-update-available",
14224
+ "alarm-triggered",
14225
+ "alarm-armed",
14226
+ "alarm-disarmed",
14227
+ "camera-online",
14228
+ "camera-offline",
14229
+ "camera-disabled",
14230
+ "camera-enabled"
14231
+ ]);
14232
+ /** The legacy tail of {@link NcSystemEventKindSchema} — see its docblock. */
14233
+ var NC_LEGACY_SYSTEM_EVENT_KINDS = new Set([
14234
+ "camera-online",
14235
+ "camera-offline",
14236
+ "camera-disabled",
14237
+ "camera-enabled"
14159
14238
  ]);
14239
+ NcSystemEventKindSchema.options.filter((kind) => !NC_LEGACY_SYSTEM_EVENT_KINDS.has(kind));
14160
14240
  /**
14161
14241
  * One coherent system-event condition. `kinds` is the required opt-in safety
14162
14242
  * gate; the remaining lists are optional narrowing filters relevant to the
@@ -14165,6 +14245,18 @@ var NcSystemEventKindSchema = _enum([
14165
14245
  var NcSystemEventConditionSchema = object({
14166
14246
  kinds: array(NcSystemEventKindSchema).min(1),
14167
14247
  deviceIds: array(number().int()).min(1).optional(),
14248
+ /**
14249
+ * Narrow a `device-*` kind to these device TYPES (`DeviceType` values —
14250
+ * `camera`, `switch`, `sensor`, `container`, …). Absent = every type, which
14251
+ * is what a liveness rule means when nobody said otherwise.
14252
+ *
14253
+ * This is where "only my cameras" is expressed, and it lives on the rule for
14254
+ * one reason: the intake cannot know which devices this household cares
14255
+ * about, and a producer-side filter is one no operator can change. Fails
14256
+ * CLOSED — a subject whose device type is unknown (an id the device mirror
14257
+ * does not carry) matches no `deviceTypes` list.
14258
+ */
14259
+ deviceTypes: array(string().min(1)).min(1).optional(),
14168
14260
  nodeIds: array(string().min(1)).min(1).optional(),
14169
14261
  packageNames: array(string().min(1)).min(1).optional()
14170
14262
  });
@@ -14215,6 +14307,47 @@ var NcOccupancyConditionSchema = object({
14215
14307
  sustainSeconds: number().int().min(0).max(3600).default(15)
14216
14308
  });
14217
14309
  /**
14310
+ * Audio condition (IMMEDIATE trigger) — a rule on SOUND, not on a picture.
14311
+ *
14312
+ * Operator-approved vocabulary (2026-08-12, option A — the same one the
14313
+ * reference notifier uses, so an operator moving between them re-uses what
14314
+ * they already know): a rule matches when, over a sampling window of
14315
+ * `samplingSeconds`, at least `hitPercent`% of the audio samples in that
14316
+ * window are HITS. A sample is a hit when it satisfies BOTH present filters:
14317
+ *
14318
+ * - `dbThreshold` — its level is at or above this many dBFS (see
14319
+ * {@link NC_AUDIO_DBFS_FLOOR}: negative-going, `0` = full scale);
14320
+ * - `labels` — the classifier put at least one of these labels on it.
14321
+ *
14322
+ * Both are OPTIONAL and independent, which is the point of the shape: a
14323
+ * loudness rule ("something loud at 3am") needs no model to be right, and a
14324
+ * label rule ("a dog barked") needs no threshold. **Fail-closed when NEITHER
14325
+ * is given** — a window in which every sample is trivially a hit would fire on
14326
+ * silence, so the engine refuses such a condition rather than notifying on
14327
+ * nothing (the schema cannot express "at least one of" without becoming a
14328
+ * ZodEffects the cap path would have to special-case).
14329
+ *
14330
+ * `hitPercent` is over the samples the window actually HOLDS, and the window
14331
+ * must be FULL before it can match — a window that has been open for two
14332
+ * seconds of its ten is 100% of nothing, and firing on it would make
14333
+ * `samplingSeconds` decorative.
14334
+ *
14335
+ * Labels are the audio macro classes (`AUDIO_MACRO_LABELS` / the NC taxonomy's
14336
+ * `audio-*` ids). Both spellings are accepted — the matcher normalizes the
14337
+ * `audio-` prefix away on both sides, so a picker that offers taxonomy ids and
14338
+ * an operator who typed `dog` mean the same thing.
14339
+ */
14340
+ var NcAudioConditionSchema = object({
14341
+ /** Audio macro labels; absent = any sound (level-only rule). */
14342
+ labels: array(string().min(1)).min(1).optional(),
14343
+ /** Level floor in dBFS (negative-going, `0` = full scale); absent = any level. */
14344
+ dbThreshold: number().min(-96).max(0).optional(),
14345
+ /** Percentage of the window's samples that must be hits (1–100). */
14346
+ hitPercent: number().int().min(1).max(100).default(60),
14347
+ /** Length of the sampling window in seconds. */
14348
+ samplingSeconds: number().int().min(1).max(300).default(10)
14349
+ });
14350
+ /**
14218
14351
  * Which zone-crossing DIRECTION a rule accepts (`ObjectEvent.zoneCrossing`).
14219
14352
  *
14220
14353
  * The values are not symmetric, and deliberately so — the absent value has to
@@ -14487,7 +14620,33 @@ var NcConditionsSchema = object({
14487
14620
  * threshold and holds for `sustainSeconds`. Fail-closed on missing
14488
14621
  * substrate (no snapshot / missing zone). See {@link NcOccupancyCondition}.
14489
14622
  */
14490
- occupancy: NcOccupancyConditionSchema.optional()
14623
+ occupancy: NcOccupancyConditionSchema.optional(),
14624
+ /**
14625
+ * IMMEDIATE only. Sustained-sound matcher — `hitPercent` of the samples in a
14626
+ * `samplingSeconds` window clear the optional `dbThreshold` and carry one of
14627
+ * the optional `labels`. Fail-closed on missing substrate (no audio samples,
14628
+ * a window that is not full yet, neither filter given). See
14629
+ * {@link NcAudioCondition}.
14630
+ *
14631
+ * Presence of this key is what makes a rule an AUDIO rule: the engine fires
14632
+ * it ONLY on a confirmed audio window, and a rule carrying it never fires on
14633
+ * a detection, a track or a device event (the same fail-closed pairing
14634
+ * `occupancy` has with the `device-event` trigger). That is how audio labels
14635
+ * leave `classes`: an audio rule names its sounds HERE, and the legacy path
14636
+ * (an `immediate` rule naming an `audio-*` class, one notification per
14637
+ * classified sample) stays exactly as it was for rules that already use it.
14638
+ *
14639
+ * NOT in {@link NC_CONDITION_CATALOG} yet, and that is the sequencing rule
14640
+ * rather than an oversight: the viewer mirrors the descriptor enums BY HAND
14641
+ * (`camstack/src/data/notification-center.ts`, guarded by
14642
+ * `scripts/check-viewer-condition-mirror.ts`) and its rule editor STRIPS the
14643
+ * condition fields it does not know when a rule is saved from the phone.
14644
+ * Publishing an editor for a condition the app cannot round-trip is how an
14645
+ * operator loses a rule's conditions by opening it — so the descriptor, the
14646
+ * admin widget and the viewer mirror land together (P2 + P3), and only then
14647
+ * does an audio rule become authorable.
14648
+ */
14649
+ audio: NcAudioConditionSchema.optional()
14491
14650
  });
14492
14651
  /** One delivery target: a `notification-output` Target ref + passthrough params. */
14493
14652
  var NcRuleTargetSchema = object({
@@ -14601,6 +14760,73 @@ var NcThrottleSchema = object({
14601
14760
  */
14602
14761
  granularity: NcThrottleGranularitySchema.optional()
14603
14762
  });
14763
+ /**
14764
+ * How long the confirm gate may hold ONE notification, and how big the picture
14765
+ * it judges may be.
14766
+ *
14767
+ * The clamp is the product decision, not a coincidence of the model: p50 was
14768
+ * 4.9 s warm and 15.3 s cold against qwen3-vl-8b, and a notification that
14769
+ * arrives after the visitor has gone is not a notification. 448 px was enough
14770
+ * to score 16/16 on the operator's parking scenario — bigger costs latency and
14771
+ * tokens for pixels the model pools away.
14772
+ */
14773
+ var NC_CONFIRM_MIN_TIMEOUT_MS = 1e3;
14774
+ var NC_CONFIRM_MAX_TIMEOUT_MS = 2e4;
14775
+ var NC_CONFIRM_DEFAULT_TIMEOUT_MS = 8e3;
14776
+ /** Comparison the model's COUNT must satisfy for the notification to fire. */
14777
+ var NcConfirmExpectSchema = object({
14778
+ op: _enum([
14779
+ ">=",
14780
+ ">",
14781
+ "<=",
14782
+ "<",
14783
+ "=="
14784
+ ]),
14785
+ count: number().int().min(0).max(1e3)
14786
+ });
14787
+ /**
14788
+ * AI CONFIRM — a vision model looks at the picture this notification is about
14789
+ * to ship and says whether it agrees with the rule.
14790
+ *
14791
+ * It runs AFTER the attachments resolve, deliberately: the crop JUDGED is the
14792
+ * crop SHIPPED (D52). A verdict about a different pixel rectangle than the one
14793
+ * on the operator's phone is not a verdict about this notification.
14794
+ *
14795
+ * FAIL-OPEN is the only safe default. A gate that cannot reach its model, or
14796
+ * whose model is cold, must not silence a camera — so `onTimeout: 'fire'` is
14797
+ * the default and every fail-open is COUNTED, because a gate that always fails
14798
+ * open looks in the log exactly like a gate that works.
14799
+ *
14800
+ * Every field is `.optional()` rather than relied on as a Zod default at the
14801
+ * runtime seam: a Zod default does NOT run on the addon→addon cap path (three
14802
+ * production failures in one day), so the gate reads absent as the constant
14803
+ * above rather than trusting a parse it may never have seen.
14804
+ */
14805
+ var NcConfirmSchema = object({
14806
+ /** Off unless asked for. An absent `confirm` and `enabled:false` are the
14807
+ * same thing, and both mean "deliver exactly as before". */
14808
+ enabled: boolean().default(false),
14809
+ /** Explicit vision profile; absent = the `purpose:'vision'` cluster default. */
14810
+ profileId: string().optional(),
14811
+ /**
14812
+ * The operator's question, in his own words. Absent = a question derived
14813
+ * from the rule (its class and its expectation).
14814
+ *
14815
+ * NEVER composed with text READ OUT OF THE FRAME. The model reads OSD
14816
+ * banners, signage and plates as instructions if you let them reach the
14817
+ * prompt — proven live — so the authoritative contract stays in the system
14818
+ * turn and only rule-authored words land here.
14819
+ */
14820
+ prompt: string().max(1e3).optional(),
14821
+ /** Fire only when the model's count satisfies this. Absent = the model's
14822
+ * own boolean verdict decides. */
14823
+ expect: NcConfirmExpectSchema.optional(),
14824
+ timeoutMs: number().int().min(NC_CONFIRM_MIN_TIMEOUT_MS).max(NC_CONFIRM_MAX_TIMEOUT_MS).default(NC_CONFIRM_DEFAULT_TIMEOUT_MS),
14825
+ /** What a timeout / unreachable model MEANS. `fire` (default) = fail-open. */
14826
+ onTimeout: _enum(["fire", "suppress"]).default("fire"),
14827
+ /** Longest edge the judged image is downscaled to before it is sent. */
14828
+ maxImagePx: number().int().min(64).max(2048).default(448)
14829
+ });
14604
14830
  /** Client-supplied rule fields (server stamps id/createdBy/createdAt/updatedAt). */
14605
14831
  var NcRuleInputSchema = object({
14606
14832
  name: string().min(1).max(200),
@@ -14661,7 +14887,13 @@ var NcRuleInputSchema = object({
14661
14887
  * `{ cap: 'alarm-panel', method: 'arm', args: { mode: 'away' } }`, the same
14662
14888
  * shape as every other actuation.
14663
14889
  */
14664
- actions: NcRuleActionsSchema.optional()
14890
+ actions: NcRuleActionsSchema.optional(),
14891
+ /**
14892
+ * AI CONFIRM — see {@link NcConfirmSchema}. `.optional()`, never defaulted:
14893
+ * a rule that predates the gate must keep delivering byte-for-byte as it
14894
+ * did, and absent is the only way to say that without a migration.
14895
+ */
14896
+ confirm: NcConfirmSchema.optional()
14665
14897
  });
14666
14898
  /**
14667
14899
  * Partial patch for `updateRule` — any subset of the input fields, plus the
@@ -14672,7 +14904,37 @@ var NcRuleInputSchema = object({
14672
14904
  * still flow through `nc.setRuleTargetEnabled` (owner-checked), never a raw
14673
14905
  * `updateRule` patch.
14674
14906
  */
14675
- var NcRulePatchSchema = NcRuleInputSchema.partial().extend({ disabledTargetIds: array(string()).optional() });
14907
+ var NcRulePatchSchema = NcRuleInputSchema.partial().extend({
14908
+ disabledTargetIds: array(string()).optional(),
14909
+ /**
14910
+ * `.partial()` DOES NOT REMOVE A FIELD'S `.default()`.
14911
+ *
14912
+ * It makes the key optional to SUPPLY; the parse still materialises the
14913
+ * default when the key is absent. And `NcRuleStore.update` merges with
14914
+ * `{ ...existing, ...patch }`, so a materialised key OVERWRITES the stored
14915
+ * one — which made every partial edit destructive:
14916
+ *
14917
+ * nc.updateRule({ throttle }) → conditions reset to `{}`
14918
+ * nc.setRuleTargetEnabled(...) → conditions reset to `{}`
14919
+ * setEnabled(ruleId, false) → conditions reset to `{}`
14920
+ *
14921
+ * A rule scoped to one camera and one zone silently became a rule that
14922
+ * matches EVERY event on EVERY camera, and lost its `media` policy
14923
+ * (zoneCrop / gif / clip / frame) and its `priority` at the same time. Seen
14924
+ * live on 2026-08-12: a rule scoped to device 617 fired on 590 and 615
14925
+ * within a minute of a two-field patch.
14926
+ *
14927
+ * So every defaulted field is re-declared here WITHOUT its default. The
14928
+ * inner defaults still apply when the caller DOES send the key — `{}` for
14929
+ * conditions remains a real instruction ("clear them") — and only the
14930
+ * absent key is now genuinely absent.
14931
+ */
14932
+ enabled: boolean().optional(),
14933
+ conditions: NcConditionsSchema.optional(),
14934
+ media: NcMediaPolicySchema.optional(),
14935
+ throttle: NcThrottleSchema.optional(),
14936
+ priority: number().int().min(1).max(5).optional()
14937
+ });
14676
14938
  /** A persisted rule. */
14677
14939
  var NcRuleSchema = NcRuleInputSchema.extend({
14678
14940
  id: string(),
@@ -14973,6 +15235,25 @@ var NcAlarmSettingsPatchSchema = NcAlarmSettingsSchema.partial();
14973
15235
  * Never authored, never stored — see `alarm-mode-coverage.ts` for why a stored
14974
15236
  * copy would lie the first time a rule is disabled.
14975
15237
  */
15238
+ /**
15239
+ * Why a device a mode NAMES is nonetheless not armed by it.
15240
+ *
15241
+ * Each value is an existing authority, never a new flag (D62): `muted` is the
15242
+ * per-camera notification switch the Notification Center already owns,
15243
+ * `detection-off` is the device's own detection binding being inactive, and
15244
+ * `offline` is the device manager's liveness. A fourth reason would mean a
15245
+ * fourth authority, and inventing one here is how a panel starts disagreeing
15246
+ * with the switches the operator actually used.
15247
+ */
15248
+ var NcAlarmSkipReasonSchema = _enum([
15249
+ "muted",
15250
+ "detection-off",
15251
+ "offline"
15252
+ ]);
15253
+ var NcAlarmSkippedDeviceSchema = object({
15254
+ deviceId: number().int(),
15255
+ reason: NcAlarmSkipReasonSchema
15256
+ });
14976
15257
  var NcAlarmModeCoverageSchema = object({
14977
15258
  mode: AlarmArmModeSchema,
14978
15259
  /** Enabled rules gated on `armed_<mode>`. Zero means the mode does nothing. */
@@ -14980,7 +15261,18 @@ var NcAlarmModeCoverageSchema = object({
14980
15261
  /** At least one covering rule has no device scope, so the mode covers all. */
14981
15262
  allDevices: boolean(),
14982
15263
  /** Ids named by the covering rules. A SUBSET when `allDevices` is true. */
14983
- deviceIds: array(number().int())
15264
+ deviceIds: array(number().int()),
15265
+ /**
15266
+ * Devices this mode NAMES but cannot actually arm, each with the switch that
15267
+ * excludes it.
15268
+ *
15269
+ * "Away armed — 12 cameras" is a promise, and a muted camera among those
15270
+ * twelve makes it false in exactly the way nobody notices until an incident.
15271
+ * Defaulted to `[]` so a coverage answer computed before this field existed
15272
+ * still parses as "nothing known to be skipped" rather than failing the whole
15273
+ * alarm tab.
15274
+ */
15275
+ skippedDevices: array(NcAlarmSkippedDeviceSchema).default([])
14984
15276
  });
14985
15277
  var NcAlarmConfigSchema = object({
14986
15278
  /**
@@ -17812,9 +18104,16 @@ var CameraStatusSchema = object({
17812
18104
  audio: CameraAudioStatusSchema.nullable(),
17813
18105
  recording: CameraRecordingStatusSchema.nullable(),
17814
18106
  /**
17815
- * Per-camera function switches an OPERATOR has turned off
18107
+ * Per-camera functions an OPERATOR has turned off
17816
18108
  * ([D61](../../../../docs/decisions/adr-0067.md)).
17817
18109
  *
18110
+ * Composed from the AUTHORITIES themselves — the wrapper bindings,
18111
+ * `RecordingConfig.enabled`, the notification mute, the broker's audio
18112
+ * policy, the camera's own microphone — via `composeSwitchedOff`, not from
18113
+ * the deprecated `getCameraSwitches` group ([D113](../../../../docs/decisions/adr-0113.md)).
18114
+ * The badge outlives the control panel: the panel was a convenience, this is
18115
+ * the difference between a camera being off and a camera being dead.
18116
+ *
17818
18117
  * This is the difference between DISABLED and BROKEN. A camera whose
17819
18118
  * `detection` block reports zero fps and whose `switchedOff` contains
17820
18119
  * `'object-detection'` was switched off by a person; the same camera with an
@@ -24573,7 +24872,19 @@ var RecordingManifestSchema = object({
24573
24872
  * profiles/subtrees/locations on this node). */
24574
24873
  var RecordingDeviceUsageSchema = object({
24575
24874
  deviceId: number(),
24576
- usedBytes: number()
24875
+ usedBytes: number(),
24876
+ /**
24877
+ * Start of this camera's OLDEST indexed segment, across every profile and
24878
+ * location — the "Oldest footage" column in Recordings → Storage, and the
24879
+ * only honest answer to "is retention actually holding?" per camera.
24880
+ *
24881
+ * `null` = the camera has no footage. OPTIONAL because a recorder that
24882
+ * predates this field omits it entirely, and a hub whose types carry the
24883
+ * field must keep validating that older provider's payload: the framework
24884
+ * (types) and the addon ship on different trains, and the addon is usually
24885
+ * the later of the two.
24886
+ */
24887
+ oldestMs: number().nullable().optional()
24577
24888
  });
24578
24889
  /** Recording storage usage + capacity for one storage location. */
24579
24890
  var RecordingLocationUsageSchema = object({
@@ -24601,6 +24912,57 @@ var RecordingStorageUsageSchema = object({
24601
24912
  locations: array(RecordingLocationUsageSchema)
24602
24913
  });
24603
24914
  /**
24915
+ * The OPERATOR-ARMED half of multi-location recordings (D116).
24916
+ *
24917
+ * The placement plan decides where NEW writes go and moves nothing. A rebalance
24918
+ * is the operator asking for the EXISTING archive to be brought into line with
24919
+ * that plan: one relocate job per (camera, profile) pile that sits on the wrong
24920
+ * location, run FIFO behind the single-flight mover.
24921
+ *
24922
+ * `plan…` and `start…` return the SAME shape deliberately — what the operator
24923
+ * confirms is exactly what gets enqueued, and `jobIds` is the only difference
24924
+ * (empty on the plan).
24925
+ */
24926
+ var RecordingRebalanceMoveSchema = object({
24927
+ deviceId: number(),
24928
+ profile: string(),
24929
+ fromLocationId: string(),
24930
+ toLocationId: string(),
24931
+ bytes: number(),
24932
+ files: number().int()
24933
+ });
24934
+ /** Why a pile that is out of place is staying there. Every refusal is
24935
+ * reported: a rebalance that silently drops a camera reads exactly like one
24936
+ * that had nothing to do. */
24937
+ var RecordingRebalanceSkipReasonSchema = _enum([
24938
+ "unassigned",
24939
+ "target-not-writable",
24940
+ "below-threshold",
24941
+ "no-headroom"
24942
+ ]);
24943
+ var RecordingRebalanceSkipSchema = object({
24944
+ deviceId: number(),
24945
+ profile: string(),
24946
+ fromLocationId: string(),
24947
+ /** The location the plan wants; null when the camera has no assignment. */
24948
+ toLocationId: string().nullable(),
24949
+ bytes: number(),
24950
+ reason: RecordingRebalanceSkipReasonSchema
24951
+ });
24952
+ var RecordingRebalancePlanSchema = object({
24953
+ moves: array(RecordingRebalanceMoveSchema),
24954
+ skipped: array(RecordingRebalanceSkipSchema),
24955
+ bytesToMove: number(),
24956
+ /** Relocate job ids enqueued. Always empty for the plan (dry-run) call. */
24957
+ jobIds: array(string())
24958
+ });
24959
+ var RecordingRebalanceInputSchema = object({
24960
+ /** Copy throttle in MB/s (default 40) — a rebalance is a background chore. */
24961
+ throttleMbps: number().min(1).max(1e3).optional(),
24962
+ /** Ignore piles smaller than this (default 1 GB). */
24963
+ minMoveGb: number().min(0).optional()
24964
+ });
24965
+ /**
24604
24966
  * Result of locating footage at a wall-clock instant for one device/profile.
24605
24967
  * `segment` carries the covering segment's window; `gap` reports the forward
24606
24968
  * nearest covered edge (`null` past the end of footage / when none exists)
@@ -24763,9 +25125,24 @@ method(object({
24763
25125
  }), method(object({ jobId: string() }), RelocateJobSchema.nullable(), { auth: "admin" }), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
24764
25126
  kind: "mutation",
24765
25127
  auth: "admin"
25128
+ }), method(RelocateFootageInputSchema, object({ jobId: string() }), {
25129
+ kind: "mutation",
25130
+ auth: "admin"
25131
+ }), method(object({}), array(RelocateJobSchema).readonly(), {
25132
+ kind: "query",
25133
+ auth: "admin"
25134
+ }), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
25135
+ kind: "mutation",
25136
+ auth: "admin"
25137
+ }), method(RecordingRebalanceInputSchema, RecordingRebalancePlanSchema, {
25138
+ kind: "query",
25139
+ auth: "admin"
25140
+ }), method(RecordingRebalanceInputSchema, RecordingRebalancePlanSchema, {
25141
+ kind: "mutation",
25142
+ auth: "admin"
24766
25143
  });
24767
25144
  /**
24768
- * `recordingExport` cap — render a footage time range into a single downloadable
25145
+ * `recording-export` cap — render a footage time range into a single downloadable
24769
25146
  * MP4 (regular / accelerated / decelerated / timelapse, ± audio), kept for a
24770
25147
  * bounded lifetime with a durable history, auto-expiry, and optional
24771
25148
  * delete-after-download.
@@ -24780,10 +25157,53 @@ method(object({
24780
25157
  */
24781
25158
  /** Playback-speed multiplier for the render (1 = realtime). */
24782
25159
  var ExportSpeedSchema = number().min(.25).max(32);
25160
+ /**
25161
+ * One dense interval, in WALL-CLOCK SECONDS FROM THE EXPORT'S OWN `fromMs`.
25162
+ *
25163
+ * **Wall clock, not ffmpeg's `t`** — and the recorder translates. A caller
25164
+ * derives these bounds from things that happened at a TIME (a track's
25165
+ * `firstSeen`), while `t` runs over the source playlist: the concatenation of
25166
+ * every segment present for the range, with each recording GAP removed. The
25167
+ * two agree only on a window that recorded without one interruption, and only
25168
+ * the render side knows the segments, so the translation lives there
25169
+ * (`export-dense-map.ts`, addon-pipeline).
25170
+ *
25171
+ * It was not always so. These seconds were fed to `between(t,…)` verbatim, and
25172
+ * on a 10 h window holding 29,393 s of footage every range landed late by the
25173
+ * gap accumulated before it — up to 6,607 s, well past EOF. Nothing matched,
25174
+ * the video was a uniform timelapse, and the log line reported the five ranges
25175
+ * that had been ASKED for (2026-08-13, export `57d14363`, camera 615).
25176
+ *
25177
+ * Relative and not absolute epoch, because an absolute epoch would make every
25178
+ * call site responsible for the same subtraction.
25179
+ */
25180
+ var ExportDenseRangeSchema = object({
25181
+ fromSec: number().nonnegative(),
25182
+ toSec: number().nonnegative()
25183
+ }).refine((r) => r.toSec > r.fromSec, { message: "dense range must have toSec > fromSec" });
25184
+ /**
25185
+ * Dense-interval overlay for a timelapse: sample at `dense.everyMs` INSIDE the
25186
+ * listed ranges and at the base `everyMs` everywhere else.
25187
+ *
25188
+ * `everyMs` must be strictly smaller than the base cadence — a dense rate that
25189
+ * is not denser renders a uniform timelapse the operator believes is two-rate.
25190
+ */
25191
+ var ExportDenseSchema = object({
25192
+ everyMs: number().int().positive(),
25193
+ ranges: array(ExportDenseRangeSchema).min(1).max(200)
25194
+ });
24783
25195
  /** Timelapse cadence — sample one source frame per `everyMs`, output at `outputFps`. */
24784
25196
  var ExportTimelapseSchema = object({
24785
25197
  everyMs: number().int().positive(),
24786
- outputFps: number().int().min(1).max(60).optional()
25198
+ outputFps: number().int().min(1).max(60).optional(),
25199
+ /** Optional second, FASTER rate over the intervals that matter. */
25200
+ dense: ExportDenseSchema.optional()
25201
+ }).superRefine((v, ctx) => {
25202
+ if (v.dense !== void 0 && v.dense.everyMs >= v.everyMs) ctx.addIssue({
25203
+ code: ZodIssueCode.custom,
25204
+ message: "dense.everyMs must be strictly smaller than the base everyMs",
25205
+ path: ["dense", "everyMs"]
25206
+ });
24787
25207
  });
24788
25208
  /**
24789
25209
  * Render options. `speed` and `timelapse` are mutually exclusive. `includeAudio`
@@ -24841,6 +25261,19 @@ var ExportDownloadSchema = object({
24841
25261
  url: string(),
24842
25262
  endpoints: array(string())
24843
25263
  });
25264
+ /**
25265
+ * A finished export's bytes, inline.
25266
+ *
25267
+ * `bytes` is the DECODED length — the number the caller bounds and logs
25268
+ * against, so nobody has to infer it from the base64 length.
25269
+ */
25270
+ var ExportBytesSchema = object({
25271
+ base64: string(),
25272
+ contentType: string(),
25273
+ /** Suggested filename, extension included. */
25274
+ name: string(),
25275
+ bytes: number().int().nonnegative()
25276
+ });
24844
25277
  method(object({
24845
25278
  deviceId: number(),
24846
25279
  profile: string(),
@@ -24865,6 +25298,9 @@ method(object({
24865
25298
  }), method(object({ exportId: string() }), ExportDownloadSchema, {
24866
25299
  kind: "query",
24867
25300
  auth: "protected"
25301
+ }), method(object({ exportId: string() }), ExportBytesSchema, {
25302
+ kind: "query",
25303
+ auth: "protected"
24868
25304
  });
24869
25305
  /**
24870
25306
  * scene-monitor — device-scoped reference-region state cap. An operator marks
@@ -31542,6 +31978,12 @@ Object.freeze({
31542
31978
  addonId: null,
31543
31979
  access: "create"
31544
31980
  },
31981
+ "recording.cancelRelocateJob": {
31982
+ capName: "recording",
31983
+ capScope: "system",
31984
+ addonId: null,
31985
+ access: "create"
31986
+ },
31545
31987
  "recording.cancelStorageMigrationMove": {
31546
31988
  capName: "recording",
31547
31989
  capScope: "system",
@@ -31596,6 +32038,12 @@ Object.freeze({
31596
32038
  addonId: null,
31597
32039
  access: "view"
31598
32040
  },
32041
+ "recording.listRelocateJobs": {
32042
+ capName: "recording",
32043
+ capScope: "system",
32044
+ addonId: null,
32045
+ access: "view"
32046
+ },
31599
32047
  "recording.locateSegment": {
31600
32048
  capName: "recording",
31601
32049
  capScope: "system",
@@ -31608,6 +32056,12 @@ Object.freeze({
31608
32056
  addonId: null,
31609
32057
  access: "create"
31610
32058
  },
32059
+ "recording.planStorageRebalance": {
32060
+ capName: "recording",
32061
+ capScope: "system",
32062
+ addonId: null,
32063
+ access: "view"
32064
+ },
31611
32065
  "recording.pruneFootage": {
31612
32066
  capName: "recording",
31613
32067
  capScope: "system",
@@ -31632,6 +32086,12 @@ Object.freeze({
31632
32086
  addonId: null,
31633
32087
  access: "create"
31634
32088
  },
32089
+ "recording.relocateFootage": {
32090
+ capName: "recording",
32091
+ capScope: "system",
32092
+ addonId: null,
32093
+ access: "create"
32094
+ },
31635
32095
  "recording.renderClip": {
31636
32096
  capName: "recording",
31637
32097
  capScope: "system",
@@ -31668,38 +32128,50 @@ Object.freeze({
31668
32128
  addonId: null,
31669
32129
  access: "create"
31670
32130
  },
32131
+ "recording.startStorageRebalance": {
32132
+ capName: "recording",
32133
+ capScope: "system",
32134
+ addonId: null,
32135
+ access: "create"
32136
+ },
31671
32137
  "recordingExport.cancelExport": {
31672
- capName: "recordingExport",
32138
+ capName: "recording-export",
31673
32139
  capScope: "system",
31674
32140
  addonId: null,
31675
32141
  access: "create"
31676
32142
  },
31677
32143
  "recordingExport.createExport": {
31678
- capName: "recordingExport",
32144
+ capName: "recording-export",
31679
32145
  capScope: "system",
31680
32146
  addonId: null,
31681
32147
  access: "create"
31682
32148
  },
31683
32149
  "recordingExport.deleteExport": {
31684
- capName: "recordingExport",
32150
+ capName: "recording-export",
31685
32151
  capScope: "system",
31686
32152
  addonId: null,
31687
32153
  access: "delete"
31688
32154
  },
31689
32155
  "recordingExport.getDownloadUrl": {
31690
- capName: "recordingExport",
32156
+ capName: "recording-export",
31691
32157
  capScope: "system",
31692
32158
  addonId: null,
31693
32159
  access: "view"
31694
32160
  },
31695
32161
  "recordingExport.getExport": {
31696
- capName: "recordingExport",
32162
+ capName: "recording-export",
31697
32163
  capScope: "system",
31698
32164
  addonId: null,
31699
32165
  access: "view"
31700
32166
  },
31701
32167
  "recordingExport.listExports": {
31702
- capName: "recordingExport",
32168
+ capName: "recording-export",
32169
+ capScope: "system",
32170
+ addonId: null,
32171
+ access: "view"
32172
+ },
32173
+ "recordingExport.readExportBytes": {
32174
+ capName: "recording-export",
31703
32175
  capScope: "system",
31704
32176
  addonId: null,
31705
32177
  access: "view"
@@ -33076,6 +33548,104 @@ var FramerateField = number().int().min(1).max(60);
33076
33548
  var TargetsField = array(NcRuleTargetSchema).min(1);
33077
33549
  var PriorityField = number().int().min(1).max(5);
33078
33550
  /**
33551
+ * Explicit override of the DENSE sampling cadence, seconds.
33552
+ *
33553
+ * Absent ⇒ derived as `max(1s, cadenceSec / 30)` — a 30 s base samples every
33554
+ * 1 s inside a detection range. (It was `base / 10` until 2026-08-12, which
33555
+ * made that same base 3 s and rendered a person pass as two frames.)
33556
+ *
33557
+ * THE ARITHMETIC. A detection range of `rangeSec` seconds sampled every
33558
+ * `denseCadenceSec` and played at `framerate` occupies
33559
+ *
33560
+ * outputSeconds = (rangeSec / denseCadenceSec) / framerate
33561
+ *
33562
+ * so a 7 s pass at 1 s / 12 fps is 0.58 s of video, and at 0.5 s it is 1.17 s.
33563
+ * Halving this field doubles the frames INSIDE ranges only — the base cadence,
33564
+ * and therefore the length of a quiet night, does not move.
33565
+ *
33566
+ * Floored at {@link TIMELAPSE_DENSE_FLOOR_SEC}: asking for frames faster than
33567
+ * the recording has them returns the same frames, requested twice. Must be
33568
+ * STRICTLY smaller than `cadenceSec` — a dense rate that is not denser renders
33569
+ * a uniform video the operator believes is two-rate — and upsert refuses it
33570
+ * rather than letting the export cap reject the render hours after the window.
33571
+ */
33572
+ var DenseCadenceSecField = number().min(.1).max(3600);
33573
+ /**
33574
+ * Minimum seconds of OUTPUT video each detection range must occupy.
33575
+ *
33576
+ * The operator-facing form of the arithmetic above: instead of solving for a
33577
+ * cadence, state the dwell and let the renderer solve. `minDwellSec: 1` on a
33578
+ * 30 s base at 12 fps turns a 7 s pass into a full second of video by sampling
33579
+ * that range every ~583 ms.
33580
+ *
33581
+ * ONE CADENCE SERVES EVERY RANGE. `ExportDenseSchema.everyMs` is global — the
33582
+ * ranges are terms of a single ffmpeg `select` expression that cannot vary rate
33583
+ * per term — so the MOST DEMANDING (shortest) range sets the rate and longer
33584
+ * ranges are sampled denser than they need. Per-range cadences require a cap
33585
+ * schema change and are the tracked follow-up.
33586
+ *
33587
+ * A range too short to reach the dwell even at {@link TIMELAPSE_DENSE_FLOOR_SEC}
33588
+ * is rendered with every frame that EXISTS and no more: the guarantee is capped
33589
+ * by real footage, never met by duplicating frames into motion that never
33590
+ * happened.
33591
+ */
33592
+ var MinDwellSecField = number().min(0).max(60);
33593
+ /**
33594
+ * Caption burned into the notification's preview frame.
33595
+ *
33596
+ * Same `{{var}}` vocabulary as {@link TimelapseTemplateSchema} (`camera`,
33597
+ * `rule`, `from`, `to`) and rendered by the SAME renderer — a second
33598
+ * templating dialect for one field would be a second thing to explain.
33599
+ *
33600
+ * Absent ⇒ {@link DEFAULT_TIMELAPSE_PREVIEW_TEXT}. An EMPTY STRING is the
33601
+ * operator saying "the frame, no caption" — a distinct, reachable answer, and
33602
+ * the reason this is not `.min(1)`.
33603
+ */
33604
+ var PreviewTextField = string().max(200);
33605
+ /**
33606
+ * Whether the notification's preview is a STILL or a short animation.
33607
+ *
33608
+ * The operator's ask, verbatim: *"inviato come gif o video (come per le altre
33609
+ * rule)"* — his Scrypted advanced-notifier has a `gifRule`, and a ten-hour
33610
+ * night reads better as three seconds of motion than as one frame of it. Both
33611
+ * modes get the SAME treatment (blurred frame, large centred title); `'gif'`
33612
+ * simply applies it to a dozen frames sampled across the render and assembles
33613
+ * them.
33614
+ *
33615
+ * `'image'` is the default and stays the default: a GIF costs a dozen ffmpeg
33616
+ * seeks and a palette pass, and no rule that never asked for one should start
33617
+ * paying that on the deploy that shipped it.
33618
+ *
33619
+ * A GIF that cannot be assembled DEGRADES to the still — never to nothing.
33620
+ */
33621
+ var PreviewModeField = _enum(["image", "gif"]);
33622
+ /**
33623
+ * Which detection classes the notification reports counts for.
33624
+ *
33625
+ * The counts come from the tracks the render ALREADY fetched for its dense-range
33626
+ * plan — no second query — aggregated per class. Absent or empty means "every
33627
+ * class the window actually contained", which is what an operator who never
33628
+ * opened the field wants; a list narrows it (`['person']` on a driveway that
33629
+ * counts cars all night).
33630
+ *
33631
+ * Class names are the tracker's own (`person`, `vehicle`, `animal`, `package`,
33632
+ * …). An unknown name simply never matches and reports nothing — it is not an
33633
+ * error, because a rule may legitimately name a class this camera's model does
33634
+ * not emit.
33635
+ *
33636
+ * The counts are exposed to {@link TimelapseTemplateSchema} as:
33637
+ * - `{{detections}}` — total over the reported classes
33638
+ * - `{{detectionSummary}}` — `2 persone, 1 veicolo`
33639
+ * - `{{count_person}}` / `{{count_vehicle}}` / `{{count_animal}}` / … —
33640
+ * one per class, `count_` + the class name
33641
+ *
33642
+ * With NO custom body template the summary is appended to the derived body, and
33643
+ * only when the total is non-zero: a nightly `0 rilevamenti` is a line nobody
33644
+ * reads. With a custom template the operator owns every word — nothing is
33645
+ * appended, so `{{detectionSummary}}` is how he asks for it.
33646
+ */
33647
+ var ReportClassesField = array(string().min(1).max(40)).max(20);
33648
+ /**
33079
33649
  * Client-supplied timelapse-rule fields. The server stamps id / createdBy /
33080
33650
  * createdAt / updatedAt / ownerUserId / lastGeneratedAt — none of them appear
33081
33651
  * here (see the ownership note above).
@@ -33095,9 +33665,30 @@ var TimelapseRuleInputSchema = object({
33095
33665
  cadenceSec: CadenceSecField.default(15),
33096
33666
  /** Output frames per second of the assembled mp4 (predecessor parity). */
33097
33667
  framerate: FramerateField.default(10),
33668
+ /**
33669
+ * Explicit dense cadence — see {@link DenseCadenceSecField}. Absent ⇒ derived
33670
+ * as `max(1s, cadenceSec / 30)`, which is what every rule written before this
33671
+ * field gets.
33672
+ */
33673
+ denseCadenceSec: DenseCadenceSecField.optional(),
33674
+ /** Output-seconds guarantee per detection range — see {@link MinDwellSecField}. */
33675
+ minDwellSec: MinDwellSecField.optional(),
33098
33676
  /** `notification-output` targets the finished video/thumbnail is sent to. */
33099
33677
  targets: TargetsField,
33100
33678
  template: TimelapseTemplateSchema.optional(),
33679
+ /**
33680
+ * Caption on the notification's PREVIEW FRAME — see {@link PreviewTextField}
33681
+ * and {@link DEFAULT_TIMELAPSE_PREVIEW_TEXT}.
33682
+ *
33683
+ * Deliberately NOT part of {@link TimelapseTemplateSchema}: that object is
33684
+ * the notification's title/body, and clearing it (`template: null`) must not
33685
+ * silently clear the caption too.
33686
+ */
33687
+ previewText: PreviewTextField.optional(),
33688
+ /** Still or animation — see {@link PreviewModeField}. */
33689
+ previewMode: PreviewModeField.default("image"),
33690
+ /** Classes the notification counts — see {@link ReportClassesField}. */
33691
+ reportClasses: ReportClassesField.optional(),
33101
33692
  /** Canonical notification priority ordinal (1..5); per-target overridable. */
33102
33693
  priority: PriorityField.default(3)
33103
33694
  });
@@ -33108,8 +33699,13 @@ object({
33108
33699
  schedule: NcScheduleSchema.optional(),
33109
33700
  cadenceSec: CadenceSecField.optional(),
33110
33701
  framerate: FramerateField.optional(),
33702
+ denseCadenceSec: DenseCadenceSecField.optional(),
33703
+ minDwellSec: MinDwellSecField.optional(),
33111
33704
  targets: TargetsField.optional(),
33112
33705
  template: TimelapseTemplateSchema.nullable().optional(),
33706
+ previewText: PreviewTextField.optional(),
33707
+ previewMode: PreviewModeField.optional(),
33708
+ reportClasses: ReportClassesField.optional(),
33113
33709
  priority: PriorityField.optional()
33114
33710
  });
33115
33711
  TimelapseRuleInputSchema.extend({
@@ -33121,10 +33717,28 @@ TimelapseRuleInputSchema.extend({
33121
33717
  */
33122
33718
  ownerUserId: string().optional(),
33123
33719
  /**
33124
- * Epoch-ms of the last successful generation the 1-hour re-generation
33125
- * guard's durable state (predecessor parity). Absent = never generated.
33720
+ * Epoch-ms of the NEWEST successful generation across every camera of this
33721
+ * rule. What a UI shows, and the compatibility floor for
33722
+ * {@link readTimelapseGeneratedAt}. Absent = never generated.
33126
33723
  */
33127
33724
  lastGeneratedAt: number().optional(),
33725
+ /**
33726
+ * PER-CAMERA generation state, keyed by `String(deviceId)` — the
33727
+ * re-generation guard's real durable state.
33728
+ *
33729
+ * One rule covers several cameras and each renders its own video, so a rule
33730
+ * -wide stamp is wrong in the direction that DESTROYS work: camera A
33731
+ * succeeding at 06:05 tells camera B, whose render failed, that it is
33732
+ * already done — and B's night is gone for good, because the window will not
33733
+ * come back.
33734
+ *
33735
+ * ADDITIVE, so the migration is free: a row written before this field simply
33736
+ * has no map, and {@link readTimelapseGeneratedAt} falls back to
33737
+ * {@link TimelapseRuleSchema.shape.lastGeneratedAt}. Reading an old row as
33738
+ * "never generated" would re-render and re-notify every camera of every rule
33739
+ * once, on the deploy that shipped the map.
33740
+ */
33741
+ generatedByDevice: record(string(), number()).optional(),
33128
33742
  /** userId of the caller who created the rule (server-stamped). */
33129
33743
  createdBy: string(),
33130
33744
  createdAt: number(),
@@ -33175,25 +33789,32 @@ object({
33175
33789
  var NativeLeaseAdmissionSchema = _enum(["all", "inferred"]);
33176
33790
  object({
33177
33791
  /**
33178
- * How long a retained native frame is served before it counts as a miss.
33792
+ * How many delivered frames the worker HOLDS at once, waiting for each one's
33793
+ * detection result.
33794
+ *
33795
+ * This replaced a TTL on 2026-08-13, and the replacement is the whole point:
33796
+ * a time window was never related to the event the pixels were waiting for.
33797
+ * A held frame now lives from delivery until the runner has its `FrameResult`
33798
+ * — at which moment the runner cuts the subject tiles it actually wanted and
33799
+ * releases the frame. The bound exists only so a runner that stops answering
33800
+ * cannot pin RAM: above it the OLDEST held frame is dropped and counted.
33179
33801
  *
33180
- * Must cover the FULL late-crop horizon: detection inference + the
33181
- * cross-process inference-result hop to hub post-analysis + tracking + the
33182
- * tRPC crop round-trip back. Below ~500 ms the busiest cameras' subject crops
33183
- * outrun it and fall back to the ≤640 detection frame; above ~3 s the resident
33184
- * RAM per busy camera grows linearly with no measured hit-rate gain.
33802
+ * Sizing: the steady state is `inferenceLatency × deliveredFps`, measured at
33803
+ * 40-160 ms × ≤25 fps = 1-4 frames. The default leaves headroom for a hiccup
33804
+ * without ever approaching the old resident set (43 frames × 24.9 MB at 4K).
33805
+ * Raising it does not buy hit rate it buys tolerance for a slow runner, and
33806
+ * `holdOverflow` on the metrics line is what says you need it.
33185
33807
  */
33186
- ttlMs: number().int().min(250).max(1e4),
33808
+ holdFrames: number().int().min(1).max(64),
33187
33809
  /**
33188
33810
  * Hard per-decode-worker RAM ceiling for retained native frames, in MB.
33189
33811
  *
33190
- * Intended as a SAFETY ceiling with the TTL as the effective cap — but check
33191
- * which one is actually binding before reasoning from that. At the shipped
33192
- * 1024 MB and a 2 800 ms TTL, a 4K camera hits the CEILING first (~43 frames
33193
- * at ~24 MB each) and the TTL never gets to expire anything; `leaseMb` /
33194
- * `leaseFrames` on the metrics line say which. When the ceiling binds, a
33195
- * change that admits fewer frames buys retention WINDOW at constant RAM
33196
- * rather than giving RAM back — lower this knob if RAM is what you wanted.
33812
+ * Since 2026-08-13 this is a SAFETY ceiling and nothing else: `holdFrames`
33813
+ * is what decides how much is held, and the ceiling is the number above which
33814
+ * something is wrong. Before that it was the effective cap at 1024 MB with
33815
+ * a 2 800 ms TTL a 4K camera sat pinned at `leaseMb:1020, leaseFrames:43`
33816
+ * with the TTL expiring nothing, which is exactly the confusion the hold
33817
+ * removes. `leaseMb` / `leaseFrames` still say what is resident.
33197
33818
  * `0` DISABLES the lease entirely and falls the worker back to the tiny
33198
33819
  * leak-prone GPU surface ring (~85% crop miss; that is what the lease exists
33199
33820
  * to replace).
@@ -33219,22 +33840,45 @@ object({
33219
33840
  * there is the signal that some caller names frames outside the inference set
33220
33841
  * and that this must go back to `all`.
33221
33842
  */
33222
- admission: NativeLeaseAdmissionSchema
33843
+ admission: NativeLeaseAdmissionSchema,
33844
+ /**
33845
+ * RAM ceiling per decode worker, in MB, for the SUBJECT TILES — the
33846
+ * compressed native crops the worker cuts at the moment a frame's detection
33847
+ * result arrives, and keeps long after the frame itself is freed.
33848
+ *
33849
+ * This is the knob that replaced the old retention window, and it buys about
33850
+ * three orders of magnitude more of it: a tile is one subject at native
33851
+ * resolution, JPEG-encoded (~60-120 KB on a 4K person), against ~24.9 MB for
33852
+ * the frame it was cut from. A frame on which nothing was detected costs
33853
+ * nothing at all, which is the real change — the old lease paid per FRAME and
33854
+ * was interrogated per SUBJECT.
33855
+ *
33856
+ * `0` DISABLES tiles, leaving only the hold window and the ≤640 RAM
33857
+ * fallback — i.e. the pre-2026-08-13 miss profile. Set it there only to
33858
+ * reproduce that.
33859
+ */
33860
+ tileBudgetMb: number().int().min(0).max(1024)
33223
33861
  });
33224
33862
  /**
33225
- * The values in force when the operator has set nothing — byte-for-byte the
33226
- * constants the decode worker shipped with as env-var defaults, so making these
33227
- * settings changed no behaviour on the day it landed.
33863
+ * The values in force when the operator has set nothing.
33864
+ *
33865
+ * `budgetMb` stays at 1024 on the day the hold landed, deliberately: it stopped
33866
+ * being the retention window and became the OOM ceiling, and lowering a ceiling
33867
+ * in the same change that redefines it would make a regression and a retune
33868
+ * indistinguishable. Cut it once `tileHits` / `holdOverflow` have been read on
33869
+ * live traffic.
33228
33870
  */
33229
33871
  var DEFAULT_NATIVE_LEASE_SETTINGS = {
33230
- ttlMs: 1200,
33872
+ holdFrames: 8,
33231
33873
  budgetMb: 1024,
33232
33874
  activityMs: 15e3,
33875
+ tileBudgetMb: 64,
33233
33876
  admission: "inferred"
33234
33877
  };
33235
- DEFAULT_NATIVE_LEASE_SETTINGS.ttlMs;
33878
+ DEFAULT_NATIVE_LEASE_SETTINGS.holdFrames;
33236
33879
  DEFAULT_NATIVE_LEASE_SETTINGS.budgetMb;
33237
33880
  DEFAULT_NATIVE_LEASE_SETTINGS.activityMs;
33881
+ DEFAULT_NATIVE_LEASE_SETTINGS.tileBudgetMb;
33238
33882
  DEFAULT_NATIVE_LEASE_SETTINGS.admission;
33239
33883
  //#endregion
33240
33884
  //#region src/config.ts