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