@camstack/addon-agent-ui 1.2.13 → 1.2.14

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 (2) hide show
  1. package/dist/addon.js +626 -23
  2. package/package.json +1 -1
package/dist/addon.js CHANGED
@@ -7199,8 +7199,31 @@ var AdoptionJobSchema = object({
7199
7199
  error: string().nullable()
7200
7200
  });
7201
7201
  /**
7202
- * Per-camera FUNCTION SWITCHES — the one coherent on/off surface over the
7203
- * pipeline functions an operator thinks in terms of.
7202
+ * Per-camera FUNCTION SWITCHES.
7203
+ *
7204
+ * ## The aggregate group is being withdrawn — the BADGE is not (D113)
7205
+ *
7206
+ * This file shipped as "the one coherent on/off surface over the pipeline
7207
+ * functions an operator thinks in terms of". The operator's verdict on
7208
+ * 2026-08-12 was that the coherent surface bought complexity and no clarity:
7209
+ * every function already had a settings page of its own, and a second place to
7210
+ * turn it off is a second place to look. Each switch is going back to its own
7211
+ * component's original options — detection to the detection-pipeline wrapper
7212
+ * binding, audio analysis to its own, recording to `RecordingConfig.enabled`
7213
+ * (which was always first-class; the switch was a veneer over
7214
+ * `recording.setDeviceConfig`), notifications to a notification-center
7215
+ * per-device setting, the two camera planes to their own components.
7216
+ *
7217
+ * What survives is {@link composeSwitchedOff}: `CameraStatus.switchedOff`, the
7218
+ * thing that lets a status surface say DISABLED instead of BROKEN, recomposed
7219
+ * straight from the authorities with no group in the middle. That rule was
7220
+ * never about a control panel.
7221
+ *
7222
+ * Everything else here — {@link CAMERA_SWITCH_CATALOG}, {@link CameraSwitch},
7223
+ * {@link deriveCameraSwitches}, the `pipelineOrchestrator.getCameraSwitches` /
7224
+ * `setCameraSwitch` pair — is a COMPATIBILITY surface for as long as deployed
7225
+ * viewers (v1.0.305) and the admin UI still call it. It is deleted when they
7226
+ * stop; nothing new may be built on it.
7204
7227
  *
7205
7228
  * ## This file adds no state
7206
7229
  *
@@ -7551,7 +7574,15 @@ var RecordingConfigSchema = object({
7551
7574
  * Each completed/failed run also lands one durable ops-log row on its owning
7552
7575
  * addon surface.
7553
7576
  */
