akeyless-types-commons 1.0.56 → 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.
- package/dist/interfaces/global.d.ts +34 -13
- package/package.json +1 -1
|
@@ -41,30 +41,28 @@ export interface NxUser {
|
|
|
41
41
|
last_login?: firebase_timestamp;
|
|
42
42
|
}
|
|
43
43
|
export interface MobileAppUser {
|
|
44
|
-
id
|
|
44
|
+
id: string;
|
|
45
45
|
uid: string;
|
|
46
|
+
app_version: string;
|
|
46
47
|
created: firebase_timestamp;
|
|
47
|
-
|
|
48
|
+
fcm_token: string;
|
|
49
|
+
language: "en" | "ru" | "heb";
|
|
50
|
+
method: "sms" | "email";
|
|
51
|
+
os: "android" | "ios";
|
|
48
52
|
is_agreement_signed?: boolean;
|
|
49
53
|
agreement_signed_datetime?: firebase_timestamp;
|
|
50
|
-
fcm_token?: string;
|
|
51
|
-
short_phone_number?: string;
|
|
52
54
|
long_phone_number?: string;
|
|
53
|
-
first_name?: string;
|
|
54
|
-
last_name?: string;
|
|
55
55
|
email?: string;
|
|
56
|
+
short_phone_number?: string;
|
|
56
57
|
password?: string;
|
|
58
|
+
success?: boolean;
|
|
57
59
|
validation_code?: string;
|
|
58
60
|
validation_token?: string;
|
|
61
|
+
disabled_events?: Record<string, Record<string, number[]>>;
|
|
59
62
|
features?: string[];
|
|
60
|
-
|
|
63
|
+
first_name?: string;
|
|
64
|
+
last_name?: string;
|
|
61
65
|
app?: string;
|
|
62
|
-
disabled_events?: Record<string, Record<string, number[]>>;
|
|
63
|
-
success?: boolean;
|
|
64
|
-
app_version: string;
|
|
65
|
-
language: "en" | "ru" | "heb";
|
|
66
|
-
method: "sms" | "email";
|
|
67
|
-
os: "android" | "ios";
|
|
68
66
|
}
|
|
69
67
|
export interface GoUser {
|
|
70
68
|
clients: Pick<Client, "features" | "id" | "name">[];
|
|
@@ -82,6 +80,7 @@ export interface Client {
|
|
|
82
80
|
status?: ClientStatus;
|
|
83
81
|
api_token?: string;
|
|
84
82
|
key?: string;
|
|
83
|
+
email?: string;
|
|
85
84
|
language?: LanguageOptions;
|
|
86
85
|
installation_name?: string;
|
|
87
86
|
installation_phone?: string;
|
|
@@ -124,6 +123,11 @@ export interface Car {
|
|
|
124
123
|
name: string;
|
|
125
124
|
userPhone: string;
|
|
126
125
|
userEmail?: string;
|
|
126
|
+
userAddress?: string;
|
|
127
|
+
userIdCard?: string;
|
|
128
|
+
userResidence?: string;
|
|
129
|
+
parking_place?: string;
|
|
130
|
+
vehicle_markers?: string;
|
|
127
131
|
camera_installation_details: TObject<string>;
|
|
128
132
|
status: UnitStatus;
|
|
129
133
|
warrantyExpire: firebase_timestamp | Timestamp;
|
|
@@ -159,6 +163,23 @@ export interface Car {
|
|
|
159
163
|
link_token?: string;
|
|
160
164
|
maker_icon?: string;
|
|
161
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
|
+
}
|
|
162
183
|
export interface UsersUnits {
|
|
163
184
|
id?: string;
|
|
164
185
|
carId: string;
|