@hmcts/ccpay-web-component 5.2.10-beta8 → 6.0.0-beta01

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 (406) 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 +794 -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/IPaymentStatus.mjs +12 -0
  31. package/esm2022/lib/interfaces/IPutNotificationRequest.mjs +13 -0
  32. package/esm2022/lib/interfaces/IResubmitRefundRequest.mjs +13 -0
  33. package/esm2022/lib/interfaces/IserviceRequestCardPayment.mjs +11 -0
  34. package/esm2022/lib/interfaces/IserviceRequestPbaPayment.mjs +15 -0
  35. package/esm2022/lib/interfaces/IssueRefundRequest.mjs +11 -0
  36. package/esm2022/lib/interfaces/NotificationPreviewRequest.mjs +45 -0
  37. package/esm2022/lib/interfaces/PayhubAntennaRequest.mjs +12 -0
  38. package/esm2022/lib/interfaces/PaymentToPayhubRequest.mjs +15 -0
  39. package/esm2022/lib/interfaces/PostIssueRefundRetroRemission.mjs +9 -0
  40. package/esm2022/lib/interfaces/PostRefundRetroRemission.mjs +18 -0
  41. package/esm2022/lib/interfaces/RefundsRequest.mjs +9 -0
  42. package/esm2022/lib/interfaces/UnidentifiedPaymentsRequest.mjs +16 -0
  43. package/esm2022/lib/interfaces/UnsolicitedPaymentsRequest.mjs +22 -0
  44. package/esm2022/lib/payment-lib.component.mjs +288 -0
  45. package/esm2022/lib/payment-lib.module.mjs +187 -0
  46. package/esm2022/lib/payment-lib.service.mjs +49 -0
  47. package/esm2022/lib/pipes/capitalize.pipe.mjs +18 -0
  48. package/esm2022/lib/pipes/ccd-hyphens.pipe.mjs +22 -0
  49. package/esm2022/lib/pipes/key-value.pipe.mjs +23 -0
  50. package/esm2022/lib/pipes/sanitize-html.pipe.mjs +20 -0
  51. package/esm2022/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.mjs +87 -0
  52. package/esm2022/lib/services/card-details/card-details.service.mjs +39 -0
  53. package/esm2022/lib/services/case-transactions/case-transactions.service.mjs +39 -0
  54. package/esm2022/lib/services/notification/notification.service.mjs +70 -0
  55. package/esm2022/lib/services/orderslist.service.mjs +154 -0
  56. package/esm2022/lib/services/payment-list/payment-list.service.mjs +40 -0
  57. package/esm2022/lib/services/payment-view/payment-view.service.mjs +152 -0
  58. package/esm2022/lib/services/refunds/refunds.service.mjs +117 -0
  59. package/{esm2015/lib/services/shared/error-handler.service.js → esm2022/lib/services/shared/error-handler.service.mjs} +9 -8
  60. package/esm2022/lib/services/shared/httpclient/webcomponent.http.client.mjs +64 -0
  61. package/esm2022/lib/services/shared/logger/console-logger.service.mjs +43 -0
  62. package/esm2022/lib/services/shared/logger/logger.service.mjs +23 -0
  63. package/esm2022/lib/services/status-history/status-history.service.mjs +41 -0
  64. package/esm2022/lib/services/xl-file/xl-file.service.mjs +153 -0
  65. package/fesm2022/hmcts-ccpay-web-component.mjs +7870 -0
  66. package/fesm2022/hmcts-ccpay-web-component.mjs.map +1 -0
  67. package/index.d.ts +5 -0
  68. package/lib/components/add-remission/add-remission.component.d.ts +5 -3
  69. package/lib/components/allocate-payments/allocate-payments.component.d.ts +5 -7
  70. package/lib/components/card-details/card-details.component.d.ts +3 -1
  71. package/lib/components/case-transactions/case-transactions.component.d.ts +5 -3
  72. package/lib/components/contact-details/contact-details.component.d.ts +4 -2
  73. package/lib/components/error-banner/error-banner.component.d.ts +3 -1
  74. package/lib/components/fee-summary/fee-summary.component.d.ts +4 -2
  75. package/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.d.ts +4 -2
  76. package/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.d.ts +4 -2
  77. package/lib/components/notification-preview/notification-preview.component.d.ts +4 -6
  78. package/lib/components/page-not-found.component.d.ts +3 -1
  79. package/lib/components/payment-list/payment-list.component.d.ts +4 -2
  80. package/lib/components/payment-view/payment-view.component.d.ts +4 -2
  81. package/lib/components/pba-details/pba-details.component.d.ts +3 -1
  82. package/lib/components/pba-payment/pba-payment.component.d.ts +4 -2
  83. package/lib/components/process-refund/process-refund.component.d.ts +4 -2
  84. package/lib/components/processed-payments/processed-payments.component.d.ts +3 -1
  85. package/lib/components/refund-list/refund-list.component.d.ts +3 -1
  86. package/lib/components/refund-status/refund-status.component.d.ts +4 -2
  87. package/lib/components/reports/reports.component.d.ts +4 -6
  88. package/lib/components/service-request/service-request.component.d.ts +5 -3
  89. package/lib/components/status-history/status-history.component.d.ts +4 -2
  90. package/lib/components/table/table.component.d.ts +4 -2
  91. package/lib/components/unprocessed-payments/unprocessed-payments.component.d.ts +4 -2
  92. package/lib/interfaces/AddRemissionRequest.d.ts +0 -1
  93. package/lib/interfaces/AddRetroRemissionRequest.d.ts +0 -1
  94. package/lib/interfaces/AllocatePaymentRequest.d.ts +0 -1
  95. package/lib/interfaces/IAllocationPaymentsRequest.d.ts +0 -1
  96. package/lib/interfaces/IBSPayments.d.ts +0 -1
  97. package/lib/interfaces/ICardDetails.d.ts +0 -1
  98. package/lib/interfaces/IFee.d.ts +0 -1
  99. package/lib/interfaces/INotificationPreview.d.ts +0 -1
  100. package/lib/interfaces/IOrderReferenceFee.d.ts +0 -1
  101. package/lib/interfaces/IPatchRefundAction.d.ts +0 -1
  102. package/lib/interfaces/IPayment.d.ts +0 -1
  103. package/lib/interfaces/IPaymentFailure.d.ts +0 -1
  104. package/lib/interfaces/IPaymentGroup.d.ts +0 -1
  105. package/lib/interfaces/IPaymentStatus.d.ts +0 -1
  106. package/lib/interfaces/IPaymentView.d.ts +0 -1
  107. package/lib/interfaces/IPayments.d.ts +0 -1
  108. package/lib/interfaces/IPutNotificationRequest.d.ts +0 -1
  109. package/lib/interfaces/IRefundAction.d.ts +0 -1
  110. package/lib/interfaces/IRefundContactDetails.d.ts +0 -1
  111. package/lib/interfaces/IRefundFee.d.ts +0 -1
  112. package/lib/interfaces/IRefundList.d.ts +0 -1
  113. package/lib/interfaces/IRefundReasons.d.ts +0 -1
  114. package/lib/interfaces/IRefundRejectReason.d.ts +0 -1
  115. package/lib/interfaces/IRefundStatus.d.ts +0 -1
  116. package/lib/interfaces/IRefundStatusHistory.d.ts +0 -1
  117. package/lib/interfaces/IRefundsNotifications.d.ts +0 -1
  118. package/lib/interfaces/IRemission.d.ts +0 -1
  119. package/lib/interfaces/IResubmitRefundRequest.d.ts +0 -1
  120. package/lib/interfaces/IStatusHistories.d.ts +0 -1
  121. package/lib/interfaces/IStatusHistory.d.ts +0 -1
  122. package/lib/interfaces/IserviceRequestCardPayment.d.ts +0 -1
  123. package/lib/interfaces/IserviceRequestPbaPayment.d.ts +0 -1
  124. package/lib/interfaces/IssueRefundRequest.d.ts +0 -1
  125. package/lib/interfaces/NotificationPreviewRequest.d.ts +0 -1
  126. package/lib/interfaces/PayhubAntennaRequest.d.ts +0 -1
  127. package/lib/interfaces/PaymentToPayhubRequest.d.ts +0 -1
  128. package/lib/interfaces/PostIssueRefundRetroRemission.d.ts +0 -1
  129. package/lib/interfaces/PostRefundRetroRemission.d.ts +0 -1
  130. package/lib/interfaces/RefundsRequest.d.ts +0 -1
  131. package/lib/interfaces/UnidentifiedPaymentsRequest.d.ts +0 -1
  132. package/lib/interfaces/UnsolicitedPaymentsRequest.d.ts +0 -1
  133. package/lib/payment-lib.component.d.ts +3 -1
  134. package/lib/payment-lib.module.d.ts +40 -1
  135. package/lib/payment-lib.service.d.ts +3 -1
  136. package/lib/pipes/capitalize.pipe.d.ts +3 -1
  137. package/lib/pipes/ccd-hyphens.pipe.d.ts +3 -1
  138. package/lib/pipes/key-value.pipe.d.ts +3 -1
  139. package/lib/pipes/sanitize-html.pipe.d.ts +3 -1
  140. package/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.d.ts +4 -2
  141. package/lib/services/card-details/card-details.service.d.ts +3 -1
  142. package/lib/services/case-transactions/case-transactions.service.d.ts +4 -2
  143. package/lib/services/notification/notification.service.d.ts +4 -2
  144. package/lib/services/orderslist.service.d.ts +3 -1
  145. package/lib/services/payment-list/payment-list.service.d.ts +3 -1
  146. package/lib/services/payment-view/payment-view.service.d.ts +3 -1
  147. package/lib/services/refunds/refunds.service.d.ts +4 -2
  148. package/lib/services/shared/error-handler.service.d.ts +3 -1
  149. package/lib/services/shared/httpclient/webcomponent.http.client.d.ts +3 -1
  150. package/lib/services/shared/logger/console-logger.service.d.ts +3 -1
  151. package/lib/services/shared/logger/logger.service.d.ts +3 -1
  152. package/lib/services/status-history/status-history.service.d.ts +3 -1
  153. package/lib/services/xl-file/xl-file.service.d.ts +3 -1
  154. package/package.json +17 -11
  155. package/public_api.d.ts +0 -1
  156. package/bundles/hmcts-ccpay-web-component.umd.js +0 -7550
  157. package/bundles/hmcts-ccpay-web-component.umd.js.map +0 -1
  158. package/bundles/hmcts-ccpay-web-component.umd.min.js +0 -2
  159. package/bundles/hmcts-ccpay-web-component.umd.min.js.map +0 -1
  160. package/esm2015/hmcts-ccpay-web-component.js +0 -47
  161. package/esm2015/lib/components/add-remission/add-remission.component.js +0 -1045
  162. package/esm2015/lib/components/allocate-payments/allocate-payments.component.js +0 -381
  163. package/esm2015/lib/components/card-details/card-details.component.js +0 -28
  164. package/esm2015/lib/components/case-transactions/case-transactions.component.js +0 -735
  165. package/esm2015/lib/components/contact-details/contact-details.component.js +0 -315
  166. package/esm2015/lib/components/error-banner/error-banner.component.js +0 -18
  167. package/esm2015/lib/components/fee-summary/fee-summary.component.js +0 -223
  168. package/esm2015/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.js +0 -184
  169. package/esm2015/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.js +0 -238
  170. package/esm2015/lib/components/notification-preview/notification-preview.component.js +0 -59
  171. package/esm2015/lib/components/page-not-found.component.js +0 -11
  172. package/esm2015/lib/components/payment-list/payment-list.component.js +0 -31
  173. package/esm2015/lib/components/payment-view/payment-view.component.js +0 -335
  174. package/esm2015/lib/components/pba-details/pba-details.component.js +0 -18
  175. package/esm2015/lib/components/pba-payment/pba-payment.component.js +0 -144
  176. package/esm2015/lib/components/process-refund/process-refund.component.js +0 -398
  177. package/esm2015/lib/components/processed-payments/processed-payments.component.js +0 -34
  178. package/esm2015/lib/components/refund-list/refund-list.component.js +0 -59
  179. package/esm2015/lib/components/refund-status/refund-status.component.js +0 -399
  180. package/esm2015/lib/components/reports/reports.component.js +0 -280
  181. package/esm2015/lib/components/service-request/service-request.component.js +0 -345
  182. package/esm2015/lib/components/status-history/status-history.component.js +0 -28
  183. package/esm2015/lib/components/table/table.component.js +0 -99
  184. package/esm2015/lib/components/unprocessed-payments/unprocessed-payments.component.js +0 -199
  185. package/esm2015/lib/interfaces/AddRemissionRequest.js +0 -10
  186. package/esm2015/lib/interfaces/AddRetroRemissionRequest.js +0 -7
  187. package/esm2015/lib/interfaces/AllocatePaymentRequest.js +0 -27
  188. package/esm2015/lib/interfaces/IAllocationPaymentsRequest.js +0 -14
  189. package/esm2015/lib/interfaces/IPaymentStatus.js +0 -3
  190. package/esm2015/lib/interfaces/IPutNotificationRequest.js +0 -11
  191. package/esm2015/lib/interfaces/IResubmitRefundRequest.js +0 -9
  192. package/esm2015/lib/interfaces/IserviceRequestCardPayment.js +0 -8
  193. package/esm2015/lib/interfaces/IserviceRequestPbaPayment.js +0 -10
  194. package/esm2015/lib/interfaces/IssueRefundRequest.js +0 -8
  195. package/esm2015/lib/interfaces/NotificationPreviewRequest.js +0 -37
  196. package/esm2015/lib/interfaces/PayhubAntennaRequest.js +0 -9
  197. package/esm2015/lib/interfaces/PaymentToPayhubRequest.js +0 -12
  198. package/esm2015/lib/interfaces/PostIssueRefundRetroRemission.js +0 -7
  199. package/esm2015/lib/interfaces/PostRefundRetroRemission.js +0 -11
  200. package/esm2015/lib/interfaces/RefundsRequest.js +0 -7
  201. package/esm2015/lib/interfaces/UnidentifiedPaymentsRequest.js +0 -12
  202. package/esm2015/lib/interfaces/UnsolicitedPaymentsRequest.js +0 -15
  203. package/esm2015/lib/payment-lib.component.js +0 -132
  204. package/esm2015/lib/payment-lib.module.js +0 -99
  205. package/esm2015/lib/payment-lib.service.js +0 -43
  206. package/esm2015/lib/pipes/capitalize.pipe.js +0 -14
  207. package/esm2015/lib/pipes/ccd-hyphens.pipe.js +0 -18
  208. package/esm2015/lib/pipes/key-value.pipe.js +0 -20
  209. package/esm2015/lib/pipes/sanitize-html.pipe.js +0 -17
  210. package/esm2015/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.js +0 -87
  211. package/esm2015/lib/services/card-details/card-details.service.js +0 -39
  212. package/esm2015/lib/services/case-transactions/case-transactions.service.js +0 -39
  213. package/esm2015/lib/services/notification/notification.service.js +0 -70
  214. package/esm2015/lib/services/orderslist.service.js +0 -154
  215. package/esm2015/lib/services/payment-list/payment-list.service.js +0 -39
  216. package/esm2015/lib/services/payment-view/payment-view.service.js +0 -150
  217. package/esm2015/lib/services/refunds/refunds.service.js +0 -117
  218. package/esm2015/lib/services/shared/httpclient/webcomponent.http.client.js +0 -61
  219. package/esm2015/lib/services/shared/logger/console-logger.service.js +0 -43
  220. package/esm2015/lib/services/shared/logger/logger.service.js +0 -17
  221. package/esm2015/lib/services/status-history/status-history.service.js +0 -41
  222. package/esm2015/lib/services/xl-file/xl-file.service.js +0 -151
  223. package/fesm2015/hmcts-ccpay-web-component.js +0 -6980
  224. package/fesm2015/hmcts-ccpay-web-component.js.map +0 -1
  225. package/hmcts-ccpay-web-component.d.ts +0 -47
  226. package/hmcts-ccpay-web-component.d.ts.map +0 -1
  227. package/hmcts-ccpay-web-component.metadata.json +0 -1
  228. package/lib/components/add-remission/add-remission.component.d.ts.map +0 -1
  229. package/lib/components/add-remission/add-remission.component.ngfactory.d.ts.map +0 -1
  230. package/lib/components/add-remission/add-remission.component.scss.shim.ngstyle.d.ts.map +0 -1
  231. package/lib/components/allocate-payments/allocate-payments.component.d.ts.map +0 -1
  232. package/lib/components/allocate-payments/allocate-payments.component.ngfactory.d.ts.map +0 -1
  233. package/lib/components/allocate-payments/allocate-payments.component.scss.shim.ngstyle.d.ts.map +0 -1
  234. package/lib/components/card-details/card-details.component.css.shim.ngstyle.d.ts.map +0 -1
  235. package/lib/components/card-details/card-details.component.d.ts.map +0 -1
  236. package/lib/components/card-details/card-details.component.ngfactory.d.ts.map +0 -1
  237. package/lib/components/case-transactions/case-transactions.component.css.shim.ngstyle.d.ts.map +0 -1
  238. package/lib/components/case-transactions/case-transactions.component.d.ts.map +0 -1
  239. package/lib/components/case-transactions/case-transactions.component.ngfactory.d.ts.map +0 -1
  240. package/lib/components/contact-details/contact-details.component.css.shim.ngstyle.d.ts.map +0 -1
  241. package/lib/components/contact-details/contact-details.component.d.ts.map +0 -1
  242. package/lib/components/contact-details/contact-details.component.ngfactory.d.ts.map +0 -1
  243. package/lib/components/error-banner/error-banner.component.d.ts.map +0 -1
  244. package/lib/components/error-banner/error-banner.component.ngfactory.d.ts.map +0 -1
  245. package/lib/components/error-banner/error-banner.component.scss.shim.ngstyle.d.ts.map +0 -1
  246. package/lib/components/fee-summary/fee-summary.component.d.ts.map +0 -1
  247. package/lib/components/fee-summary/fee-summary.component.ngfactory.d.ts.map +0 -1
  248. package/lib/components/fee-summary/fee-summary.component.scss.shim.ngstyle.d.ts.map +0 -1
  249. package/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.d.ts.map +0 -1
  250. package/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.ngfactory.d.ts.map +0 -1
  251. package/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.scss.shim.ngstyle.d.ts.map +0 -1
  252. package/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.d.ts.map +0 -1
  253. package/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.ngfactory.d.ts.map +0 -1
  254. package/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.scss.shim.ngstyle.d.ts.map +0 -1
  255. package/lib/components/notification-preview/notification-preview.component.d.ts.map +0 -1
  256. package/lib/components/notification-preview/notification-preview.component.ngfactory.d.ts.map +0 -1
  257. package/lib/components/notification-preview/notification-preview.component.scss.shim.ngstyle.d.ts.map +0 -1
  258. package/lib/components/page-not-found.component.d.ts.map +0 -1
  259. package/lib/components/page-not-found.component.ngfactory.d.ts.map +0 -1
  260. package/lib/components/payment-list/payment-list.component.css.shim.ngstyle.d.ts.map +0 -1
  261. package/lib/components/payment-list/payment-list.component.d.ts.map +0 -1
  262. package/lib/components/payment-list/payment-list.component.ngfactory.d.ts.map +0 -1
  263. package/lib/components/payment-view/payment-view.component.d.ts.map +0 -1
  264. package/lib/components/payment-view/payment-view.component.ngfactory.d.ts.map +0 -1
  265. package/lib/components/payment-view/payment-view.component.scss.shim.ngstyle.d.ts.map +0 -1
  266. package/lib/components/pba-details/pba-details.component.css.shim.ngstyle.d.ts.map +0 -1
  267. package/lib/components/pba-details/pba-details.component.d.ts.map +0 -1
  268. package/lib/components/pba-details/pba-details.component.ngfactory.d.ts.map +0 -1
  269. package/lib/components/pba-payment/pba-payment.component.d.ts.map +0 -1
  270. package/lib/components/pba-payment/pba-payment.component.ngfactory.d.ts.map +0 -1
  271. package/lib/components/pba-payment/pba-payment.component.scss.shim.ngstyle.d.ts.map +0 -1
  272. package/lib/components/process-refund/process-refund.component.css.shim.ngstyle.d.ts.map +0 -1
  273. package/lib/components/process-refund/process-refund.component.d.ts.map +0 -1
  274. package/lib/components/process-refund/process-refund.component.ngfactory.d.ts.map +0 -1
  275. package/lib/components/processed-payments/processed-payments.component.d.ts.map +0 -1
  276. package/lib/components/processed-payments/processed-payments.component.ngfactory.d.ts.map +0 -1
  277. package/lib/components/processed-payments/processed-payments.component.scss.shim.ngstyle.d.ts.map +0 -1
  278. package/lib/components/refund-list/refund-list.component.css.shim.ngstyle.d.ts.map +0 -1
  279. package/lib/components/refund-list/refund-list.component.d.ts.map +0 -1
  280. package/lib/components/refund-list/refund-list.component.ngfactory.d.ts.map +0 -1
  281. package/lib/components/refund-status/refund-status.component.css.shim.ngstyle.d.ts.map +0 -1
  282. package/lib/components/refund-status/refund-status.component.d.ts.map +0 -1
  283. package/lib/components/refund-status/refund-status.component.ngfactory.d.ts.map +0 -1
  284. package/lib/components/reports/reports.component.d.ts.map +0 -1
  285. package/lib/components/reports/reports.component.ngfactory.d.ts.map +0 -1
  286. package/lib/components/reports/reports.component.scss.shim.ngstyle.d.ts.map +0 -1
  287. package/lib/components/service-request/service-request.component.d.ts.map +0 -1
  288. package/lib/components/service-request/service-request.component.ngfactory.d.ts.map +0 -1
  289. package/lib/components/service-request/service-request.component.scss.shim.ngstyle.d.ts.map +0 -1
  290. package/lib/components/status-history/status-history.component.css.shim.ngstyle.d.ts.map +0 -1
  291. package/lib/components/status-history/status-history.component.d.ts.map +0 -1
  292. package/lib/components/status-history/status-history.component.ngfactory.d.ts.map +0 -1
  293. package/lib/components/table/table.component.css.shim.ngstyle.d.ts.map +0 -1
  294. package/lib/components/table/table.component.d.ts.map +0 -1
  295. package/lib/components/table/table.component.ngfactory.d.ts.map +0 -1
  296. package/lib/components/unprocessed-payments/unprocessed-payments.component.d.ts.map +0 -1
  297. package/lib/components/unprocessed-payments/unprocessed-payments.component.ngfactory.d.ts.map +0 -1
  298. package/lib/components/unprocessed-payments/unprocessed-payments.component.scss.shim.ngstyle.d.ts.map +0 -1
  299. package/lib/interfaces/AddRemissionRequest.d.ts.map +0 -1
  300. package/lib/interfaces/AddRetroRemissionRequest.d.ts.map +0 -1
  301. package/lib/interfaces/AllocatePaymentRequest.d.ts.map +0 -1
  302. package/lib/interfaces/IAllocationPaymentsRequest.d.ts.map +0 -1
  303. package/lib/interfaces/IBSPayments.d.ts.map +0 -1
  304. package/lib/interfaces/ICardDetails.d.ts.map +0 -1
  305. package/lib/interfaces/IFee.d.ts.map +0 -1
  306. package/lib/interfaces/INotificationPreview.d.ts.map +0 -1
  307. package/lib/interfaces/IOrderReferenceFee.d.ts.map +0 -1
  308. package/lib/interfaces/IPatchRefundAction.d.ts.map +0 -1
  309. package/lib/interfaces/IPayment.d.ts.map +0 -1
  310. package/lib/interfaces/IPaymentFailure.d.ts.map +0 -1
  311. package/lib/interfaces/IPaymentGroup.d.ts.map +0 -1
  312. package/lib/interfaces/IPaymentStatus.d.ts.map +0 -1
  313. package/lib/interfaces/IPaymentView.d.ts.map +0 -1
  314. package/lib/interfaces/IPayments.d.ts.map +0 -1
  315. package/lib/interfaces/IPutNotificationRequest.d.ts.map +0 -1
  316. package/lib/interfaces/IRefundAction.d.ts.map +0 -1
  317. package/lib/interfaces/IRefundContactDetails.d.ts.map +0 -1
  318. package/lib/interfaces/IRefundFee.d.ts.map +0 -1
  319. package/lib/interfaces/IRefundList.d.ts.map +0 -1
  320. package/lib/interfaces/IRefundReasons.d.ts.map +0 -1
  321. package/lib/interfaces/IRefundRejectReason.d.ts.map +0 -1
  322. package/lib/interfaces/IRefundStatus.d.ts.map +0 -1
  323. package/lib/interfaces/IRefundStatusHistory.d.ts.map +0 -1
  324. package/lib/interfaces/IRefundsNotifications.d.ts.map +0 -1
  325. package/lib/interfaces/IRemission.d.ts.map +0 -1
  326. package/lib/interfaces/IResubmitRefundRequest.d.ts.map +0 -1
  327. package/lib/interfaces/IStatusHistories.d.ts.map +0 -1
  328. package/lib/interfaces/IStatusHistory.d.ts.map +0 -1
  329. package/lib/interfaces/IserviceRequestCardPayment.d.ts.map +0 -1
  330. package/lib/interfaces/IserviceRequestPbaPayment.d.ts.map +0 -1
  331. package/lib/interfaces/IssueRefundRequest.d.ts.map +0 -1
  332. package/lib/interfaces/NotificationPreviewRequest.d.ts.map +0 -1
  333. package/lib/interfaces/PayhubAntennaRequest.d.ts.map +0 -1
  334. package/lib/interfaces/PaymentToPayhubRequest.d.ts.map +0 -1
  335. package/lib/interfaces/PostIssueRefundRetroRemission.d.ts.map +0 -1
  336. package/lib/interfaces/PostRefundRetroRemission.d.ts.map +0 -1
  337. package/lib/interfaces/RefundsRequest.d.ts.map +0 -1
  338. package/lib/interfaces/UnidentifiedPaymentsRequest.d.ts.map +0 -1
  339. package/lib/interfaces/UnsolicitedPaymentsRequest.d.ts.map +0 -1
  340. package/lib/payment-lib.component.d.ts.map +0 -1
  341. package/lib/payment-lib.component.ngfactory.d.ts.map +0 -1
  342. package/lib/payment-lib.module.d.ts.map +0 -1
  343. package/lib/payment-lib.module.ngfactory.d.ts.map +0 -1
  344. package/lib/payment-lib.service.d.ts.map +0 -1
  345. package/lib/payment-lib.service.ngfactory.d.ts.map +0 -1
  346. package/lib/pipes/capitalize.pipe.d.ts.map +0 -1
  347. package/lib/pipes/capitalize.pipe.ngfactory.d.ts.map +0 -1
  348. package/lib/pipes/ccd-hyphens.pipe.d.ts.map +0 -1
  349. package/lib/pipes/ccd-hyphens.pipe.ngfactory.d.ts.map +0 -1
  350. package/lib/pipes/key-value.pipe.d.ts.map +0 -1
  351. package/lib/pipes/key-value.pipe.ngfactory.d.ts.map +0 -1
  352. package/lib/pipes/sanitize-html.pipe.d.ts.map +0 -1
  353. package/lib/pipes/sanitize-html.pipe.ngfactory.d.ts.map +0 -1
  354. package/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.d.ts.map +0 -1
  355. package/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.ngfactory.d.ts.map +0 -1
  356. package/lib/services/card-details/card-details.service.d.ts.map +0 -1
  357. package/lib/services/card-details/card-details.service.ngfactory.d.ts.map +0 -1
  358. package/lib/services/case-transactions/case-transactions.service.d.ts.map +0 -1
  359. package/lib/services/case-transactions/case-transactions.service.ngfactory.d.ts.map +0 -1
  360. package/lib/services/notification/notification.service.d.ts.map +0 -1
  361. package/lib/services/notification/notification.service.ngfactory.d.ts.map +0 -1
  362. package/lib/services/orderslist.service.d.ts.map +0 -1
  363. package/lib/services/orderslist.service.ngfactory.d.ts.map +0 -1
  364. package/lib/services/payment-list/payment-list.service.d.ts.map +0 -1
  365. package/lib/services/payment-list/payment-list.service.ngfactory.d.ts.map +0 -1
  366. package/lib/services/payment-view/payment-view.service.d.ts.map +0 -1
  367. package/lib/services/payment-view/payment-view.service.ngfactory.d.ts.map +0 -1
  368. package/lib/services/refunds/refunds.service.d.ts.map +0 -1
  369. package/lib/services/refunds/refunds.service.ngfactory.d.ts.map +0 -1
  370. package/lib/services/shared/error-handler.service.d.ts.map +0 -1
  371. package/lib/services/shared/error-handler.service.ngfactory.d.ts.map +0 -1
  372. package/lib/services/shared/httpclient/webcomponent.http.client.d.ts.map +0 -1
  373. package/lib/services/shared/httpclient/webcomponent.http.client.ngfactory.d.ts.map +0 -1
  374. package/lib/services/shared/logger/console-logger.service.d.ts.map +0 -1
  375. package/lib/services/shared/logger/console-logger.service.ngfactory.d.ts.map +0 -1
  376. package/lib/services/shared/logger/logger.service.d.ts.map +0 -1
  377. package/lib/services/shared/logger/logger.service.ngfactory.d.ts.map +0 -1
  378. package/lib/services/status-history/status-history.service.d.ts.map +0 -1
  379. package/lib/services/status-history/status-history.service.ngfactory.d.ts.map +0 -1
  380. package/lib/services/xl-file/xl-file.service.d.ts.map +0 -1
  381. package/lib/services/xl-file/xl-file.service.ngfactory.d.ts.map +0 -1
  382. package/public_api.d.ts.map +0 -1
  383. /package/{esm2015/lib/interfaces/IBSPayments.js → esm2022/lib/interfaces/IBSPayments.mjs} +0 -0
  384. /package/{esm2015/lib/interfaces/ICardDetails.js → esm2022/lib/interfaces/ICardDetails.mjs} +0 -0
  385. /package/{esm2015/lib/interfaces/IFee.js → esm2022/lib/interfaces/IFee.mjs} +0 -0
  386. /package/{esm2015/lib/interfaces/INotificationPreview.js → esm2022/lib/interfaces/INotificationPreview.mjs} +0 -0
  387. /package/{esm2015/lib/interfaces/IOrderReferenceFee.js → esm2022/lib/interfaces/IOrderReferenceFee.mjs} +0 -0
  388. /package/{esm2015/lib/interfaces/IPatchRefundAction.js → esm2022/lib/interfaces/IPatchRefundAction.mjs} +0 -0
  389. /package/{esm2015/lib/interfaces/IPayment.js → esm2022/lib/interfaces/IPayment.mjs} +0 -0
  390. /package/{esm2015/lib/interfaces/IPaymentFailure.js → esm2022/lib/interfaces/IPaymentFailure.mjs} +0 -0
  391. /package/{esm2015/lib/interfaces/IPaymentGroup.js → esm2022/lib/interfaces/IPaymentGroup.mjs} +0 -0
  392. /package/{esm2015/lib/interfaces/IPaymentView.js → esm2022/lib/interfaces/IPaymentView.mjs} +0 -0
  393. /package/{esm2015/lib/interfaces/IPayments.js → esm2022/lib/interfaces/IPayments.mjs} +0 -0
  394. /package/{esm2015/lib/interfaces/IRefundAction.js → esm2022/lib/interfaces/IRefundAction.mjs} +0 -0
  395. /package/{esm2015/lib/interfaces/IRefundContactDetails.js → esm2022/lib/interfaces/IRefundContactDetails.mjs} +0 -0
  396. /package/{esm2015/lib/interfaces/IRefundFee.js → esm2022/lib/interfaces/IRefundFee.mjs} +0 -0
  397. /package/{esm2015/lib/interfaces/IRefundList.js → esm2022/lib/interfaces/IRefundList.mjs} +0 -0
  398. /package/{esm2015/lib/interfaces/IRefundReasons.js → esm2022/lib/interfaces/IRefundReasons.mjs} +0 -0
  399. /package/{esm2015/lib/interfaces/IRefundRejectReason.js → esm2022/lib/interfaces/IRefundRejectReason.mjs} +0 -0
  400. /package/{esm2015/lib/interfaces/IRefundStatus.js → esm2022/lib/interfaces/IRefundStatus.mjs} +0 -0
  401. /package/{esm2015/lib/interfaces/IRefundStatusHistory.js → esm2022/lib/interfaces/IRefundStatusHistory.mjs} +0 -0
  402. /package/{esm2015/lib/interfaces/IRefundsNotifications.js → esm2022/lib/interfaces/IRefundsNotifications.mjs} +0 -0
  403. /package/{esm2015/lib/interfaces/IRemission.js → esm2022/lib/interfaces/IRemission.mjs} +0 -0
  404. /package/{esm2015/lib/interfaces/IStatusHistories.js → esm2022/lib/interfaces/IStatusHistories.mjs} +0 -0
  405. /package/{esm2015/lib/interfaces/IStatusHistory.js → esm2022/lib/interfaces/IStatusHistory.mjs} +0 -0
  406. /package/{esm2015/public_api.js → esm2022/public_api.mjs} +0 -0
