akeyless-types-commons 1.0.57 → 1.0.58

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.
@@ -80,6 +80,7 @@ export interface Client {
80
80
  status?: ClientStatus;
81
81
  api_token?: string;
82
82
  key?: string;
83
+ email?: string;
83
84
  language?: LanguageOptions;
84
85
  installation_name?: string;
85
86
  installation_phone?: string;
@@ -162,6 +163,23 @@ export interface Car {
162
163
  link_token?: string;
163
164
  maker_icon?: string;
164
165
  }
166
+ export interface UnitExtra {
167
+ car_number: string;
168
+ "overspeed-alert"?: {
169
+ enabled: boolean;
170
+ updated: Timestamp;
171
+ value: number;
172
+ };
173
+ installation?: {
174
+ address?: string;
175
+ app: string;
176
+ lat?: number;
177
+ lng?: number;
178
+ };
179
+ call_center?: {
180
+ account_update_timestamp?: Timestamp;
181
+ };
182
+ }
165
183
  export interface UsersUnits {
166
184
  id?: string;
167
185
  carId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "akeyless-types-commons",
3
- "version": "1.0.57",
3
+ "version": "1.0.58",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "scripts": {