akeyless-types-commons 1.0.20 → 1.0.22

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.
@@ -40,6 +40,24 @@ export interface NxUser {
40
40
  updated?: firebase_timestamp;
41
41
  last_login?: firebase_timestamp;
42
42
  }
43
+ export interface MobileAppUser {
44
+ id: string;
45
+ agreementSignedDatetime: firebase_timestamp;
46
+ appVersion: string;
47
+ created: firebase_timestamp;
48
+ fcmToken: string;
49
+ isAgreementSigned: boolean;
50
+ language: "en" | "ru" | "heb" | (string & {});
51
+ longPhoneNumber: string;
52
+ method: "sms" | "email" | (string & {});
53
+ os: "android" | "ios" | (string & {});
54
+ password: string;
55
+ shortPhoneNumber: string;
56
+ success: boolean;
57
+ uid: string;
58
+ validationCode: string;
59
+ validationToken: string;
60
+ }
43
61
  export interface Installer {
44
62
  id?: string;
45
63
  fullName?: string;
@@ -175,6 +193,7 @@ export interface CanbusParameter {
175
193
  desc?: string | null;
176
194
  id: number | string;
177
195
  value: number;
196
+ timestamp?: firebase_timestamp | Timestamp;
178
197
  }
179
198
  export interface EventFromDevice {
180
199
  event_id: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "akeyless-types-commons",
3
- "version": "1.0.20",
3
+ "version": "1.0.22",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "scripts": {