@spytecgps/nova-orm 0.0.142 → 0.0.144

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.
@@ -102,6 +102,7 @@ export interface CreateUserAlertTimeWindowsParams {
102
102
  daysOfTheWeek: string;
103
103
  startTime: Date;
104
104
  endTime: Date;
105
+ label?: string;
105
106
  }
106
107
  export interface CreateDeviceAlertTimeWindowsParams {
107
108
  id?: number;
@@ -114,6 +115,7 @@ export interface CreateDeviceAlertTimeWindowsParams {
114
115
  endTime: Date;
115
116
  imei: string;
116
117
  filter?: any;
118
+ label?: string;
117
119
  }
118
120
  export interface UpdateUserAlertTimeWindowsParams {
119
121
  filters: {
@@ -124,6 +126,7 @@ export interface UpdateUserAlertTimeWindowsParams {
124
126
  daysOfTheWeek?: string;
125
127
  startTime?: Date;
126
128
  endTime?: Date;
129
+ label?: string;
127
130
  };
128
131
  }
129
132
  export interface UpdateDeviceAlertTimeWindowsParams {
@@ -136,6 +139,7 @@ export interface UpdateDeviceAlertTimeWindowsParams {
136
139
  startTime?: Date;
137
140
  endTime?: Date;
138
141
  filter?: any;
142
+ label?: string;
139
143
  };
140
144
  }
141
145
  export interface DeleteAlertTimeWindowsParams {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spytecgps/nova-orm",
3
- "version": "0.0.142",
3
+ "version": "0.0.144",
4
4
  "description": "ORM with PlanetScale",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",