@camstack/addon-import-alexa 0.1.21 → 0.1.22
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 +26 -1
- package/dist/addon.mjs +26 -1
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -7407,6 +7407,24 @@ var RecordingRetentionSchema = object({
|
|
|
7407
7407
|
maxSizeGb: number().min(0).optional()
|
|
7408
7408
|
});
|
|
7409
7409
|
/**
|
|
7410
|
+
* Scrub-thumbnail fidelity preset — the single per-camera selector bundling the
|
|
7411
|
+
* sprite tile RESOLUTION + JPEG QUALITY the recorder packs timeline-scrub
|
|
7412
|
+
* previews at. Five graduated steps; absent on a config = `standard` (the
|
|
7413
|
+
* shipped default, matching `sheet-geometry`/`sheet-composer`).
|
|
7414
|
+
*
|
|
7415
|
+
* Existing sheets are IMMUTABLE — a changed preset applies to NEW windows only.
|
|
7416
|
+
* Each window's index sidecar carries its own tile dims, so a camera whose
|
|
7417
|
+
* preset changed over time renders every historical window at the dims it was
|
|
7418
|
+
* written with.
|
|
7419
|
+
*/
|
|
7420
|
+
var ScrubThumbnailPresetSchema = _enum([
|
|
7421
|
+
"minimal",
|
|
7422
|
+
"low",
|
|
7423
|
+
"standard",
|
|
7424
|
+
"high",
|
|
7425
|
+
"max"
|
|
7426
|
+
]);
|
|
7427
|
+
/**
|
|
7410
7428
|
* The full per-camera recording intent — the wire shape of a RecordingTarget.
|
|
7411
7429
|
*
|
|
7412
7430
|
* `mode` is the authoritative storage choice; `schedule`/`triggers`/`pre`/`post`
|
|
@@ -7443,7 +7461,14 @@ var RecordingConfigSchema = object({
|
|
|
7443
7461
|
* derived into bands once via `migrateConfigToBands`.
|
|
7444
7462
|
*/
|
|
7445
7463
|
bands: array(RecordingBandSchema).optional(),
|
|
7446
|
-
retention: RecordingRetentionSchema.optional()
|
|
7464
|
+
retention: RecordingRetentionSchema.optional(),
|
|
7465
|
+
/**
|
|
7466
|
+
* Per-camera scrub-thumbnail fidelity preset (resolution + JPEG quality for
|
|
7467
|
+
* timeline-scrub sprite previews). Absent = `standard`. Applies to NEW
|
|
7468
|
+
* windows only — existing sheets are immutable, and each window's index
|
|
7469
|
+
* carries its own tile dims so mixed-preset history renders correctly.
|
|
7470
|
+
*/
|
|
7471
|
+
scrubThumbnails: ScrubThumbnailPresetSchema.optional()
|
|
7447
7472
|
});
|
|
7448
7473
|
/**
|
|
7449
7474
|
* `StorageLocationType` — an addon-declared id that identifies the *kind* of
|
package/dist/addon.mjs
CHANGED
|
@@ -7407,6 +7407,24 @@ var RecordingRetentionSchema = object({
|
|
|
7407
7407
|
maxSizeGb: number().min(0).optional()
|
|
7408
7408
|
});
|
|
7409
7409
|
/**
|
|
7410
|
+
* Scrub-thumbnail fidelity preset — the single per-camera selector bundling the
|
|
7411
|
+
* sprite tile RESOLUTION + JPEG QUALITY the recorder packs timeline-scrub
|
|
7412
|
+
* previews at. Five graduated steps; absent on a config = `standard` (the
|
|
7413
|
+
* shipped default, matching `sheet-geometry`/`sheet-composer`).
|
|
7414
|
+
*
|
|
7415
|
+
* Existing sheets are IMMUTABLE — a changed preset applies to NEW windows only.
|
|
7416
|
+
* Each window's index sidecar carries its own tile dims, so a camera whose
|
|
7417
|
+
* preset changed over time renders every historical window at the dims it was
|
|
7418
|
+
* written with.
|
|
7419
|
+
*/
|
|
7420
|
+
var ScrubThumbnailPresetSchema = _enum([
|
|
7421
|
+
"minimal",
|
|
7422
|
+
"low",
|
|
7423
|
+
"standard",
|
|
7424
|
+
"high",
|
|
7425
|
+
"max"
|
|
7426
|
+
]);
|
|
7427
|
+
/**
|
|
7410
7428
|
* The full per-camera recording intent — the wire shape of a RecordingTarget.
|
|
7411
7429
|
*
|
|
7412
7430
|
* `mode` is the authoritative storage choice; `schedule`/`triggers`/`pre`/`post`
|
|
@@ -7443,7 +7461,14 @@ var RecordingConfigSchema = object({
|
|
|
7443
7461
|
* derived into bands once via `migrateConfigToBands`.
|
|
7444
7462
|
*/
|
|
7445
7463
|
bands: array(RecordingBandSchema).optional(),
|
|
7446
|
-
retention: RecordingRetentionSchema.optional()
|
|
7464
|
+
retention: RecordingRetentionSchema.optional(),
|
|
7465
|
+
/**
|
|
7466
|
+
* Per-camera scrub-thumbnail fidelity preset (resolution + JPEG quality for
|
|
7467
|
+
* timeline-scrub sprite previews). Absent = `standard`. Applies to NEW
|
|
7468
|
+
* windows only — existing sheets are immutable, and each window's index
|
|
7469
|
+
* carries its own tile dims so mixed-preset history renders correctly.
|
|
7470
|
+
*/
|
|
7471
|
+
scrubThumbnails: ScrubThumbnailPresetSchema.optional()
|
|
7447
7472
|
});
|
|
7448
7473
|
/**
|
|
7449
7474
|
* `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-import-alexa",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.22",
|
|
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",
|