@camstack/addon-provider-homeassistant 1.1.12 → 1.1.14
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
|
@@ -7050,7 +7050,21 @@ var StorageLocationDeclarationSchema = object({
|
|
|
7050
7050
|
* slots (e.g. `recordingsLow` → `recordings`) so operators only need to
|
|
7051
7051
|
* configure the primary location.
|
|
7052
7052
|
*/
|
|
7053
|
-
defaultsTo: string().optional()
|
|
7053
|
+
defaultsTo: string().optional(),
|
|
7054
|
+
/**
|
|
7055
|
+
* Which node root the seeded `<id>:default` instance is placed under on a
|
|
7056
|
+
* FRESH install:
|
|
7057
|
+
* - `'data'` (default) — the node's data dir (`CAMSTACK_DATA` / boot dir),
|
|
7058
|
+
* the appData volume. Right for small/durable data (backups, logs, models).
|
|
7059
|
+
* - `'media'` — the dedicated media volume (`CAMSTACK_MEDIA_ROOT`) when that
|
|
7060
|
+
* env is set, else falls back to the data root. Right for bulky, hot media
|
|
7061
|
+
* (recordings, event media) that should stay off the appData disk.
|
|
7062
|
+
*
|
|
7063
|
+
* Only affects the seeded default's `basePath`; operators can repoint any
|
|
7064
|
+
* location afterwards, and a `defaultsTo` slot inherits its parent's root
|
|
7065
|
+
* regardless of this field. Absent (the common case) is treated as `'data'`.
|
|
7066
|
+
*/
|
|
7067
|
+
defaultRoot: _enum(["data", "media"]).optional()
|
|
7054
7068
|
});
|
|
7055
7069
|
var DecoderStatsSchema = object({
|
|
7056
7070
|
inputFps: number(),
|
|
@@ -8406,6 +8420,10 @@ var RtspRestreamEntrySchema = object({
|
|
|
8406
8420
|
var BrokerRtspClientSchema = object({
|
|
8407
8421
|
sessionId: string(),
|
|
8408
8422
|
remoteAddr: string(),
|
|
8423
|
+
/** Client `User-Agent` (e.g. `recorder` for the recorder's RTSP pull), or
|
|
8424
|
+
* null/absent when the client sent none. Lets the UI label a consumer by
|
|
8425
|
+
* purpose. Optional so a client built against an older schema stays valid. */
|
|
8426
|
+
userAgent: string().nullish(),
|
|
8409
8427
|
playing: boolean(),
|
|
8410
8428
|
muted: boolean(),
|
|
8411
8429
|
connectedAt: number(),
|
package/dist/addon.mjs
CHANGED
|
@@ -7049,7 +7049,21 @@ var StorageLocationDeclarationSchema = object({
|
|
|
7049
7049
|
* slots (e.g. `recordingsLow` → `recordings`) so operators only need to
|
|
7050
7050
|
* configure the primary location.
|
|
7051
7051
|
*/
|
|
7052
|
-
defaultsTo: string().optional()
|
|
7052
|
+
defaultsTo: string().optional(),
|
|
7053
|
+
/**
|
|
7054
|
+
* Which node root the seeded `<id>:default` instance is placed under on a
|
|
7055
|
+
* FRESH install:
|
|
7056
|
+
* - `'data'` (default) — the node's data dir (`CAMSTACK_DATA` / boot dir),
|
|
7057
|
+
* the appData volume. Right for small/durable data (backups, logs, models).
|
|
7058
|
+
* - `'media'` — the dedicated media volume (`CAMSTACK_MEDIA_ROOT`) when that
|
|
7059
|
+
* env is set, else falls back to the data root. Right for bulky, hot media
|
|
7060
|
+
* (recordings, event media) that should stay off the appData disk.
|
|
7061
|
+
*
|
|
7062
|
+
* Only affects the seeded default's `basePath`; operators can repoint any
|
|
7063
|
+
* location afterwards, and a `defaultsTo` slot inherits its parent's root
|
|
7064
|
+
* regardless of this field. Absent (the common case) is treated as `'data'`.
|
|
7065
|
+
*/
|
|
7066
|
+
defaultRoot: _enum(["data", "media"]).optional()
|
|
7053
7067
|
});
|
|
7054
7068
|
var DecoderStatsSchema = object({
|
|
7055
7069
|
inputFps: number(),
|
|
@@ -8405,6 +8419,10 @@ var RtspRestreamEntrySchema = object({
|
|
|
8405
8419
|
var BrokerRtspClientSchema = object({
|
|
8406
8420
|
sessionId: string(),
|
|
8407
8421
|
remoteAddr: string(),
|
|
8422
|
+
/** Client `User-Agent` (e.g. `recorder` for the recorder's RTSP pull), or
|
|
8423
|
+
* null/absent when the client sent none. Lets the UI label a consumer by
|
|
8424
|
+
* purpose. Optional so a client built against an older schema stays valid. */
|
|
8425
|
+
userAgent: string().nullish(),
|
|
8408
8426
|
playing: boolean(),
|
|
8409
8427
|
muted: boolean(),
|
|
8410
8428
|
connectedAt: number(),
|