@camstack/addon-provider-reolink 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 +26 -1
- package/dist/addon.mjs +26 -1
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -7451,6 +7451,24 @@ var RecordingRetentionSchema = object({
|
|
|
7451
7451
|
maxSizeGb: number().min(0).optional()
|
|
7452
7452
|
});
|
|
7453
7453
|
/**
|
|
7454
|
+
* Scrub-thumbnail fidelity preset — the single per-camera selector bundling the
|
|
7455
|
+
* sprite tile RESOLUTION + JPEG QUALITY the recorder packs timeline-scrub
|
|
7456
|
+
* previews at. Five graduated steps; absent on a config = `standard` (the
|
|
7457
|
+
* shipped default, matching `sheet-geometry`/`sheet-composer`).
|
|
7458
|
+
*
|
|
7459
|
+
* Existing sheets are IMMUTABLE — a changed preset applies to NEW windows only.
|
|
7460
|
+
* Each window's index sidecar carries its own tile dims, so a camera whose
|
|
7461
|
+
* preset changed over time renders every historical window at the dims it was
|
|
7462
|
+
* written with.
|
|
7463
|
+
*/
|
|
7464
|
+
var ScrubThumbnailPresetSchema = _enum([
|
|
7465
|
+
"minimal",
|
|
7466
|
+
"low",
|
|
7467
|
+
"standard",
|
|
7468
|
+
"high",
|
|
7469
|
+
"max"
|
|
7470
|
+
]);
|
|
7471
|
+
/**
|
|
7454
7472
|
* The full per-camera recording intent — the wire shape of a RecordingTarget.
|
|
7455
7473
|
*
|
|
7456
7474
|
* `mode` is the authoritative storage choice; `schedule`/`triggers`/`pre`/`post`
|
|
@@ -7487,7 +7505,14 @@ var RecordingConfigSchema = object({
|
|
|
7487
7505
|
* derived into bands once via `migrateConfigToBands`.
|
|
7488
7506
|
*/
|
|
7489
7507
|
bands: array(RecordingBandSchema).optional(),
|
|
7490
|
-
retention: RecordingRetentionSchema.optional()
|
|
7508
|
+
retention: RecordingRetentionSchema.optional(),
|
|
7509
|
+
/**
|
|
7510
|
+
* Per-camera scrub-thumbnail fidelity preset (resolution + JPEG quality for
|
|
7511
|
+
* timeline-scrub sprite previews). Absent = `standard`. Applies to NEW
|
|
7512
|
+
* windows only — existing sheets are immutable, and each window's index
|
|
7513
|
+
* carries its own tile dims so mixed-preset history renders correctly.
|
|
7514
|
+
*/
|
|
7515
|
+
scrubThumbnails: ScrubThumbnailPresetSchema.optional()
|
|
7491
7516
|
});
|
|
7492
7517
|
/**
|
|
7493
7518
|
* `StorageLocationType` — an addon-declared id that identifies the *kind* of
|
package/dist/addon.mjs
CHANGED
|
@@ -7446,6 +7446,24 @@ var RecordingRetentionSchema = object({
|
|
|
7446
7446
|
maxSizeGb: number().min(0).optional()
|
|
7447
7447
|
});
|
|
7448
7448
|
/**
|
|
7449
|
+
* Scrub-thumbnail fidelity preset — the single per-camera selector bundling the
|
|
7450
|
+
* sprite tile RESOLUTION + JPEG QUALITY the recorder packs timeline-scrub
|
|
7451
|
+
* previews at. Five graduated steps; absent on a config = `standard` (the
|
|
7452
|
+
* shipped default, matching `sheet-geometry`/`sheet-composer`).
|
|
7453
|
+
*
|
|
7454
|
+
* Existing sheets are IMMUTABLE — a changed preset applies to NEW windows only.
|
|
7455
|
+
* Each window's index sidecar carries its own tile dims, so a camera whose
|
|
7456
|
+
* preset changed over time renders every historical window at the dims it was
|
|
7457
|
+
* written with.
|
|
7458
|
+
*/
|
|
7459
|
+
var ScrubThumbnailPresetSchema = _enum([
|
|
7460
|
+
"minimal",
|
|
7461
|
+
"low",
|
|
7462
|
+
"standard",
|
|
7463
|
+
"high",
|
|
7464
|
+
"max"
|
|
7465
|
+
]);
|
|
7466
|
+
/**
|
|
7449
7467
|
* The full per-camera recording intent — the wire shape of a RecordingTarget.
|
|
7450
7468
|
*
|
|
7451
7469
|
* `mode` is the authoritative storage choice; `schedule`/`triggers`/`pre`/`post`
|
|
@@ -7482,7 +7500,14 @@ var RecordingConfigSchema = object({
|
|
|
7482
7500
|
* derived into bands once via `migrateConfigToBands`.
|
|
7483
7501
|
*/
|
|
7484
7502
|
bands: array(RecordingBandSchema).optional(),
|
|
7485
|
-
retention: RecordingRetentionSchema.optional()
|
|
7503
|
+
retention: RecordingRetentionSchema.optional(),
|
|
7504
|
+
/**
|
|
7505
|
+
* Per-camera scrub-thumbnail fidelity preset (resolution + JPEG quality for
|
|
7506
|
+
* timeline-scrub sprite previews). Absent = `standard`. Applies to NEW
|
|
7507
|
+
* windows only — existing sheets are immutable, and each window's index
|
|
7508
|
+
* carries its own tile dims so mixed-preset history renders correctly.
|
|
7509
|
+
*/
|
|
7510
|
+
scrubThumbnails: ScrubThumbnailPresetSchema.optional()
|
|
7486
7511
|
});
|
|
7487
7512
|
/**
|
|
7488
7513
|
* `StorageLocationType` — an addon-declared id that identifies the *kind* of
|