@hmcts/ccpay-web-component 5.0.1-beta99 → 5.0.2-beta2

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.
Files changed (82) hide show
  1. package/bundles/hmcts-ccpay-web-component.umd.js +485 -730
  2. package/bundles/hmcts-ccpay-web-component.umd.js.map +1 -1
  3. package/bundles/hmcts-ccpay-web-component.umd.min.js +1 -1
  4. package/bundles/hmcts-ccpay-web-component.umd.min.js.map +1 -1
  5. package/esm2015/hmcts-ccpay-web-component.js +4 -5
  6. package/esm2015/lib/components/add-remission/add-remission.component.js +25 -87
  7. package/esm2015/lib/components/case-transactions/case-transactions.component.js +74 -40
  8. package/esm2015/lib/components/fee-summary/fee-summary.component.js +1 -3
  9. package/esm2015/lib/components/payment-view/payment-view.component.js +3 -4
  10. package/esm2015/lib/components/pba-payment/pba-payment.component.js +248 -0
  11. package/esm2015/lib/components/process-refund/process-refund.component.js +8 -3
  12. package/esm2015/lib/components/refund-status/refund-status.component.js +27 -145
  13. package/esm2015/lib/components/service-request/service-request.component.js +24 -10
  14. package/esm2015/lib/components/unprocessed-payments/unprocessed-payments.component.js +1 -2
  15. package/esm2015/lib/interfaces/IserviceRequestCardPayment.js +23 -0
  16. package/esm2015/lib/interfaces/IserviceRequestPbaPayment.js +32 -0
  17. package/esm2015/lib/interfaces/PostIssueRefundRetroRemission.js +2 -6
  18. package/esm2015/lib/interfaces/PostRefundRetroRemission.js +2 -6
  19. package/esm2015/lib/payment-lib.component.js +9 -7
  20. package/esm2015/lib/payment-lib.module.js +3 -5
  21. package/esm2015/lib/payment-lib.service.js +7 -7
  22. package/esm2015/lib/services/payment-view/payment-view.service.js +35 -1
  23. package/esm2015/lib/services/refunds/refunds.service.js +16 -12
  24. package/esm2015/lib/services/shared/error-handler.service.js +19 -10
  25. package/esm2015/lib/services/shared/httpclient/webcomponent.http.client.js +16 -3
  26. package/esm5/hmcts-ccpay-web-component.js +4 -5
  27. package/esm5/lib/components/add-remission/add-remission.component.js +25 -108
  28. package/esm5/lib/components/case-transactions/case-transactions.component.js +83 -40
  29. package/esm5/lib/components/fee-summary/fee-summary.component.js +1 -3
  30. package/esm5/lib/components/payment-view/payment-view.component.js +3 -4
  31. package/esm5/lib/components/pba-payment/pba-payment.component.js +269 -0
  32. package/esm5/lib/components/process-refund/process-refund.component.js +8 -3
  33. package/esm5/lib/components/refund-status/refund-status.component.js +25 -172
  34. package/esm5/lib/components/service-request/service-request.component.js +27 -10
  35. package/esm5/lib/components/unprocessed-payments/unprocessed-payments.component.js +1 -2
  36. package/esm5/lib/interfaces/IserviceRequestCardPayment.js +22 -0
  37. package/esm5/lib/interfaces/IserviceRequestPbaPayment.js +28 -0
  38. package/esm5/lib/interfaces/PostIssueRefundRetroRemission.js +2 -5
  39. package/esm5/lib/interfaces/PostRefundRetroRemission.js +2 -5
  40. package/esm5/lib/payment-lib.component.js +7 -6
  41. package/esm5/lib/payment-lib.module.js +3 -5
  42. package/esm5/lib/payment-lib.service.js +9 -9
  43. package/esm5/lib/services/payment-view/payment-view.service.js +48 -1
  44. package/esm5/lib/services/refunds/refunds.service.js +16 -18
  45. package/esm5/lib/services/shared/error-handler.service.js +19 -10
  46. package/esm5/lib/services/shared/httpclient/webcomponent.http.client.js +16 -3
  47. package/fesm2015/hmcts-ccpay-web-component.js +458 -656
  48. package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
  49. package/fesm5/hmcts-ccpay-web-component.js +495 -732
  50. package/fesm5/hmcts-ccpay-web-component.js.map +1 -1
  51. package/hmcts-ccpay-web-component.d.ts +3 -4
  52. package/hmcts-ccpay-web-component.metadata.json +1 -1
  53. package/lib/components/add-remission/add-remission.component.d.ts +0 -8
  54. package/lib/components/case-transactions/case-transactions.component.d.ts +6 -0
  55. package/lib/components/pba-payment/pba-payment.component.d.ts +33 -0
  56. package/lib/components/process-refund/process-refund.component.d.ts +1 -0
  57. package/lib/components/refund-status/refund-status.component.d.ts +5 -20
  58. package/lib/components/service-request/service-request.component.d.ts +4 -1
  59. package/lib/interfaces/IserviceRequestCardPayment.d.ts +6 -0
  60. package/lib/interfaces/IserviceRequestPbaPayment.d.ts +8 -0
  61. package/lib/interfaces/PostIssueRefundRetroRemission.d.ts +1 -3
  62. package/lib/interfaces/PostRefundRetroRemission.d.ts +1 -3
  63. package/lib/payment-lib.component.d.ts +3 -1
  64. package/lib/payment-lib.service.d.ts +3 -3
  65. package/lib/services/payment-view/payment-view.service.d.ts +5 -0
  66. package/lib/services/refunds/refunds.service.d.ts +0 -2
  67. package/package.json +1 -1
  68. package/esm2015/lib/components/contact-details/contact-details.component.js +0 -346
  69. package/esm2015/lib/interfaces/IPutNotificationRequest.js +0 -25
  70. package/esm2015/lib/interfaces/IRefundContactDetails.js +0 -25
  71. package/esm2015/lib/interfaces/IRefundsNotifications.js +0 -21
  72. package/esm2015/lib/services/notification/notification.service.js +0 -85
  73. package/esm5/lib/components/contact-details/contact-details.component.js +0 -370
  74. package/esm5/lib/interfaces/IPutNotificationRequest.js +0 -23
  75. package/esm5/lib/interfaces/IRefundContactDetails.js +0 -25
  76. package/esm5/lib/interfaces/IRefundsNotifications.js +0 -21
  77. package/esm5/lib/services/notification/notification.service.js +0 -89
  78. package/lib/components/contact-details/contact-details.component.d.ts +0 -41
  79. package/lib/interfaces/IPutNotificationRequest.d.ts +0 -6
  80. package/lib/interfaces/IRefundContactDetails.d.ts +0 -9
  81. package/lib/interfaces/IRefundsNotifications.d.ts +0 -16
  82. package/lib/services/notification/notification.service.d.ts +0 -15
