@camstack/addon-provider-rademacher 0.1.10 → 0.1.11
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
|
@@ -8236,6 +8236,24 @@ var RecordingRetentionSchema = object({
|
|
|
8236
8236
|
maxSizeGb: number().min(0).optional()
|
|
8237
8237
|
});
|
|
8238
8238
|
/**
|
|
8239
|
+
* Scrub-thumbnail fidelity preset — the single per-camera selector bundling the
|
|
8240
|
+
* sprite tile RESOLUTION + JPEG QUALITY the recorder packs timeline-scrub
|
|
8241
|
+
* previews at. Five graduated steps; absent on a config = `standard` (the
|
|
8242
|
+
* shipped default, matching `sheet-geometry`/`sheet-composer`).
|
|
8243
|
+
*
|
|
8244
|
+
* Existing sheets are IMMUTABLE — a changed preset applies to NEW windows only.
|
|
8245
|
+
* Each window's index sidecar carries its own tile dims, so a camera whose
|
|
8246
|
+
* preset changed over time renders every historical window at the dims it was
|
|
8247
|
+
* written with.
|
|
8248
|
+
*/
|
|
8249
|
+
var ScrubThumbnailPresetSchema = _enum([
|
|
8250
|
+
"minimal",
|
|
8251
|
+
"low",
|
|
8252
|
+
"standard",
|
|
8253
|
+
"high",
|
|
8254
|
+
"max"
|
|
8255
|
+
]);
|
|
8256
|
+
/**
|
|
8239
8257
|
* The full per-camera recording intent — the wire shape of a RecordingTarget.
|
|
8240
8258
|
*
|
|
8241
8259
|
* `mode` is the authoritative storage choice; `schedule`/`triggers`/`pre`/`post`
|
|
@@ -8272,7 +8290,14 @@ var RecordingConfigSchema = object({
|
|
|
8272
8290
|
* derived into bands once via `migrateConfigToBands`.
|
|
8273
8291
|
*/
|
|
8274
8292
|
bands: array(RecordingBandSchema).optional(),
|
|
8275
|
-
retention: RecordingRetentionSchema.optional()
|
|
8293
|
+
retention: RecordingRetentionSchema.optional(),
|
|
8294
|
+
/**
|
|
8295
|
+
* Per-camera scrub-thumbnail fidelity preset (resolution + JPEG quality for
|
|
8296
|
+
* timeline-scrub sprite previews). Absent = `standard`. Applies to NEW
|
|
8297
|
+
* windows only — existing sheets are immutable, and each window's index
|
|
8298
|
+
* carries its own tile dims so mixed-preset history renders correctly.
|
|
8299
|
+
*/
|
|
8300
|
+
scrubThumbnails: ScrubThumbnailPresetSchema.optional()
|
|
8276
8301
|
});
|
|
8277
8302
|
/**
|
|
8278
8303
|
* `StorageLocationType` — an addon-declared id that identifies the *kind* of
|
package/dist/addon.mjs
CHANGED
|
@@ -8235,6 +8235,24 @@ var RecordingRetentionSchema = object({
|
|
|
8235
8235
|
maxSizeGb: number().min(0).optional()
|
|
8236
8236
|
});
|
|
8237
8237
|
/**
|
|
8238
|
+
* Scrub-thumbnail fidelity preset — the single per-camera selector bundling the
|
|
8239
|
+
* sprite tile RESOLUTION + JPEG QUALITY the recorder packs timeline-scrub
|
|
8240
|
+
* previews at. Five graduated steps; absent on a config = `standard` (the
|
|
8241
|
+
* shipped default, matching `sheet-geometry`/`sheet-composer`).
|
|
8242
|
+
*
|
|
8243
|
+
* Existing sheets are IMMUTABLE — a changed preset applies to NEW windows only.
|
|
8244
|
+
* Each window's index sidecar carries its own tile dims, so a camera whose
|
|
8245
|
+
* preset changed over time renders every historical window at the dims it was
|
|
8246
|
+
* written with.
|
|
8247
|
+
*/
|
|
8248
|
+
var ScrubThumbnailPresetSchema = _enum([
|
|
8249
|
+
"minimal",
|
|
8250
|
+
"low",
|
|
8251
|
+
"standard",
|
|
8252
|
+
"high",
|
|
8253
|
+
"max"
|
|
8254
|
+
]);
|
|
8255
|
+
/**
|
|
8238
8256
|
* The full per-camera recording intent — the wire shape of a RecordingTarget.
|
|
8239
8257
|
*
|
|
8240
8258
|
* `mode` is the authoritative storage choice; `schedule`/`triggers`/`pre`/`post`
|
|
@@ -8271,7 +8289,14 @@ var RecordingConfigSchema = object({
|
|
|
8271
8289
|
* derived into bands once via `migrateConfigToBands`.
|
|
8272
8290
|
*/
|
|
8273
8291
|
bands: array(RecordingBandSchema).optional(),
|
|
8274
|
-
retention: RecordingRetentionSchema.optional()
|
|
8292
|
+
retention: RecordingRetentionSchema.optional(),
|
|
8293
|
+
/**
|
|
8294
|
+
* Per-camera scrub-thumbnail fidelity preset (resolution + JPEG quality for
|
|
8295
|
+
* timeline-scrub sprite previews). Absent = `standard`. Applies to NEW
|
|
8296
|
+
* windows only — existing sheets are immutable, and each window's index
|
|
8297
|
+
* carries its own tile dims so mixed-preset history renders correctly.
|
|
8298
|
+
*/
|
|
8299
|
+
scrubThumbnails: ScrubThumbnailPresetSchema.optional()
|
|
8275
8300
|
});
|
|
8276
8301
|
/**
|
|
8277
8302
|
* `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-rademacher",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.11",
|
|
4
4
|
"description": "Rademacher HomePilot device-provider addon for CamStack — wraps the @apocaliss92/noderademacher local-hub client (roller shutters over the cover cap)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|