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