akeyless-types-commons 1.0.10 → 1.0.12
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.
- package/dist/interfaces/global.d.ts +14 -1
- package/package.json +1 -1
|
@@ -120,10 +120,12 @@ export interface Car {
|
|
|
120
120
|
color: string;
|
|
121
121
|
commandOption: string;
|
|
122
122
|
chassisNumber: string;
|
|
123
|
-
subEnforcmentUser: TObject<string |
|
|
123
|
+
subEnforcmentUser: TObject<string | any[] | null>;
|
|
124
124
|
peripherals: Peripheral[];
|
|
125
125
|
icon?: string;
|
|
126
126
|
vin?: string;
|
|
127
|
+
features?: string[];
|
|
128
|
+
deactivated?: boolean;
|
|
127
129
|
}
|
|
128
130
|
export interface LastLocationCar {
|
|
129
131
|
car_number: string;
|
|
@@ -155,6 +157,17 @@ export interface CarState {
|
|
|
155
157
|
update?: firebase_timestamp | Timestamp;
|
|
156
158
|
updated?: firebase_timestamp | Timestamp;
|
|
157
159
|
vin?: number;
|
|
160
|
+
disarmed?: number;
|
|
161
|
+
disarm_code?: string;
|
|
162
|
+
evacuator?: number;
|
|
163
|
+
is_ce?: number;
|
|
164
|
+
is_ab?: number;
|
|
165
|
+
is_abs?: number;
|
|
166
|
+
is_tpms?: number;
|
|
167
|
+
battery_disconnected?: number;
|
|
168
|
+
charge_percents?: number;
|
|
169
|
+
is_charging?: number;
|
|
170
|
+
cut?: number;
|
|
158
171
|
}
|
|
159
172
|
export interface CanbusParameter {
|
|
160
173
|
desc?: string | null;
|