@@ -33,4 +33,3 @@ export interface IPayment {
33
33
  issue_refund_add_refund_add_remission: boolean;
34
34
  issue_refund: boolean;
35
35
  }
36
- //# sourceMappingURL=IPayment.d.ts.map
@@ -11,4 +11,3 @@ export interface IPaymentFailure {
11
11
  has_amount_debited?: string;
12
12
  status: string;
13
13
  }
14
- //# sourceMappingURL=IPaymentFailure.d.ts.map
@@ -7,4 +7,3 @@ export interface IPaymentGroup {
7
7
  remissions: IRemission[];
8
8
  fees: IFee[];
9
9
  }
10
- //# sourceMappingURL=IPaymentGroup.d.ts.map
@@ -9,4 +9,3 @@ export declare class IPaymentStatus {
9
9
  unidentified_reason: string;
10
10
  user_id: string;
11
11
  }
12
- //# sourceMappingURL=IPaymentStatus.d.ts.map
@@ -3,4 +3,3 @@ export interface IPaymentView {
3
3
  payment_group_reference: string;
4
4
  reference: string;
5
5
  }
6
- //# sourceMappingURL=IPaymentView.d.ts.map
@@ -2,4 +2,3 @@ import { IPayment } from './IPayment';
2
2
  export interface IPayments {
3
3
  payments: IPayment[];
4
4
  }
