@camstack/addon-static-turn 1.2.11 → 1.2.13

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.
@@ -7189,8 +7189,31 @@ var AdoptionJobSchema = object({
7189
7189
  error: string().nullable()
7190
7190
  });
7191
7191
  /**
7192
- * Per-camera FUNCTION SWITCHES — the one coherent on/off surface over the
7193
- * pipeline functions an operator thinks in terms of.
7192
+ * Per-camera FUNCTION SWITCHES.
7193
+ *
7194
+ * ## The aggregate group is being withdrawn — the BADGE is not (D113)
7195
+ *
7196
+ * This file shipped as "the one coherent on/off surface over the pipeline
7197
+ * functions an operator thinks in terms of". The operator's verdict on
7198
+ * 2026-08-12 was that the coherent surface bought complexity and no clarity:
7199
+ * every function already had a settings page of its own, and a second place to
7200
+ * turn it off is a second place to look. Each switch is going back to its own
7201
+ * component's original options — detection to the detection-pipeline wrapper
7202
+ * binding, audio analysis to its own, recording to `RecordingConfig.enabled`
7203
+ * (which was always first-class; the switch was a veneer over
7204
+ * `recording.setDeviceConfig`), notifications to a notification-center
7205
+ * per-device setting, the two camera planes to their own components.
7206
+ *
7207
+ * What survives is {@link composeSwitchedOff}: `CameraStatus.switchedOff`, the
7208
+ * thing that lets a status surface say DISABLED instead of BROKEN, recomposed
7209
+ * straight from the authorities with no group in the middle. That rule was
7210
+ * never about a control panel.
7211
+ *
7212
+ * Everything else here — {@link CAMERA_SWITCH_CATALOG}, {@link CameraSwitch},
7213
+ * {@link deriveCameraSwitches}, the `pipelineOrchestrator.getCameraSwitches` /
7214
+ * `setCameraSwitch` pair — is a COMPATIBILITY surface for as long as deployed
7215
+ * viewers (v1.0.305) and the admin UI still call it. It is deleted when they
7216
+ * stop; nothing new may be built on it.
7194
7217
  *
7195
7218
  * ## This file adds no state
7196
7219
  *
@@ -7535,14 +7558,21 @@ var RecordingConfigSchema = object({
7535
7558
  /**
7536
7559
  * Entity-relocation job state (storage entity-routing spec, Phase 4).
7537
7560
  *
7538
- * One shape shared by the recorder's `relocateFootage` (segments) and
7539
- * pipeline-analytics' `relocateMedia` (event media blobs) so the admin Data
7540
- * page renders both movers with one component. Jobs are in-RAM (a restart
7541
- * forgets them re-running is safe by construction: copy-if-absent, delete
7542
- * after verify) and each completed/failed run also lands one durable ops-log
7543
- * row on the owning addon's surface.
7561
+ * One shape shared by the recorder and pipeline-analytics internal movers.
7562
+ * The public admin surface is `storage-migration`; child jobs remain in RAM
7563
+ * because copy-if-absent, verify, delete and index/row repoint are resumable.
7564
+ * Each completed/failed run also lands one durable ops-log row on its owning
7565
+ * addon surface.
7566
+ */
7567
+ /**
7568
+ * `queued` exists because the recorder mover is SINGLE-FLIGHT and an operator
7569
+ * rebalance enqueues one job per (camera, profile). Refusing the second job —
7570
+ * what the engine did before — turned a fifteen-camera rebalance into fifteen
7571
+ * manual retries. Queued jobs run FIFO; a queued job that is cancelled never
7572
+ * runs at all.
7544
7573
  */
