@camstack/addon-ai 0.1.4 → 0.1.5

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 CHANGED
@@ -7265,6 +7265,24 @@ var RecordingRetentionSchema = object({
7265
7265
  maxSizeGb: number().min(0).optional()
7266
7266
  });
7267
7267
  /**
7268
+ * Scrub-thumbnail fidelity preset — the single per-camera selector bundling the
7269
+ * sprite tile RESOLUTION + JPEG QUALITY the recorder packs timeline-scrub
7270
+ * previews at. Five graduated steps; absent on a config = `standard` (the
7271
+ * shipped default, matching `sheet-geometry`/`sheet-composer`).
7272
+ *
7273
+ * Existing sheets are IMMUTABLE — a changed preset applies to NEW windows only.
7274
+ * Each window's index sidecar carries its own tile dims, so a camera whose
7275
+ * preset changed over time renders every historical window at the dims it was
7276
+ * written with.
7277
+ */
7278
+ var ScrubThumbnailPresetSchema = _enum([
7279
+ "minimal",
7280
+ "low",
7281
+ "standard",
7282
+ "high",
7283
+ "max"
7284
+ ]);
7285
+ /**
7268
7286
  * The full per-camera recording intent — the wire shape of a RecordingTarget.
7269
7287
  *
7270
7288
  * `mode` is the authoritative storage choice; `schedule`/`triggers`/`pre`/`post`
@@ -7301,7 +7319,14 @@ var RecordingConfigSchema = object({
7301
7319
  * derived into bands once via `migrateConfigToBands`.
7302
7320
  */
7303
7321
  bands: array(RecordingBandSchema).optional(),
7304
- retention: RecordingRetentionSchema.optional()
7322
+ retention: RecordingRetentionSchema.optional(),
7323
+ /**
7324
+ * Per-camera scrub-thumbnail fidelity preset (resolution + JPEG quality for
7325
+ * timeline-scrub sprite previews). Absent = `standard`. Applies to NEW
7326
+ * windows only — existing sheets are immutable, and each window's index
7327
+ * carries its own tile dims so mixed-preset history renders correctly.
7328
+ */
7329
+ scrubThumbnails: ScrubThumbnailPresetSchema.optional()
7305
7330
  });
7306
7331
  /**
7307
7332
  * `StorageLocationType` — an addon-declared id that identifies the *kind* of
package/dist/addon.mjs CHANGED
@@ -7227,6 +7227,24 @@ var RecordingRetentionSchema = object({
7227
7227
  maxSizeGb: number().min(0).optional()
7228
7228
  });
7229
7229
  /**
7230
+ * Scrub-thumbnail fidelity preset — the single per-camera selector bundling the
7231
+ * sprite tile RESOLUTION + JPEG QUALITY the recorder packs timeline-scrub
7232
+ * previews at. Five graduated steps; absent on a config = `standard` (the
7233
+ * shipped default, matching `sheet-geometry`/`sheet-composer`).
7234
+ *
7235
+ * Existing sheets are IMMUTABLE — a changed preset applies to NEW windows only.
7236
+ * Each window's index sidecar carries its own tile dims, so a camera whose
7237
+ * preset changed over time renders every historical window at the dims it was
7238
+ * written with.
7239
+ */
7240
+ var ScrubThumbnailPresetSchema = _enum([
7241
+ "minimal",
7242
+ "low",
7243
+ "standard",
7244
+ "high",
7245
+ "max"
7246
+ ]);
7247
+ /**
7230
7248
  * The full per-camera recording intent — the wire shape of a RecordingTarget.
7231
7249
  *
7232
7250
  * `mode` is the authoritative storage choice; `schedule`/`triggers`/`pre`/`post`
@@ -7263,7 +7281,14 @@ var RecordingConfigSchema = object({
7263
7281
  * derived into bands once via `migrateConfigToBands`.
7264
7282
  */
7265
7283
  bands: array(RecordingBandSchema).optional(),
7266
- retention: RecordingRetentionSchema.optional()
7284
+ retention: RecordingRetentionSchema.optional(),
7285
+ /**
7286
+ * Per-camera scrub-thumbnail fidelity preset (resolution + JPEG quality for
7287
+ * timeline-scrub sprite previews). Absent = `standard`. Applies to NEW
7288
+ * windows only — existing sheets are immutable, and each window's index
7289
+ * carries its own tile dims so mixed-preset history renders correctly.
7290
+ */
7291
+ scrubThumbnails: ScrubThumbnailPresetSchema.optional()
7267
7292
  });
7268
7293
  /**
7269
7294
  * `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-ai",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "AI addon for CamStack — the `llm` collection provider (cloud, LAN, and camstack-managed local llama.cpp profiles) plus the per-node `llm-runtime` managed executor.",
5
5
  "keywords": [
6
6
  "camstack",