5
- //# sourceMappingURL=IPayments.d.ts.map
@@ -4,4 +4,3 @@ export declare class IPutNotificationRequest {
4
4
  recipient_postal_address?: IRefundContactDetails;
5
5
  constructor(contactDetails: any, notificationType: string);
6
6
  }
7
- //# sourceMappingURL=IPutNotificationRequest.d.ts.map
@@ -2,4 +2,3 @@ export interface IRefundAction {
2
2
  code: string;
3
3
  label: string;
4
4
  }
5
- //# sourceMappingURL=IRefundAction.d.ts.map
@@ -7,4 +7,3 @@ export interface IRefundContactDetails {
7
7
  notification_type?: string;
8
8
  postal_code?: string;
9
9
  }
10
- //# sourceMappingURL=IRefundContactDetails.d.ts.map
@@ -5,4 +5,3 @@ export interface IRefundFee {
5
5
  volume: number;
6
6
  refund_amount: number;
7
7
  }
8
- //# sourceMappingURL=IRefundFee.d.ts.map
@@ -17,4 +17,3 @@ export interface IRefundList {
17
17
  service_type: string;
18
18
  code: string;
19
19
  }
20
- //# sourceMappingURL=IRefundList.d.ts.map
@@ -4,4 +4,3 @@ export interface IRefundReasons {
4
4
  name: string;
5
5
  recently_used: boolean;
6
6
  }
