@camstack/addon-provider-unraid 0.2.12 → 0.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 (3) hide show
  1. package/dist/addon.js +936 -48
  2. package/dist/addon.mjs +936 -48
  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
  *
@@ -7565,14 +7588,21 @@ var RecordingConfigSchema = object({
7565
7588
  /**
7566
7589
  * Entity-relocation job state (storage entity-routing spec, Phase 4).
7567
7590
  *
7568
- * One shape shared by the recorder's `relocateFootage` (segments) and
7569
- * pipeline-analytics' `relocateMedia` (event media blobs) so the admin Data
7570
- * page renders both movers with one component. Jobs are in-RAM (a restart
7571
- * forgets them re-running is safe by construction: copy-if-absent, delete
7572
- * after verify) and each completed/failed run also lands one durable ops-log
7573
- * row on the owning addon's surface.
7591
+ * One shape shared by the recorder and pipeline-analytics internal movers.
7592
+ * The public admin surface is `storage-migration`; child jobs remain in RAM
7593
+ * because copy-if-absent, verify, delete and index/row repoint are resumable.
7594
+ * Each completed/failed run also lands one durable ops-log row on its owning
7595
+ * addon surface.
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.
7574
7603
  */
7575
7604
  var RelocateJobStateSchema = _enum([
7605
+ "queued",
7576
7606
  "running",
7577
7607
  "done",
7578
7608
  "failed",
@@ -7597,19 +7627,109 @@ var RelocateJobSchema = object({
7597
7627
  finishedAt: number().nullable(),
7598
7628
  error: string().nullable()
7599
7629
  });
7630
+ /** Profile-derived footage selection used only by the migration coordinator:
7631
+ * `recordings` owns high+mid; `recordingsLow` owns low. */
7632
+ var RelocateFootageClassSchema = _enum(["recordings", "recordingsLow"]);
7600
7633
  var RelocateFootageInputSchema = object({
7601
- deviceId: number().optional(),
7602
7634
  fromLocationId: string(),
7603
7635
  toLocationId: string(),
7604
7636
  entities: array(_enum(["segments"])).optional(),
7637
+ /** Limits relocation to the logical profile class. Omit only for the
7638
+ * pre-orchestration compatibility path. */
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(),
7605
7649
  /** Copy throttle in MB/s (default 40) — the drain is a background chore,
7606
7650
  * never allowed to starve live writers. */
7607
7651
  throttleMbps: number().min(1).max(1e3).optional()
7608
7652
  });
7609
- var RelocateMediaInputSchema = object({
7610
- deviceId: number().optional(),
7653
+ /** Internal, lease-scoped participant operation. It is intentionally separate
7654
+ * from persistent recording settings: a migration never changes
7655
+ * `RecordingConfig.enabled` or camera wrapper bindings. */
7656
+ var StorageMigrationLeaseInputSchema = object({ leaseId: string().min(1) });
7657
+ var StorageMigrationFootageMoveInputSchema = RelocateFootageInputSchema.extend({ leaseId: string().min(1) });
7658
+ var StorageMigrationMediaMoveInputSchema = object({
7611
7659
  toLocationId: string(),
7612
7660
  throttleMbps: number().min(1).max(1e3).optional()
7661
+ }).extend({ leaseId: string().min(1) });
7662
+ /** The independently selectable logical storage classes. `recordings`
7663
+ * encompasses the high and mid segment profiles; `recordingsLow` is low
7664
+ * segments; `eventMedia` is post-analysis blobs. */
7665
+ var StorageMigrationClassSchema = _enum([
7666
+ "recordings",
7667
+ "recordingsLow",
7668
+ "eventMedia"
7669
+ ]);
7670
+ /** A destination is always an existing, fully-qualified location id. The
7671
+ * migration API intentionally never changes a source location's `basePath`:
7672
+ * callers create a new `<type>:<slug>` location, then select it here. */
7673
+ var StorageMigrationDestinationsSchema = object({
7674
+ recordings: string().min(1).optional(),
7675
+ recordingsLow: string().min(1).optional(),
7676
+ eventMedia: string().min(1).optional()
7677
+ }).refine((value) => Object.keys(value).length > 0, { message: "select at least one storage class" });
7678
+ /** Shared input for planning and starting an orchestrated storage migration. */
7679
+ var StorageMigrationInputSchema = object({
7680
+ destinations: StorageMigrationDestinationsSchema,
7681
+ throttleMbps: number().min(1).max(1e3).optional()
7682
+ });
7683
+ /** The durable coordinator state machine. The only phase that changes default
7684
+ * locations is `repointing`, after every selected mover has completed and been
7685
+ * verified. */
7686
+ var StorageMigrationPhaseSchema = _enum([
7687
+ "planning",
7688
+ "pausing",
7689
+ "moving",
7690
+ "verifying",
7691
+ "repointing",
7692
+ "refreshing",
7693
+ "resuming",
7694
+ "done",
7695
+ "failed",
7696
+ "cancelled"
7697
+ ]);
7698
+ var StorageMigrationParticipantSchema = _enum([
7699
+ "pipeline",
7700
+ "recorder",
7701
+ "analytics"
7702
+ ]);
7703
+ var StorageMigrationMoveSchema = object({
7704
+ storageClass: StorageMigrationClassSchema,
7705
+ fromLocationId: string(),
7706
+ toLocationId: string(),
7707
+ moverJobId: string().nullable(),
7708
+ state: RelocateJobStateSchema.nullable(),
7709
+ error: string().nullable()
7710
+ });
7711
+ var StorageMigrationJobSchema = object({
7712
+ jobId: string(),
7713
+ phase: StorageMigrationPhaseSchema,
7714
+ destinations: StorageMigrationDestinationsSchema,
7715
+ throttleMbps: number(),
7716
+ moves: array(StorageMigrationMoveSchema),
7717
+ pauseLeaseId: string().nullable(),
7718
+ pausedParticipants: array(StorageMigrationParticipantSchema),
7719
+ repointed: boolean(),
7720
+ cancelRequested: boolean(),
7721
+ startedAt: number(),
7722
+ updatedAt: number(),
7723
+ finishedAt: number().nullable(),
7724
+ error: string().nullable()
7725
+ });
7726
+ var StorageMigrationPlanSchema = object({
7727
+ destinations: StorageMigrationDestinationsSchema,
7728
+ moves: array(object({
7729
+ storageClass: StorageMigrationClassSchema,
7730
+ fromLocationId: string(),
7731
+ toLocationId: string()
7732
+ }))
7613
7733
  });
7614
7734
  /**
7615
7735
  * `StorageLocationType` — an addon-declared id that identifies the *kind* of
@@ -7661,6 +7781,21 @@ var StorageLocationSchema = object({
7661
7781
  nodeId: string().optional(),
7662
7782
  isDefault: boolean().default(false),
7663
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(),
7664
7799
  /** COMPUTED at read time by the orchestrator (statfs of the backing volume
7665
7800
  * for node-local locations it can reach) — never persisted, absent when the
7666
7801
  * volume is remote/unreachable. The single capacity truth every UI reads. */
@@ -12213,7 +12348,8 @@ method(object({
12213
12348
  }), EmbeddingResultSchema), method(object({ text: string() }), EmbeddingResultSchema), method(_void(), EmbeddingInfoSchema);
12214
12349
  /**
12215
12350
  * filesystem-browse — per-node capability for browsing the node's local
12216
- * 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
12217
12353
  * admin "Add filesystem location" flow to pick a node + path. `mode:'per-node'`
12218
12354
  * (one provider per node); the hub calls it with `{nodeId}` so the codegen
12219
12355
  * routes to that exact node (default `nodeIdMode:'routing'`).
@@ -14054,6 +14190,13 @@ var MaskGridDimsSchema = object({
14054
14190
  * `package-event` are pure trigger kinds (no urgency dimension). Extending
14055
14191
  * this one field keeps the schema additive — a rule still declares exactly
14056
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`.
14057
14200
  */
14058
14201
  var NcDeliverySchema = _enum([
14059
14202
  "immediate",
@@ -14068,15 +14211,32 @@ var NcDeliverySchema = _enum([
14068
14211
  * depend on a provider's raw event name or payload shape.
14069
14212
  */
14070
14213
  var NcSystemEventKindSchema = _enum([
14071
- "camera-online",
14072
- "camera-offline",
14214
+ "device-online",
14215
+ "device-offline",
14216
+ "device-disabled",
14217
+ "device-enabled",
14073
14218
  "stream-online",
14074
14219
  "stream-offline",
14075
14220
  "node-online",
14076
14221
  "node-offline",
14077
14222
  "addon-update-available",
14078
- "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"
14079
14238
  ]);
14239
+ NcSystemEventKindSchema.options.filter((kind) => !NC_LEGACY_SYSTEM_EVENT_KINDS.has(kind));
14080
14240
  /**
14081
14241
  * One coherent system-event condition. `kinds` is the required opt-in safety
14082
14242
  * gate; the remaining lists are optional narrowing filters relevant to the
@@ -14085,6 +14245,18 @@ var NcSystemEventKindSchema = _enum([
14085
14245
  var NcSystemEventConditionSchema = object({
14086
14246
  kinds: array(NcSystemEventKindSchema).min(1),
14087
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(),
14088
14260
  nodeIds: array(string().min(1)).min(1).optional(),
14089
14261
  packageNames: array(string().min(1)).min(1).optional()
14090
14262
  });
@@ -14135,6 +14307,47 @@ var NcOccupancyConditionSchema = object({
14135
14307
  sustainSeconds: number().int().min(0).max(3600).default(15)
14136
14308
  });
14137
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
+ /**
14138
14351
  * Which zone-crossing DIRECTION a rule accepts (`ObjectEvent.zoneCrossing`).
14139
14352
  *
14140
14353
  * The values are not symmetric, and deliberately so — the absent value has to
@@ -14407,7 +14620,33 @@ var NcConditionsSchema = object({
14407
14620
  * threshold and holds for `sustainSeconds`. Fail-closed on missing
14408
14621
  * substrate (no snapshot / missing zone). See {@link NcOccupancyCondition}.
14409
14622
  */
14410
- 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()
14411
14650
  });
14412
14651
  /** One delivery target: a `notification-output` Target ref + passthrough params. */
14413
14652
  var NcRuleTargetSchema = object({
@@ -14521,6 +14760,73 @@ var NcThrottleSchema = object({
14521
14760
  */
14522
14761
  granularity: NcThrottleGranularitySchema.optional()
14523
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
+ });
14524
14830
  /** Client-supplied rule fields (server stamps id/createdBy/createdAt/updatedAt). */
14525
14831
  var NcRuleInputSchema = object({
14526
14832
  name: string().min(1).max(200),
@@ -14581,7 +14887,13 @@ var NcRuleInputSchema = object({
14581
14887
  * `{ cap: 'alarm-panel', method: 'arm', args: { mode: 'away' } }`, the same
14582
14888
  * shape as every other actuation.
14583
14889
  */
14584
- 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()
14585
14897
  });
14586
14898
  /**
14587
14899
  * Partial patch for `updateRule` — any subset of the input fields, plus the
@@ -14592,7 +14904,37 @@ var NcRuleInputSchema = object({
14592
14904
  * still flow through `nc.setRuleTargetEnabled` (owner-checked), never a raw
14593
14905
  * `updateRule` patch.
14594
14906
  */
14595
- 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
+ });
14596
14938
  /** A persisted rule. */
14597
14939
  var NcRuleSchema = NcRuleInputSchema.extend({
14598
14940
  id: string(),
@@ -14893,6 +15235,25 @@ var NcAlarmSettingsPatchSchema = NcAlarmSettingsSchema.partial();
14893
15235
  * Never authored, never stored — see `alarm-mode-coverage.ts` for why a stored
14894
15236
  * copy would lie the first time a rule is disabled.
14895
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
+ });
14896
15257
  var NcAlarmModeCoverageSchema = object({
14897
15258
  mode: AlarmArmModeSchema,
14898
15259
  /** Enabled rules gated on `armed_<mode>`. Zero means the mode does nothing. */
@@ -14900,7 +15261,18 @@ var NcAlarmModeCoverageSchema = object({
14900
15261
  /** At least one covering rule has no device scope, so the mode covers all. */
14901
15262
  allDevices: boolean(),
14902
15263
  /** Ids named by the covering rules. A SUBSET when `allDevices` is true. */
14903
- 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([])
14904
15276
  });
14905
15277
  var NcAlarmConfigSchema = object({
14906
15278
  /**
@@ -16263,13 +16635,19 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
16263
16635
  }), method(object({ deviceId: number() }), EventPruneCountsSchema, {
16264
16636
  kind: "mutation",
16265
16637
  auth: "admin"
16266
- }), method(RelocateMediaInputSchema, object({ jobId: string() }), {
16638
+ }), method(StorageMigrationLeaseInputSchema, object({ paused: literal(true) }), {
16267
16639
  kind: "mutation",
16268
16640
  auth: "admin"
16269
- }), method(object({}), array(RelocateJobSchema).readonly(), {
16270
- kind: "query",
16641
+ }), method(StorageMigrationLeaseInputSchema, object({ resumed: literal(true) }), {
16642
+ kind: "mutation",
16271
16643
  auth: "admin"
16272
- }), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
16644
+ }), method(StorageMigrationLeaseInputSchema, object({ refreshed: literal(true) }), {
16645
+ kind: "mutation",
16646
+ auth: "admin"
16647
+ }), method(StorageMigrationMediaMoveInputSchema, object({ jobId: string() }), {
16648
+ kind: "mutation",
16649
+ auth: "admin"
16650
+ }), method(object({ jobId: string() }), RelocateJobSchema.nullable(), { auth: "admin" }), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
16273
16651
  kind: "mutation",
16274
16652
  auth: "admin"
16275
16653
  }), method(OpsLogQueryInputSchema, array(OpsLogEntrySchema).readonly(), {
@@ -17726,9 +18104,16 @@ var CameraStatusSchema = object({
17726
18104
  audio: CameraAudioStatusSchema.nullable(),
17727
18105
  recording: CameraRecordingStatusSchema.nullable(),
17728
18106
  /**
17729
- * Per-camera function switches an OPERATOR has turned off
18107
+ * Per-camera functions an OPERATOR has turned off
17730
18108
  * ([D61](../../../../docs/decisions/adr-0067.md)).
17731
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
+ *
17732
18117
  * This is the difference between DISABLED and BROKEN. A camera whose
17733
18118
  * `detection` block reports zero fps and whose `switchedOff` contains
17734
18119
  * `'object-detection'` was switched off by a person; the same camera with an
@@ -17799,7 +18184,13 @@ var NodeInferenceDevicesSchema = object({
17799
18184
  reachable: boolean(),
17800
18185
  devices: array(NodeInferenceDeviceSchema).readonly()
17801
18186
  });
17802
- method(object({
18187
+ method(StorageMigrationLeaseInputSchema, object({ paused: literal(true) }), {
18188
+ kind: "mutation",
18189
+ auth: "admin"
18190
+ }), method(StorageMigrationLeaseInputSchema, object({ resumed: literal(true) }), {
18191
+ kind: "mutation",
18192
+ auth: "admin"
18193
+ }), method(object({
17803
18194
  deviceId: number(),
17804
18195
  agentNodeId: string()
17805
18196
  }), object({ success: literal(true) }), {
@@ -18473,6 +18864,13 @@ method(object({ locationId: string() }), EvictableUsageSchema), method(object({
18473
18864
  locationId: string(),
18474
18865
  targetBytes: number().int().positive()
18475
18866
  }), EvictResultSchema, { kind: "mutation" });
18867
+ method(StorageMigrationInputSchema, StorageMigrationPlanSchema, { auth: "admin" }), method(StorageMigrationInputSchema, object({ jobId: string() }), {
18868
+ kind: "mutation",
18869
+ auth: "admin"
18870
+ }), method(object({ jobId: string().optional() }), StorageMigrationJobSchema.nullable(), { auth: "admin" }), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
18871
+ kind: "mutation",
18872
+ auth: "admin"
18873
+ });
18476
18874
  var ProviderInfoSchema = discriminatedUnion("shouldSaveDiskSpace", [object({
18477
18875
  providerId: string().min(1),
18478
18876
  displayName: string().min(1),
@@ -18576,6 +18974,28 @@ var TerminalProfileInfoSchema = object({
18576
18974
  label: string(),
18577
18975
  description: string().optional()
18578
18976
  });
18977
+ /**
18978
+ * A durable operator-created Terminal instance. Profiles are templates; only
18979
+ * an instance declares a camera.
18980
+ */
18981
+ var TerminalInstanceInfoSchema = object({
18982
+ instanceId: string(),
18983
+ cameraStableId: string(),
18984
+ nodeId: string(),
18985
+ profileId: string(),
18986
+ profileLabel: string(),
18987
+ name: string(),
18988
+ enabled: boolean()
18989
+ });
18990
+ var TerminalLegacyCameraSchema = object({
18991
+ stableId: string(),
18992
+ nodeId: string(),
18993
+ profileId: string(),
18994
+ profileLabel: string(),
18995
+ name: string(),
18996
+ /** Only legacy monitor cameras can retain their historic stable identity. */
18997
+ adoptable: boolean()
18998
+ });
18579
18999
  var TerminalOutputEventSchema = discriminatedUnion("kind", [object({
18580
19000
  seq: number().int().positive(),
18581
19001
  kind: literal("data"),
@@ -18592,7 +19012,29 @@ var TerminalOutputBatchSchema = object({
18592
19012
  snapshot: string().optional(),
18593
19013
  events: array(TerminalOutputEventSchema).readonly()
18594
19014
  });
18595
- method(_void(), array(TerminalProfileInfoSchema).readonly(), { auth: "admin" }), method(_void(), array(TerminalSessionInfoSchema).readonly(), { auth: "admin" }), method(object({
19015
+ method(_void(), array(TerminalProfileInfoSchema).readonly(), { auth: "admin" }), method(_void(), array(TerminalInstanceInfoSchema).readonly(), { auth: "admin" }), method(object({
19016
+ targetNodeId: string().min(1),
19017
+ profileId: string().min(1),
19018
+ name: string().trim().min(1).max(160).optional()
19019
+ }), TerminalInstanceInfoSchema, {
19020
+ kind: "mutation",
19021
+ auth: "admin"
19022
+ }), method(object({ instanceId: string().min(1) }), _void(), {
19023
+ kind: "mutation",
19024
+ auth: "admin"
19025
+ }), method(object({
19026
+ instanceId: string().min(1),
19027
+ enabled: boolean()
19028
+ }), TerminalInstanceInfoSchema, {
19029
+ kind: "mutation",
19030
+ auth: "admin"
19031
+ }), method(_void(), array(TerminalLegacyCameraSchema).readonly(), { auth: "admin" }), method(object({
19032
+ stableId: string().min(1),
19033
+ name: string().trim().min(1).max(160).optional()
19034
+ }), TerminalInstanceInfoSchema, {
19035
+ kind: "mutation",
19036
+ auth: "admin"
19037
+ }), method(_void(), array(TerminalSessionInfoSchema).readonly(), { auth: "admin" }), method(object({
18596
19038
  profileId: string(),
18597
19039
  cols: number().int().positive(),
18598
19040
  rows: number().int().positive()
@@ -18609,7 +19051,13 @@ method(_void(), array(TerminalProfileInfoSchema).readonly(), { auth: "admin" }),
18609
19051
  }), method(object({
18610
19052
  sessionId: string(),
18611
19053
  afterSeq: number().int().nonnegative(),
18612
- waitMs: number().int().min(0).max(2e3).default(0)
19054
+ waitMs: number().int().min(0).max(2e3).default(0),
19055
+ /**
19056
+ * Wait when a just-opened session has no output yet. Kept opt-in so a
19057
+ * browser's initial repaint remains immediate; the camera snapshot
19058
+ * relay uses it to avoid encoding a blank startup frame.
19059
+ */
19060
+ waitForOutput: boolean().optional()
18613
19061
  }), TerminalOutputBatchSchema, {
18614
19062
  kind: "mutation",
18615
19063
  auth: "admin",
@@ -21124,6 +21572,7 @@ var FaceInfoSchema = object({
21124
21572
  var FaceFilterEnum = _enum([
21125
21573
  "unassigned",
21126
21574
  "recognized",
21575
+ "identified",
21127
21576
  "all"
21128
21577
  ]);
21129
21578
  var MediaFileLiteSchema$1 = object({
@@ -21152,6 +21601,8 @@ method(_void(), array(IdentitySchema).readonly()), method(object({ name: string(
21152
21601
  kind: "mutation",
21153
21602
  auth: "admin"
21154
21603
  }), method(object({
21604
+ /** Restrict to one camera. Absent keeps the cluster-wide gallery view. */
21605
+ deviceId: number().int().optional(),
21155
21606
  limit: number().int().positive().optional(),
21156
21607
  filter: FaceFilterEnum.optional(),
21157
21608
  /**
@@ -23381,6 +23832,10 @@ var OsdSourceSchema = discriminatedUnion("kind", [
23381
23832
  capName: string().min(1).max(64),
23382
23833
  /** Dot path inside the slice, e.g. `detected`, `value`, `mode`. */
23383
23834
  valuePath: string().min(1).max(64)
23835
+ }),
23836
+ object({
23837
+ kind: literal("latest-recognition"),
23838
+ recognition: _enum(["person", "plate"])
23384
23839
  })
23385
23840
  ]);
23386
23841
  var OsdSlotBindingSchema = object({
@@ -23486,6 +23941,15 @@ method(object({ deviceId: number().int() }), object({
23486
23941
  }), object({ success: literal(true) }), {
23487
23942
  kind: "mutation",
23488
23943
  auth: "admin"
23944
+ }), method(object({
23945
+ sourceDeviceId: number().int(),
23946
+ targetDeviceId: number().int()
23947
+ }), object({
23948
+ copied: number().int().nonnegative(),
23949
+ skipped: number().int().nonnegative()
23950
+ }), {
23951
+ kind: "mutation",
23952
+ auth: "admin"
23489
23953
  }), method(object({
23490
23954
  deviceId: number().int(),
23491
23955
  slotId: string().min(1),
@@ -24408,7 +24872,19 @@ var RecordingManifestSchema = object({
24408
24872
  * profiles/subtrees/locations on this node). */
24409
24873
  var RecordingDeviceUsageSchema = object({
24410
24874
  deviceId: number(),
24411
- 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()
24412
24888
  });
24413
24889
  /** Recording storage usage + capacity for one storage location. */
24414
24890
  var RecordingLocationUsageSchema = object({
@@ -24436,6 +24912,57 @@ var RecordingStorageUsageSchema = object({
24436
24912
  locations: array(RecordingLocationUsageSchema)
24437
24913
  });
24438
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
+ /**
24439
24966
  * Result of locating footage at a wall-clock instant for one device/profile.
24440
24967
  * `segment` carries the covering segment's window; `gap` reports the forward
24441
24968
  * nearest covered edge (`null` past the end of footage / when none exists)
@@ -24583,6 +25110,21 @@ method(object({
24583
25110
  }), {
24584
25111
  kind: "mutation",
24585
25112
  auth: "admin"
25113
+ }), method(StorageMigrationLeaseInputSchema, object({ paused: literal(true) }), {
25114
+ kind: "mutation",
25115
+ auth: "admin"
25116
+ }), method(StorageMigrationLeaseInputSchema, object({ resumed: literal(true) }), {
25117
+ kind: "mutation",
25118
+ auth: "admin"
25119
+ }), method(StorageMigrationLeaseInputSchema, object({ refreshed: literal(true) }), {
25120
+ kind: "mutation",
25121
+ auth: "admin"
25122
+ }), method(StorageMigrationFootageMoveInputSchema, object({ jobId: string() }), {
25123
+ kind: "mutation",
25124
+ auth: "admin"
25125
+ }), method(object({ jobId: string() }), RelocateJobSchema.nullable(), { auth: "admin" }), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
25126
+ kind: "mutation",
25127
+ auth: "admin"
24586
25128
  }), method(RelocateFootageInputSchema, object({ jobId: string() }), {
24587
25129
  kind: "mutation",
24588
25130
  auth: "admin"
@@ -24592,9 +25134,15 @@ method(object({
24592
25134
  }), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
24593
25135
  kind: "mutation",
24594
25136
  auth: "admin"
25137
+ }), method(RecordingRebalanceInputSchema, RecordingRebalancePlanSchema, {
25138
+ kind: "query",
25139
+ auth: "admin"
25140
+ }), method(RecordingRebalanceInputSchema, RecordingRebalancePlanSchema, {
25141
+ kind: "mutation",
25142
+ auth: "admin"
24595
25143
  });
24596
25144
  /**
24597
- * `recordingExport` cap — render a footage time range into a single downloadable
25145
+ * `recording-export` cap — render a footage time range into a single downloadable
24598
25146
  * MP4 (regular / accelerated / decelerated / timelapse, ± audio), kept for a
24599
25147
  * bounded lifetime with a durable history, auto-expiry, and optional
24600
25148
  * delete-after-download.
@@ -24609,10 +25157,42 @@ method(object({
24609
25157
  */
24610
25158
  /** Playback-speed multiplier for the render (1 = realtime). */
24611
25159
  var ExportSpeedSchema = number().min(.25).max(32);
25160
+ /**
25161
+ * One dense interval, in SECONDS FROM THE EXPORT'S OWN `fromMs`.
25162
+ *
25163
+ * Relative and not absolute epoch on purpose: the renderer's frame-select
25164
+ * expression sees ffmpeg's `t`, which starts at 0 for the export's source
25165
+ * playlist. Handing it absolute epochs would make every call site responsible
25166
+ * for the same subtraction, and the one that forgot would emit a filter that
25167
+ * selects nothing — silently, as a uniform timelapse.
25168
+ */
25169
+ var ExportDenseRangeSchema = object({
25170
+ fromSec: number().nonnegative(),
25171
+ toSec: number().nonnegative()
25172
+ }).refine((r) => r.toSec > r.fromSec, { message: "dense range must have toSec > fromSec" });
25173
+ /**
25174
+ * Dense-interval overlay for a timelapse: sample at `dense.everyMs` INSIDE the
25175
+ * listed ranges and at the base `everyMs` everywhere else.
25176
+ *
25177
+ * `everyMs` must be strictly smaller than the base cadence — a dense rate that
25178
+ * is not denser renders a uniform timelapse the operator believes is two-rate.
25179
+ */
25180
+ var ExportDenseSchema = object({
25181
+ everyMs: number().int().positive(),
25182
+ ranges: array(ExportDenseRangeSchema).min(1).max(200)
25183
+ });
24612
25184
  /** Timelapse cadence — sample one source frame per `everyMs`, output at `outputFps`. */
24613
25185
  var ExportTimelapseSchema = object({
24614
25186
  everyMs: number().int().positive(),
24615
- outputFps: number().int().min(1).max(60).optional()
25187
+ outputFps: number().int().min(1).max(60).optional(),
25188
+ /** Optional second, FASTER rate over the intervals that matter. */
25189
+ dense: ExportDenseSchema.optional()
25190
+ }).superRefine((v, ctx) => {
25191
+ if (v.dense !== void 0 && v.dense.everyMs >= v.everyMs) ctx.addIssue({
25192
+ code: ZodIssueCode.custom,
25193
+ message: "dense.everyMs must be strictly smaller than the base everyMs",
25194
+ path: ["dense", "everyMs"]
25195
+ });
24616
25196
  });
24617
25197
  /**
24618
25198
  * Render options. `speed` and `timelapse` are mutually exclusive. `includeAudio`
@@ -24670,6 +25250,19 @@ var ExportDownloadSchema = object({
24670
25250
  url: string(),
24671
25251
  endpoints: array(string())
24672
25252
  });
25253
+ /**
25254
+ * A finished export's bytes, inline.
25255
+ *
25256
+ * `bytes` is the DECODED length — the number the caller bounds and logs
25257
+ * against, so nobody has to infer it from the base64 length.
25258
+ */
25259
+ var ExportBytesSchema = object({
25260
+ base64: string(),
25261
+ contentType: string(),
25262
+ /** Suggested filename, extension included. */
25263
+ name: string(),
25264
+ bytes: number().int().nonnegative()
25265
+ });
24673
25266
  method(object({
24674
25267
  deviceId: number(),
24675
25268
  profile: string(),
@@ -24694,6 +25287,9 @@ method(object({
24694
25287
  }), method(object({ exportId: string() }), ExportDownloadSchema, {
24695
25288
  kind: "query",
24696
25289
  auth: "protected"
25290
+ }), method(object({ exportId: string() }), ExportBytesSchema, {
25291
+ kind: "query",
25292
+ auth: "protected"
24697
25293
  });
24698
25294
  /**
24699
25295
  * scene-monitor — device-scoped reference-region state cap. An operator marks
@@ -30195,6 +30791,12 @@ Object.freeze({
30195
30791
  addonId: null,
30196
30792
  access: "delete"
30197
30793
  },
30794
+ "osdManager.copyDeviceConfiguration": {
30795
+ capName: "osd-manager",
30796
+ capScope: "system",
30797
+ addonId: null,
30798
+ access: "create"
30799
+ },
30198
30800
  "osdManager.getConditionSupport": {
30199
30801
  capName: "osd-manager",
30200
30802
  capScope: "system",
@@ -30291,7 +30893,7 @@ Object.freeze({
30291
30893
  addonId: null,
30292
30894
  access: "create"
30293
30895
  },
30294
- "pipelineAnalytics.cancelMediaRelocate": {
30896
+ "pipelineAnalytics.cancelStorageMigrationMove": {
30295
30897
  capName: "pipeline-analytics",
30296
30898
  capScope: "device",
30297
30899
  addonId: null,
@@ -30363,12 +30965,6 @@ Object.freeze({
30363
30965
  addonId: null,
30364
30966
  access: "view"
30365
30967
  },
30366
- "pipelineAnalytics.getMediaRelocateStatus": {
30367
- capName: "pipeline-analytics",
30368
- capScope: "device",
30369
- addonId: null,
30370
- access: "view"
30371
- },
30372
30968
  "pipelineAnalytics.getMotionEvents": {
30373
30969
  capName: "pipeline-analytics",
30374
30970
  capScope: "device",
@@ -30405,6 +31001,12 @@ Object.freeze({
30405
31001
  addonId: null,
30406
31002
  access: "view"
30407
31003
  },
31004
+ "pipelineAnalytics.getStorageMigrationMoveStatus": {
31005
+ capName: "pipeline-analytics",
31006
+ capScope: "device",
31007
+ addonId: null,
31008
+ access: "view"
31009
+ },
30408
31010
  "pipelineAnalytics.getTrack": {
30409
31011
  capName: "pipeline-analytics",
30410
31012
  capScope: "device",
@@ -30483,6 +31085,12 @@ Object.freeze({
30483
31085
  addonId: null,
30484
31086
  access: "view"
30485
31087
  },
31088
+ "pipelineAnalytics.pauseForStorageMigration": {
31089
+ capName: "pipeline-analytics",
31090
+ capScope: "device",
31091
+ addonId: null,
31092
+ access: "create"
31093
+ },
30486
31094
  "pipelineAnalytics.proposeRetrainAnnotations": {
30487
31095
  capName: "pipeline-analytics",
30488
31096
  capScope: "device",
@@ -30513,7 +31121,7 @@ Object.freeze({
30513
31121
  addonId: null,
30514
31122
  access: "create"
30515
31123
  },
30516
- "pipelineAnalytics.relocateMedia": {
31124
+ "pipelineAnalytics.refreshStorageLocationsForMigration": {
30517
31125
  capName: "pipeline-analytics",
30518
31126
  capScope: "device",
30519
31127
  addonId: null,
@@ -30525,6 +31133,12 @@ Object.freeze({
30525
31133
  addonId: null,
30526
31134
  access: "create"
30527
31135
  },
31136
+ "pipelineAnalytics.resumeForStorageMigration": {
31137
+ capName: "pipeline-analytics",
31138
+ capScope: "device",
31139
+ addonId: null,
31140
+ access: "create"
31141
+ },
30528
31142
  "pipelineAnalytics.saveRetrainAnnotations": {
30529
31143
  capName: "pipeline-analytics",
30530
31144
  capScope: "device",
@@ -30549,6 +31163,12 @@ Object.freeze({
30549
31163
  addonId: null,
30550
31164
  access: "create"
30551
31165
  },
31166
+ "pipelineAnalytics.startStorageMigrationMove": {
31167
+ capName: "pipeline-analytics",
31168
+ capScope: "device",
31169
+ addonId: null,
31170
+ access: "create"
31171
+ },
30552
31172
  "pipelineAnalytics.wipeAllAnalytics": {
30553
31173
  capName: "pipeline-analytics",
30554
31174
  capScope: "device",
@@ -30915,6 +31535,12 @@ Object.freeze({
30915
31535
  addonId: null,
30916
31536
  access: "view"
30917
31537
  },
31538
+ "pipelineOrchestrator.pauseForStorageMigration": {
31539
+ capName: "pipeline-orchestrator",
31540
+ capScope: "system",
31541
+ addonId: null,
31542
+ access: "create"
31543
+ },
30918
31544
  "pipelineOrchestrator.rebalance": {
30919
31545
  capName: "pipeline-orchestrator",
30920
31546
  capScope: "system",
@@ -30939,6 +31565,12 @@ Object.freeze({
30939
31565
  addonId: null,
30940
31566
  access: "view"
30941
31567
  },
31568
+ "pipelineOrchestrator.resumeForStorageMigration": {
31569
+ capName: "pipeline-orchestrator",
31570
+ capScope: "system",
31571
+ addonId: null,
31572
+ access: "create"
31573
+ },
30942
31574
  "pipelineOrchestrator.saveTemplate": {
30943
31575
  capName: "pipeline-orchestrator",
30944
31576
  capScope: "system",
@@ -31335,7 +31967,13 @@ Object.freeze({
31335
31967
  addonId: null,
31336
31968
  access: "create"
31337
31969
  },
31338
- "recording.cancelRelocate": {
31970
+ "recording.cancelRelocateJob": {
31971
+ capName: "recording",
31972
+ capScope: "system",
31973
+ addonId: null,
31974
+ access: "create"
31975
+ },
31976
+ "recording.cancelStorageMigrationMove": {
31339
31977
  capName: "recording",
31340
31978
  capScope: "system",
31341
31979
  addonId: null,
@@ -31371,7 +32009,7 @@ Object.freeze({
31371
32009
  addonId: null,
31372
32010
  access: "view"
31373
32011
  },
31374
- "recording.getRelocateStatus": {
32012
+ "recording.getStorageMigrationMoveStatus": {
31375
32013
  capName: "recording",
31376
32014
  capScope: "system",
31377
32015
  addonId: null,
@@ -31389,12 +32027,30 @@ Object.freeze({
31389
32027
  addonId: null,
31390
32028
  access: "view"
31391
32029
  },
32030
+ "recording.listRelocateJobs": {
32031
+ capName: "recording",
32032
+ capScope: "system",
32033
+ addonId: null,
32034
+ access: "view"
32035
+ },
31392
32036
  "recording.locateSegment": {
31393
32037
  capName: "recording",
31394
32038
  capScope: "system",
31395
32039
  addonId: null,
31396
32040
  access: "view"
31397
32041
  },
32042
+ "recording.pauseForStorageMigration": {
32043
+ capName: "recording",
32044
+ capScope: "system",
32045
+ addonId: null,
32046
+ access: "create"
32047
+ },
32048
+ "recording.planStorageRebalance": {
32049
+ capName: "recording",
32050
+ capScope: "system",
32051
+ addonId: null,
32052
+ access: "view"
32053
+ },
31398
32054
  "recording.pruneFootage": {
31399
32055
  capName: "recording",
31400
32056
  capScope: "system",
@@ -31413,6 +32069,12 @@ Object.freeze({
31413
32069
  addonId: null,
31414
32070
  access: "view"
31415
32071
  },
32072
+ "recording.refreshStorageLocationsForMigration": {
32073
+ capName: "recording",
32074
+ capScope: "system",
32075
+ addonId: null,
32076
+ access: "create"
32077
+ },
31416
32078
  "recording.relocateFootage": {
31417
32079
  capName: "recording",
31418
32080
  capScope: "system",
@@ -31437,44 +32099,68 @@ Object.freeze({
31437
32099
  addonId: null,
31438
32100
  access: "create"
31439
32101
  },
32102
+ "recording.resumeForStorageMigration": {
32103
+ capName: "recording",
32104
+ capScope: "system",
32105
+ addonId: null,
32106
+ access: "create"
32107
+ },
31440
32108
  "recording.setDeviceConfig": {
31441
32109
  capName: "recording",
31442
32110
  capScope: "system",
31443
32111
  addonId: null,
31444
32112
  access: "create"
31445
32113
  },
32114
+ "recording.startStorageMigrationMove": {
32115
+ capName: "recording",
32116
+ capScope: "system",
32117
+ addonId: null,
32118
+ access: "create"
32119
+ },
32120
+ "recording.startStorageRebalance": {
32121
+ capName: "recording",
32122
+ capScope: "system",
32123
+ addonId: null,
32124
+ access: "create"
32125
+ },
31446
32126
  "recordingExport.cancelExport": {
31447
- capName: "recordingExport",
32127
+ capName: "recording-export",
31448
32128
  capScope: "system",
31449
32129
  addonId: null,
31450
32130
  access: "create"
31451
32131
  },
31452
32132
  "recordingExport.createExport": {
31453
- capName: "recordingExport",
32133
+ capName: "recording-export",
31454
32134
  capScope: "system",
31455
32135
  addonId: null,
31456
32136
  access: "create"
31457
32137
  },
31458
32138
  "recordingExport.deleteExport": {
31459
- capName: "recordingExport",
32139
+ capName: "recording-export",
31460
32140
  capScope: "system",
31461
32141
  addonId: null,
31462
32142
  access: "delete"
31463
32143
  },
31464
32144
  "recordingExport.getDownloadUrl": {
31465
- capName: "recordingExport",
32145
+ capName: "recording-export",
31466
32146
  capScope: "system",
31467
32147
  addonId: null,
31468
32148
  access: "view"
31469
32149
  },
31470
32150
  "recordingExport.getExport": {
31471
- capName: "recordingExport",
32151
+ capName: "recording-export",
31472
32152
  capScope: "system",
31473
32153
  addonId: null,
31474
32154
  access: "view"
31475
32155
  },
31476
32156
  "recordingExport.listExports": {
31477
- capName: "recordingExport",
32157
+ capName: "recording-export",
32158
+ capScope: "system",
32159
+ addonId: null,
32160
+ access: "view"
32161
+ },
32162
+ "recordingExport.readExportBytes": {
32163
+ capName: "recording-export",
31478
32164
  capScope: "system",
31479
32165
  addonId: null,
31480
32166
  access: "view"
@@ -31833,6 +32519,30 @@ Object.freeze({
31833
32519
  addonId: null,
31834
32520
  access: "view"
31835
32521
  },
32522
+ "storageMigration.cancel": {
32523
+ capName: "storage-migration",
32524
+ capScope: "system",
32525
+ addonId: null,
32526
+ access: "create"
32527
+ },
32528
+ "storageMigration.plan": {
32529
+ capName: "storage-migration",
32530
+ capScope: "system",
32531
+ addonId: null,
32532
+ access: "view"
32533
+ },
32534
+ "storageMigration.start": {
32535
+ capName: "storage-migration",
32536
+ capScope: "system",
32537
+ addonId: null,
32538
+ access: "create"
32539
+ },
32540
+ "storageMigration.status": {
32541
+ capName: "storage-migration",
32542
+ capScope: "system",
32543
+ addonId: null,
32544
+ access: "view"
32545
+ },
31836
32546
  "storageProvider.abortUpload": {
31837
32547
  capName: "storage-provider",
31838
32548
  capScope: "system",
@@ -32211,12 +32921,42 @@ Object.freeze({
32211
32921
  addonId: null,
32212
32922
  access: "create"
32213
32923
  },
32924
+ "terminalSession.adoptLegacyMonitor": {
32925
+ capName: "terminal-session",
32926
+ capScope: "system",
32927
+ addonId: null,
32928
+ access: "create"
32929
+ },
32214
32930
  "terminalSession.close": {
32215
32931
  capName: "terminal-session",
32216
32932
  capScope: "system",
32217
32933
  addonId: null,
32218
32934
  access: "create"
32219
32935
  },
32936
+ "terminalSession.createInstance": {
32937
+ capName: "terminal-session",
32938
+ capScope: "system",
32939
+ addonId: null,
32940
+ access: "create"
32941
+ },
32942
+ "terminalSession.deleteInstance": {
32943
+ capName: "terminal-session",
32944
+ capScope: "system",
32945
+ addonId: null,
32946
+ access: "delete"
32947
+ },
32948
+ "terminalSession.listInstances": {
32949
+ capName: "terminal-session",
32950
+ capScope: "system",
32951
+ addonId: null,
32952
+ access: "view"
32953
+ },
32954
+ "terminalSession.listLegacyCameras": {
32955
+ capName: "terminal-session",
32956
+ capScope: "system",
32957
+ addonId: null,
32958
+ access: "view"
32959
+ },
32220
32960
  "terminalSession.listProfiles": {
32221
32961
  capName: "terminal-session",
32222
32962
  capScope: "system",
@@ -32247,6 +32987,12 @@ Object.freeze({
32247
32987
  addonId: null,
32248
32988
  access: "create"
32249
32989
  },
32990
+ "terminalSession.setInstanceEnabled": {
32991
+ capName: "terminal-session",
32992
+ capScope: "system",
32993
+ addonId: null,
32994
+ access: "create"
32995
+ },
32250
32996
  "terminalSession.writeInput": {
32251
32997
  capName: "terminal-session",
32252
32998
  capScope: "system",
@@ -32791,6 +33537,104 @@ var FramerateField = number().int().min(1).max(60);
32791
33537
  var TargetsField = array(NcRuleTargetSchema).min(1);
32792
33538
  var PriorityField = number().int().min(1).max(5);
32793
33539
  /**
33540
+ * Explicit override of the DENSE sampling cadence, seconds.
33541
+ *
33542
+ * Absent ⇒ derived as `max(1s, cadenceSec / 30)` — a 30 s base samples every
33543
+ * 1 s inside a detection range. (It was `base / 10` until 2026-08-12, which
33544
+ * made that same base 3 s and rendered a person pass as two frames.)
33545
+ *
33546
+ * THE ARITHMETIC. A detection range of `rangeSec` seconds sampled every
33547
+ * `denseCadenceSec` and played at `framerate` occupies
33548
+ *
33549
+ * outputSeconds = (rangeSec / denseCadenceSec) / framerate
33550
+ *
33551
+ * 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.
33552
+ * Halving this field doubles the frames INSIDE ranges only — the base cadence,
33553
+ * and therefore the length of a quiet night, does not move.
33554
+ *
33555
+ * Floored at {@link TIMELAPSE_DENSE_FLOOR_SEC}: asking for frames faster than
33556
+ * the recording has them returns the same frames, requested twice. Must be
33557
+ * STRICTLY smaller than `cadenceSec` — a dense rate that is not denser renders
33558
+ * a uniform video the operator believes is two-rate — and upsert refuses it
33559
+ * rather than letting the export cap reject the render hours after the window.
33560
+ */
33561
+ var DenseCadenceSecField = number().min(.1).max(3600);
33562
+ /**
33563
+ * Minimum seconds of OUTPUT video each detection range must occupy.
33564
+ *
33565
+ * The operator-facing form of the arithmetic above: instead of solving for a
33566
+ * cadence, state the dwell and let the renderer solve. `minDwellSec: 1` on a
33567
+ * 30 s base at 12 fps turns a 7 s pass into a full second of video by sampling
33568
+ * that range every ~583 ms.
33569
+ *
33570
+ * ONE CADENCE SERVES EVERY RANGE. `ExportDenseSchema.everyMs` is global — the
33571
+ * ranges are terms of a single ffmpeg `select` expression that cannot vary rate
33572
+ * per term — so the MOST DEMANDING (shortest) range sets the rate and longer
33573
+ * ranges are sampled denser than they need. Per-range cadences require a cap
33574
+ * schema change and are the tracked follow-up.
33575
+ *
33576
+ * A range too short to reach the dwell even at {@link TIMELAPSE_DENSE_FLOOR_SEC}
33577
+ * is rendered with every frame that EXISTS and no more: the guarantee is capped
33578
+ * by real footage, never met by duplicating frames into motion that never
33579
+ * happened.
33580
+ */
33581
+ var MinDwellSecField = number().min(0).max(60);
33582
+ /**
33583
+ * Caption burned into the notification's preview frame.
33584
+ *
33585
+ * Same `{{var}}` vocabulary as {@link TimelapseTemplateSchema} (`camera`,
33586
+ * `rule`, `from`, `to`) and rendered by the SAME renderer — a second
33587
+ * templating dialect for one field would be a second thing to explain.
33588
+ *
33589
+ * Absent ⇒ {@link DEFAULT_TIMELAPSE_PREVIEW_TEXT}. An EMPTY STRING is the
33590
+ * operator saying "the frame, no caption" — a distinct, reachable answer, and
33591
+ * the reason this is not `.min(1)`.
33592
+ */
33593
+ var PreviewTextField = string().max(200);
33594
+ /**
33595
+ * Whether the notification's preview is a STILL or a short animation.
33596
+ *
33597
+ * The operator's ask, verbatim: *"inviato come gif o video (come per le altre
33598
+ * rule)"* — his Scrypted advanced-notifier has a `gifRule`, and a ten-hour
33599
+ * night reads better as three seconds of motion than as one frame of it. Both
33600
+ * modes get the SAME treatment (blurred frame, large centred title); `'gif'`
33601
+ * simply applies it to a dozen frames sampled across the render and assembles
33602
+ * them.
33603
+ *
33604
+ * `'image'` is the default and stays the default: a GIF costs a dozen ffmpeg
33605
+ * seeks and a palette pass, and no rule that never asked for one should start
33606
+ * paying that on the deploy that shipped it.
33607
+ *
33608
+ * A GIF that cannot be assembled DEGRADES to the still — never to nothing.
33609
+ */
33610
+ var PreviewModeField = _enum(["image", "gif"]);
33611
+ /**
33612
+ * Which detection classes the notification reports counts for.
33613
+ *
33614
+ * The counts come from the tracks the render ALREADY fetched for its dense-range
33615
+ * plan — no second query — aggregated per class. Absent or empty means "every
33616
+ * class the window actually contained", which is what an operator who never
33617
+ * opened the field wants; a list narrows it (`['person']` on a driveway that
33618
+ * counts cars all night).
33619
+ *
33620
+ * Class names are the tracker's own (`person`, `vehicle`, `animal`, `package`,
33621
+ * …). An unknown name simply never matches and reports nothing — it is not an
33622
+ * error, because a rule may legitimately name a class this camera's model does
33623
+ * not emit.
33624
+ *
33625
+ * The counts are exposed to {@link TimelapseTemplateSchema} as:
33626
+ * - `{{detections}}` — total over the reported classes
33627
+ * - `{{detectionSummary}}` — `2 persone, 1 veicolo`
33628
+ * - `{{count_person}}` / `{{count_vehicle}}` / `{{count_animal}}` / … —
33629
+ * one per class, `count_` + the class name
33630
+ *
33631
+ * With NO custom body template the summary is appended to the derived body, and
33632
+ * only when the total is non-zero: a nightly `0 rilevamenti` is a line nobody
33633
+ * reads. With a custom template the operator owns every word — nothing is
33634
+ * appended, so `{{detectionSummary}}` is how he asks for it.
33635
+ */
33636
+ var ReportClassesField = array(string().min(1).max(40)).max(20);
33637
+ /**
32794
33638
  * Client-supplied timelapse-rule fields. The server stamps id / createdBy /
32795
33639
  * createdAt / updatedAt / ownerUserId / lastGeneratedAt — none of them appear
32796
33640
  * here (see the ownership note above).
@@ -32810,9 +33654,30 @@ var TimelapseRuleInputSchema = object({
32810
33654
  cadenceSec: CadenceSecField.default(15),
32811
33655
  /** Output frames per second of the assembled mp4 (predecessor parity). */
32812
33656
  framerate: FramerateField.default(10),
33657
+ /**
33658
+ * Explicit dense cadence — see {@link DenseCadenceSecField}. Absent ⇒ derived
33659
+ * as `max(1s, cadenceSec / 30)`, which is what every rule written before this
33660
+ * field gets.
33661
+ */
33662
+ denseCadenceSec: DenseCadenceSecField.optional(),
33663
+ /** Output-seconds guarantee per detection range — see {@link MinDwellSecField}. */
33664
+ minDwellSec: MinDwellSecField.optional(),
32813
33665
  /** `notification-output` targets the finished video/thumbnail is sent to. */
32814
33666
  targets: TargetsField,
32815
33667
  template: TimelapseTemplateSchema.optional(),
33668
+ /**
33669
+ * Caption on the notification's PREVIEW FRAME — see {@link PreviewTextField}
33670
+ * and {@link DEFAULT_TIMELAPSE_PREVIEW_TEXT}.
33671
+ *
33672
+ * Deliberately NOT part of {@link TimelapseTemplateSchema}: that object is
33673
+ * the notification's title/body, and clearing it (`template: null`) must not
33674
+ * silently clear the caption too.
33675
+ */
33676
+ previewText: PreviewTextField.optional(),
33677
+ /** Still or animation — see {@link PreviewModeField}. */
33678
+ previewMode: PreviewModeField.default("image"),
33679
+ /** Classes the notification counts — see {@link ReportClassesField}. */
33680
+ reportClasses: ReportClassesField.optional(),
32816
33681
  /** Canonical notification priority ordinal (1..5); per-target overridable. */
32817
33682
  priority: PriorityField.default(3)
32818
33683
  });
@@ -32823,8 +33688,13 @@ object({
32823
33688
  schedule: NcScheduleSchema.optional(),
32824
33689
  cadenceSec: CadenceSecField.optional(),
32825
33690
  framerate: FramerateField.optional(),
33691
+ denseCadenceSec: DenseCadenceSecField.optional(),
33692
+ minDwellSec: MinDwellSecField.optional(),
32826
33693
  targets: TargetsField.optional(),
32827
33694
  template: TimelapseTemplateSchema.nullable().optional(),
33695
+ previewText: PreviewTextField.optional(),
33696
+ previewMode: PreviewModeField.optional(),
33697
+ reportClasses: ReportClassesField.optional(),
32828
33698
  priority: PriorityField.optional()
32829
33699
  });
32830
33700
  TimelapseRuleInputSchema.extend({
@@ -32836,10 +33706,28 @@ TimelapseRuleInputSchema.extend({
32836
33706
  */
32837
33707
  ownerUserId: string().optional(),
32838
33708
  /**
32839
- * Epoch-ms of the last successful generation the 1-hour re-generation
32840
- * guard's durable state (predecessor parity). Absent = never generated.
33709
+ * Epoch-ms of the NEWEST successful generation across every camera of this
33710
+ * rule. What a UI shows, and the compatibility floor for
33711
+ * {@link readTimelapseGeneratedAt}. Absent = never generated.
32841
33712
  */
32842
33713
  lastGeneratedAt: number().optional(),
33714
+ /**
33715
+ * PER-CAMERA generation state, keyed by `String(deviceId)` — the
33716
+ * re-generation guard's real durable state.
33717
+ *
33718
+ * One rule covers several cameras and each renders its own video, so a rule
33719
+ * -wide stamp is wrong in the direction that DESTROYS work: camera A
33720
+ * succeeding at 06:05 tells camera B, whose render failed, that it is
33721
+ * already done — and B's night is gone for good, because the window will not
33722
+ * come back.
33723
+ *
33724
+ * ADDITIVE, so the migration is free: a row written before this field simply
33725
+ * has no map, and {@link readTimelapseGeneratedAt} falls back to
33726
+ * {@link TimelapseRuleSchema.shape.lastGeneratedAt}. Reading an old row as
33727
+ * "never generated" would re-render and re-notify every camera of every rule
33728
+ * once, on the deploy that shipped the map.
33729
+ */
33730
+ generatedByDevice: record(string(), number()).optional(),
32843
33731
  /** userId of the caller who created the rule (server-stamped). */
32844
33732
  createdBy: string(),
32845
33733
  createdAt: number(),