@camstack/addon-provider-dreo 0.1.19 → 0.1.20

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 CHANGED
@@ -7273,6 +7273,24 @@ var RecordingRetentionSchema = object({
7273
7273
  maxSizeGb: number().min(0).optional()
7274
7274
  });
7275
7275
  /**
7276
+ * Scrub-thumbnail fidelity preset — the single per-camera selector bundling the
7277
+ * sprite tile RESOLUTION + JPEG QUALITY the recorder packs timeline-scrub
7278
+ * previews at. Five graduated steps; absent on a config = `standard` (the
7279
+ * shipped default, matching `sheet-geometry`/`sheet-composer`).
7280
+ *
7281
+ * Existing sheets are IMMUTABLE — a changed preset applies to NEW windows only.
7282
+ * Each window's index sidecar carries its own tile dims, so a camera whose
7283
+ * preset changed over time renders every historical window at the dims it was
7284
+ * written with.
7285
+ */
7286
+ var ScrubThumbnailPresetSchema = _enum([
7287
+ "minimal",
7288
+ "low",
7289
+ "standard",
7290
+ "high",
7291
+ "max"
7292
+ ]);
7293
+ /**
7276
7294
  * The full per-camera recording intent — the wire shape of a RecordingTarget.
7277
7295
  *
7278
7296
  * `mode` is the authoritative storage choice; `schedule`/`triggers`/`pre`/`post`
@@ -7309,7 +7327,14 @@ var RecordingConfigSchema = object({
7309
7327
  * derived into bands once via `migrateConfigToBands`.
7310
7328
  */
7311
7329
  bands: array(RecordingBandSchema).optional(),
7312
- retention: RecordingRetentionSchema.optional()
7330
+ retention: RecordingRetentionSchema.optional(),
7331
+ /**
7332
+ * Per-camera scrub-thumbnail fidelity preset (resolution + JPEG quality for
7333
+ * timeline-scrub sprite previews). Absent = `standard`. Applies to NEW
7334
+ * windows only — existing sheets are immutable, and each window's index
7335
+ * carries its own tile dims so mixed-preset history renders correctly.
7336
+ */
7337
+ scrubThumbnails: ScrubThumbnailPresetSchema.optional()
7313
7338
  });
7314
7339
  /**
7315
7340
  * `StorageLocationType` — an addon-declared id that identifies the *kind* of
package/dist/addon.mjs CHANGED
@@ -7274,6 +7274,24 @@ var RecordingRetentionSchema = object({
7274
7274
  maxSizeGb: number().min(0).optional()
7275
7275
  });
7276
7276
  /**
7277
+ * Scrub-thumbnail fidelity preset — the single per-camera selector bundling the
7278
+ * sprite tile RESOLUTION + JPEG QUALITY the recorder packs timeline-scrub
7279
+ * previews at. Five graduated steps; absent on a config = `standard` (the
7280
+ * shipped default, matching `sheet-geometry`/`sheet-composer`).
7281
+ *
7282
+ * Existing sheets are IMMUTABLE — a changed preset applies to NEW windows only.
7283
+ * Each window's index sidecar carries its own tile dims, so a camera whose
7284
+ * preset changed over time renders every historical window at the dims it was
7285
+ * written with.
7286
+ */
7287
+ var ScrubThumbnailPresetSchema = _enum([
7288
+ "minimal",
7289
+ "low",
7290
+ "standard",
7291
+ "high",
7292
+ "max"
7293
+ ]);
7294
+ /**
7277
7295
  * The full per-camera recording intent — the wire shape of a RecordingTarget.
7278
7296
  *
7279
7297
  * `mode` is the authoritative storage choice; `schedule`/`triggers`/`pre`/`post`
@@ -7310,7 +7328,14 @@ var RecordingConfigSchema = object({
7310
7328
  * derived into bands once via `migrateConfigToBands`.
7311
7329
  */
7312
7330
  bands: array(RecordingBandSchema).optional(),
7313
- retention: RecordingRetentionSchema.optional()
7331
+ retention: RecordingRetentionSchema.optional(),
7332
+ /**
7333
+ * Per-camera scrub-thumbnail fidelity preset (resolution + JPEG quality for
7334
+ * timeline-scrub sprite previews). Absent = `standard`. Applies to NEW
7335
+ * windows only — existing sheets are immutable, and each window's index
7336
+ * carries its own tile dims so mixed-preset history renders correctly.
7337
+ */
7338
+ scrubThumbnails: ScrubThumbnailPresetSchema.optional()
7314
7339
  });
7315
7340
  /**
7316
7341
  * `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-dreo",
3
- "version": "0.1.19",
3
+ "version": "0.1.20",
4
4
  "description": "Dreo smart-device (fan / air-circulator / purifier / heater / humidifier) device-provider addon for CamStack — wraps the @apocaliss92/nodedreo Dreo cloud client (REST + WebSocket)",
5
5
  "keywords": [
6
6
  "camstack",