akeyless-types-commons 1.0.4 → 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.
- package/dist/interfaces/global.d.ts +15 -0
- package/package.json +1 -1
|
@@ -121,6 +121,21 @@ export interface LastLocationCar {
|
|
|
121
121
|
ign?: number;
|
|
122
122
|
direction?: number;
|
|
123
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
|
+
}
|
|
124
139
|
export interface CanbusParameter {
|
|
125
140
|
desc?: string | null;
|
|
126
141
|
id: number | string;
|