7
- //# sourceMappingURL=IRefundReasons.d.ts.map
@@ -2,4 +2,3 @@ export interface IRefundRejectReason {
2
2
  code: string;
3
3
  name: string;
4
4
  }
5
- //# sourceMappingURL=IRefundRejectReason.d.ts.map
@@ -6,4 +6,3 @@ export interface IRefundStatus {
6
6
  refunds_id: number;
7
7
  status: string;
8
8
  }
9
- //# sourceMappingURL=IRefundStatus.d.ts.map
@@ -3,4 +3,3 @@ export interface IRefundStatusHistory {
3
3
  iRefundStatus: IRefundStatus[];
4
4
  lastUpdatedByCurrentUser: boolean;
5
5
  }
6
- //# sourceMappingURL=IRefundStatusHistory.d.ts.map
@@ -14,4 +14,3 @@ export interface IRefundsNotifications {
14
14
  notification_type: string;
15
15
  reference: string;
16
16
  }
17
- //# sourceMappingURL=IRefundsNotifications.d.ts.map
@@ -10,4 +10,3 @@ export interface IRemission {
10
10
  issue_refund_add_refund_add_remission: boolean;
11
11
  add_refund: boolean;
12
12
  }
13
- //# sourceMappingURL=IRemission.d.ts.map
@@ -7,4 +7,3 @@ export declare class IResubmitRefundRequest {
7
7
  refund_fees: IFee[];
8
8
  constructor(refund_reason: string, amount: number, contact_details: any, refund_fees: any[]);
9
9
  }
