@camstack/addon-export-alexa 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.
|
@@ -7200,7 +7200,21 @@ var StorageLocationDeclarationSchema = object({
|
|
|
7200
7200
|
* slots (e.g. `recordingsLow` → `recordings`) so operators only need to
|
|
7201
7201
|
* configure the primary location.
|
|
7202
7202
|
*/
|
|
7203
|
-
defaultsTo: string().optional()
|
|
7203
|
+
defaultsTo: string().optional(),
|
|
7204
|
+
/**
|
|
7205
|
+
* Which node root the seeded `<id>:default` instance is placed under on a
|
|
7206
|
+
* FRESH install:
|
|
7207
|
+
* - `'data'` (default) — the node's data dir (`CAMSTACK_DATA` / boot dir),
|
|
7208
|
+
* the appData volume. Right for small/durable data (backups, logs, models).
|
|
7209
|
+
* - `'media'` — the dedicated media volume (`CAMSTACK_MEDIA_ROOT`) when that
|
|
7210
|
+
* env is set, else falls back to the data root. Right for bulky, hot media
|
|
7211
|
+
* (recordings, event media) that should stay off the appData disk.
|
|
7212
|
+
*
|
|
7213
|
+
* Only affects the seeded default's `basePath`; operators can repoint any
|
|
7214
|
+
* location afterwards, and a `defaultsTo` slot inherits its parent's root
|
|
7215
|
+
* regardless of this field. Absent (the common case) is treated as `'data'`.
|
|
7216
|
+
*/
|
|
7217
|
+
defaultRoot: _enum(["data", "media"]).optional()
|
|
7204
7218
|
});
|
|
7205
7219
|
var DecoderStatsSchema = object({
|
|
7206
7220
|
inputFps: number(),
|
|
@@ -8101,6 +8115,10 @@ var RtspRestreamEntrySchema = object({
|
|
|
8101
8115
|
var BrokerRtspClientSchema = object({
|
|
8102
8116
|
sessionId: string(),
|
|
8103
8117
|
remoteAddr: string(),
|
|
8118
|
+
/** Client `User-Agent` (e.g. `recorder` for the recorder's RTSP pull), or
|
|
8119
|
+
* null/absent when the client sent none. Lets the UI label a consumer by
|
|
8120
|
+
* purpose. Optional so a client built against an older schema stays valid. */
|
|
8121
|
+
userAgent: string().nullish(),
|
|
8104
8122
|
playing: boolean(),
|
|
8105
8123
|
muted: boolean(),
|
|
8106
8124
|
connectedAt: number(),
|
|
@@ -7174,7 +7174,21 @@ var StorageLocationDeclarationSchema = object({
|
|
|
7174
7174
|
* slots (e.g. `recordingsLow` → `recordings`) so operators only need to
|
|
7175
7175
|
* configure the primary location.
|
|
7176
7176
|
*/
|
|
7177
|
-
defaultsTo: string().optional()
|
|
7177
|
+
defaultsTo: string().optional(),
|
|
7178
|
+
/**
|
|
7179
|
+
* Which node root the seeded `<id>:default` instance is placed under on a
|
|
7180
|
+
* FRESH install:
|
|
7181
|
+
* - `'data'` (default) — the node's data dir (`CAMSTACK_DATA` / boot dir),
|
|
7182
|
+
* the appData volume. Right for small/durable data (backups, logs, models).
|
|
7183
|
+
* - `'media'` — the dedicated media volume (`CAMSTACK_MEDIA_ROOT`) when that
|
|
7184
|
+
* env is set, else falls back to the data root. Right for bulky, hot media
|
|
7185
|
+
* (recordings, event media) that should stay off the appData disk.
|
|
7186
|
+
*
|
|
7187
|
+
* Only affects the seeded default's `basePath`; operators can repoint any
|
|
7188
|
+
* location afterwards, and a `defaultsTo` slot inherits its parent's root
|
|
7189
|
+
* regardless of this field. Absent (the common case) is treated as `'data'`.
|
|
7190
|
+
*/
|
|
7191
|
+
defaultRoot: _enum(["data", "media"]).optional()
|
|
7178
7192
|
});
|
|
7179
7193
|
var DecoderStatsSchema = object({
|
|
7180
7194
|
inputFps: number(),
|
|
@@ -8075,6 +8089,10 @@ var RtspRestreamEntrySchema = object({
|
|
|
8075
8089
|
var BrokerRtspClientSchema = object({
|
|
8076
8090
|
sessionId: string(),
|
|
8077
8091
|
remoteAddr: string(),
|
|
8092
|
+
/** Client `User-Agent` (e.g. `recorder` for the recorder's RTSP pull), or
|
|
8093
|
+
* null/absent when the client sent none. Lets the UI label a consumer by
|
|
8094
|
+
* purpose. Optional so a client built against an older schema stays valid. */
|
|
8095
|
+
userAgent: string().nullish(),
|
|
8078
8096
|
playing: boolean(),
|
|
8079
8097
|
muted: boolean(),
|
|
8080
8098
|
connectedAt: number(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/addon-export-alexa",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.13",
|
|
4
4
|
"description": "Alexa Smart Home Skill export — hub-side OAuth provider + directive handler. The companion AWS Lambda forwards Alexa directives to this addon's /addon/export-alexa/directive endpoint.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|