7545
7574
  var RelocateJobStateSchema = _enum([
7575
+ "queued",
7546
7576
  "running",
7547
7577
  "done",
7548
7578
  "failed",
@@ -7567,19 +7597,109 @@ var RelocateJobSchema = object({
7567
7597
  finishedAt: number().nullable(),
7568
7598
  error: string().nullable()
7569
7599
  });
7600
+ /** Profile-derived footage selection used only by the migration coordinator:
7601
+ * `recordings` owns high+mid; `recordingsLow` owns low. */
7602
+ var RelocateFootageClassSchema = _enum(["recordings", "recordingsLow"]);
7570
7603
  var RelocateFootageInputSchema = object({
7571
- deviceId: number().optional(),
7572
7604
  fromLocationId: string(),
7573
7605
  toLocationId: string(),
7574
7606
  entities: array(_enum(["segments"])).optional(),
7607
+ /** Limits relocation to the logical profile class. Omit only for the
7608
+ * pre-orchestration compatibility path. */
7609
+ footageClass: RelocateFootageClassSchema.optional(),
7610
+ /** Scope the move to ONE camera. Absent = every camera on the source, which
7611
+ * is what a whole-disk drain means. The rebalance path always sets it: its
7612
+ * unit is a (camera, profile) pile, not a disk. */
7613
+ deviceId: number().int().optional(),
7614
+ /** Scope the move to specific segment profiles (`high` / `mid` / `low`).
7615
+ * Finer than `footageClass`, which cannot separate high from mid — and the
7616
+ * placement plan assigns those two independently, so a rebalance that could
7617
+ * only say "recordings" would move footage the plan never asked to move. */
7618
+ profiles: array(string()).optional(),
7575
7619
  /** Copy throttle in MB/s (default 40) — the drain is a background chore,
7576
7620
  * never allowed to starve live writers. */
7577
7621
  throttleMbps: number().min(1).max(1e3).optional()
7578
7622
  });
7579
- var RelocateMediaInputSchema = object({
7580
- deviceId: number().optional(),
7623
+ /** Internal, lease-scoped participant operation. It is intentionally separate
7624
+ * from persistent recording settings: a migration never changes
7625
+ * `RecordingConfig.enabled` or camera wrapper bindings. */
7626
+ var StorageMigrationLeaseInputSchema = object({ leaseId: string().min(1) });
7627
+ var StorageMigrationFootageMoveInputSchema = RelocateFootageInputSchema.extend({ leaseId: string().min(1) });
7628
+ var StorageMigrationMediaMoveInputSchema = object({
7581
7629
  toLocationId: string(),
7582
7630
  throttleMbps: number().min(1).max(1e3).optional()
7631
+ }).extend({ leaseId: string().min(1) });
7632
+ /** The independently selectable logical storage classes. `recordings`
7633
+ * encompasses the high and mid segment profiles; `recordingsLow` is low
7634
+ * segments; `eventMedia` is post-analysis blobs. */
7635
+ var StorageMigrationClassSchema = _enum([
7636
+ "recordings",
7637
+ "recordingsLow",
7638
+ "eventMedia"
7639
+ ]);
7640
+ /** A destination is always an existing, fully-qualified location id. The
7641
+ * migration API intentionally never changes a source location's `basePath`:
7642
+ * callers create a new `<type>:<slug>` location, then select it here. */
7643
+ var StorageMigrationDestinationsSchema = object({
7644
+ recordings: string().min(1).optional(),
7645
+ recordingsLow: string().min(1).optional(),
7646
+ eventMedia: string().min(1).optional()
7647
+ }).refine((value) => Object.keys(value).length > 0, { message: "select at least one storage class" });
7648
+ /** Shared input for planning and starting an orchestrated storage migration. */
7649
+ var StorageMigrationInputSchema = object({
7650
+ destinations: StorageMigrationDestinationsSchema,
7651
+ throttleMbps: number().min(1).max(1e3).optional()
7652
+ });
7653
+ /** The durable coordinator state machine. The only phase that changes default
7654
+ * locations is `repointing`, after every selected mover has completed and been
7655
+ * verified. */
7656
+ var StorageMigrationPhaseSchema = _enum([
7657
+ "planning",
7658
+ "pausing",
7659
+ "moving",
7660
+ "verifying",
7661
+ "repointing",
7662
+ "refreshing",
7663
+ "resuming",
7664
+ "done",
7665
+ "failed",
7666
+ "cancelled"
7667
+ ]);
7668
+ var StorageMigrationParticipantSchema = _enum([
7669
+ "pipeline",
7670
+ "recorder",
7671
+ "analytics"
7672
+ ]);
7673
+ var StorageMigrationMoveSchema = object({
7674
+ storageClass: StorageMigrationClassSchema,
7675
+ fromLocationId: string(),
7676
+ toLocationId: string(),
7677
+ moverJobId: string().nullable(),
7678
+ state: RelocateJobStateSchema.nullable(),
7679
+ error: string().nullable()
7680
+ });
7681
+ var StorageMigrationJobSchema = object({
7682
+ jobId: string(),
7683
+ phase: StorageMigrationPhaseSchema,
7684
+ destinations: StorageMigrationDestinationsSchema,
7685
+ throttleMbps: number(),
7686
+ moves: array(StorageMigrationMoveSchema),
7687
+ pauseLeaseId: string().nullable(),
7688
+ pausedParticipants: array(StorageMigrationParticipantSchema),
7689
+ repointed: boolean(),
7690
+ cancelRequested: boolean(),
7691
+ startedAt: number(),
7692
+ updatedAt: number(),
7693
+ finishedAt: number().nullable(),
7694
+ error: string().nullable()
7695
+ });
7696
+ var StorageMigrationPlanSchema = object({
7697
+ destinations: StorageMigrationDestinationsSchema,
7698
+ moves: array(object({
7699
+ storageClass: StorageMigrationClassSchema,
7700
+ fromLocationId: string(),
7701
+ toLocationId: string()
7702
+ }))
7583
7703
  });
7584
7704
  /**
7585
7705
  * `StorageLocationType` — an addon-declared id that identifies the *kind* of
@@ -7631,6 +7751,21 @@ var StorageLocationSchema = object({
7631
7751
  nodeId: string().optional(),
7632
7752
  isDefault: boolean().default(false),
7633
7753
  isSystem: boolean().default(false),
7754
+ /**
7755
+ * Operator opt-in: whether consumers that BALANCE across several locations
7756
+ * of a type may write here. Recordings reads it today; event media and
7757
+ * backups are the next consumers, which is why the flag lives on the
7758
+ * location rather than in any one addon's store — nothing has to be
7759
+ * extended to add the next consumer.
7760
+ *
7761
+ * OPTIONAL, and ABSENT MEANS ACTIVE. Every location persisted before the
7762
+ * flag existed reads back with no flag and keeps working exactly as before;
7763
+ * that is the whole compat story, and it is why no migration ships with it.
7764
+ * A newly CREATED sibling is stamped `false` by the orchestrator (creating a
7765
+ * disk must not silently start writing to it); the default of a type is
7766
+ * always stamped `true`.
7767
+ */
7768
+ enabled: boolean().optional(),
7634
7769
  /** COMPUTED at read time by the orchestrator (statfs of the backing volume
7635
7770
  * for node-local locations it can reach) — never persisted, absent when the
7636
7771
  * volume is remote/unreachable. The single capacity truth every UI reads. */
@@ -11933,7 +12068,8 @@ method(object({
11933
12068
  }), EmbeddingResultSchema), method(object({ text: string() }), EmbeddingResultSchema), method(_void(), EmbeddingInfoSchema);
11934
12069
  /**
11935
12070
  * filesystem-browse — per-node capability for browsing the node's local
11936
- * filesystem, sandboxed to operator-configured allowed roots. Used by the
12071
+ * filesystem. Reads are unconfined (whole filesystem, from `/` down); WRITES
12072
+ * are sandboxed to operator-configured allowed roots (D115). Used by the
11937
12073
  * admin "Add filesystem location" flow to pick a node + path. `mode:'per-node'`
11938
12074
  * (one provider per node); the hub calls it with `{nodeId}` so the codegen
11939
12075
  * routes to that exact node (default `nodeIdMode:'routing'`).
@@ -13746,6 +13882,13 @@ var MaskGridDimsSchema = object({
13746
13882
  * `package-event` are pure trigger kinds (no urgency dimension). Extending
13747
13883
  * this one field keeps the schema additive — a rule still declares exactly
13748
13884
  * one trigger.
13885
+ *
13886
+ * AUDIO rules add no member here, for the reason occupancy added none: the
13887
+ * enum is mirrored by hand in the viewer (`scripts/check-viewer-condition-
13888
+ * mirror.ts` fails the build on a member the app cannot render) and every
13889
+ * member costs a release train. A sustained-sound rule is therefore an
13890
+ * `immediate` rule carrying {@link NcConditions.audio} — the condition is the
13891
+ * trigger discriminator, exactly as `occupancy` is on `device-event`.
13749
13892
  */
13750
13893
  var NcDeliverySchema = _enum([
13751
13894
  "immediate",
@@ -13760,15 +13903,32 @@ var NcDeliverySchema = _enum([
13760
13903
  * depend on a provider's raw event name or payload shape.
13761
13904
  */
13762
13905
  var NcSystemEventKindSchema = _enum([
13763
- "camera-online",
13764
- "camera-offline",
13906
+ "device-online",
13907
+ "device-offline",
13908
+ "device-disabled",
13909
+ "device-enabled",
13765
13910
  "stream-online",
13766
13911
  "stream-offline",
13767
13912
  "node-online",
13768
13913
  "node-offline",
13769
13914
  "addon-update-available",
13770
- "server-update-available"
13915
+ "server-update-available",
13916
+ "alarm-triggered",
13917
+ "alarm-armed",
13918
+ "alarm-disarmed",
13919
+ "camera-online",
13920
+ "camera-offline",
13921
+ "camera-disabled",
13922
+ "camera-enabled"
13923
+ ]);
13924
+ /** The legacy tail of {@link NcSystemEventKindSchema} — see its docblock. */
13925
+ var NC_LEGACY_SYSTEM_EVENT_KINDS = new Set([
13926
+ "camera-online",
13927
+ "camera-offline",
13928
+ "camera-disabled",
13929
+ "camera-enabled"
13771
13930
  ]);
13931
+ NcSystemEventKindSchema.options.filter((kind) => !NC_LEGACY_SYSTEM_EVENT_KINDS.has(kind));
13772
13932
  /**
13773
13933
  * One coherent system-event condition. `kinds` is the required opt-in safety
13774
13934
  * gate; the remaining lists are optional narrowing filters relevant to the
@@ -13777,6 +13937,18 @@ var NcSystemEventKindSchema = _enum([
13777
13937
  var NcSystemEventConditionSchema = object({
13778
13938
  kinds: array(NcSystemEventKindSchema).min(1),
13779
13939
  deviceIds: array(number().int()).min(1).optional(),
13940
+ /**
13941
+ * Narrow a `device-*` kind to these device TYPES (`DeviceType` values —
13942
+ * `camera`, `switch`, `sensor`, `container`, …). Absent = every type, which
13943
+ * is what a liveness rule means when nobody said otherwise.
13944
+ *
13945
+ * This is where "only my cameras" is expressed, and it lives on the rule for
13946
+ * one reason: the intake cannot know which devices this household cares
13947
+ * about, and a producer-side filter is one no operator can change. Fails
13948
+ * CLOSED — a subject whose device type is unknown (an id the device mirror
13949
+ * does not carry) matches no `deviceTypes` list.
13950
+ */
13951
+ deviceTypes: array(string().min(1)).min(1).optional(),
13780
13952
  nodeIds: array(string().min(1)).min(1).optional(),
13781
13953
  packageNames: array(string().min(1)).min(1).optional()
13782
13954
  });
@@ -13827,6 +13999,47 @@ var NcOccupancyConditionSchema = object({
13827
13999
  sustainSeconds: number().int().min(0).max(3600).default(15)
13828
14000
  });
13829
14001
  /**
14002
+ * Audio condition (IMMEDIATE trigger) — a rule on SOUND, not on a picture.
14003
+ *
14004
+ * Operator-approved vocabulary (2026-08-12, option A — the same one the
14005
+ * reference notifier uses, so an operator moving between them re-uses what
14006
+ * they already know): a rule matches when, over a sampling window of
14007
+ * `samplingSeconds`, at least `hitPercent`% of the audio samples in that
14008
+ * window are HITS. A sample is a hit when it satisfies BOTH present filters:
14009
+ *
14010
+ * - `dbThreshold` — its level is at or above this many dBFS (see
14011
+ * {@link NC_AUDIO_DBFS_FLOOR}: negative-going, `0` = full scale);
14012
+ * - `labels` — the classifier put at least one of these labels on it.
14013
+ *
14014
+ * Both are OPTIONAL and independent, which is the point of the shape: a
14015
+ * loudness rule ("something loud at 3am") needs no model to be right, and a
14016
+ * label rule ("a dog barked") needs no threshold. **Fail-closed when NEITHER
14017
+ * is given** — a window in which every sample is trivially a hit would fire on
14018
+ * silence, so the engine refuses such a condition rather than notifying on
14019
+ * nothing (the schema cannot express "at least one of" without becoming a
14020
+ * ZodEffects the cap path would have to special-case).
14021
+ *
14022
+ * `hitPercent` is over the samples the window actually HOLDS, and the window
14023
+ * must be FULL before it can match — a window that has been open for two
14024
+ * seconds of its ten is 100% of nothing, and firing on it would make
14025
+ * `samplingSeconds` decorative.
14026
+ *
14027
+ * Labels are the audio macro classes (`AUDIO_MACRO_LABELS` / the NC taxonomy's
14028
+ * `audio-*` ids). Both spellings are accepted — the matcher normalizes the
14029
+ * `audio-` prefix away on both sides, so a picker that offers taxonomy ids and
14030
+ * an operator who typed `dog` mean the same thing.
14031
+ */
14032
+ var NcAudioConditionSchema = object({
14033
+ /** Audio macro labels; absent = any sound (level-only rule). */
14034
+ labels: array(string().min(1)).min(1).optional(),
14035
+ /** Level floor in dBFS (negative-going, `0` = full scale); absent = any level. */
14036
+ dbThreshold: number().min(-96).max(0).optional(),
14037
+ /** Percentage of the window's samples that must be hits (1–100). */
14038
+ hitPercent: number().int().min(1).max(100).default(60),
14039
+ /** Length of the sampling window in seconds. */
14040
+ samplingSeconds: number().int().min(1).max(300).default(10)
14041
+ });
14042
+ /**
13830
14043
  * Which zone-crossing DIRECTION a rule accepts (`ObjectEvent.zoneCrossing`).
13831
14044
  *
13832
14045
  * The values are not symmetric, and deliberately so — the absent value has to
@@ -14099,7 +14312,33 @@ var NcConditionsSchema = object({
14099
14312
  * threshold and holds for `sustainSeconds`. Fail-closed on missing
14100
14313
  * substrate (no snapshot / missing zone). See {@link NcOccupancyCondition}.
14101
14314
  */
14102
- occupancy: NcOccupancyConditionSchema.optional()
14315
+ occupancy: NcOccupancyConditionSchema.optional(),
14316
+ /**
14317
+ * IMMEDIATE only. Sustained-sound matcher — `hitPercent` of the samples in a
14318
+ * `samplingSeconds` window clear the optional `dbThreshold` and carry one of
14319
+ * the optional `labels`. Fail-closed on missing substrate (no audio samples,
14320
+ * a window that is not full yet, neither filter given). See
14321
+ * {@link NcAudioCondition}.
14322
+ *
14323
+ * Presence of this key is what makes a rule an AUDIO rule: the engine fires
14324
+ * it ONLY on a confirmed audio window, and a rule carrying it never fires on
14325
+ * a detection, a track or a device event (the same fail-closed pairing
14326
+ * `occupancy` has with the `device-event` trigger). That is how audio labels
14327
+ * leave `classes`: an audio rule names its sounds HERE, and the legacy path
14328
+ * (an `immediate` rule naming an `audio-*` class, one notification per
14329
+ * classified sample) stays exactly as it was for rules that already use it.
14330
+ *
14331
+ * NOT in {@link NC_CONDITION_CATALOG} yet, and that is the sequencing rule
14332
+ * rather than an oversight: the viewer mirrors the descriptor enums BY HAND
14333
+ * (`camstack/src/data/notification-center.ts`, guarded by
14334
+ * `scripts/check-viewer-condition-mirror.ts`) and its rule editor STRIPS the
14335
+ * condition fields it does not know when a rule is saved from the phone.
14336
+ * Publishing an editor for a condition the app cannot round-trip is how an
14337
+ * operator loses a rule's conditions by opening it — so the descriptor, the
14338
+ * admin widget and the viewer mirror land together (P2 + P3), and only then
14339
+ * does an audio rule become authorable.
14340
+ */
14341
+ audio: NcAudioConditionSchema.optional()
14103
14342
  });
14104
14343
  /** One delivery target: a `notification-output` Target ref + passthrough params. */
14105
14344
  var NcRuleTargetSchema = object({
@@ -14213,6 +14452,73 @@ var NcThrottleSchema = object({
14213
14452
  */
14214
14453
  granularity: NcThrottleGranularitySchema.optional()
14215
14454
  });
14455
+ /**
14456
+ * How long the confirm gate may hold ONE notification, and how big the picture
14457
+ * it judges may be.
14458
+ *
14459
+ * The clamp is the product decision, not a coincidence of the model: p50 was
14460
+ * 4.9 s warm and 15.3 s cold against qwen3-vl-8b, and a notification that
14461
+ * arrives after the visitor has gone is not a notification. 448 px was enough
14462
+ * to score 16/16 on the operator's parking scenario — bigger costs latency and
14463
+ * tokens for pixels the model pools away.
14464
+ */
14465
+ var NC_CONFIRM_MIN_TIMEOUT_MS = 1e3;
14466
+ var NC_CONFIRM_MAX_TIMEOUT_MS = 2e4;
14467
+ var NC_CONFIRM_DEFAULT_TIMEOUT_MS = 8e3;
14468
+ /** Comparison the model's COUNT must satisfy for the notification to fire. */
14469
+ var NcConfirmExpectSchema = object({
14470
+ op: _enum([
14471
+ ">=",
14472
+ ">",
14473
+ "<=",
14474
+ "<",
14475
+ "=="
14476
+ ]),
14477
+ count: number().int().min(0).max(1e3)
14478
+ });
14479
+ /**
14480
+ * AI CONFIRM — a vision model looks at the picture this notification is about
14481
+ * to ship and says whether it agrees with the rule.
14482
+ *
14483
+ * It runs AFTER the attachments resolve, deliberately: the crop JUDGED is the
14484
+ * crop SHIPPED (D52). A verdict about a different pixel rectangle than the one
14485
+ * on the operator's phone is not a verdict about this notification.
14486
+ *
14487
+ * FAIL-OPEN is the only safe default. A gate that cannot reach its model, or
14488
+ * whose model is cold, must not silence a camera — so `onTimeout: 'fire'` is
14489
+ * the default and every fail-open is COUNTED, because a gate that always fails
14490
+ * open looks in the log exactly like a gate that works.
14491
+ *
14492
+ * Every field is `.optional()` rather than relied on as a Zod default at the
14493
+ * runtime seam: a Zod default does NOT run on the addon→addon cap path (three
14494
+ * production failures in one day), so the gate reads absent as the constant
14495
+ * above rather than trusting a parse it may never have seen.
14496
+ */
14497
+ var NcConfirmSchema = object({
14498
+ /** Off unless asked for. An absent `confirm` and `enabled:false` are the
14499
+ * same thing, and both mean "deliver exactly as before". */
14500
+ enabled: boolean().default(false),
14501
+ /** Explicit vision profile; absent = the `purpose:'vision'` cluster default. */
14502
+ profileId: string().optional(),
14503
+ /**
14504
+ * The operator's question, in his own words. Absent = a question derived
14505
+ * from the rule (its class and its expectation).
14506
+ *
14507
+ * NEVER composed with text READ OUT OF THE FRAME. The model reads OSD
14508
+ * banners, signage and plates as instructions if you let them reach the
14509
+ * prompt — proven live — so the authoritative contract stays in the system
14510
+ * turn and only rule-authored words land here.
14511
+ */
14512
+ prompt: string().max(1e3).optional(),
14513
+ /** Fire only when the model's count satisfies this. Absent = the model's
14514
+ * own boolean verdict decides. */
14515
+ expect: NcConfirmExpectSchema.optional(),
14516
+ timeoutMs: number().int().min(NC_CONFIRM_MIN_TIMEOUT_MS).max(NC_CONFIRM_MAX_TIMEOUT_MS).default(NC_CONFIRM_DEFAULT_TIMEOUT_MS),
14517
+ /** What a timeout / unreachable model MEANS. `fire` (default) = fail-open. */
14518
+ onTimeout: _enum(["fire", "suppress"]).default("fire"),
14519
+ /** Longest edge the judged image is downscaled to before it is sent. */
14520
+ maxImagePx: number().int().min(64).max(2048).default(448)
14521
+ });
14216
14522
  /** Client-supplied rule fields (server stamps id/createdBy/createdAt/updatedAt). */
14217
14523
  var NcRuleInputSchema = object({
14218
14524
  name: string().min(1).max(200),
@@ -14273,7 +14579,13 @@ var NcRuleInputSchema = object({
14273
14579
  * `{ cap: 'alarm-panel', method: 'arm', args: { mode: 'away' } }`, the same
14274
14580
  * shape as every other actuation.
14275
14581
  */
14276
- actions: NcRuleActionsSchema.optional()
14582
+ actions: NcRuleActionsSchema.optional(),
14583
+ /**
14584
+ * AI CONFIRM — see {@link NcConfirmSchema}. `.optional()`, never defaulted:
14585
+ * a rule that predates the gate must keep delivering byte-for-byte as it
14586
+ * did, and absent is the only way to say that without a migration.
14587
+ */
14588
+ confirm: NcConfirmSchema.optional()
14277
14589
  });
14278
14590
  /**
14279
14591
  * Partial patch for `updateRule` — any subset of the input fields, plus the
@@ -14284,7 +14596,37 @@ var NcRuleInputSchema = object({
14284
14596
  * still flow through `nc.setRuleTargetEnabled` (owner-checked), never a raw
14285
14597
  * `updateRule` patch.
14286
14598
  */
14287
- var NcRulePatchSchema = NcRuleInputSchema.partial().extend({ disabledTargetIds: array(string()).optional() });
14599
+ var NcRulePatchSchema = NcRuleInputSchema.partial().extend({
14600
+ disabledTargetIds: array(string()).optional(),
14601
+ /**
14602
+ * `.partial()` DOES NOT REMOVE A FIELD'S `.default()`.
14603
+ *
14604
+ * It makes the key optional to SUPPLY; the parse still materialises the
14605
+ * default when the key is absent. And `NcRuleStore.update` merges with
14606
+ * `{ ...existing, ...patch }`, so a materialised key OVERWRITES the stored
14607
+ * one — which made every partial edit destructive:
14608
+ *
14609
+ * nc.updateRule({ throttle }) → conditions reset to `{}`
14610
+ * nc.setRuleTargetEnabled(...) → conditions reset to `{}`
14611
+ * setEnabled(ruleId, false) → conditions reset to `{}`
14612
+ *
14613
+ * A rule scoped to one camera and one zone silently became a rule that
14614
+ * matches EVERY event on EVERY camera, and lost its `media` policy
14615
+ * (zoneCrop / gif / clip / frame) and its `priority` at the same time. Seen
14616
+ * live on 2026-08-12: a rule scoped to device 617 fired on 590 and 615
14617
+ * within a minute of a two-field patch.
14618
+ *
14619
+ * So every defaulted field is re-declared here WITHOUT its default. The
14620
+ * inner defaults still apply when the caller DOES send the key — `{}` for
14621
+ * conditions remains a real instruction ("clear them") — and only the
14622
+ * absent key is now genuinely absent.
14623
+ */
14624
+ enabled: boolean().optional(),
14625
+ conditions: NcConditionsSchema.optional(),
14626
+ media: NcMediaPolicySchema.optional(),
14627
+ throttle: NcThrottleSchema.optional(),
14628
+ priority: number().int().min(1).max(5).optional()
14629
+ });
14288
14630
  /** A persisted rule. */
14289
14631
  var NcRuleSchema = NcRuleInputSchema.extend({
14290
14632
  id: string(),
@@ -14585,6 +14927,25 @@ var NcAlarmSettingsPatchSchema = NcAlarmSettingsSchema.partial();
14585
14927
  * Never authored, never stored — see `alarm-mode-coverage.ts` for why a stored
14586
14928
  * copy would lie the first time a rule is disabled.
14587
14929
  */
14930
+ /**
14931
+ * Why a device a mode NAMES is nonetheless not armed by it.
14932
+ *
14933
+ * Each value is an existing authority, never a new flag (D62): `muted` is the
14934
+ * per-camera notification switch the Notification Center already owns,
14935
+ * `detection-off` is the device's own detection binding being inactive, and
14936
+ * `offline` is the device manager's liveness. A fourth reason would mean a
14937
+ * fourth authority, and inventing one here is how a panel starts disagreeing
14938
+ * with the switches the operator actually used.
14939
+ */
14940
+ var NcAlarmSkipReasonSchema = _enum([
14941
+ "muted",
14942
+ "detection-off",
14943
+ "offline"
14944
+ ]);
14945
+ var NcAlarmSkippedDeviceSchema = object({
14946
+ deviceId: number().int(),
14947
+ reason: NcAlarmSkipReasonSchema
14948
+ });
14588
14949
  var NcAlarmModeCoverageSchema = object({
14589
14950
  mode: AlarmArmModeSchema,
14590
14951
  /** Enabled rules gated on `armed_<mode>`. Zero means the mode does nothing. */
@@ -14592,7 +14953,18 @@ var NcAlarmModeCoverageSchema = object({
14592
14953
  /** At least one covering rule has no device scope, so the mode covers all. */
14593
14954
  allDevices: boolean(),
14594
14955
  /** Ids named by the covering rules. A SUBSET when `allDevices` is true. */
14595
- deviceIds: array(number().int())
14956
+ deviceIds: array(number().int()),
14957
+ /**
14958
+ * Devices this mode NAMES but cannot actually arm, each with the switch that
14959
+ * excludes it.
14960
+ *
14961
+ * "Away armed — 12 cameras" is a promise, and a muted camera among those
14962
+ * twelve makes it false in exactly the way nobody notices until an incident.
14963
+ * Defaulted to `[]` so a coverage answer computed before this field existed
14964
+ * still parses as "nothing known to be skipped" rather than failing the whole
14965
+ * alarm tab.
14966
+ */
14967
+ skippedDevices: array(NcAlarmSkippedDeviceSchema).default([])
14596
14968
  });
14597
14969
  var NcAlarmConfigSchema = object({
14598
14970
  /**
@@ -15955,13 +16327,19 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
15955
16327
  }), method(object({ deviceId: number() }), EventPruneCountsSchema, {
15956
16328
  kind: "mutation",
15957
16329
  auth: "admin"
15958
- }), method(RelocateMediaInputSchema, object({ jobId: string() }), {
16330
+ }), method(StorageMigrationLeaseInputSchema, object({ paused: literal(true) }), {
15959
16331
  kind: "mutation",
15960
16332
  auth: "admin"
15961
- }), method(object({}), array(RelocateJobSchema).readonly(), {
15962
- kind: "query",
16333
+ }), method(StorageMigrationLeaseInputSchema, object({ resumed: literal(true) }), {
16334
+ kind: "mutation",
15963
16335
  auth: "admin"
15964
- }), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
16336
+ }), method(StorageMigrationLeaseInputSchema, object({ refreshed: literal(true) }), {
16337
+ kind: "mutation",
16338
+ auth: "admin"
16339
+ }), method(StorageMigrationMediaMoveInputSchema, object({ jobId: string() }), {
16340
+ kind: "mutation",
16341
+ auth: "admin"
16342
+ }), method(object({ jobId: string() }), RelocateJobSchema.nullable(), { auth: "admin" }), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
15965
16343
  kind: "mutation",
15966
16344
  auth: "admin"
15967
16345
  }), method(OpsLogQueryInputSchema, array(OpsLogEntrySchema).readonly(), {
@@ -17385,9 +17763,16 @@ var CameraStatusSchema = object({
17385
17763
  audio: CameraAudioStatusSchema.nullable(),
17386
17764
  recording: CameraRecordingStatusSchema.nullable(),
17387
17765
  /**
17388
- * Per-camera function switches an OPERATOR has turned off
17766
+ * Per-camera functions an OPERATOR has turned off
17389
17767
  * ([D61](../../../../docs/decisions/adr-0067.md)).
17390
17768
  *
17769
+ * Composed from the AUTHORITIES themselves — the wrapper bindings,
17770
+ * `RecordingConfig.enabled`, the notification mute, the broker's audio
17771
+ * policy, the camera's own microphone — via `composeSwitchedOff`, not from
17772
+ * the deprecated `getCameraSwitches` group ([D113](../../../../docs/decisions/adr-0113.md)).
17773
+ * The badge outlives the control panel: the panel was a convenience, this is
17774
+ * the difference between a camera being off and a camera being dead.
17775
+ *
17391
17776
  * This is the difference between DISABLED and BROKEN. A camera whose
17392
17777
  * `detection` block reports zero fps and whose `switchedOff` contains
17393
17778
  * `'object-detection'` was switched off by a person; the same camera with an
@@ -17458,7 +17843,13 @@ var NodeInferenceDevicesSchema = object({
17458
17843
  reachable: boolean(),
17459
17844
  devices: array(NodeInferenceDeviceSchema).readonly()
17460
17845
  });
17461
- method(object({
17846
+ method(StorageMigrationLeaseInputSchema, object({ paused: literal(true) }), {
17847
+ kind: "mutation",
17848
+ auth: "admin"
17849
+ }), method(StorageMigrationLeaseInputSchema, object({ resumed: literal(true) }), {
17850
+ kind: "mutation",
17851
+ auth: "admin"
17852
+ }), method(object({
17462
17853
  deviceId: number(),
17463
17854
  agentNodeId: string()
17464
17855
  }), object({ success: literal(true) }), {
@@ -18132,6 +18523,13 @@ method(object({ locationId: string() }), EvictableUsageSchema), method(object({
18132
18523
  locationId: string(),
18133
18524
  targetBytes: number().int().positive()
18134
18525
  }), EvictResultSchema, { kind: "mutation" });
18526
+ method(StorageMigrationInputSchema, StorageMigrationPlanSchema, { auth: "admin" }), method(StorageMigrationInputSchema, object({ jobId: string() }), {
18527
+ kind: "mutation",
18528
+ auth: "admin"
18529
+ }), method(object({ jobId: string().optional() }), StorageMigrationJobSchema.nullable(), { auth: "admin" }), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
18530
+ kind: "mutation",
18531
+ auth: "admin"
18532
+ });
18135
18533
  var ProviderInfoSchema = discriminatedUnion("shouldSaveDiskSpace", [object({
18136
18534
  providerId: string().min(1),
18137
18535
  displayName: string().min(1),
@@ -18235,6 +18633,28 @@ var TerminalProfileInfoSchema = object({
18235
18633
  label: string(),
18236
18634
  description: string().optional()
18237
18635
  });
18636
+ /**
18637
+ * A durable operator-created Terminal instance. Profiles are templates; only
18638
+ * an instance declares a camera.
18639
+ */
18640
+ var TerminalInstanceInfoSchema = object({
18641
+ instanceId: string(),
18642
+ cameraStableId: string(),
18643
+ nodeId: string(),
18644
+ profileId: string(),
18645
+ profileLabel: string(),
18646
+ name: string(),
18647
+ enabled: boolean()
18648
+ });
18649
+ var TerminalLegacyCameraSchema = object({
18650
+ stableId: string(),
18651
+ nodeId: string(),
18652
+ profileId: string(),
18653
+ profileLabel: string(),
18654
+ name: string(),
18655
+ /** Only legacy monitor cameras can retain their historic stable identity. */
18656
+ adoptable: boolean()
18657
+ });
18238
18658
  var TerminalOutputEventSchema = discriminatedUnion("kind", [object({
18239
18659
  seq: number().int().positive(),
18240
18660
  kind: literal("data"),
@@ -18251,7 +18671,29 @@ var TerminalOutputBatchSchema = object({
18251
18671
  snapshot: string().optional(),
18252
18672
  events: array(TerminalOutputEventSchema).readonly()
18253
18673
  });
18254
- method(_void(), array(TerminalProfileInfoSchema).readonly(), { auth: "admin" }), method(_void(), array(TerminalSessionInfoSchema).readonly(), { auth: "admin" }), method(object({
18674
+ method(_void(), array(TerminalProfileInfoSchema).readonly(), { auth: "admin" }), method(_void(), array(TerminalInstanceInfoSchema).readonly(), { auth: "admin" }), method(object({
18675
+ targetNodeId: string().min(1),
18676
+ profileId: string().min(1),
18677
+ name: string().trim().min(1).max(160).optional()
18678
+ }), TerminalInstanceInfoSchema, {
18679
+ kind: "mutation",
18680
+ auth: "admin"
18681
+ }), method(object({ instanceId: string().min(1) }), _void(), {
18682
+ kind: "mutation",
18683
+ auth: "admin"
18684
+ }), method(object({
18685
+ instanceId: string().min(1),
18686
+ enabled: boolean()
18687
+ }), TerminalInstanceInfoSchema, {
18688
+ kind: "mutation",
18689
+ auth: "admin"
18690
+ }), method(_void(), array(TerminalLegacyCameraSchema).readonly(), { auth: "admin" }), method(object({
18691
+ stableId: string().min(1),
18692
+ name: string().trim().min(1).max(160).optional()
18693
+ }), TerminalInstanceInfoSchema, {
18694
+ kind: "mutation",
18695
+ auth: "admin"
18696
+ }), method(_void(), array(TerminalSessionInfoSchema).readonly(), { auth: "admin" }), method(object({
18255
18697
  profileId: string(),
18256
18698
  cols: number().int().positive(),
18257
18699
  rows: number().int().positive()
@@ -18268,7 +18710,13 @@ method(_void(), array(TerminalProfileInfoSchema).readonly(), { auth: "admin" }),
18268
18710
  }), method(object({
18269
18711
  sessionId: string(),
18270
18712
  afterSeq: number().int().nonnegative(),
18271
- waitMs: number().int().min(0).max(2e3).default(0)
18713
+ waitMs: number().int().min(0).max(2e3).default(0),
18714
+ /**
18715
+ * Wait when a just-opened session has no output yet. Kept opt-in so a
18716
+ * browser's initial repaint remains immediate; the camera snapshot
18717
+ * relay uses it to avoid encoding a blank startup frame.
18718
+ */
18719
+ waitForOutput: boolean().optional()
18272
18720
  }), TerminalOutputBatchSchema, {
18273
18721
  kind: "mutation",
18274
18722
  auth: "admin",
@@ -20232,6 +20680,7 @@ var FaceInfoSchema = object({
20232
20680
  var FaceFilterEnum = _enum([
20233
20681
  "unassigned",
20234
20682
  "recognized",
20683
+ "identified",
20235
20684
  "all"
20236
20685
  ]);
20237
20686
  var MediaFileLiteSchema$1 = object({
@@ -20260,6 +20709,8 @@ method(_void(), array(IdentitySchema).readonly()), method(object({ name: string(
20260
20709
  kind: "mutation",
20261
20710
  auth: "admin"
20262
20711
  }), method(object({
20712
+ /** Restrict to one camera. Absent keeps the cluster-wide gallery view. */
20713
+ deviceId: number().int().optional(),
20263
20714
  limit: number().int().positive().optional(),
20264
20715
  filter: FaceFilterEnum.optional(),
20265
20716
  /**
@@ -22025,6 +22476,10 @@ var OsdSourceSchema = discriminatedUnion("kind", [
22025
22476
  capName: string().min(1).max(64),
22026
22477
  /** Dot path inside the slice, e.g. `detected`, `value`, `mode`. */
22027
22478
  valuePath: string().min(1).max(64)
22479
+ }),
22480
+ object({
22481
+ kind: literal("latest-recognition"),
22482
+ recognition: _enum(["person", "plate"])
22028
22483
  })
22029
22484
  ]);
22030
22485
  var OsdSlotBindingSchema = object({
@@ -22130,6 +22585,15 @@ method(object({ deviceId: number().int() }), object({
22130
22585
  }), object({ success: literal(true) }), {
22131
22586
  kind: "mutation",
22132
22587
  auth: "admin"
22588
+ }), method(object({
22589
+ sourceDeviceId: number().int(),
22590
+ targetDeviceId: number().int()
22591
+ }), object({
22592
+ copied: number().int().nonnegative(),
22593
+ skipped: number().int().nonnegative()
22594
+ }), {
22595
+ kind: "mutation",
22596
+ auth: "admin"
22133
22597
  }), method(object({
22134
22598
  deviceId: number().int(),
22135
22599
  slotId: string().min(1),
@@ -22840,7 +23304,19 @@ var RecordingManifestSchema = object({
22840
23304
  * profiles/subtrees/locations on this node). */
22841
23305
  var RecordingDeviceUsageSchema = object({
22842
23306
  deviceId: number(),
22843
- usedBytes: number()
23307
+ usedBytes: number(),
23308
+ /**
23309
+ * Start of this camera's OLDEST indexed segment, across every profile and
23310
+ * location — the "Oldest footage" column in Recordings → Storage, and the
23311
+ * only honest answer to "is retention actually holding?" per camera.
23312
+ *
23313
+ * `null` = the camera has no footage. OPTIONAL because a recorder that
23314
+ * predates this field omits it entirely, and a hub whose types carry the
23315
+ * field must keep validating that older provider's payload: the framework
23316
+ * (types) and the addon ship on different trains, and the addon is usually
23317
+ * the later of the two.
23318
+ */
23319
+ oldestMs: number().nullable().optional()
22844
23320
  });
22845
23321
  /** Recording storage usage + capacity for one storage location. */
22846
23322
  var RecordingLocationUsageSchema = object({
@@ -22868,6 +23344,57 @@ var RecordingStorageUsageSchema = object({
22868
23344
  locations: array(RecordingLocationUsageSchema)
22869
23345
  });
22870
23346
  /**
23347
+ * The OPERATOR-ARMED half of multi-location recordings (D116).
23348
+ *
23349
+ * The placement plan decides where NEW writes go and moves nothing. A rebalance
23350
+ * is the operator asking for the EXISTING archive to be brought into line with
23351
+ * that plan: one relocate job per (camera, profile) pile that sits on the wrong
23352
+ * location, run FIFO behind the single-flight mover.
23353
+ *
23354
+ * `plan…` and `start…` return the SAME shape deliberately — what the operator
23355
+ * confirms is exactly what gets enqueued, and `jobIds` is the only difference
23356
+ * (empty on the plan).
23357
+ */
23358
+ var RecordingRebalanceMoveSchema = object({
23359
+ deviceId: number(),
23360
+ profile: string(),
23361
+ fromLocationId: string(),
23362
+ toLocationId: string(),
23363
+ bytes: number(),
23364
+ files: number().int()
23365
+ });
23366
+ /** Why a pile that is out of place is staying there. Every refusal is
23367
+ * reported: a rebalance that silently drops a camera reads exactly like one
23368
+ * that had nothing to do. */
23369
+ var RecordingRebalanceSkipReasonSchema = _enum([
23370
+ "unassigned",
23371
+ "target-not-writable",
23372
+ "below-threshold",
23373
+ "no-headroom"
23374
+ ]);
23375
+ var RecordingRebalanceSkipSchema = object({
23376
+ deviceId: number(),
23377
+ profile: string(),
23378
+ fromLocationId: string(),
23379
+ /** The location the plan wants; null when the camera has no assignment. */
23380
+ toLocationId: string().nullable(),
23381
+ bytes: number(),
23382
+ reason: RecordingRebalanceSkipReasonSchema
23383
+ });
23384
+ var RecordingRebalancePlanSchema = object({
23385
+ moves: array(RecordingRebalanceMoveSchema),
23386
+ skipped: array(RecordingRebalanceSkipSchema),
23387
+ bytesToMove: number(),
23388
+ /** Relocate job ids enqueued. Always empty for the plan (dry-run) call. */
23389
+ jobIds: array(string())
23390
+ });
23391
+ var RecordingRebalanceInputSchema = object({
23392
+ /** Copy throttle in MB/s (default 40) — a rebalance is a background chore. */
23393
+ throttleMbps: number().min(1).max(1e3).optional(),
23394
+ /** Ignore piles smaller than this (default 1 GB). */
23395
+ minMoveGb: number().min(0).optional()
23396
+ });
23397
+ /**
22871
23398
  * Result of locating footage at a wall-clock instant for one device/profile.
22872
23399
  * `segment` carries the covering segment's window; `gap` reports the forward
22873
23400
  * nearest covered edge (`null` past the end of footage / when none exists)
@@ -23015,6 +23542,21 @@ method(object({
23015
23542
  }), {
23016
23543
  kind: "mutation",
23017
23544
  auth: "admin"
23545
+ }), method(StorageMigrationLeaseInputSchema, object({ paused: literal(true) }), {
23546
+ kind: "mutation",
23547
+ auth: "admin"
23548
+ }), method(StorageMigrationLeaseInputSchema, object({ resumed: literal(true) }), {
23549
+ kind: "mutation",
23550
+ auth: "admin"
23551
+ }), method(StorageMigrationLeaseInputSchema, object({ refreshed: literal(true) }), {
23552
+ kind: "mutation",
23553
+ auth: "admin"
23554
+ }), method(StorageMigrationFootageMoveInputSchema, object({ jobId: string() }), {
23555
+ kind: "mutation",
23556
+ auth: "admin"
23557
+ }), method(object({ jobId: string() }), RelocateJobSchema.nullable(), { auth: "admin" }), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
23558
+ kind: "mutation",
23559
+ auth: "admin"
23018
23560
  }), method(RelocateFootageInputSchema, object({ jobId: string() }), {
23019
23561
  kind: "mutation",
23020
23562
  auth: "admin"
@@ -23024,9 +23566,15 @@ method(object({
23024
23566
  }), method(object({ jobId: string() }), object({ cancelled: boolean() }), {
23025
23567
  kind: "mutation",
23026
23568
  auth: "admin"
23569
+ }), method(RecordingRebalanceInputSchema, RecordingRebalancePlanSchema, {
23570
+ kind: "query",
23571
+ auth: "admin"
23572
+ }), method(RecordingRebalanceInputSchema, RecordingRebalancePlanSchema, {
23573
+ kind: "mutation",
23574
+ auth: "admin"
23027
23575
  });
23028
23576
  /**
23029
- * `recordingExport` cap — render a footage time range into a single downloadable
23577
+ * `recording-export` cap — render a footage time range into a single downloadable
23030
23578
  * MP4 (regular / accelerated / decelerated / timelapse, ± audio), kept for a
23031
23579
  * bounded lifetime with a durable history, auto-expiry, and optional
23032
23580
  * delete-after-download.
@@ -23041,10 +23589,42 @@ method(object({
23041
23589
  */
23042
23590
  /** Playback-speed multiplier for the render (1 = realtime). */
23043
23591
  var ExportSpeedSchema = number().min(.25).max(32);
23592
+ /**
23593
+ * One dense interval, in SECONDS FROM THE EXPORT'S OWN `fromMs`.
23594
+ *
23595
+ * Relative and not absolute epoch on purpose: the renderer's frame-select
23596
+ * expression sees ffmpeg's `t`, which starts at 0 for the export's source
23597
+ * playlist. Handing it absolute epochs would make every call site responsible
23598
+ * for the same subtraction, and the one that forgot would emit a filter that
23599
+ * selects nothing — silently, as a uniform timelapse.
23600
+ */
23601
+ var ExportDenseRangeSchema = object({
23602
+ fromSec: number().nonnegative(),
23603
+ toSec: number().nonnegative()
23604
+ }).refine((r) => r.toSec > r.fromSec, { message: "dense range must have toSec > fromSec" });
23605
+ /**
23606
+ * Dense-interval overlay for a timelapse: sample at `dense.everyMs` INSIDE the
23607
+ * listed ranges and at the base `everyMs` everywhere else.
23608
+ *
23609
+ * `everyMs` must be strictly smaller than the base cadence — a dense rate that
23610
+ * is not denser renders a uniform timelapse the operator believes is two-rate.
23611
+ */
23612
+ var ExportDenseSchema = object({
23613
+ everyMs: number().int().positive(),
23614
+ ranges: array(ExportDenseRangeSchema).min(1).max(200)
23615
+ });
23044
23616
  /** Timelapse cadence — sample one source frame per `everyMs`, output at `outputFps`. */
23045
23617
  var ExportTimelapseSchema = object({
23046
23618
  everyMs: number().int().positive(),
23047
- outputFps: number().int().min(1).max(60).optional()
23619
+ outputFps: number().int().min(1).max(60).optional(),
23620
+ /** Optional second, FASTER rate over the intervals that matter. */
23621
+ dense: ExportDenseSchema.optional()
23622
+ }).superRefine((v, ctx) => {
23623
+ if (v.dense !== void 0 && v.dense.everyMs >= v.everyMs) ctx.addIssue({
23624
+ code: ZodIssueCode.custom,
23625
+ message: "dense.everyMs must be strictly smaller than the base everyMs",
23626
+ path: ["dense", "everyMs"]
23627
+ });
23048
23628
  });
23049
23629
  /**
23050
23630
  * Render options. `speed` and `timelapse` are mutually exclusive. `includeAudio`
@@ -23102,6 +23682,19 @@ var ExportDownloadSchema = object({
23102
23682
  url: string(),
23103
23683
  endpoints: array(string())
23104
23684
  });
23685
+ /**
23686
+ * A finished export's bytes, inline.
23687
+ *
23688
+ * `bytes` is the DECODED length — the number the caller bounds and logs
23689
+ * against, so nobody has to infer it from the base64 length.
23690
+ */
23691
+ var ExportBytesSchema = object({
23692
+ base64: string(),
23693
+ contentType: string(),
23694
+ /** Suggested filename, extension included. */
23695
+ name: string(),
23696
+ bytes: number().int().nonnegative()
23697
+ });
23105
23698
  method(object({
23106
23699
  deviceId: number(),
23107
23700
  profile: string(),
@@ -23126,6 +23719,9 @@ method(object({
23126
23719
  }), method(object({ exportId: string() }), ExportDownloadSchema, {
23127
23720
  kind: "query",
23128
23721
  auth: "protected"
23722
+ }), method(object({ exportId: string() }), ExportBytesSchema, {
23723
+ kind: "query",
23724
+ auth: "protected"
23129
23725
  });
23130
23726
  /**
23131
23727
  * scene-monitor — device-scoped reference-region state cap. An operator marks
@@ -27143,6 +27739,12 @@ Object.freeze({
27143
27739
  addonId: null,
27144
27740
  access: "delete"
27145
27741
  },
27742
+ "osdManager.copyDeviceConfiguration": {
27743
+ capName: "osd-manager",
27744
+ capScope: "system",
27745
+ addonId: null,
27746
+ access: "create"
27747
+ },
27146
27748
  "osdManager.getConditionSupport": {
27147
27749
  capName: "osd-manager",
27148
27750
  capScope: "system",
@@ -27239,7 +27841,7 @@ Object.freeze({
27239
27841
  addonId: null,
27240
27842
  access: "create"
27241
27843
  },
27242
- "pipelineAnalytics.cancelMediaRelocate": {
27844
+ "pipelineAnalytics.cancelStorageMigrationMove": {
27243
27845
  capName: "pipeline-analytics",
27244
27846
  capScope: "device",
27245
27847
  addonId: null,
@@ -27311,12 +27913,6 @@ Object.freeze({
27311
27913
  addonId: null,
27312
27914
  access: "view"
27313
27915
  },
27314
- "pipelineAnalytics.getMediaRelocateStatus": {
27315
- capName: "pipeline-analytics",
27316
- capScope: "device",
27317
- addonId: null,
27318
- access: "view"
27319
- },
27320
27916
  "pipelineAnalytics.getMotionEvents": {
27321
27917
  capName: "pipeline-analytics",
27322
27918
  capScope: "device",
@@ -27353,6 +27949,12 @@ Object.freeze({
27353
27949
  addonId: null,
27354
27950
  access: "view"
27355
27951
  },
27952
+ "pipelineAnalytics.getStorageMigrationMoveStatus": {
27953
+ capName: "pipeline-analytics",
27954
+ capScope: "device",
27955
+ addonId: null,
27956
+ access: "view"
27957
+ },
27356
27958
  "pipelineAnalytics.getTrack": {
27357
27959
  capName: "pipeline-analytics",
27358
27960
  capScope: "device",
@@ -27431,6 +28033,12 @@ Object.freeze({
27431
28033
  addonId: null,
27432
28034
  access: "view"
27433
28035
  },
28036
+ "pipelineAnalytics.pauseForStorageMigration": {
28037
+ capName: "pipeline-analytics",
28038
+ capScope: "device",
28039
+ addonId: null,
28040
+ access: "create"
28041
+ },
27434
28042
  "pipelineAnalytics.proposeRetrainAnnotations": {
27435
28043
  capName: "pipeline-analytics",
27436
28044
  capScope: "device",
@@ -27461,7 +28069,7 @@ Object.freeze({
27461
28069
  addonId: null,
27462
28070
  access: "create"
27463
28071
  },
27464
- "pipelineAnalytics.relocateMedia": {
28072
+ "pipelineAnalytics.refreshStorageLocationsForMigration": {
27465
28073
  capName: "pipeline-analytics",
27466
28074
  capScope: "device",
27467
28075
  addonId: null,
@@ -27473,6 +28081,12 @@ Object.freeze({
27473
28081
  addonId: null,
27474
28082
  access: "create"
27475
28083
  },
28084
+ "pipelineAnalytics.resumeForStorageMigration": {
28085
+ capName: "pipeline-analytics",
28086
+ capScope: "device",
28087
+ addonId: null,
28088
+ access: "create"
28089
+ },
27476
28090
  "pipelineAnalytics.saveRetrainAnnotations": {
27477
28091
  capName: "pipeline-analytics",
27478
28092
  capScope: "device",
@@ -27497,6 +28111,12 @@ Object.freeze({
27497
28111
  addonId: null,
27498
28112
  access: "create"
27499
28113
  },
28114
+ "pipelineAnalytics.startStorageMigrationMove": {
28115
+ capName: "pipeline-analytics",
28116
+ capScope: "device",
28117
+ addonId: null,
28118
+ access: "create"
28119
+ },
27500
28120
  "pipelineAnalytics.wipeAllAnalytics": {
27501
28121
  capName: "pipeline-analytics",
27502
28122
  capScope: "device",
@@ -27863,6 +28483,12 @@ Object.freeze({
27863
28483
  addonId: null,
27864
28484
  access: "view"
27865
28485
  },
28486
+ "pipelineOrchestrator.pauseForStorageMigration": {
28487
+ capName: "pipeline-orchestrator",
28488
+ capScope: "system",
28489
+ addonId: null,
28490
+ access: "create"
28491
+ },
27866
28492
  "pipelineOrchestrator.rebalance": {
27867
28493
  capName: "pipeline-orchestrator",
27868
28494
  capScope: "system",
@@ -27887,6 +28513,12 @@ Object.freeze({
27887
28513
  addonId: null,
27888
28514
  access: "view"
27889
28515
  },
28516
+ "pipelineOrchestrator.resumeForStorageMigration": {
28517
+ capName: "pipeline-orchestrator",
28518
+ capScope: "system",
28519
+ addonId: null,
28520
+ access: "create"
28521
+ },
27890
28522
  "pipelineOrchestrator.saveTemplate": {
27891
28523
  capName: "pipeline-orchestrator",
27892
28524
  capScope: "system",
@@ -28283,7 +28915,13 @@ Object.freeze({
28283
28915
  addonId: null,
28284
28916
  access: "create"
28285
28917
  },
28286
- "recording.cancelRelocate": {
28918
+ "recording.cancelRelocateJob": {
28919
+ capName: "recording",
28920
+ capScope: "system",
28921
+ addonId: null,
28922
+ access: "create"
28923
+ },
28924
+ "recording.cancelStorageMigrationMove": {
28287
28925
  capName: "recording",
28288
28926
  capScope: "system",
28289
28927
  addonId: null,
@@ -28319,7 +28957,7 @@ Object.freeze({
28319
28957
  addonId: null,
28320
28958
  access: "view"
28321
28959
  },
28322
- "recording.getRelocateStatus": {
28960
+ "recording.getStorageMigrationMoveStatus": {
28323
28961
  capName: "recording",
28324
28962
  capScope: "system",
28325
28963
  addonId: null,
@@ -28337,12 +28975,30 @@ Object.freeze({
28337
28975
  addonId: null,
28338
28976
  access: "view"
28339
28977
  },
28978
+ "recording.listRelocateJobs": {
28979
+ capName: "recording",
28980
+ capScope: "system",
28981
+ addonId: null,
28982
+ access: "view"
28983
+ },
28340
28984
  "recording.locateSegment": {
28341
28985
  capName: "recording",
28342
28986
  capScope: "system",
28343
28987
  addonId: null,
28344
28988
  access: "view"
28345
28989
  },
28990
+ "recording.pauseForStorageMigration": {
28991
+ capName: "recording",
28992
+ capScope: "system",
28993
+ addonId: null,
28994
+ access: "create"
28995
+ },
28996
+ "recording.planStorageRebalance": {
28997
+ capName: "recording",
28998
+ capScope: "system",
28999
+ addonId: null,
29000
+ access: "view"
29001
+ },
28346
29002
  "recording.pruneFootage": {
28347
29003
  capName: "recording",
28348
29004
  capScope: "system",
@@ -28361,6 +29017,12 @@ Object.freeze({
28361
29017
  addonId: null,
28362
29018
  access: "view"
28363
29019
  },
29020
+ "recording.refreshStorageLocationsForMigration": {
29021
+ capName: "recording",
29022
+ capScope: "system",
29023
+ addonId: null,
29024
+ access: "create"
29025
+ },
28364
29026
  "recording.relocateFootage": {
28365
29027
  capName: "recording",
28366
29028
  capScope: "system",
@@ -28385,44 +29047,68 @@ Object.freeze({
28385
29047
  addonId: null,
28386
29048
  access: "create"
28387
29049
  },
29050
+ "recording.resumeForStorageMigration": {
29051
+ capName: "recording",
29052
+ capScope: "system",
29053
+ addonId: null,
29054
+ access: "create"
29055
+ },
28388
29056
  "recording.setDeviceConfig": {
28389
29057
  capName: "recording",
28390
29058
  capScope: "system",
28391
29059
  addonId: null,
28392
29060
  access: "create"
28393
29061
  },
29062
+ "recording.startStorageMigrationMove": {
29063
+ capName: "recording",
29064
+ capScope: "system",
29065
+ addonId: null,
29066
+ access: "create"
29067
+ },
29068
+ "recording.startStorageRebalance": {
29069
+ capName: "recording",
29070
+ capScope: "system",
29071
+ addonId: null,
29072
+ access: "create"
29073
+ },
28394
29074
  "recordingExport.cancelExport": {
28395
- capName: "recordingExport",
29075
+ capName: "recording-export",
28396
29076
  capScope: "system",
28397
29077
  addonId: null,
28398
29078
  access: "create"
28399
29079
  },
28400
29080
  "recordingExport.createExport": {
28401
- capName: "recordingExport",
29081
+ capName: "recording-export",
28402
29082
  capScope: "system",
28403
29083
  addonId: null,
28404
29084
  access: "create"
28405
29085
  },
28406
29086
  "recordingExport.deleteExport": {
28407
- capName: "recordingExport",
29087
+ capName: "recording-export",
28408
29088
  capScope: "system",
28409
29089
  addonId: null,
28410
29090
  access: "delete"
28411
29091
  },
28412
29092
  "recordingExport.getDownloadUrl": {
28413
- capName: "recordingExport",
29093
+ capName: "recording-export",
28414
29094
  capScope: "system",
28415
29095
  addonId: null,
28416
29096
  access: "view"
28417
29097
  },
28418
29098
  "recordingExport.getExport": {
28419
- capName: "recordingExport",
29099
+ capName: "recording-export",
28420
29100
  capScope: "system",
28421
29101
  addonId: null,
28422
29102
  access: "view"
28423
29103
  },
28424
29104
  "recordingExport.listExports": {
28425
- capName: "recordingExport",
29105
+ capName: "recording-export",
29106
+ capScope: "system",
29107
+ addonId: null,
29108
+ access: "view"
29109
+ },
29110
+ "recordingExport.readExportBytes": {
29111
+ capName: "recording-export",
28426
29112
  capScope: "system",
28427
29113
  addonId: null,
28428
29114
  access: "view"
@@ -28781,6 +29467,30 @@ Object.freeze({
28781
29467
  addonId: null,
28782
29468
  access: "view"
28783
29469
  },
29470
+ "storageMigration.cancel": {
29471
+ capName: "storage-migration",
29472
+ capScope: "system",
29473
+ addonId: null,
29474
+ access: "create"
29475
+ },
29476
+ "storageMigration.plan": {
29477
+ capName: "storage-migration",
29478
+ capScope: "system",
29479
+ addonId: null,
29480
+ access: "view"
29481
+ },
29482
+ "storageMigration.start": {
29483
+ capName: "storage-migration",
29484
+ capScope: "system",
29485
+ addonId: null,
29486
+ access: "create"
29487
+ },
29488
+ "storageMigration.status": {
29489
+ capName: "storage-migration",
29490
+ capScope: "system",
29491
+ addonId: null,
29492
+ access: "view"
29493
+ },
28784
29494
  "storageProvider.abortUpload": {
28785
29495
  capName: "storage-provider",
28786
29496
  capScope: "system",
@@ -29159,12 +29869,42 @@ Object.freeze({
29159
29869
  addonId: null,
29160
29870
  access: "create"
29161
29871
  },
29872
+ "terminalSession.adoptLegacyMonitor": {
29873
+ capName: "terminal-session",
29874
+ capScope: "system",
29875
+ addonId: null,
29876
+ access: "create"
29877
+ },
29162
29878
  "terminalSession.close": {
29163
29879
  capName: "terminal-session",
29164
29880
  capScope: "system",
29165
29881
  addonId: null,
29166
29882
  access: "create"
29167
29883
  },
29884
+ "terminalSession.createInstance": {
29885
+ capName: "terminal-session",
29886
+ capScope: "system",
29887
+ addonId: null,
29888
+ access: "create"
29889
+ },
29890
+ "terminalSession.deleteInstance": {
29891
+ capName: "terminal-session",
29892
+ capScope: "system",
29893
+ addonId: null,
29894
+ access: "delete"
29895
+ },
29896
+ "terminalSession.listInstances": {
29897
+ capName: "terminal-session",
29898
+ capScope: "system",
29899
+ addonId: null,
29900
+ access: "view"
29901
+ },
29902
+ "terminalSession.listLegacyCameras": {
29903
+ capName: "terminal-session",
29904
+ capScope: "system",
29905
+ addonId: null,
29906
+ access: "view"
29907
+ },
29168
29908
  "terminalSession.listProfiles": {
29169
29909
  capName: "terminal-session",
29170
29910
  capScope: "system",
@@ -29195,6 +29935,12 @@ Object.freeze({
29195
29935
  addonId: null,
29196
29936
  access: "create"
29197
29937
  },
29938
+ "terminalSession.setInstanceEnabled": {
29939
+ capName: "terminal-session",
29940
+ capScope: "system",
29941
+ addonId: null,
29942
+ access: "create"
29943
+ },
29198
29944
  "terminalSession.writeInput": {
29199
29945
  capName: "terminal-session",
29200
29946
  capScope: "system",
@@ -29739,6 +30485,104 @@ var FramerateField = number().int().min(1).max(60);
29739
30485
  var TargetsField = array(NcRuleTargetSchema).min(1);
29740
30486
  var PriorityField = number().int().min(1).max(5);
29741
30487
  /**
30488
+ * Explicit override of the DENSE sampling cadence, seconds.
30489
+ *
30490
+ * Absent ⇒ derived as `max(1s, cadenceSec / 30)` — a 30 s base samples every
30491
+ * 1 s inside a detection range. (It was `base / 10` until 2026-08-12, which
30492
+ * made that same base 3 s and rendered a person pass as two frames.)
30493
+ *
30494
+ * THE ARITHMETIC. A detection range of `rangeSec` seconds sampled every
30495
+ * `denseCadenceSec` and played at `framerate` occupies
30496
+ *
30497
+ * outputSeconds = (rangeSec / denseCadenceSec) / framerate
30498
+ *
30499
+ * 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.
30500
+ * Halving this field doubles the frames INSIDE ranges only — the base cadence,
30501
+ * and therefore the length of a quiet night, does not move.
30502
+ *
30503
+ * Floored at {@link TIMELAPSE_DENSE_FLOOR_SEC}: asking for frames faster than
30504
+ * the recording has them returns the same frames, requested twice. Must be
30505
+ * STRICTLY smaller than `cadenceSec` — a dense rate that is not denser renders
30506
+ * a uniform video the operator believes is two-rate — and upsert refuses it
30507
+ * rather than letting the export cap reject the render hours after the window.
30508
+ */
30509
+ var DenseCadenceSecField = number().min(.1).max(3600);
30510
+ /**
30511
+ * Minimum seconds of OUTPUT video each detection range must occupy.
30512
+ *
30513
+ * The operator-facing form of the arithmetic above: instead of solving for a
30514
+ * cadence, state the dwell and let the renderer solve. `minDwellSec: 1` on a
30515
+ * 30 s base at 12 fps turns a 7 s pass into a full second of video by sampling
30516
+ * that range every ~583 ms.
30517
+ *
30518
+ * ONE CADENCE SERVES EVERY RANGE. `ExportDenseSchema.everyMs` is global — the
30519
+ * ranges are terms of a single ffmpeg `select` expression that cannot vary rate
30520
+ * per term — so the MOST DEMANDING (shortest) range sets the rate and longer
30521
+ * ranges are sampled denser than they need. Per-range cadences require a cap
30522
+ * schema change and are the tracked follow-up.
30523
+ *
30524
+ * A range too short to reach the dwell even at {@link TIMELAPSE_DENSE_FLOOR_SEC}
30525
+ * is rendered with every frame that EXISTS and no more: the guarantee is capped
30526
+ * by real footage, never met by duplicating frames into motion that never
30527
+ * happened.
30528
+ */
30529
+ var MinDwellSecField = number().min(0).max(60);
30530
+ /**
30531
+ * Caption burned into the notification's preview frame.
30532
+ *
30533
+ * Same `{{var}}` vocabulary as {@link TimelapseTemplateSchema} (`camera`,
30534
+ * `rule`, `from`, `to`) and rendered by the SAME renderer — a second
30535
+ * templating dialect for one field would be a second thing to explain.
30536
+ *
30537
+ * Absent ⇒ {@link DEFAULT_TIMELAPSE_PREVIEW_TEXT}. An EMPTY STRING is the
30538
+ * operator saying "the frame, no caption" — a distinct, reachable answer, and
30539
+ * the reason this is not `.min(1)`.
30540
+ */
30541
+ var PreviewTextField = string().max(200);
30542
+ /**
30543
+ * Whether the notification's preview is a STILL or a short animation.
30544
+ *
30545
+ * The operator's ask, verbatim: *"inviato come gif o video (come per le altre
30546
+ * rule)"* — his Scrypted advanced-notifier has a `gifRule`, and a ten-hour
30547
+ * night reads better as three seconds of motion than as one frame of it. Both
30548
+ * modes get the SAME treatment (blurred frame, large centred title); `'gif'`
30549
+ * simply applies it to a dozen frames sampled across the render and assembles
30550
+ * them.
30551
+ *
30552
+ * `'image'` is the default and stays the default: a GIF costs a dozen ffmpeg
30553
+ * seeks and a palette pass, and no rule that never asked for one should start
30554
+ * paying that on the deploy that shipped it.
30555
+ *
30556
+ * A GIF that cannot be assembled DEGRADES to the still — never to nothing.
30557
+ */
30558
+ var PreviewModeField = _enum(["image", "gif"]);
30559
+ /**
30560
+ * Which detection classes the notification reports counts for.
30561
+ *
30562
+ * The counts come from the tracks the render ALREADY fetched for its dense-range
30563
+ * plan — no second query — aggregated per class. Absent or empty means "every
30564
+ * class the window actually contained", which is what an operator who never
30565
+ * opened the field wants; a list narrows it (`['person']` on a driveway that
30566
+ * counts cars all night).
30567
+ *
30568
+ * Class names are the tracker's own (`person`, `vehicle`, `animal`, `package`,
30569
+ * …). An unknown name simply never matches and reports nothing — it is not an
30570
+ * error, because a rule may legitimately name a class this camera's model does
30571
+ * not emit.
30572
+ *
30573
+ * The counts are exposed to {@link TimelapseTemplateSchema} as:
30574
+ * - `{{detections}}` — total over the reported classes
30575
+ * - `{{detectionSummary}}` — `2 persone, 1 veicolo`
30576
+ * - `{{count_person}}` / `{{count_vehicle}}` / `{{count_animal}}` / … —
30577
+ * one per class, `count_` + the class name
30578
+ *
30579
+ * With NO custom body template the summary is appended to the derived body, and
30580
+ * only when the total is non-zero: a nightly `0 rilevamenti` is a line nobody
30581
+ * reads. With a custom template the operator owns every word — nothing is
30582
+ * appended, so `{{detectionSummary}}` is how he asks for it.
30583
+ */
30584
+ var ReportClassesField = array(string().min(1).max(40)).max(20);
30585
+ /**
29742
30586
  * Client-supplied timelapse-rule fields. The server stamps id / createdBy /
29743
30587
  * createdAt / updatedAt / ownerUserId / lastGeneratedAt — none of them appear
29744
30588
  * here (see the ownership note above).
@@ -29758,9 +30602,30 @@ var TimelapseRuleInputSchema = object({
29758
30602
  cadenceSec: CadenceSecField.default(15),
29759
30603
  /** Output frames per second of the assembled mp4 (predecessor parity). */
29760
30604
  framerate: FramerateField.default(10),
30605
+ /**
30606
+ * Explicit dense cadence — see {@link DenseCadenceSecField}. Absent ⇒ derived
30607
+ * as `max(1s, cadenceSec / 30)`, which is what every rule written before this
30608
+ * field gets.
30609
+ */
30610
+ denseCadenceSec: DenseCadenceSecField.optional(),
30611
+ /** Output-seconds guarantee per detection range — see {@link MinDwellSecField}. */
30612
+ minDwellSec: MinDwellSecField.optional(),
29761
30613
  /** `notification-output` targets the finished video/thumbnail is sent to. */
29762
30614
  targets: TargetsField,
29763
30615
  template: TimelapseTemplateSchema.optional(),
30616
+ /**
30617
+ * Caption on the notification's PREVIEW FRAME — see {@link PreviewTextField}
30618
+ * and {@link DEFAULT_TIMELAPSE_PREVIEW_TEXT}.
30619
+ *
30620
+ * Deliberately NOT part of {@link TimelapseTemplateSchema}: that object is
30621
+ * the notification's title/body, and clearing it (`template: null`) must not
30622
+ * silently clear the caption too.
30623
+ */
30624
+ previewText: PreviewTextField.optional(),
30625
+ /** Still or animation — see {@link PreviewModeField}. */
30626
+ previewMode: PreviewModeField.default("image"),
30627
+ /** Classes the notification counts — see {@link ReportClassesField}. */
30628
+ reportClasses: ReportClassesField.optional(),
29764
30629
  /** Canonical notification priority ordinal (1..5); per-target overridable. */
29765
30630
  priority: PriorityField.default(3)
29766
30631
  });
@@ -29771,8 +30636,13 @@ object({
29771
30636
  schedule: NcScheduleSchema.optional(),
29772
30637
  cadenceSec: CadenceSecField.optional(),
29773
30638
  framerate: FramerateField.optional(),
30639
+ denseCadenceSec: DenseCadenceSecField.optional(),
30640
+ minDwellSec: MinDwellSecField.optional(),
29774
30641
  targets: TargetsField.optional(),
29775
30642
  template: TimelapseTemplateSchema.nullable().optional(),
30643
+ previewText: PreviewTextField.optional(),
30644
+ previewMode: PreviewModeField.optional(),
30645
+ reportClasses: ReportClassesField.optional(),
29776
30646
  priority: PriorityField.optional()
29777
30647
  });
29778
30648
  TimelapseRuleInputSchema.extend({
@@ -29784,10 +30654,28 @@ TimelapseRuleInputSchema.extend({
29784
30654
  */
29785
30655
  ownerUserId: string().optional(),
29786
30656
  /**
29787
- * Epoch-ms of the last successful generation the 1-hour re-generation
29788
- * guard's durable state (predecessor parity). Absent = never generated.
30657
+ * Epoch-ms of the NEWEST successful generation across every camera of this
30658
+ * rule. What a UI shows, and the compatibility floor for
30659
+ * {@link readTimelapseGeneratedAt}. Absent = never generated.
29789
30660
  */
29790
30661
  lastGeneratedAt: number().optional(),
30662
+ /**
30663
+ * PER-CAMERA generation state, keyed by `String(deviceId)` — the
30664
+ * re-generation guard's real durable state.
30665
+ *
30666
+ * One rule covers several cameras and each renders its own video, so a rule
30667
+ * -wide stamp is wrong in the direction that DESTROYS work: camera A
30668
+ * succeeding at 06:05 tells camera B, whose render failed, that it is
30669
+ * already done — and B's night is gone for good, because the window will not
30670
+ * come back.
30671
+ *
30672
+ * ADDITIVE, so the migration is free: a row written before this field simply
30673
+ * has no map, and {@link readTimelapseGeneratedAt} falls back to
30674
+ * {@link TimelapseRuleSchema.shape.lastGeneratedAt}. Reading an old row as
30675
+ * "never generated" would re-render and re-notify every camera of every rule
30676
+ * once, on the deploy that shipped the map.
30677
+ */
30678
+ generatedByDevice: record(string(), number()).optional(),
29791
30679
  /** userId of the caller who created the rule (server-stamped). */
29792
30680
  createdBy: string(),
29793
30681
  createdAt: number(),