@camstack/addon-provider-tuya 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
|
@@ -7255,6 +7255,24 @@ var RecordingRetentionSchema = object({
|
|
|
7255
7255
|
maxSizeGb: number().min(0).optional()
|
|
7256
7256
|
});
|
|
7257
7257
|
/**
|
|
7258
|
+
* Scrub-thumbnail fidelity preset — the single per-camera selector bundling the
|
|
7259
|
+
* sprite tile RESOLUTION + JPEG QUALITY the recorder packs timeline-scrub
|
|
7260
|
+
* previews at. Five graduated steps; absent on a config = `standard` (the
|
|
7261
|
+
* shipped default, matching `sheet-geometry`/`sheet-composer`).
|
|
7262
|
+
*
|
|
7263
|
+
* Existing sheets are IMMUTABLE — a changed preset applies to NEW windows only.
|
|
7264
|
+
* Each window's index sidecar carries its own tile dims, so a camera whose
|
|
7265
|
+
* preset changed over time renders every historical window at the dims it was
|
|
7266
|
+
* written with.
|
|
7267
|
+
*/
|
|
7268
|
+
var ScrubThumbnailPresetSchema = _enum([
|
|
7269
|
+
"minimal",
|
|
7270
|
+
"low",
|
|
7271
|
+
"standard",
|
|
7272
|
+
"high",
|
|
7273
|
+
"max"
|
|
7274
|
+
]);
|
|
7275
|
+
/**
|
|
7258
7276
|
* The full per-camera recording intent — the wire shape of a RecordingTarget.
|
|
7259
7277
|
*
|
|
7260
7278
|
* `mode` is the authoritative storage choice; `schedule`/`triggers`/`pre`/`post`
|
|
@@ -7291,7 +7309,14 @@ var RecordingConfigSchema = object({
|
|
|
7291
7309
|
* derived into bands once via `migrateConfigToBands`.
|
|
7292
7310
|
*/
|
|
7293
7311
|
bands: array(RecordingBandSchema).optional(),
|
|
7294
|
-
retention: RecordingRetentionSchema.optional()
|
|
7312
|
+
retention: RecordingRetentionSchema.optional(),
|
|
7313
|
+
/**
|
|
7314
|
+
* Per-camera scrub-thumbnail fidelity preset (resolution + JPEG quality for
|
|
7315
|
+
* timeline-scrub sprite previews). Absent = `standard`. Applies to NEW
|
|
7316
|
+
* windows only — existing sheets are immutable, and each window's index
|
|
7317
|
+
* carries its own tile dims so mixed-preset history renders correctly.
|
|
7318
|
+
*/
|
|
7319
|
+
scrubThumbnails: ScrubThumbnailPresetSchema.optional()
|
|
7295
7320
|
});
|
|
7296
7321
|
/**
|
|
7297
7322
|
* `StorageLocationType` — an addon-declared id that identifies the *kind* of
|
package/dist/addon.mjs
CHANGED
|
@@ -7254,6 +7254,24 @@ var RecordingRetentionSchema = object({
|
|
|
7254
7254
|
maxSizeGb: number().min(0).optional()
|
|
7255
7255
|
});
|
|
7256
7256
|
/**
|
|
7257
|
+
* Scrub-thumbnail fidelity preset — the single per-camera selector bundling the
|
|
7258
|
+
* sprite tile RESOLUTION + JPEG QUALITY the recorder packs timeline-scrub
|
|
7259
|
+
* previews at. Five graduated steps; absent on a config = `standard` (the
|
|
7260
|
+
* shipped default, matching `sheet-geometry`/`sheet-composer`).
|
|
7261
|
+
*
|
|
7262
|
+
* Existing sheets are IMMUTABLE — a changed preset applies to NEW windows only.
|
|
7263
|
+
* Each window's index sidecar carries its own tile dims, so a camera whose
|
|
7264
|
+
* preset changed over time renders every historical window at the dims it was
|
|
7265
|
+
* written with.
|
|
7266
|
+
*/
|
|
7267
|
+
var ScrubThumbnailPresetSchema = _enum([
|
|
7268
|
+
"minimal",
|
|
7269
|
+
"low",
|
|
7270
|
+
"standard",
|
|
7271
|
+
"high",
|
|
7272
|
+
"max"
|
|
7273
|
+
]);
|
|
7274
|
+
/**
|
|
7257
7275
|
* The full per-camera recording intent — the wire shape of a RecordingTarget.
|
|
7258
7276
|
*
|
|
7259
7277
|
* `mode` is the authoritative storage choice; `schedule`/`triggers`/`pre`/`post`
|
|
@@ -7290,7 +7308,14 @@ var RecordingConfigSchema = object({
|
|
|
7290
7308
|
* derived into bands once via `migrateConfigToBands`.
|
|
7291
7309
|
*/
|
|
7292
7310
|
bands: array(RecordingBandSchema).optional(),
|
|
7293
|
-
retention: RecordingRetentionSchema.optional()
|
|
7311
|
+
retention: RecordingRetentionSchema.optional(),
|
|
7312
|
+
/**
|
|
7313
|
+
* Per-camera scrub-thumbnail fidelity preset (resolution + JPEG quality for
|
|
7314
|
+
* timeline-scrub sprite previews). Absent = `standard`. Applies to NEW
|
|
7315
|
+
* windows only — existing sheets are immutable, and each window's index
|
|
7316
|
+
* carries its own tile dims so mixed-preset history renders correctly.
|
|
7317
|
+
*/
|
|
7318
|
+
scrubThumbnails: ScrubThumbnailPresetSchema.optional()
|
|
7294
7319
|
});
|
|
7295
7320
|
/**
|
|
7296
7321
|
* `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-tuya",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.11",
|
|
4
4
|
"description": "Tuya / Smart Life device-provider addon for CamStack — account-onboarded (Tuya IoT cloud fetch of device localKeys) + LOCAL DP control via the @apocaliss92/nodetuya encrypted-LAN client, exposing switch / water-heater-family kettle entities",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|