@camstack/addon-provider-unifi 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
|
@@ -7251,6 +7251,24 @@ var RecordingRetentionSchema = object({
|
|
|
7251
7251
|
maxSizeGb: number().min(0).optional()
|
|
7252
7252
|
});
|
|
7253
7253
|
/**
|
|
7254
|
+
* Scrub-thumbnail fidelity preset — the single per-camera selector bundling the
|
|
7255
|
+
* sprite tile RESOLUTION + JPEG QUALITY the recorder packs timeline-scrub
|
|
7256
|
+
* previews at. Five graduated steps; absent on a config = `standard` (the
|
|
7257
|
+
* shipped default, matching `sheet-geometry`/`sheet-composer`).
|
|
7258
|
+
*
|
|
7259
|
+
* Existing sheets are IMMUTABLE — a changed preset applies to NEW windows only.
|
|
7260
|
+
* Each window's index sidecar carries its own tile dims, so a camera whose
|
|
7261
|
+
* preset changed over time renders every historical window at the dims it was
|
|
7262
|
+
* written with.
|
|
7263
|
+
*/
|
|
7264
|
+
var ScrubThumbnailPresetSchema = _enum([
|
|
7265
|
+
"minimal",
|
|
7266
|
+
"low",
|
|
7267
|
+
"standard",
|
|
7268
|
+
"high",
|
|
7269
|
+
"max"
|
|
7270
|
+
]);
|
|
7271
|
+
/**
|
|
7254
7272
|
* The full per-camera recording intent — the wire shape of a RecordingTarget.
|
|
7255
7273
|
*
|
|
7256
7274
|
* `mode` is the authoritative storage choice; `schedule`/`triggers`/`pre`/`post`
|
|
@@ -7287,7 +7305,14 @@ var RecordingConfigSchema = object({
|
|
|
7287
7305
|
* derived into bands once via `migrateConfigToBands`.
|
|
7288
7306
|
*/
|
|
7289
7307
|
bands: array(RecordingBandSchema).optional(),
|
|
7290
|
-
retention: RecordingRetentionSchema.optional()
|
|
7308
|
+
retention: RecordingRetentionSchema.optional(),
|
|
7309
|
+
/**
|
|
7310
|
+
* Per-camera scrub-thumbnail fidelity preset (resolution + JPEG quality for
|
|
7311
|
+
* timeline-scrub sprite previews). Absent = `standard`. Applies to NEW
|
|
7312
|
+
* windows only — existing sheets are immutable, and each window's index
|
|
7313
|
+
* carries its own tile dims so mixed-preset history renders correctly.
|
|
7314
|
+
*/
|
|
7315
|
+
scrubThumbnails: ScrubThumbnailPresetSchema.optional()
|
|
7291
7316
|
});
|
|
7292
7317
|
/**
|
|
7293
7318
|
* `StorageLocationType` — an addon-declared id that identifies the *kind* of
|
package/dist/addon.mjs
CHANGED
|
@@ -7250,6 +7250,24 @@ var RecordingRetentionSchema = object({
|
|
|
7250
7250
|
maxSizeGb: number().min(0).optional()
|
|
7251
7251
|
});
|
|
7252
7252
|
/**
|
|
7253
|
+
* Scrub-thumbnail fidelity preset — the single per-camera selector bundling the
|
|
7254
|
+
* sprite tile RESOLUTION + JPEG QUALITY the recorder packs timeline-scrub
|
|
7255
|
+
* previews at. Five graduated steps; absent on a config = `standard` (the
|
|
7256
|
+
* shipped default, matching `sheet-geometry`/`sheet-composer`).
|
|
7257
|
+
*
|
|
7258
|
+
* Existing sheets are IMMUTABLE — a changed preset applies to NEW windows only.
|
|
7259
|
+
* Each window's index sidecar carries its own tile dims, so a camera whose
|
|
7260
|
+
* preset changed over time renders every historical window at the dims it was
|
|
7261
|
+
* written with.
|
|
7262
|
+
*/
|
|
7263
|
+
var ScrubThumbnailPresetSchema = _enum([
|
|
7264
|
+
"minimal",
|
|
7265
|
+
"low",
|
|
7266
|
+
"standard",
|
|
7267
|
+
"high",
|
|
7268
|
+
"max"
|
|
7269
|
+
]);
|
|
7270
|
+
/**
|
|
7253
7271
|
* The full per-camera recording intent — the wire shape of a RecordingTarget.
|
|
7254
7272
|
*
|
|
7255
7273
|
* `mode` is the authoritative storage choice; `schedule`/`triggers`/`pre`/`post`
|
|
@@ -7286,7 +7304,14 @@ var RecordingConfigSchema = object({
|
|
|
7286
7304
|
* derived into bands once via `migrateConfigToBands`.
|
|
7287
7305
|
*/
|
|
7288
7306
|
bands: array(RecordingBandSchema).optional(),
|
|
7289
|
-
retention: RecordingRetentionSchema.optional()
|
|
7307
|
+
retention: RecordingRetentionSchema.optional(),
|
|
7308
|
+
/**
|
|
7309
|
+
* Per-camera scrub-thumbnail fidelity preset (resolution + JPEG quality for
|
|
7310
|
+
* timeline-scrub sprite previews). Absent = `standard`. Applies to NEW
|
|
7311
|
+
* windows only — existing sheets are immutable, and each window's index
|
|
7312
|
+
* carries its own tile dims so mixed-preset history renders correctly.
|
|
7313
|
+
*/
|
|
7314
|
+
scrubThumbnails: ScrubThumbnailPresetSchema.optional()
|
|
7290
7315
|
});
|
|
7291
7316
|
/**
|
|
7292
7317
|
* `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-unifi",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.11",
|
|
4
4
|
"description": "UniFi Network controller device-provider addon for CamStack — local-controller infra switches/APs (as containers) + network-client presence. NO cameras/Protect.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|