akeyless-types-commons 1.0.59 → 1.0.61
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/enums/features.d.ts
CHANGED
|
@@ -15,7 +15,8 @@ export declare enum FeaturesClient {
|
|
|
15
15
|
polygon_scheduler = "polygon_scheduler",
|
|
16
16
|
servision = "servision",
|
|
17
17
|
vibration_level_control = "vibration_level_control",
|
|
18
|
-
vibration_on_off = "vibration_on_off"
|
|
18
|
+
vibration_on_off = "vibration_on_off",
|
|
19
|
+
installation_confirmation_email = "installation_confirmation_email"
|
|
19
20
|
}
|
|
20
21
|
export declare enum FeaturesDashboard {
|
|
21
22
|
client_admin = "client_admin",
|
|
@@ -31,7 +32,8 @@ export declare enum FeaturesInstaller {
|
|
|
31
32
|
maintenance = "maintenance",
|
|
32
33
|
desktop_mode = "desktop_mode",
|
|
33
34
|
tests = "tests",
|
|
34
|
-
tools = "tools"
|
|
35
|
+
tools = "tools",
|
|
36
|
+
access_all_clients = "access_all_clients"
|
|
35
37
|
}
|
|
36
38
|
export declare enum FeaturesToolbox {
|
|
37
39
|
super_admin = "super_admin",
|
package/dist/enums/features.js
CHANGED
|
@@ -21,6 +21,7 @@ var FeaturesClient;
|
|
|
21
21
|
FeaturesClient["servision"] = "servision";
|
|
22
22
|
FeaturesClient["vibration_level_control"] = "vibration_level_control";
|
|
23
23
|
FeaturesClient["vibration_on_off"] = "vibration_on_off";
|
|
24
|
+
FeaturesClient["installation_confirmation_email"] = "installation_confirmation_email";
|
|
24
25
|
})(FeaturesClient || (exports.FeaturesClient = FeaturesClient = {}));
|
|
25
26
|
var FeaturesDashboard;
|
|
26
27
|
(function (FeaturesDashboard) {
|
|
@@ -39,5 +40,6 @@ var FeaturesInstaller;
|
|
|
39
40
|
FeaturesInstaller["desktop_mode"] = "desktop_mode";
|
|
40
41
|
FeaturesInstaller["tests"] = "tests";
|
|
41
42
|
FeaturesInstaller["tools"] = "tools";
|
|
43
|
+
FeaturesInstaller["access_all_clients"] = "access_all_clients";
|
|
42
44
|
})(FeaturesInstaller || (exports.FeaturesInstaller = FeaturesInstaller = {}));
|
|
43
45
|
//# sourceMappingURL=features.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"features.js","sourceRoot":"","sources":["../../src/enums/features.ts"],"names":[],"mappings":";;;AAAA,IAAY,aAEX;AAFD,WAAY,aAAa;IACrB,gDAA+B,CAAA;AACnC,CAAC,EAFW,aAAa,6BAAb,aAAa,QAExB;AAED,IAAY,
|
|
1
|
+
{"version":3,"file":"features.js","sourceRoot":"","sources":["../../src/enums/features.ts"],"names":[],"mappings":";;;AAAA,IAAY,aAEX;AAFD,WAAY,aAAa;IACrB,gDAA+B,CAAA;AACnC,CAAC,EAFW,aAAa,6BAAb,aAAa,QAExB;AAED,IAAY,cAgBX;AAhBD,WAAY,cAAc;IACtB,6BAAW,CAAA;IACX,uDAAqC,CAAA;IACrC,uCAAqB,CAAA;IACrB,mCAAiB,CAAA;IACjB,qDAAmC,CAAA;IACnC,uDAAqC,CAAA;IACrC,2CAAyB,CAAA;IACzB,uDAAqC,CAAA;IACrC,2DAAyC,CAAA;IACzC,qFAAmE,CAAA;IACnE,yDAAuC,CAAA;IACvC,yCAAuB,CAAA;IACvB,qEAAmD,CAAA;IACnD,uDAAqC,CAAA;IACrC,qFAAmE,CAAA;AACvE,CAAC,EAhBW,cAAc,8BAAd,cAAc,QAgBzB;AAED,IAAY,iBAMX;AAND,WAAY,iBAAiB;IACzB,kDAA6B,CAAA;IAC7B,8CAAyB,CAAA;IACzB,sDAAiC,CAAA;IACjC,sDAAiC,CAAA;IACjC,gDAA2B,CAAA;AAC/B,CAAC,EANW,iBAAiB,iCAAjB,iBAAiB,QAM5B;AAED,IAAY,iBASX;AATD,WAAY,iBAAiB;IACzB,0DAAqC,CAAA;IACrC,4CAAuB,CAAA;IACvB,4CAAuB,CAAA;IACvB,gDAA2B,CAAA;IAC3B,kDAA6B,CAAA;IAC7B,oCAAe,CAAA;IACf,oCAAe,CAAA;IACf,8DAAyC,CAAA;AAC7C,CAAC,EATW,iBAAiB,iCAAjB,iBAAiB,QAS5B"}
|
|
@@ -41,28 +41,30 @@ 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;
|
|
47
46
|
created: firebase_timestamp;
|
|
48
|
-
|
|
49
|
-
language: "en" | "ru" | "heb";
|
|
50
|
-
method: "sms" | "email";
|
|
51
|
-
os: "android" | "ios";
|
|
47
|
+
updated: firebase_timestamp;
|
|
52
48
|
is_agreement_signed?: boolean;
|
|
53
49
|
agreement_signed_datetime?: firebase_timestamp;
|
|
50
|
+
fcm_token?: string;
|
|
51
|
+
short_phone_number?: string;
|
|
54
52
|
long_phone_number?: string;
|
|
53
|
+
first_name?: string;
|
|
54
|
+
last_name?: string;
|
|
55
55
|
email?: string;
|
|
56
|
-
short_phone_number?: string;
|
|
57
56
|
password?: string;
|
|
58
|
-
success?: boolean;
|
|
59
57
|
validation_code?: string;
|
|
60
58
|
validation_token?: string;
|
|
61
|
-
disabled_events?: Record<string, Record<string, number[]>>;
|
|
62
59
|
features?: string[];
|
|
63
|
-
|
|
64
|
-
last_name?: string;
|
|
60
|
+
is_super_user?: boolean;
|
|
65
61
|
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";
|
|
66
68
|
}
|
|
67
69
|
export interface GoUser {
|
|
68
70
|
clients: Pick<Client, "features" | "id" | "name">[];
|