@camstack/addon-agent-ui 1.1.25 → 1.1.26
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 +27 -2
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -7231,6 +7231,24 @@ var RecordingRetentionSchema = object({
|
|
|
7231
7231
|
maxSizeGb: number().min(0).optional()
|
|
7232
7232
|
});
|
|
7233
7233
|
/**
|
|
7234
|
+
* Scrub-thumbnail fidelity preset — the single per-camera selector bundling the
|
|
7235
|
+
* sprite tile RESOLUTION + JPEG QUALITY the recorder packs timeline-scrub
|
|
7236
|
+
* previews at. Five graduated steps; absent on a config = `standard` (the
|
|
7237
|
+
* shipped default, matching `sheet-geometry`/`sheet-composer`).
|
|
7238
|
+
*
|
|
7239
|
+
* Existing sheets are IMMUTABLE — a changed preset applies to NEW windows only.
|
|
7240
|
+
* Each window's index sidecar carries its own tile dims, so a camera whose
|
|
7241
|
+
* preset changed over time renders every historical window at the dims it was
|
|
7242
|
+
* written with.
|
|
7243
|
+
*/
|
|
7244
|
+
var ScrubThumbnailPresetSchema = _enum([
|
|
7245
|
+
"minimal",
|
|
7246
|
+
"low",
|
|
7247
|
+
"standard",
|
|
7248
|
+
"high",
|
|
7249
|
+
"max"
|
|
7250
|
+
]);
|
|
7251
|
+
/**
|
|
7234
7252
|
* The full per-camera recording intent — the wire shape of a RecordingTarget.
|
|
7235
7253
|
*
|
|
7236
7254
|
* `mode` is the authoritative storage choice; `schedule`/`triggers`/`pre`/`post`
|
|
@@ -7267,7 +7285,14 @@ var RecordingConfigSchema = object({
|
|
|
7267
7285
|
* derived into bands once via `migrateConfigToBands`.
|
|
7268
7286
|
*/
|
|
7269
7287
|
bands: array(RecordingBandSchema).optional(),
|
|
7270
|
-
retention: RecordingRetentionSchema.optional()
|
|
7288
|
+
retention: RecordingRetentionSchema.optional(),
|
|
7289
|
+
/**
|
|
7290
|
+
* Per-camera scrub-thumbnail fidelity preset (resolution + JPEG quality for
|
|
7291
|
+
* timeline-scrub sprite previews). Absent = `standard`. Applies to NEW
|
|
7292
|
+
* windows only — existing sheets are immutable, and each window's index
|
|
7293
|
+
* carries its own tile dims so mixed-preset history renders correctly.
|
|
7294
|
+
*/
|
|
7295
|
+
scrubThumbnails: ScrubThumbnailPresetSchema.optional()
|
|
7271
7296
|
});
|
|
7272
7297
|
/**
|
|
7273
7298
|
* `StorageLocationType` — an addon-declared id that identifies the *kind* of
|
|
@@ -24470,7 +24495,7 @@ var AgentUIAddon = class extends BaseAddon {
|
|
|
24470
24495
|
capability: adminUiCapability,
|
|
24471
24496
|
provider: {
|
|
24472
24497
|
getStaticDir: async () => ({ staticDir: path.resolve(__dirname) }),
|
|
24473
|
-
getVersion: async () => ({ version: "1.1.
|
|
24498
|
+
getVersion: async () => ({ version: "1.1.26" })
|
|
24474
24499
|
}
|
|
24475
24500
|
}];
|
|
24476
24501
|
}
|