@@ -7,7 +7,6 @@ import { PaymentLibComponent } from '../../payment-lib.component';
7
7
  import { IPayment } from '../../interfaces/IPayment';
8
8
  import { RefundsService } from '../../services/refunds/refunds.service';
9
9
  import { IRefundReasons } from '../../interfaces/IRefundReasons';
10
- import { IRefundContactDetails } from '../../interfaces/IRefundContactDetails';
11
10
  import { ChangeDetectorRef } from '@angular/core';
12
11
  import { IRemission } from '../../interfaces/IRemission';
13
12
  import { OrderslistService } from '../../services/orderslist.service';
@@ -61,7 +60,6 @@ export declare class AddRemissionComponent implements OnInit {
61
60
  other: string;
62
61
  };
63
62
  };
64
- contactDetailsObj: IRefundContactDetails;
65
63
  remissionForm: FormGroup;
66
64
  hasErrors: boolean;
67
65
  viewStatus: string;
@@ -128,23 +126,17 @@ export declare class AddRemissionComponent implements OnInit {
128
126
  addRemissionCode(): void;
129
127
  gotoAddRetroRemissionCodePage(): void;
130
128
  gotoCheckRetroRemissionPage(payment: IPayment): void;
131
- gotoAmountRetroRemission(): void;
132
129
  gotoProcessRetroRemissionPage(): void;
133
- gotoProcessRetroRemission(): void;
134
130
  confirmRetroRemission(): void;
135
131
  processRefund(): void;
136
132
  gotoIssueRefundConfirmation(payment: IPayment): void;
137
133
  gotoIssueRefundPage(): void;
138
- gotoContactDetailsPage(): void;
139
134
  changeIssueRefundReason(): void;
140
135
  confirmIssueRefund(): void;
141
136
  confirmRetroRefund(): void;
142
137
  selectRadioButton(key: any, value: any): void;
143
138
  selectchange(args: any): void;
144
- getContactDetails(obj: IRefundContactDetails, type: any): void;
145
139
  gotoServiceRequestPage(event: any): void;
146
- gotoAddressPage(): void;
147
- gotoRemissionSuccess(event: Event): void;
148
140
  gotoCasetransationPage(): void;
149
141
  gotoCasetransationPageCancelBtnClicked(event: Event): void;
150
142
  resetOrderData(): void;
@@ -67,6 +67,7 @@ export declare class CaseTransactionsComponent implements OnInit {
67
67
  isAddRemissionEnable: boolean;
68
68
  orderRemissionDetails: any[];
69
69
  orderLevelFees: IOrderReferenceFee[];
70
+ ispaymentGroupApisuccess: boolean;
70
71
  cpoDetails: any;
71
72
  orderRef: string;
72
73
  orderStatus: string;
@@ -86,6 +87,8 @@ export declare class CaseTransactionsComponent implements OnInit {
86
87
  isAddRemissionBtnEnabled: boolean;
87
88
  isRefundRemissionBtnEnable: boolean;
88
89
  allowedRolesToAccessRefund: string[];
90
+ isEligible4PBAPayment: string[];
91
+ currentDate: Date;
89
92
  isFromServiceRequestPage: boolean;
90
93
  navigationpage: string;
91
94
  remissionFeeAmt: number;
@@ -105,6 +108,7 @@ export declare class CaseTransactionsComponent implements OnInit {
105
108
  addRemission(fee: IFee): void;
106
109
  addRefundForRemission(payment: IPayment, remission: IRemission[], fees: any): void;
107
110
  redirectToremissionPage(event: any): void;
111
+ goToServiceRequestPage(): void;
108
112
  redirectToReportsPage(event: any): void;
109
113
  loadFeeSummaryPage(paymentGroup: IPaymentGroup): void;
110
114
  goToPaymentViewComponent(paymentGroup: any): void;
@@ -122,5 +126,7 @@ export declare class CaseTransactionsComponent implements OnInit {
122
126
  chkIssueRefundBtnEnable(payment: IPayment): boolean;
123
127
  chkIsRefundRemissionBtnEnable(): boolean;
124
128
  check4AllowedRoles2AccessRefund: () => boolean;
129
+ check4AllowedRoles2AccessPBApayment: () => boolean;
125
130
  allowFurtherAccessAfter4Days: (payment: IPayment) => boolean;
131
+ loadPBAAccountPage(orderRef: IPayment): void;
126
132
  }
@@ -0,0 +1,33 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { PaymentViewService } from '../../services/payment-view/payment-view.service';
3
+ import { PaymentLibComponent } from '../../payment-lib.component';
4
+ export declare class PbaPaymentComponent implements OnInit {
5
+ private paymentLibComponent;
6
+ private paymentViewService;
7
+ pbaPayOrderRef: any;
8
+ viewStatus: string;
9
+ pbaAccountList: string[];
10
+ isPBAAccountHold: boolean;
11
+ errorMsg: any;
12
+ isCardPaymentSuccess: boolean;
13
+ isInSufficiantFund: boolean;
14
+ isPBAAccountNotExist: boolean;
15
+ isPBAServerError: boolean;
16
+ isGetPBAAccountSucceed: boolean;
17
+ selectedPbaAccount: string;
18
+ pbaAccountRef: string;
19
+ isPbaAccountSelected: boolean;
20
+ isCardPaymentSelected: boolean;
21
+ isPBADropdownSelected: boolean;
22
+ isContinueButtondisabled: boolean;
23
+ isPBAAccountPaymentSuccess: boolean;
24
+ pbaAccountrPaymentResult: any;
25
+ orgName: string;
26
+ constructor(paymentLibComponent: PaymentLibComponent, paymentViewService: PaymentViewService);
27
+ ngOnInit(): void;
28
+ selectpbaaccount(args: any): void;
29
+ saveAndContinue(): void;
30
+ cardPayment(): void;
31
+ selectPaymentMethod(type: string): void;
32
+ gotoCasetransationPage(): void;
33
+ }
@@ -41,6 +41,7 @@ export declare class ProcessRefundComponent implements OnInit {
41
41
  successMsg: string;
42
42
  navigationpage: string;
43
43
  ccdCaseNumber: string;
44
+ isFromRefundListPage: boolean;
44
45
  isConfirmButtondisabled: boolean;
45
46
  constructor(RefundsService: RefundsService, formBuilder: FormBuilder, OrderslistService: OrderslistService, paymentLibComponent: PaymentLibComponent, router: Router, activeRoute: ActivatedRoute);
46
47
  ngOnInit(): void;
@@ -1,30 +1,27 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { RefundsService } from '../../services/refunds/refunds.service';
3
- import { NotificationService } from '../../services/notification/notification.service';
4
3
  import { FormBuilder, FormGroup } from '@angular/forms';
5
4
  import { IRefundList } from '../../interfaces/IRefundList';
6
- import { IRefundsNotifications } from '../../interfaces/IRefundsNotifications';
5
+ import { PaymentViewService } from '../../services/payment-view/payment-view.service';
6
+ import { Router } from '@angular/router';
7
7
  import { OrderslistService } from '../../services/orderslist.service';
8
- import { IRefundContactDetails } from '../../interfaces/IRefundContactDetails';
9
8
  import { IRefundStatus } from '../../interfaces/IRefundStatus';
10
9
  import { PaymentLibComponent } from '../../payment-lib.component';
11
10
  export declare class RefundStatusComponent implements OnInit {
12
11
  private formBuilder;
13
12
  private refundService;
14
- private notificationService;
15
13
  private paymentLibComponent;
14
+ private paymentViewService;
15
+ private router;
16
16
  private OrderslistService;
17
17
  LOGGEDINUSERROLES: string[];
18
18
  isOldPcipalOff: boolean;
19
19
  isNewPcipalOff: boolean;
20
20
  ccdCaseNumber: string;
21
21
  isTurnOff: boolean;
22
- orderParty: string;
23
22
  refundStatusForm: FormGroup;
24
23
  selectedRefundReason: string;
25
24
  rejectedRefundList: IRefundList[];
26
- notificationList: IRefundsNotifications;
27
- notification: IRefundsNotifications;
28
25
  approvalStatus: string;
29
26
  rejectStatus: string;
30
27
  errorMessage: any;
@@ -41,11 +38,6 @@ export declare class RefundStatusComponent implements OnInit {
41
38
  refundHasError: boolean;
42
39
  refundReasons: any[];
43
40
  refundStatusHistories: IRefundStatus[];
44
- refundNotifications: IRefundStatus[];
45
- isResendOperationSuccess: boolean;
46
- isEditDetailsClicked: boolean;
47
- isEditAddressDeatilsClicked: boolean;
48
- addressDetails: IRefundContactDetails;
49
41
  refundReference: string;
50
42
  refundAmount: string;
51
43
  refundCode: string;
@@ -57,11 +49,10 @@ export declare class RefundStatusComponent implements OnInit {
57
49
  isProcessRefund: boolean;
58
50
  changedAmount: number;
59
51
  allowedRolesToAccessRefund: string[];
60
- constructor(formBuilder: FormBuilder, refundService: RefundsService, notificationService: NotificationService, paymentLibComponent: PaymentLibComponent, OrderslistService: OrderslistService);
52
+ constructor(formBuilder: FormBuilder, refundService: RefundsService, paymentLibComponent: PaymentLibComponent, paymentViewService: PaymentViewService, router: Router, OrderslistService: OrderslistService);
61
53
  ngOnInit(): void;
62
54
  check4AllowedRoles2AccessRefund: () => boolean;
63
55
  getRefundsStatusHistoryList(): void;
64
- getRefundsNotification(): void;
65
56
  goToRefundView(refundlist: IRefundList, navigationpage: string): void;
66
57
  loadCaseTransactionPage(): void;
67
58
  loadRefundListPage(): void;
@@ -75,11 +66,5 @@ export declare class RefundStatusComponent implements OnInit {
75
66
  getRefundListReason(refundListReason: any): void;
76
67
  getRefundAmount(amount: number): void;
77
68
  gotoReviewRefundConfirmationPage(): void;
78
- gotoEditAddressDetails(note: IRefundsNotifications): void;
79
- getContactDetails(obj: IRefundContactDetails): void;
80
- gotoEditDetailsPage(): void;
81
- submitEditDetail(): void;
82
- putResend(notification: IRefundsNotifications): void;
83
- gotoCasetransationPageCancelBtnClicked(obj: any): void;
84
69
  goToRefundProcessComponent(refundReference: string, refundList: IRefundList): void;
85
70
  }
@@ -1,4 +1,4 @@
1
- import { OnInit } from '@angular/core';
1
+ import { OnInit, EventEmitter } from '@angular/core';
2
2
  import { PaymentLibComponent } from '../../payment-lib.component';
3
3
  import { IPayment } from '../../interfaces/IPayment';
4
4
  import { IRemission } from '../../interfaces/IRemission';
@@ -27,6 +27,8 @@ export declare class ServiceRequestComponent implements OnInit {
27
27
  orderRemissionTotal: number;
28
28
  takePayment: boolean;
29
29
  ccdCaseNumber: boolean;
30
+ isServiceRequest: string;
31
+ goToServiceRquestComponent: EventEmitter<any>;
30
32
  servicerequest: string;
31
33
  excReference: string;
32
34
  paymentGroups: any[];
@@ -85,6 +87,7 @@ export declare class ServiceRequestComponent implements OnInit {
85
87
  remissionFeeAmt: number;
86
88
  constructor(paymentLibComponent: PaymentLibComponent, paymentViewService: PaymentViewService, OrderslistService: OrderslistService, router: Router);
87
89
  ngOnInit(): void;
90
+ goToServiceRequestPage(): void;
88
91
  goToCaseTransationPage(event: any): void;
89
92
  chkForAddRemission(feeCode: string): boolean;
90
93
  chkForPBAPayment(): boolean;
@@ -0,0 +1,6 @@
1
+ export declare class IserviceRequestCardPayment {
2
+ amount: string;
3
+ currency: string;
4
+ language: string;
5
+ constructor(amount: string);
6
+ }
@@ -0,0 +1,8 @@
1
+ export declare class IserviceRequestPbaPayment {
2
+ account_number: string;
3
+ amount: string;
4
+ currency: string;
5
+ customer_reference: string;
6
+ organisation_name: string;
7
+ constructor(account_number: string, amount: string, customer_reference: string, orgName: string);
8
+ }
@@ -1,6 +1,4 @@
1
- import { IRefundContactDetails } from './IRefundContactDetails';
2
1
  export declare class PostIssueRefundRetroRemission {
3
2
  remissionReference: string;
4
- contact_details: IRefundContactDetails;
5
- constructor(remissionReference: string, contactDeatils: any);
3
+ constructor(remissionReference: string);
6
4
  }
@@ -1,7 +1,5 @@
1
- import { IRefundContactDetails } from './IRefundContactDetails';
2
1
  export declare class PostRefundRetroRemission {
3
2
  payment_reference: string;
4
3
  refund_reason: string;
5
- contact_details: IRefundContactDetails;
6
- constructor(payment_reference: string, refund_reason: string, contactDeatils: any);
4
+ constructor(payment_reference: string, refund_reason: string);
7
5
  }
@@ -2,6 +2,7 @@ import { ChangeDetectorRef, OnInit } from '@angular/core';
2
2
  import { PaymentLibService } from './payment-lib.service';
3
3
  import { IBSPayments } from './interfaces/IBSPayments';
4
4
  import { OrderslistService } from './services/orderslist.service';
5
+ import { IPayment } from './interfaces/IPayment';
5
6
  export declare class PaymentLibComponent implements OnInit {
6
7
  private paymentLibService;
7
8
  private cd;
@@ -9,7 +10,7 @@ export declare class PaymentLibComponent implements OnInit {
9
10
  API_ROOT: string;
10
11
  BULKSCAN_API_ROOT: string;
11
12
  REFUNDS_API_ROOT: string;
12
- NOTIFICATION_API_ROOT: string;
13
+ CARDPAYMENTRETURNURL: string;
13
14
  CCD_CASE_NUMBER: string;
14
15
  EXC_REFERENCE: string;
15
16
  PAYMENT_METHOD: string;
@@ -51,6 +52,7 @@ export declare class PaymentLibComponent implements OnInit {
51
52
  isFromRefundStatusPage: boolean;
52
53
  iscancelClicked: boolean;
53
54
  isFromPaymentDetailPage: boolean;
55
+ pbaPayOrderRef: IPayment;
54
56
  isTakePayment: boolean;
55
57
  orderDetail: any[];
56
58
  orderRef: string;
@@ -2,7 +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
+ CARDPAYMENTRETURNURL: string;
6
6
  constructor();
7
7
  setApiRootUrl(apiRoot: string): void;
8
8
  getApiRootUrl(): string;
@@ -10,6 +10,6 @@ export declare class PaymentLibService {
10
10
  getBulkScanApiRootUrl(): string;
11
11
  setRefundndsApiRootUrl(refundsapiRoot: string): void;
12
12
  getRefundsApiRootUrl(): string;
13
- setNoticationApiRootUrl(notificationapiRoot: string): void;
14
- getNoticationApiRootUrl(): string;
13
+ setCardPaymentReturnUrl(cardPaymentReturnUrl: string): void;
14
+ getCardPaymentReturnUrl(): string;
15
15
  }
@@ -15,6 +15,8 @@ import { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest'
15
15
  import { IAllocationPaymentsRequest } from '../../interfaces/IAllocationPaymentsRequest';
16
16
  import { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';
17
17
  import { BehaviorSubject } from 'rxjs';
18
+ import { IserviceRequestPbaPayment } from '../../interfaces/IserviceRequestPbaPayment';
19
+ import { IserviceRequestCardPayment } from '../../interfaces/IserviceRequestCardPayment';
18
20
  import { AddRetroRemissionRequest } from '../../interfaces/AddRetroRemissionRequest';
19
21
  import { PostRefundRetroRemission } from '../../interfaces/PostRefundRetroRemission';
20
22
  import { PostIssueRefundRetroRemission } from '../../interfaces/PostIssueRefundRetroRemission';
@@ -30,6 +32,9 @@ export declare class PaymentViewService {
30
32
  getPaymentDetails(paymentReference: string, paymentMethod: string): Observable<IPayment>;
31
33
  getPaymentGroupDetails(paymentGroupReference: string): Observable<IPaymentGroup>;
32
34
  getApportionPaymentDetails(paymentReference: string): Observable<IPaymentGroup>;
35
+ getPBAaccountDetails(): Observable<any>;
36
+ postWays2PayCardPayment(serviceRef: string, body: IserviceRequestCardPayment): Observable<any>;
37
+ postPBAaccountPayment(serviceRef: string, body: IserviceRequestPbaPayment): Observable<any>;
33
38
  postBSPayments(body: AllocatePaymentRequest): Observable<any>;
34
39
  postBSUnidentifiedPayments(body: UnidentifiedPaymentsRequest): Observable<any>;
35
40
  postBSUnsolicitedPayments(body: UnsolicitedPaymentsRequest): Observable<any>;
@@ -9,7 +9,6 @@ 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';
13
12
  export declare class RefundsService {
14
13
  private http;
15
14
  private https;
@@ -26,7 +25,6 @@ export declare class RefundsService {
26
25
  getRefundStatusList(ccdCaseNumber: string): Observable<IRefundList[]>;
27
26
  getUserDetails(): Observable<any>;
28
27
  postIssueRefund(body: IssueRefundRequest): Observable<any>;
29
- putResendOrEdit(body: IPutNotificationRequest, refundRef: string, notificationType: string): Observable<any>;
30
28
  patchResubmitRefund(body: IResubmitRefundRequest, refund_reference: string): Observable<any>;
31
29
  addHeaders(options: any): any;
32
30
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hmcts/ccpay-web-component",
3
- "version": "5.0.1-beta99",
3
+ "version": "5.0.2-beta2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },