@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.
- package/dist/angular/model/getCaseResponse.ts +1 -0
- package/dist/typescript/model/GetCaseResponse.d.ts +1 -0
- package/dist/typescript-fetch/models/GetCaseResponse.d.ts +6 -0
- package/dist/typescript-fetch/models/GetCaseResponse.js +2 -0
- package/dist/typescript-open-api/otr-backend.d.ts +2 -0
- package/package.json +1 -1
|
@@ -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,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;
|