@camstack/addon-provider-dreame 0.1.30 → 0.1.31
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
|
@@ -7289,6 +7289,24 @@ var RecordingRetentionSchema = object({
|
|
|
7289
7289
|
maxSizeGb: number().min(0).optional()
|
|
7290
7290
|
});
|
|
7291
7291
|
/**
|
|
7292
|
+
* Scrub-thumbnail fidelity preset — the single per-camera selector bundling the
|
|
7293
|
+
* sprite tile RESOLUTION + JPEG QUALITY the recorder packs timeline-scrub
|
|
7294
|
+
* previews at. Five graduated steps; absent on a config = `standard` (the
|
|
7295
|
+
* shipped default, matching `sheet-geometry`/`sheet-composer`).
|
|
7296
|
+
*
|
|
7297
|
+
* Existing sheets are IMMUTABLE — a changed preset applies to NEW windows only.
|
|
7298
|
+
* Each window's index sidecar carries its own tile dims, so a camera whose
|
|
7299
|
+
* preset changed over time renders every historical window at the dims it was
|
|
7300
|
+
* written with.
|
|
7301
|
+
*/
|
|
7302
|
+
var ScrubThumbnailPresetSchema = _enum([
|
|
7303
|
+
"minimal",
|
|
7304
|
+
"low",
|
|
7305
|
+
"standard",
|
|
7306
|
+
"high",
|
|
7307
|
+
"max"
|
|
7308
|
+
]);
|
|
7309
|
+
/**
|
|
7292
7310
|
* The full per-camera recording intent — the wire shape of a RecordingTarget.
|
|
7293
7311
|
*
|
|
7294
7312
|
* `mode` is the authoritative storage choice; `schedule`/`triggers`/`pre`/`post`
|
|
@@ -7325,7 +7343,14 @@ var RecordingConfigSchema = object({
|
|
|
7325
7343
|
* derived into bands once via `migrateConfigToBands`.
|
|
7326
7344
|
*/
|
|
7327
7345
|
bands: array(RecordingBandSchema).optional(),
|
|
7328
|
-
retention: RecordingRetentionSchema.optional()
|
|
7346
|
+
retention: RecordingRetentionSchema.optional(),
|
|
7347
|
+
/**
|
|
7348
|
+
* Per-camera scrub-thumbnail fidelity preset (resolution + JPEG quality for
|
|
7349
|
+
* timeline-scrub sprite previews). Absent = `standard`. Applies to NEW
|
|
7350
|
+
* windows only — existing sheets are immutable, and each window's index
|
|
7351
|
+
* carries its own tile dims so mixed-preset history renders correctly.
|
|
7352
|
+
*/
|
|
7353
|
+
scrubThumbnails: ScrubThumbnailPresetSchema.optional()
|
|
7329
7354
|
});
|
|
7330
7355
|
/**
|
|
7331
7356
|
* `StorageLocationType` — an addon-declared id that identifies the *kind* of
|
package/dist/addon.mjs
CHANGED
|
@@ -7289,6 +7289,24 @@ var RecordingRetentionSchema = object({
|
|
|
7289
7289
|
maxSizeGb: number().min(0).optional()
|
|
7290
7290
|
});
|
|
7291
7291
|
/**
|
|
7292
|
+
* Scrub-thumbnail fidelity preset — the single per-camera selector bundling the
|
|
7293
|
+
* sprite tile RESOLUTION + JPEG QUALITY the recorder packs timeline-scrub
|
|
7294
|
+
* previews at. Five graduated steps; absent on a config = `standard` (the
|
|
7295
|
+
* shipped default, matching `sheet-geometry`/`sheet-composer`).
|
|
7296
|
+
*
|
|
7297
|
+
* Existing sheets are IMMUTABLE — a changed preset applies to NEW windows only.
|
|
7298
|
+
* Each window's index sidecar carries its own tile dims, so a camera whose
|
|
7299
|
+
* preset changed over time renders every historical window at the dims it was
|
|
7300
|
+
* written with.
|
|
7301
|
+
*/
|
|
7302
|
+
var ScrubThumbnailPresetSchema = _enum([
|
|
7303
|
+
"minimal",
|
|
7304
|
+
"low",
|
|
7305
|
+
"standard",
|
|
7306
|
+
"high",
|
|
7307
|
+
"max"
|
|
7308
|
+
]);
|
|
7309
|
+
/**
|
|
7292
7310
|
* The full per-camera recording intent — the wire shape of a RecordingTarget.
|
|
7293
7311
|
*
|
|
7294
7312
|
* `mode` is the authoritative storage choice; `schedule`/`triggers`/`pre`/`post`
|
|
@@ -7325,7 +7343,14 @@ var RecordingConfigSchema = object({
|
|
|
7325
7343
|
* derived into bands once via `migrateConfigToBands`.
|
|
7326
7344
|
*/
|
|
7327
7345
|
bands: array(RecordingBandSchema).optional(),
|
|
7328
|
-
retention: RecordingRetentionSchema.optional()
|
|
7346
|
+
retention: RecordingRetentionSchema.optional(),
|
|
7347
|
+
/**
|
|
7348
|
+
* Per-camera scrub-thumbnail fidelity preset (resolution + JPEG quality for
|
|
7349
|
+
* timeline-scrub sprite previews). Absent = `standard`. Applies to NEW
|
|
7350
|
+
* windows only — existing sheets are immutable, and each window's index
|
|
7351
|
+
* carries its own tile dims so mixed-preset history renders correctly.
|
|
7352
|
+
*/
|
|
7353
|
+
scrubThumbnails: ScrubThumbnailPresetSchema.optional()
|
|
7329
7354
|
});
|
|
7330
7355
|
/**
|
|
7331
7356
|
* `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-provider-dreame",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.31",
|
|
4
4
|
"description": "Dreame robot-vacuum / lawn-mower device-provider addon for CamStack — wraps the @apocaliss92/nodedreame Dreamehome cloud client",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|