@otr-app/shared-backend-generated-client 2.5.135 → 2.5.136
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.
- package/dist/angular/model/dashboardCaseModel.ts +2 -0
- package/dist/typescript/model/DashboardCaseModel.d.ts +2 -0
- package/dist/typescript-fetch/models/DashboardCaseModel.d.ts +12 -0
- package/dist/typescript-fetch/models/DashboardCaseModel.js +4 -0
- package/dist/typescript-open-api/otr-backend.d.ts +3 -0
- package/package.json +1 -1
|
@@ -36,8 +36,10 @@ export interface DashboardCaseModel {
|
|
|
36
36
|
engagementLetter?: EngagementLetterModel;
|
|
37
37
|
hasLeftLawyerReview?: boolean;
|
|
38
38
|
lastActivityDateUtc?: string;
|
|
39
|
+
lastMessageFromDefendant?: boolean;
|
|
39
40
|
lastMessageProfilePictureUrl?: string;
|
|
40
41
|
lastMessageType?: DashboardCaseModel.LastMessageTypeEnum;
|
|
42
|
+
lastMessageUserId?: number;
|
|
41
43
|
lawfirmId?: number;
|
|
42
44
|
lawfirmName?: string;
|
|
43
45
|
lawfirmProfilePictureUrl?: string;
|
|
@@ -25,8 +25,10 @@ export interface DashboardCaseModel {
|
|
|
25
25
|
"engagementLetter"?: models.EngagementLetterModel;
|
|
26
26
|
"hasLeftLawyerReview"?: boolean;
|
|
27
27
|
"lastActivityDateUtc"?: string;
|
|
28
|
+
"lastMessageFromDefendant"?: boolean;
|
|
28
29
|
"lastMessageProfilePictureUrl"?: string;
|
|
29
30
|
"lastMessageType"?: DashboardCaseModel.LastMessageTypeEnum;
|
|
31
|
+
"lastMessageUserId"?: number;
|
|
30
32
|
"lawfirmId"?: number;
|
|
31
33
|
"lawfirmName"?: string;
|
|
32
34
|
"lawfirmProfilePictureUrl"?: string;
|
|
@@ -100,6 +100,12 @@ export interface DashboardCaseModel {
|
|
|
100
100
|
* @memberof DashboardCaseModel
|
|
101
101
|
*/
|
|
102
102
|
lastActivityDateUtc?: Date;
|
|
103
|
+
/**
|
|
104
|
+
*
|
|
105
|
+
* @type {boolean}
|
|
106
|
+
* @memberof DashboardCaseModel
|
|
107
|
+
*/
|
|
108
|
+
lastMessageFromDefendant?: boolean;
|
|
103
109
|
/**
|
|
104
110
|
*
|
|
105
111
|
* @type {string}
|
|
@@ -112,6 +118,12 @@ export interface DashboardCaseModel {
|
|
|
112
118
|
* @memberof DashboardCaseModel
|
|
113
119
|
*/
|
|
114
120
|
lastMessageType?: DashboardCaseModelLastMessageTypeEnum;
|
|
121
|
+
/**
|
|
122
|
+
*
|
|
123
|
+
* @type {number}
|
|
124
|
+
* @memberof DashboardCaseModel
|
|
125
|
+
*/
|
|
126
|
+
lastMessageUserId?: number;
|
|
115
127
|
/**
|
|
116
128
|
*
|
|
117
129
|
* @type {number}
|
|
@@ -35,8 +35,10 @@ 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
|
+
'lastMessageFromDefendant': !exists(json, 'lastMessageFromDefendant') ? undefined : json['lastMessageFromDefendant'],
|
|
38
39
|
'lastMessageProfilePictureUrl': !exists(json, 'lastMessageProfilePictureUrl') ? undefined : json['lastMessageProfilePictureUrl'],
|
|
39
40
|
'lastMessageType': !exists(json, 'lastMessageType') ? undefined : json['lastMessageType'],
|
|
41
|
+
'lastMessageUserId': !exists(json, 'lastMessageUserId') ? undefined : json['lastMessageUserId'],
|
|
40
42
|
'lawfirmId': !exists(json, 'lawfirmId') ? undefined : json['lawfirmId'],
|
|
41
43
|
'lawfirmName': !exists(json, 'lawfirmName') ? undefined : json['lawfirmName'],
|
|
42
44
|
'lawfirmProfilePictureUrl': !exists(json, 'lawfirmProfilePictureUrl') ? undefined : json['lawfirmProfilePictureUrl'],
|
|
@@ -75,8 +77,10 @@ export function DashboardCaseModelToJSON(value) {
|
|
|
75
77
|
'engagementLetter': EngagementLetterModelToJSON(value.engagementLetter),
|
|
76
78
|
'hasLeftLawyerReview': value.hasLeftLawyerReview,
|
|
77
79
|
'lastActivityDateUtc': value.lastActivityDateUtc === undefined ? undefined : (value.lastActivityDateUtc.toISOString()),
|
|
80
|
+
'lastMessageFromDefendant': value.lastMessageFromDefendant,
|
|
78
81
|
'lastMessageProfilePictureUrl': value.lastMessageProfilePictureUrl,
|
|
79
82
|
'lastMessageType': value.lastMessageType,
|
|
83
|
+
'lastMessageUserId': value.lastMessageUserId,
|
|
80
84
|
'lawfirmId': value.lawfirmId,
|
|
81
85
|
'lawfirmName': value.lawfirmName,
|
|
82
86
|
'lawfirmProfilePictureUrl': value.lawfirmProfilePictureUrl,
|
|
@@ -9895,10 +9895,13 @@ export interface components {
|
|
|
9895
9895
|
hasLeftLawyerReview?: boolean;
|
|
9896
9896
|
/** Format: date-time */
|
|
9897
9897
|
lastActivityDateUtc?: string;
|
|
9898
|
+
lastMessageFromDefendant?: boolean;
|
|
9898
9899
|
lastMessageProfilePictureUrl?: string;
|
|
9899
9900
|
/** @enum {string} */
|
|
9900
9901
|
lastMessageType?: DashboardCaseModelLastMessageType;
|
|
9901
9902
|
/** Format: int64 */
|
|
9903
|
+
lastMessageUserId?: number;
|
|
9904
|
+
/** Format: int64 */
|
|
9902
9905
|
lawfirmId?: number;
|
|
9903
9906
|
lawfirmName?: string;
|
|
9904
9907
|
lawfirmProfilePictureUrl?: string;
|