@otr-app/shared-backend-generated-client 2.3.217 → 2.3.218

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.
@@ -28,6 +28,7 @@ export interface UserDomain {
28
28
  firstname?: string;
29
29
  fullName?: string;
30
30
  gender?: string;
31
+ genderType?: UserDomain.GenderTypeEnum;
31
32
  ghostAccountCreationDateUtc?: string;
32
33
  hasLeftReview?: boolean;
33
34
  isEmailConfirmed?: boolean;
@@ -59,6 +60,12 @@ export interface UserDomain {
59
60
  userRegistrationDateUtc?: string;
60
61
  }
61
62
  export namespace UserDomain {
63
+ export type GenderTypeEnum = 'FEMALE' | 'MALE' | 'NOT_LISTED';
64
+ export const GenderTypeEnum = {
65
+ Female: 'FEMALE' as GenderTypeEnum,
66
+ Male: 'MALE' as GenderTypeEnum,
67
+ NotListed: 'NOT_LISTED' as GenderTypeEnum
68
+ };
62
69
  export type LawyerJobTitleEnum = 'ACCOUNTANT' | 'ATTORNEY' | 'ATTORNEY_ASSOCIATE' | 'ATTORNEY_COUNSEL' | 'ATTORNEY_MANAGING_PARTNER' | 'ATTORNEY_PARTNER' | 'ATTORNEY_STAFF' | 'CUSTOMER_SERVICE_REP' | 'LEGAL_ASSISTANT' | 'LEGAL_INTERN' | 'LEGAL_SECRETARY' | 'OTHER' | 'PARALEGAL';
63
70
  export const LawyerJobTitleEnum = {
64
71
  Accountant: 'ACCOUNTANT' as LawyerJobTitleEnum,
@@ -27,6 +27,7 @@ export interface UserDomainReq {
27
27
  emailAddress?: string;
28
28
  firstname?: string;
29
29
  gender?: string;
30
+ genderType?: UserDomainReq.GenderTypeEnum;
30
31
  ghostAccountCreationDateUtc?: string;
31
32
  hasLeftReview?: boolean;
32
33
  isEmailConfirmed?: boolean;
@@ -58,6 +59,12 @@ export interface UserDomainReq {
58
59
  userRegistrationDateUtc?: string;
59
60
  }
60
61
  export namespace UserDomainReq {
62
+ export type GenderTypeEnum = 'FEMALE' | 'MALE' | 'NOT_LISTED';
63
+ export const GenderTypeEnum = {
64
+ Female: 'FEMALE' as GenderTypeEnum,
65
+ Male: 'MALE' as GenderTypeEnum,
66
+ NotListed: 'NOT_LISTED' as GenderTypeEnum
67
+ };
61
68
  export type LawyerJobTitleEnum = 'ACCOUNTANT' | 'ATTORNEY' | 'ATTORNEY_ASSOCIATE' | 'ATTORNEY_COUNSEL' | 'ATTORNEY_MANAGING_PARTNER' | 'ATTORNEY_PARTNER' | 'ATTORNEY_STAFF' | 'CUSTOMER_SERVICE_REP' | 'LEGAL_ASSISTANT' | 'LEGAL_INTERN' | 'LEGAL_SECRETARY' | 'OTHER' | 'PARALEGAL';
62
69
  export const LawyerJobTitleEnum = {
63
70
  Accountant: 'ACCOUNTANT' as LawyerJobTitleEnum,
@@ -28,6 +28,7 @@ export interface UserDomainRes {
28
28
  firstname?: string;
29
29
  fullName?: string;
30
30
  gender?: string;
31
+ genderType?: UserDomainRes.GenderTypeEnum;
31
32
  ghostAccountCreationDateUtc?: string;
32
33
  hasLeftReview?: boolean;
33
34
  isEmailConfirmed?: boolean;
@@ -59,6 +60,12 @@ export interface UserDomainRes {
59
60
  userRegistrationDateUtc?: string;
60
61
  }
61
62
  export namespace UserDomainRes {
63
+ export type GenderTypeEnum = 'FEMALE' | 'MALE' | 'NOT_LISTED';
64
+ export const GenderTypeEnum = {
65
+ Female: 'FEMALE' as GenderTypeEnum,
66
+ Male: 'MALE' as GenderTypeEnum,
67
+ NotListed: 'NOT_LISTED' as GenderTypeEnum
68
+ };
62
69
  export type LawyerJobTitleEnum = 'ACCOUNTANT' | 'ATTORNEY' | 'ATTORNEY_ASSOCIATE' | 'ATTORNEY_COUNSEL' | 'ATTORNEY_MANAGING_PARTNER' | 'ATTORNEY_PARTNER' | 'ATTORNEY_STAFF' | 'CUSTOMER_SERVICE_REP' | 'LEGAL_ASSISTANT' | 'LEGAL_INTERN' | 'LEGAL_SECRETARY' | 'OTHER' | 'PARALEGAL';
63
70
  export const LawyerJobTitleEnum = {
64
71
  Accountant: 'ACCOUNTANT' as LawyerJobTitleEnum,
@@ -21,6 +21,7 @@ export interface UserDomain {
21
21
  "firstname"?: string;
22
22
  "fullName"?: string;
23
23
  "gender"?: string;
24
+ "genderType"?: UserDomain.GenderTypeEnum;
24
25
  "ghostAccountCreationDateUtc"?: string;
25
26
  "hasLeftReview"?: boolean;
26
27
  "isEmailConfirmed"?: boolean;
@@ -52,6 +53,11 @@ export interface UserDomain {
52
53
  "userRegistrationDateUtc"?: string;
53
54
  }
54
55
  export declare namespace UserDomain {
56
+ enum GenderTypeEnum {
57
+ FEMALE,
58
+ MALE,
59
+ NOTLISTED
60
+ }
55
61
  enum LawyerJobTitleEnum {
56
62
  ACCOUNTANT,
57
63
  ATTORNEY,
@@ -14,6 +14,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
14
14
  exports.UserDomain = void 0;
15
15
  var UserDomain;
16
16
  (function (UserDomain) {
17
+ var GenderTypeEnum;
18
+ (function (GenderTypeEnum) {
19
+ GenderTypeEnum[GenderTypeEnum["FEMALE"] = 'FEMALE'] = "FEMALE";
20
+ GenderTypeEnum[GenderTypeEnum["MALE"] = 'MALE'] = "MALE";
21
+ GenderTypeEnum[GenderTypeEnum["NOTLISTED"] = 'NOT_LISTED'] = "NOTLISTED";
22
+ })(GenderTypeEnum = UserDomain.GenderTypeEnum || (UserDomain.GenderTypeEnum = {}));
17
23
  var LawyerJobTitleEnum;
18
24
  (function (LawyerJobTitleEnum) {
19
25
  LawyerJobTitleEnum[LawyerJobTitleEnum["ACCOUNTANT"] = 'ACCOUNTANT'] = "ACCOUNTANT";
@@ -20,6 +20,7 @@ export interface UserDomainReq {
20
20
  "emailAddress"?: string;
21
21
  "firstname"?: string;
22
22
  "gender"?: string;
23
+ "genderType"?: UserDomainReq.GenderTypeEnum;
23
24
  "ghostAccountCreationDateUtc"?: string;
24
25
  "hasLeftReview"?: boolean;
25
26
  "isEmailConfirmed"?: boolean;
@@ -51,6 +52,11 @@ export interface UserDomainReq {
51
52
  "userRegistrationDateUtc"?: string;
52
53
  }
53
54
  export declare namespace UserDomainReq {
55
+ enum GenderTypeEnum {
56
+ FEMALE,
57
+ MALE,
58
+ NOTLISTED
59
+ }
54
60
  enum LawyerJobTitleEnum {
55
61
  ACCOUNTANT,
56
62
  ATTORNEY,
@@ -14,6 +14,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
14
14
  exports.UserDomainReq = void 0;
15
15
  var UserDomainReq;
16
16
  (function (UserDomainReq) {
17
+ var GenderTypeEnum;
18
+ (function (GenderTypeEnum) {
19
+ GenderTypeEnum[GenderTypeEnum["FEMALE"] = 'FEMALE'] = "FEMALE";
20
+ GenderTypeEnum[GenderTypeEnum["MALE"] = 'MALE'] = "MALE";
21
+ GenderTypeEnum[GenderTypeEnum["NOTLISTED"] = 'NOT_LISTED'] = "NOTLISTED";
22
+ })(GenderTypeEnum = UserDomainReq.GenderTypeEnum || (UserDomainReq.GenderTypeEnum = {}));
17
23
  var LawyerJobTitleEnum;
18
24
  (function (LawyerJobTitleEnum) {
19
25
  LawyerJobTitleEnum[LawyerJobTitleEnum["ACCOUNTANT"] = 'ACCOUNTANT'] = "ACCOUNTANT";
@@ -21,6 +21,7 @@ export interface UserDomainRes {
21
21
  "firstname"?: string;
22
22
  "fullName"?: string;
23
23
  "gender"?: string;
24
+ "genderType"?: UserDomainRes.GenderTypeEnum;
24
25
  "ghostAccountCreationDateUtc"?: string;
25
26
  "hasLeftReview"?: boolean;
26
27
  "isEmailConfirmed"?: boolean;
@@ -52,6 +53,11 @@ export interface UserDomainRes {
52
53
  "userRegistrationDateUtc"?: string;
53
54
  }
54
55
  export declare namespace UserDomainRes {
56
+ enum GenderTypeEnum {
57
+ FEMALE,
58
+ MALE,
59
+ NOTLISTED
60
+ }
55
61
  enum LawyerJobTitleEnum {
56
62
  ACCOUNTANT,
57
63
  ATTORNEY,
@@ -14,6 +14,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
14
14
  exports.UserDomainRes = void 0;
15
15
  var UserDomainRes;
16
16
  (function (UserDomainRes) {
17
+ var GenderTypeEnum;
18
+ (function (GenderTypeEnum) {
19
+ GenderTypeEnum[GenderTypeEnum["FEMALE"] = 'FEMALE'] = "FEMALE";
20
+ GenderTypeEnum[GenderTypeEnum["MALE"] = 'MALE'] = "MALE";
21
+ GenderTypeEnum[GenderTypeEnum["NOTLISTED"] = 'NOT_LISTED'] = "NOTLISTED";
22
+ })(GenderTypeEnum = UserDomainRes.GenderTypeEnum || (UserDomainRes.GenderTypeEnum = {}));
17
23
  var LawyerJobTitleEnum;
18
24
  (function (LawyerJobTitleEnum) {
19
25
  LawyerJobTitleEnum[LawyerJobTitleEnum["ACCOUNTANT"] = 'ACCOUNTANT'] = "ACCOUNTANT";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.3.217",
3
+ "version": "2.3.218",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"