@hmcts/ccpay-web-component 5.0.1-beta162 → 5.0.1-beta163
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/bundles/hmcts-ccpay-web-component.umd.js +6 -3
- package/bundles/hmcts-ccpay-web-component.umd.js.map +1 -1
- package/bundles/hmcts-ccpay-web-component.umd.min.js +1 -1
- package/bundles/hmcts-ccpay-web-component.umd.min.js.map +1 -1
- package/esm2015/lib/components/add-remission/add-remission.component.js +2 -2
- package/esm2015/lib/interfaces/PostRefundRetroRemission.js +16 -4
- package/esm5/lib/components/add-remission/add-remission.component.js +2 -2
- package/esm5/lib/interfaces/PostRefundRetroRemission.js +12 -3
- package/fesm2015/hmcts-ccpay-web-component.js +10 -4
- package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
- package/fesm5/hmcts-ccpay-web-component.js +6 -3
- package/fesm5/hmcts-ccpay-web-component.js.map +1 -1
- package/lib/interfaces/PostRefundRetroRemission.d.ts +4 -1
- package/package.json +1 -1
|
@@ -7110,10 +7110,13 @@
|
|
|
7110
7110
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
7111
7111
|
*/
|
|
7112
7112
|
var PostRefundRetroRemission = /** @class */ (function () {
|
|
7113
|
-
function PostRefundRetroRemission(payment_reference, refund_reason,
|
|
7113
|
+
function PostRefundRetroRemission(ccd_case_number, payment_reference, refund_reason, refund_amount, fees, contact_details) {
|
|
7114
|
+
this.ccd_case_number = ccd_case_number;
|
|
7114
7115
|
this.payment_reference = payment_reference;
|
|
7115
7116
|
this.refund_reason = refund_reason;
|
|
7116
|
-
this.
|
|
7117
|
+
this.refund_amount = refund_amount;
|
|
7118
|
+
this.fees = fees;
|
|
7119
|
+
this.contact_details = contact_details;
|
|
7117
7120
|
}
|
|
7118
7121
|
return PostRefundRetroRemission;
|
|
7119
7122
|
}());
|
|
@@ -8097,7 +8100,7 @@
|
|
|
8097
8100
|
* @return {?}
|
|
8098
8101
|
*/function (value) { return value.selected === true; }));
|
|
8099
8102
|
/** @type {?} */
|
|
8100
|
-
var requestBody = new PostRefundRetroRemission(this.payment.reference, this.refundReason, this.contactDetailsObj);
|
|
8103
|
+
var requestBody = new PostRefundRetroRemission(this.ccdCaseNumber, this.payment.reference, this.refundReason, this.totalRefundAmount, this.fees, this.contactDetailsObj);
|
|
8101
8104
|
this.paymentViewService.postRefundsReason(requestBody).subscribe(( /**
|
|
8102
8105
|
* @param {?} response
|
|
8103
8106
|
* @return {?}
|