@otr-app/shared-backend-generated-client 2.5.161 → 2.5.162

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.
@@ -15,6 +15,7 @@ import { CaseModel } from './caseModel';
15
15
 
16
16
  export interface GetCaseResponse {
17
17
  caseCounter?: CaseCounterOfferModel;
18
+ caseRating?: number;
18
19
  chanceOfSuccess?: number;
19
20
  hasUnreadNotifications?: boolean;
20
21
  projectedInsuranceCostInCents?: number;
@@ -12,6 +12,7 @@
12
12
  import * as models from './models';
13
13
  export interface GetCaseResponse {
14
14
  "caseCounter"?: models.CaseCounterOfferModel;
15
+ "caseRating"?: number;
15
16
  "chanceOfSuccess"?: number;
16
17
  "hasUnreadNotifications"?: boolean;
17
18
  "projectedInsuranceCostInCents"?: number;
@@ -22,6 +22,12 @@ export interface GetCaseResponse {
22
22
  * @memberof GetCaseResponse
23
23
  */
24
24
  caseCounter?: CaseCounterOfferModel;
25
+ /**
26
+ *
27
+ * @type {number}
28
+ * @memberof GetCaseResponse
29
+ */
30
+ caseRating?: number;
25
31
  /**
26
32
  *
27
33
  * @type {number}
@@ -22,6 +22,7 @@ export function GetCaseResponseFromJSONTyped(json, ignoreDiscriminator) {
22
22
  }
23
23
  return {
24
24
  'caseCounter': !exists(json, 'caseCounter') ? undefined : CaseCounterOfferModelFromJSON(json['caseCounter']),
25
+ 'caseRating': !exists(json, 'caseRating') ? undefined : json['caseRating'],
25
26
  'chanceOfSuccess': !exists(json, 'chanceOfSuccess') ? undefined : json['chanceOfSuccess'],
26
27
  'hasUnreadNotifications': !exists(json, 'hasUnreadNotifications') ? undefined : json['hasUnreadNotifications'],
27
28
  'projectedInsuranceCostInCents': !exists(json, 'projectedInsuranceCostInCents') ? undefined : json['projectedInsuranceCostInCents'],
@@ -37,6 +38,7 @@ export function GetCaseResponseToJSON(value) {
37
38
  }
38
39
  return {
39
40
  'caseCounter': CaseCounterOfferModelToJSON(value.caseCounter),
41
+ 'caseRating': value.caseRating,
40
42
  'chanceOfSuccess': value.chanceOfSuccess,
41
43
  'hasUnreadNotifications': value.hasUnreadNotifications,
42
44
  'projectedInsuranceCostInCents': value.projectedInsuranceCostInCents,
@@ -10940,6 +10940,8 @@ export interface components {
10940
10940
  /** GetCaseResponse */
10941
10941
  GetCaseResponse: {
10942
10942
  caseCounter?: components["schemas"]["CaseCounterOfferModel"];
10943
+ /** Format: double */
10944
+ caseRating?: number;
10943
10945
  /** Format: int32 */
10944
10946
  chanceOfSuccess?: number;
10945
10947
  hasUnreadNotifications?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.5.161",
3
+ "version": "2.5.162",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"