@hmcts/ccpay-web-component 6.0.0-beta9 → 6.0.0

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 (317) hide show
  1. package/esm2022/hmcts-ccpay-web-component.mjs +5 -0
  2. package/esm2022/lib/components/add-remission/add-remission.component.mjs +1189 -0
  3. package/esm2022/lib/components/allocate-payments/allocate-payments.component.mjs +407 -0
  4. package/esm2022/lib/components/card-details/card-details.component.mjs +32 -0
  5. package/esm2022/lib/components/case-transactions/case-transactions.component.mjs +798 -0
  6. package/esm2022/lib/components/contact-details/contact-details.component.mjs +338 -0
  7. package/esm2022/lib/components/error-banner/error-banner.component.mjs +18 -0
  8. package/esm2022/lib/components/fee-summary/fee-summary.component.mjs +247 -0
  9. package/esm2022/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.mjs +195 -0
  10. package/esm2022/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.mjs +255 -0
  11. package/esm2022/lib/components/notification-preview/notification-preview.component.mjs +79 -0
  12. package/esm2022/lib/components/page-not-found.component.mjs +17 -0
  13. package/esm2022/lib/components/payment-list/payment-list.component.mjs +36 -0
  14. package/esm2022/lib/components/payment-view/payment-view.component.mjs +416 -0
  15. package/esm2022/lib/components/pba-details/pba-details.component.mjs +18 -0
  16. package/esm2022/lib/components/pba-payment/pba-payment.component.mjs +151 -0
  17. package/esm2022/lib/components/process-refund/process-refund.component.mjs +417 -0
  18. package/esm2022/lib/components/processed-payments/processed-payments.component.mjs +37 -0
  19. package/esm2022/lib/components/refund-list/refund-list.component.mjs +73 -0
  20. package/esm2022/lib/components/refund-status/refund-status.component.mjs +453 -0
  21. package/esm2022/lib/components/reports/reports.component.mjs +291 -0
  22. package/esm2022/lib/components/service-request/service-request.component.mjs +456 -0
  23. package/esm2022/lib/components/status-history/status-history.component.mjs +33 -0
  24. package/esm2022/lib/components/table/table.component.mjs +128 -0
  25. package/esm2022/lib/components/unprocessed-payments/unprocessed-payments.component.mjs +236 -0
  26. package/esm2022/lib/interfaces/AddRemissionRequest.mjs +17 -0
  27. package/esm2022/lib/interfaces/AddRetroRemissionRequest.mjs +9 -0
  28. package/esm2022/lib/interfaces/AllocatePaymentRequest.mjs +41 -0
  29. package/esm2022/lib/interfaces/IAllocationPaymentsRequest.mjs +20 -0
  30. package/esm2022/lib/interfaces/IBSPayments.mjs +2 -0
  31. package/esm2022/lib/interfaces/ICardDetails.mjs +2 -0
  32. package/esm2022/lib/interfaces/IFee.mjs +2 -0
  33. package/esm2022/lib/interfaces/INotificationPreview.mjs +2 -0
  34. package/esm2022/lib/interfaces/IOrderReferenceFee.mjs +2 -0
  35. package/esm2022/lib/interfaces/IPatchRefundAction.mjs +2 -0
  36. package/esm2022/lib/interfaces/IPayment.mjs +2 -0
  37. package/esm2022/lib/interfaces/IPaymentFailure.mjs +2 -0
  38. package/esm2022/lib/interfaces/IPaymentGroup.mjs +2 -0
  39. package/esm2022/lib/interfaces/IPaymentStatus.mjs +12 -0
  40. package/esm2022/lib/interfaces/IPaymentView.mjs +2 -0
  41. package/esm2022/lib/interfaces/IPayments.mjs +2 -0
  42. package/esm2022/lib/interfaces/IPutNotificationRequest.mjs +13 -0
  43. package/esm2022/lib/interfaces/IRefundAction.mjs +2 -0
  44. package/esm2022/lib/interfaces/IRefundContactDetails.mjs +2 -0
  45. package/esm2022/lib/interfaces/IRefundFee.mjs +2 -0
  46. package/esm2022/lib/interfaces/IRefundList.mjs +2 -0
  47. package/esm2022/lib/interfaces/IRefundReasons.mjs +2 -0
  48. package/esm2022/lib/interfaces/IRefundRejectReason.mjs +2 -0
  49. package/esm2022/lib/interfaces/IRefundStatus.mjs +2 -0
  50. package/esm2022/lib/interfaces/IRefundStatusHistory.mjs +2 -0
  51. package/esm2022/lib/interfaces/IRefundsNotifications.mjs +2 -0
  52. package/esm2022/lib/interfaces/IRemission.mjs +2 -0
  53. package/esm2022/lib/interfaces/IResubmitRefundRequest.mjs +13 -0
  54. package/esm2022/lib/interfaces/IStatusHistories.mjs +2 -0
  55. package/esm2022/lib/interfaces/IStatusHistory.mjs +2 -0
  56. package/esm2022/lib/interfaces/IserviceRequestCardPayment.mjs +11 -0
  57. package/esm2022/lib/interfaces/IserviceRequestPbaPayment.mjs +15 -0
  58. package/esm2022/lib/interfaces/IssueRefundRequest.mjs +11 -0
  59. package/esm2022/lib/interfaces/NotificationPreviewRequest.mjs +45 -0
  60. package/esm2022/lib/interfaces/PayhubAntennaRequest.mjs +12 -0
  61. package/esm2022/lib/interfaces/PaymentToPayhubRequest.mjs +15 -0
  62. package/esm2022/lib/interfaces/PostIssueRefundRetroRemission.mjs +9 -0
  63. package/esm2022/lib/interfaces/PostRefundRetroRemission.mjs +18 -0
  64. package/esm2022/lib/interfaces/RefundsRequest.mjs +9 -0
  65. package/esm2022/lib/interfaces/UnidentifiedPaymentsRequest.mjs +16 -0
  66. package/esm2022/lib/interfaces/UnsolicitedPaymentsRequest.mjs +22 -0
  67. package/esm2022/lib/payment-lib.component.mjs +288 -0
  68. package/esm2022/lib/payment-lib.module.mjs +187 -0
  69. package/esm2022/lib/payment-lib.service.mjs +49 -0
  70. package/esm2022/lib/pipes/capitalize.pipe.mjs +18 -0
  71. package/esm2022/lib/pipes/ccd-hyphens.pipe.mjs +22 -0
  72. package/esm2022/lib/pipes/key-value.pipe.mjs +23 -0
  73. package/esm2022/lib/pipes/sanitize-html.pipe.mjs +20 -0
  74. package/esm2022/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.mjs +87 -0
  75. package/esm2022/lib/services/card-details/card-details.service.mjs +39 -0
  76. package/esm2022/lib/services/case-transactions/case-transactions.service.mjs +39 -0
  77. package/esm2022/lib/services/notification/notification.service.mjs +70 -0
  78. package/esm2022/lib/services/orderslist.service.mjs +154 -0
  79. package/esm2022/lib/services/payment-list/payment-list.service.mjs +40 -0
  80. package/esm2022/lib/services/payment-view/payment-view.service.mjs +152 -0
  81. package/esm2022/lib/services/refunds/refunds.service.mjs +117 -0
  82. package/esm2022/lib/services/shared/error-handler.service.mjs +96 -0
  83. package/esm2022/lib/services/shared/httpclient/webcomponent.http.client.mjs +64 -0
  84. package/esm2022/lib/services/shared/logger/console-logger.service.mjs +43 -0
  85. package/esm2022/lib/services/shared/logger/logger.service.mjs +23 -0
  86. package/{esm2015/lib/services/status-history/status-history.service.js → esm2022/lib/services/status-history/status-history.service.mjs} +13 -51
  87. package/esm2022/lib/services/xl-file/xl-file.service.mjs +153 -0
  88. package/esm2022/public_api.mjs +7 -0
  89. package/fesm2022/hmcts-ccpay-web-component.mjs +7874 -0
  90. package/fesm2022/hmcts-ccpay-web-component.mjs.map +1 -0
  91. package/index.d.ts +5 -0
  92. package/lib/components/add-remission/add-remission.component.d.ts +59 -7
  93. package/lib/components/allocate-payments/allocate-payments.component.d.ts +5 -6
  94. package/lib/components/card-details/card-details.component.d.ts +4 -1
  95. package/lib/components/case-transactions/case-transactions.component.d.ts +9 -7
  96. package/lib/components/contact-details/contact-details.component.d.ts +52 -0
  97. package/lib/components/error-banner/error-banner.component.d.ts +3 -0
  98. package/lib/components/fee-summary/fee-summary.component.d.ts +4 -3
  99. package/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.d.ts +4 -1
  100. package/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.d.ts +4 -1
  101. package/lib/components/notification-preview/notification-preview.component.d.ts +30 -0
  102. package/lib/components/page-not-found.component.d.ts +3 -0
  103. package/lib/components/payment-list/payment-list.component.d.ts +4 -1
  104. package/lib/components/payment-view/payment-view.component.d.ts +46 -12
  105. package/lib/components/pba-details/pba-details.component.d.ts +3 -0
  106. package/lib/components/pba-payment/pba-payment.component.d.ts +9 -1
  107. package/lib/components/process-refund/process-refund.component.d.ts +22 -2
  108. package/lib/components/processed-payments/processed-payments.component.d.ts +3 -0
  109. package/lib/components/refund-list/refund-list.component.d.ts +3 -0
  110. package/lib/components/refund-status/refund-status.component.d.ts +50 -10
  111. package/lib/components/reports/reports.component.d.ts +10 -5
  112. package/lib/components/service-request/service-request.component.d.ts +42 -14
  113. package/lib/components/status-history/status-history.component.d.ts +4 -1
  114. package/lib/components/table/table.component.d.ts +5 -1
  115. package/lib/components/unprocessed-payments/unprocessed-payments.component.d.ts +4 -5
  116. package/lib/interfaces/IFee.d.ts +6 -0
  117. package/lib/interfaces/INotificationPreview.d.ts +27 -0
  118. package/lib/interfaces/IPayment.d.ts +3 -0
  119. package/lib/interfaces/IPaymentFailure.d.ts +13 -0
  120. package/lib/interfaces/IPutNotificationRequest.d.ts +6 -0
  121. package/lib/interfaces/IRefundContactDetails.d.ts +9 -0
  122. package/lib/interfaces/IRefundFee.d.ts +7 -0
  123. package/lib/interfaces/IRefundList.d.ts +5 -0
  124. package/lib/interfaces/IRefundsNotifications.d.ts +16 -0
  125. package/lib/interfaces/IRemission.d.ts +3 -0
  126. package/lib/interfaces/IResubmitRefundRequest.d.ts +5 -1
  127. package/lib/interfaces/IserviceRequestPbaPayment.d.ts +2 -1
  128. package/lib/interfaces/NotificationPreviewRequest.d.ts +24 -0
  129. package/lib/interfaces/PostIssueRefundRetroRemission.d.ts +3 -1
  130. package/lib/interfaces/PostRefundRetroRemission.d.ts +7 -1
  131. package/lib/payment-lib.component.d.ts +7 -5
  132. package/lib/payment-lib.module.d.ts +40 -0
  133. package/lib/payment-lib.service.d.ts +9 -3
  134. package/lib/pipes/capitalize.pipe.d.ts +3 -0
  135. package/lib/pipes/ccd-hyphens.pipe.d.ts +3 -0
  136. package/lib/pipes/key-value.pipe.d.ts +3 -0
  137. package/lib/pipes/sanitize-html.pipe.d.ts +3 -0
  138. package/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.d.ts +4 -1
  139. package/lib/services/card-details/card-details.service.d.ts +3 -0
  140. package/lib/services/case-transactions/case-transactions.service.d.ts +4 -1
  141. package/lib/services/notification/notification.service.d.ts +21 -0
  142. package/lib/services/orderslist.service.d.ts +3 -0
  143. package/lib/services/payment-list/payment-list.service.d.ts +3 -0
  144. package/lib/services/payment-view/payment-view.service.d.ts +6 -1
  145. package/lib/services/refunds/refunds.service.d.ts +6 -1
  146. package/lib/services/shared/error-handler.service.d.ts +5 -2
  147. package/lib/services/shared/httpclient/webcomponent.http.client.d.ts +3 -0
  148. package/lib/services/shared/logger/console-logger.service.d.ts +6 -3
  149. package/lib/services/shared/logger/logger.service.d.ts +3 -0
  150. package/lib/services/status-history/status-history.service.d.ts +3 -0
  151. package/lib/services/xl-file/xl-file.service.d.ts +4 -0
  152. package/package.json +18 -14
  153. package/bundles/hmcts-ccpay-web-component.umd.js +0 -9664
  154. package/bundles/hmcts-ccpay-web-component.umd.js.map +0 -1
  155. package/bundles/hmcts-ccpay-web-component.umd.min.js +0 -2
  156. package/bundles/hmcts-ccpay-web-component.umd.min.js.map +0 -1
  157. package/esm2015/hmcts-ccpay-web-component.js +0 -48
  158. package/esm2015/lib/components/add-remission/add-remission.component.js +0 -1083
  159. package/esm2015/lib/components/allocate-payments/allocate-payments.component.js +0 -692
  160. package/esm2015/lib/components/card-details/card-details.component.js +0 -71
  161. package/esm2015/lib/components/case-transactions/case-transactions.component.js +0 -1298
  162. package/esm2015/lib/components/error-banner/error-banner.component.js +0 -30
  163. package/esm2015/lib/components/fee-summary/fee-summary.component.js +0 -482
  164. package/esm2015/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.js +0 -342
  165. package/esm2015/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.js +0 -436
  166. package/esm2015/lib/components/page-not-found.component.js +0 -15
  167. package/esm2015/lib/components/payment-list/payment-list.component.js +0 -75
  168. package/esm2015/lib/components/payment-view/payment-view.component.js +0 -514
  169. package/esm2015/lib/components/pba-details/pba-details.component.js +0 -30
  170. package/esm2015/lib/components/pba-payment/pba-payment.component.js +0 -205
  171. package/esm2015/lib/components/process-refund/process-refund.component.js +0 -455
  172. package/esm2015/lib/components/processed-payments/processed-payments.component.js +0 -72
  173. package/esm2015/lib/components/refund-list/refund-list.component.js +0 -127
  174. package/esm2015/lib/components/refund-status/refund-status.component.js +0 -497
  175. package/esm2015/lib/components/reports/reports.component.js +0 -357
  176. package/esm2015/lib/components/service-request/service-request.component.js +0 -626
  177. package/esm2015/lib/components/status-history/status-history.component.js +0 -68
  178. package/esm2015/lib/components/table/table.component.js +0 -196
  179. package/esm2015/lib/components/unprocessed-payments/unprocessed-payments.component.js +0 -385
  180. package/esm2015/lib/interfaces/AddRemissionRequest.js +0 -37
  181. package/esm2015/lib/interfaces/AddRetroRemissionRequest.js +0 -21
  182. package/esm2015/lib/interfaces/AllocatePaymentRequest.js +0 -68
  183. package/esm2015/lib/interfaces/IAllocationPaymentsRequest.js +0 -39
  184. package/esm2015/lib/interfaces/IBSPayments.js +0 -45
  185. package/esm2015/lib/interfaces/ICardDetails.js +0 -21
  186. package/esm2015/lib/interfaces/IFee.js +0 -53
  187. package/esm2015/lib/interfaces/IOrderReferenceFee.js +0 -25
  188. package/esm2015/lib/interfaces/IPatchRefundAction.js +0 -15
  189. package/esm2015/lib/interfaces/IPayment.js +0 -65
  190. package/esm2015/lib/interfaces/IPaymentGroup.js +0 -19
  191. package/esm2015/lib/interfaces/IPaymentStatus.js +0 -27
  192. package/esm2015/lib/interfaces/IPaymentView.js +0 -17
  193. package/esm2015/lib/interfaces/IPayments.js +0 -13
  194. package/esm2015/lib/interfaces/IRefundAction.js +0 -15
  195. package/esm2015/lib/interfaces/IRefundList.js +0 -29
  196. package/esm2015/lib/interfaces/IRefundReasons.js +0 -19
  197. package/esm2015/lib/interfaces/IRefundRejectReason.js +0 -15
  198. package/esm2015/lib/interfaces/IRefundStatus.js +0 -23
  199. package/esm2015/lib/interfaces/IRefundStatusHistory.js +0 -15
  200. package/esm2015/lib/interfaces/IRemission.js +0 -25
  201. package/esm2015/lib/interfaces/IResubmitRefundRequest.js +0 -21
  202. package/esm2015/lib/interfaces/IStatusHistories.js +0 -19
  203. package/esm2015/lib/interfaces/IStatusHistory.js +0 -21
  204. package/esm2015/lib/interfaces/IserviceRequestCardPayment.js +0 -23
  205. package/esm2015/lib/interfaces/IserviceRequestPbaPayment.js +0 -28
  206. package/esm2015/lib/interfaces/IssueRefundRequest.js +0 -25
  207. package/esm2015/lib/interfaces/PayhubAntennaRequest.js +0 -28
  208. package/esm2015/lib/interfaces/PaymentToPayhubRequest.js +0 -37
  209. package/esm2015/lib/interfaces/PostIssueRefundRetroRemission.js +0 -17
  210. package/esm2015/lib/interfaces/PostRefundRetroRemission.js +0 -21
  211. package/esm2015/lib/interfaces/RefundsRequest.js +0 -21
  212. package/esm2015/lib/interfaces/UnidentifiedPaymentsRequest.js +0 -31
  213. package/esm2015/lib/interfaces/UnsolicitedPaymentsRequest.js +0 -43
  214. package/esm2015/lib/payment-lib.component.js +0 -275
  215. package/esm2015/lib/payment-lib.module.js +0 -99
  216. package/esm2015/lib/payment-lib.service.js +0 -80
  217. package/esm2015/lib/pipes/capitalize.pipe.js +0 -24
  218. package/esm2015/lib/pipes/ccd-hyphens.pipe.js +0 -29
  219. package/esm2015/lib/pipes/key-value.pipe.js +0 -30
  220. package/esm2015/lib/pipes/sanitize-html.pipe.js +0 -36
  221. package/esm2015/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.js +0 -180
  222. package/esm2015/lib/services/card-details/card-details.service.js +0 -76
  223. package/esm2015/lib/services/case-transactions/case-transactions.service.js +0 -76
  224. package/esm2015/lib/services/orderslist.service.js +0 -403
  225. package/esm2015/lib/services/payment-list/payment-list.service.js +0 -79
  226. package/esm2015/lib/services/payment-view/payment-view.service.js +0 -285
  227. package/esm2015/lib/services/refunds/refunds.service.js +0 -203
  228. package/esm2015/lib/services/shared/error-handler.service.js +0 -108
  229. package/esm2015/lib/services/shared/httpclient/webcomponent.http.client.js +0 -124
  230. package/esm2015/lib/services/shared/logger/console-logger.service.js +0 -67
  231. package/esm2015/lib/services/shared/logger/logger.service.js +0 -49
  232. package/esm2015/lib/services/xl-file/xl-file.service.js +0 -181
  233. package/esm2015/public_api.js +0 -11
  234. package/esm5/hmcts-ccpay-web-component.js +0 -48
  235. package/esm5/lib/components/add-remission/add-remission.component.js +0 -1168
  236. package/esm5/lib/components/allocate-payments/allocate-payments.component.js +0 -745
  237. package/esm5/lib/components/card-details/card-details.component.js +0 -77
  238. package/esm5/lib/components/case-transactions/case-transactions.component.js +0 -1443
  239. package/esm5/lib/components/error-banner/error-banner.component.js +0 -36
  240. package/esm5/lib/components/fee-summary/fee-summary.component.js +0 -542
  241. package/esm5/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.js +0 -371
  242. package/esm5/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.js +0 -474
  243. package/esm5/lib/components/page-not-found.component.js +0 -17
  244. package/esm5/lib/components/payment-list/payment-list.component.js +0 -83
  245. package/esm5/lib/components/payment-view/payment-view.component.js +0 -602
  246. package/esm5/lib/components/pba-details/pba-details.component.js +0 -36
  247. package/esm5/lib/components/pba-payment/pba-payment.component.js +0 -222
  248. package/esm5/lib/components/process-refund/process-refund.component.js +0 -536
  249. package/esm5/lib/components/processed-payments/processed-payments.component.js +0 -83
  250. package/esm5/lib/components/refund-list/refund-list.component.js +0 -130
  251. package/esm5/lib/components/refund-status/refund-status.component.js +0 -558
  252. package/esm5/lib/components/reports/reports.component.js +0 -398
  253. package/esm5/lib/components/service-request/service-request.component.js +0 -702
  254. package/esm5/lib/components/status-history/status-history.component.js +0 -70
  255. package/esm5/lib/components/table/table.component.js +0 -229
  256. package/esm5/lib/components/unprocessed-payments/unprocessed-payments.component.js +0 -434
  257. package/esm5/lib/interfaces/AddRemissionRequest.js +0 -32
  258. package/esm5/lib/interfaces/AddRetroRemissionRequest.js +0 -19
  259. package/esm5/lib/interfaces/AllocatePaymentRequest.js +0 -63
  260. package/esm5/lib/interfaces/IAllocationPaymentsRequest.js +0 -34
  261. package/esm5/lib/interfaces/IBSPayments.js +0 -45
  262. package/esm5/lib/interfaces/ICardDetails.js +0 -21
  263. package/esm5/lib/interfaces/IFee.js +0 -53
  264. package/esm5/lib/interfaces/IOrderReferenceFee.js +0 -25
  265. package/esm5/lib/interfaces/IPatchRefundAction.js +0 -15
  266. package/esm5/lib/interfaces/IPayment.js +0 -65
  267. package/esm5/lib/interfaces/IPaymentGroup.js +0 -19
  268. package/esm5/lib/interfaces/IPaymentStatus.js +0 -31
  269. package/esm5/lib/interfaces/IPaymentView.js +0 -17
  270. package/esm5/lib/interfaces/IPayments.js +0 -13
  271. package/esm5/lib/interfaces/IRefundAction.js +0 -15
  272. package/esm5/lib/interfaces/IRefundList.js +0 -29
  273. package/esm5/lib/interfaces/IRefundReasons.js +0 -19
  274. package/esm5/lib/interfaces/IRefundRejectReason.js +0 -15
  275. package/esm5/lib/interfaces/IRefundStatus.js +0 -23
  276. package/esm5/lib/interfaces/IRefundStatusHistory.js +0 -15
  277. package/esm5/lib/interfaces/IRemission.js +0 -25
  278. package/esm5/lib/interfaces/IResubmitRefundRequest.js +0 -19
  279. package/esm5/lib/interfaces/IStatusHistories.js +0 -19
  280. package/esm5/lib/interfaces/IStatusHistory.js +0 -21
  281. package/esm5/lib/interfaces/IserviceRequestCardPayment.js +0 -22
  282. package/esm5/lib/interfaces/IserviceRequestPbaPayment.js +0 -25
  283. package/esm5/lib/interfaces/IssueRefundRequest.js +0 -22
  284. package/esm5/lib/interfaces/PayhubAntennaRequest.js +0 -25
  285. package/esm5/lib/interfaces/PaymentToPayhubRequest.js +0 -34
  286. package/esm5/lib/interfaces/PostIssueRefundRetroRemission.js +0 -16
  287. package/esm5/lib/interfaces/PostRefundRetroRemission.js +0 -19
  288. package/esm5/lib/interfaces/RefundsRequest.js +0 -19
  289. package/esm5/lib/interfaces/UnidentifiedPaymentsRequest.js +0 -28
  290. package/esm5/lib/interfaces/UnsolicitedPaymentsRequest.js +0 -37
  291. package/esm5/lib/payment-lib.component.js +0 -244
  292. package/esm5/lib/payment-lib.module.js +0 -103
  293. package/esm5/lib/payment-lib.service.js +0 -111
  294. package/esm5/lib/pipes/capitalize.pipe.js +0 -32
  295. package/esm5/lib/pipes/ccd-hyphens.pipe.js +0 -37
  296. package/esm5/lib/pipes/key-value.pipe.js +0 -37
  297. package/esm5/lib/pipes/sanitize-html.pipe.js +0 -39
  298. package/esm5/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.js +0 -218
  299. package/esm5/lib/services/card-details/card-details.service.js +0 -76
  300. package/esm5/lib/services/case-transactions/case-transactions.service.js +0 -76
  301. package/esm5/lib/services/orderslist.service.js +0 -531
  302. package/esm5/lib/services/payment-list/payment-list.service.js +0 -80
  303. package/esm5/lib/services/payment-view/payment-view.service.js +0 -385
  304. package/esm5/lib/services/refunds/refunds.service.js +0 -243
  305. package/esm5/lib/services/shared/error-handler.service.js +0 -119
  306. package/esm5/lib/services/shared/httpclient/webcomponent.http.client.js +0 -154
  307. package/esm5/lib/services/shared/logger/console-logger.service.js +0 -88
  308. package/esm5/lib/services/shared/logger/logger.service.js +0 -68
  309. package/esm5/lib/services/status-history/status-history.service.js +0 -80
  310. package/esm5/lib/services/xl-file/xl-file.service.js +0 -221
  311. package/esm5/public_api.js +0 -11
  312. package/fesm2015/hmcts-ccpay-web-component.js +0 -8525
  313. package/fesm2015/hmcts-ccpay-web-component.js.map +0 -1
  314. package/fesm5/hmcts-ccpay-web-component.js +0 -9773
  315. package/fesm5/hmcts-ccpay-web-component.js.map +0 -1
  316. package/hmcts-ccpay-web-component.d.ts +0 -43
  317. package/hmcts-ccpay-web-component.metadata.json +0 -1
