@hmcts/ccpay-web-component 5.0.5-beta09 → 5.0.5-beta13
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 +2221 -929
- 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/hmcts-ccpay-web-component.js +33 -31
- package/esm2015/lib/components/add-remission/add-remission.component.js +697 -144
- package/esm2015/lib/components/case-transactions/case-transactions.component.js +31 -25
- package/esm2015/lib/components/contact-details/contact-details.component.js +447 -0
- package/esm2015/lib/components/fee-summary/fee-summary.component.js +21 -54
- package/esm2015/lib/components/payment-view/payment-view.component.js +187 -164
- package/esm2015/lib/components/process-refund/process-refund.component.js +49 -28
- package/esm2015/lib/components/refund-list/refund-list.component.js +3 -3
- package/esm2015/lib/components/refund-status/refund-status.component.js +211 -36
- package/esm2015/lib/components/reports/reports.component.js +2 -13
- package/esm2015/lib/components/service-request/service-request.component.js +237 -152
- package/esm2015/lib/components/table/table.component.js +24 -9
- package/esm2015/lib/components/unprocessed-payments/unprocessed-payments.component.js +1 -17
- package/esm2015/lib/interfaces/IFee.js +13 -1
- package/esm2015/lib/interfaces/IPayment.js +7 -1
- package/esm2015/lib/interfaces/IPutNotificationRequest.js +25 -0
- package/esm2015/lib/interfaces/IRefundContactDetails.js +25 -0
- package/esm2015/lib/interfaces/IRefundFee.js +21 -0
- package/esm2015/lib/interfaces/IRefundList.js +7 -1
- package/esm2015/lib/interfaces/IRefundsNotifications.js +21 -0
- package/esm2015/lib/interfaces/IRemission.js +7 -1
- package/esm2015/lib/interfaces/IResubmitRefundRequest.js +10 -2
- package/esm2015/lib/interfaces/PostIssueRefundRetroRemission.js +6 -2
- package/esm2015/lib/interfaces/PostRefundRetroRemission.js +20 -2
- package/esm2015/lib/payment-lib.component.js +11 -21
- package/esm2015/lib/payment-lib.module.js +3 -1
- package/esm2015/lib/payment-lib.service.js +16 -1
- package/esm2015/lib/services/notification/notification.service.js +85 -0
- package/esm2015/lib/services/payment-view/payment-view.service.js +1 -20
- package/esm2015/lib/services/refunds/refunds.service.js +10 -1
- package/esm2015/lib/services/shared/httpclient/webcomponent.http.client.js +1 -1
- package/esm5/hmcts-ccpay-web-component.js +33 -31
- package/esm5/lib/components/add-remission/add-remission.component.js +819 -149
- package/esm5/lib/components/case-transactions/case-transactions.component.js +31 -25
- package/esm5/lib/components/contact-details/contact-details.component.js +472 -0
- package/esm5/lib/components/fee-summary/fee-summary.component.js +21 -54
- package/esm5/lib/components/payment-view/payment-view.component.js +213 -185
- package/esm5/lib/components/process-refund/process-refund.component.js +52 -78
- package/esm5/lib/components/refund-list/refund-list.component.js +3 -3
- package/esm5/lib/components/refund-status/refund-status.component.js +247 -34
- package/esm5/lib/components/reports/reports.component.js +2 -13
- package/esm5/lib/components/service-request/service-request.component.js +278 -182
- package/esm5/lib/components/table/table.component.js +27 -9
- package/esm5/lib/components/unprocessed-payments/unprocessed-payments.component.js +1 -17
- package/esm5/lib/interfaces/IFee.js +13 -1
- package/esm5/lib/interfaces/IPayment.js +7 -1
- package/esm5/lib/interfaces/IPutNotificationRequest.js +23 -0
- package/esm5/lib/interfaces/IRefundContactDetails.js +25 -0
- package/esm5/lib/interfaces/IRefundFee.js +21 -0
- package/esm5/lib/interfaces/IRefundList.js +7 -1
- package/esm5/lib/interfaces/IRefundsNotifications.js +21 -0
- package/esm5/lib/interfaces/IRemission.js +7 -1
- package/esm5/lib/interfaces/IResubmitRefundRequest.js +8 -2
- package/esm5/lib/interfaces/PostIssueRefundRetroRemission.js +5 -2
- package/esm5/lib/interfaces/PostRefundRetroRemission.js +16 -2
- package/esm5/lib/payment-lib.component.js +9 -15
- package/esm5/lib/payment-lib.module.js +3 -1
- package/esm5/lib/payment-lib.service.js +23 -1
- package/esm5/lib/services/notification/notification.service.js +89 -0
- package/esm5/lib/services/payment-view/payment-view.service.js +1 -29
- package/esm5/lib/services/refunds/refunds.service.js +16 -1
- package/esm5/lib/services/shared/httpclient/webcomponent.http.client.js +1 -1
- package/fesm2015/hmcts-ccpay-web-component.js +1857 -682
- package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
- package/fesm5/hmcts-ccpay-web-component.js +2263 -935
- package/fesm5/hmcts-ccpay-web-component.js.map +1 -1
- package/hmcts-ccpay-web-component.d.ts +32 -30
- package/hmcts-ccpay-web-component.metadata.json +1 -1
- package/lib/components/add-remission/add-remission.component.d.ts +45 -5
- package/lib/components/case-transactions/case-transactions.component.d.ts +2 -3
- package/lib/components/contact-details/contact-details.component.d.ts +49 -0
- package/lib/components/fee-summary/fee-summary.component.d.ts +0 -2
- package/lib/components/payment-view/payment-view.component.d.ts +23 -15
- package/lib/components/process-refund/process-refund.component.d.ts +6 -1
- package/lib/components/refund-status/refund-status.component.d.ts +34 -8
- package/lib/components/service-request/service-request.component.d.ts +28 -11
- package/lib/components/table/table.component.d.ts +1 -0
- package/lib/components/unprocessed-payments/unprocessed-payments.component.d.ts +0 -4
- package/lib/interfaces/IFee.d.ts +6 -0
- package/lib/interfaces/IPayment.d.ts +3 -0
- package/lib/interfaces/IPutNotificationRequest.d.ts +6 -0
- package/lib/interfaces/IRefundContactDetails.d.ts +9 -0
- package/lib/interfaces/IRefundFee.d.ts +7 -0
- package/lib/interfaces/IRefundList.d.ts +4 -0
- package/lib/interfaces/IRefundsNotifications.d.ts +16 -0
- package/lib/interfaces/IRemission.d.ts +3 -0
- package/lib/interfaces/IResubmitRefundRequest.d.ts +5 -1
- package/lib/interfaces/PostIssueRefundRetroRemission.d.ts +3 -1
- package/lib/interfaces/PostRefundRetroRemission.d.ts +7 -1
- package/lib/payment-lib.component.d.ts +2 -5
- package/lib/payment-lib.service.d.ts +3 -0
- package/lib/services/notification/notification.service.d.ts +15 -0
- package/lib/services/payment-view/payment-view.service.d.ts +0 -2
- package/lib/services/refunds/refunds.service.d.ts +2 -0
- package/package.json +5 -1
- package/esm2015/lib/interfaces/IPaymentFailure.js +0 -33
- package/esm5/lib/interfaces/IPaymentFailure.js +0 -33
- package/lib/interfaces/IPaymentFailure.d.ts +0 -13
|
@@ -1,5 +1,9 @@
|
|
|
1
|
+
import { IFee } from "./IFee";
|
|
2
|
+
import { IRefundContactDetails } from "./IRefundContactDetails";
|
|
1
3
|
export declare class IResubmitRefundRequest {
|
|
2
4
|
refund_reason: string;
|
|
3
5
|
amount: number;
|
|
4
|
-
|
|
6
|
+
contact_details: IRefundContactDetails;
|
|
7
|
+
refund_fees: IFee[];
|
|
8
|
+
constructor(refund_reason: string, amount: number, contact_details: any, refund_fees: any[]);
|
|
5
9
|
}
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
import { IRefundContactDetails } from './IRefundContactDetails';
|
|
1
2
|
export declare class PostIssueRefundRetroRemission {
|
|
2
3
|
remissionReference: string;
|
|
3
|
-
|
|
4
|
+
contact_details: IRefundContactDetails;
|
|
5
|
+
constructor(remissionReference: string, contactDeatils: any);
|
|
4
6
|
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
import { IRefundContactDetails } from "./IRefundContactDetails";
|
|
1
2
|
export declare class PostRefundRetroRemission {
|
|
3
|
+
ccd_case_number: string;
|
|
2
4
|
payment_reference: string;
|
|
3
5
|
refund_reason: string;
|
|
4
|
-
|
|
6
|
+
total_refund_amount: any;
|
|
7
|
+
fees: any[];
|
|
8
|
+
is_over_payment: boolean;
|
|
9
|
+
contact_details: IRefundContactDetails;
|
|
10
|
+
constructor(contact_details: any, fees: any[], payment_reference: string, refund_reason: string, total_refund_amount: any, is_over_payment: string);
|
|
5
11
|
}
|
|
@@ -10,6 +10,7 @@ export declare class PaymentLibComponent implements OnInit {
|
|
|
10
10
|
API_ROOT: string;
|
|
11
11
|
BULKSCAN_API_ROOT: string;
|
|
12
12
|
REFUNDS_API_ROOT: string;
|
|
13
|
+
NOTIFICATION_API_ROOT: string;
|
|
13
14
|
CARDPAYMENTRETURNURL: string;
|
|
14
15
|
CCD_CASE_NUMBER: string;
|
|
15
16
|
EXC_REFERENCE: string;
|
|
@@ -25,9 +26,6 @@ export declare class PaymentLibComponent implements OnInit {
|
|
|
25
26
|
ISSFENABLE: boolean;
|
|
26
27
|
ISTURNOFF: boolean;
|
|
27
28
|
CASETYPE: string;
|
|
28
|
-
ISOLDPCIPALOFF: boolean;
|
|
29
|
-
ISNEWPCIPALOFF: boolean;
|
|
30
|
-
ISPAYMENTSTATUSENABLED: boolean;
|
|
31
29
|
rootUrl: boolean;
|
|
32
30
|
REFUNDLIST: string;
|
|
33
31
|
USERID: string;
|
|
@@ -40,12 +38,11 @@ export declare class PaymentLibComponent implements OnInit {
|
|
|
40
38
|
paymentGroupReference: string;
|
|
41
39
|
paymentReference: string;
|
|
42
40
|
refundReference: string;
|
|
41
|
+
isFromPayBubble: boolean;
|
|
43
42
|
refundlistsource: any;
|
|
44
43
|
viewName: string;
|
|
45
44
|
isTurnOff: boolean;
|
|
46
45
|
caseType: string;
|
|
47
|
-
isOldPcipalOff: boolean;
|
|
48
|
-
isNewPcipalOff: boolean;
|
|
49
46
|
unProcessedPayment: IBSPayments;
|
|
50
47
|
isRefundStatusView: boolean;
|
|
51
48
|
isRedirectFromCaseTransactionPage: string;
|
|
@@ -2,6 +2,7 @@ export declare class PaymentLibService {
|
|
|
2
2
|
API_ROOT: string;
|
|
3
3
|
BULKSCAN_API_ROOT: string;
|
|
4
4
|
REFUNDS_API_ROOT: string;
|
|
5
|
+
NOTIFICATION_API_ROOT: string;
|
|
5
6
|
CARDPAYMENTRETURNURL: string;
|
|
6
7
|
constructor();
|
|
7
8
|
setApiRootUrl(apiRoot: string): void;
|
|
@@ -10,6 +11,8 @@ export declare class PaymentLibService {
|
|
|
10
11
|
getBulkScanApiRootUrl(): string;
|
|
11
12
|
setRefundndsApiRootUrl(refundsapiRoot: string): void;
|
|
12
13
|
getRefundsApiRootUrl(): string;
|
|
14
|
+
setNoticationApiRootUrl(notificationapiRoot: string): void;
|
|
15
|
+
getNoticationApiRootUrl(): string;
|
|
13
16
|
setCardPaymentReturnUrl(cardPaymentReturnUrl: string): void;
|
|
14
17
|
getCardPaymentReturnUrl(): string;
|
|
15
18
|
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { ErrorHandlerService } from '../shared/error-handler.service';
|
|
3
|
+
import { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';
|
|
4
|
+
import { PaymentLibService } from '../../payment-lib.service';
|
|
5
|
+
import { Observable } from 'rxjs/Observable';
|
|
6
|
+
import { IRefundsNotifications } from '../../interfaces/IRefundsNotifications';
|
|
7
|
+
export declare class NotificationService {
|
|
8
|
+
private http;
|
|
9
|
+
private https;
|
|
10
|
+
private errorHandlerService;
|
|
11
|
+
private paymentLibService;
|
|
12
|
+
constructor(http: HttpClient, https: WebComponentHttpClient, errorHandlerService: ErrorHandlerService, paymentLibService: PaymentLibService);
|
|
13
|
+
getRefundNotification(reference: string): Observable<IRefundsNotifications>;
|
|
14
|
+
getAddressByPostcode(postcode: string): Observable<any>;
|
|
15
|
+
}
|
|
@@ -44,7 +44,6 @@ export declare class PaymentViewService {
|
|
|
44
44
|
postPaymentToPayHub(body: PaymentToPayhubRequest, paymentGroupRef: string): Observable<any>;
|
|
45
45
|
postPaymentAntennaToPayHub(body: PayhubAntennaRequest, paymentGroupRef: string): Observable<any>;
|
|
46
46
|
downloadSelectedReport(reportName: string, startDate: string, endDate: string): Observable<any>;
|
|
47
|
-
downloadFailureReport(startDate: string, endDate: string): Observable<any>;
|
|
48
47
|
getBSfeature(): Observable<any>;
|
|
49
48
|
getSiteID(): Observable<any>;
|
|
50
49
|
getPartyDetails(caseNumber: string): Observable<any>;
|
|
@@ -53,5 +52,4 @@ export declare class PaymentViewService {
|
|
|
53
52
|
postRefundsReason(body: PostRefundRetroRemission): Observable<any>;
|
|
54
53
|
postPaymentGroupWithRetroRemissions(paymentGroupReference: string, feeId: number, body: AddRetroRemissionRequest): Observable<any>;
|
|
55
54
|
postRefundRetroRemission(body: PostIssueRefundRetroRemission): Observable<any>;
|
|
56
|
-
getPaymentFailure(paymentReference: string): Observable<any>;
|
|
57
55
|
}
|
|
@@ -9,6 +9,7 @@ import { IPatchRefundAction } from '../../interfaces/IPatchRefundAction';
|
|
|
9
9
|
import { IRefundList } from '../../interfaces/IRefundList';
|
|
10
10
|
import { IssueRefundRequest } from '../../interfaces/IssueRefundRequest';
|
|
11
11
|
import { IResubmitRefundRequest } from '../../interfaces/IResubmitRefundRequest';
|
|
12
|
+
import { IPutNotificationRequest } from '../../interfaces/IPutNotificationRequest';
|
|
12
13
|
export declare class RefundsService {
|
|
13
14
|
private http;
|
|
14
15
|
private https;
|
|
@@ -25,6 +26,7 @@ export declare class RefundsService {
|
|
|
25
26
|
getRefundStatusList(ccdCaseNumber: string): Observable<IRefundList[]>;
|
|
26
27
|
getUserDetails(): Observable<any>;
|
|
27
28
|
postIssueRefund(body: IssueRefundRequest): Observable<any>;
|
|
29
|
+
putResendOrEdit(body: IPutNotificationRequest, refundRef: string, notificationType: string): Observable<any>;
|
|
28
30
|
patchResubmitRefund(body: IResubmitRefundRequest, refund_reference: string): Observable<any>;
|
|
29
31
|
addHeaders(options: any): any;
|
|
30
32
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hmcts/ccpay-web-component",
|
|
3
|
-
"version": "5.0.5-
|
|
3
|
+
"version": "5.0.5-beta13",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -17,6 +17,10 @@
|
|
|
17
17
|
"name": "Santosh Govindu",
|
|
18
18
|
"email": "santosh.govindu@hmcts.net"
|
|
19
19
|
},
|
|
20
|
+
{
|
|
21
|
+
"name": "Kumar dhanasamy",
|
|
22
|
+
"email": "kumar.dhanasamy@hmcts.net"
|
|
23
|
+
},
|
|
20
24
|
{
|
|
21
25
|
"name": "Tarun Palisetty",
|
|
22
26
|
"email": "tarun.palisetty@hmcts.net"
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @fileoverview added by tsickle
|
|
3
|
-
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
4
|
-
*/
|
|
5
|
-
/**
|
|
6
|
-
* @record
|
|
7
|
-
*/
|
|
8
|
-
export function IPaymentFailure() { }
|
|
9
|
-
if (false) {
|
|
10
|
-
/** @type {?} */
|
|
11
|
-
IPaymentFailure.prototype.additional_reference;
|
|
12
|
-
/** @type {?} */
|
|
13
|
-
IPaymentFailure.prototype.disputed_amount;
|
|
14
|
-
/** @type {?} */
|
|
15
|
-
IPaymentFailure.prototype.failure_event_date_time;
|
|
16
|
-
/** @type {?} */
|
|
17
|
-
IPaymentFailure.prototype.failure_reason;
|
|
18
|
-
/** @type {?} */
|
|
19
|
-
IPaymentFailure.prototype.failure_reference;
|
|
20
|
-
/** @type {?} */
|
|
21
|
-
IPaymentFailure.prototype.failure_type;
|
|
22
|
-
/** @type {?} */
|
|
23
|
-
IPaymentFailure.prototype.payment_reference;
|
|
24
|
-
/** @type {?} */
|
|
25
|
-
IPaymentFailure.prototype.representment_date;
|
|
26
|
-
/** @type {?} */
|
|
27
|
-
IPaymentFailure.prototype.representment_status;
|
|
28
|
-
/** @type {?|undefined} */
|
|
29
|
-
IPaymentFailure.prototype.has_amount_debited;
|
|
30
|
-
/** @type {?} */
|
|
31
|
-
IPaymentFailure.prototype.status;
|
|
32
|
-
}
|
|
33
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiSVBheW1lbnRGYWlsdXJlLmpzIiwic291cmNlUm9vdCI6Im5nOi8vQGhtY3RzL2NjcGF5LXdlYi1jb21wb25lbnQvIiwic291cmNlcyI6WyJsaWIvaW50ZXJmYWNlcy9JUGF5bWVudEZhaWx1cmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7OztBQUFBLHFDQVlDOzs7SUFYQywrQ0FBNkI7O0lBQzdCLDBDQUF3Qjs7SUFDeEIsa0RBQWdDOztJQUNoQyx5Q0FBdUI7O0lBQ3ZCLDRDQUEwQjs7SUFDMUIsdUNBQXFCOztJQUNyQiw0Q0FBMEI7O0lBQzFCLDZDQUEyQjs7SUFDM0IsK0NBQTZCOztJQUM3Qiw2Q0FBNEI7O0lBQzVCLGlDQUFlIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGludGVyZmFjZSBJUGF5bWVudEZhaWx1cmUge1xuICBhZGRpdGlvbmFsX3JlZmVyZW5jZTogc3RyaW5nO1xuICBkaXNwdXRlZF9hbW91bnQ6IG51bWJlcjtcbiAgZmFpbHVyZV9ldmVudF9kYXRlX3RpbWU6IHN0cmluZztcbiAgZmFpbHVyZV9yZWFzb246IHN0cmluZztcbiAgZmFpbHVyZV9yZWZlcmVuY2U6IHN0cmluZztcbiAgZmFpbHVyZV90eXBlOiBzdHJpbmc7XG4gIHBheW1lbnRfcmVmZXJlbmNlOiBzdHJpbmc7XG4gIHJlcHJlc2VudG1lbnRfZGF0ZTogc3RyaW5nO1xuICByZXByZXNlbnRtZW50X3N0YXR1czogc3RyaW5nO1xuICBoYXNfYW1vdW50X2RlYml0ZWQ/OiBzdHJpbmc7XG4gIHN0YXR1czogc3RyaW5nO1xufVxuIl19
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @fileoverview added by tsickle
|
|
3
|
-
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
4
|
-
*/
|
|
5
|
-
/**
|
|
6
|
-
* @record
|
|
7
|
-
*/
|
|
8
|
-
export function IPaymentFailure() { }
|
|
9
|
-
if (false) {
|
|
10
|
-
/** @type {?} */
|
|
11
|
-
IPaymentFailure.prototype.additional_reference;
|
|
12
|
-
/** @type {?} */
|
|
13
|
-
IPaymentFailure.prototype.disputed_amount;
|
|
14
|
-
/** @type {?} */
|
|
15
|
-
IPaymentFailure.prototype.failure_event_date_time;
|
|
16
|
-
/** @type {?} */
|
|
17
|
-
IPaymentFailure.prototype.failure_reason;
|
|
18
|
-
/** @type {?} */
|
|
19
|
-
IPaymentFailure.prototype.failure_reference;
|
|
20
|
-
/** @type {?} */
|
|
21
|
-
IPaymentFailure.prototype.failure_type;
|
|
22
|
-
/** @type {?} */
|
|
23
|
-
IPaymentFailure.prototype.payment_reference;
|
|
24
|
-
/** @type {?} */
|
|
25
|
-
IPaymentFailure.prototype.representment_date;
|
|
26
|
-
/** @type {?} */
|
|
27
|
-
IPaymentFailure.prototype.representment_status;
|
|
28
|
-
/** @type {?|undefined} */
|
|
29
|
-
IPaymentFailure.prototype.has_amount_debited;
|
|
30
|
-
/** @type {?} */
|
|
31
|
-
IPaymentFailure.prototype.status;
|
|
32
|
-
}
|
|
33
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiSVBheW1lbnRGYWlsdXJlLmpzIiwic291cmNlUm9vdCI6Im5nOi8vQGhtY3RzL2NjcGF5LXdlYi1jb21wb25lbnQvIiwic291cmNlcyI6WyJsaWIvaW50ZXJmYWNlcy9JUGF5bWVudEZhaWx1cmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7OztBQUFBLHFDQVlDOzs7SUFYQywrQ0FBNkI7O0lBQzdCLDBDQUF3Qjs7SUFDeEIsa0RBQWdDOztJQUNoQyx5Q0FBdUI7O0lBQ3ZCLDRDQUEwQjs7SUFDMUIsdUNBQXFCOztJQUNyQiw0Q0FBMEI7O0lBQzFCLDZDQUEyQjs7SUFDM0IsK0NBQTZCOztJQUM3Qiw2Q0FBNEI7O0lBQzVCLGlDQUFlIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGludGVyZmFjZSBJUGF5bWVudEZhaWx1cmUge1xuICBhZGRpdGlvbmFsX3JlZmVyZW5jZTogc3RyaW5nO1xuICBkaXNwdXRlZF9hbW91bnQ6IG51bWJlcjtcbiAgZmFpbHVyZV9ldmVudF9kYXRlX3RpbWU6IHN0cmluZztcbiAgZmFpbHVyZV9yZWFzb246IHN0cmluZztcbiAgZmFpbHVyZV9yZWZlcmVuY2U6IHN0cmluZztcbiAgZmFpbHVyZV90eXBlOiBzdHJpbmc7XG4gIHBheW1lbnRfcmVmZXJlbmNlOiBzdHJpbmc7XG4gIHJlcHJlc2VudG1lbnRfZGF0ZTogc3RyaW5nO1xuICByZXByZXNlbnRtZW50X3N0YXR1czogc3RyaW5nO1xuICBoYXNfYW1vdW50X2RlYml0ZWQ/OiBzdHJpbmc7XG4gIHN0YXR1czogc3RyaW5nO1xufVxuIl19
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
export interface IPaymentFailure {
|
|
2
|
-
additional_reference: string;
|
|
3
|
-
disputed_amount: number;
|
|
4
|
-
failure_event_date_time: string;
|
|
5
|
-
failure_reason: string;
|
|
6
|
-
failure_reference: string;
|
|
7
|
-
failure_type: string;
|
|
8
|
-
payment_reference: string;
|
|
9
|
-
representment_date: string;
|
|
10
|
-
representment_status: string;
|
|
11
|
-
has_amount_debited?: string;
|
|
12
|
-
status: string;
|
|
13
|
-
}
|