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