@otr-app/shared-backend-generated-client 2.4.94 → 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
 
@@ -14,11 +14,8 @@ import { CasePaymentModel } from './casePaymentModel';
14
14
 
15
15
 
16
16
  export interface ListCostItemsForCustomerResponse {
17
- authorizedPayments?: Array<CasePaymentModel>;
18
17
  clientBaseCostInCents?: number;
19
18
  clientTotalCostInCents?: number;
20
- counterOfferRefundInCents?: number;
21
- expiredPayments?: Array<CasePaymentModel>;
22
19
  futurePayments?: Array<CasePaymentModel>;
23
20
  lineItems?: Array<LineItemModel>;
24
21
  totalRefCodeAdjustmentInCents?: number;
@@ -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
  }
@@ -11,11 +11,8 @@
11
11
  */
12
12
  import * as models from './models';
13
13
  export interface ListCostItemsForCustomerResponse {
14
- "authorizedPayments"?: Array<models.CasePaymentModel>;
15
14
  "clientBaseCostInCents"?: number;
16
15
  "clientTotalCostInCents"?: number;
17
- "counterOfferRefundInCents"?: number;
18
- "expiredPayments"?: Array<models.CasePaymentModel>;
19
16
  "futurePayments"?: Array<models.CasePaymentModel>;
20
17
  "lineItems"?: Array<models.LineItemModel>;
21
18
  "totalRefCodeAdjustmentInCents"?: number;
@@ -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
  }
@@ -16,12 +16,6 @@ import { CasePaymentModel, LineItemModel } from './';
16
16
  * @interface ListCostItemsForCustomerResponse
17
17
  */
18
18
  export interface ListCostItemsForCustomerResponse {
19
- /**
20
- *
21
- * @type {Array<CasePaymentModel>}
22
- * @memberof ListCostItemsForCustomerResponse
23
- */
24
- authorizedPayments?: Array<CasePaymentModel>;
25
19
  /**
26
20
  *
27
21
  * @type {number}
@@ -34,18 +28,6 @@ export interface ListCostItemsForCustomerResponse {
34
28
  * @memberof ListCostItemsForCustomerResponse
35
29
  */
36
30
  clientTotalCostInCents?: number;
37
- /**
38
- *
39
- * @type {number}
40
- * @memberof ListCostItemsForCustomerResponse
41
- */
42
- counterOfferRefundInCents?: number;
43
- /**
44
- *
45
- * @type {Array<CasePaymentModel>}
46
- * @memberof ListCostItemsForCustomerResponse
47
- */
48
- expiredPayments?: Array<CasePaymentModel>;
49
31
  /**
50
32
  *
51
33
  * @type {Array<CasePaymentModel>}
@@ -21,11 +21,8 @@ export function ListCostItemsForCustomerResponseFromJSONTyped(json, ignoreDiscri
21
21
  return json;
22
22
  }
23
23
  return {
24
- 'authorizedPayments': !exists(json, 'authorizedPayments') ? undefined : (json['authorizedPayments'].map(CasePaymentModelFromJSON)),
25
24
  'clientBaseCostInCents': !exists(json, 'clientBaseCostInCents') ? undefined : json['clientBaseCostInCents'],
26
25
  'clientTotalCostInCents': !exists(json, 'clientTotalCostInCents') ? undefined : json['clientTotalCostInCents'],
27
- 'counterOfferRefundInCents': !exists(json, 'counterOfferRefundInCents') ? undefined : json['counterOfferRefundInCents'],
28
- 'expiredPayments': !exists(json, 'expiredPayments') ? undefined : (json['expiredPayments'].map(CasePaymentModelFromJSON)),
29
26
  'futurePayments': !exists(json, 'futurePayments') ? undefined : (json['futurePayments'].map(CasePaymentModelFromJSON)),
30
27
  'lineItems': !exists(json, 'lineItems') ? undefined : (json['lineItems'].map(LineItemModelFromJSON)),
31
28
  'totalRefCodeAdjustmentInCents': !exists(json, 'totalRefCodeAdjustmentInCents') ? undefined : json['totalRefCodeAdjustmentInCents'],
@@ -39,11 +36,8 @@ export function ListCostItemsForCustomerResponseToJSON(value) {
39
36
  return null;
40
37
  }
41
38
  return {
42
- 'authorizedPayments': value.authorizedPayments === undefined ? undefined : (value.authorizedPayments.map(CasePaymentModelToJSON)),
43
39
  'clientBaseCostInCents': value.clientBaseCostInCents,
44
40
  'clientTotalCostInCents': value.clientTotalCostInCents,
45
- 'counterOfferRefundInCents': value.counterOfferRefundInCents,
46
- 'expiredPayments': value.expiredPayments === undefined ? undefined : (value.expiredPayments.map(CasePaymentModelToJSON)),
47
41
  'futurePayments': value.futurePayments === undefined ? undefined : (value.futurePayments.map(CasePaymentModelToJSON)),
48
42
  'lineItems': value.lineItems === undefined ? undefined : (value.lineItems.map(LineItemModelToJSON)),
49
43
  'totalRefCodeAdjustmentInCents': value.totalRefCodeAdjustmentInCents,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.4.94",
3
+ "version": "2.4.96",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"