akeyless-types-commons 1.0.56 → 1.0.57
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 +16 -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">[];
|
|
@@ -124,6 +122,11 @@ export interface Car {
|
|
|
124
122
|
name: string;
|
|
125
123
|
userPhone: string;
|
|
126
124
|
userEmail?: string;
|
|
125
|
+
userAddress?: string;
|
|
126
|
+
userIdCard?: string;
|
|
127
|
+
userResidence?: string;
|
|
128
|
+
parking_place?: string;
|
|
129
|
+
vehicle_markers?: string;
|
|
127
130
|
camera_installation_details: TObject<string>;
|
|
128
131
|
status: UnitStatus;
|
|
129
132
|
warrantyExpire: firebase_timestamp | Timestamp;
|