@otr-app/shared-backend-generated-client 2.4.95 → 2.4.96

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.
@@ -21,6 +21,7 @@ export interface GenerateCounterOfferCasePaymentsResponse {
21
21
  expiredPayments?: Array<CasePaymentModel>;
22
22
  futurePayments?: Array<CasePaymentModel>;
23
23
  lineItems?: Array<LineItemModel>;
24
+ paymentPlanFeeReallocated?: number;
24
25
  totalRefCodeAdjustmentInCents?: number;
25
26
  }
26
27
 
@@ -18,5 +18,6 @@ export interface GenerateCounterOfferCasePaymentsResponse {
18
18
  "expiredPayments"?: Array<models.CasePaymentModel>;
19
19
  "futurePayments"?: Array<models.CasePaymentModel>;
20
20
  "lineItems"?: Array<models.LineItemModel>;
21
+ "paymentPlanFeeReallocated"?: number;
21
22
  "totalRefCodeAdjustmentInCents"?: number;
22
23
  }
@@ -58,6 +58,12 @@ export interface GenerateCounterOfferCasePaymentsResponse {
58
58
  * @memberof GenerateCounterOfferCasePaymentsResponse
59
59
  */
60
60
  lineItems?: Array<LineItemModel>;
61
+ /**
62
+ *
63
+ * @type {number}
64
+ * @memberof GenerateCounterOfferCasePaymentsResponse
65
+ */
66
+ paymentPlanFeeReallocated?: number;
61
67
  /**
62
68
  *
63
69
  * @type {number}
@@ -28,6 +28,7 @@ export function GenerateCounterOfferCasePaymentsResponseFromJSONTyped(json, igno
28
28
  'expiredPayments': !exists(json, 'expiredPayments') ? undefined : (json['expiredPayments'].map(CasePaymentModelFromJSON)),
29
29
  'futurePayments': !exists(json, 'futurePayments') ? undefined : (json['futurePayments'].map(CasePaymentModelFromJSON)),
30
30
  'lineItems': !exists(json, 'lineItems') ? undefined : (json['lineItems'].map(LineItemModelFromJSON)),
31
+ 'paymentPlanFeeReallocated': !exists(json, 'paymentPlanFeeReallocated') ? undefined : json['paymentPlanFeeReallocated'],
31
32
  'totalRefCodeAdjustmentInCents': !exists(json, 'totalRefCodeAdjustmentInCents') ? undefined : json['totalRefCodeAdjustmentInCents'],
32
33
  };
33
34
  }
@@ -46,6 +47,7 @@ export function GenerateCounterOfferCasePaymentsResponseToJSON(value) {
46
47
  'expiredPayments': value.expiredPayments === undefined ? undefined : (value.expiredPayments.map(CasePaymentModelToJSON)),
47
48
  'futurePayments': value.futurePayments === undefined ? undefined : (value.futurePayments.map(CasePaymentModelToJSON)),
48
49
  'lineItems': value.lineItems === undefined ? undefined : (value.lineItems.map(LineItemModelToJSON)),
50
+ 'paymentPlanFeeReallocated': value.paymentPlanFeeReallocated,
49
51
  'totalRefCodeAdjustmentInCents': value.totalRefCodeAdjustmentInCents,
50
52
  };
51
53
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.4.95",
3
+ "version": "2.4.96",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"