10
- //# sourceMappingURL=IResubmitRefundRequest.d.ts.map
@@ -5,4 +5,3 @@ export interface IStatusHistories {
5
5
  status: string;
6
6
  status_histories: IStatusHistory[];
7
7
  }
8
- //# sourceMappingURL=IStatusHistories.d.ts.map
@@ -5,4 +5,3 @@ export interface IStatusHistory {
5
5
  error_code: string;
6
6
  error_message: string;
7
7
  }
8
- //# sourceMappingURL=IStatusHistory.d.ts.map
@@ -4,4 +4,3 @@ export declare class IserviceRequestCardPayment {
4
4
  language: string;
5
5
  constructor(amount: string);
6
6
  }
7
- //# sourceMappingURL=IserviceRequestCardPayment.d.ts.map
@@ -6,4 +6,3 @@ export declare class IserviceRequestPbaPayment {
6
6
  organisation_name: string;
7
7
  constructor(account_number: string, amount: string, customer_reference: string, orgName: string);
8
8
  }
9
- //# sourceMappingURL=IserviceRequestPbaPayment.d.ts.map
@@ -4,4 +4,3 @@ export declare class IssueRefundRequest {
4
4
  refund_amount: number;
5
5
  constructor(payment_reference: string, refund_reason: string, refund_amount: number);
6
6
  }
7
- //# sourceMappingURL=IssueRefundRequest.d.ts.map
@@ -22,4 +22,3 @@ export declare class NotificationPreviewRequest {
22
22
  service_name?: string;
23
23
  constructor(payment: IPayment, contactDetails: IRefundContactDetails, refund_reason: string, refund_amount: number, refund_reference: string, payment_reference: string);
24
24
  }
25
- //# sourceMappingURL=NotificationPreviewRequest.d.ts.map
@@ -5,4 +5,3 @@ export declare class PayhubAntennaRequest {
5
5
  amount: number;
6
6
  constructor(ccd_case_number: string, amount: number, caseType: string);
7
7
  }
8
- //# sourceMappingURL=PayhubAntennaRequest.d.ts.map
@@ -8,4 +8,3 @@ export declare class PaymentToPayhubRequest {
8
8
  amount: number;
9
9
  constructor(ccd_case_number: string, amount: number, caseType: string);
10
10
  }
11
- //# sourceMappingURL=PaymentToPayhubRequest.d.ts.map
@@ -4,4 +4,3 @@ export declare class PostIssueRefundRetroRemission {
4
4
  contact_details: IRefundContactDetails;
5
5
  constructor(remissionReference: string, contactDeatils: any);
6
6
  }
7
- //# sourceMappingURL=PostIssueRefundRetroRemission.d.ts.map
@@ -9,4 +9,3 @@ export declare class PostRefundRetroRemission {
9
9
  contact_details: IRefundContactDetails;
10
10
  constructor(contact_details: any, fees: any[], payment_reference: string, refund_reason: string, total_refund_amount: any, is_over_payment: string);
11
11
  }
12
- //# sourceMappingURL=PostRefundRetroRemission.d.ts.map
@@ -3,4 +3,3 @@ export declare class RefundsRequest {
3
3
  refund_reason: string;
4
4
  constructor(payment_reference: string, refund_reason: string);
5
5
  }
6
- //# sourceMappingURL=RefundsRequest.d.ts.map
@@ -5,4 +5,3 @@ export declare class UnidentifiedPaymentsRequest {
5
5
  unidentified_reason: string;
6
6
  constructor(payment_group_reference: string, payment_reference: string, unidentified_reason: any);
7
7
  }
8
- //# sourceMappingURL=UnidentifiedPaymentsRequest.d.ts.map
@@ -8,4 +8,3 @@ export declare class UnsolicitedPaymentsRequest {
8
8
  unidentified_reason: string;
9
9
  constructor(payment_group_reference: string, payment_reference: string, reason: string, responsible_office: string, responsible_person: string, email_id: string);
10
10
  }
11
- //# sourceMappingURL=UnsolicitedPaymentsRequest.d.ts.map
@@ -3,6 +3,7 @@ import { PaymentLibService } from './payment-lib.service';
3
3
  import { IBSPayments } from './interfaces/IBSPayments';
4
4
  import { OrderslistService } from './services/orderslist.service';
5
5
  import { IPayment } from './interfaces/IPayment';