@@ -1,6 +1,7 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { PaymentViewService } from '../../services/payment-view/payment-view.service';
3
- import { PaymentLibComponent } from '../../payment-lib.component';
3
+ import type { PaymentLibComponent } from '../../payment-lib.component';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class PbaPaymentComponent implements OnInit {
5
6
  private paymentLibComponent;
6
7
  private paymentViewService;
@@ -16,13 +17,20 @@ export declare class PbaPaymentComponent implements OnInit {
16
17
  isGetPBAAccountSucceed: boolean;
17
18
  selectedPbaAccount: string;
18
19
  pbaAccountRef: string;
20
+ isPbaAccountSelected: boolean;
21
+ isCardPaymentSelected: boolean;
22
+ isPBADropdownSelected: boolean;
19
23
  isContinueButtondisabled: boolean;
20
24
  isPBAAccountPaymentSuccess: boolean;
21
25
  pbaAccountrPaymentResult: any;
26
+ orgName: string;
22
27
  constructor(paymentLibComponent: PaymentLibComponent, paymentViewService: PaymentViewService);
23
28
  ngOnInit(): void;
24
29
  selectpbaaccount(args: any): void;
25
30
  saveAndContinue(): void;
26
31
  cardPayment(): void;
32
+ selectPaymentMethod(type: string): void;
27
33
  gotoCasetransationPage(): void;
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<PbaPaymentComponent, never>;
35
+ static ɵcmp: i0.ɵɵComponentDeclaration<PbaPaymentComponent, "ccpay-pba-payment", never, { "pbaPayOrderRef": { "alias": "pbaPayOrderRef"; "required": false; }; }, {}, never, never, false, never>;
28
36
  }
@@ -3,14 +3,21 @@ import { FormBuilder, FormGroup } from '@angular/forms';
3
3
  import { RefundsService } from '../../services/refunds/refunds.service';
4
4
  import { IRefundAction } from '../../interfaces/IRefundAction';
5
5
  import { IRefundList } from '../../interfaces/IRefundList';
6
+ import { IPayment } from '../../interfaces/IPayment';
6
7
  import { IRefundRejectReason } from '../../interfaces/IRefundRejectReason';
7
8
  import { OrderslistService } from '../../services/orderslist.service';
8
- import { PaymentLibComponent } from '../../payment-lib.component';
9
+ import { NotificationService } from '../../services/notification/notification.service';
10
+ import { PaymentViewService } from '../../services/payment-view/payment-view.service';
11
+ import type { PaymentLibComponent } from '../../payment-lib.component';
9
12
  import { ActivatedRoute, Router } from '@angular/router';
13
+ import { INotificationPreview } from '../../interfaces/INotificationPreview';
14
+ import * as i0 from "@angular/core";
10
15
  export declare class ProcessRefundComponent implements OnInit {
11
16
  private RefundsService;
17
+ private paymentViewService;
12
18
  private formBuilder;
13
19
  private OrderslistService;
20
+ private notificationService;
14
21
  private paymentLibComponent;
15
22
  private router;
16
23
  private activeRoute;
@@ -42,10 +49,17 @@ export declare class ProcessRefundComponent implements OnInit {
42
49
  navigationpage: string;
43
50
  ccdCaseNumber: string;
44
51
  isFromRefundListPage: boolean;
52
+ cpoDetails: any;
53
+ isCPODown: boolean;
45
54
  isConfirmButtondisabled: boolean;
46
- constructor(RefundsService: RefundsService, formBuilder: FormBuilder, OrderslistService: OrderslistService, paymentLibComponent: PaymentLibComponent, router: Router, activeRoute: ActivatedRoute);
55
+ paymentObj: IPayment;
56
+ templateInstructionType: string;
57
+ notificationPreview: boolean;
58
+ notificationPreviewObj: INotificationPreview;
59
+ constructor(RefundsService: RefundsService, paymentViewService: PaymentViewService, formBuilder: FormBuilder, OrderslistService: OrderslistService, notificationService: NotificationService, paymentLibComponent: PaymentLibComponent, router: Router, activeRoute: ActivatedRoute);
47
60
  ngOnInit(): void;
48
61
  checkRefundActions(code: string): void;
62
+ getNotificationPreviewObj(notificationPreviewObj: INotificationPreview): void;
49
63
  processRefundSubmit(): void;
50
64
  getErrorMessage(isErrorExist: any, status: any, errorMsg: any, err: any): {
51
65
  title: string;
@@ -55,6 +69,12 @@ export declare class ProcessRefundComponent implements OnInit {
55
69
  loadRefundListPage(): void;
56
70
  loadRefundsHomePage(): void;
57
71
  redirecttoRefundListPage(): void;
72
+ loadCaseTransactionPage(): void;
58
73
  resetForm(vals: any, field: any): void;
59
74
  goToCaseReview(): void;
75
+ getTemplateInstructionType(payment: IPayment, paymentReference: string): void;
76
+ showNotificationPreview(): void;
77
+ hideNotificationPreview(): void;
78
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProcessRefundComponent, never>;
79
+ static ɵcmp: i0.ɵɵComponentDeclaration<ProcessRefundComponent, "ccpay-process-refund", never, { "refundReference": { "alias": "refundReference"; "required": false; }; "refundlistsource": { "alias": "refundlistsource"; "required": false; }; }, {}, never, never, false, never>;
60
80
  }
@@ -2,6 +2,7 @@ import { OnInit, EventEmitter } from '@angular/core';
2
2
  import { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';
3
3
  import { IPayment } from '../../interfaces/IPayment';
4
4
  import { Router } from '@angular/router';
5
+ import * as i0 from "@angular/core";
5
6
  export declare class ProcessedPaymentsComponent implements OnInit {
6
7
  private router;
7
8
  private bulkScaningPaymentService;
@@ -11,4 +12,6 @@ export declare class ProcessedPaymentsComponent implements OnInit {
11
12
  ngOnInit(): void;
12
13
  trimUnderscore(method: string): string;
13
14
  redirectToPaymentViewPage(paymentGroupReference: string, paymentReference: string, paymentMethod: string): void;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProcessedPaymentsComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<ProcessedPaymentsComponent, "ccpay-app-processed-payments", never, { "NONPAYMENTS": { "alias": "NONPAYMENTS"; "required": false; }; }, { "goToPaymentViewComponent": "goToPaymentViewComponent"; }, never, never, false, never>;
14
17
  }
@@ -1,6 +1,7 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { RefundsService } from '../../services/refunds/refunds.service';
3
3
  import { IRefundList } from '../../interfaces/IRefundList';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class RefundListComponent implements OnInit {
5
6
  private refundService;
6
7
  USERID: string;
@@ -20,4 +21,6 @@ export declare class RefundListComponent implements OnInit {
20
21
  isAuthorized: boolean;
21
22
  userLst: any;
22
23
  ngOnInit(): void;
24
+ static ɵfac: i0.ɵɵFactoryDeclaration<RefundListComponent, never>;
25
+ static ɵcmp: i0.ɵɵComponentDeclaration<RefundListComponent, "ccpay-refund-list", never, { "USERID": { "alias": "USERID"; "required": false; }; "LOGGEDINUSERROLES": { "alias": "LOGGEDINUSERROLES"; "required": false; }; "LOGGEDINUSEREMAIL": { "alias": "LOGGEDINUSEREMAIL"; "required": false; }; }, {}, never, never, false, never>;
23
26
  }
@@ -1,27 +1,35 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { RefundsService } from '../../services/refunds/refunds.service';
3
+ import { NotificationService } from '../../services/notification/notification.service';
3
4
  import { FormBuilder, FormGroup } from '@angular/forms';
4
5
  import { IRefundList } from '../../interfaces/IRefundList';
5
- import { PaymentViewService } from '../../services/payment-view/payment-view.service';
6
- import { Router } from '@angular/router';
6
+ import { IRefundsNotifications } from '../../interfaces/IRefundsNotifications';
7
7
  import { OrderslistService } from '../../services/orderslist.service';
8
+ import { IRefundContactDetails } from '../../interfaces/IRefundContactDetails';
8
9
  import { IRefundStatus } from '../../interfaces/IRefundStatus';
9
- import { PaymentLibComponent } from '../../payment-lib.component';
10
+ import type { PaymentLibComponent } from '../../payment-lib.component';
11
+ import { PaymentViewService } from '../../services/payment-view/payment-view.service';
12
+ import { IPayment } from '../../interfaces/IPayment';
13
+ import { IFee } from '../../interfaces/IFee';
14
+ import { IRefundFee } from '../../interfaces/IRefundFee';
15
+ import * as i0 from "@angular/core";
10
16
  export declare class RefundStatusComponent implements OnInit {
11
17
  private formBuilder;
12
18
  private refundService;
19
+ private notificationService;
13
20
  private paymentLibComponent;
14
- private paymentViewService;
15
- private router;
16
21
  private OrderslistService;
22
+ private paymentViewService;
17
23
  LOGGEDINUSERROLES: string[];
18
- isOldPcipalOff: boolean;
19
- isNewPcipalOff: boolean;
24
+ API_ROOT: string;
20
25
  ccdCaseNumber: string;
21
26
  isTurnOff: boolean;
27
+ orderParty: string;
22
28
  refundStatusForm: FormGroup;
23
29
  selectedRefundReason: string;
24
30
  rejectedRefundList: IRefundList[];
31
+ notificationList: any;
32
+ notification: any;
25
33
  approvalStatus: string;
26
34
  rejectStatus: string;
27
35
  errorMessage: any;
@@ -38,33 +46,65 @@ export declare class RefundStatusComponent implements OnInit {
38
46
  refundHasError: boolean;
39
47
  refundReasons: any[];
40
48
  refundStatusHistories: IRefundStatus[];
49
+ refundNotifications: IRefundStatus[];
50
+ isResendOperationSuccess: boolean;
51
+ isEditDetailsClicked: boolean;
52
+ isEditAddressDeatilsClicked: boolean;
53
+ addressDetails: IRefundContactDetails;
41
54
  refundReference: string;
42
55
  refundAmount: string;
43
56
  refundCode: string;
44
57
  isRefundBtnDisabled: boolean;
58
+ isFromPayBubble: boolean;
45
59
  oldRefundReason: string;
46
60
  refundreason: string;
47
61
  navigationpage: string;
48
62
  isLastUpdatedByCurrentUser: boolean;
49
63
  isProcessRefund: boolean;
50
64
  changedAmount: number;
65
+ isRemissionsMatch: boolean;
66
+ payment: IPayment;
67
+ changeRefundReason: string;
68
+ fees: IFee[];
69
+ refundFees: IRefundFee[];
70
+ paymentObj: IPayment;
71
+ templateInstructionType: string;
72
+ notificationSentViewIndex: number;
73
+ notificationPreview: boolean;
74
+ notificationSentView: boolean;
51
75
  allowedRolesToAccessRefund: string[];
52
- constructor(formBuilder: FormBuilder, refundService: RefundsService, paymentLibComponent: PaymentLibComponent, paymentViewService: PaymentViewService, router: Router, OrderslistService: OrderslistService);
76
+ constructor(formBuilder: FormBuilder, refundService: RefundsService, notificationService: NotificationService, paymentLibComponent: PaymentLibComponent, OrderslistService: OrderslistService, paymentViewService: PaymentViewService);
53
77
  ngOnInit(): void;
54
- check4AllowedRoles2AccessRefund: () => boolean;
55
78
  getRefundsStatusHistoryList(): void;
79
+ getRefundsNotification(): void;
56
80
  goToRefundView(refundlist: IRefundList, navigationpage: string): void;
57
81
  loadCaseTransactionPage(): void;
58
82
  loadRefundListPage(): void;
59
83
  gotoReviewDetailsPage(event: any): void;
60
84
  gotoReviewAndReSubmitPage(): void;
61
- gotoRefundReasonPage(): void;
85
+ gotoRefundReasonPage(refundReason: string): void;
62
86
  gotoAmountPage(): void;
63
87
  goToReviewAndSubmitView(): void;
64
88
  resetRemissionForm(val: any, field: any): void;
65
89
  selectRadioButton(key: any, value: any): void;
66
90
  getRefundListReason(refundListReason: any): void;
67
91
  getRefundAmount(amount: number): void;
92
+ getRefundFees(fees: IFee[]): void;
68
93
  gotoReviewRefundConfirmationPage(): void;
94
+ gotoEditAddressDetails(note: IRefundsNotifications): void;
95
+ getContactDetails(obj: IRefundContactDetails): void;
96
+ getContactDetailsForRefundList(obj: IRefundContactDetails): void;
97
+ gotoEditDetailsPage(note?: any, view?: string): void;
98
+ submitEditDetail(): void;
99
+ putResend(notification: IRefundsNotifications): void;
100
+ gotoRefundViewPageCancelBtnClicked(event: Event): void;
101
+ gotoRefundReviewAndSubmitViewPageCancelBtnClicked(event: Event): void;
69
102
  goToRefundProcessComponent(refundReference: string, refundList: IRefundList): void;
103
+ getTemplateInstructionType(payment: IPayment, paymentReference: string): void;
104
+ showNotificationPreview(): void;
105
+ hideNotificationPreview(): void;
106
+ showNotificationSentView(index: number): void;
107
+ hideNotificationSentView(): void;
108
+ static ɵfac: i0.ɵɵFactoryDeclaration<RefundStatusComponent, never>;
109
+ static ɵcmp: i0.ɵɵComponentDeclaration<RefundStatusComponent, "ccpay-refund-status", never, { "LOGGEDINUSERROLES": { "alias": "LOGGEDINUSERROLES"; "required": false; }; "API_ROOT": { "alias": "API_ROOT"; "required": false; }; "ccdCaseNumber": { "alias": "ccdCaseNumber"; "required": false; }; "isTurnOff": { "alias": "isTurnOff"; "required": false; }; "orderParty": { "alias": "orderParty"; "required": false; }; }, {}, never, never, true, never>;
70
110
  }
@@ -5,24 +5,26 @@ import { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/b
5
5
  import { ErrorHandlerService } from '../../services/shared/error-handler.service';
6
6
  import { PaymentViewService } from '../../services/payment-view/payment-view.service';
7
7
  import { XlFileService } from '../../services/xl-file/xl-file.service';
8
+ import * as i0 from "@angular/core";
8
9
  export declare class ReportsComponent implements OnInit {
9
10
  private xlFileService;
10
11
  private errorHandlerService;
11
12
  private formBuilder;
12
13
  private bulkScaningPaymentService;
13
14
  private paymentViewService;
15
+ ISPAYMENTSTATUSENABLED: string;
16
+ fmt: string;
17
+ loc: string;
14
18
  reportsForm: FormGroup;
15
19
  startDate: string;
16
20
  endDate: string;
21
+ errorMeaagse: string;
17
22
  ccdCaseNumber: string;
18
23
  isDownLoadButtondisabled: Boolean;
19
24
  isStartDateLesthanEndDate: Boolean;
25
+ isDateBetwnMonth: Boolean;
20
26
  isDateRangeBetnWeek: Boolean;
21
- errorMessage: {
22
- title: string;
23
- body: string;
24
- showError: any;
25
- };
27
+ errorMessage: any;
26
28
  paymentGroups: IPaymentGroup[];
27
29
  constructor(xlFileService: XlFileService, errorHandlerService: ErrorHandlerService, formBuilder: FormBuilder, bulkScaningPaymentService: BulkScaningPaymentService, paymentViewService: PaymentViewService);
28
30
  ngOnInit(): void;
@@ -36,5 +38,8 @@ export declare class ReportsComponent implements OnInit {
36
38
  getTwodigit(input: number): string;
37
39
  getCamelCaseString(selectedOption: any): any;
38
40
  applyDateFormat(res: any): any;
41
+ multiDateFormater(dateStr: any): any;
39
42
  convertToFloatValue(amt: any): string;
43
+ static ɵfac: i0.ɵɵFactoryDeclaration<ReportsComponent, never>;
44
+ static ɵcmp: i0.ɵɵComponentDeclaration<ReportsComponent, "ccpay-reports", never, { "ISPAYMENTSTATUSENABLED": { "alias": "ISPAYMENTSTATUSENABLED"; "required": false; }; }, {}, never, never, false, never>;
40
45
  }
@@ -1,5 +1,5 @@
1
- import { OnInit } from '@angular/core';
2
- import { PaymentLibComponent } from '../../payment-lib.component';
1
+ import { OnInit, EventEmitter, ChangeDetectorRef } from '@angular/core';
2
+ import type { PaymentLibComponent } from '../../payment-lib.component';
3
3
  import { IPayment } from '../../interfaces/IPayment';
4
4
  import { IRemission } from '../../interfaces/IRemission';
5
5
  import { IPaymentView } from '../../interfaces/IPaymentView';
@@ -8,11 +8,16 @@ import { IFee } from '../../interfaces/IFee';
8
8
  import { IPaymentGroup } from '../../interfaces/IPaymentGroup';
9
9
  import { Router } from '@angular/router';
10
10
  import { PaymentViewService } from '../../services/payment-view/payment-view.service';
11
+ import { NotificationService } from '../../services/notification/notification.service';
11
12
  import { OrderslistService } from '../../services/orderslist.service';
13
+ import { IRefundContactDetails } from '../../interfaces/IRefundContactDetails';
14
+ import * as i0 from "@angular/core";
12
15
  export declare class ServiceRequestComponent implements OnInit {
13
16
  private paymentLibComponent;
14
17
  private paymentViewService;
15
18
  private OrderslistService;
19
+ private notificationService;
20
+ private cd;
16
21
  private router;
17
22
  LOGGEDINUSERROLES: string[];
18
23
  viewStatus: string;
@@ -25,17 +30,22 @@ export declare class ServiceRequestComponent implements OnInit {
25
30
  orderFeesTotal: number;
26
31
  orderTotalPayments: number;
27
32
  orderRemissionTotal: number;
33
+ paymentGroupList: IPaymentGroup;
28
34
  takePayment: boolean;
29
35
  ccdCaseNumber: boolean;
30
36
  isServiceRequest: string;
37
+ goToServiceRquestComponent: EventEmitter<any>;
38
+ viewCompStatus: any;
31
39
  servicerequest: string;
40
+ paymentType: string;
32
41
  excReference: string;
33
42
  paymentGroups: any[];
34
43
  payments: IPayment[];
35
44
  nonPayments: IPayment[];
36
45
  allPayments: IPayment[];
37
46
  remissions: IRemission[];
38
- fees: IFee[];
47
+ paymentFees: IFee[];
48
+ fees: any;
39
49
  errorMessage: string;
40
50
  totalFees: number;
41
51
  totalPayments: number;
@@ -45,9 +55,7 @@ export declare class ServiceRequestComponent implements OnInit {
45
55
  dcnNumber: string;
46
56
  paymentRef: string;
47
57
  isTurnOff: boolean;
48
- isNewPcipalOff: boolean;
49
58
  isRefundRemission: boolean;
50
- isOldPcipalOff: boolean;
51
59
  isStrategicFixEnable: boolean;
52
60
  isAddFeeBtnEnabled: boolean;
53
61
  isExceptionRecord: boolean;
@@ -65,15 +73,21 @@ export declare class ServiceRequestComponent implements OnInit {
65
73
  isGrpOutstandingAmtPositive: boolean;
66
74
  totalRefundAmount: Number;
67
75
  caseType: String;
76
+ isConfirmationBtnDisabled: boolean;
77
+ refundReference: string;
78
+ refundAmount: string;
68
79
  payment: IPayment;
69
80
  paymentGroup: IPaymentGroup;
70
81
  paymentView: IPaymentView;
71
82
  isAddRemissionEnable: boolean;
72
83
  orderRemissionDetails: any[];
73
84
  orderLevelFees: IOrderReferenceFee[];
74
- cpoDetails: any;
85
+ cpoDetails: any[];
75
86
  serviceRequestValue: string;
76
87
  orderAddBtnEnable: boolean;
88
+ isFromPaymentDetailPage: boolean;
89
+ contactDetailsObj: IRefundContactDetails;
90
+ notification: any;
77
91
  isCPODown: boolean;
78
92
  test: boolean;
79
93
  isPBA: boolean;
@@ -84,22 +98,36 @@ export declare class ServiceRequestComponent implements OnInit {
84
98
  isFromServiceRequestPage: boolean;
85
99
  navigationpage: string;
86
100
  remissionFeeAmt: number;
87
- constructor(paymentLibComponent: PaymentLibComponent, paymentViewService: PaymentViewService, OrderslistService: OrderslistService, router: Router);
101
+ isContinueBtnDisabled: boolean;
102
+ isFullyRefund: boolean;
103
+ templateInstructionType: string;
104
+ notificationPreview: boolean;
105
+ constructor(paymentLibComponent: PaymentLibComponent, paymentViewService: PaymentViewService, OrderslistService: OrderslistService, notificationService: NotificationService, cd: ChangeDetectorRef, router: Router);
88
106
  ngOnInit(): void;
107
+ goToServiceRequestPage(): void;
89
108
  goToCaseTransationPage(event: any): void;
90
- chkForAddRemission(feeCode: string): boolean;
91
- chkForPBAPayment(): boolean;
92
109
  addRemission(fee: IFee): void;
93
110
  addRefundForRemission(payment: IPayment, remission: IRemission[], fees: any): void;
94
111
  cancelRemoval(): void;
95
112
  removeFee(fee: any): void;
96
- chkIssueRefundBtnEnable(payment: IPayment): boolean;
97
- chkIsRefundRemissionBtnEnable(): boolean;
98
- check4AllowedRoles2AccessRefund: () => boolean;
99
- allowFurtherAccessAfter4Days: (payment: IPayment) => boolean;
100
113
  issueRefund(payment: IPayment): void;
101
- goToServiceRequestPage(event: any): void;
102
114
  goToPayementView(paymentGroupReference: string, paymentReference: string, paymentMethod: string): void;
103
115
  goToPaymentViewComponent(paymentGroup: any): void;
116
+ chkIsIssueRefundBtnEnable(payment: IPayment): boolean;
117
+ chkIsAddRefundBtnEnable(remission: IRemission): boolean;
118
+ chkIsAddRemissionBtnEnable(fee: IFee): boolean;
104
119
  resetOrderData(): void;
120
+ selectPymentOption(paymentType: string): void;
121
+ goToPaymentViewComp(): void;
122
+ continuePayment(paymentgrp: IPaymentGroup): void;
123
+ getContactDetails(obj: IRefundContactDetails): void;
124
+ gotoPaymentSelectPage(event: Event): void;
125
+ gotoAddressPage(note?: IRefundContactDetails): void;
126
+ processRefund(): void;
127
+ getOverPaymentValue(): number;
128
+ getTemplateInstructionType(payment: IPayment): void;
129
+ showNotificationPreview(): void;
130
+ hideNotificationPreview(): void;
131
+ static ɵfac: i0.ɵɵFactoryDeclaration<ServiceRequestComponent, never>;
132
+ static ɵcmp: i0.ɵɵComponentDeclaration<ServiceRequestComponent, "ccpay-service-request", never, { "LOGGEDINUSERROLES": { "alias": "LOGGEDINUSERROLES"; "required": false; }; "viewStatus": { "alias": "viewStatus"; "required": false; }; "orderDetail": { "alias": "orderDetail"; "required": false; }; "orderRef": { "alias": "orderRef"; "required": false; }; "orderStatus": { "alias": "orderStatus"; "required": false; }; "orderParty": { "alias": "orderParty"; "required": false; }; "orderCreated": { "alias": "orderCreated"; "required": false; }; "orderCCDEvent": { "alias": "orderCCDEvent"; "required": false; }; "orderFeesTotal": { "alias": "orderFeesTotal"; "required": false; }; "orderTotalPayments": { "alias": "orderTotalPayments"; "required": false; }; "orderRemissionTotal": { "alias": "orderRemissionTotal"; "required": false; }; "paymentGroupList": { "alias": "paymentGroupList"; "required": false; }; "takePayment": { "alias": "takePayment"; "required": false; }; "ccdCaseNumber": { "alias": "ccdCaseNumber"; "required": false; }; "isServiceRequest": { "alias": "isServiceRequest"; "required": false; }; }, { "goToServiceRquestComponent": "goToServiceRquestComponent"; }, never, never, true, never>;
105
133
  }
@@ -1,7 +1,8 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { IStatusHistories } from '../../interfaces/IStatusHistories';
3
3
  import { StatusHistoryService } from '../../services/status-history/status-history.service';
4
- import { PaymentLibComponent } from '../../payment-lib.component';
4
+ import type { PaymentLibComponent } from '../../payment-lib.component';
5
+ import * as i0 from "@angular/core";
5
6
  export declare class StatusHistoryComponent implements OnInit {
6
7
  private statusHistoryService;
7
8
  private paymentLibComponent;
@@ -11,4 +12,6 @@ export declare class StatusHistoryComponent implements OnInit {
11
12
  errorMessage: string;
12
13
  constructor(statusHistoryService: StatusHistoryService, paymentLibComponent: PaymentLibComponent);
13
14
  ngOnInit(): void;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<StatusHistoryComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<StatusHistoryComponent, "ccpay-payment-statuses", never, { "isTakePayment": { "alias": "isTakePayment"; "required": false; }; }, {}, never, never, true, never>;
14
17
  }
@@ -1,11 +1,12 @@
1
1
  import { ChangeDetectorRef } from '@angular/core';
2
- import { PaymentLibComponent } from '../../payment-lib.component';
2
+ import type { PaymentLibComponent } from '../../payment-lib.component';
3
3
  import { MatTableDataSource } from '@angular/material/table';
4
4
  import { MatSort } from '@angular/material/sort';
5
5
  import { MatPaginator } from '@angular/material/paginator';
6
6
  import { IRefundList } from '../../interfaces/IRefundList';
7
7
  import { OrderslistService } from '../../services/orderslist.service';
8
8
  import { ActivatedRoute, Router } from '@angular/router';
9
+ import * as i0 from "@angular/core";
9
10
  export declare class TableComponent {
10
11
  private paymentLibComponent;
11
12
  private cdRef;
@@ -19,6 +20,7 @@ export declare class TableComponent {
19
20
  displayedColumns: string[];
20
21
  dataSource: MatTableDataSource<any>;
21
22
  userLst: any;
23
+ serviceLst: any;
22
24
  actualcount: number;
23
25
  count: number;
24
26
  refundList: IRefundList[];
@@ -36,4 +38,6 @@ export declare class TableComponent {
36
38
  goToRefundProcessComponent(refundReference: string, refundData: IRefundList): void;
37
39
  goToRefundViewComponent(refundReference: string, refundData: IRefundList): void;
38
40
  goToCaseReview(ccdCaseNumber: string, refundData: IRefundList): void;
41
+ static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent, never>;
42
+ static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent, "ccpay-table", never, { "DATASOURCE": { "alias": "DATASOURCE"; "required": false; }; "STATUS": { "alias": "STATUS"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; }, {}, never, never, false, never>;
39
43
  }
@@ -1,10 +1,11 @@
1
1
  import { OnInit, EventEmitter } from '@angular/core';
2
2
  import { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';
3
- import { PaymentLibComponent } from '../../payment-lib.component';
3
+ import type { PaymentLibComponent } from '../../payment-lib.component';
4
4
  import { IBSPayments } from '../../interfaces/IBSPayments';
5
5
  import { Router } from '@angular/router';
6
6
  import { PaymentViewService } from '../../services/payment-view/payment-view.service';
7
7
  import { OrderslistService } from '../../services/orderslist.service';
8
+ import * as i0 from "@angular/core";
8
9
  export declare class UnprocessedPaymentsComponent implements OnInit {
9
10
  private router;
10
11
  private bulkScaningPaymentService;
@@ -16,8 +17,6 @@ export declare class UnprocessedPaymentsComponent implements OnInit {
16
17
  ISTURNOFF: boolean;
17
18
  IS_BUTTON_ENABLE: boolean;
18
19
  IS_OS_AMT_AVAILABLE: boolean;
19
- ISNEWPCIPALOFF: boolean;
20
- ISOLDPCIPALOFF: boolean;
21
20
  ISSFENABLE: boolean;
22
21
  PAYMENTSLENGTH: Number;
23
22
  LEVEL: Number;
@@ -38,8 +37,6 @@ export declare class UnprocessedPaymentsComponent implements OnInit {
38
37
  isExceptionCase: boolean;
39
38
  serviceId: string;
40
39
  isBulkScanEnable: any;
41
- isNewpcipaloff: any;
42
- isOldpcipaloff: any;
43
40
  isTurnOff: boolean;
44
41
  isStFixEnable: any;
45
42
  unassignedRecordSelectedList: IBSPayments;
@@ -59,4 +56,6 @@ export declare class UnprocessedPaymentsComponent implements OnInit {
59
56
  validateButtons(): void;
60
57
  unprocessedPaymentUnSelectEvent(event: any): void;
61
58
  showDetailRow(event: any, obj: any, i: any): void;
59
+ static ɵfac: i0.ɵɵFactoryDeclaration<UnprocessedPaymentsComponent, never>;
60
+ static ɵcmp: i0.ɵɵComponentDeclaration<UnprocessedPaymentsComponent, "ccpay-app-unprocessed-payments", never, { "FEE_RECORDS_EXISTS": { "alias": "FEE_RECORDS_EXISTS"; "required": false; }; "PAYMENTREF": { "alias": "PAYMENTREF"; "required": false; }; "ISTURNOFF": { "alias": "ISTURNOFF"; "required": false; }; "IS_BUTTON_ENABLE": { "alias": "IS_BUTTON_ENABLE"; "required": false; }; "IS_OS_AMT_AVAILABLE": { "alias": "IS_OS_AMT_AVAILABLE"; "required": false; }; "ISSFENABLE": { "alias": "ISSFENABLE"; "required": false; }; "PAYMENTSLENGTH": { "alias": "PAYMENTSLENGTH"; "required": false; }; "LEVEL": { "alias": "LEVEL"; "required": false; }; }, { "selectedUnprocessedFeeEvent": "selectedUnprocessedFeeEvent"; "getUnprocessedFeeCount": "getUnprocessedFeeCount"; }, never, never, true, never>;
62
61
  }
@@ -20,4 +20,10 @@ export interface IFee {
20
20
  date_updated?: string;
21
21
  amount_due?: number;
22
22
  remission_enable?: boolean;
23
+ add_remission?: boolean;
24
+ over_payment?: number;
25
+ refund_amount?: number;
26
+ updated_volume?: number;
27
+ selected?: any;
28
+ issue_refund_add_refund_add_remission: boolean;
23
29
  }
@@ -0,0 +1,27 @@
1
+ export interface INotificationPreview {
2
+ template_id: string;
3
+ template_type: string;
4
+ from: {
5
+ from_email_address: string;
6
+ from_mail_address: {
7
+ address_line: string;
8
+ city: string;
9
+ county: string;
10
+ country: string;
11
+ postal_code: String;
12
+ };
13
+ };
14
+ recipient_contact: {
15
+ recipient_email_address: string;
16
+ recipient_mail_address: {
17
+ address_line: string;
18
+ city: string;
19
+ county: string;
20
+ country: string;
21
+ postal_code: String;
22
+ };
23
+ };
24
+ subject: string;
25
+ body: string;
26
+ html: string;
27
+ }
@@ -29,4 +29,7 @@ export interface IPayment {
29
29
  payment_group_reference: string;
30
30
  paymentGroupReference?: string;
31
31
  refund_enable?: boolean;
32
+ over_payment?: number;
33
+ issue_refund_add_refund_add_remission: boolean;
34
+ issue_refund: boolean;
32
35
  }
@@ -0,0 +1,13 @@
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
+ }
@@ -0,0 +1,6 @@
1
+ import { IRefundContactDetails } from './IRefundContactDetails';
2
+ export declare class IPutNotificationRequest {
3
+ recipient_email_address?: string;
4
+ recipient_postal_address?: IRefundContactDetails;
5
+ constructor(contactDetails: any, notificationType: string);
6
+ }
@@ -0,0 +1,9 @@
1
+ export interface IRefundContactDetails {
2
+ address_line?: string;
3
+ city?: string;
4
+ country?: string;
5
+ county?: string;
6
+ email?: string;
7
+ notification_type?: string;
8
+ postal_code?: string;
9
+ }
@@ -0,0 +1,7 @@
1
+ export interface IRefundFee {
2
+ fee_id: number;
3
+ code: string;
4
+ version: string;
5
+ volume: number;
6
+ refund_amount: number;
7
+ }
@@ -1,3 +1,4 @@
1
+ import { IRefundContactDetails } from './IRefundContactDetails';
1
2
  export interface IRefundList {
2
3
  amount: number;
3
4
  ccd_case_number: string;
@@ -5,10 +6,14 @@ export interface IRefundList {
5
6
  date_updated: string;
6
7
  payment_reference: string;
7
8
  reason: string;
9
+ reason_code: string;
8
10
  refund_reference: string;
9
11
  refund_status: {
10
12
  description: string;
11
13
  name: string;
12
14
  };
15
+ contact_details: IRefundContactDetails;
13
16
  user_full_name: string;
17
+ service_type: string;
18
+ code: string;
14
19
  }
@@ -0,0 +1,16 @@
1
+ export interface IRefundsNotifications {
2
+ contact_details: {
3
+ address_line: string;
4
+ city: string;
5
+ country: string;
6
+ county: string;
7
+ date_created: string;
8
+ date_updated: string;
9
+ email: string;
10
+ postal_code: string;
11
+ };
12
+ date_created: string;
13
+ date_updated: string;
14
+ notification_type: string;
15
+ reference: string;
16
+ }
@@ -6,4 +6,7 @@ export interface IRemission {
6
6
  ccd_case_number: string;
7
7
  fee_code: string;
8
8
  date_created: string;
9
+ fee_id: number;
10
+ issue_refund_add_refund_add_remission: boolean;
11
+ add_refund: boolean;
9
12
  }
@@ -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
- constructor(refund_reason: string, amount: number);
6
+ contact_details: IRefundContactDetails;
7
+ refund_fees: IFee[];
8
+ constructor(refund_reason: string, amount: number, contact_details: any, refund_fees: any[]);
5
9
  }
@@ -3,5 +3,6 @@ export declare class IserviceRequestPbaPayment {
3
3
  amount: string;
4
4
  currency: string;
5
5
  customer_reference: string;
6
- constructor(account_number: string, amount: string, customer_reference: string);
6
+ organisation_name: string;
7
+ constructor(account_number: string, amount: string, customer_reference: string, orgName: string);
7
8
  }