@uug-ai/models 1.0.12 → 1.0.13
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 +7 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -1500,7 +1500,12 @@ export interface components {
|
|
|
1500
1500
|
/** @description Additional metadata about the error, such as timestamps and request IDs */
|
|
1501
1501
|
metaData?: components["schemas"]["api.Metadata"];
|
|
1502
1502
|
};
|
|
1503
|
-
"models.GetMediaByDayAndDeviceRequest":
|
|
1503
|
+
"models.GetMediaByDayAndDeviceRequest": {
|
|
1504
|
+
/** @description Day in YYYY-MM-DD format */
|
|
1505
|
+
day?: string;
|
|
1506
|
+
/** @description Device key to filter media by device */
|
|
1507
|
+
deviceKey?: string;
|
|
1508
|
+
};
|
|
1504
1509
|
"models.GetMediaByDayAndDeviceResponse": {
|
|
1505
1510
|
device?: components["schemas"]["models.Device"];
|
|
1506
1511
|
media?: components["schemas"]["models.Media"][];
|
|
@@ -1745,6 +1750,7 @@ export declare namespace models {
|
|
|
1745
1750
|
type FeaturePermissions = components['schemas']['models.FeaturePermissions'];
|
|
1746
1751
|
type FloorPlan = components['schemas']['models.FloorPlan'];
|
|
1747
1752
|
type GetMediaByDayAndDeviceErrorResponse = components['schemas']['models.GetMediaByDayAndDeviceErrorResponse'];
|
|
1753
|
+
type GetMediaByDayAndDeviceRequest = components['schemas']['models.GetMediaByDayAndDeviceRequest'];
|
|
1748
1754
|
type GetMediaByDayAndDeviceResponse = components['schemas']['models.GetMediaByDayAndDeviceResponse'];
|
|
1749
1755
|
type GetMediaByDayAndDeviceSuccessResponse = components['schemas']['models.GetMediaByDayAndDeviceSuccessResponse'];
|
|
1750
1756
|
type IO = components['schemas']['models.IO'];
|