@otr-app/shared-backend-generated-client 2.5.133 → 2.5.134

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 @@ import { CaseModel } from './caseModel';
16
16
  export interface GetCaseResponse {
17
17
  caseCounter?: CaseCounterOfferModel;
18
18
  chanceOfSuccess?: number;
19
+ hasUnreadNotifications?: boolean;
19
20
  projectedInsuranceCostInCents?: number;
20
21
  theCase?: CaseModel;
21
22
  }
@@ -13,6 +13,7 @@ import * as models from './models';
13
13
  export interface GetCaseResponse {
14
14
  "caseCounter"?: models.CaseCounterOfferModel;
15
15
  "chanceOfSuccess"?: number;
16
+ "hasUnreadNotifications"?: boolean;
16
17
  "projectedInsuranceCostInCents"?: number;
17
18
  "theCase"?: models.CaseModel;
18
19
  }
@@ -28,6 +28,12 @@ export interface GetCaseResponse {
28
28
  * @memberof GetCaseResponse
29
29
  */
30
30
  chanceOfSuccess?: number;
31
+ /**
32
+ *
33
+ * @type {boolean}
34
+ * @memberof GetCaseResponse
35
+ */
36
+ hasUnreadNotifications?: boolean;
31
37
  /**
32
38
  *
33
39
  * @type {number}
@@ -23,6 +23,7 @@ export function GetCaseResponseFromJSONTyped(json, ignoreDiscriminator) {
23
23
  return {
24
24
  'caseCounter': !exists(json, 'caseCounter') ? undefined : CaseCounterOfferModelFromJSON(json['caseCounter']),
25
25
  'chanceOfSuccess': !exists(json, 'chanceOfSuccess') ? undefined : json['chanceOfSuccess'],
26
+ 'hasUnreadNotifications': !exists(json, 'hasUnreadNotifications') ? undefined : json['hasUnreadNotifications'],
26
27
  'projectedInsuranceCostInCents': !exists(json, 'projectedInsuranceCostInCents') ? undefined : json['projectedInsuranceCostInCents'],
27
28
  'theCase': !exists(json, 'theCase') ? undefined : CaseModelFromJSON(json['theCase']),
28
29
  };
@@ -37,6 +38,7 @@ export function GetCaseResponseToJSON(value) {
37
38
  return {
38
39
  'caseCounter': CaseCounterOfferModelToJSON(value.caseCounter),
39
40
  'chanceOfSuccess': value.chanceOfSuccess,
41
+ 'hasUnreadNotifications': value.hasUnreadNotifications,
40
42
  'projectedInsuranceCostInCents': value.projectedInsuranceCostInCents,
41
43
  'theCase': CaseModelToJSON(value.theCase),
42
44
  };
@@ -10810,6 +10810,7 @@ export interface components {
10810
10810
  caseCounter?: components["schemas"]["CaseCounterOfferModel"];
10811
10811
  /** Format: int32 */
10812
10812
  chanceOfSuccess?: number;
10813
+ hasUnreadNotifications?: boolean;
10813
10814
  /** Format: int32 */
10814
10815
  projectedInsuranceCostInCents?: number;
10815
10816
  theCase?: components["schemas"]["CaseModel"];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.5.133",
3
+ "version": "2.5.134",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"