evo360-types 1.3.98 → 1.3.99
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.
|
@@ -18,6 +18,10 @@ export interface IUser extends IUserSpecialRoles, IFireDoc {
|
|
|
18
18
|
tenantRef?: FirestoreDocumentReference | null;
|
|
19
19
|
tenants?: string[];
|
|
20
20
|
sid?: null | string;
|
|
21
|
+
web_app_cfg?: Record<string, any>;
|
|
22
|
+
android_app_cfg?: Record<string, any>;
|
|
23
|
+
ios_app_cfg?: Record<string, any>;
|
|
24
|
+
[key: string]: unknown;
|
|
21
25
|
}
|
|
22
26
|
export interface ILogin {
|
|
23
27
|
id: string;
|
|
@@ -21,6 +21,10 @@ export interface IUser extends IUserSpecialRoles, IFireDoc {
|
|
|
21
21
|
tenantRef?: FirestoreDocumentReference | null;
|
|
22
22
|
tenants?: string[];
|
|
23
23
|
sid?: null | string;
|
|
24
|
+
web_app_cfg?: Record<string, any>;
|
|
25
|
+
android_app_cfg?: Record<string, any>;
|
|
26
|
+
ios_app_cfg?: Record<string, any>;
|
|
27
|
+
[key: string]: unknown; // index signature
|
|
24
28
|
}
|
|
25
29
|
|
|
26
30
|
//AuthTypes
|
|
@@ -102,14 +102,6 @@ export interface IProfessional extends IProfile {
|
|
|
102
102
|
[key: string]: unknown; // index signature
|
|
103
103
|
}
|
|
104
104
|
|
|
105
|
-
// export interface IPatientCounters {
|
|
106
|
-
// active: number;
|
|
107
|
-
// inactive: number;
|
|
108
|
-
// draft: number;
|
|
109
|
-
// deleted: number;
|
|
110
|
-
// total: number;
|
|
111
|
-
// }
|
|
112
|
-
|
|
113
105
|
// Patient status
|
|
114
106
|
export type PatientStatus = "active" | "inactive" | "draft" | "anonymized";
|
|
115
107
|
export enum IPatientStatus {
|