@camstack/addon-advanced-notifier 1.1.11 → 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.
- package/dist/addon.js +19 -1
- package/dist/addon.mjs +19 -1
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -7037,7 +7037,21 @@ var StorageLocationDeclarationSchema = object({
|
|
|
7037
7037
|
* slots (e.g. `recordingsLow` → `recordings`) so operators only need to
|
|
7038
7038
|
* configure the primary location.
|
|
7039
7039
|
*/
|
|
7040
|
-
defaultsTo: string().optional()
|
|
7040
|
+
defaultsTo: string().optional(),
|
|
7041
|
+
/**
|
|
7042
|
+
* Which node root the seeded `<id>:default` instance is placed under on a
|
|
7043
|
+
* FRESH install:
|
|
7044
|
+
* - `'data'` (default) — the node's data dir (`CAMSTACK_DATA` / boot dir),
|
|
7045
|
+
* the appData volume. Right for small/durable data (backups, logs, models).
|
|
7046
|
+
* - `'media'` — the dedicated media volume (`CAMSTACK_MEDIA_ROOT`) when that
|
|
7047
|
+
* env is set, else falls back to the data root. Right for bulky, hot media
|
|
7048
|
+
* (recordings, event media) that should stay off the appData disk.
|
|
7049
|
+
*
|
|
7050
|
+
* Only affects the seeded default's `basePath`; operators can repoint any
|
|
7051
|
+
* location afterwards, and a `defaultsTo` slot inherits its parent's root
|
|
7052
|
+
* regardless of this field. Absent (the common case) is treated as `'data'`.
|
|
7053
|
+
*/
|
|
7054
|
+
defaultRoot: _enum(["data", "media"]).optional()
|
|
7041
7055
|
});
|
|
7042
7056
|
var DecoderStatsSchema = object({
|
|
7043
7057
|
inputFps: number(),
|
|
@@ -7898,6 +7912,10 @@ var RtspRestreamEntrySchema = object({
|
|
|
7898
7912
|
var BrokerRtspClientSchema = object({
|
|
7899
7913
|
sessionId: string(),
|
|
7900
7914
|
remoteAddr: string(),
|
|
7915
|
+
/** Client `User-Agent` (e.g. `recorder` for the recorder's RTSP pull), or
|
|
7916
|
+
* null/absent when the client sent none. Lets the UI label a consumer by
|
|
7917
|
+
* purpose. Optional so a client built against an older schema stays valid. */
|
|
7918
|
+
userAgent: string().nullish(),
|
|
7901
7919
|
playing: boolean(),
|
|
7902
7920
|
muted: boolean(),
|
|
7903
7921
|
connectedAt: number(),
|
package/dist/addon.mjs
CHANGED
|
@@ -7033,7 +7033,21 @@ var StorageLocationDeclarationSchema = object({
|
|
|
7033
7033
|
* slots (e.g. `recordingsLow` → `recordings`) so operators only need to
|
|
7034
7034
|
* configure the primary location.
|
|
7035
7035
|
*/
|
|
7036
|
-
defaultsTo: string().optional()
|
|
7036
|
+
defaultsTo: string().optional(),
|
|
7037
|
+
/**
|
|
7038
|
+
* Which node root the seeded `<id>:default` instance is placed under on a
|
|
7039
|
+
* FRESH install:
|
|
7040
|
+
* - `'data'` (default) — the node's data dir (`CAMSTACK_DATA` / boot dir),
|
|
7041
|
+
* the appData volume. Right for small/durable data (backups, logs, models).
|
|
7042
|
+
* - `'media'` — the dedicated media volume (`CAMSTACK_MEDIA_ROOT`) when that
|
|
7043
|
+
* env is set, else falls back to the data root. Right for bulky, hot media
|
|
7044
|
+
* (recordings, event media) that should stay off the appData disk.
|
|
7045
|
+
*
|
|
7046
|
+
* Only affects the seeded default's `basePath`; operators can repoint any
|
|
7047
|
+
* location afterwards, and a `defaultsTo` slot inherits its parent's root
|
|
7048
|
+
* regardless of this field. Absent (the common case) is treated as `'data'`.
|
|
7049
|
+
*/
|
|
7050
|
+
defaultRoot: _enum(["data", "media"]).optional()
|
|
7037
7051
|
});
|
|
7038
7052
|
var DecoderStatsSchema = object({
|
|
7039
7053
|
inputFps: number(),
|
|
@@ -7894,6 +7908,10 @@ var RtspRestreamEntrySchema = object({
|
|
|
7894
7908
|
var BrokerRtspClientSchema = object({
|
|
7895
7909
|
sessionId: string(),
|
|
7896
7910
|
remoteAddr: string(),
|
|
7911
|
+
/** Client `User-Agent` (e.g. `recorder` for the recorder's RTSP pull), or
|
|
7912
|
+
* null/absent when the client sent none. Lets the UI label a consumer by
|
|
7913
|
+
* purpose. Optional so a client built against an older schema stays valid. */
|
|
7914
|
+
userAgent: string().nullish(),
|
|
7897
7915
|
playing: boolean(),
|
|
7898
7916
|
muted: boolean(),
|
|
7899
7917
|
connectedAt: number(),
|