7577
+ /**
7578
+ * `queued` exists because the recorder mover is SINGLE-FLIGHT and an operator
7579
+ * rebalance enqueues one job per (camera, profile). Refusing the second job —
7580
+ * what the engine did before — turned a fifteen-camera rebalance into fifteen
7581
+ * manual retries. Queued jobs run FIFO; a queued job that is cancelled never
7582
+ * runs at all.
7583
+ */
7554
7584
  var RelocateJobStateSchema = _enum([
7585
+ "queued",
7555
7586
  "running",
7556
7587
  "done",
7557
7588
  "failed",
@@ -7586,6 +7617,15 @@ var RelocateFootageInputSchema = object({
7586
7617
  /** Limits relocation to the logical profile class. Omit only for the
7587
7618
  * pre-orchestration compatibility path. */
7588
7619
  footageClass: RelocateFootageClassSchema.optional(),
7620
+ /** Scope the move to ONE camera. Absent = every camera on the source, which
7621
+ * is what a whole-disk drain means. The rebalance path always sets it: its
7622
+ * unit is a (camera, profile) pile, not a disk. */
7623
+ deviceId: number().int().optional(),
7624
+ /** Scope the move to specific segment profiles (`high` / `mid` / `low`).
7625
+ * Finer than `footageClass`, which cannot separate high from mid — and the
7626
+ * placement plan assigns those two independently, so a rebalance that could
7627
+ * only say "recordings" would move footage the plan never asked to move. */
7628
+ profiles: array(string()).optional(),
7589
7629
  /** Copy throttle in MB/s (default 40) — the drain is a background chore,
7590
7630
  * never allowed to starve live writers. */
7591
7631
  throttleMbps: number().min(1).max(1e3).optional()
@@ -7721,6 +7761,21 @@ var StorageLocationSchema = object({
7721
7761
  nodeId: string().optional(),
7722
7762
  isDefault: boolean().default(false),
7723
7763
  isSystem: boolean().default(false),
7764
+ /**
7765
+ * Operator opt-in: whether consumers that BALANCE across several locations
7766
+ * of a type may write here. Recordings reads it today; event media and
7767
+ * backups are the next consumers, which is why the flag lives on the
7768
+ * location rather than in any one addon's store — nothing has to be
7769
+ * extended to add the next consumer.
7770
+ *
7771
+ * OPTIONAL, and ABSENT MEANS ACTIVE. Every location persisted before the
7772
+ * flag existed reads back with no flag and keeps working exactly as before;
7773
+ * that is the whole compat story, and it is why no migration ships with it.
7774
+ * A newly CREATED sibling is stamped `false` by the orchestrator (creating a
7775
+ * disk must not silently start writing to it); the default of a type is
7776
+ * always stamped `true`.
7777
+ */
7778
+ enabled: boolean().optional(),
7724
7779
  /** COMPUTED at read time by the orchestrator (statfs of the backing volume
7725
7780
  * for node-local locations it can reach) — never persisted, absent when the
7726
7781
  * volume is remote/unreachable. The single capacity truth every UI reads. */
@@ -12023,7 +12078,8 @@ method(object({
12023
12078
  }), EmbeddingResultSchema), method(object({ text: string() }), EmbeddingResultSchema), method(_void(), EmbeddingInfoSchema);
12024
12079
  /**
12025
12080
  * filesystem-browse — per-node capability for browsing the node's local
12026
- * filesystem, sandboxed to operator-configured allowed roots. Used by the
12081
+ * filesystem. Reads are unconfined (whole filesystem, from `/` down); WRITES
12082
+ * are sandboxed to operator-configured allowed roots (D115). Used by the
12027
12083
  * admin "Add filesystem location" flow to pick a node + path. `mode:'per-node'`
12028
12084
  * (one provider per node); the hub calls it with `{nodeId}` so the codegen
12029
12085
  * routes to that exact node (default `nodeIdMode:'routing'`).
@@ -13836,6 +13892,13 @@ var MaskGridDimsSchema = object({
13836
13892
  * `package-event` are pure trigger kinds (no urgency dimension). Extending
13837
13893
  * this one field keeps the schema additive — a rule still declares exactly
13838
13894
  * one trigger.
13895
+ *
13896
+ * AUDIO rules add no member here, for the reason occupancy added none: the
13897
+ * enum is mirrored by hand in the viewer (`scripts/check-viewer-condition-
13898
+ * mirror.ts` fails the build on a member the app cannot render) and every
13899
+ * member costs a release train. A sustained-sound rule is therefore an
13900
+ * `immediate` rule carrying {@link NcConditions.audio} — the condition is the
13901
+ * trigger discriminator, exactly as `occupancy` is on `device-event`.
13839
13902
  */
13840
13903
  var NcDeliverySchema = _enum([
13841
13904
  "immediate",
@@ -13850,15 +13913,32 @@ var NcDeliverySchema = _enum([
13850
13913
  * depend on a provider's raw event name or payload shape.
13851
13914
  */
13852
13915
  var NcSystemEventKindSchema = _enum([
13853
- "camera-online",
13854
- "camera-offline",
13916
+ "device-online",
13917
+ "device-offline",
13918
+ "device-disabled",
13919
+ "device-enabled",
13855
13920
  "stream-online",
13856
13921
  "stream-offline",
13857
13922
  "node-online",
13858
13923
  "node-offline",
13859
13924
  "addon-update-available",
13860
- "server-update-available"
13925
+ "server-update-available",
13926
+ "alarm-triggered",
13927
+ "alarm-armed",
13928
+ "alarm-disarmed",
13929
+ "camera-online",
13930
+ "camera-offline",
13931
+ "camera-disabled",
13932
+ "camera-enabled"
13933
+ ]);
13934
+ /** The legacy tail of {@link NcSystemEventKindSchema} — see its docblock. */
13935
+ var NC_LEGACY_SYSTEM_EVENT_KINDS = new Set([
13936
+ "camera-online",
13937
+ "camera-offline",
13938
+ "camera-disabled",
13939
+ "camera-enabled"
13861
13940
  ]);
13941
+ NcSystemEventKindSchema.options.filter((kind) => !NC_LEGACY_SYSTEM_EVENT_KINDS.has(kind));
13862
13942
  /**
13863
13943
  * One coherent system-event condition. `kinds` is the required opt-in safety
13864
13944
  * gate; the remaining lists are optional narrowing filters relevant to the
@@ -13867,6 +13947,18 @@ var NcSystemEventKindSchema = _enum([
13867
13947
  var NcSystemEventConditionSchema = object({
13868
13948
  kinds: array(NcSystemEventKindSchema).min(1),
13869
13949
  deviceIds: array(number().int()).min(1).optional(),
13950
+ /**
13951
+ * Narrow a `device-*` kind to these device TYPES (`DeviceType` values —
13952
+ * `camera`, `switch`, `sensor`, `container`, …). Absent = every type, which
13953
+ * is what a liveness rule means when nobody said otherwise.
13954
+ *
13955
+ * This is where "only my cameras" is expressed, and it lives on the rule for
13956
+ * one reason: the intake cannot know which devices this household cares
13957
+ * about, and a producer-side filter is one no operator can change. Fails
13958
+ * CLOSED — a subject whose device type is unknown (an id the device mirror
13959
+ * does not carry) matches no `deviceTypes` list.
13960
+ */
13961
+ deviceTypes: array(string().min(1)).min(1).optional(),
13870
13962
  nodeIds: array(string().min(1)).min(1).optional(),
13871
13963
  packageNames: array(string().min(1)).min(1).optional()
13872
13964
  });
@@ -13917,6 +14009,47 @@ var NcOccupancyConditionSchema = object({
13917
14009
  sustainSeconds: number().int().min(0).max(3600).default(15)
13918
14010
  });
13919
14011
  /**
14012
+ * Audio condition (IMMEDIATE trigger) — a rule on SOUND, not on a picture.
14013
+ *
14014
+ * Operator-approved vocabulary (2026-08-12, option A — the same one the
14015
+ * reference notifier uses, so an operator moving between them re-uses what
14016
+ * they already know): a rule matches when, over a sampling window of
14017
+ * `samplingSeconds`, at least `hitPercent`% of the audio samples in that
14018
+ * window are HITS. A sample is a hit when it satisfies BOTH present filters:
14019
+ *
14020
+ * - `dbThreshold` — its level is at or above this many dBFS (see
14021
+ * {@link NC_AUDIO_DBFS_FLOOR}: negative-going, `0` = full scale);
14022
+ * - `labels` — the classifier put at least one of these labels on it.
14023
+ *
14024
+ * Both are OPTIONAL and independent, which is the point of the shape: a
14025
+ * loudness rule ("something loud at 3am") needs no model to be right, and a
14026
+ * label rule ("a dog barked") needs no threshold. **Fail-closed when NEITHER
14027
+ * is given** — a window in which every sample is trivially a hit would fire on
14028
+ * silence, so the engine refuses such a condition rather than notifying on
14029
+ * nothing (the schema cannot express "at least one of" without becoming a
14030
+ * ZodEffects the cap path would have to special-case).
14031
+ *
14032
+ * `hitPercent` is over the samples the window actually HOLDS, and the window
14033
+ * must be FULL before it can match — a window that has been open for two
14034
+ * seconds of its ten is 100% of nothing, and firing on it would make
14035
+ * `samplingSeconds` decorative.
14036
+ *
14037
+ * Labels are the audio macro classes (`AUDIO_MACRO_LABELS` / the NC taxonomy's
14038
+ * `audio-*` ids). Both spellings are accepted — the matcher normalizes the
14039
+ * `audio-` prefix away on both sides, so a picker that offers taxonomy ids and
14040
+ * an operator who typed `dog` mean the same thing.
14041
+ */
14042
+ var NcAudioConditionSchema = object({
14043
+ /** Audio macro labels; absent = any sound (level-only rule). */
14044
+ labels: array(string().min(1)).min(1).optional(),
14045
+ /** Level floor in dBFS (negative-going, `0` = full scale); absent = any level. */
14046
+ dbThreshold: number().min(-96).max(0).optional(),
14047
+ /** Percentage of the window's samples that must be hits (1–100). */
14048
+ hitPercent: number().int().min(1).max(100).default(60),
14049
+ /** Length of the sampling window in seconds. */
14050
+ samplingSeconds: number().int().min(1).max(300).default(10)
14051
+ });
14052
+ /**
13920
14053
  * Which zone-crossing DIRECTION a rule accepts (`ObjectEvent.zoneCrossing`).
13921
14054
  *
13922
14055
  * The values are not symmetric, and deliberately so — the absent value has to
@@ -14189,7 +14322,33 @@ var NcConditionsSchema = object({
14189
14322
  * threshold and holds for `sustainSeconds`. Fail-closed on missing
14190
14323
  * substrate (no snapshot / missing zone). See {@link NcOccupancyCondition}.
14191
14324
  */
14192
- occupancy: NcOccupancyConditionSchema.optional()
14325
+ occupancy: NcOccupancyConditionSchema.optional(),
14326
+ /**
14327
+ * IMMEDIATE only. Sustained-sound matcher — `hitPercent` of the samples in a
14328
+ * `samplingSeconds` window clear the optional `dbThreshold` and carry one of
14329
+ * the optional `labels`. Fail-closed on missing substrate (no audio samples,
14330
+ * a window that is not full yet, neither filter given). See
14331
+ * {@link NcAudioCondition}.
14332
+ *
14333
+ * Presence of this key is what makes a rule an AUDIO rule: the engine fires
14334
+ * it ONLY on a confirmed audio window, and a rule carrying it never fires on
14335
+ * a detection, a track or a device event (the same fail-closed pairing
14336
+ * `occupancy` has with the `device-event` trigger). That is how audio labels
14337
+ * leave `classes`: an audio rule names its sounds HERE, and the legacy path
14338
+ * (an `immediate` rule naming an `audio-*` class, one notification per
14339
+ * classified sample) stays exactly as it was for rules that already use it.
14340
+ *
14341
+ * NOT in {@link NC_CONDITION_CATALOG} yet, and that is the sequencing rule
14342
+ * rather than an oversight: the viewer mirrors the descriptor enums BY HAND
14343
+ * (`camstack/src/data/notification-center.ts`, guarded by
14344
+ * `scripts/check-viewer-condition-mirror.ts`) and its rule editor STRIPS the
14345
+ * condition fields it does not know when a rule is saved from the phone.
14346
+ * Publishing an editor for a condition the app cannot round-trip is how an
14347
+ * operator loses a rule's conditions by opening it — so the descriptor, the
14348
+ * admin widget and the viewer mirror land together (P2 + P3), and only then
14349
+ * does an audio rule become authorable.
14350
+ */
14351
+ audio: NcAudioConditionSchema.optional()
14193
14352
  });
14194
14353
  /** One delivery target: a `notification-output` Target ref + passthrough params. */
14195
14354
  var NcRuleTargetSchema = object({
@@ -14303,6 +14462,73 @@ var NcThrottleSchema = object({
14303
14462
  */
14304
14463
  granularity: NcThrottleGranularitySchema.optional()
14305
14464
  });
14465
+ /**
14466
+ * How long the confirm gate may hold ONE notification, and how big the picture
14467
+ * it judges may be.
14468
+ *
14469
+ * The clamp is the product decision, not a coincidence of the model: p50 was
14470
+ * 4.9 s warm and 15.3 s cold against qwen3-vl-8b, and a notification that
14471
+ * arrives after the visitor has gone is not a notification. 448 px was enough
14472
+ * to score 16/16 on the operator's parking scenario — bigger costs latency and
14473
+ * tokens for pixels the model pools away.
14474
+ */
14475
+ var NC_CONFIRM_MIN_TIMEOUT_MS = 1e3;
14476
+ var NC_CONFIRM_MAX_TIMEOUT_MS = 2e4;
14477
+ var NC_CONFIRM_DEFAULT_TIMEOUT_MS = 8e3;
14478
+ /** Comparison the model's COUNT must satisfy for the notification to fire. */
14479
+ var NcConfirmExpectSchema = object({
14480
+ op: _enum([
14481
+ ">=",
14482
+ ">",
14483
+ "<=",
14484
+ "<",
14485
+ "=="
14486
+ ]),
14487
+ count: number().int().min(0).max(1e3)
14488
+ });
14489
+ /**
14490
+ * AI CONFIRM — a vision model looks at the picture this notification is about
14491
+ * to ship and says whether it agrees with the rule.
14492
+ *
14493
+ * It runs AFTER the attachments resolve, deliberately: the crop JUDGED is the
14494
+ * crop SHIPPED (D52). A verdict about a different pixel rectangle than the one
14495
+ * on the operator's phone is not a verdict about this notification.
14496
+ *
14497
+ * FAIL-OPEN is the only safe default. A gate that cannot reach its model, or
14498
+ * whose model is cold, must not silence a camera — so `onTimeout: 'fire'` is
14499
+ * the default and every fail-open is COUNTED, because a gate that always fails
14500
+ * open looks in the log exactly like a gate that works.
14501
+ *
14502
+ * Every field is `.optional()` rather than relied on as a Zod default at the
14503
+ * runtime seam: a Zod default does NOT run on the addon→addon cap path (three
14504
+ * production failures in one day), so the gate reads absent as the constant
14505
+ * above rather than trusting a parse it may never have seen.
14506
+ */
14507
+ var NcConfirmSchema = object({
14508
+ /** Off unless asked for. An absent `confirm` and `enabled:false` are the
14509
+ * same thing, and both mean "deliver exactly as before". */
14510
+ enabled: boolean().default(false),
14511
+ /** Explicit vision profile; absent = the `purpose:'vision'` cluster default. */
14512
+ profileId: string().optional(),
14513
+ /**
14514
+ * The operator's question, in his own words. Absent = a question derived
14515
+ * from the rule (its class and its expectation).
14516
+ *
14517
+ * NEVER composed with text READ OUT OF THE FRAME. The model reads OSD
14518
+ * banners, signage and plates as instructions if you let them reach the
14519
+ * prompt — proven live — so the authoritative contract stays in the system
14520
+ * turn and only rule-authored words land here.
14521
+ */
14522
+ prompt: string().max(1e3).optional(),
14523
+ /** Fire only when the model's count satisfies this. Absent = the model's
14524
+ * own boolean verdict decides. */
14525
+ expect: NcConfirmExpectSchema.optional(),
14526
+ timeoutMs: number().int().min(NC_CONFIRM_MIN_TIMEOUT_MS).max(NC_CONFIRM_MAX_TIMEOUT_MS).default(NC_CONFIRM_DEFAULT_TIMEOUT_MS),
14527
+ /** What a timeout / unreachable model MEANS. `fire` (default) = fail-open. */
14528
+ onTimeout: _enum(["fire", "suppress"]).default("fire"),
14529
+ /** Longest edge the judged image is downscaled to before it is sent. */
14530
+ maxImagePx: number().int().min(64).max(2048).default(448)
14531
+ });
14306
14532
  /** Client-supplied rule fields (server stamps id/createdBy/createdAt/updatedAt). */
14307
14533
  var NcRuleInputSchema = object({
14308
14534
  name: string().min(1).max(200),
@@ -14363,7 +14589,13 @@ var NcRuleInputSchema = object({
14363
14589
  * `{ cap: 'alarm-panel', method: 'arm', args: { mode: 'away' } }`, the same
14364
14590
  * shape as every other actuation.
14365
14591
  */
14366
- actions: NcRuleActionsSchema.optional()
14592
+ actions: NcRuleActionsSchema.optional(),
14593
+ /**
14594
+ * AI CONFIRM — see {@link NcConfirmSchema}. `.optional()`, never defaulted:
14595
+ * a rule that predates the gate must keep delivering byte-for-byte as it
14596
+ * did, and absent is the only way to say that without a migration.
14597
+ */
14598
+ confirm: NcConfirmSchema.optional()
14367
14599
  });
14368
14600
  /**
14369
14601
  * Partial patch for `updateRule` — any subset of the input fields, plus the
@@ -14374,7 +14606,37 @@ var NcRuleInputSchema = object({
14374
14606
  * still flow through `nc.setRuleTargetEnabled` (owner-checked), never a raw
14375
14607
  * `updateRule` patch.
14376
14608
  */
14377
- var NcRulePatchSchema = NcRuleInputSchema.partial().extend({ disabledTargetIds: array(string()).optional() });
14609
+ var NcRulePatchSchema = NcRuleInputSchema.partial().extend({
14610
+ disabledTargetIds: array(string()).optional(),
14611
+ /**
14612
+ * `.partial()` DOES NOT REMOVE A FIELD'S `.default()`.
14613
+ *
14614
+ * It makes the key optional to SUPPLY; the parse still materialises the
14615
+ * default when the key is absent. And `NcRuleStore.update` merges with
14616
+ * `{ ...existing, ...patch }`, so a materialised key OVERWRITES the stored
14617
+ * one — which made every partial edit destructive:
14618
+ *
14619
+ * nc.updateRule({ throttle }) → conditions reset to `{}`
14620
+ * nc.setRuleTargetEnabled(...) → conditions reset to `{}`
14621
+ * setEnabled(ruleId, false) → conditions reset to `{}`
14622
+ *
14623
+ * A rule scoped to one camera and one zone silently became a rule that
14624
+ * matches EVERY event on EVERY camera, and lost its `media` policy
14625
+ * (zoneCrop / gif / clip / frame) and its `priority` at the same time. Seen
14626
+ * live on 2026-08-12: a rule scoped to device 617 fired on 590 and 615
14627
+ * within a minute of a two-field patch.
14628
+ *
14629
+ * So every defaulted field is re-declared here WITHOUT its default. The
14630
+ * inner defaults still apply when the caller DOES send the key — `{}` for
14631
+ * conditions remains a real instruction ("clear them") — and only the
14632
+ * absent key is now genuinely absent.
14633
+ */
14634
+ enabled: boolean().optional(),
14635
+ conditions: NcConditionsSchema.optional(),
14636
+ media: NcMediaPolicySchema.optional(),
14637
+ throttle: NcThrottleSchema.optional(),
14638
+ priority: number().int().min(1).max(5).optional()
14639
+ });
14378
14640
  /** A persisted rule. */
14379
14641
  var NcRuleSchema = NcRuleInputSchema.extend({
14380
14642
  id: string(),
@@ -14675,6 +14937,25 @@ var NcAlarmSettingsPatchSchema = NcAlarmSettingsSchema.partial();
14675
14937
  * Never authored, never stored — see `alarm-mode-coverage.ts` for why a stored
14676
14938
  * copy would lie the first time a rule is disabled.
14677
14939
  */
14940
+ /**
14941
+ * Why a device a mode NAMES is nonetheless not armed by it.
14942
+ *
14943
+ * Each value is an existing authority, never a new flag (D62): `muted` is the
14944
+ * per-camera notification switch the Notification Center already owns,
14945
+ * `detection-off` is the device's own detection binding being inactive, and
14946
+ * `offline` is the device manager's liveness. A fourth reason would mean a
14947
+ * fourth authority, and inventing one here is how a panel starts disagreeing
14948
+ * with the switches the operator actually used.
14949
+ */
14950
+ var NcAlarmSkipReasonSchema = _enum([
14951
+ "muted",
14952
+ "detection-off",
14953
+ "offline"
14954
+ ]);
14955
+ var NcAlarmSkippedDeviceSchema = object({
14956
+ deviceId: number().int(),
14957
+ reason: NcAlarmSkipReasonSchema
14958
+ });
14678
14959
  var NcAlarmModeCoverageSchema = object({
14679
14960
  mode: AlarmArmModeSchema,
14680
14961
  /** Enabled rules gated on `armed_<mode>`. Zero means the mode does nothing. */
@@ -14682,7 +14963,18 @@ var NcAlarmModeCoverageSchema = object({
14682
14963
  /** At least one covering rule has no device scope, so the mode covers all. */
14683
14964
  allDevices: boolean(),
14684
14965
  /** Ids named by the covering rules. A SUBSET when `allDevices` is true. */
14685
- deviceIds: array(number().int())
14966
+ deviceIds: array(number().int()),
14967
+ /**
14968
+ * Devices this mode NAMES but cannot actually arm, each with the switch that
14969
+ * excludes it.
14970
+ *
14971
+ * "Away armed — 12 cameras" is a promise, and a muted camera among those
14972
+ * twelve makes it false in exactly the way nobody notices until an incident.
14973
+ * Defaulted to `[]` so a coverage answer computed before this field existed
14974
+ * still parses as "nothing known to be skipped" rather than failing the whole
14975
+ * alarm tab.
14976
+ */
14977
+ skippedDevices: array(NcAlarmSkippedDeviceSchema).default([])
14686
14978
  });
14687
14979
  var NcAlarmConfigSchema = object({
14688
14980
  /**
@@ -17481,9 +17773,16 @@ var CameraStatusSchema = object({
17481
17773
  audio: CameraAudioStatusSchema.nullable(),
17482
17774
  recording: CameraRecordingStatusSchema.nullable(),
17483
17775
  /**
17484
- * Per-camera function switches an OPERATOR has turned off
17776
+ * Per-camera functions an OPERATOR has turned off
17485
17777
  * ([D61](../../../../docs/decisions/adr-0067.md)).
17486
17778
  *
17779
+ * Composed from the AUTHORITIES themselves — the wrapper bindings,
17780
+ * `RecordingConfig.enabled`, the notification mute, the broker's audio
17781
+ * policy, the camera's own microphone — via `composeSwitchedOff`, not from
17782
+ * the deprecated `getCameraSwitches` group ([D113](../../../../docs/decisions/adr-0113.md)).
17783
+ * The badge outlives the control panel: the panel was a convenience, this is
17784
+ * the difference between a camera being off and a camera being dead.
17785
+ *
17487
17786
  * This is the difference between DISABLED and BROKEN. A camera whose
17488
17787
  * `detection` block reports zero fps and whose `switchedOff` contains
17489
17788
  * `'object-detection'` was switched off by a person; the same camera with an
@@ -22992,7 +23291,19 @@ var RecordingManifestSchema = object({
22992
23291
  * profiles/subtrees/locations on this node). */
22993
23292
  var RecordingDeviceUsageSchema = object({
22994
23293
  deviceId: number(),
22995
- usedBytes: number()
23294
+ usedBytes: number(),
23295
+ /**
23296
+ * Start of this camera's OLDEST indexed segment, across every profile and
23297
+ * location — the "Oldest footage" column in Recordings → Storage, and the
23298
+ * only honest answer to "is retention actually holding?" per camera.
23299
+ *
23300
+ * `null` = the camera has no footage. OPTIONAL because a recorder that
23301
+ * predates this field omits it entirely, and a hub whose types carry the
23302
+ * field must keep validating that older provider's payload: the framework
23303
+ * (types) and the addon ship on different trains, and the addon is usually
23304
+ * the later of the two.
23305
+ */
23306
+ oldestMs: number().nullable().optional()
22996
23307
  });
22997
23308
  /** Recording storage usage + capacity for one storage location. */
22998
23309
  var RecordingLocationUsageSchema = object({
@@ -23020,6 +23331,57 @@ var RecordingStorageUsageSchema = object({
23020
23331
  locations: array(RecordingLocationUsageSchema)
23021
23332
  });
23022
23333
  /**
23334
+ * The OPERATOR-ARMED half of multi-location recordings (D116).
23335
+ *
23336
+ * The placement plan decides where NEW writes go and moves nothing. A rebalance
23337
+ * is the operator asking for the EXISTING archive to be brought into line with
23338
+ * that plan: one relocate job per (camera, profile) pile that sits on the wrong
23339
+ * location, run FIFO behind the single-flight mover.
23340
+ *
23341
+ * `plan…` and `start…` return the SAME shape deliberately — what the operator
23342
+ * confirms is exactly what gets enqueued, and `jobIds` is the only difference
23343
+ * (empty on the plan).
23344
+ */
23345
+ var RecordingRebalanceMoveSchema = object({
23346
+ deviceId: number(),
23347
+ profile: string(),
23348
+ fromLocationId: string(),
23349
+ toLocationId: string(),
23350
+ bytes: number(),
23351
+ files: number().int()
23352
+ });
23353
+ /** Why a pile that is out of place is staying there. Every refusal is
23354
+ * reported: a rebalance that silently drops a camera reads exactly like one
23355
+ * that had nothing to do. */
23356
+ var RecordingRebalanceSkipReasonSchema = _enum([
23357
+ "unassigned",
23358
+ "target-not-writable",
23359
+ "below-threshold",
23360
+ "no-headroom"
23361
+ ]);
23362
+ var RecordingRebalanceSkipSchema = object({
23363
+ deviceId: number(),
23364
+ profile: string(),
23365
+ fromLocationId: string(),
23366
+ /** The location the plan wants; null when the camera has no assignment. */
23367
+ toLocationId: string().nullable(),
23368
+ bytes: number(),
23369
+ reason: RecordingRebalanceSkipReasonSchema
23370
+ });
23371
+ var RecordingRebalancePlanSchema = object({
23372
+ moves: array(RecordingRebalanceMoveSchema),
23373
+ skipped: array(RecordingRebalanceSkipSchema),
23374
+ bytesToMove: number(),
23375
+ /** Relocate job ids enqueued. Always empty for the plan (dry-run) call. */
23376
+ jobIds: array(string())
23377
+ });
23378
+ var RecordingRebalanceInputSchema = object({
23379
+ /** Copy throttle in MB/s (default 40) — a rebalance is a background chore. */
23380
+ throttleMbps: number().min(1).max(1e3).optional(),
23381
+ /** Ignore piles smaller than this (default 1 GB). */
23382
+ minMoveGb: number().min(0).optional()
23383
+ });
23384
+ /**
23023
23385
  * Result of locating footage at a wall-clock instant for one device/profile.
23024
23386
  * `segment` carries the covering segment's window; `gap` reports the forward
23025
23387
  * nearest covered edge (`null` past the end of footage / when none exists)
@@ -23182,9 +23544,24 @@ method(object({
23182
23544
  }), method(object({ jobId: string() }), RelocateJobSchema.nullable(), { auth: "admin" }), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
23183
23545
  kind: "mutation",
23184
23546
  auth: "admin"
23547
+ }), method(RelocateFootageInputSchema, object({ jobId: string() }), {
23548
+ kind: "mutation",
23549
+ auth: "admin"
23550
+ }), method(object({}), array(RelocateJobSchema).readonly(), {
23551
+ kind: "query",
23552
+ auth: "admin"
23553
+ }), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
23554
+ kind: "mutation",
23555
+ auth: "admin"
23556
+ }), method(RecordingRebalanceInputSchema, RecordingRebalancePlanSchema, {
23557
+ kind: "query",
23558
+ auth: "admin"
23559
+ }), method(RecordingRebalanceInputSchema, RecordingRebalancePlanSchema, {
23560
+ kind: "mutation",
23561
+ auth: "admin"
23185
23562
  });
23186
23563
  /**
23187
- * `recordingExport` cap — render a footage time range into a single downloadable
23564
+ * `recording-export` cap — render a footage time range into a single downloadable
23188
23565
  * MP4 (regular / accelerated / decelerated / timelapse, ± audio), kept for a
23189
23566
  * bounded lifetime with a durable history, auto-expiry, and optional
23190
23567
  * delete-after-download.
@@ -23199,10 +23576,42 @@ method(object({
23199
23576
  */
23200
23577
  /** Playback-speed multiplier for the render (1 = realtime). */
23201
23578
  var ExportSpeedSchema = number().min(.25).max(32);
23579
+ /**
23580
+ * One dense interval, in SECONDS FROM THE EXPORT'S OWN `fromMs`.
23581
+ *
23582
+ * Relative and not absolute epoch on purpose: the renderer's frame-select
23583
+ * expression sees ffmpeg's `t`, which starts at 0 for the export's source
23584
+ * playlist. Handing it absolute epochs would make every call site responsible
23585
+ * for the same subtraction, and the one that forgot would emit a filter that
23586
+ * selects nothing — silently, as a uniform timelapse.
23587
+ */
23588
+ var ExportDenseRangeSchema = object({
23589
+ fromSec: number().nonnegative(),
23590
+ toSec: number().nonnegative()
23591
+ }).refine((r) => r.toSec > r.fromSec, { message: "dense range must have toSec > fromSec" });
23592
+ /**
23593
+ * Dense-interval overlay for a timelapse: sample at `dense.everyMs` INSIDE the
23594
+ * listed ranges and at the base `everyMs` everywhere else.
23595
+ *
23596
+ * `everyMs` must be strictly smaller than the base cadence — a dense rate that
23597
+ * is not denser renders a uniform timelapse the operator believes is two-rate.
23598
+ */
23599
+ var ExportDenseSchema = object({
23600
+ everyMs: number().int().positive(),
23601
+ ranges: array(ExportDenseRangeSchema).min(1).max(200)
23602
+ });
23202
23603
  /** Timelapse cadence — sample one source frame per `everyMs`, output at `outputFps`. */
23203
23604
  var ExportTimelapseSchema = object({
23204
23605
  everyMs: number().int().positive(),
23205
- outputFps: number().int().min(1).max(60).optional()
23606
+ outputFps: number().int().min(1).max(60).optional(),
23607
+ /** Optional second, FASTER rate over the intervals that matter. */
23608
+ dense: ExportDenseSchema.optional()
23609
+ }).superRefine((v, ctx) => {
23610
+ if (v.dense !== void 0 && v.dense.everyMs >= v.everyMs) ctx.addIssue({
23611
+ code: ZodIssueCode.custom,
23612
+ message: "dense.everyMs must be strictly smaller than the base everyMs",
23613
+ path: ["dense", "everyMs"]
23614
+ });
23206
23615
  });
23207
23616
  /**
23208
23617
  * Render options. `speed` and `timelapse` are mutually exclusive. `includeAudio`
@@ -23260,6 +23669,19 @@ var ExportDownloadSchema = object({
23260
23669
  url: string(),
23261
23670
  endpoints: array(string())
23262
23671
  });
23672
+ /**
23673
+ * A finished export's bytes, inline.
23674
+ *
23675
+ * `bytes` is the DECODED length — the number the caller bounds and logs
23676
+ * against, so nobody has to infer it from the base64 length.
23677
+ */
23678
+ var ExportBytesSchema = object({
23679
+ base64: string(),
23680
+ contentType: string(),
23681
+ /** Suggested filename, extension included. */
23682
+ name: string(),
23683
+ bytes: number().int().nonnegative()
23684
+ });
23263
23685
  method(object({
23264
23686
  deviceId: number(),
23265
23687
  profile: string(),
@@ -23284,6 +23706,9 @@ method(object({
23284
23706
  }), method(object({ exportId: string() }), ExportDownloadSchema, {
23285
23707
  kind: "query",
23286
23708
  auth: "protected"
23709
+ }), method(object({ exportId: string() }), ExportBytesSchema, {
23710
+ kind: "query",
23711
+ auth: "protected"
23287
23712
  });
23288
23713
  /**
23289
23714
  * scene-monitor — device-scoped reference-region state cap. An operator marks
@@ -28477,6 +28902,12 @@ Object.freeze({
28477
28902
  addonId: null,
28478
28903
  access: "create"
28479
28904
  },
28905
+ "recording.cancelRelocateJob": {
28906
+ capName: "recording",
28907
+ capScope: "system",
28908
+ addonId: null,
28909
+ access: "create"
28910
+ },
28480
28911
  "recording.cancelStorageMigrationMove": {
28481
28912
  capName: "recording",
28482
28913
  capScope: "system",
@@ -28531,6 +28962,12 @@ Object.freeze({
28531
28962
  addonId: null,
28532
28963
  access: "view"
28533
28964
  },
28965
+ "recording.listRelocateJobs": {
28966
+ capName: "recording",
28967
+ capScope: "system",
28968
+ addonId: null,
28969
+ access: "view"
28970
+ },
28534
28971
  "recording.locateSegment": {
28535
28972
  capName: "recording",
28536
28973
  capScope: "system",
@@ -28543,6 +28980,12 @@ Object.freeze({
28543
28980
  addonId: null,
28544
28981
  access: "create"
28545
28982
  },
28983
+ "recording.planStorageRebalance": {
28984
+ capName: "recording",
28985
+ capScope: "system",
28986
+ addonId: null,
28987
+ access: "view"
28988
+ },
28546
28989
  "recording.pruneFootage": {
28547
28990
  capName: "recording",
28548
28991
  capScope: "system",
@@ -28567,6 +29010,12 @@ Object.freeze({
28567
29010
  addonId: null,
28568
29011
  access: "create"
28569
29012
  },
29013
+ "recording.relocateFootage": {
29014
+ capName: "recording",
29015
+ capScope: "system",
29016
+ addonId: null,
29017
+ access: "create"
29018
+ },
28570
29019
  "recording.renderClip": {
28571
29020
  capName: "recording",
28572
29021
  capScope: "system",
@@ -28603,38 +29052,50 @@ Object.freeze({
28603
29052
  addonId: null,
28604
29053
  access: "create"
28605
29054
  },
29055
+ "recording.startStorageRebalance": {
29056
+ capName: "recording",
29057
+ capScope: "system",
29058
+ addonId: null,
29059
+ access: "create"
29060
+ },
28606
29061
  "recordingExport.cancelExport": {
28607
- capName: "recordingExport",
29062
+ capName: "recording-export",
28608
29063
  capScope: "system",
28609
29064
  addonId: null,
28610
29065
  access: "create"
28611
29066
  },
28612
29067
  "recordingExport.createExport": {
28613
- capName: "recordingExport",
29068
+ capName: "recording-export",
28614
29069
  capScope: "system",
28615
29070
  addonId: null,
28616
29071
  access: "create"
28617
29072
  },
28618
29073
  "recordingExport.deleteExport": {
28619
- capName: "recordingExport",
29074
+ capName: "recording-export",
28620
29075
  capScope: "system",
28621
29076
  addonId: null,
28622
29077
  access: "delete"
28623
29078
  },
28624
29079
  "recordingExport.getDownloadUrl": {
28625
- capName: "recordingExport",
29080
+ capName: "recording-export",
28626
29081
  capScope: "system",
28627
29082
  addonId: null,
28628
29083
  access: "view"
28629
29084
  },
28630
29085
  "recordingExport.getExport": {
28631
- capName: "recordingExport",
29086
+ capName: "recording-export",
28632
29087
  capScope: "system",
28633
29088
  addonId: null,
28634
29089
  access: "view"
28635
29090
  },
28636
29091
  "recordingExport.listExports": {
28637
- capName: "recordingExport",
29092
+ capName: "recording-export",
29093
+ capScope: "system",
29094
+ addonId: null,
29095
+ access: "view"
29096
+ },
29097
+ "recordingExport.readExportBytes": {
29098
+ capName: "recording-export",
28638
29099
  capScope: "system",
28639
29100
  addonId: null,
28640
29101
  access: "view"
@@ -30011,6 +30472,104 @@ var FramerateField = number().int().min(1).max(60);
30011
30472
  var TargetsField = array(NcRuleTargetSchema).min(1);
30012
30473
  var PriorityField = number().int().min(1).max(5);
30013
30474
  /**
30475
+ * Explicit override of the DENSE sampling cadence, seconds.
30476
+ *
30477
+ * Absent ⇒ derived as `max(1s, cadenceSec / 30)` — a 30 s base samples every
30478
+ * 1 s inside a detection range. (It was `base / 10` until 2026-08-12, which
30479
+ * made that same base 3 s and rendered a person pass as two frames.)
30480
+ *
30481
+ * THE ARITHMETIC. A detection range of `rangeSec` seconds sampled every
30482
+ * `denseCadenceSec` and played at `framerate` occupies
30483
+ *
30484
+ * outputSeconds = (rangeSec / denseCadenceSec) / framerate
30485
+ *
30486
+ * 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.
30487
+ * Halving this field doubles the frames INSIDE ranges only — the base cadence,
30488
+ * and therefore the length of a quiet night, does not move.
30489
+ *
30490
+ * Floored at {@link TIMELAPSE_DENSE_FLOOR_SEC}: asking for frames faster than
30491
+ * the recording has them returns the same frames, requested twice. Must be
30492
+ * STRICTLY smaller than `cadenceSec` — a dense rate that is not denser renders
30493
+ * a uniform video the operator believes is two-rate — and upsert refuses it
30494
+ * rather than letting the export cap reject the render hours after the window.
30495
+ */
30496
+ var DenseCadenceSecField = number().min(.1).max(3600);
30497
+ /**
30498
+ * Minimum seconds of OUTPUT video each detection range must occupy.
30499
+ *
30500
+ * The operator-facing form of the arithmetic above: instead of solving for a
30501
+ * cadence, state the dwell and let the renderer solve. `minDwellSec: 1` on a
30502
+ * 30 s base at 12 fps turns a 7 s pass into a full second of video by sampling
30503
+ * that range every ~583 ms.
30504
+ *
30505
+ * ONE CADENCE SERVES EVERY RANGE. `ExportDenseSchema.everyMs` is global — the
30506
+ * ranges are terms of a single ffmpeg `select` expression that cannot vary rate
30507
+ * per term — so the MOST DEMANDING (shortest) range sets the rate and longer
30508
+ * ranges are sampled denser than they need. Per-range cadences require a cap
30509
+ * schema change and are the tracked follow-up.
30510
+ *
30511
+ * A range too short to reach the dwell even at {@link TIMELAPSE_DENSE_FLOOR_SEC}
30512
+ * is rendered with every frame that EXISTS and no more: the guarantee is capped
30513
+ * by real footage, never met by duplicating frames into motion that never
30514
+ * happened.
30515
+ */
30516
+ var MinDwellSecField = number().min(0).max(60);
30517
+ /**
30518
+ * Caption burned into the notification's preview frame.
30519
+ *
30520
+ * Same `{{var}}` vocabulary as {@link TimelapseTemplateSchema} (`camera`,
30521
+ * `rule`, `from`, `to`) and rendered by the SAME renderer — a second
30522
+ * templating dialect for one field would be a second thing to explain.
30523
+ *
30524
+ * Absent ⇒ {@link DEFAULT_TIMELAPSE_PREVIEW_TEXT}. An EMPTY STRING is the
30525
+ * operator saying "the frame, no caption" — a distinct, reachable answer, and
30526
+ * the reason this is not `.min(1)`.
30527
+ */
30528
+ var PreviewTextField = string().max(200);
30529
+ /**
30530
+ * Whether the notification's preview is a STILL or a short animation.
30531
+ *
30532
+ * The operator's ask, verbatim: *"inviato come gif o video (come per le altre
30533
+ * rule)"* — his Scrypted advanced-notifier has a `gifRule`, and a ten-hour
30534
+ * night reads better as three seconds of motion than as one frame of it. Both
30535
+ * modes get the SAME treatment (blurred frame, large centred title); `'gif'`
30536
+ * simply applies it to a dozen frames sampled across the render and assembles
30537
+ * them.
30538
+ *
30539
+ * `'image'` is the default and stays the default: a GIF costs a dozen ffmpeg
30540
+ * seeks and a palette pass, and no rule that never asked for one should start
30541
+ * paying that on the deploy that shipped it.
30542
+ *
30543
+ * A GIF that cannot be assembled DEGRADES to the still — never to nothing.
30544
+ */
30545
+ var PreviewModeField = _enum(["image", "gif"]);
30546
+ /**
30547
+ * Which detection classes the notification reports counts for.
30548
+ *
30549
+ * The counts come from the tracks the render ALREADY fetched for its dense-range
30550
+ * plan — no second query — aggregated per class. Absent or empty means "every
30551
+ * class the window actually contained", which is what an operator who never
30552
+ * opened the field wants; a list narrows it (`['person']` on a driveway that
30553
+ * counts cars all night).
30554
+ *
30555
+ * Class names are the tracker's own (`person`, `vehicle`, `animal`, `package`,
30556
+ * …). An unknown name simply never matches and reports nothing — it is not an
30557
+ * error, because a rule may legitimately name a class this camera's model does
30558
+ * not emit.
30559
+ *
30560
+ * The counts are exposed to {@link TimelapseTemplateSchema} as:
30561
+ * - `{{detections}}` — total over the reported classes
30562
+ * - `{{detectionSummary}}` — `2 persone, 1 veicolo`
30563
+ * - `{{count_person}}` / `{{count_vehicle}}` / `{{count_animal}}` / … —
30564
+ * one per class, `count_` + the class name
30565
+ *
30566
+ * With NO custom body template the summary is appended to the derived body, and
30567
+ * only when the total is non-zero: a nightly `0 rilevamenti` is a line nobody
30568
+ * reads. With a custom template the operator owns every word — nothing is
30569
+ * appended, so `{{detectionSummary}}` is how he asks for it.
30570
+ */
30571
+ var ReportClassesField = array(string().min(1).max(40)).max(20);
30572
+ /**
30014
30573
  * Client-supplied timelapse-rule fields. The server stamps id / createdBy /
30015
30574
  * createdAt / updatedAt / ownerUserId / lastGeneratedAt — none of them appear
30016
30575
  * here (see the ownership note above).
@@ -30030,9 +30589,30 @@ var TimelapseRuleInputSchema = object({
30030
30589
  cadenceSec: CadenceSecField.default(15),
30031
30590
  /** Output frames per second of the assembled mp4 (predecessor parity). */
30032
30591
  framerate: FramerateField.default(10),
30592
+ /**
30593
+ * Explicit dense cadence — see {@link DenseCadenceSecField}. Absent ⇒ derived
30594
+ * as `max(1s, cadenceSec / 30)`, which is what every rule written before this
30595
+ * field gets.
30596
+ */
30597
+ denseCadenceSec: DenseCadenceSecField.optional(),
30598
+ /** Output-seconds guarantee per detection range — see {@link MinDwellSecField}. */
30599
+ minDwellSec: MinDwellSecField.optional(),
30033
30600
  /** `notification-output` targets the finished video/thumbnail is sent to. */
30034
30601
  targets: TargetsField,
30035
30602
  template: TimelapseTemplateSchema.optional(),
30603
+ /**
30604
+ * Caption on the notification's PREVIEW FRAME — see {@link PreviewTextField}
30605
+ * and {@link DEFAULT_TIMELAPSE_PREVIEW_TEXT}.
30606
+ *
30607
+ * Deliberately NOT part of {@link TimelapseTemplateSchema}: that object is
30608
+ * the notification's title/body, and clearing it (`template: null`) must not
30609
+ * silently clear the caption too.
30610
+ */
30611
+ previewText: PreviewTextField.optional(),
30612
+ /** Still or animation — see {@link PreviewModeField}. */
30613
+ previewMode: PreviewModeField.default("image"),
30614
+ /** Classes the notification counts — see {@link ReportClassesField}. */
30615
+ reportClasses: ReportClassesField.optional(),
30036
30616
  /** Canonical notification priority ordinal (1..5); per-target overridable. */
30037
30617
  priority: PriorityField.default(3)
30038
30618
  });
@@ -30043,8 +30623,13 @@ object({
30043
30623
  schedule: NcScheduleSchema.optional(),
30044
30624
  cadenceSec: CadenceSecField.optional(),
30045
30625
  framerate: FramerateField.optional(),
30626
+ denseCadenceSec: DenseCadenceSecField.optional(),
30627
+ minDwellSec: MinDwellSecField.optional(),
30046
30628
  targets: TargetsField.optional(),
30047
30629
  template: TimelapseTemplateSchema.nullable().optional(),
30630
+ previewText: PreviewTextField.optional(),
30631
+ previewMode: PreviewModeField.optional(),
30632
+ reportClasses: ReportClassesField.optional(),
30048
30633
  priority: PriorityField.optional()
30049
30634
  });
30050
30635
  TimelapseRuleInputSchema.extend({
@@ -30056,10 +30641,28 @@ TimelapseRuleInputSchema.extend({
30056
30641
  */
30057
30642
  ownerUserId: string().optional(),
30058
30643
  /**
30059
- * Epoch-ms of the last successful generation the 1-hour re-generation
30060
- * guard's durable state (predecessor parity). Absent = never generated.
30644
+ * Epoch-ms of the NEWEST successful generation across every camera of this
30645
+ * rule. What a UI shows, and the compatibility floor for
30646
+ * {@link readTimelapseGeneratedAt}. Absent = never generated.
30061
30647
  */
30062
30648
  lastGeneratedAt: number().optional(),
30649
+ /**
30650
+ * PER-CAMERA generation state, keyed by `String(deviceId)` — the
30651
+ * re-generation guard's real durable state.
30652
+ *
30653
+ * One rule covers several cameras and each renders its own video, so a rule
30654
+ * -wide stamp is wrong in the direction that DESTROYS work: camera A
30655
+ * succeeding at 06:05 tells camera B, whose render failed, that it is
30656
+ * already done — and B's night is gone for good, because the window will not
30657
+ * come back.
30658
+ *
30659
+ * ADDITIVE, so the migration is free: a row written before this field simply
30660
+ * has no map, and {@link readTimelapseGeneratedAt} falls back to
30661
+ * {@link TimelapseRuleSchema.shape.lastGeneratedAt}. Reading an old row as
30662
+ * "never generated" would re-render and re-notify every camera of every rule
30663
+ * once, on the deploy that shipped the map.
30664
+ */
30665
+ generatedByDevice: record(string(), number()).optional(),
30063
30666
  /** userId of the caller who created the rule (server-stamped). */
30064
30667
  createdBy: string(),
30065
30668
  createdAt: number(),
@@ -30192,7 +30795,7 @@ var AgentUIAddon = class extends BaseAddon {
30192
30795
  capability: adminUiCapability,
30193
30796
  provider: {
30194
30797
  getStaticDir: async () => ({ staticDir: path.resolve(__dirname) }),
30195
- getVersion: async () => ({ version: "1.2.13" })
30798
+ getVersion: async () => ({ version: "1.2.14" })
30196
30799
  }
30197
30800
  }];
30198
30801
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/addon-agent-ui",
3
- "version": "1.2.13",
3
+ "version": "1.2.14",
4
4
  "description": "Agent UI — lightweight status dashboard served by every agent node",
5
5
  "keywords": [
6
6
  "camstack",