@uug-ai/models 1.4.33 → 1.4.35
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 +11 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -16081,7 +16081,10 @@ export interface components {
|
|
|
16081
16081
|
/** @description Additional metadata about the error, such as timestamps and request IDs */
|
|
16082
16082
|
metadata?: components["schemas"]["api.Metadata"];
|
|
16083
16083
|
};
|
|
16084
|
-
"api.GetMarkersRequest":
|
|
16084
|
+
"api.GetMarkersRequest": {
|
|
16085
|
+
filter?: components["schemas"]["api.MarkerFilter"];
|
|
16086
|
+
pagination?: components["schemas"]["api.CursorPagination"];
|
|
16087
|
+
};
|
|
16085
16088
|
"api.GetMarkersResponse": {
|
|
16086
16089
|
markers?: components["schemas"]["models.Marker"][];
|
|
16087
16090
|
};
|
|
@@ -16353,6 +16356,7 @@ export interface components {
|
|
|
16353
16356
|
metadata?: components["schemas"]["api.Metadata"];
|
|
16354
16357
|
};
|
|
16355
16358
|
"api.GetTimelineMarkersRequest": {
|
|
16359
|
+
disableGrouping?: boolean;
|
|
16356
16360
|
filter?: components["schemas"]["api.MarkerFilter"];
|
|
16357
16361
|
};
|
|
16358
16362
|
"api.GetTimelineMarkersResponse": {
|
|
@@ -16384,6 +16388,7 @@ export interface components {
|
|
|
16384
16388
|
metadata?: components["schemas"]["api.Metadata"];
|
|
16385
16389
|
};
|
|
16386
16390
|
"api.GetTimelineMediaRequest": {
|
|
16391
|
+
disableGrouping?: boolean;
|
|
16387
16392
|
filter?: components["schemas"]["api.MediaFilter"];
|
|
16388
16393
|
};
|
|
16389
16394
|
"api.GetTimelineMediaResponse": {
|
|
@@ -16509,10 +16514,14 @@ export interface components {
|
|
|
16509
16514
|
"api.MarkerFilter": {
|
|
16510
16515
|
categories?: string[];
|
|
16511
16516
|
deviceKeys?: string[];
|
|
16517
|
+
events?: string[];
|
|
16512
16518
|
markerIds?: string[];
|
|
16513
16519
|
name?: string;
|
|
16514
16520
|
names?: string[];
|
|
16521
|
+
regions?: components["schemas"]["models.Region"][];
|
|
16515
16522
|
sort?: string;
|
|
16523
|
+
starred?: boolean;
|
|
16524
|
+
tags?: string[];
|
|
16516
16525
|
timeRanges?: components["schemas"]["models.TimeRange"][];
|
|
16517
16526
|
};
|
|
16518
16527
|
"api.MarkerTagFilter": {
|
|
@@ -19680,6 +19689,7 @@ export declare namespace api {
|
|
|
19680
19689
|
type GetMarkerTagOptionsResponse = components['schemas']['api.GetMarkerTagOptionsResponse'];
|
|
19681
19690
|
type GetMarkerTagOptionsSuccessResponse = components['schemas']['api.GetMarkerTagOptionsSuccessResponse'];
|
|
19682
19691
|
type GetMarkersErrorResponse = components['schemas']['api.GetMarkersErrorResponse'];
|
|
19692
|
+
type GetMarkersRequest = components['schemas']['api.GetMarkersRequest'];
|
|
19683
19693
|
type GetMarkersResponse = components['schemas']['api.GetMarkersResponse'];
|
|
19684
19694
|
type GetMarkersSuccessResponse = components['schemas']['api.GetMarkersSuccessResponse'];
|
|
19685
19695
|
type GetMediaByIdErrorResponse = components['schemas']['api.GetMediaByIdErrorResponse'];
|