@otr-app/shared-backend-generated-client 2.4.33 → 2.4.35

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.
@@ -14,9 +14,12 @@
14
14
  export interface ExistingAccountDetails {
15
15
  firstName?: string;
16
16
  ghostAccount?: boolean;
17
+ hasActiveCase?: boolean;
18
+ isPhoneVerified?: boolean;
17
19
  lastName?: string;
18
20
  obfuscatedEmailAddress?: string;
19
- phoneVerified?: boolean;
21
+ phoneNumber?: string;
22
+ profilePictureUrl?: string;
20
23
  userId?: number;
21
24
  }
22
25
 
@@ -12,8 +12,11 @@
12
12
  export interface ExistingAccountDetails {
13
13
  "firstName"?: string;
14
14
  "ghostAccount"?: boolean;
15
+ "hasActiveCase"?: boolean;
16
+ "isPhoneVerified"?: boolean;
15
17
  "lastName"?: string;
16
18
  "obfuscatedEmailAddress"?: string;
17
- "phoneVerified"?: boolean;
19
+ "phoneNumber"?: string;
20
+ "profilePictureUrl"?: string;
18
21
  "userId"?: number;
19
22
  }
@@ -27,6 +27,18 @@ export interface ExistingAccountDetails {
27
27
  * @memberof ExistingAccountDetails
28
28
  */
29
29
  ghostAccount?: boolean;
30
+ /**
31
+ *
32
+ * @type {boolean}
33
+ * @memberof ExistingAccountDetails
34
+ */
35
+ hasActiveCase?: boolean;
36
+ /**
37
+ *
38
+ * @type {boolean}
39
+ * @memberof ExistingAccountDetails
40
+ */
41
+ isPhoneVerified?: boolean;
30
42
  /**
31
43
  *
32
44
  * @type {string}
@@ -41,10 +53,16 @@ export interface ExistingAccountDetails {
41
53
  obfuscatedEmailAddress?: string;
42
54
  /**
43
55
  *
44
- * @type {boolean}
56
+ * @type {string}
57
+ * @memberof ExistingAccountDetails
58
+ */
59
+ phoneNumber?: string;
60
+ /**
61
+ *
62
+ * @type {string}
45
63
  * @memberof ExistingAccountDetails
46
64
  */
47
- phoneVerified?: boolean;
65
+ profilePictureUrl?: string;
48
66
  /**
49
67
  *
50
68
  * @type {number}
@@ -22,9 +22,12 @@ export function ExistingAccountDetailsFromJSONTyped(json, ignoreDiscriminator) {
22
22
  return {
23
23
  'firstName': !exists(json, 'firstName') ? undefined : json['firstName'],
24
24
  'ghostAccount': !exists(json, 'ghostAccount') ? undefined : json['ghostAccount'],
25
+ 'hasActiveCase': !exists(json, 'hasActiveCase') ? undefined : json['hasActiveCase'],
26
+ 'isPhoneVerified': !exists(json, 'isPhoneVerified') ? undefined : json['isPhoneVerified'],
25
27
  'lastName': !exists(json, 'lastName') ? undefined : json['lastName'],
26
28
  'obfuscatedEmailAddress': !exists(json, 'obfuscatedEmailAddress') ? undefined : json['obfuscatedEmailAddress'],
27
- 'phoneVerified': !exists(json, 'phoneVerified') ? undefined : json['phoneVerified'],
29
+ 'phoneNumber': !exists(json, 'phoneNumber') ? undefined : json['phoneNumber'],
30
+ 'profilePictureUrl': !exists(json, 'profilePictureUrl') ? undefined : json['profilePictureUrl'],
28
31
  'userId': !exists(json, 'userId') ? undefined : json['userId'],
29
32
  };
30
33
  }
@@ -38,9 +41,12 @@ export function ExistingAccountDetailsToJSON(value) {
38
41
  return {
39
42
  'firstName': value.firstName,
40
43
  'ghostAccount': value.ghostAccount,
44
+ 'hasActiveCase': value.hasActiveCase,
45
+ 'isPhoneVerified': value.isPhoneVerified,
41
46
  'lastName': value.lastName,
42
47
  'obfuscatedEmailAddress': value.obfuscatedEmailAddress,
43
- 'phoneVerified': value.phoneVerified,
48
+ 'phoneNumber': value.phoneNumber,
49
+ 'profilePictureUrl': value.profilePictureUrl,
44
50
  'userId': value.userId,
45
51
  };
46
52
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.4.33",
3
+ "version": "2.4.35",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"