@camstack/addon-provider-hikvision 1.1.25 → 1.1.26

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