@uug-ai/models 1.2.9 → 1.2.10
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/types.d.ts +15 -5
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -9351,11 +9351,26 @@ export interface components {
|
|
|
9351
9351
|
* @example Motion detected in the lobby area
|
|
9352
9352
|
*/
|
|
9353
9353
|
description?: string;
|
|
9354
|
+
/**
|
|
9355
|
+
* @description Duration of the marker in seconds
|
|
9356
|
+
* @example 11
|
|
9357
|
+
*/
|
|
9358
|
+
duration?: number;
|
|
9359
|
+
/**
|
|
9360
|
+
* @description End timestamp of the marker in seconds since epoch
|
|
9361
|
+
* @example 1752482079
|
|
9362
|
+
*/
|
|
9363
|
+
endTimestamp?: number;
|
|
9354
9364
|
/**
|
|
9355
9365
|
* @description Name or identifier for the event e.g., "Motion Detected", "Sound Detected", etc.
|
|
9356
9366
|
* @example Motion Detected
|
|
9357
9367
|
*/
|
|
9358
9368
|
name?: string;
|
|
9369
|
+
/**
|
|
9370
|
+
* @description Start timestamp of the marker in seconds since epoch
|
|
9371
|
+
* @example 1752482068
|
|
9372
|
+
*/
|
|
9373
|
+
startTimestamp?: number;
|
|
9359
9374
|
/**
|
|
9360
9375
|
* @description Tags associated with the event for categorization
|
|
9361
9376
|
* @example [
|
|
@@ -9364,11 +9379,6 @@ export interface components {
|
|
|
9364
9379
|
* ]
|
|
9365
9380
|
*/
|
|
9366
9381
|
tags?: string[];
|
|
9367
|
-
/**
|
|
9368
|
-
* @description Timestamp of the event in seconds since epoch
|
|
9369
|
-
* @example 1752482070
|
|
9370
|
-
*/
|
|
9371
|
-
timestamp?: number;
|
|
9372
9382
|
};
|
|
9373
9383
|
"models.MarkerEventOption": {
|
|
9374
9384
|
createdAt?: number;
|