@hmcts/ccpay-web-component 5.0.2-beta44 → 5.0.2-beta45
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 -7
- 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 +9 -11
- package/esm5/lib/components/add-remission/add-remission.component.js +2 -2
- package/esm5/lib/interfaces/PostRefundRetroRemission.js +6 -7
- package/fesm2015/hmcts-ccpay-web-component.js +9 -11
- package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
- package/fesm5/hmcts-ccpay-web-component.js +6 -7
- package/fesm5/hmcts-ccpay-web-component.js.map +1 -1
- package/lib/interfaces/PostRefundRetroRemission.d.ts +1 -1
- package/package.json +1 -1
|
@@ -7053,13 +7053,12 @@
|
|
|
7053
7053
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
7054
7054
|
*/
|
|
7055
7055
|
var PostRefundRetroRemission = /** @class */ (function () {
|
|
7056
|
-
function PostRefundRetroRemission(
|
|
7057
|
-
this.ccd_case_number = ccd_case_number;
|
|
7058
|
-
this.payment_reference = payment_reference;
|
|
7059
|
-
this.refund_reason = total_refund_amount;
|
|
7060
|
-
this.total_refund_amount = refund_amount;
|
|
7061
|
-
this.fees = fees;
|
|
7056
|
+
function PostRefundRetroRemission(contact_details, fees, payment_reference, refund_reason, total_refund_amount) {
|
|
7062
7057
|
this.contact_details = contact_details;
|
|
7058
|
+
this.fees = fees;
|
|
7059
|
+
this.payment_reference = payment_reference;
|
|
7060
|
+
this.refund_reason = refund_reason;
|
|
7061
|
+
this.total_refund_amount = total_refund_amount;
|
|
7063
7062
|
}
|
|
7064
7063
|
return PostRefundRetroRemission;
|
|
7065
7064
|
}());
|
|
@@ -8092,7 +8091,7 @@
|
|
|
8092
8091
|
refund_amount: obj.refund_amount });
|
|
8093
8092
|
}));
|
|
8094
8093
|
/** @type {?} */
|
|
8095
|
-
var requestBody = new PostRefundRetroRemission(this.
|
|
8094
|
+
var requestBody = new PostRefundRetroRemission(this.contactDetailsObj, this.fees, this.payment.reference, this.refundReason, this.totalRefundAmount);
|
|
8096
8095
|
this.paymentViewService.postRefundsReason(requestBody).subscribe(( /**
|
|
8097
8096
|
* @param {?} response
|
|
8098
8097
|
* @return {?}
|