6
+ import * as i0 from "@angular/core";
6
7
  export declare class PaymentLibComponent implements OnInit {
7
8
  private paymentLibService;
8
9
  private cd;
@@ -68,5 +69,6 @@ export declare class PaymentLibComponent implements OnInit {
68
69
  constructor(paymentLibService: PaymentLibService, cd: ChangeDetectorRef, OrderslistService: OrderslistService);
69
70
  ngAfterContentChecked(): void;
70
71
  ngOnInit(): void;
72
+ static ɵfac: i0.ɵɵFactoryDeclaration<PaymentLibComponent, never>;
73
+ static ɵcmp: i0.ɵɵComponentDeclaration<PaymentLibComponent, "ccpay-payment-lib", never, { "API_ROOT": { "alias": "API_ROOT"; "required": false; }; "BULKSCAN_API_ROOT": { "alias": "BULKSCAN_API_ROOT"; "required": false; }; "REFUNDS_API_ROOT": { "alias": "REFUNDS_API_ROOT"; "required": false; }; "NOTIFICATION_API_ROOT": { "alias": "NOTIFICATION_API_ROOT"; "required": false; }; "CARDPAYMENTRETURNURL": { "alias": "CARDPAYMENTRETURNURL"; "required": false; }; "CCD_CASE_NUMBER": { "alias": "CCD_CASE_NUMBER"; "required": false; }; "EXC_REFERENCE": { "alias": "EXC_REFERENCE"; "required": false; }; "PAYMENT_METHOD": { "alias": "PAYMENT_METHOD"; "required": false; }; "VIEW": { "alias": "VIEW"; "required": false; }; "VIEWSERVICE": { "alias": "VIEWSERVICE"; "required": false; }; "PAYMENT_GROUP_REF": { "alias": "PAYMENT_GROUP_REF"; "required": false; }; "TAKEPAYMENT": { "alias": "TAKEPAYMENT"; "required": false; }; "SERVICEREQUEST": { "alias": "SERVICEREQUEST"; "required": false; }; "DCN_NUMBER": { "alias": "DCN_NUMBER"; "required": false; }; "SELECTED_OPTION": { "alias": "SELECTED_OPTION"; "required": false; }; "ISBSENABLE": { "alias": "ISBSENABLE"; "required": false; }; "ISSFENABLE": { "alias": "ISSFENABLE"; "required": false; }; "ISTURNOFF": { "alias": "ISTURNOFF"; "required": false; }; "CASETYPE": { "alias": "CASETYPE"; "required": false; }; "ISPAYMENTSTATUSENABLED": { "alias": "ISPAYMENTSTATUSENABLED"; "required": false; }; "rootUrl": { "alias": "rootUrl"; "required": false; }; "REFUNDLIST": { "alias": "REFUNDLIST"; "required": false; }; "USERID": { "alias": "USERID"; "required": false; }; "LOGGEDINUSERROLES": { "alias": "LOGGEDINUSERROLES"; "required": false; }; "LOGGEDINUSEREMAIL": { "alias": "LOGGEDINUSEREMAIL"; "required": false; }; "isFromServiceRequestPage": { "alias": "isFromServiceRequestPage"; "required": false; }; }, {}, never, never, false, never>;
71
74
  }
72
- //# sourceMappingURL=payment-lib.component.d.ts.map
@@ -1,3 +1,42 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./payment-lib.component";
3
+ import * as i2 from "./components/payment-list/payment-list.component";
4
+ import * as i3 from "./components/pba-payment/pba-payment.component";
5
+ import * as i4 from "./components/process-refund/process-refund.component";
6
+ import * as i5 from "./components/refund-list/refund-list.component";
7
+ import * as i6 from "./components/card-details/card-details.component";
8
+ import * as i7 from "./components/page-not-found.component";
9
+ import * as i8 from "./components/mark-unidentified-payment/mark-unidentified-payment.component";
10
+ import * as i9 from "./components/mark-unsolicited-payment/mark-unsolicited-payment.component";
11
+ import * as i10 from "./components/processed-payments/processed-payments.component";
12
+ import * as i11 from "./components/allocate-payments/allocate-payments.component";
13
+ import * as i12 from "./components/pba-details/pba-details.component";
14
+ import * as i13 from "./components/fee-summary/fee-summary.component";
15
+ import * as i14 from "./pipes/key-value.pipe";
16
+ import * as i15 from "./pipes/sanitize-html.pipe";
17
+ import * as i16 from "./components/reports/reports.component";
18
+ import * as i17 from "./components/error-banner/error-banner.component";
19
+ import * as i18 from "./components/table/table.component";
20
+ import * as i19 from "@angular/common";
21
+ import * as i20 from "@angular/common/http";
22
+ import * as i21 from "@angular/forms";
23
+ import * as i22 from "@angular/material/table";
24
+ import * as i23 from "@angular/material/paginator";
25
+ import * as i24 from "@angular/material/sort";
26
+ import * as i25 from "@angular/material/form-field";
27
+ import * as i26 from "@angular/material/input";
28
+ import * as i27 from "./pipes/ccd-hyphens.pipe";
29
+ import * as i28 from "./pipes/capitalize.pipe";
30
+ import * as i29 from "./components/payment-view/payment-view.component";
31
+ import * as i30 from "./components/contact-details/contact-details.component";
32
+ import * as i31 from "./components/add-remission/add-remission.component";
33
+ import * as i32 from "./components/service-request/service-request.component";
34
+ import * as i33 from "./components/notification-preview/notification-preview.component";
35
+ import * as i34 from "./components/case-transactions/case-transactions.component";
36
+ import * as i35 from "./components/unprocessed-payments/unprocessed-payments.component";
37
+ import * as i36 from "./components/refund-status/refund-status.component";
1
38
  export declare class PaymentLibModule {
39
+ static ɵfac: i0.ɵɵFactoryDeclaration<PaymentLibModule, never>;
40
+ static ɵmod: i0.ɵɵNgModuleDeclaration<PaymentLibModule, [typeof i1.PaymentLibComponent, typeof i2.PaymentListComponent, typeof i3.PbaPaymentComponent, typeof i4.ProcessRefundComponent, typeof i5.RefundListComponent, typeof i6.CardDetailsComponent, typeof i7.PageNotFoundComponent, typeof i8.MarkUnidentifiedPaymentComponent, typeof i9.MarkUnsolicitedPaymentComponent, typeof i10.ProcessedPaymentsComponent, typeof i11.AllocatePaymentsComponent, typeof i12.PbaDetailsComponent, typeof i13.FeeSummaryComponent, typeof i14.keyValuePipe, typeof i15.SanitizeHtmlPipe, typeof i16.ReportsComponent, typeof i17.ErrorBannerComponent, typeof i18.TableComponent], [typeof i19.CommonModule, typeof i20.HttpClientModule, typeof i21.FormsModule, typeof i21.ReactiveFormsModule, typeof i22.MatTableModule, typeof i23.MatPaginatorModule, typeof i24.MatSortModule, typeof i25.MatFormFieldModule, typeof i26.MatInputModule, typeof i27.CcdHyphensPipe, typeof i28.CapitalizePipe, typeof i29.PaymentViewComponent, typeof i30.ContactDetailsComponent, typeof i31.AddRemissionComponent, typeof i32.ServiceRequestComponent, typeof i33.NotificationPreviewComponent, typeof i34.CaseTransactionsComponent, typeof i31.AddRemissionComponent, typeof i35.UnprocessedPaymentsComponent, typeof i36.RefundStatusComponent], [typeof i1.PaymentLibComponent]>;
41
+ static ɵinj: i0.ɵɵInjectorDeclaration<PaymentLibModule>;
2
42
  }
3
- //# sourceMappingURL=payment-lib.module.d.ts.map
@@ -1,3 +1,4 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class PaymentLibService {
2
3
  API_ROOT: string;
3
4
  BULKSCAN_API_ROOT: string;
@@ -15,5 +16,6 @@ export declare class PaymentLibService {
15
16
  getNoticationApiRootUrl(): string;
16
17
  setCardPaymentReturnUrl(cardPaymentReturnUrl: string): void;
17
18
  getCardPaymentReturnUrl(): string;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<PaymentLibService, never>;
20
+ static ɵprov: i0.ɵɵInjectableDeclaration<PaymentLibService>;
18
21
  }
19
- //# sourceMappingURL=payment-lib.service.d.ts.map
@@ -1,6 +1,8 @@
1
1
  import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class CapitalizePipe implements PipeTransform {
3
4
  constructor();
4
5
  transform(s: any, args?: any): any;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<CapitalizePipe, never>;
7
+ static ɵpipe: i0.ɵɵPipeDeclaration<CapitalizePipe, "capitalize", true>;
5
8
  }
6
- //# sourceMappingURL=capitalize.pipe.d.ts.map
@@ -1,6 +1,8 @@
1
1
  import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class CcdHyphensPipe implements PipeTransform {
3
4
  constructor();
4
5
  transform(value: any, args?: any): any;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<CcdHyphensPipe, never>;
7
+ static ɵpipe: i0.ɵɵPipeDeclaration<CcdHyphensPipe, "ccdHyphens", true>;
5
8
  }
6
- //# sourceMappingURL=ccd-hyphens.pipe.d.ts.map
@@ -1,6 +1,8 @@
1
1
  import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class keyValuePipe implements PipeTransform {
3
4
  constructor();
4
5
  transform(input: any): any;
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<keyValuePipe, never>;
7
+ static ɵpipe: i0.ɵɵPipeDeclaration<keyValuePipe, "keyValue", false>;
5
8
  }
6
- //# sourceMappingURL=key-value.pipe.d.ts.map
@@ -1,8 +1,10 @@
1
1
  import { PipeTransform } from '@angular/core';
2
2
  import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class SanitizeHtmlPipe implements PipeTransform {
4
5
  private sanitizer;
5
6
  constructor(sanitizer: DomSanitizer);
6
7
  transform(value: any): SafeHtml;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<SanitizeHtmlPipe, never>;
9
+ static ɵpipe: i0.ɵɵPipeDeclaration<SanitizeHtmlPipe, "sanitizeHtml", false>;
7
10
  }
8
- //# sourceMappingURL=sanitize-html.pipe.d.ts.map
@@ -2,10 +2,11 @@ import { HttpClient } from '@angular/common/http';
2
2
  import { ErrorHandlerService } from '../shared/error-handler.service';
3
3
  import { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';
4
4
  import { PaymentLibService } from '../../payment-lib.service';
5
- import { Observable } from 'rxjs/Observable';
5
+ import { Observable } from 'rxjs';
6
6
  import { IBSPayments } from '../../interfaces/IBSPayments';
7
7
  import { AllocatePaymentRequest } from '../../interfaces/AllocatePaymentRequest';
8
8
  import { IPaymentGroup } from '../../interfaces/IPaymentGroup';
9
+ import * as i0 from "@angular/core";
9
10
  export declare class BulkScaningPaymentService {
10
11
  private http;
11
12
  private https;
@@ -21,5 +22,6 @@ export declare class BulkScaningPaymentService {
21
22
  calculateOutStandingAmount(paymentGroup: IPaymentGroup): number;
22
23
  removeUnwantedString(input: string, replaceText: string): string;
23
24
  downloadSelectedReport(reportName: string, startDate: string, endDate: string): Observable<any>;
25
+ static ɵfac: i0.ɵɵFactoryDeclaration<BulkScaningPaymentService, never>;
26
+ static ɵprov: i0.ɵɵInjectableDeclaration<BulkScaningPaymentService>;
24
27
  }
25
- //# sourceMappingURL=bulk-scaning-payment.service.d.ts.map
@@ -4,6 +4,7 @@ import { ICardDetails } from '../../interfaces/ICardDetails';
4
4
  import { PaymentLibService } from '../../payment-lib.service';
5
5
  import { ErrorHandlerService } from '../shared/error-handler.service';
6
6
  import { LoggerService } from '../shared/logger/logger.service';
7
+ import * as i0 from "@angular/core";
7
8
  export declare class CardDetailsService {
8
9
  private http;
9
10
  private logger;
@@ -11,5 +12,6 @@ export declare class CardDetailsService {
11
12
  private paymentLibService;
12
13
  constructor(http: HttpClient, logger: LoggerService, errorHandlerService: ErrorHandlerService, paymentLibService: PaymentLibService);
13
14
  getCardDetails(paymentReference: string): Observable<ICardDetails>;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<CardDetailsService, never>;
16
+ static ɵprov: i0.ɵɵInjectableDeclaration<CardDetailsService>;
14
17
  }
15
- //# sourceMappingURL=card-details.service.d.ts.map
@@ -2,8 +2,9 @@ import { HttpClient } from '@angular/common/http';
2
2
  import { LoggerService } from '../shared/logger/logger.service';
3
3
  import { ErrorHandlerService } from '../shared/error-handler.service';
4
4
  import { PaymentLibService } from '../../payment-lib.service';
5
- import { Observable } from 'rxjs/Observable';
5
+ import { Observable } from 'rxjs';
6
6
  import { IPaymentGroup } from '../../interfaces/IPaymentGroup';
7
+ import * as i0 from "@angular/core";
7
8
  export declare class CaseTransactionsService {
8
9
  private http;
9
10
  private logger;
@@ -11,5 +12,6 @@ export declare class CaseTransactionsService {
11
12
  private paymentLibService;
12
13
  constructor(http: HttpClient, logger: LoggerService, errorHandlerService: ErrorHandlerService, paymentLibService: PaymentLibService);
13
14
  getPaymentGroups(ccdCaseNumber: string): Observable<IPaymentGroup[]>;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<CaseTransactionsService, never>;
16
+ static ɵprov: i0.ɵɵInjectableDeclaration<CaseTransactionsService>;
14
17
  }
15
- //# sourceMappingURL=case-transactions.service.d.ts.map
@@ -2,9 +2,10 @@ import { HttpClient } from '@angular/common/http';
2
2
  import { ErrorHandlerService } from '../shared/error-handler.service';
3
3
  import { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';
4
4
  import { PaymentLibService } from '../../payment-lib.service';
5
- import { Observable } from 'rxjs/Observable';
5
+ import { Observable } from 'rxjs';
6
6
  import { IRefundsNotifications } from '../../interfaces/IRefundsNotifications';
7
7
  import { NotificationPreviewRequest } from '../../interfaces/NotificationPreviewRequest';
8
+ import * as i0 from "@angular/core";
8
9
  export declare class NotificationService {
9
10
  private http;
10
11
  private https;
@@ -15,5 +16,6 @@ export declare class NotificationService {
15
16
  getAddressByPostcode(postcode: string): Observable<any>;
16
17
  getNotificationPreview(body: NotificationPreviewRequest): Observable<any>;
17
18
  getNotificationInstructionType(paymentChannel: string, paymentMethod: string): any;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<NotificationService, never>;
20
+ static ɵprov: i0.ɵɵInjectableDeclaration<NotificationService>;
18
21
  }
19
- //# sourceMappingURL=notification.service.d.ts.map
@@ -2,6 +2,7 @@ import { Observable, BehaviorSubject } from 'rxjs';
2
2
  import { IOrderReferenceFee } from '../interfaces/IOrderReferenceFee';
3
3
  import { IRefundList } from '../interfaces/IRefundList';
4
4
  import { IPaymentView } from '../interfaces/IPaymentView';
5
+ import * as i0 from "@angular/core";
5
6
  export declare class OrderslistService {
6
7
  private ordersList;
7
8
  private refundView;
@@ -71,5 +72,6 @@ export declare class OrderslistService {
71
72
  getorderFeesTotals(): BehaviorSubject<number>;
72
73
  setorderTotalPayments(orderTotalPayments: number): void;
73
74
  getoorderTotalPaymentss(): BehaviorSubject<number>;
75
+ static ɵfac: i0.ɵɵFactoryDeclaration<OrderslistService, never>;
76
+ static ɵprov: i0.ɵɵInjectableDeclaration<OrderslistService>;
74
77
  }
75
- //# sourceMappingURL=orderslist.service.d.ts.map
@@ -4,6 +4,7 @@ import { PaymentLibService } from '../../payment-lib.service';
4
4
  import { IPayments } from '../../interfaces/IPayments';
5
5
  import { ErrorHandlerService } from '../shared/error-handler.service';
6
6
  import { LoggerService } from '../shared/logger/logger.service';
7
+ import * as i0 from "@angular/core";
7
8
  export declare class PaymentListService {
8
9
  private http;
9
10
  private logger;
@@ -12,5 +13,6 @@ export declare class PaymentListService {
12
13
  payments: IPayments;
13
14
  constructor(http: HttpClient, logger: LoggerService, errorHandlerService: ErrorHandlerService, paymentLibService: PaymentLibService);
14
15
  getPaymentByCcdCaseNumber(ccdCaseNumber: string, paymentMethod: string): Observable<IPayments>;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<PaymentListService, never>;
17
+ static ɵprov: i0.ɵɵInjectableDeclaration<PaymentListService>;
15
18
  }
16
- //# sourceMappingURL=payment-list.service.d.ts.map
@@ -20,6 +20,7 @@ import { IserviceRequestCardPayment } from '../../interfaces/IserviceRequestCard
20
20
  import { AddRetroRemissionRequest } from '../../interfaces/AddRetroRemissionRequest';
21
21
  import { PostRefundRetroRemission } from '../../interfaces/PostRefundRetroRemission';
22
22
  import { PostIssueRefundRetroRemission } from '../../interfaces/PostIssueRefundRetroRemission';
23
+ import * as i0 from "@angular/core";
23
24
  export declare class PaymentViewService {
24
25
  private http;
25
26
  private https;
@@ -54,5 +55,6 @@ export declare class PaymentViewService {
54
55
  postPaymentGroupWithRetroRemissions(paymentGroupReference: string, feeId: number, body: AddRetroRemissionRequest): Observable<any>;
55
56
  postRefundRetroRemission(body: PostIssueRefundRetroRemission): Observable<any>;
56
57
  getPaymentFailure(paymentReference: string): Observable<any>;
58
+ static ɵfac: i0.ɵɵFactoryDeclaration<PaymentViewService, never>;
59
+ static ɵprov: i0.ɵɵInjectableDeclaration<PaymentViewService>;
57
60
  }
58
- //# sourceMappingURL=payment-view.service.d.ts.map
@@ -3,13 +3,14 @@ import { Meta } from '@angular/platform-browser';
3
3
  import { ErrorHandlerService } from '../shared/error-handler.service';
4
4
  import { WebComponentHttpClient } from '../shared/httpclient/webcomponent.http.client';
5
5
  import { PaymentLibService } from '../../payment-lib.service';
6
- import { Observable } from 'rxjs/Observable';
6
+ import { Observable } from 'rxjs';
7
7
  import { IRefundReasons } from '../../interfaces/IRefundReasons';
8
8
  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
12
  import { IPutNotificationRequest } from '../../interfaces/IPutNotificationRequest';
13
+ import * as i0 from "@angular/core";
13
14
  export declare class RefundsService {
14
15
  private http;
15
16
  private https;
@@ -29,5 +30,6 @@ export declare class RefundsService {
29
30
  putResendOrEdit(body: IPutNotificationRequest, refundRef: string, notificationType: string): Observable<any>;
30
31
  patchResubmitRefund(body: IResubmitRefundRequest, refund_reference: string): Observable<any>;
31
32
  addHeaders(options: any): any;
33
+ static ɵfac: i0.ɵɵFactoryDeclaration<RefundsService, never>;
34
+ static ɵprov: i0.ɵɵInjectableDeclaration<RefundsService>;
32
35
  }
33
- //# sourceMappingURL=refunds.service.d.ts.map
@@ -1,5 +1,6 @@
1
1
  import { HttpErrorResponse } from '@angular/common/http';
2
2
  import { Observable } from 'rxjs';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class ErrorHandlerService {
4
5
  constructor();
5
6
  handleError(err: HttpErrorResponse): Observable<any>;
@@ -8,5 +9,6 @@ export declare class ErrorHandlerService {
8
9
  body: string;
9
10
  showError: any;
10
11
  };
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<ErrorHandlerService, never>;
13
+ static ɵprov: i0.ɵɵInjectableDeclaration<ErrorHandlerService>;
11
14
  }
12
- //# sourceMappingURL=error-handler.service.d.ts.map
@@ -1,6 +1,7 @@
1
1
  import { HttpClient } from '@angular/common/http';
2
2
  import { Meta } from '@angular/platform-browser';
3
3
  import { Observable } from 'rxjs';
4
+ import * as i0 from "@angular/core";
4
5
  export declare class WebComponentHttpClient {
5
6
  private http;
6
7
  private meta;
@@ -11,5 +12,6 @@ export declare class WebComponentHttpClient {
11
12
  delete(url: string, options?: any): Observable<any>;
12
13
  patch(url: string, body: any | null, options?: any): Observable<any>;
13
14
  addHeaders(options: any): any;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<WebComponentHttpClient, never>;
16
+ static ɵprov: i0.ɵɵInjectableDeclaration<WebComponentHttpClient>;
14
17
  }
15
- //# sourceMappingURL=webcomponent.http.client.d.ts.map
@@ -1,9 +1,11 @@
1
1
  import { Logger } from './logger.service';
2
+ import * as i0 from "@angular/core";
2
3
  export declare let isDebugMode: boolean;
3
4
  export declare class ConsoleLoggerService implements Logger {
4
5
  get info(): any;
5
6
  get warn(): any;
6
7
  get error(): any;
7
8
  invokeConsoleMethod(type: string, args?: any): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<ConsoleLoggerService, never>;
10
+ static ɵprov: i0.ɵɵInjectableDeclaration<ConsoleLoggerService>;
8
11
  }
9
- //# sourceMappingURL=console-logger.service.d.ts.map
@@ -1,3 +1,4 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare abstract class Logger {
2
3
  info: any;
3
4
  warn: any;
@@ -8,5 +9,6 @@ export declare class LoggerService implements Logger {
8
9
  warn: any;
9
10
  error: any;
10
11
  invokeConsoleMethod(type: string, args?: any): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<LoggerService, never>;
13
+ static ɵprov: i0.ɵɵInjectableDeclaration<LoggerService>;
11
14
  }
12
- //# sourceMappingURL=logger.service.d.ts.map
@@ -4,6 +4,7 @@ import { IStatusHistories } from '../../interfaces/IStatusHistories';
4
4
  import { Observable } from 'rxjs/internal/Observable';
5
5
  import { ErrorHandlerService } from '../shared/error-handler.service';
6
6
  import { LoggerService } from '../shared/logger/logger.service';
7
+ import * as i0 from "@angular/core";
7
8
  export declare class StatusHistoryService {
8
9
  private http;
9
10
  private logger;
@@ -11,5 +12,6 @@ export declare class StatusHistoryService {
11
12
  private paymentLibService;
12
13
  constructor(http: HttpClient, logger: LoggerService, errorHandlerService: ErrorHandlerService, paymentLibService: PaymentLibService);
13
14
  getPaymentStatusesByReference(paymentReference: string, paymentMethod: string): Observable<IStatusHistories>;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<StatusHistoryService, never>;
16
+ static ɵprov: i0.ɵɵInjectableDeclaration<StatusHistoryService>;
14
17
  }
15
- //# sourceMappingURL=status-history.service.d.ts.map
@@ -1,3 +1,4 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class XlFileService {
2
3
  constructor();
3
4
  exportAsExcelFile(json: any[], excelFileName: string): void;
@@ -8,5 +9,6 @@ export declare class XlFileService {
8
9
  private setPaymentFailureReportHeaders;
9
10
  private setShortFallReportHeaders;
10
11
  private saveAsExcelFile;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<XlFileService, never>;
13
+ static ɵprov: i0.ɵɵInjectableDeclaration<XlFileService>;
11
14
  }
12
- //# sourceMappingURL=xl-file.service.d.ts.map
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@hmcts/ccpay-web-component",
3
- "version": "5.2.10-beta8",
3
+ "version": "6.0.0-beta01",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
7
  "peerDependencies": {
8
- "@angular/common": "^9.0.0-rc.0 || ^9.0.0",
9
- "@angular/core": "^9.0.0-rc.0 || ^9.0.0"
8
+ "@angular/common": "^16.1.6",
9
+ "@angular/core": "^16.1.6"
10
10
  },
11
11
  "license": "MIT",
12
12
  "repository": "https://github.com/hmcts/ccpay-web-component.git",
@@ -26,15 +26,21 @@
26
26
  "email": "mateusz.swirski@hmcts.net"
27
27
  }
28
28
  ],
29
- "main": "bundles/hmcts-ccpay-web-component.umd.js",
30
- "module": "fesm2015/hmcts-ccpay-web-component.js",
31
- "es2015": "fesm2015/hmcts-ccpay-web-component.js",
32
- "esm2015": "esm2015/hmcts-ccpay-web-component.js",
33
- "fesm2015": "fesm2015/hmcts-ccpay-web-component.js",
34
- "typings": "hmcts-ccpay-web-component.d.ts",
35
- "metadata": "hmcts-ccpay-web-component.metadata.json",
29
+ "module": "fesm2022/hmcts-ccpay-web-component.mjs",
30
+ "typings": "index.d.ts",
31
+ "exports": {
32
+ "./package.json": {
33
+ "default": "./package.json"
34
+ },
35
+ ".": {
36
+ "types": "./index.d.ts",
37
+ "esm2022": "./esm2022/hmcts-ccpay-web-component.mjs",
38
+ "esm": "./esm2022/hmcts-ccpay-web-component.mjs",
39
+ "default": "./fesm2022/hmcts-ccpay-web-component.mjs"
40
+ }
41
+ },
36
42
  "sideEffects": false,
37
43
  "dependencies": {
38
- "tslib": "^2.0.0"
44
+ "tslib": "^2.3.0"
39
45
  }
40
46
  }
package/public_api.d.ts CHANGED
@@ -1,4 +1,3 @@
1
1
  export * from './lib/payment-lib.service';
2
2
  export * from './lib/payment-lib.component';
3
3
  export * from './lib/payment-lib.module';
4
- //# sourceMappingURL=public_api.d.ts.map