@otr-app/shared-backend-generated-client 2.5.131 → 2.5.132

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.
@@ -36,6 +36,7 @@ export interface DashboardCaseModel {
36
36
  engagementLetter?: EngagementLetterModel;
37
37
  hasLeftLawyerReview?: boolean;
38
38
  lastActivityDateUtc?: string;
39
+ lastMessageProfilePictureUrl?: string;
39
40
  lastMessageType?: DashboardCaseModel.LastMessageTypeEnum;
40
41
  lawfirmId?: number;
41
42
  lawfirmName?: string;
@@ -25,6 +25,7 @@ export interface DashboardCaseModel {
25
25
  "engagementLetter"?: models.EngagementLetterModel;
26
26
  "hasLeftLawyerReview"?: boolean;
27
27
  "lastActivityDateUtc"?: string;
28
+ "lastMessageProfilePictureUrl"?: string;
28
29
  "lastMessageType"?: DashboardCaseModel.LastMessageTypeEnum;
29
30
  "lawfirmId"?: number;
30
31
  "lawfirmName"?: string;
@@ -100,6 +100,12 @@ export interface DashboardCaseModel {
100
100
  * @memberof DashboardCaseModel
101
101
  */
102
102
  lastActivityDateUtc?: Date;
103
+ /**
104
+ *
105
+ * @type {string}
106
+ * @memberof DashboardCaseModel
107
+ */
108
+ lastMessageProfilePictureUrl?: string;
103
109
  /**
104
110
  *
105
111
  * @type {string}
@@ -35,6 +35,7 @@ export function DashboardCaseModelFromJSONTyped(json, ignoreDiscriminator) {
35
35
  'engagementLetter': !exists(json, 'engagementLetter') ? undefined : EngagementLetterModelFromJSON(json['engagementLetter']),
36
36
  'hasLeftLawyerReview': !exists(json, 'hasLeftLawyerReview') ? undefined : json['hasLeftLawyerReview'],
37
37
  'lastActivityDateUtc': !exists(json, 'lastActivityDateUtc') ? undefined : (new Date(json['lastActivityDateUtc'])),
38
+ 'lastMessageProfilePictureUrl': !exists(json, 'lastMessageProfilePictureUrl') ? undefined : json['lastMessageProfilePictureUrl'],
38
39
  'lastMessageType': !exists(json, 'lastMessageType') ? undefined : json['lastMessageType'],
39
40
  'lawfirmId': !exists(json, 'lawfirmId') ? undefined : json['lawfirmId'],
40
41
  'lawfirmName': !exists(json, 'lawfirmName') ? undefined : json['lawfirmName'],
@@ -74,6 +75,7 @@ export function DashboardCaseModelToJSON(value) {
74
75
  'engagementLetter': EngagementLetterModelToJSON(value.engagementLetter),
75
76
  'hasLeftLawyerReview': value.hasLeftLawyerReview,
76
77
  'lastActivityDateUtc': value.lastActivityDateUtc === undefined ? undefined : (value.lastActivityDateUtc.toISOString()),
78
+ 'lastMessageProfilePictureUrl': value.lastMessageProfilePictureUrl,
77
79
  'lastMessageType': value.lastMessageType,
78
80
  'lawfirmId': value.lawfirmId,
79
81
  'lawfirmName': value.lawfirmName,
@@ -9895,6 +9895,7 @@ export interface components {
9895
9895
  hasLeftLawyerReview?: boolean;
9896
9896
  /** Format: date-time */
9897
9897
  lastActivityDateUtc?: string;
9898
+ lastMessageProfilePictureUrl?: string;
9898
9899
  /** @enum {string} */
9899
9900
  lastMessageType?: DashboardCaseModelLastMessageType;
9900
9901
  /** Format: int64 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.5.131",
3
+ "version": "2.5.132",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"