@hmcts/ccpay-web-component 4.0.0-beta521 → 4.0.0-beta526
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 +2956 -6653
- 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 +26 -33
- package/esm2015/lib/components/add-remission/add-remission.component.js +144 -848
- package/esm2015/lib/components/allocate-payments/allocate-payments.component.js +276 -196
- package/esm2015/lib/components/card-details/card-details.component.js +34 -22
- package/esm2015/lib/components/case-transactions/case-transactions.component.js +537 -726
- package/esm2015/lib/components/error-banner/error-banner.component.js +17 -5
- package/esm2015/lib/components/fee-summary/fee-summary.component.js +257 -146
- package/esm2015/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.js +143 -86
- package/esm2015/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.js +162 -106
- package/esm2015/lib/components/page-not-found.component.js +4 -3
- package/esm2015/lib/components/payment-list/payment-list.component.js +80 -22
- package/esm2015/lib/components/payment-view/payment-view.component.js +137 -319
- package/esm2015/lib/components/pba-details/pba-details.component.js +32 -5
- package/esm2015/lib/components/processed-payments/processed-payments.component.js +41 -13
- package/esm2015/lib/components/reports/reports.component.js +116 -55
- package/esm2015/lib/components/status-history/status-history.component.js +42 -28
- package/esm2015/lib/components/unprocessed-payments/unprocessed-payments.component.js +113 -115
- package/esm2015/lib/interfaces/AddRemissionRequest.js +3 -2
- package/esm2015/lib/interfaces/AllocatePaymentRequest.js +3 -2
- package/esm2015/lib/interfaces/IAllocationPaymentsRequest.js +3 -2
- package/esm2015/lib/interfaces/IBSPayments.js +35 -38
- package/esm2015/lib/interfaces/ICardDetails.js +13 -14
- package/esm2015/lib/interfaces/IFee.js +43 -44
- package/esm2015/lib/interfaces/IPayment.js +55 -56
- package/esm2015/lib/interfaces/IPaymentGroup.js +11 -12
- package/esm2015/lib/interfaces/IPaymentStatus.js +3 -2
- package/esm2015/lib/interfaces/IPayments.js +5 -6
- package/esm2015/lib/interfaces/IRemission.js +17 -18
- package/esm2015/lib/interfaces/IStatusHistories.js +11 -12
- package/esm2015/lib/interfaces/IStatusHistory.js +13 -14
- package/esm2015/lib/interfaces/PayhubAntennaRequest.js +4 -3
- package/esm2015/lib/interfaces/PaymentToPayhubRequest.js +4 -3
- package/esm2015/lib/interfaces/UnidentifiedPaymentsRequest.js +3 -2
- package/esm2015/lib/interfaces/UnsolicitedPaymentsRequest.js +3 -2
- package/esm2015/lib/payment-lib.component.js +9 -71
- package/esm2015/lib/payment-lib.module.js +6 -29
- package/esm2015/lib/payment-lib.service.js +4 -18
- package/esm2015/lib/pipes/ccd-hyphens.pipe.js +4 -3
- package/esm2015/lib/pipes/key-value.pipe.js +4 -3
- package/esm2015/lib/pipes/sanitize-html.pipe.js +5 -7
- package/esm2015/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.js +14 -37
- package/esm2015/lib/services/card-details/card-details.service.js +8 -19
- package/esm2015/lib/services/case-transactions/case-transactions.service.js +8 -19
- package/esm2015/lib/services/payment-list/payment-list.service.js +8 -19
- package/esm2015/lib/services/payment-view/payment-view.service.js +10 -81
- package/esm2015/lib/services/shared/error-handler.service.js +4 -6
- package/esm2015/lib/services/shared/httpclient/webcomponent.http.client.js +9 -27
- package/esm2015/lib/services/shared/logger/console-logger.service.js +5 -7
- package/esm2015/lib/services/shared/logger/logger.service.js +5 -7
- package/esm2015/lib/services/status-history/status-history.service.js +8 -19
- package/esm2015/lib/services/xl-file/xl-file.service.js +51 -56
- package/esm2015/public_api.js +2 -1
- package/esm5/hmcts-ccpay-web-component.js +26 -33
- package/esm5/lib/components/add-remission/add-remission.component.js +51 -916
- package/esm5/lib/components/allocate-payments/allocate-payments.component.js +62 -205
- package/esm5/lib/components/card-details/card-details.component.js +7 -20
- package/esm5/lib/components/case-transactions/case-transactions.component.js +71 -797
- package/esm5/lib/components/error-banner/error-banner.component.js +4 -3
- package/esm5/lib/components/fee-summary/fee-summary.component.js +44 -149
- package/esm5/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.js +29 -84
- package/esm5/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.js +40 -104
- package/esm5/lib/components/page-not-found.component.js +4 -3
- package/esm5/lib/components/payment-list/payment-list.component.js +8 -21
- package/esm5/lib/components/payment-view/payment-view.component.js +21 -379
- package/esm5/lib/components/pba-details/pba-details.component.js +4 -3
- package/esm5/lib/components/processed-payments/processed-payments.component.js +6 -11
- package/esm5/lib/components/reports/reports.component.js +25 -54
- package/esm5/lib/components/status-history/status-history.component.js +9 -27
- package/esm5/lib/components/unprocessed-payments/unprocessed-payments.component.js +24 -126
- package/esm5/lib/interfaces/AddRemissionRequest.js +3 -2
- package/esm5/lib/interfaces/AllocatePaymentRequest.js +3 -2
- package/esm5/lib/interfaces/IAllocationPaymentsRequest.js +3 -2
- package/esm5/lib/interfaces/IBSPayments.js +35 -38
- package/esm5/lib/interfaces/ICardDetails.js +13 -14
- package/esm5/lib/interfaces/IFee.js +43 -44
- package/esm5/lib/interfaces/IPayment.js +55 -56
- package/esm5/lib/interfaces/IPaymentGroup.js +11 -12
- package/esm5/lib/interfaces/IPaymentStatus.js +3 -2
- package/esm5/lib/interfaces/IPayments.js +5 -6
- package/esm5/lib/interfaces/IRemission.js +17 -18
- package/esm5/lib/interfaces/IStatusHistories.js +11 -12
- package/esm5/lib/interfaces/IStatusHistory.js +13 -14
- package/esm5/lib/interfaces/PayhubAntennaRequest.js +4 -3
- package/esm5/lib/interfaces/PaymentToPayhubRequest.js +4 -3
- package/esm5/lib/interfaces/UnidentifiedPaymentsRequest.js +3 -2
- package/esm5/lib/interfaces/UnsolicitedPaymentsRequest.js +3 -2
- package/esm5/lib/payment-lib.component.js +7 -58
- package/esm5/lib/payment-lib.module.js +6 -29
- package/esm5/lib/payment-lib.service.js +4 -25
- package/esm5/lib/pipes/ccd-hyphens.pipe.js +4 -3
- package/esm5/lib/pipes/key-value.pipe.js +4 -3
- package/esm5/lib/pipes/sanitize-html.pipe.js +5 -7
- package/esm5/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.js +14 -37
- package/esm5/lib/services/card-details/card-details.service.js +8 -19
- package/esm5/lib/services/case-transactions/case-transactions.service.js +8 -19
- package/esm5/lib/services/payment-list/payment-list.service.js +8 -19
- package/esm5/lib/services/payment-view/payment-view.service.js +10 -112
- package/esm5/lib/services/shared/error-handler.service.js +4 -6
- package/esm5/lib/services/shared/httpclient/webcomponent.http.client.js +9 -27
- package/esm5/lib/services/shared/logger/console-logger.service.js +5 -7
- package/esm5/lib/services/shared/logger/logger.service.js +5 -7
- package/esm5/lib/services/status-history/status-history.service.js +8 -19
- package/esm5/lib/services/xl-file/xl-file.service.js +51 -62
- package/esm5/public_api.js +2 -1
- package/fesm2015/hmcts-ccpay-web-component.js +2190 -3845
- package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
- package/fesm5/hmcts-ccpay-web-component.js +2869 -6754
- package/fesm5/hmcts-ccpay-web-component.js.map +1 -1
- package/hmcts-ccpay-web-component.d.ts +23 -31
- package/hmcts-ccpay-web-component.metadata.json +1 -1
- package/lib/components/add-remission/add-remission.component.d.ts +2 -72
- package/lib/components/allocate-payments/allocate-payments.component.d.ts +4 -16
- package/lib/components/case-transactions/case-transactions.component.d.ts +1 -52
- package/lib/components/fee-summary/fee-summary.component.d.ts +1 -3
- package/lib/components/payment-view/payment-view.component.d.ts +1 -37
- package/lib/components/status-history/status-history.component.d.ts +0 -1
- package/lib/components/unprocessed-payments/unprocessed-payments.component.d.ts +4 -15
- package/lib/interfaces/IBSPayments.d.ts +0 -1
- package/lib/payment-lib.component.d.ts +1 -18
- package/lib/payment-lib.service.d.ts +0 -3
- package/lib/services/payment-view/payment-view.service.d.ts +0 -12
- package/lib/services/xl-file/xl-file.service.d.ts +6 -6
- package/package.json +1 -1
- package/esm2015/lib/components/process-refund/process-refund.component.js +0 -380
- package/esm2015/lib/components/refund-list/refund-list.component.js +0 -140
- package/esm2015/lib/components/refund-status/refund-status.component.js +0 -509
- package/esm2015/lib/components/refunds/refunds.component.js +0 -23
- package/esm2015/lib/components/table/table.component.js +0 -171
- package/esm2015/lib/interfaces/AddRetroRemissionRequest.js +0 -21
- package/esm2015/lib/interfaces/IOrderReferenceFee.js +0 -25
- package/esm2015/lib/interfaces/IPatchRefundAction.js +0 -15
- package/esm2015/lib/interfaces/IPaymentView.js +0 -17
- package/esm2015/lib/interfaces/IRefundAction.js +0 -15
- package/esm2015/lib/interfaces/IRefundList.js +0 -29
- package/esm2015/lib/interfaces/IRefundReasons.js +0 -19
- package/esm2015/lib/interfaces/IRefundRejectReason.js +0 -15
- package/esm2015/lib/interfaces/IRefundStatus.js +0 -23
- package/esm2015/lib/interfaces/IRefundStatusHistory.js +0 -15
- package/esm2015/lib/interfaces/IResubmitRefundRequest.js +0 -21
- package/esm2015/lib/interfaces/IssueRefundRequest.js +0 -25
- package/esm2015/lib/interfaces/PostIssueRefundRetroRemission.js +0 -17
- package/esm2015/lib/interfaces/PostRefundRetroRemission.js +0 -21
- package/esm2015/lib/interfaces/RefundsRequest.js +0 -21
- package/esm2015/lib/pipes/capitalize.pipe.js +0 -24
- package/esm2015/lib/services/orderslist.service.js +0 -211
- package/esm2015/lib/services/refunds/refunds.service.js +0 -203
- package/esm5/lib/components/process-refund/process-refund.component.js +0 -456
- package/esm5/lib/components/refund-list/refund-list.component.js +0 -143
- package/esm5/lib/components/refund-status/refund-status.component.js +0 -568
- package/esm5/lib/components/refunds/refunds.component.js +0 -29
- package/esm5/lib/components/table/table.component.js +0 -201
- package/esm5/lib/interfaces/AddRetroRemissionRequest.js +0 -19
- package/esm5/lib/interfaces/IOrderReferenceFee.js +0 -25
- package/esm5/lib/interfaces/IPatchRefundAction.js +0 -15
- package/esm5/lib/interfaces/IPaymentView.js +0 -17
- package/esm5/lib/interfaces/IRefundAction.js +0 -15
- package/esm5/lib/interfaces/IRefundList.js +0 -29
- package/esm5/lib/interfaces/IRefundReasons.js +0 -19
- package/esm5/lib/interfaces/IRefundRejectReason.js +0 -15
- package/esm5/lib/interfaces/IRefundStatus.js +0 -23
- package/esm5/lib/interfaces/IRefundStatusHistory.js +0 -15
- package/esm5/lib/interfaces/IResubmitRefundRequest.js +0 -19
- package/esm5/lib/interfaces/IssueRefundRequest.js +0 -22
- package/esm5/lib/interfaces/PostIssueRefundRetroRemission.js +0 -16
- package/esm5/lib/interfaces/PostRefundRetroRemission.js +0 -19
- package/esm5/lib/interfaces/RefundsRequest.js +0 -19
- package/esm5/lib/pipes/capitalize.pipe.js +0 -32
- package/esm5/lib/services/orderslist.service.js +0 -276
- package/esm5/lib/services/refunds/refunds.service.js +0 -243
- package/lib/components/process-refund/process-refund.component.d.ts +0 -53
- package/lib/components/refund-list/refund-list.component.d.ts +0 -23
- package/lib/components/refund-status/refund-status.component.d.ts +0 -68
- package/lib/components/refunds/refunds.component.d.ts +0 -5
- package/lib/components/table/table.component.d.ts +0 -35
- package/lib/interfaces/AddRetroRemissionRequest.d.ts +0 -5
- package/lib/interfaces/IOrderReferenceFee.d.ts +0 -9
- package/lib/interfaces/IPatchRefundAction.d.ts +0 -4
- package/lib/interfaces/IPaymentView.d.ts +0 -5
- package/lib/interfaces/IRefundAction.d.ts +0 -4
- package/lib/interfaces/IRefundList.d.ts +0 -14
- package/lib/interfaces/IRefundReasons.d.ts +0 -6
- package/lib/interfaces/IRefundRejectReason.d.ts +0 -4
- package/lib/interfaces/IRefundStatus.d.ts +0 -8
- package/lib/interfaces/IRefundStatusHistory.d.ts +0 -5
- package/lib/interfaces/IResubmitRefundRequest.d.ts +0 -5
- package/lib/interfaces/IssueRefundRequest.d.ts +0 -6
- package/lib/interfaces/PostIssueRefundRetroRemission.d.ts +0 -4
- package/lib/interfaces/PostRefundRetroRemission.d.ts +0 -5
- package/lib/interfaces/RefundsRequest.d.ts +0 -5
- package/lib/pipes/capitalize.pipe.d.ts +0 -5
- package/lib/services/orderslist.service.d.ts +0 -40
- package/lib/services/refunds/refunds.service.d.ts +0 -30
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { RefundsService } from '../../services/refunds/refunds.service';
|
|
3
|
-
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
4
|
-
import { IRefundList } from '../../interfaces/IRefundList';
|
|
5
|
-
import { PaymentViewService } from '../../services/payment-view/payment-view.service';
|
|
6
|
-
import { Router } from '@angular/router';
|
|
7
|
-
import { OrderslistService } from '../../services/orderslist.service';
|
|
8
|
-
import { IRefundStatus } from '../../interfaces/IRefundStatus';
|
|
9
|
-
import { PaymentLibComponent } from '../../payment-lib.component';
|
|
10
|
-
export declare class RefundStatusComponent implements OnInit {
|
|
11
|
-
private formBuilder;
|
|
12
|
-
private refundService;
|
|
13
|
-
private paymentLibComponent;
|
|
14
|
-
private paymentViewService;
|
|
15
|
-
private router;
|
|
16
|
-
private OrderslistService;
|
|
17
|
-
LOGGEDINUSERROLES: string[];
|
|
18
|
-
isOldPcipalOff: boolean;
|
|
19
|
-
isNewPcipalOff: boolean;
|
|
20
|
-
ccdCaseNumber: string;
|
|
21
|
-
isTurnOff: boolean;
|
|
22
|
-
refundStatusForm: FormGroup;
|
|
23
|
-
selectedRefundReason: string;
|
|
24
|
-
rejectedRefundList: IRefundList[];
|
|
25
|
-
approvalStatus: string;
|
|
26
|
-
rejectStatus: string;
|
|
27
|
-
errorMessage: any;
|
|
28
|
-
viewName: string;
|
|
29
|
-
refundReason: string;
|
|
30
|
-
refundlist: IRefundList;
|
|
31
|
-
bsPaymentDcnNumber: string;
|
|
32
|
-
isCallFromRefundList: boolean;
|
|
33
|
-
refundButtonState: string;
|
|
34
|
-
isAmountEmpty: boolean;
|
|
35
|
-
isReasonEmpty: boolean;
|
|
36
|
-
amountHasError: boolean;
|
|
37
|
-
isRemissionLessThanFeeError: boolean;
|
|
38
|
-
refundHasError: boolean;
|
|
39
|
-
refundReasons: any[];
|
|
40
|
-
refundStatusHistories: IRefundStatus[];
|
|
41
|
-
refundReference: string;
|
|
42
|
-
refundAmount: string;
|
|
43
|
-
refundCode: string;
|
|
44
|
-
isRefundBtnDisabled: boolean;
|
|
45
|
-
oldRefundReason: string;
|
|
46
|
-
refundreason: string;
|
|
47
|
-
navigationpage: string;
|
|
48
|
-
isLastUpdatedByCurrentUser: boolean;
|
|
49
|
-
isProcessRefund: boolean;
|
|
50
|
-
changedAmount: number;
|
|
51
|
-
constructor(formBuilder: FormBuilder, refundService: RefundsService, paymentLibComponent: PaymentLibComponent, paymentViewService: PaymentViewService, router: Router, OrderslistService: OrderslistService);
|
|
52
|
-
ngOnInit(): void;
|
|
53
|
-
getRefundsStatusHistoryList(): void;
|
|
54
|
-
goToRefundView(refundlist: IRefundList, navigationpage: string): void;
|
|
55
|
-
loadCaseTransactionPage(): void;
|
|
56
|
-
loadRefundListPage(): void;
|
|
57
|
-
gotoReviewDetailsPage(event: any): void;
|
|
58
|
-
gotoReviewAndReSubmitPage(): void;
|
|
59
|
-
gotoRefundReasonPage(): void;
|
|
60
|
-
gotoAmountPage(): void;
|
|
61
|
-
goToReviewAndSubmitView(): void;
|
|
62
|
-
resetRemissionForm(val: any, field: any): void;
|
|
63
|
-
selectRadioButton(key: any, value: any): void;
|
|
64
|
-
getRefundListReason(refundListReason: any): void;
|
|
65
|
-
getRefundAmount(amount: number): void;
|
|
66
|
-
gotoReviewRefundConfirmationPage(): void;
|
|
67
|
-
goToRefundProcessComponent(refundReference: string, refundList: IRefundList): void;
|
|
68
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectorRef } from '@angular/core';
|
|
2
|
-
import { PaymentLibComponent } from '../../payment-lib.component';
|
|
3
|
-
import { MatTableDataSource } from '@angular/material/table';
|
|
4
|
-
import { MatSort } from '@angular/material/sort';
|
|
5
|
-
import { MatPaginator } from '@angular/material/paginator';
|
|
6
|
-
import { IRefundList } from '../../interfaces/IRefundList';
|
|
7
|
-
import { OrderslistService } from '../../services/orderslist.service';
|
|
8
|
-
export declare class TableComponent {
|
|
9
|
-
private paymentLibComponent;
|
|
10
|
-
private cdRef;
|
|
11
|
-
private OrderslistService;
|
|
12
|
-
DATASOURCE: any[];
|
|
13
|
-
STATUS: string;
|
|
14
|
-
errorMessage: string;
|
|
15
|
-
isApprovalFlow: boolean;
|
|
16
|
-
displayedColumns: string[];
|
|
17
|
-
dataSource: MatTableDataSource<any>;
|
|
18
|
-
userLst: any;
|
|
19
|
-
actualcount: number;
|
|
20
|
-
count: number;
|
|
21
|
-
refundList: IRefundList[];
|
|
22
|
-
paginator: MatPaginator;
|
|
23
|
-
sort: MatSort;
|
|
24
|
-
constructor(paymentLibComponent: PaymentLibComponent, cdRef: ChangeDetectorRef, OrderslistService: OrderslistService);
|
|
25
|
-
ngOnInit(): void;
|
|
26
|
-
/**
|
|
27
|
-
* Set the paginator and sort after the view init since this component will
|
|
28
|
-
* be able to query its view for the initialized paginator and sort.
|
|
29
|
-
*/
|
|
30
|
-
ngAfterViewInit(): void;
|
|
31
|
-
applyFilter(filterValue: string): void;
|
|
32
|
-
selectchange(args: any): void;
|
|
33
|
-
goToRefundProcessComponent(refundReference: string, refundDate: IRefundList): void;
|
|
34
|
-
goToRefundViewComponent(refundReference: string, refundData: IRefundList): void;
|
|
35
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
export interface IRefundList {
|
|
2
|
-
amount: number;
|
|
3
|
-
ccd_case_number: string;
|
|
4
|
-
date_created: string;
|
|
5
|
-
date_updated: string;
|
|
6
|
-
payment_reference: string;
|
|
7
|
-
reason: string;
|
|
8
|
-
refund_reference: string;
|
|
9
|
-
refund_status: {
|
|
10
|
-
description: string;
|
|
11
|
-
name: string;
|
|
12
|
-
};
|
|
13
|
-
user_full_name: string;
|
|
14
|
-
}
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
import { Observable, BehaviorSubject } from 'rxjs';
|
|
2
|
-
import { IOrderReferenceFee } from '../interfaces/IOrderReferenceFee';
|
|
3
|
-
import { IRefundList } from '../interfaces/IRefundList';
|
|
4
|
-
import { IPaymentView } from '../interfaces/IPaymentView';
|
|
5
|
-
export declare class OrderslistService {
|
|
6
|
-
private ordersList;
|
|
7
|
-
private refundView;
|
|
8
|
-
private caseType;
|
|
9
|
-
getcaseType: Observable<string>;
|
|
10
|
-
private feeExists;
|
|
11
|
-
getFeeExist: Observable<boolean>;
|
|
12
|
-
private ccdCaseNumber;
|
|
13
|
-
getCCDCaseNumberforRefund: Observable<string>;
|
|
14
|
-
private isFromServiceRequestPage;
|
|
15
|
-
getisFromServiceRequestPage: Observable<boolean>;
|
|
16
|
-
private OrderRefId;
|
|
17
|
-
getOrderRefId: Observable<string>;
|
|
18
|
-
private navigationPage;
|
|
19
|
-
getnavigationPage: Observable<string>;
|
|
20
|
-
private paymentPageView;
|
|
21
|
-
constructor();
|
|
22
|
-
setOrdersList(orderLevelFees: IOrderReferenceFee[]): void;
|
|
23
|
-
getOrdersList(): BehaviorSubject<IOrderReferenceFee[]>;
|
|
24
|
-
setRefundView(refundList: IRefundList): void;
|
|
25
|
-
getRefundView(): BehaviorSubject<IRefundList>;
|
|
26
|
-
setCaseType(caseType: string): void;
|
|
27
|
-
getCaseType(): BehaviorSubject<string>;
|
|
28
|
-
setCCDCaseNumber(ccdCaseNumber: string): void;
|
|
29
|
-
getCCDCaseNumber(): BehaviorSubject<string>;
|
|
30
|
-
setFeeExists(feeExists: boolean): void;
|
|
31
|
-
getFeeExists(): BehaviorSubject<boolean>;
|
|
32
|
-
setisFromServiceRequestPage(isFromServiceRequestPage: boolean): void;
|
|
33
|
-
getisFromServiceRequestPages(): BehaviorSubject<boolean>;
|
|
34
|
-
setOrderRefId(OrderRefId: string): void;
|
|
35
|
-
getSelectedOrderRefId(): BehaviorSubject<string>;
|
|
36
|
-
setnavigationPage(navigationPage: string): void;
|
|
37
|
-
getnavigationPageValue(): BehaviorSubject<string>;
|
|
38
|
-
setpaymentPageView(paymentpageList: IPaymentView): void;
|
|
39
|
-
getpaymentPageView(): BehaviorSubject<IPaymentView>;
|
|
40
|
-
}
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { HttpClient } from '@angular/common/http';
|
|
2
|
-
import { Meta } from '@angular/platform-browser';
|
|
3
|
-
import { ErrorHandlerService } from '../shared/error-handler.service';
|
|
4
|
-
import { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';
|
|
5
|
-
import { PaymentLibService } from '../../payment-lib.service';
|
|
6
|
-
import { Observable } from 'rxjs/Observable';
|
|
7
|
-
import { IRefundReasons } from '../../interfaces/IRefundReasons';
|
|
8
|
-
import { IPatchRefundAction } from '../../interfaces/IPatchRefundAction';
|
|
9
|
-
import { IRefundList } from '../../interfaces/IRefundList';
|
|
10
|
-
import { IssueRefundRequest } from '../../interfaces/IssueRefundRequest';
|
|
11
|
-
import { IResubmitRefundRequest } from '../../interfaces/IResubmitRefundRequest';
|
|
12
|
-
export declare class RefundsService {
|
|
13
|
-
private http;
|
|
14
|
-
private https;
|
|
15
|
-
private errorHandlerService;
|
|
16
|
-
private paymentLibService;
|
|
17
|
-
private meta;
|
|
18
|
-
constructor(http: HttpClient, https: WebComponentHttpClient, errorHandlerService: ErrorHandlerService, paymentLibService: PaymentLibService, meta: Meta);
|
|
19
|
-
getRefundReasons(): Observable<IRefundReasons[]>;
|
|
20
|
-
getRefundRejectReasons(): Observable<any>;
|
|
21
|
-
getRefundActions(refundReference: string): Observable<any>;
|
|
22
|
-
patchRefundActions(body: IPatchRefundAction, refundReference: string, reviewerAction: string): Observable<any>;
|
|
23
|
-
getRefundList(refundstatus?: string, selfexclusive?: boolean): Observable<IRefundList[]>;
|
|
24
|
-
getRefundStatusHistory(reference?: string): Observable<any>;
|
|
25
|
-
getRefundStatusList(ccdCaseNumber: string): Observable<IRefundList[]>;
|
|
26
|
-
getUserDetails(): Observable<any>;
|
|
27
|
-
postIssueRefund(body: IssueRefundRequest): Observable<any>;
|
|
28
|
-
patchResubmitRefund(body: IResubmitRefundRequest, refund_reference: string): Observable<any>;
|
|
29
|
-
addHeaders(options: any): any;
|
|
30
|
-
}
|