@spytecgps/nova-orm 0.0.141 → 0.0.143
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.
|
@@ -47,12 +47,14 @@ export interface GetUserAlertConfigurationsParams {
|
|
|
47
47
|
}
|
|
48
48
|
export interface GetUserAlertTimeWindowsParams {
|
|
49
49
|
filters: {
|
|
50
|
+
configId?: number;
|
|
50
51
|
userId?: string;
|
|
51
52
|
clientId?: number;
|
|
52
53
|
};
|
|
53
54
|
}
|
|
54
55
|
export interface GetDeviceAlertTimeWindowsParams {
|
|
55
56
|
filters: {
|
|
57
|
+
configId?: number;
|
|
56
58
|
imei?: string;
|
|
57
59
|
clientId?: number;
|
|
58
60
|
userId?: string;
|
|
@@ -100,6 +102,7 @@ export interface CreateUserAlertTimeWindowsParams {
|
|
|
100
102
|
daysOfTheWeek: string;
|
|
101
103
|
startTime: Date;
|
|
102
104
|
endTime: Date;
|
|
105
|
+
label?: string;
|
|
103
106
|
}
|
|
104
107
|
export interface CreateDeviceAlertTimeWindowsParams {
|
|
105
108
|
id?: number;
|
|
@@ -112,6 +115,7 @@ export interface CreateDeviceAlertTimeWindowsParams {
|
|
|
112
115
|
endTime: Date;
|
|
113
116
|
imei: string;
|
|
114
117
|
filter?: any;
|
|
118
|
+
label?: string;
|
|
115
119
|
}
|
|
116
120
|
export interface UpdateUserAlertTimeWindowsParams {
|
|
117
121
|
filters: {
|