@camstack/addon-advanced-notifier 1.1.26 → 1.1.27

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
@@ -7225,6 +7225,24 @@ var RecordingRetentionSchema = object({
7225
7225
  maxSizeGb: number().min(0).optional()
7226
7226
  });
7227
7227
  /**
7228
+ * Scrub-thumbnail fidelity preset — the single per-camera selector bundling the
7229
+ * sprite tile RESOLUTION + JPEG QUALITY the recorder packs timeline-scrub
7230
+ * previews at. Five graduated steps; absent on a config = `standard` (the
7231
+ * shipped default, matching `sheet-geometry`/`sheet-composer`).
7232
+ *
7233
+ * Existing sheets are IMMUTABLE — a changed preset applies to NEW windows only.
7234
+ * Each window's index sidecar carries its own tile dims, so a camera whose
7235
+ * preset changed over time renders every historical window at the dims it was
7236
+ * written with.
7237
+ */
7238
+ var ScrubThumbnailPresetSchema = _enum([
7239
+ "minimal",
7240
+ "low",
7241
+ "standard",
7242
+ "high",
7243
+ "max"
7244
+ ]);
7245
+ /**
7228
7246
  * The full per-camera recording intent — the wire shape of a RecordingTarget.
7229
7247
  *
7230
7248
  * `mode` is the authoritative storage choice; `schedule`/`triggers`/`pre`/`post`
@@ -7261,7 +7279,14 @@ var RecordingConfigSchema = object({
7261
7279
  * derived into bands once via `migrateConfigToBands`.
7262
7280
  */
7263
7281
  bands: array(RecordingBandSchema).optional(),
7264
- retention: RecordingRetentionSchema.optional()
7282
+ retention: RecordingRetentionSchema.optional(),
7283
+ /**
7284
+ * Per-camera scrub-thumbnail fidelity preset (resolution + JPEG quality for
7285
+ * timeline-scrub sprite previews). Absent = `standard`. Applies to NEW
7286
+ * windows only — existing sheets are immutable, and each window's index
7287
+ * carries its own tile dims so mixed-preset history renders correctly.
7288
+ */
7289
+ scrubThumbnails: ScrubThumbnailPresetSchema.optional()
7265
7290
  });
7266
7291
  /**
7267
7292
  * `StorageLocationType` — an addon-declared id that identifies the *kind* of
package/dist/addon.mjs CHANGED
@@ -7221,6 +7221,24 @@ var RecordingRetentionSchema = object({
7221
7221
  maxSizeGb: number().min(0).optional()
7222
7222
  });
7223
7223
  /**
7224
+ * Scrub-thumbnail fidelity preset — the single per-camera selector bundling the
7225
+ * sprite tile RESOLUTION + JPEG QUALITY the recorder packs timeline-scrub
7226
+ * previews at. Five graduated steps; absent on a config = `standard` (the
7227
+ * shipped default, matching `sheet-geometry`/`sheet-composer`).
7228
+ *
7229
+ * Existing sheets are IMMUTABLE — a changed preset applies to NEW windows only.
7230
+ * Each window's index sidecar carries its own tile dims, so a camera whose
7231
+ * preset changed over time renders every historical window at the dims it was
7232
+ * written with.
7233
+ */
7234
+ var ScrubThumbnailPresetSchema = _enum([
7235
+ "minimal",
7236
+ "low",
7237
+ "standard",
7238
+ "high",
7239
+ "max"
7240
+ ]);
7241
+ /**
7224
7242
  * The full per-camera recording intent — the wire shape of a RecordingTarget.
7225
7243
  *
7226
7244
  * `mode` is the authoritative storage choice; `schedule`/`triggers`/`pre`/`post`
@@ -7257,7 +7275,14 @@ var RecordingConfigSchema = object({
7257
7275
  * derived into bands once via `migrateConfigToBands`.
7258
7276
  */
7259
7277
  bands: array(RecordingBandSchema).optional(),
7260
- retention: RecordingRetentionSchema.optional()
7278
+ retention: RecordingRetentionSchema.optional(),
7279
+ /**
7280
+ * Per-camera scrub-thumbnail fidelity preset (resolution + JPEG quality for
7281
+ * timeline-scrub sprite previews). Absent = `standard`. Applies to NEW
7282
+ * windows only — existing sheets are immutable, and each window's index
7283
+ * carries its own tile dims so mixed-preset history renders correctly.
7284
+ */
7285
+ scrubThumbnails: ScrubThumbnailPresetSchema.optional()
7261
7286
  });
7262
7287
  /**
7263
7288
  * `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-advanced-notifier",
3
- "version": "1.1.26",
3
+ "version": "1.1.27",
4
4
  "description": "Rules-based notification engine for CamStack",
5
5
  "license": "MIT",
6
6
  "main": "./dist/index.js",