@otr-app/shared-backend-generated-client 2.5.149 → 2.5.150

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.
@@ -31,6 +31,7 @@ export interface LawfirmInboxMessageDomain {
31
31
  customerLastName?: string;
32
32
  hasFlagMessage?: boolean;
33
33
  hasStarMessage?: boolean;
34
+ hasUnreadMessages?: boolean;
34
35
  lawfirmCaseDecisionStatus?: LawfirmInboxMessageDomain.LawfirmCaseDecisionStatusEnum;
35
36
  lawfirmReceiptDateUtc?: string;
36
37
  messageBody?: string;
@@ -29,6 +29,7 @@ export interface LawfirmInboxMessageDomain {
29
29
  "customerLastName"?: string;
30
30
  "hasFlagMessage"?: boolean;
31
31
  "hasStarMessage"?: boolean;
32
+ "hasUnreadMessages"?: boolean;
32
33
  "lawfirmCaseDecisionStatus"?: LawfirmInboxMessageDomain.LawfirmCaseDecisionStatusEnum;
33
34
  "lawfirmReceiptDateUtc"?: string;
34
35
  "messageBody"?: string;
@@ -124,6 +124,12 @@ export interface LawfirmInboxMessageDomain {
124
124
  * @memberof LawfirmInboxMessageDomain
125
125
  */
126
126
  hasStarMessage?: boolean;
127
+ /**
128
+ *
129
+ * @type {boolean}
130
+ * @memberof LawfirmInboxMessageDomain
131
+ */
132
+ hasUnreadMessages?: boolean;
127
133
  /**
128
134
  *
129
135
  * @type {string}
@@ -39,6 +39,7 @@ export function LawfirmInboxMessageDomainFromJSONTyped(json, ignoreDiscriminator
39
39
  'customerLastName': !exists(json, 'customerLastName') ? undefined : json['customerLastName'],
40
40
  'hasFlagMessage': !exists(json, 'hasFlagMessage') ? undefined : json['hasFlagMessage'],
41
41
  'hasStarMessage': !exists(json, 'hasStarMessage') ? undefined : json['hasStarMessage'],
42
+ 'hasUnreadMessages': !exists(json, 'hasUnreadMessages') ? undefined : json['hasUnreadMessages'],
42
43
  'lawfirmCaseDecisionStatus': !exists(json, 'lawfirmCaseDecisionStatus') ? undefined : json['lawfirmCaseDecisionStatus'],
43
44
  'lawfirmReceiptDateUtc': !exists(json, 'lawfirmReceiptDateUtc') ? undefined : (new Date(json['lawfirmReceiptDateUtc'])),
44
45
  'messageBody': !exists(json, 'messageBody') ? undefined : json['messageBody'],
@@ -73,6 +74,7 @@ export function LawfirmInboxMessageDomainToJSON(value) {
73
74
  'customerLastName': value.customerLastName,
74
75
  'hasFlagMessage': value.hasFlagMessage,
75
76
  'hasStarMessage': value.hasStarMessage,
77
+ 'hasUnreadMessages': value.hasUnreadMessages,
76
78
  'lawfirmCaseDecisionStatus': value.lawfirmCaseDecisionStatus,
77
79
  'lawfirmReceiptDateUtc': value.lawfirmReceiptDateUtc === undefined ? undefined : (value.lawfirmReceiptDateUtc.toISOString()),
78
80
  'messageBody': value.messageBody,
@@ -12477,6 +12477,7 @@ export interface components {
12477
12477
  customerLastName?: string;
12478
12478
  hasFlagMessage?: boolean;
12479
12479
  hasStarMessage?: boolean;
12480
+ hasUnreadMessages?: boolean;
12480
12481
  /** @enum {string} */
12481
12482
  lawfirmCaseDecisionStatus?: PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryLawfirmCaseDecisionStatus;
12482
12483
  /** Format: date-time */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.5.149",
3
+ "version": "2.5.150",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"