@camstack/addon-provider-ecowitt 0.1.23 → 0.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.
package/dist/addon.js CHANGED
@@ -7254,6 +7254,24 @@ var RecordingRetentionSchema = object({
7254
7254
  maxSizeGb: number().min(0).optional()
7255
7255
  });
7256
7256
  /**
7257
+ * Scrub-thumbnail fidelity preset — the single per-camera selector bundling the
7258
+ * sprite tile RESOLUTION + JPEG QUALITY the recorder packs timeline-scrub
7259
+ * previews at. Five graduated steps; absent on a config = `standard` (the
7260
+ * shipped default, matching `sheet-geometry`/`sheet-composer`).
7261
+ *
7262
+ * Existing sheets are IMMUTABLE — a changed preset applies to NEW windows only.
7263
+ * Each window's index sidecar carries its own tile dims, so a camera whose
7264
+ * preset changed over time renders every historical window at the dims it was
7265
+ * written with.
7266
+ */
7267
+ var ScrubThumbnailPresetSchema = _enum([
7268
+ "minimal",
7269
+ "low",
7270
+ "standard",
7271
+ "high",
7272
+ "max"
7273
+ ]);
7274
+ /**
7257
7275
  * The full per-camera recording intent — the wire shape of a RecordingTarget.
7258
7276
  *
7259
7277
  * `mode` is the authoritative storage choice; `schedule`/`triggers`/`pre`/`post`
@@ -7290,7 +7308,14 @@ var RecordingConfigSchema = object({
7290
7308
  * derived into bands once via `migrateConfigToBands`.
7291
7309
  */
7292
7310
  bands: array(RecordingBandSchema).optional(),
7293
- retention: RecordingRetentionSchema.optional()
7311
+ retention: RecordingRetentionSchema.optional(),
7312
+ /**
7313
+ * Per-camera scrub-thumbnail fidelity preset (resolution + JPEG quality for
7314
+ * timeline-scrub sprite previews). Absent = `standard`. Applies to NEW
7315
+ * windows only — existing sheets are immutable, and each window's index
7316
+ * carries its own tile dims so mixed-preset history renders correctly.
7317
+ */
7318
+ scrubThumbnails: ScrubThumbnailPresetSchema.optional()
7294
7319
  });
7295
7320
  /**
7296
7321
  * `StorageLocationType` — an addon-declared id that identifies the *kind* of
package/dist/addon.mjs CHANGED
@@ -7253,6 +7253,24 @@ var RecordingRetentionSchema = object({
7253
7253
  maxSizeGb: number().min(0).optional()
7254
7254
  });
7255
7255
  /**
7256
+ * Scrub-thumbnail fidelity preset — the single per-camera selector bundling the
7257
+ * sprite tile RESOLUTION + JPEG QUALITY the recorder packs timeline-scrub
7258
+ * previews at. Five graduated steps; absent on a config = `standard` (the
7259
+ * shipped default, matching `sheet-geometry`/`sheet-composer`).
7260
+ *
7261
+ * Existing sheets are IMMUTABLE — a changed preset applies to NEW windows only.
7262
+ * Each window's index sidecar carries its own tile dims, so a camera whose
7263
+ * preset changed over time renders every historical window at the dims it was
7264
+ * written with.
7265
+ */
7266
+ var ScrubThumbnailPresetSchema = _enum([
7267
+ "minimal",
7268
+ "low",
7269
+ "standard",
7270
+ "high",
7271
+ "max"
7272
+ ]);
7273
+ /**
7256
7274
  * The full per-camera recording intent — the wire shape of a RecordingTarget.
7257
7275
  *
7258
7276
  * `mode` is the authoritative storage choice; `schedule`/`triggers`/`pre`/`post`
@@ -7289,7 +7307,14 @@ var RecordingConfigSchema = object({
7289
7307
  * derived into bands once via `migrateConfigToBands`.
7290
7308
  */
7291
7309
  bands: array(RecordingBandSchema).optional(),
7292
- retention: RecordingRetentionSchema.optional()
7310
+ retention: RecordingRetentionSchema.optional(),
7311
+ /**
7312
+ * Per-camera scrub-thumbnail fidelity preset (resolution + JPEG quality for
7313
+ * timeline-scrub sprite previews). Absent = `standard`. Applies to NEW
7314
+ * windows only — existing sheets are immutable, and each window's index
7315
+ * carries its own tile dims so mixed-preset history renders correctly.
7316
+ */
7317
+ scrubThumbnails: ScrubThumbnailPresetSchema.optional()
7293
7318
  });
7294
7319
  /**
7295
7320
  * `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-ecowitt",
3
- "version": "0.1.23",
3
+ "version": "0.1.24",
4
4
  "description": "Ecowitt weather-station device-provider addon for CamStack — wraps the @apocaliss92/nodewitt local-poll / push client",
5
5
  "keywords": [
6
6
  "camstack",