@camstack/addon-provider-wyze 0.1.21 → 0.1.22
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
|
@@ -7268,6 +7268,24 @@ var RecordingRetentionSchema = object({
|
|
|
7268
7268
|
maxSizeGb: number().min(0).optional()
|
|
7269
7269
|
});
|
|
7270
7270
|
/**
|
|
7271
|
+
* Scrub-thumbnail fidelity preset — the single per-camera selector bundling the
|
|
7272
|
+
* sprite tile RESOLUTION + JPEG QUALITY the recorder packs timeline-scrub
|
|
7273
|
+
* previews at. Five graduated steps; absent on a config = `standard` (the
|
|
7274
|
+
* shipped default, matching `sheet-geometry`/`sheet-composer`).
|
|
7275
|
+
*
|
|
7276
|
+
* Existing sheets are IMMUTABLE — a changed preset applies to NEW windows only.
|
|
7277
|
+
* Each window's index sidecar carries its own tile dims, so a camera whose
|
|
7278
|
+
* preset changed over time renders every historical window at the dims it was
|
|
7279
|
+
* written with.
|
|
7280
|
+
*/
|
|
7281
|
+
var ScrubThumbnailPresetSchema = _enum([
|
|
7282
|
+
"minimal",
|
|
7283
|
+
"low",
|
|
7284
|
+
"standard",
|
|
7285
|
+
"high",
|
|
7286
|
+
"max"
|
|
7287
|
+
]);
|
|
7288
|
+
/**
|
|
7271
7289
|
* The full per-camera recording intent — the wire shape of a RecordingTarget.
|
|
7272
7290
|
*
|
|
7273
7291
|
* `mode` is the authoritative storage choice; `schedule`/`triggers`/`pre`/`post`
|
|
@@ -7304,7 +7322,14 @@ var RecordingConfigSchema = object({
|
|
|
7304
7322
|
* derived into bands once via `migrateConfigToBands`.
|
|
7305
7323
|
*/
|
|
7306
7324
|
bands: array(RecordingBandSchema).optional(),
|
|
7307
|
-
retention: RecordingRetentionSchema.optional()
|
|
7325
|
+
retention: RecordingRetentionSchema.optional(),
|
|
7326
|
+
/**
|
|
7327
|
+
* Per-camera scrub-thumbnail fidelity preset (resolution + JPEG quality for
|
|
7328
|
+
* timeline-scrub sprite previews). Absent = `standard`. Applies to NEW
|
|
7329
|
+
* windows only — existing sheets are immutable, and each window's index
|
|
7330
|
+
* carries its own tile dims so mixed-preset history renders correctly.
|
|
7331
|
+
*/
|
|
7332
|
+
scrubThumbnails: ScrubThumbnailPresetSchema.optional()
|
|
7308
7333
|
});
|
|
7309
7334
|
/**
|
|
7310
7335
|
* `StorageLocationType` — an addon-declared id that identifies the *kind* of
|
package/dist/addon.mjs
CHANGED
|
@@ -7247,6 +7247,24 @@ var RecordingRetentionSchema = object({
|
|
|
7247
7247
|
maxSizeGb: number().min(0).optional()
|
|
7248
7248
|
});
|
|
7249
7249
|
/**
|
|
7250
|
+
* Scrub-thumbnail fidelity preset — the single per-camera selector bundling the
|
|
7251
|
+
* sprite tile RESOLUTION + JPEG QUALITY the recorder packs timeline-scrub
|
|
7252
|
+
* previews at. Five graduated steps; absent on a config = `standard` (the
|
|
7253
|
+
* shipped default, matching `sheet-geometry`/`sheet-composer`).
|
|
7254
|
+
*
|
|
7255
|
+
* Existing sheets are IMMUTABLE — a changed preset applies to NEW windows only.
|
|
7256
|
+
* Each window's index sidecar carries its own tile dims, so a camera whose
|
|
7257
|
+
* preset changed over time renders every historical window at the dims it was
|
|
7258
|
+
* written with.
|
|
7259
|
+
*/
|
|
7260
|
+
var ScrubThumbnailPresetSchema = _enum([
|
|
7261
|
+
"minimal",
|
|
7262
|
+
"low",
|
|
7263
|
+
"standard",
|
|
7264
|
+
"high",
|
|
7265
|
+
"max"
|
|
7266
|
+
]);
|
|
7267
|
+
/**
|
|
7250
7268
|
* The full per-camera recording intent — the wire shape of a RecordingTarget.
|
|
7251
7269
|
*
|
|
7252
7270
|
* `mode` is the authoritative storage choice; `schedule`/`triggers`/`pre`/`post`
|
|
@@ -7283,7 +7301,14 @@ var RecordingConfigSchema = object({
|
|
|
7283
7301
|
* derived into bands once via `migrateConfigToBands`.
|
|
7284
7302
|
*/
|
|
7285
7303
|
bands: array(RecordingBandSchema).optional(),
|
|
7286
|
-
retention: RecordingRetentionSchema.optional()
|
|
7304
|
+
retention: RecordingRetentionSchema.optional(),
|
|
7305
|
+
/**
|
|
7306
|
+
* Per-camera scrub-thumbnail fidelity preset (resolution + JPEG quality for
|
|
7307
|
+
* timeline-scrub sprite previews). Absent = `standard`. Applies to NEW
|
|
7308
|
+
* windows only — existing sheets are immutable, and each window's index
|
|
7309
|
+
* carries its own tile dims so mixed-preset history renders correctly.
|
|
7310
|
+
*/
|
|
7311
|
+
scrubThumbnails: ScrubThumbnailPresetSchema.optional()
|
|
7287
7312
|
});
|
|
7288
7313
|
/**
|
|
7289
7314
|
* `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-wyze",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.22",
|
|
4
4
|
"description": "Wyze camera device-provider addon for CamStack — wraps the @apocaliss92/wyze-bridge-js P2P/DTLS client, feeding the stream-broker via the pull-rfc4571 lazy-publish path (a structural twin of addon-provider-reolink)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|