@camstack/addon-mqtt-broker 1.1.24 → 1.1.25
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/mqtt-broker.addon.js +26 -1
- package/dist/mqtt-broker.addon.mjs +26 -1
- package/package.json +1 -1
|
@@ -7266,6 +7266,24 @@ var RecordingRetentionSchema = object({
|
|
|
7266
7266
|
maxSizeGb: number().min(0).optional()
|
|
7267
7267
|
});
|
|
7268
7268
|
/**
|
|
7269
|
+
* Scrub-thumbnail fidelity preset — the single per-camera selector bundling the
|
|
7270
|
+
* sprite tile RESOLUTION + JPEG QUALITY the recorder packs timeline-scrub
|
|
7271
|
+
* previews at. Five graduated steps; absent on a config = `standard` (the
|
|
7272
|
+
* shipped default, matching `sheet-geometry`/`sheet-composer`).
|
|
7273
|
+
*
|
|
7274
|
+
* Existing sheets are IMMUTABLE — a changed preset applies to NEW windows only.
|
|
7275
|
+
* Each window's index sidecar carries its own tile dims, so a camera whose
|
|
7276
|
+
* preset changed over time renders every historical window at the dims it was
|
|
7277
|
+
* written with.
|
|
7278
|
+
*/
|
|
7279
|
+
var ScrubThumbnailPresetSchema = _enum([
|
|
7280
|
+
"minimal",
|
|
7281
|
+
"low",
|
|
7282
|
+
"standard",
|
|
7283
|
+
"high",
|
|
7284
|
+
"max"
|
|
7285
|
+
]);
|
|
7286
|
+
/**
|
|
7269
7287
|
* The full per-camera recording intent — the wire shape of a RecordingTarget.
|
|
7270
7288
|
*
|
|
7271
7289
|
* `mode` is the authoritative storage choice; `schedule`/`triggers`/`pre`/`post`
|
|
@@ -7302,7 +7320,14 @@ var RecordingConfigSchema = object({
|
|
|
7302
7320
|
* derived into bands once via `migrateConfigToBands`.
|
|
7303
7321
|
*/
|
|
7304
7322
|
bands: array(RecordingBandSchema).optional(),
|
|
7305
|
-
retention: RecordingRetentionSchema.optional()
|
|
7323
|
+
retention: RecordingRetentionSchema.optional(),
|
|
7324
|
+
/**
|
|
7325
|
+
* Per-camera scrub-thumbnail fidelity preset (resolution + JPEG quality for
|
|
7326
|
+
* timeline-scrub sprite previews). Absent = `standard`. Applies to NEW
|
|
7327
|
+
* windows only — existing sheets are immutable, and each window's index
|
|
7328
|
+
* carries its own tile dims so mixed-preset history renders correctly.
|
|
7329
|
+
*/
|
|
7330
|
+
scrubThumbnails: ScrubThumbnailPresetSchema.optional()
|
|
7306
7331
|
});
|
|
7307
7332
|
/**
|
|
7308
7333
|
* `StorageLocationType` — an addon-declared id that identifies the *kind* of
|
|
@@ -7261,6 +7261,24 @@ var RecordingRetentionSchema = object({
|
|
|
7261
7261
|
maxSizeGb: number().min(0).optional()
|
|
7262
7262
|
});
|
|
7263
7263
|
/**
|
|
7264
|
+
* Scrub-thumbnail fidelity preset — the single per-camera selector bundling the
|
|
7265
|
+
* sprite tile RESOLUTION + JPEG QUALITY the recorder packs timeline-scrub
|
|
7266
|
+
* previews at. Five graduated steps; absent on a config = `standard` (the
|
|
7267
|
+
* shipped default, matching `sheet-geometry`/`sheet-composer`).
|
|
7268
|
+
*
|
|
7269
|
+
* Existing sheets are IMMUTABLE — a changed preset applies to NEW windows only.
|
|
7270
|
+
* Each window's index sidecar carries its own tile dims, so a camera whose
|
|
7271
|
+
* preset changed over time renders every historical window at the dims it was
|
|
7272
|
+
* written with.
|
|
7273
|
+
*/
|
|
7274
|
+
var ScrubThumbnailPresetSchema = _enum([
|
|
7275
|
+
"minimal",
|
|
7276
|
+
"low",
|
|
7277
|
+
"standard",
|
|
7278
|
+
"high",
|
|
7279
|
+
"max"
|
|
7280
|
+
]);
|
|
7281
|
+
/**
|
|
7264
7282
|
* The full per-camera recording intent — the wire shape of a RecordingTarget.
|
|
7265
7283
|
*
|
|
7266
7284
|
* `mode` is the authoritative storage choice; `schedule`/`triggers`/`pre`/`post`
|
|
@@ -7297,7 +7315,14 @@ var RecordingConfigSchema = object({
|
|
|
7297
7315
|
* derived into bands once via `migrateConfigToBands`.
|
|
7298
7316
|
*/
|
|
7299
7317
|
bands: array(RecordingBandSchema).optional(),
|
|
7300
|
-
retention: RecordingRetentionSchema.optional()
|
|
7318
|
+
retention: RecordingRetentionSchema.optional(),
|
|
7319
|
+
/**
|
|
7320
|
+
* Per-camera scrub-thumbnail fidelity preset (resolution + JPEG quality for
|
|
7321
|
+
* timeline-scrub sprite previews). Absent = `standard`. Applies to NEW
|
|
7322
|
+
* windows only — existing sheets are immutable, and each window's index
|
|
7323
|
+
* carries its own tile dims so mixed-preset history renders correctly.
|
|
7324
|
+
*/
|
|
7325
|
+
scrubThumbnails: ScrubThumbnailPresetSchema.optional()
|
|
7301
7326
|
});
|
|
7302
7327
|
/**
|
|
7303
7328
|
* `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-mqtt-broker",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.25",
|
|
4
4
|
"description": "MQTT broker registry addon for CamStack — manages external broker entries + an optional embedded aedes broker. Consumers spin up their own `mqtt.js` clients via the `mqtt-broker` cap.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"camstack",
|