akeyless-types-commons 1.0.48 → 1.0.51

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.
@@ -156,6 +156,12 @@ export interface Car {
156
156
  link_token?: string;
157
157
  maker_icon?: string;
158
158
  }
159
+ export interface UsersUnits {
160
+ id?: string;
161
+ carId: string;
162
+ phone: string;
163
+ role: "admin" | "user" | "installer" | "guest";
164
+ }
159
165
  export interface LastLocationCar {
160
166
  car_number: string;
161
167
  latitude: number;
@@ -265,6 +271,7 @@ export interface ErmStates {
265
271
  battery_disconnected?: number;
266
272
  }
267
273
  export type ReportMetaDataType = "string" | "car_number" | "phone" | "date" | "time" | "datetime" | "number" | "email" | "boolean" | "geo" | "duration";
274
+ export type ReportParameterDataType = ReportMetaDataType | "select" | "multi_select";
268
275
  export interface ReportMetaHeader {
269
276
  name: string;
270
277
  type: ReportMetaDataType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "akeyless-types-commons",
3
- "version": "1.0.48",
3
+ "version": "1.0.51",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "scripts": {