@otr-app/shared-backend-generated-client 2.2.168 → 2.2.170
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.
|
@@ -20,6 +20,7 @@ export interface FindMatchingUser {
|
|
|
20
20
|
"isTestUser"?: boolean;
|
|
21
21
|
"lastname"?: string;
|
|
22
22
|
"loginProvider"?: FindMatchingUser.LoginProviderEnum;
|
|
23
|
+
"profilePictureUrl"?: string;
|
|
23
24
|
"roles"?: Array<models.UserRoleDomain>;
|
|
24
25
|
"unsubscribed"?: boolean;
|
|
25
26
|
"userId"?: number;
|
|
@@ -26,6 +26,7 @@ export interface LawyerModel {
|
|
|
26
26
|
"otherJobTitle"?: string;
|
|
27
27
|
"phoneNumbers"?: Array<models.PhoneNumberDomain>;
|
|
28
28
|
"profilePicture"?: string;
|
|
29
|
+
"roleTypes"?: Array<LawyerModel.RoleTypesEnum>;
|
|
29
30
|
"userId"?: number;
|
|
30
31
|
}
|
|
31
32
|
export declare namespace LawyerModel {
|
|
@@ -44,4 +45,12 @@ export declare namespace LawyerModel {
|
|
|
44
45
|
OTHER,
|
|
45
46
|
PARALEGAL
|
|
46
47
|
}
|
|
48
|
+
enum RoleTypesEnum {
|
|
49
|
+
ADMIN,
|
|
50
|
+
DEFENDANT,
|
|
51
|
+
LAWFIRMADMIN,
|
|
52
|
+
LAWYER,
|
|
53
|
+
PARTNER,
|
|
54
|
+
UNKNOWN
|
|
55
|
+
}
|
|
47
56
|
}
|
|
@@ -30,4 +30,13 @@ var LawyerModel;
|
|
|
30
30
|
JobTitleEnum[JobTitleEnum["OTHER"] = 'OTHER'] = "OTHER";
|
|
31
31
|
JobTitleEnum[JobTitleEnum["PARALEGAL"] = 'PARALEGAL'] = "PARALEGAL";
|
|
32
32
|
})(JobTitleEnum = LawyerModel.JobTitleEnum || (LawyerModel.JobTitleEnum = {}));
|
|
33
|
+
var RoleTypesEnum;
|
|
34
|
+
(function (RoleTypesEnum) {
|
|
35
|
+
RoleTypesEnum[RoleTypesEnum["ADMIN"] = 'ADMIN'] = "ADMIN";
|
|
36
|
+
RoleTypesEnum[RoleTypesEnum["DEFENDANT"] = 'DEFENDANT'] = "DEFENDANT";
|
|
37
|
+
RoleTypesEnum[RoleTypesEnum["LAWFIRMADMIN"] = 'LAWFIRM_ADMIN'] = "LAWFIRMADMIN";
|
|
38
|
+
RoleTypesEnum[RoleTypesEnum["LAWYER"] = 'LAWYER'] = "LAWYER";
|
|
39
|
+
RoleTypesEnum[RoleTypesEnum["PARTNER"] = 'PARTNER'] = "PARTNER";
|
|
40
|
+
RoleTypesEnum[RoleTypesEnum["UNKNOWN"] = 'UNKNOWN'] = "UNKNOWN";
|
|
41
|
+
})(RoleTypesEnum = LawyerModel.RoleTypesEnum || (LawyerModel.RoleTypesEnum = {}));
|
|
33
42
|
})(LawyerModel = exports.LawyerModel || (exports.LawyerModel = {}));
|