@uug-ai/models 1.6.6 → 1.6.7

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.
Files changed (2) hide show
  1. package/dist/types.d.ts +13 -0
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -31085,6 +31085,19 @@ export interface components {
31085
31085
  * @example 507f1f77bcf86cd799439011
31086
31086
  */
31087
31087
  id?: string;
31088
+ /**
31089
+ * @description MediaKeys optionally pins this marker to specific recordings by their stable
31090
+ * key (media.videoFile). When set, the marker writer links the marker to
31091
+ * exactly these recordings — scoped to the marker's device and organisation —
31092
+ * instead of inferring the link from timestamp overlap. This is authoritative:
31093
+ * the producer (e.g. a stage worker) knows precisely which recording a
31094
+ * detection came from, so it is immune to timing/fps drift. Leave empty to keep
31095
+ * the default timestamp-overlap association.
31096
+ * @example [
31097
+ * "1752482068_...device_1920_1080_10000.mp4"
31098
+ * ]
31099
+ */
31100
+ mediaKeys?: string[];
31088
31101
  /** @description Additional metadata */
31089
31102
  metadata?: components["schemas"]["models.MarkerMetadata"];
31090
31103
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uug-ai/models",
3
- "version": "1.6.6",
3
+ "version": "1.6.7",
4
4
  "description": "TypeScript type definitions for Go models",
5
5
  "main": "dist/types.js",
6
6
  "types": "dist/types.d.ts",