@hmcts/ccpay-web-component 5.0.7-beta42 → 5.0.7-beta44

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 (25) hide show
  1. package/bundles/hmcts-ccpay-web-component.umd.js +34 -18
  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/lib/components/add-remission/add-remission.component.js +16 -4
  6. package/esm2015/lib/components/payment-view/payment-view.component.js +6 -3
  7. package/esm2015/lib/components/process-refund/process-refund.component.js +9 -7
  8. package/esm2015/lib/components/refund-status/refund-status.component.js +11 -7
  9. package/esm2015/lib/components/service-request/service-request.component.js +5 -2
  10. package/esm5/lib/components/add-remission/add-remission.component.js +16 -4
  11. package/esm5/lib/components/payment-view/payment-view.component.js +6 -3
  12. package/esm5/lib/components/process-refund/process-refund.component.js +10 -7
  13. package/esm5/lib/components/refund-status/refund-status.component.js +12 -7
  14. package/esm5/lib/components/service-request/service-request.component.js +5 -2
  15. package/fesm2015/hmcts-ccpay-web-component.js +32 -18
  16. package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
  17. package/fesm5/hmcts-ccpay-web-component.js +34 -18
  18. package/fesm5/hmcts-ccpay-web-component.js.map +1 -1
  19. package/hmcts-ccpay-web-component.metadata.json +1 -1
  20. package/lib/components/add-remission/add-remission.component.d.ts +2 -1
  21. package/lib/components/payment-view/payment-view.component.d.ts +1 -0
  22. package/lib/components/process-refund/process-refund.component.d.ts +2 -1
  23. package/lib/components/refund-status/refund-status.component.d.ts +2 -1
  24. package/lib/components/service-request/service-request.component.d.ts +1 -0
  25. package/package.json +1 -1
@@ -125,6 +125,7 @@ export declare class AddRemissionComponent implements OnInit {
125
125
  isFromCheckAnsPage: boolean;
126
126
  refundAmtForFeeVolumes: number;
127
127
  paymentObj: IPayment;
128
+ templateInstructionType: string;
128
129
  notificationPreview: boolean;
129
130
  component: {
130
131
  account_number: string;
@@ -187,5 +188,5 @@ export declare class AddRemissionComponent implements OnInit {
187
188
  getFormattedCurrency(currency: number): string | number;
188
189
  showNotificationPreview(): void;
189
190
  hideNotificationPreview(): void;
190
- getTemplateInstructionType(paymentReference: string, payment?: IPayment): any;
191
+ getTemplateInstructionType(paymentReference: string, payment?: IPayment): string;
191
192
  }
@@ -66,6 +66,7 @@ export declare class PaymentViewComponent implements OnInit {
66
66
  isConfirmationBtnDisabled: boolean;
67
67
  refundReference: string;
68
68
  refundAmount: string;
69
+ templateInstructionType: string;
69
70
  notificationPreview: boolean;
70
71
  constructor(paymentViewService: PaymentViewService, notificationService: NotificationService, paymentLibComponent: PaymentLibComponent, cd: ChangeDetectorRef, OrderslistService: OrderslistService);
71
72
  ngAfterContentChecked(): void;
@@ -52,6 +52,7 @@ export declare class ProcessRefundComponent implements OnInit {
52
52
  isCPODown: boolean;
53
53
  isConfirmButtondisabled: boolean;
54
54
  paymentObj: IPayment;
55
+ templateInstructionType: string;
55
56
  notificationPreview: boolean;
56
57
  notificationPreviewObj: INotificationPreview;
57
58
  constructor(RefundsService: RefundsService, paymentViewService: PaymentViewService, formBuilder: FormBuilder, OrderslistService: OrderslistService, notificationService: NotificationService, paymentLibComponent: PaymentLibComponent, router: Router, activeRoute: ActivatedRoute);
@@ -70,7 +71,7 @@ export declare class ProcessRefundComponent implements OnInit {
70
71
  loadCaseTransactionPage(): void;
71
72
  resetForm(vals: any, field: any): void;
72
73
  goToCaseReview(): void;
73
- getTemplateInstructionType(paymentReference: string): string;
74
+ getTemplateInstructionType(payment: IPayment, paymentReference: string): any;
74
75
  showNotificationPreview(): void;
75
76
  hideNotificationPreview(): void;
76
77
  }
@@ -67,6 +67,7 @@ export declare class RefundStatusComponent implements OnInit {
67
67
  fees: IFee[];
68
68
  refundFees: IRefundFee[];
69
69
  paymentObj: IPayment;
70
+ templateInstructionType: string;
70
71
  notificationSentViewIndex: number;
71
72
  notificationPreview: boolean;
72
73
  notificationSentView: boolean;
@@ -98,7 +99,7 @@ export declare class RefundStatusComponent implements OnInit {
98
99
  putResend(notification: IRefundsNotifications): void;
99
100
  gotoCasetransationPageCancelBtnClicked(Event: Event): void;
100
101
  goToRefundProcessComponent(refundReference: string, refundList: IRefundList): void;
101
- getTemplateInstructionType(paymentReference: string): string;
102
+ getTemplateInstructionType(payment: IPayment, paymentReference: string): any;
102
103
  showNotificationPreview(): void;
103
104
  hideNotificationPreview(): void;
104
105
  showNotificationSentView(index: number): void;
@@ -99,6 +99,7 @@ export declare class ServiceRequestComponent implements OnInit {
99
99
  remissionFeeAmt: number;
100
100
  isContinueBtnDisabled: boolean;
101
101
  isFullyRefund: boolean;
102
+ templateInstructionType: string;
102
103
  notificationPreview: boolean;
103
104
  constructor(paymentLibComponent: PaymentLibComponent, paymentViewService: PaymentViewService, OrderslistService: OrderslistService, notificationService: NotificationService, cd: ChangeDetectorRef, router: Router);
104
105
  ngOnInit(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hmcts/ccpay-web-component",
3
- "version": "5.0.7-beta42",
3
+ "version": "5.0.7-beta44",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },