@camstack/addon-smtp-nodemailer 1.2.29 → 1.2.31

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.
@@ -7547,6 +7547,66 @@ var OpsLogQueryInputSchema = object({
7547
7547
  /** Max rows returned, newest-first. */
7548
7548
  limit: number().int().min(1).max(1e3).optional()
7549
7549
  });
7550
+ var LabelDefinitionSchema = object({
7551
+ id: string(),
7552
+ name: string(),
7553
+ category: string().optional(),
7554
+ description: string().optional(),
7555
+ icon: string().optional()
7556
+ });
7557
+ /** Detection-macro targets a catalog `classMap` may resolve to. */
7558
+ var CLASS_MAP_MACRO_TARGETS = [
7559
+ "person",
7560
+ "vehicle",
7561
+ "animal",
7562
+ "package"
7563
+ ];
7564
+ /**
7565
+ * Le macro classi di PRIMO LIVELLO: quelle che un object detector emette e che
7566
+ * un operatore può selezionare.
7567
+ *
7568
+ * Sono le tre offerte dallo step `object-detection`
7569
+ * (`addon-pipeline/src/detection-pipeline/registry/step-definitions.ts`,
7570
+ * `enabledMacroClasses`). `package` sta in {@link CLASS_MAP_MACRO_TARGETS} e in
7571
+ * `MACRO_LABELS` — è una macro vera — ma NON qui: appartiene allo step
7572
+ * `package-detection`, la cui abilitazione è guidata dalle zone, e offrire la
7573
+ * stessa parola due volte ha già fatto accendere a un operatore il proxy COCO
7574
+ * (suitcase/backpack/handbag) lasciando spento il detector dedicato.
7575
+ *
7576
+ * UNA lista. Prima di oggi le stesse tre erano scritte a mano nell'offerta
7577
+ * dello step e una seconda volta come union `FirstLevelMacro`
7578
+ * (`types/detection.ts`); una terza copia per il trigger di registrazione
7579
+ * (`RecordingTriggers.objectClasses`) avrebbe reso invisibile la divergenza
7580
+ * successiva.
7581
+ */
7582
+ var FIRST_LEVEL_MACRO_CLASSES = [
7583
+ "person",
7584
+ "vehicle",
7585
+ "animal"
7586
+ ];
7587
+ /**
7588
+ * Wire schema for a per-model CATALOG classMap override
7589
+ * (`ModelCatalogEntry.classMap` / `ModelConvertMetadata.classMap`) —
7590
+ * restricted to {@link CLASS_MAP_MACRO_TARGETS}, the only macros the
7591
+ * detection pipeline executor actually routes.
7592
+ *
7593
+ * This is deliberately a DIFFERENT, narrower shape than the general-purpose
7594
+ * `ClassMapDefinition` interface above (e.g. `IDetectionAddon.getClassMap()`
7595
+ * and the audio `YAMNET_TO_MACRO` catalog both use macro targets outside this
7596
+ * enum) — the two used to share the name `ClassMapDefinition`/
7597
+ * `ClassMapDefinitionSchema`, which made the schema-type-twin guard
7598
+ * (`scripts/check-schema-type-twins.ts`) flag them as a duplicated shape. They
7599
+ * are not: it is two different concepts colliding on a name. Keep this type
7600
+ * under its own name rather than reusing `ClassMapDefinition` — reusing it
7601
+ * would either narrow every `ClassMapDefinition` consumer to the four
7602
+ * detection macros (breaking `YAMNET_TO_MACRO`) or drop the validation this
7603
+ * schema exists for (see the "rejects a classMap whose target is not a
7604
+ * detection macro" test in `model-catalog-schema.test.ts`).
7605
+ */
7606
+ var DetectionCatalogClassMapSchema = object({
7607
+ mapping: record(string(), _enum(CLASS_MAP_MACRO_TARGETS)),
7608
+ preserveOriginal: boolean()
7609
+ });
7550
7610
  /**
7551
7611
  * Numeric day-of-week: 0 = Sunday … 6 = Saturday (matches `Date.getDay`).
7552
7612
  * Named `RecordingWeekday` to avoid collision with the string-union
@@ -7569,10 +7629,55 @@ var RecordingStorageModeSchema = _enum([
7569
7629
  "events",
7570
7630
  "continuous"
7571
7631
  ]);
7632
+ /**
7633
+ * Le macro classi che possono aprire una finestra di registrazione — le stesse
7634
+ * tre offerte dallo step `object-detection`, da UNA lista
7635
+ * ({@link FIRST_LEVEL_MACRO_CLASSES}).
7636
+ */
7637
+ var RecordingObjectTriggerClassSchema = _enum(FIRST_LEVEL_MACRO_CLASSES);
7638
+ /**
7639
+ * True quando `values` non ripete un elemento.
7640
+ *
7641
+ * Un duplicato non è innocuo: ogni voce di `objectClasses` / `sensorDeviceIds`
7642
+ * diventa una SORGENTE in `bandTriggerSources`, e la stessa sorgente due volte
7643
+ * conterebbe due volte le sue finestre in `segmentMissedByMs`.
7644
+ */
7645
+ var noDuplicates = (values) => new Set(values).size === values.length;
7572
7646
  /** Which detectors trigger an `events`-mode band. */
7573
7647
  var RecordingTriggersSchema = object({
7574
7648
  motion: boolean().optional(),
7575
- audioThresholdDbfs: number().optional()
7649
+ audioThresholdDbfs: number().optional(),
7650
+ /**
7651
+ * Le macro classi la cui detection apre una finestra. ASSENTE = la sorgente
7652
+ * non è ascoltata; un array VUOTO è rifiutato, perché "banda events, trigger
7653
+ * object acceso, nessuna classe" è la stessa forma "abilitata e non registra
7654
+ * nulla, per sempre" contro cui è scritto `eventsBandCanEverDemand`.
7655
+ *
7656
+ * Il segnale letto è GIÀ FILTRATO: solo detection `source: 'pipeline'`, cioè
7657
+ * quelle che hanno attraversato `enabledMacroClasses`, i
7658
+ * `minConfidence<Macro>` e il full-frame guard. L'AI a bordo camera
7659
+ * (`source: 'onboard'`) non attraversa nessuno di quei gate e NON apre
7660
+ * finestre — vedi `recorder/object-trigger.ts`.
7661
+ */
7662
+ objectClasses: array(RecordingObjectTriggerClassSchema).min(1).refine(noDuplicates, { message: "objectClasses must not repeat a class" }).optional(),
7663
+ /**
7664
+ * I device LINKED il cui FRONTE ALTO apre una finestra. Assente = la sorgente
7665
+ * non è ascoltata; un array vuoto è rifiutato per la stessa ragione di
7666
+ * `objectClasses`.
7667
+ *
7668
+ * Sono id di device SORGENTE, non camere: la banda li nomina, quindi il
7669
+ * percorso caldo (`DeviceStateChanged`, a ritmo di bus su tutta la flotta)
7670
+ * non fa RPC. L'OFFERTA da cui l'operatore li sceglie è un'altra domanda, e
7671
+ * si risolve con `deviceManager.getLinkedDevices` + `getBindingsBatch` per
7672
+ * device (D12) — mai un elenco globale di cap.
7673
+ *
7674
+ * Cosa vuol dire "alto" dipende dal TIPO di device e non è deciso qui:
7675
+ * `SOURCE_CAP_ACTIVE_FIELD` (`catalogs/sensor-active-state.ts`) è LA tabella,
7676
+ * la stessa che il virtual-doorbell usa dal 2026-08-05. Ed è il FRONTE, non
7677
+ * il livello: un contatto trovato già aperto al riavvio del runner non fa
7678
+ * registrare.
7679
+ */
7680
+ sensorDeviceIds: array(number().int().positive()).min(1).max(16).refine(noDuplicates, { message: "sensorDeviceIds must not repeat a device" }).optional()
7576
7681
  });
7577
7682
  /**
7578
7683
  * Mode of a single recording band — the recorder per-band vocabulary.
@@ -8024,41 +8129,6 @@ var DecoderSessionConfigSchema = object({
8024
8129
  */
8025
8130
  debug: boolean().optional()
8026
8131
  });
8027
- var LabelDefinitionSchema = object({
8028
- id: string(),
8029
- name: string(),
8030
- category: string().optional(),
8031
- description: string().optional(),
8032
- icon: string().optional()
8033
- });
8034
- /**
8035
- * Wire schema for a per-model CATALOG classMap override
8036
- * (`ModelCatalogEntry.classMap` / `ModelConvertMetadata.classMap`) —
8037
- * restricted to {@link CLASS_MAP_MACRO_TARGETS}, the only macros the
8038
- * detection pipeline executor actually routes.
8039
- *
8040
- * This is deliberately a DIFFERENT, narrower shape than the general-purpose
8041
- * `ClassMapDefinition` interface above (e.g. `IDetectionAddon.getClassMap()`
8042
- * and the audio `YAMNET_TO_MACRO` catalog both use macro targets outside this
8043
- * enum) — the two used to share the name `ClassMapDefinition`/
8044
- * `ClassMapDefinitionSchema`, which made the schema-type-twin guard
8045
- * (`scripts/check-schema-type-twins.ts`) flag them as a duplicated shape. They
8046
- * are not: it is two different concepts colliding on a name. Keep this type
8047
- * under its own name rather than reusing `ClassMapDefinition` — reusing it
8048
- * would either narrow every `ClassMapDefinition` consumer to the four
8049
- * detection macros (breaking `YAMNET_TO_MACRO`) or drop the validation this
8050
- * schema exists for (see the "rejects a classMap whose target is not a
8051
- * detection macro" test in `model-catalog-schema.test.ts`).
8052
- */
8053
- var DetectionCatalogClassMapSchema = object({
8054
- mapping: record(string(), _enum([
8055
- "person",
8056
- "vehicle",
8057
- "animal",
8058
- "package"
8059
- ])),
8060
- preserveOriginal: boolean()
8061
- });
8062
8132
  var MODEL_FORMATS = [
8063
8133
  "onnx",
8064
8134
  "coreml",
@@ -15501,7 +15571,23 @@ var NcHistoryEntrySchema = object({
15501
15571
  updatedAt: number(),
15502
15572
  /** Failure detail — present on a `dead` row. */
15503
15573
  error: string().optional(),
15504
- subject: NcHistorySubjectSchema
15574
+ subject: NcHistorySubjectSchema,
15575
+ /**
15576
+ * Ids of the artefacts (still, then gif, then clip) this row's successful
15577
+ * delivery indexed in the artefact library — a REFERENCE, never the bytes
15578
+ * (an artefact is often megabytes; this row is durable JSON rewritten on
15579
+ * every delivery attempt). Absent on a row still pending/dead, a row
15580
+ * delivered before this field shipped, or a wiring with no artefact index.
15581
+ *
15582
+ * Resolve one to a fetchable URL with `resolveArtifactUrl` — an id
15583
+ * outlives any one URL's TTL, so a caller mints a fresh link on demand
15584
+ * rather than trusting one frozen at delivery time. `resolveArtifactUrl`
15585
+ * also answers `null` for an id whose artefact has since expired past the
15586
+ * retained shelf's own age bound — the degrade a caller (the Home
15587
+ * Assistant export) must render as "no image right now", never as a
15588
+ * broken link.
15589
+ */
15590
+ artifactIds: array(string().min(1)).optional()
15505
15591
  });
15506
15592
  /**
15507
15593
  * Query filter for `getHistory` (spec §4.2). Every field is a narrowing
@@ -15728,7 +15814,7 @@ method(object({}), object({ rules: array(NcRuleSchema) }), { auth: "admin" }), m
15728
15814
  }), method(object({}), object({
15729
15815
  catalog: array(NcConditionDescriptorSchema),
15730
15816
  taxonomy: NcTaxonomySchema.optional()
15731
- })), method(object({ filter: NcHistoryFilterSchema.default({ limit: 100 }) }), object({ entries: array(NcHistoryEntrySchema) }), { auth: "admin" }), method(object({}), object({ snoozes: array(NcSnoozeSchema) }), { caller: "required" }), method(object({ snooze: NcSnoozeInputSchema }), object({ snooze: NcSnoozeSchema }), {
15817
+ })), method(object({ filter: NcHistoryFilterSchema.default({ limit: 100 }) }), object({ entries: array(NcHistoryEntrySchema) }), { auth: "admin" }), method(object({ artifactId: string().min(1) }), object({ url: string().nullable() }), { auth: "admin" }), method(object({}), object({ snoozes: array(NcSnoozeSchema) }), { caller: "required" }), method(object({ snooze: NcSnoozeInputSchema }), object({ snooze: NcSnoozeSchema }), {
15732
15818
  kind: "mutation",
15733
15819
  caller: "required"
15734
15820
  }), method(object({ snoozeId: string() }), object({ success: literal(true) }), {
@@ -20829,7 +20915,7 @@ var lifecycleJobSchema = object({
20829
20915
  * `useAddonsOnAddonLogs`, etc. flow through the same codegen pipeline
20830
20916
  * as every other cap.
20831
20917
  */
20832
- var LogLevelSchema$1 = _enum([
20918
+ var LogLevelSchema$2 = _enum([
20833
20919
  "debug",
20834
20920
  "info",
20835
20921
  "warn",
@@ -21036,7 +21122,7 @@ var CustomActionInputSchema = object({
21036
21122
  method(_void(), array(AddonListItemSchema).readonly()), method(object({
21037
21123
  addonId: string(),
21038
21124
  limit: number().min(1).max(500).default(100),
21039
- level: LogLevelSchema$1.optional()
21125
+ level: LogLevelSchema$2.optional()
21040
21126
  }), array(LogQueryEntrySchema)), method(_void(), array(InstalledPackageSchema).readonly()), method(object({
21041
21127
  packageName: string(),
21042
21128
  version: string().optional()
@@ -21134,7 +21220,7 @@ method(_void(), array(AddonListItemSchema).readonly()), method(object({
21134
21220
  auth: "admin"
21135
21221
  }), method(object({
21136
21222
  addonId: string(),
21137
- level: LogLevelSchema$1.optional()
21223
+ level: LogLevelSchema$2.optional()
21138
21224
  }), LogStreamEntrySchema, { kind: "subscription" });
21139
21225
  object({
21140
21226
  /** Carbon dioxide concentration in ppm. */
@@ -22128,6 +22214,35 @@ var FaceFilterEnum = _enum([
22128
22214
  "identified",
22129
22215
  "all"
22130
22216
  ]);
22217
+ /**
22218
+ * What a `listRecentFaces` page is ORDERED BY.
22219
+ *
22220
+ * - `timestamp` — when the face was seen. The historical (and default) order.
22221
+ * - `suggestionConfidence` — {@link FaceInfo.suggestedMatchScore}, the peak
22222
+ * cosine of the face's SUGGESTED identity. This is the "review by certainty"
22223
+ * order: it puts the suggestions an operator can confirm with one tap at the
22224
+ * top, and it is the reason this enum exists — a client that ranked a capped
22225
+ * page client-side was ranking the newest N, never the most certain N.
22226
+ *
22227
+ * A row with NO suggestion (`suggestedMatchScore` absent — a legacy row, an
22228
+ * auto-assigned face, or a face below the suggestion band) has no certainty to
22229
+ * compare. Under `suggestionConfidence` it sorts **LAST, in BOTH directions**
22230
+ * — flipping the direction reorders the rows that HAVE a certainty and never
22231
+ * floods the page with the ones that do not. `addon-post-analysis`'s
22232
+ * `store/face-sort.ts` is the single implementation, tiebreaks newest-first
22233
+ * then by faceId, and is what makes this a total order instead of the
22234
+ * backend's NULL-collation accident.
22235
+ */
22236
+ var FaceSortFieldEnum = _enum(["timestamp", "suggestionConfidence"]);
22237
+ var FaceSortDirectionEnum = _enum(["asc", "desc"]);
22238
+ /** One suggested group of look-alike UNASSIGNED faces. Ids only — an embedding
22239
+ * never leaves the server. */
22240
+ var FaceClusterSchema = object({
22241
+ faceIds: array(string()).readonly(),
22242
+ representativeFaceId: string(),
22243
+ size: number().int(),
22244
+ cohesion: number()
22245
+ });
22131
22246
  var MediaFileLiteSchema$1 = object({
22132
22247
  key: string(),
22133
22248
  kind: string(),
@@ -22174,24 +22289,72 @@ includeCrops: boolean().optional() }).optional(), array(IdentitySchema).readonly
22174
22289
  kind: "mutation",
22175
22290
  auth: "admin"
22176
22291
  }), method(object({
22177
- /** Restrict to one camera. Absent keeps the cluster-wide gallery view. */
22292
+ /**
22293
+ * Restrict to ONE camera. Absent keeps the cluster-wide gallery view.
22294
+ *
22295
+ * The legacy single-camera form, kept verbatim for every caller that
22296
+ * already sends it. A caller that wants a SET sends {@link deviceIds}
22297
+ * instead — never both: `deviceIds` is the authority whenever it is
22298
+ * present, and this field is then ignored rather than unioned, so
22299
+ * there is exactly one answer to "which cameras did I ask for".
22300
+ */
22178
22301
  deviceId: number().int().optional(),
22302
+ /**
22303
+ * Restrict to a SET of cameras — the review UI's camera filter, which
22304
+ * until now had to fetch the cluster-wide page and drop rows in the
22305
+ * client (so the `limit` it asked for was spent on cameras it was
22306
+ * about to discard).
22307
+ *
22308
+ * An **empty array reads NOTHING** — `[]` is an empty page, never
22309
+ * "every camera". A request for no devices is a request, not an
22310
+ * omission; same contract as `deviceManager.listFleet` and
22311
+ * `pipelineAnalytics.listRecentTracks`.
22312
+ *
22313
+ * Absent (`undefined`) is the omission, and keeps the cluster-wide view.
22314
+ */
22315
+ deviceIds: array(number().int()).optional(),
22179
22316
  limit: number().int().positive().optional(),
22180
22317
  filter: FaceFilterEnum.optional(),
22181
22318
  /**
22182
- * Inline the base64 crop on every row. Default `true` — the existing
22183
- * behaviour, kept so no caller breaks.
22319
+ * Window lower bound on {@link FaceInfo.timestamp}, INCLUSIVE.
22320
+ * Absent means no lower bound.
22321
+ */
22322
+ since: number().int().optional(),
22323
+ /**
22324
+ * Window upper bound on {@link FaceInfo.timestamp}, INCLUSIVE.
22325
+ * Absent means no upper bound.
22326
+ */
22327
+ until: number().int().optional(),
22328
+ /**
22329
+ * Order the page by time or by suggestion certainty. Default
22330
+ * `'timestamp'` — the historical order, unchanged for every caller
22331
+ * that does not ask.
22184
22332
  *
22185
- * Set `false` once the caller renders {@link FaceInfo.cropUrl}: that
22186
- * drops ~2.87 MiB per 500-row page to a few KiB of metadata and lets
22187
- * the browser cache the images.
22333
+ * See {@link FaceSortFieldEnum} for what a row with no suggestion
22334
+ * does under `'suggestionConfidence'`.
22188
22335
  *
22189
- * **This is an INPUT field, so it does not reach the addon until the
22190
- * next train.** The hub router validates cap inputs against its own
22191
- * compiled Zod, which strips a key it does not know verified today
22192
- * on the OUTPUT side, where an additive field DOES arrive immediately
22193
- * (`Track.hasFace`). Until the train ships, sending `false` is
22194
- * harmless and simply keeps the crops inline.
22336
+ * Cost note: `'timestamp'` is served by the `(deviceId, timestamp)`
22337
+ * index and stops reading as soon as `limit` rows have PASSED the
22338
+ * filter. `'suggestionConfidence'` cannot stop earlythe most
22339
+ * certain row may be the oldest so it walks the window. Narrow it
22340
+ * with {@link since} / {@link until}.
22341
+ */
22342
+ sortBy: FaceSortFieldEnum.optional(),
22343
+ /** Sort direction for {@link sortBy}. Default `'desc'`. */
22344
+ sortDirection: FaceSortDirectionEnum.optional(),
22345
+ /**
22346
+ * Inline the base64 crop on every row.
22347
+ *
22348
+ * Default `false` since the 2026-08-25 inversion — see
22349
+ * `include-crops-default.ts`, which is the ONE place that resolves
22350
+ * this for every gallery, and which records why the inline shape had
22351
+ * to become the one you ASK for (60 457 ms → UDS timeout at 500 rows).
22352
+ * The doc here used to still say `true`; it was wrong, and a leftover
22353
+ * that describes the old design reads as permission to rely on it.
22354
+ *
22355
+ * Nothing loses its image: the row carries {@link FaceInfo.cropUrl},
22356
+ * which the browser fetches off the `event-media` plane in parallel,
22357
+ * cached and ETagged.
22195
22358
  */
22196
22359
  includeCrops: boolean().optional()
22197
22360
  }).optional(), array(FaceInfoSchema).readonly()), method(object({
@@ -22227,13 +22390,39 @@ includeCrops: boolean().optional() }).optional(), array(IdentitySchema).readonly
22227
22390
  }), method(object({
22228
22391
  threshold: number().min(0).max(1).optional(),
22229
22392
  minClusterSize: number().int().min(2).optional(),
22230
- limit: number().int().positive().optional()
22231
- }).optional(), array(object({
22232
- faceIds: array(string()).readonly(),
22233
- representativeFaceId: string(),
22234
- size: number().int(),
22235
- cohesion: number()
22236
- })).readonly());
22393
+ /**
22394
+ * Cap on the number of CLUSTERS returned. Renamed from `limit`,
22395
+ * which read as though it bounded the work — it never did.
22396
+ *
22397
+ * Wins over {@link limit} when both are sent.
22398
+ */
22399
+ maxClusters: number().int().positive().optional(),
22400
+ /**
22401
+ * @deprecated Ambiguous name for {@link maxClusters} — it cuts the
22402
+ * RESULT, not the scan. Kept so existing callers keep working; send
22403
+ * `maxClusters` (and, if you care about cost, {@link maxFacesScanned}).
22404
+ */
22405
+ limit: number().int().positive().optional(),
22406
+ /**
22407
+ * Cap on the number of unassigned faces READ AND CLUSTERED — the
22408
+ * POOL, not the result.
22409
+ *
22410
+ * This is the knob {@link maxClusters} was mistaken for. Clustering
22411
+ * used to read every unassigned face on the hub no matter what the
22412
+ * caller asked for, because the only bound cut the finished clusters
22413
+ * afterwards; a UI showing a window of 100 paid for a scan of the
22414
+ * whole corpus, on an addon whose disk is under contention.
22415
+ *
22416
+ * The pool is the NEWEST matching faces first — the same order the
22417
+ * gallery shows — so a bound here shortens the horizon, it does not
22418
+ * sample it randomly.
22419
+ *
22420
+ * Default: 1 000 (`FACE_SWEEP_PAGE`, exactly one store page). Chosen
22421
+ * so the live corpus — 372 face rows — is unaffected while the
22422
+ * unbounded scan can never come back as the table grows.
22423
+ */
22424
+ maxFacesScanned: number().int().positive().optional()
22425
+ }).optional(), array(FaceClusterSchema).readonly());
22237
22426
  /**
22238
22427
  * Fan-control cap. Models HA `fan.*` entity-specific surfaces:
22239
22428
  * speed percentage, preset modes, ceiling-fan direction, and
@@ -25033,6 +25222,39 @@ var ReadGopBytesResultSchema = object({
25033
25222
  /** Media ms the returned fragment covers. */
25034
25223
  gopDurMs: number()
25035
25224
  });
25225
+ /**
25226
+ * A time WINDOW of one finalized segment, cut by byte range — the multi-GOP
25227
+ * twin of {@link ReadGopBytesResultSchema}'s single instant. Built for the
25228
+ * replay clip's `recording` source (`docs/design/plans/2026-08-26-replay-clip-su-pipeline.md`):
25229
+ * a replay needs several seconds of native pixels, not one frame.
25230
+ *
25231
+ * `ok.data` is standalone-demuxable, same as a GOP read. `ok.reachesRequestedEnd`
25232
+ * is `false` when the returned bytes were cut short by the read's own safety
25233
+ * byte cap before covering `[fromMs, toMs)` — a truncation, reported, not a
25234
+ * silently shorter answer. `spans-multiple-segments` is a REFUSAL, not a
25235
+ * degradation: a window whose end falls past the covering segment would need
25236
+ * bytes stitched from a second segment file (its own `ftyp`+`moov`), which is
25237
+ * not one standalone-demuxable stream — the caller's answer is to request a
25238
+ * shorter window or one aligned to a single segment, not to receive spliced
25239
+ * bytes nothing has proven decodable.
25240
+ */
25241
+ var ReadWindowBytesResultSchema = discriminatedUnion("kind", [object({
25242
+ kind: literal("ok"),
25243
+ data: _instanceof(Uint8Array),
25244
+ /** Absolute epoch ms of the returned bytes' first sample — at or before
25245
+ * the requested `fromMs` (anchored on the nearest keyframe). */
25246
+ gopStartMs: number(),
25247
+ /** Media ms the returned bytes cover, from `gopStartMs`. */
25248
+ gopDurMs: number(),
25249
+ /** `false` ⇒ the safety byte cap cut the read short before it reached
25250
+ * the requested `toMs`; the caller got fewer frames than asked for. */
25251
+ reachesRequestedEnd: boolean()
25252
+ }), object({
25253
+ kind: literal("spans-multiple-segments"),
25254
+ /** Where the covering segment's own footage runs out — informational,
25255
+ * not a retry hint (retrying the same window would refuse again). */
25256
+ segmentEndMs: number()
25257
+ })]);
25036
25258
  method(object({
25037
25259
  deviceId: number(),
25038
25260
  fromMs: number(),
@@ -25083,6 +25305,15 @@ method(object({
25083
25305
  }), ReadGopBytesResultSchema, {
25084
25306
  kind: "query",
25085
25307
  auth: "admin"
25308
+ }), method(object({
25309
+ deviceId: number(),
25310
+ profile: string(),
25311
+ startMs: number(),
25312
+ fromMs: number(),
25313
+ toMs: number()
25314
+ }), ReadWindowBytesResultSchema, {
25315
+ kind: "query",
25316
+ auth: "admin"
25086
25317
  }), method(object({
25087
25318
  deviceId: number(),
25088
25319
  config: RecordingConfigSchema
@@ -25914,6 +26145,211 @@ var SetSiteLocationInputSchema = object({
25914
26145
  latitude: number().min(-90).max(90),
25915
26146
  longitude: number().min(-180).max(180)
25916
26147
  }).nullable();
26148
+ /**
26149
+ * One `(procedure, user-agent, ip, principal)` tuple of the HTTP request
26150
+ * census. `principal` is the DERIVED identity (`apocaliss92 (admin)`,
26151
+ * `scoped:1a2b3c4d (scoped-token)`, `anonymous`) that the tRPC error log
26152
+ * already prints - never a token, never an `Authorization` header.
26153
+ */
26154
+ var RequestCensusGroupSchema = object({
26155
+ procedure: string(),
26156
+ userAgent: string(),
26157
+ ip: string(),
26158
+ principal: string(),
26159
+ calls: number(),
26160
+ perMin: number()
26161
+ });
26162
+ /**
26163
+ * A procedure's TOTAL over the window, across every caller.
26164
+ *
26165
+ * This block, not the group list, is what answers "did these calls arrive over
26166
+ * HTTP at all". A total far BELOW what a store-side census counted over the
26167
+ * same window excludes the HTTP plane, which is a result, not a failure.
26168
+ */
26169
+ var RequestCensusProcedureSchema = object({
26170
+ procedure: string(),
26171
+ calls: number(),
26172
+ perMin: number()
26173
+ });
26174
+ /**
26175
+ * The census as an operator sees it.
26176
+ *
26177
+ * `persisted` is the honest answer to "will this survive the restart I am
26178
+ * about to do": the arm deadline is written to `system-settings` so a window
26179
+ * armed now can measure the NEXT boot, and a write that failed must not look
26180
+ * like one that succeeded.
26181
+ */
26182
+ var RequestCensusStatusSchema = object({
26183
+ armed: boolean(),
26184
+ /** How long the current - or just-closed - window collected, in ms. */
26185
+ elapsedMs: number(),
26186
+ /** The window actually armed, after the server clamped the request. */
26187
+ windowMs: number(),
26188
+ /** Epoch ms the window closes at. 0 when disarmed. */
26189
+ armedUntilMs: number(),
26190
+ httpRequests: number(),
26191
+ batchedRequests: number(),
26192
+ /**
26193
+ * Procedure invocations. Higher than `httpRequests` whenever tRPC batching
26194
+ * is in play (`?batch=1` carries several procedures in one request); this is
26195
+ * the number comparable with a store-side call count.
26196
+ */
26197
+ procedureCalls: number(),
26198
+ /**
26199
+ * tRPC WebSocket connections opened during the window. NOT calls - the WS
26200
+ * transport resolves one context per connection - but the number that says
26201
+ * whether a plane this census cannot see was busy while HTTP was quiet.
26202
+ */
26203
+ wsConnections: number(),
26204
+ distinctGroups: number(),
26205
+ /** Calls counted in the totals whose group attribution was shed at the
26206
+ * cardinality bound. */
26207
+ unattributedCalls: number(),
26208
+ procedures: array(RequestCensusProcedureSchema).readonly(),
26209
+ groups: array(RequestCensusGroupSchema).readonly()
26210
+ }).extend({ persisted: boolean() });
26211
+ /** Severity vocabulary. Mirrors `LogLevel` in `interfaces/logging.ts`. */
26212
+ var LogLevelSchema$1 = _enum([
26213
+ "debug",
26214
+ "info",
26215
+ "warn",
26216
+ "error"
26217
+ ]);
26218
+ /**
26219
+ * The diagnostics that can be ARMED for a window. Exactly one today.
26220
+ *
26221
+ * A diagnostic is anything whose cost is only worth paying while a question is
26222
+ * open. It never persists as a boolean: see {@link DiagnosticWindowSchema}.
26223
+ */
26224
+ var DiagnosticIdSchema = _enum(["request-census"]);
26225
+ /**
26226
+ * The layers of the level hierarchy, general → specific. The most specific
26227
+ * layer that carries an explicit value wins.
26228
+ *
26229
+ * `component` is DECLARED and not yet resolvable: the per-component channels
26230
+ * are a later slice of the same plan, and a `levelSource` enum that has to
26231
+ * grow later would force every consumer of this document to change with it.
26232
+ * Nothing returns `component` today.
26233
+ */
26234
+ var LoggingScopeKindSchema = _enum([
26235
+ "cluster",
26236
+ "node",
26237
+ "component"
26238
+ ]);
26239
+ /** Where an effective level came from. `default` = nothing is set anywhere. */
26240
+ var LoggingLevelSourceSchema = _enum([
26241
+ "default",
26242
+ "cluster",
26243
+ "node",
26244
+ "component"
26245
+ ]);
26246
+ /**
26247
+ * One layer of the hierarchy as it actually STANDS.
26248
+ *
26249
+ * `level: null` is the whole reason this array is returned: it is the
26250
+ * difference between "this node is at `info` because I decided it" and
26251
+ * "...because it inherits". An operator who clears an override believing they
26252
+ * are clearing an inherited value has been handed the same defect as the two
26253
+ * contradicting knobs this document exists to remove, moved one floor up.
26254
+ */
26255
+ var LoggingLevelLayerSchema = object({
26256
+ scope: LoggingScopeKindSchema,
26257
+ /** The node this layer speaks for; `null` on the cluster layer. */
26258
+ nodeId: string().nullable(),
26259
+ /** Explicitly set here, or `null` when this layer inherits. */
26260
+ level: LogLevelSchema$1.nullable()
26261
+ });
26262
+ /** What a line is judged against, and WHICH layer decided it. */
26263
+ var LoggingEffectiveSchema = object({
26264
+ level: LogLevelSchema$1,
26265
+ levelSource: LoggingLevelSourceSchema
26266
+ });
26267
+ /** Every layer, general → specific. Never collapsed into the effective value. */
26268
+ var LoggingExplicitSchema = object({ layers: array(LoggingLevelLayerSchema).readonly() });
26269
+ /**
26270
+ * An armed diagnostic, with its DEADLINE.
26271
+ *
26272
+ * The shape of ADR-0244: what is stored is a deadline and never a flag, so a
26273
+ * diagnostic somebody forgot expires by itself, and a boot-window measurement
26274
+ * survives the restart it exists to measure. `remainingMs` is 0 whenever
26275
+ * `armed` is false — a window is never reported as slightly expired.
26276
+ */
26277
+ var DiagnosticWindowSchema = object({
26278
+ id: DiagnosticIdSchema,
26279
+ armed: boolean(),
26280
+ /** Epoch ms the window closes at. 0 when disarmed. */
26281
+ armedUntilMs: number(),
26282
+ /** Ms left before it expires on its own. 0 when disarmed. */
26283
+ remainingMs: number(),
26284
+ /** Whether the stored deadline is the one the live diagnostic is running —
26285
+ * i.e. whether this window would survive a restart. */
26286
+ persisted: boolean()
26287
+ });
26288
+ /**
26289
+ * `armMs: 0` DISARMS. Any positive value arms for that long, clamped by the
26290
+ * server — there is no maximum here on purpose: a bound repeated in a schema
26291
+ * is a second knob that disagrees with the first the day one of them moves.
26292
+ */
26293
+ var DiagnosticWindowPatchSchema = object({
26294
+ id: DiagnosticIdSchema,
26295
+ armMs: number().int().min(0),
26296
+ /** Cadence of the diagnostic's aggregated report line. Clamped by the server. */
26297
+ reportEveryMs: number().int().positive().optional()
26298
+ });
26299
+ /**
26300
+ * A PATCH, and patches MERGE.
26301
+ *
26302
+ * A field absent from the patch is left exactly as it was — arming a
26303
+ * diagnostic never resets a level, and setting a level never disarms a window.
26304
+ * The provider must not reconstruct the document as `{ ...snapshot, ...patch }`:
26305
+ * `setAll` already merges, and rebuilding the object is how an absent field
26306
+ * turns into an erased one.
26307
+ */
26308
+ var LoggingSettingsPatchSchema = object({
26309
+ /**
26310
+ * Absent leaves the level untouched. `null` CLEARS the explicit value at the
26311
+ * addressed scope so it inherits again. A value sets it.
26312
+ */
26313
+ level: LogLevelSchema$1.nullable().optional(),
26314
+ /**
26315
+ * Only the diagnostics NAMED here change. An armed window that is not listed
26316
+ * keeps running — a patch is never a full replacement.
26317
+ */
26318
+ diagnostics: array(DiagnosticWindowPatchSchema).readonly().optional()
26319
+ });
26320
+ /**
26321
+ * Which LAYER of the hierarchy is addressed. Absent = the cluster layer.
26322
+ *
26323
+ * Deliberately NOT called `nodeId`: that key is reserved on every cap method
26324
+ * input — the generated router strips it and uses it to resolve the PROVIDER
26325
+ * on that node (`resolveProvider(cap, nodeId, …)`). A document about
26326
+ * `agent-1` addressed as `nodeId` would be forwarded to agent-1 and answered
26327
+ * by an agent that holds no cluster document at all. The hub is the single
26328
+ * authority over the whole hierarchy and answers for every layer, so the
26329
+ * layer selector needs a name the transport does not already own.
26330
+ */
26331
+ var GetLoggingSettingsInputSchema = object({ scopeNodeId: string().optional() });
26332
+ var SetLoggingSettingsInputSchema = object({
26333
+ scopeNodeId: string().optional(),
26334
+ patch: LoggingSettingsPatchSchema
26335
+ });
26336
+ /**
26337
+ * The whole document, as read and as returned after every write.
26338
+ *
26339
+ * `persisted: false` means the settings store could not be read or written.
26340
+ * The in-memory mirror still governs behaviour and is unchanged by the
26341
+ * failure — a read that fails neither switches a level nor disarms a window
26342
+ * (D49) — but the operator is told that what they are looking at would not
26343
+ * survive a restart.
26344
+ */
26345
+ var LoggingSettingsStateSchema = object({
26346
+ /** The layer this document was read at. `null` = the cluster layer. */
26347
+ scopeNodeId: string().nullable(),
26348
+ effective: LoggingEffectiveSchema,
26349
+ explicit: LoggingExplicitSchema,
26350
+ activeWindows: array(DiagnosticWindowSchema).readonly(),
26351
+ persisted: boolean()
26352
+ });
25917
26353
  method(_void(), FeatureManifestSchema), method(_void(), HealthStatusSchema), method(_void(), FeatureManifestSchema), method(_void(), array(NetworkAddressSchema).readonly()), method(_void(), unknown().nullable(), { auth: "admin" }), method(record(string(), unknown()), _null(), {
25918
26354
  kind: "mutation",
25919
26355
  auth: "admin"
@@ -25926,6 +26362,9 @@ method(_void(), FeatureManifestSchema), method(_void(), HealthStatusSchema), met
25926
26362
  }), method(_void(), SiteLocationStatusSchema, {
25927
26363
  kind: "mutation",
25928
26364
  auth: "admin"
26365
+ }), method(_void(), RequestCensusStatusSchema, { auth: "admin" }), method(GetLoggingSettingsInputSchema, LoggingSettingsStateSchema, { auth: "admin" }), method(SetLoggingSettingsInputSchema, LoggingSettingsStateSchema, {
26366
+ kind: "mutation",
26367
+ auth: "admin"
25929
26368
  });
25930
26369
  object({
25931
26370
  /** True when the device's tamper switch / case-open contact is
@@ -29501,6 +29940,12 @@ Object.freeze({
29501
29940
  addonId: null,
29502
29941
  access: "view"
29503
29942
  },
29943
+ "notificationRules.resolveArtifactUrl": {
29944
+ capName: "notification-rules",
29945
+ capScope: "system",
29946
+ addonId: null,
29947
+ access: "view"
29948
+ },
29504
29949
  "notificationRules.setAlarmConfig": {
29505
29950
  capName: "notification-rules",
29506
29951
  capScope: "system",
@@ -30905,6 +31350,12 @@ Object.freeze({
30905
31350
  addonId: null,
30906
31351
  access: "view"
30907
31352
  },
31353
+ "recording.readWindowBytes": {
31354
+ capName: "recording",
31355
+ capScope: "system",
31356
+ addonId: null,
31357
+ access: "view"
31358
+ },
30908
31359
  "recording.refreshStorageLocationsForMigration": {
30909
31360
  capName: "recording",
30910
31361
  capScope: "system",
@@ -31745,6 +32196,18 @@ Object.freeze({
31745
32196
  addonId: null,
31746
32197
  access: "create"
31747
32198
  },
32199
+ "system.getLoggingSettings": {
32200
+ capName: "system",
32201
+ capScope: "system",
32202
+ addonId: null,
32203
+ access: "view"
32204
+ },
32205
+ "system.getRequestCensus": {
32206
+ capName: "system",
32207
+ capScope: "system",
32208
+ addonId: null,
32209
+ access: "view"
32210
+ },
31748
32211
  "system.getRetentionConfig": {
31749
32212
  capName: "system",
31750
32213
  capScope: "system",
@@ -31775,6 +32238,12 @@ Object.freeze({
31775
32238
  addonId: null,
31776
32239
  access: "view"
31777
32240
  },
32241
+ "system.setLoggingSettings": {
32242
+ capName: "system",
32243
+ capScope: "system",
32244
+ addonId: null,
32245
+ access: "create"
32246
+ },
31778
32247
  "system.setRetentionConfig": {
31779
32248
  capName: "system",
31780
32249
  capScope: "system",
@@ -32930,6 +33399,10 @@ Object.freeze({
32930
33399
  name: "deviceId",
32931
33400
  form: "single",
32932
33401
  optional: true
33402
+ }, {
33403
+ name: "deviceIds",
33404
+ form: "array",
33405
+ optional: true
32933
33406
  }],
32934
33407
  "fanControl.setDirection": [{
32935
33408
  name: "deviceId",
@@ -33735,6 +34208,11 @@ Object.freeze({
33735
34208
  form: "single",
33736
34209
  optional: false
33737
34210
  }],
34211
+ "recording.readWindowBytes": [{
34212
+ name: "deviceId",
34213
+ form: "single",
34214
+ optional: false
34215
+ }],
33738
34216
  "recording.relocateFootage": [{
33739
34217
  name: "deviceId",
33740
34218
  form: "single",
@@ -34535,7 +35013,38 @@ object({
34535
35013
  * fallback — i.e. the pre-2026-08-13 miss profile. Set it there only to
34536
35014
  * reproduce that.
34537
35015
  */
34538
- tileBudgetMb: number().int().min(0).max(1024)
35016
+ tileBudgetMb: number().int().min(0).max(1024),
35017
+ /**
35018
+ * RAM ceiling per decode worker, in MB, for the SCENE TILES — one
35019
+ * JPEG-encoded copy of the WHOLE native frame, cut in the same instant as the
35020
+ * subject tiles, on frames that detected something.
35021
+ *
35022
+ * It exists because a subject tile cannot answer a FULL-FRAME request:
35023
+ * containment is strict by design, so the native `keyFrame`, the detail
35024
+ * plane's `frameJpeg` rung and the display-crop fallback had no rung at all
35025
+ * below the hold. Measured on the live cluster: 23.3% of key-frame captures
35026
+ * missed, 95.7% of them with `worker-lease-gone` — the raster released one
35027
+ * frame-time after delivery, with the request only p50 367 ms behind it.
35028
+ *
35029
+ * Sizing, and why this is a budget and not a duration: a scene tile is
35030
+ * ~1.5-2.5 MB at 4K (against ~23.75 MB for the raster it was cut from and
35031
+ * ~60-120 KB for a subject tile), and it is cut ~0.4 times a second per busy
35032
+ * camera — only detection-bearing frames get one. 48 MB is therefore ~20-30
35033
+ * frames, i.e. the store's 30 s TTL binds at the steady state and the budget
35034
+ * binds only through a detection burst, where it still covers well past the
35035
+ * measured p90 ask age of 4.3 s. Holding the RASTERS for the same window
35036
+ * would be ~498 MB per camera and ~6 GB at peak concurrency — the OOM this
35037
+ * whole shape exists to avoid.
35038
+ *
35039
+ * A SEPARATE ceiling from `tileBudgetMb` on purpose: a scene tile is ~20× a
35040
+ * subject tile, so one shared budget would let a busy camera's key frames
35041
+ * evict the face/plate tiles the recognisers depend on. Two budgets make that
35042
+ * impossible rather than unlikely. `0` DISABLES scene tiles and restores the
35043
+ * pre-existing behaviour, where a late full-frame request had nothing but the
35044
+ * ≤640 RAM raster — which the `keyFrame` gate rejects, so in practice it had
35045
+ * nothing.
35046
+ */
35047
+ sceneBudgetMb: number().int().min(0).max(1024)
34539
35048
  });
34540
35049
  /**
34541
35050
  * The values in force when the operator has set nothing.
@@ -34551,12 +35060,14 @@ var DEFAULT_NATIVE_LEASE_SETTINGS = {
34551
35060
  budgetMb: 1024,
34552
35061
  activityMs: 15e3,
34553
35062
  tileBudgetMb: 64,
35063
+ sceneBudgetMb: 48,
34554
35064
  admission: "inferred"
34555
35065
  };
34556
35066
  DEFAULT_NATIVE_LEASE_SETTINGS.holdFrames;
34557
35067
  DEFAULT_NATIVE_LEASE_SETTINGS.budgetMb;
34558
35068
  DEFAULT_NATIVE_LEASE_SETTINGS.activityMs;
34559
35069
  DEFAULT_NATIVE_LEASE_SETTINGS.tileBudgetMb;
35070
+ DEFAULT_NATIVE_LEASE_SETTINGS.sceneBudgetMb;
34560
35071
  DEFAULT_NATIVE_LEASE_SETTINGS.admission;
34561
35072
  var MB = 1024 * 1024;
34562
35073
  1024 * MB, 3072 * MB;