akeyless-types-commons 1.0.3 → 1.0.5

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.
@@ -11,6 +11,7 @@ export interface NxUser {
11
11
  first_name?: string;
12
12
  last_name?: string;
13
13
  phone_number?: string;
14
+ email?: string;
14
15
  status?: string;
15
16
  features?: string[];
16
17
  site?: string;
@@ -120,6 +121,21 @@ export interface LastLocationCar {
120
121
  ign?: number;
121
122
  direction?: number;
122
123
  }
124
+ export interface CarStatus {
125
+ car_number?: string;
126
+ client?: string;
127
+ engine?: number;
128
+ engine_updated?: firebase_timestamp | Timestamp;
129
+ ign?: number;
130
+ is_online?: number;
131
+ last_offline?: firebase_timestamp | Timestamp;
132
+ last_online?: firebase_timestamp | Timestamp;
133
+ server?: string;
134
+ sites?: string[];
135
+ update?: firebase_timestamp | Timestamp;
136
+ updated?: firebase_timestamp | Timestamp;
137
+ vin?: number;
138
+ }
123
139
  export interface CanbusParameter {
124
140
  desc?: string | null;
125
141
  id: number | string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "akeyless-types-commons",
3
- "version": "1.0.3",
3
+ "version": "1.0.5",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "scripts": {