@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
|
@@ -7156,13 +7156,12 @@ var AddRetroRemissionRequest = /** @class */ (function () {
|
|
|
7156
7156
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
7157
7157
|
*/
|
|
7158
7158
|
var PostRefundRetroRemission = /** @class */ (function () {
|
|
7159
|
-
function PostRefundRetroRemission(
|
|
7160
|
-
this.ccd_case_number = ccd_case_number;
|
|
7161
|
-
this.payment_reference = payment_reference;
|
|
7162
|
-
this.refund_reason = total_refund_amount;
|
|
7163
|
-
this.total_refund_amount = refund_amount;
|
|
7164
|
-
this.fees = fees;
|
|
7159
|
+
function PostRefundRetroRemission(contact_details, fees, payment_reference, refund_reason, total_refund_amount) {
|
|
7165
7160
|
this.contact_details = contact_details;
|
|
7161
|
+
this.fees = fees;
|
|
7162
|
+
this.payment_reference = payment_reference;
|
|
7163
|
+
this.refund_reason = refund_reason;
|
|
7164
|
+
this.total_refund_amount = total_refund_amount;
|
|
7166
7165
|
}
|
|
7167
7166
|
return PostRefundRetroRemission;
|
|
7168
7167
|
}());
|
|
@@ -8231,7 +8230,7 @@ var AddRemissionComponent = /** @class */ (function () {
|
|
|
8231
8230
|
volume: obj.volume,
|
|
8232
8231
|
refund_amount: obj.refund_amount }); }));
|
|
8233
8232
|
/** @type {?} */
|
|
8234
|
-
var requestBody = new PostRefundRetroRemission(this.
|
|
8233
|
+
var requestBody = new PostRefundRetroRemission(this.contactDetailsObj, this.fees, this.payment.reference, this.refundReason, this.totalRefundAmount);
|
|
8235
8234
|
this.paymentViewService.postRefundsReason(requestBody).subscribe((/**
|
|
8236
8235
|
* @param {?} response
|
|
8237
8236
|
* @return {?}
|