@camstack/addon-export-alexa 1.1.23 → 1.1.24
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.
|
@@ -7388,6 +7388,24 @@ var RecordingRetentionSchema = object({
|
|
|
7388
7388
|
maxSizeGb: number().min(0).optional()
|
|
7389
7389
|
});
|
|
7390
7390
|
/**
|
|
7391
|
+
* Scrub-thumbnail fidelity preset — the single per-camera selector bundling the
|
|
7392
|
+
* sprite tile RESOLUTION + JPEG QUALITY the recorder packs timeline-scrub
|
|
7393
|
+
* previews at. Five graduated steps; absent on a config = `standard` (the
|
|
7394
|
+
* shipped default, matching `sheet-geometry`/`sheet-composer`).
|
|
7395
|
+
*
|
|
7396
|
+
* Existing sheets are IMMUTABLE — a changed preset applies to NEW windows only.
|
|
7397
|
+
* Each window's index sidecar carries its own tile dims, so a camera whose
|
|
7398
|
+
* preset changed over time renders every historical window at the dims it was
|
|
7399
|
+
* written with.
|
|
7400
|
+
*/
|
|
7401
|
+
var ScrubThumbnailPresetSchema = _enum([
|
|
7402
|
+
"minimal",
|
|
7403
|
+
"low",
|
|
7404
|
+
"standard",
|
|
7405
|
+
"high",
|
|
7406
|
+
"max"
|
|
7407
|
+
]);
|
|
7408
|
+
/**
|
|
7391
7409
|
* The full per-camera recording intent — the wire shape of a RecordingTarget.
|
|
7392
7410
|
*
|
|
7393
7411
|
* `mode` is the authoritative storage choice; `schedule`/`triggers`/`pre`/`post`
|
|
@@ -7424,7 +7442,14 @@ var RecordingConfigSchema = object({
|
|
|
7424
7442
|
* derived into bands once via `migrateConfigToBands`.
|
|
7425
7443
|
*/
|
|
7426
7444
|
bands: array(RecordingBandSchema).optional(),
|
|
7427
|
-
retention: RecordingRetentionSchema.optional()
|
|
7445
|
+
retention: RecordingRetentionSchema.optional(),
|
|
7446
|
+
/**
|
|
7447
|
+
* Per-camera scrub-thumbnail fidelity preset (resolution + JPEG quality for
|
|
7448
|
+
* timeline-scrub sprite previews). Absent = `standard`. Applies to NEW
|
|
7449
|
+
* windows only — existing sheets are immutable, and each window's index
|
|
7450
|
+
* carries its own tile dims so mixed-preset history renders correctly.
|
|
7451
|
+
*/
|
|
7452
|
+
scrubThumbnails: ScrubThumbnailPresetSchema.optional()
|
|
7428
7453
|
});
|
|
7429
7454
|
/**
|
|
7430
7455
|
* `StorageLocationType` — an addon-declared id that identifies the *kind* of
|
|
@@ -7362,6 +7362,24 @@ var RecordingRetentionSchema = object({
|
|
|
7362
7362
|
maxSizeGb: number().min(0).optional()
|
|
7363
7363
|
});
|
|
7364
7364
|
/**
|
|
7365
|
+
* Scrub-thumbnail fidelity preset — the single per-camera selector bundling the
|
|
7366
|
+
* sprite tile RESOLUTION + JPEG QUALITY the recorder packs timeline-scrub
|
|
7367
|
+
* previews at. Five graduated steps; absent on a config = `standard` (the
|
|
7368
|
+
* shipped default, matching `sheet-geometry`/`sheet-composer`).
|
|
7369
|
+
*
|
|
7370
|
+
* Existing sheets are IMMUTABLE — a changed preset applies to NEW windows only.
|
|
7371
|
+
* Each window's index sidecar carries its own tile dims, so a camera whose
|
|
7372
|
+
* preset changed over time renders every historical window at the dims it was
|
|
7373
|
+
* written with.
|
|
7374
|
+
*/
|
|
7375
|
+
var ScrubThumbnailPresetSchema = _enum([
|
|
7376
|
+
"minimal",
|
|
7377
|
+
"low",
|
|
7378
|
+
"standard",
|
|
7379
|
+
"high",
|
|
7380
|
+
"max"
|
|
7381
|
+
]);
|
|
7382
|
+
/**
|
|
7365
7383
|
* The full per-camera recording intent — the wire shape of a RecordingTarget.
|
|
7366
7384
|
*
|
|
7367
7385
|
* `mode` is the authoritative storage choice; `schedule`/`triggers`/`pre`/`post`
|
|
@@ -7398,7 +7416,14 @@ var RecordingConfigSchema = object({
|
|
|
7398
7416
|
* derived into bands once via `migrateConfigToBands`.
|
|
7399
7417
|
*/
|
|
7400
7418
|
bands: array(RecordingBandSchema).optional(),
|
|
7401
|
-
retention: RecordingRetentionSchema.optional()
|
|
7419
|
+
retention: RecordingRetentionSchema.optional(),
|
|
7420
|
+
/**
|
|
7421
|
+
* Per-camera scrub-thumbnail fidelity preset (resolution + JPEG quality for
|
|
7422
|
+
* timeline-scrub sprite previews). Absent = `standard`. Applies to NEW
|
|
7423
|
+
* windows only — existing sheets are immutable, and each window's index
|
|
7424
|
+
* carries its own tile dims so mixed-preset history renders correctly.
|
|
7425
|
+
*/
|
|
7426
|
+
scrubThumbnails: ScrubThumbnailPresetSchema.optional()
|
|
7402
7427
|
});
|
|
7403
7428
|
/**
|
|
7404
7429
|
* `StorageLocationType` — an addon-declared id that identifies the *kind* of
|
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.24",
|
|
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",
|