akeyless-types-commons 1.0.10 → 1.0.11

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.
@@ -124,6 +124,7 @@ export interface Car {
124
124
  peripherals: Peripheral[];
125
125
  icon?: string;
126
126
  vin?: string;
127
+ features?: string[];
127
128
  }
128
129
  export interface LastLocationCar {
129
130
  car_number: string;
@@ -155,6 +156,17 @@ export interface CarState {
155
156
  update?: firebase_timestamp | Timestamp;
156
157
  updated?: firebase_timestamp | Timestamp;
157
158
  vin?: number;
159
+ disarmed?: number;
160
+ disarm_code?: string;
161
+ evacuator?: number;
162
+ is_ce?: number;
163
+ is_ab?: number;
164
+ is_abs?: number;
165
+ is_tpms?: number;
166
+ battery_disconnected?: number;
167
+ charge_percents?: number;
168
+ is_charging?: number;
169
+ cut?: number;
158
170
  }
159
171
  export interface CanbusParameter {
160
172
  desc?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "akeyless-types-commons",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "scripts": {