@otr-app/shared-backend-generated-client 2.5.28 → 2.5.29

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.
@@ -16,6 +16,7 @@ export interface DashboardCaseUserModel {
16
16
  firstName?: string;
17
17
  fullName?: string;
18
18
  lastName?: string;
19
+ profileImageUrl?: string;
19
20
  userId?: number;
20
21
  }
21
22
 
@@ -14,5 +14,6 @@ export interface DashboardCaseUserModel {
14
14
  "firstName"?: string;
15
15
  "fullName"?: string;
16
16
  "lastName"?: string;
17
+ "profileImageUrl"?: string;
17
18
  "userId"?: number;
18
19
  }
@@ -39,6 +39,12 @@ export interface DashboardCaseUserModel {
39
39
  * @memberof DashboardCaseUserModel
40
40
  */
41
41
  lastName?: string;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof DashboardCaseUserModel
46
+ */
47
+ profileImageUrl?: string;
42
48
  /**
43
49
  *
44
50
  * @type {number}
@@ -24,6 +24,7 @@ export function DashboardCaseUserModelFromJSONTyped(json, ignoreDiscriminator) {
24
24
  'firstName': !exists(json, 'firstName') ? undefined : json['firstName'],
25
25
  'fullName': !exists(json, 'fullName') ? undefined : json['fullName'],
26
26
  'lastName': !exists(json, 'lastName') ? undefined : json['lastName'],
27
+ 'profileImageUrl': !exists(json, 'profileImageUrl') ? undefined : json['profileImageUrl'],
27
28
  'userId': !exists(json, 'userId') ? undefined : json['userId'],
28
29
  };
29
30
  }
@@ -39,6 +40,7 @@ export function DashboardCaseUserModelToJSON(value) {
39
40
  'firstName': value.firstName,
40
41
  'fullName': value.fullName,
41
42
  'lastName': value.lastName,
43
+ 'profileImageUrl': value.profileImageUrl,
42
44
  'userId': value.userId,
43
45
  };
44
46
  }
@@ -9763,6 +9763,7 @@ export interface components {
9763
9763
  firstName?: string;
9764
9764
  fullName?: string;
9765
9765
  lastName?: string;
9766
+ profileImageUrl?: string;
9766
9767
  /** Format: int64 */
9767
9768
  userId?: number;
9768
9769
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.5.28",
3
+ "version": "2.5.29",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"