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