@camstack/addon-smtp-nodemailer 1.1.12 → 1.1.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.
@@ -7070,7 +7070,21 @@ var StorageLocationDeclarationSchema = object({
7070
7070
  * slots (e.g. `recordingsLow` → `recordings`) so operators only need to
7071
7071
  * configure the primary location.
7072
7072
  */
7073
- defaultsTo: string().optional()
7073
+ defaultsTo: string().optional(),
7074
+ /**
7075
+ * Which node root the seeded `<id>:default` instance is placed under on a
7076
+ * FRESH install:
7077
+ * - `'data'` (default) — the node's data dir (`CAMSTACK_DATA` / boot dir),
7078
+ * the appData volume. Right for small/durable data (backups, logs, models).
7079
+ * - `'media'` — the dedicated media volume (`CAMSTACK_MEDIA_ROOT`) when that
7080
+ * env is set, else falls back to the data root. Right for bulky, hot media
7081
+ * (recordings, event media) that should stay off the appData disk.
7082
+ *
7083
+ * Only affects the seeded default's `basePath`; operators can repoint any
7084
+ * location afterwards, and a `defaultsTo` slot inherits its parent's root
7085
+ * regardless of this field. Absent (the common case) is treated as `'data'`.
7086
+ */
7087
+ defaultRoot: _enum(["data", "media"]).optional()
7074
7088
  });
7075
7089
  var DecoderStatsSchema = object({
7076
7090
  inputFps: number(),
@@ -7917,6 +7931,10 @@ var RtspRestreamEntrySchema = object({
7917
7931
  var BrokerRtspClientSchema = object({
7918
7932
  sessionId: string(),
7919
7933
  remoteAddr: string(),
7934
+ /** Client `User-Agent` (e.g. `recorder` for the recorder's RTSP pull), or
7935
+ * null/absent when the client sent none. Lets the UI label a consumer by
7936
+ * purpose. Optional so a client built against an older schema stays valid. */
7937
+ userAgent: string().nullish(),
7920
7938
  playing: boolean(),
7921
7939
  muted: boolean(),
7922
7940
  connectedAt: number(),
@@ -7068,7 +7068,21 @@ var StorageLocationDeclarationSchema = object({
7068
7068
  * slots (e.g. `recordingsLow` → `recordings`) so operators only need to
7069
7069
  * configure the primary location.
7070
7070
  */
7071
- defaultsTo: string().optional()
7071
+ defaultsTo: string().optional(),
7072
+ /**
7073
+ * Which node root the seeded `<id>:default` instance is placed under on a
7074
+ * FRESH install:
7075
+ * - `'data'` (default) — the node's data dir (`CAMSTACK_DATA` / boot dir),
7076
+ * the appData volume. Right for small/durable data (backups, logs, models).
7077
+ * - `'media'` — the dedicated media volume (`CAMSTACK_MEDIA_ROOT`) when that
7078
+ * env is set, else falls back to the data root. Right for bulky, hot media
7079
+ * (recordings, event media) that should stay off the appData disk.
7080
+ *
7081
+ * Only affects the seeded default's `basePath`; operators can repoint any
7082
+ * location afterwards, and a `defaultsTo` slot inherits its parent's root
7083
+ * regardless of this field. Absent (the common case) is treated as `'data'`.
7084
+ */
7085
+ defaultRoot: _enum(["data", "media"]).optional()
7072
7086
  });
7073
7087
  var DecoderStatsSchema = object({
7074
7088
  inputFps: number(),
@@ -7915,6 +7929,10 @@ var RtspRestreamEntrySchema = object({
7915
7929
  var BrokerRtspClientSchema = object({
7916
7930
  sessionId: string(),
7917
7931
  remoteAddr: string(),
7932
+ /** Client `User-Agent` (e.g. `recorder` for the recorder's RTSP pull), or
7933
+ * null/absent when the client sent none. Lets the UI label a consumer by
7934
+ * purpose. Optional so a client built against an older schema stays valid. */
7935
+ userAgent: string().nullish(),
7918
7936
  playing: boolean(),
7919
7937
  muted: boolean(),
7920
7938
  connectedAt: number(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/addon-smtp-nodemailer",
3
- "version": "1.1.12",
3
+ "version": "1.1.13",
4
4
  "description": "SMTP email provider addon for CamStack — wraps `nodemailer` and registers a `smtp-provider` cap collection entry. Used by magic-link login + notifier addons.",
5
5
  "keywords": [
6
6
  "camstack",