@camstack/addon-provider-onvif 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
|
@@ -7236,6 +7236,24 @@ var RecordingRetentionSchema = object({
|
|
|
7236
7236
|
maxSizeGb: number().min(0).optional()
|
|
7237
7237
|
});
|
|
7238
7238
|
/**
|
|
7239
|
+
* Scrub-thumbnail fidelity preset — the single per-camera selector bundling the
|
|
7240
|
+
* sprite tile RESOLUTION + JPEG QUALITY the recorder packs timeline-scrub
|
|
7241
|
+
* previews at. Five graduated steps; absent on a config = `standard` (the
|
|
7242
|
+
* shipped default, matching `sheet-geometry`/`sheet-composer`).
|
|
7243
|
+
*
|
|
7244
|
+
* Existing sheets are IMMUTABLE — a changed preset applies to NEW windows only.
|
|
7245
|
+
* Each window's index sidecar carries its own tile dims, so a camera whose
|
|
7246
|
+
* preset changed over time renders every historical window at the dims it was
|
|
7247
|
+
* written with.
|
|
7248
|
+
*/
|
|
7249
|
+
var ScrubThumbnailPresetSchema = _enum([
|
|
7250
|
+
"minimal",
|
|
7251
|
+
"low",
|
|
7252
|
+
"standard",
|
|
7253
|
+
"high",
|
|
7254
|
+
"max"
|
|
7255
|
+
]);
|
|
7256
|
+
/**
|
|
7239
7257
|
* The full per-camera recording intent — the wire shape of a RecordingTarget.
|
|
7240
7258
|
*
|
|
7241
7259
|
* `mode` is the authoritative storage choice; `schedule`/`triggers`/`pre`/`post`
|
|
@@ -7272,7 +7290,14 @@ var RecordingConfigSchema = object({
|
|
|
7272
7290
|
* derived into bands once via `migrateConfigToBands`.
|
|
7273
7291
|
*/
|
|
7274
7292
|
bands: array(RecordingBandSchema).optional(),
|
|
7275
|
-
retention: RecordingRetentionSchema.optional()
|
|
7293
|
+
retention: RecordingRetentionSchema.optional(),
|
|
7294
|
+
/**
|
|
7295
|
+
* Per-camera scrub-thumbnail fidelity preset (resolution + JPEG quality for
|
|
7296
|
+
* timeline-scrub sprite previews). Absent = `standard`. Applies to NEW
|
|
7297
|
+
* windows only — existing sheets are immutable, and each window's index
|
|
7298
|
+
* carries its own tile dims so mixed-preset history renders correctly.
|
|
7299
|
+
*/
|
|
7300
|
+
scrubThumbnails: ScrubThumbnailPresetSchema.optional()
|
|
7276
7301
|
});
|
|
7277
7302
|
/**
|
|
7278
7303
|
* `StorageLocationType` — an addon-declared id that identifies the *kind* of
|
package/dist/addon.mjs
CHANGED
|
@@ -7237,6 +7237,24 @@ var RecordingRetentionSchema = object({
|
|
|
7237
7237
|
maxSizeGb: number().min(0).optional()
|
|
7238
7238
|
});
|
|
7239
7239
|
/**
|
|
7240
|
+
* Scrub-thumbnail fidelity preset — the single per-camera selector bundling the
|
|
7241
|
+
* sprite tile RESOLUTION + JPEG QUALITY the recorder packs timeline-scrub
|
|
7242
|
+
* previews at. Five graduated steps; absent on a config = `standard` (the
|
|
7243
|
+
* shipped default, matching `sheet-geometry`/`sheet-composer`).
|
|
7244
|
+
*
|
|
7245
|
+
* Existing sheets are IMMUTABLE — a changed preset applies to NEW windows only.
|
|
7246
|
+
* Each window's index sidecar carries its own tile dims, so a camera whose
|
|
7247
|
+
* preset changed over time renders every historical window at the dims it was
|
|
7248
|
+
* written with.
|
|
7249
|
+
*/
|
|
7250
|
+
var ScrubThumbnailPresetSchema = _enum([
|
|
7251
|
+
"minimal",
|
|
7252
|
+
"low",
|
|
7253
|
+
"standard",
|
|
7254
|
+
"high",
|
|
7255
|
+
"max"
|
|
7256
|
+
]);
|
|
7257
|
+
/**
|
|
7240
7258
|
* The full per-camera recording intent — the wire shape of a RecordingTarget.
|
|
7241
7259
|
*
|
|
7242
7260
|
* `mode` is the authoritative storage choice; `schedule`/`triggers`/`pre`/`post`
|
|
@@ -7273,7 +7291,14 @@ var RecordingConfigSchema = object({
|
|
|
7273
7291
|
* derived into bands once via `migrateConfigToBands`.
|
|
7274
7292
|
*/
|
|
7275
7293
|
bands: array(RecordingBandSchema).optional(),
|
|
7276
|
-
retention: RecordingRetentionSchema.optional()
|
|
7294
|
+
retention: RecordingRetentionSchema.optional(),
|
|
7295
|
+
/**
|
|
7296
|
+
* Per-camera scrub-thumbnail fidelity preset (resolution + JPEG quality for
|
|
7297
|
+
* timeline-scrub sprite previews). Absent = `standard`. Applies to NEW
|
|
7298
|
+
* windows only — existing sheets are immutable, and each window's index
|
|
7299
|
+
* carries its own tile dims so mixed-preset history renders correctly.
|
|
7300
|
+
*/
|
|
7301
|
+
scrubThumbnails: ScrubThumbnailPresetSchema.optional()
|
|
7277
7302
|
});
|
|
7278
7303
|
/**
|
|
7279
7304
|
* `StorageLocationType` — an addon-declared id that identifies the *kind* of
|