@camstack/addon-import-alexa 0.1.10 → 0.1.11
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
|
@@ -7219,7 +7219,21 @@ var StorageLocationDeclarationSchema = object({
|
|
|
7219
7219
|
* slots (e.g. `recordingsLow` → `recordings`) so operators only need to
|
|
7220
7220
|
* configure the primary location.
|
|
7221
7221
|
*/
|
|
7222
|
-
defaultsTo: string().optional()
|
|
7222
|
+
defaultsTo: string().optional(),
|
|
7223
|
+
/**
|
|
7224
|
+
* Which node root the seeded `<id>:default` instance is placed under on a
|
|
7225
|
+
* FRESH install:
|
|
7226
|
+
* - `'data'` (default) — the node's data dir (`CAMSTACK_DATA` / boot dir),
|
|
7227
|
+
* the appData volume. Right for small/durable data (backups, logs, models).
|
|
7228
|
+
* - `'media'` — the dedicated media volume (`CAMSTACK_MEDIA_ROOT`) when that
|
|
7229
|
+
* env is set, else falls back to the data root. Right for bulky, hot media
|
|
7230
|
+
* (recordings, event media) that should stay off the appData disk.
|
|
7231
|
+
*
|
|
7232
|
+
* Only affects the seeded default's `basePath`; operators can repoint any
|
|
7233
|
+
* location afterwards, and a `defaultsTo` slot inherits its parent's root
|
|
7234
|
+
* regardless of this field. Absent (the common case) is treated as `'data'`.
|
|
7235
|
+
*/
|
|
7236
|
+
defaultRoot: _enum(["data", "media"]).optional()
|
|
7223
7237
|
});
|
|
7224
7238
|
var DecoderStatsSchema = object({
|
|
7225
7239
|
inputFps: number(),
|
|
@@ -8575,6 +8589,10 @@ var RtspRestreamEntrySchema = object({
|
|
|
8575
8589
|
var BrokerRtspClientSchema = object({
|
|
8576
8590
|
sessionId: string(),
|
|
8577
8591
|
remoteAddr: string(),
|
|
8592
|
+
/** Client `User-Agent` (e.g. `recorder` for the recorder's RTSP pull), or
|
|
8593
|
+
* null/absent when the client sent none. Lets the UI label a consumer by
|
|
8594
|
+
* purpose. Optional so a client built against an older schema stays valid. */
|
|
8595
|
+
userAgent: string().nullish(),
|
|
8578
8596
|
playing: boolean(),
|
|
8579
8597
|
muted: boolean(),
|
|
8580
8598
|
connectedAt: number(),
|
package/dist/addon.mjs
CHANGED
|
@@ -7219,7 +7219,21 @@ var StorageLocationDeclarationSchema = object({
|
|
|
7219
7219
|
* slots (e.g. `recordingsLow` → `recordings`) so operators only need to
|
|
7220
7220
|
* configure the primary location.
|
|
7221
7221
|
*/
|
|
7222
|
-
defaultsTo: string().optional()
|
|
7222
|
+
defaultsTo: string().optional(),
|
|
7223
|
+
/**
|
|
7224
|
+
* Which node root the seeded `<id>:default` instance is placed under on a
|
|
7225
|
+
* FRESH install:
|
|
7226
|
+
* - `'data'` (default) — the node's data dir (`CAMSTACK_DATA` / boot dir),
|
|
7227
|
+
* the appData volume. Right for small/durable data (backups, logs, models).
|
|
7228
|
+
* - `'media'` — the dedicated media volume (`CAMSTACK_MEDIA_ROOT`) when that
|
|
7229
|
+
* env is set, else falls back to the data root. Right for bulky, hot media
|
|
7230
|
+
* (recordings, event media) that should stay off the appData disk.
|
|
7231
|
+
*
|
|
7232
|
+
* Only affects the seeded default's `basePath`; operators can repoint any
|
|
7233
|
+
* location afterwards, and a `defaultsTo` slot inherits its parent's root
|
|
7234
|
+
* regardless of this field. Absent (the common case) is treated as `'data'`.
|
|
7235
|
+
*/
|
|
7236
|
+
defaultRoot: _enum(["data", "media"]).optional()
|
|
7223
7237
|
});
|
|
7224
7238
|
var DecoderStatsSchema = object({
|
|
7225
7239
|
inputFps: number(),
|
|
@@ -8575,6 +8589,10 @@ var RtspRestreamEntrySchema = object({
|
|
|
8575
8589
|
var BrokerRtspClientSchema = object({
|
|
8576
8590
|
sessionId: string(),
|
|
8577
8591
|
remoteAddr: string(),
|
|
8592
|
+
/** Client `User-Agent` (e.g. `recorder` for the recorder's RTSP pull), or
|
|
8593
|
+
* null/absent when the client sent none. Lets the UI label a consumer by
|
|
8594
|
+
* purpose. Optional so a client built against an older schema stays valid. */
|
|
8595
|
+
userAgent: string().nullish(),
|
|
8578
8596
|
playing: boolean(),
|
|
8579
8597
|
muted: boolean(),
|
|
8580
8598
|
connectedAt: number(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-import-alexa",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.11",
|
|
4
4
|
"description": "Alexa device-import provider for CamStack — imports the smart-home devices in a user's Alexa account via the unofficial alexa-remote2 cookie/token client (the inverse of the Alexa exporter)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|