@hmcts/ccpay-web-component 5.2.13-beta01 → 6.0.0-beta-ccs10

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 +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/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 +7874 -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 +4 -2
  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 +4 -2
  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
package/index.d.ts ADDED
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@hmcts/ccpay-web-component" />
5
+ export * from './public_api';
@@ -3,7 +3,7 @@ import { FormBuilder, FormGroup, FormArray } from '@angular/forms';
3
3
  import { IFee } from '../../interfaces/IFee';
4
4
  import { Router } from '@angular/router';
5
5
  import { PaymentViewService } from '../../services/payment-view/payment-view.service';
6
- import { PaymentLibComponent } from '../../payment-lib.component';
6
+ import type { PaymentLibComponent } from '../../payment-lib.component';
7
7
  import { IPayment } from '../../interfaces/IPayment';
8
8
  import { RefundsService } from '../../services/refunds/refunds.service';
9
9
  import { NotificationService } from '../../services/notification/notification.service';
@@ -13,6 +13,7 @@ import { ChangeDetectorRef } from '@angular/core';
13
13
  import { IRemission } from '../../interfaces/IRemission';
14
14
  import { OrderslistService } from '../../services/orderslist.service';
15
15
  import { IPaymentGroup } from '../../interfaces/IPaymentGroup';
16
+ import * as i0 from "@angular/core";
16
17
  export declare class AddRemissionComponent implements OnInit {
17
18
  private formBuilder;
18
19
  private router;
@@ -151,7 +152,7 @@ export declare class AddRemissionComponent implements OnInit {
151
152
  ngOnInit(): void;
152
153
  goToPaymentViewComponent(): void;
153
154
  refundFeesList(): void;
154
- get feesList(): FormArray;
155
+ get feesList(): FormArray<any>;
155
156
  noneSelected(): boolean;
156
157
  check_en(i: any, v1: any, AppAmt: any, Volume: any): void;
157
158
  addRemission(): void;
@@ -190,5 +191,6 @@ export declare class AddRemissionComponent implements OnInit {
190
191
  showNotificationPreview(): void;
191
192
  hideNotificationPreview(): void;
192
193
  getTemplateInstructionType(paymentReference: string, payment?: IPayment): void;
194
+ static ɵfac: i0.ɵɵFactoryDeclaration<AddRemissionComponent, never>;
195
+ static ɵcmp: i0.ɵɵComponentDeclaration<AddRemissionComponent, "ccpay-add-remission", never, { "fee": { "alias": "fee"; "required": false; }; "fees": { "alias": "fees"; "required": false; }; "payment": { "alias": "payment"; "required": false; }; "remission": { "alias": "remission"; "required": false; }; "ccdCaseNumber": { "alias": "ccdCaseNumber"; "required": false; }; "caseType": { "alias": "caseType"; "required": false; }; "viewCompStatus": { "alias": "viewCompStatus"; "required": false; }; "paymentGroupRef": { "alias": "paymentGroupRef"; "required": false; }; "isTurnOff": { "alias": "isTurnOff"; "required": false; }; "isRefundRemission": { "alias": "isRefundRemission"; "required": false; }; "isStrategicFixEnable": { "alias": "isStrategicFixEnable"; "required": false; }; "paidAmount": { "alias": "paidAmount"; "required": false; }; "isFromRefundListPage": { "alias": "isFromRefundListPage"; "required": false; }; "isFromPaymentDetailPage": { "alias": "isFromPaymentDetailPage"; "required": false; }; "isFromServiceRequestPage": { "alias": "isFromServiceRequestPage"; "required": false; }; "isFullyRefund": { "alias": "isFullyRefund"; "required": false; }; "feeamount": { "alias": "feeamount"; "required": false; }; "refundPaymentReference": { "alias": "refundPaymentReference"; "required": false; }; "isFromRefundStatusPage": { "alias": "isFromRefundStatusPage"; "required": false; }; "changeRefundReason": { "alias": "changeRefundReason"; "required": false; }; "isServiceRequest": { "alias": "isServiceRequest"; "required": false; }; "LOGGEDINUSERROLES": { "alias": "LOGGEDINUSERROLES"; "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; }; "takePayment": { "alias": "takepayment"; "required": false; }; "orderFeesTotal": { "alias": "orderFeesTotal"; "required": false; }; "orderTotalPayments": { "alias": "orderTotalPayments"; "required": false; }; "orderRemissionTotal": { "alias": "orderRemissionTotal"; "required": false; }; }, { "cancelRemission": "cancelRemission"; "refundListReason": "refundListReason"; "refundListAmount": "refundListAmount"; "refundFees": "refundFees"; }, never, never, true, never>;
193
196
  }
194
- //# sourceMappingURL=add-remission.component.d.ts.map
@@ -1,6 +1,6 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { FormBuilder, FormGroup } from '@angular/forms';
3
- import { PaymentLibComponent } from '../../payment-lib.component';
3
+ import type { PaymentLibComponent } from '../../payment-lib.component';
4
4
  import { PaymentViewService } from '../../services/payment-view/payment-view.service';
5
5
  import { CaseTransactionsService } from '../../services/case-transactions/case-transactions.service';
6
6
  import { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';
@@ -9,6 +9,7 @@ import { IPaymentGroup } from '../../interfaces/IPaymentGroup';
9
9
  import { IBSPayments } from '../../interfaces/IBSPayments';
10
10
  import { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';
11
11
  import { OrderslistService } from '../../services/orderslist.service';
12
+ import * as i0 from "@angular/core";
12
13
  export declare class AllocatePaymentsComponent implements OnInit {
13
14
  private errorHandlerService;
14
15
  private caseTransactionsService;
@@ -27,11 +28,7 @@ export declare class AllocatePaymentsComponent implements OnInit {
27
28
  feedbackUrlLabel: string;
28
29
  unAllocatedPayment: IBSPayments;
29
30
  siteID: string;
30
- errorMessage: {
31
- title: string;
32
- body: string;
33
- showError: any;
34
- };
31
+ errorMessage: any;
35
32
  paymentGroup: IPaymentGroup;
36
33
  paymentGroups: IPaymentGroup[];
37
34
  remainingAmount: number;
@@ -107,5 +104,6 @@ export declare class AllocatePaymentsComponent implements OnInit {
107
104
  selectRadioButton(key: any, type: any): void;
108
105
  OrderListSelectEvent(orderef: any): void;
109
106
  redirectToOrderFeeSearchPage(): void;
107
+ static ɵfac: i0.ɵɵFactoryDeclaration<AllocatePaymentsComponent, never>;
108
+ static ɵcmp: i0.ɵɵComponentDeclaration<AllocatePaymentsComponent, "app-allocate-payments", never, { "isTurnOff": { "alias": "isTurnOff"; "required": false; }; "caseType": { "alias": "caseType"; "required": false; }; }, {}, never, never, false, never>;
110
109
  }
111
- //# sourceMappingURL=allocate-payments.component.d.ts.map
@@ -2,6 +2,7 @@ import { OnInit } from '@angular/core';
2
2
  import { CardDetailsService } from '../../services/card-details/card-details.service';
3
3
  import { ICardDetails } from '../../interfaces/ICardDetails';
4
4
  import { PaymentLibComponent } from '../../payment-lib.component';
5
+ import * as i0 from "@angular/core";
5
6
  export declare class CardDetailsComponent implements OnInit {
6
7
  private cardDetailsService;
7
8
  private paymentLibComponent;
@@ -12,5 +13,6 @@ export declare class CardDetailsComponent implements OnInit {
12
13
  constructor(cardDetailsService: CardDetailsService, paymentLibComponent: PaymentLibComponent);
13
14
  ngOnInit(): void;
14
15
  get getPaymentReference(): string;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<CardDetailsComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<CardDetailsComponent, "ccpay-card-details", never, {}, {}, never, never, false, never>;
15
18
  }
16
- //# sourceMappingURL=card-details.component.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import { OnInit } from '@angular/core';
2
- import { PaymentLibComponent } from '../../payment-lib.component';
2
+ import type { PaymentLibComponent } from '../../payment-lib.component';
3
3
  import { IPaymentGroup } from '../../interfaces/IPaymentGroup';
4
4
  import { CaseTransactionsService } from '../../services/case-transactions/case-transactions.service';
5
5
  import { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';
@@ -11,6 +11,7 @@ import { IRemission } from '../../interfaces/IRemission';
11
11
  import { IPaymentView } from '../../interfaces/IPaymentView';
12
12
  import { IOrderReferenceFee } from '../../interfaces/IOrderReferenceFee';
13
13
  import { Router } from '@angular/router';
14
+ import * as i0 from "@angular/core";
14
15
  export declare class CaseTransactionsComponent implements OnInit {
15
16
  private router;
16
17
  private paymentViewService;
@@ -127,5 +128,6 @@ export declare class CaseTransactionsComponent implements OnInit {
127
128
  check4AllowedRoles2AccessPBApayment: () => boolean;
128
129
  allowFurtherAccessAfter4Days: (payment: IPayment) => boolean;
129
130
  loadPBAAccountPage(orderRef: IPayment): void;
131
+ static ɵfac: i0.ɵɵFactoryDeclaration<CaseTransactionsComponent, never>;
132
+ static ɵcmp: i0.ɵɵComponentDeclaration<CaseTransactionsComponent, "ccpay-case-transactions", never, { "LOGGEDINUSERROLES": { "alias": "LOGGEDINUSERROLES"; "required": false; }; "isTakePayment": { "alias": "isTakePayment"; "required": false; }; "isFromServiceRequestPage": { "alias": "isFromServiceRequestPage"; "required": false; }; }, {}, never, never, true, never>;
130
133
  }
131
- //# sourceMappingURL=case-transactions.component.d.ts.map
@@ -1,7 +1,8 @@
1
1
  import { OnInit, EventEmitter } from '@angular/core';
2
2
  import { FormBuilder, FormGroup } from '@angular/forms';
3
- import { PaymentLibComponent } from '../../payment-lib.component';
3
+ import type { PaymentLibComponent } from '../../payment-lib.component';
4
4
  import { NotificationService } from '../../services/notification/notification.service';
5
+ import * as i0 from "@angular/core";
5
6
  export declare class ContactDetailsComponent implements OnInit {
6
7
  private formBuilder;
7
8
  private notificationService;
@@ -46,5 +47,6 @@ export declare class ContactDetailsComponent implements OnInit {
46
47
  postcodeValidation(str: any): void;
47
48
  redirection(event: any): void;
48
49
  resetForm(val: any, field: any): void;
50
+ static ɵfac: i0.ɵɵFactoryDeclaration<ContactDetailsComponent, never>;
51
+ static ɵcmp: i0.ɵɵComponentDeclaration<ContactDetailsComponent, "ccpay-contact-details", never, { "isEditOperation": { "alias": "isEditOperation"; "required": false; }; "isEditOperationInRefundList": { "alias": "isEditOperationInRefundList"; "required": false; }; "addressObj": { "alias": "addressObj"; "required": false; }; }, { "assignContactDetails": "assignContactDetails"; "assignContactDetailsInFefundsList": "assignContactDetailsInFefundsList"; "redirectToIssueRefund": "redirectToIssueRefund"; }, never, never, true, never>;
49
52
  }
50
- //# sourceMappingURL=contact-details.component.d.ts.map
@@ -1,7 +1,9 @@
1
1
  import { OnInit } from '@angular/core';
2
+ import * as i0 from "@angular/core";
2
3
  export declare class ErrorBannerComponent implements OnInit {
3
4
  errorMessage: any;
4
5
  constructor();
5
6
  ngOnInit(): void;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<ErrorBannerComponent, never>;
8
+ static ɵcmp: i0.ɵɵComponentDeclaration<ErrorBannerComponent, "ccpay-error-banner", never, { "errorMessage": { "alias": "errorMessage"; "required": false; }; }, {}, never, never, false, never>;
6
9
  }
7
- //# sourceMappingURL=error-banner.component.d.ts.map
@@ -2,13 +2,14 @@ import { OnInit } from '@angular/core';
2
2
  import { IPaymentGroup } from '../../interfaces/IPaymentGroup';
3
3
  import { PaymentViewService } from '../../services/payment-view/payment-view.service';
4
4
  import { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';
5
- import { PaymentLibComponent } from '../../payment-lib.component';
5
+ import type { PaymentLibComponent } from '../../payment-lib.component';
6
6
  import { IRemission } from '../../interfaces/IRemission';
7
7
  import { IFee } from '../../interfaces/IFee';
8
8
  import { SafeHtml } from '@angular/platform-browser';
9
9
  import { Router } from '@angular/router';
10
10
  import { Location } from '@angular/common';
11
11
  import { OrderslistService } from '../../services/orderslist.service';
12
+ import * as i0 from "@angular/core";
12
13
  export declare class FeeSummaryComponent implements OnInit {
13
14
  private router;
14
15
  private bulkScaningPaymentService;
@@ -55,5 +56,6 @@ export declare class FeeSummaryComponent implements OnInit {
55
56
  takePayment(): void;
56
57
  goToAllocatePage(outStandingAmount: number, isFeeAmountZero: Boolean): void;
57
58
  isCheckAmountdueExist(amountDue: any): boolean;
59
+ static ɵfac: i0.ɵɵFactoryDeclaration<FeeSummaryComponent, never>;
60
+ static ɵcmp: i0.ɵɵComponentDeclaration<FeeSummaryComponent, "ccpay-fee-summary", never, { "paymentGroupRef": { "alias": "paymentGroupRef"; "required": false; }; "ccdCaseNumber": { "alias": "ccdCaseNumber"; "required": false; }; "isTurnOff": { "alias": "isTurnOff"; "required": false; }; "caseType": { "alias": "caseType"; "required": false; }; }, {}, never, never, false, never>;
58
61
  }
59
- //# sourceMappingURL=fee-summary.component.d.ts.map
@@ -1,9 +1,10 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { FormBuilder, FormGroup } from '@angular/forms';
3
- import { PaymentLibComponent } from '../../payment-lib.component';
3
+ import type { PaymentLibComponent } from '../../payment-lib.component';
4
4
  import { PaymentViewService } from '../../services/payment-view/payment-view.service';
5
5
  import { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';
6
6
  import { IBSPayments } from '../../interfaces/IBSPayments';
7
+ import * as i0 from "@angular/core";
7
8
  export declare class MarkUnidentifiedPaymentComponent implements OnInit {
8
9
  private formBuilder;
9
10
  private paymentViewService;
@@ -44,5 +45,6 @@ export declare class MarkUnidentifiedPaymentComponent implements OnInit {
44
45
  body: string;
45
46
  showError: any;
46
47
  };
48
+ static ɵfac: i0.ɵɵFactoryDeclaration<MarkUnidentifiedPaymentComponent, never>;
49
+ static ɵcmp: i0.ɵɵComponentDeclaration<MarkUnidentifiedPaymentComponent, "app-mark-unidentified-payment", never, { "caseType": { "alias": "caseType"; "required": false; }; }, {}, never, never, false, never>;
47
50
  }
48
- //# sourceMappingURL=mark-unidentified-payment.component.d.ts.map
@@ -1,9 +1,10 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { FormBuilder, FormGroup } from '@angular/forms';
3
- import { PaymentLibComponent } from '../../payment-lib.component';
3
+ import type { PaymentLibComponent } from '../../payment-lib.component';
4
4
  import { BulkScaningPaymentService } from '../../services/bulk-scaning-payment/bulk-scaning-payment.service';
5
5
  import { IBSPayments } from '../../interfaces/IBSPayments';
6
6
  import { PaymentViewService } from '../../services/payment-view/payment-view.service';
7
+ import * as i0 from "@angular/core";
7
8
  export declare class MarkUnsolicitedPaymentComponent implements OnInit {
8
9
  private formBuilder;
9
10
  private paymentViewService;
@@ -55,5 +56,6 @@ export declare class MarkUnsolicitedPaymentComponent implements OnInit {
55
56
  showError: any;
56
57
  };
57
58
  selectchange(args: any): void;
59
+ static ɵfac: i0.ɵɵFactoryDeclaration<MarkUnsolicitedPaymentComponent, never>;
60
+ static ɵcmp: i0.ɵɵComponentDeclaration<MarkUnsolicitedPaymentComponent, "app-mark-unsolicited-payment", never, { "caseType": { "alias": "caseType"; "required": false; }; }, {}, never, never, false, never>;
58
61
  }
59
- //# sourceMappingURL=mark-unsolicited-payment.component.d.ts.map
@@ -6,6 +6,7 @@ import { NotificationPreviewRequest } from '../../interfaces/NotificationPreview
6
6
  import { NotificationService } from '../../services/notification/notification.service';
7
7
  import { ErrorHandlerService } from '../../services/shared/error-handler.service';
8
8
  import { EventEmitter } from '@angular/core';
9
+ import * as i0 from "@angular/core";
9
10
  export declare class NotificationPreviewComponent implements OnInit {
10
11
  private errorHandlerService;
11
12
  private notificationService;
@@ -21,12 +22,9 @@ export declare class NotificationPreviewComponent implements OnInit {
21
22
  notification: INotificationPreview;
22
23
  notificationPreviewRequest: NotificationPreviewRequest;
23
24
  today: number;
24
- errorMessage: {
25
- title: string;
26
- body: string;
27
- showError: any;
28
- };
25
+ errorMessage: any;
29
26
  constructor(errorHandlerService: ErrorHandlerService, notificationService: NotificationService);
30
27
  ngOnInit(): void;
28
+ static ɵfac: i0.ɵɵFactoryDeclaration<NotificationPreviewComponent, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<NotificationPreviewComponent, "app-notification-preview", never, { "payment": { "alias": "payment"; "required": false; }; "contactDetails": { "alias": "contactDetails"; "required": false; }; "refundReason": { "alias": "refundReason"; "required": false; }; "refundAmount": { "alias": "refundAmount"; "required": false; }; "paymentReference": { "alias": "paymentReference"; "required": false; }; "refundReference": { "alias": "refundReference"; "required": false; }; "previewJourney": { "alias": "previewJourney"; "required": false; }; "notificationSent": { "alias": "notificationSent"; "required": false; }; }, { "notificationPreviewEvent": "notificationPreviewEvent"; }, never, never, true, never>;
31
30
  }
32
- //# sourceMappingURL=notification-preview.component.d.ts.map
@@ -1,3 +1,5 @@
1
+ import * as i0 from "@angular/core";
1
2
  export declare class PageNotFoundComponent {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<PageNotFoundComponent, never>;
4
+ static ɵcmp: i0.ɵɵComponentDeclaration<PageNotFoundComponent, "ng-component", never, {}, {}, never, never, false, never>;
2
5
  }
3
- //# sourceMappingURL=page-not-found.component.d.ts.map
@@ -1,7 +1,8 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { PaymentListService } from '../../services/payment-list/payment-list.service';
3
3
  import { IPayments } from '../../interfaces/IPayments';
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 PaymentListComponent implements OnInit {
6
7
  private paymentListService;
7
8
  private paymentLibComponent;
@@ -11,5 +12,6 @@ export declare class PaymentListComponent implements OnInit {
11
12
  constructor(paymentListService: PaymentListService, paymentLibComponent: PaymentLibComponent);
12
13
  ngOnInit(): void;
13
14
  loadPaymentViewComponent(paymentGroupReference: string, paymentReference: string, paymentMethod: string): void;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<PaymentListComponent, never>;
16
+ static ɵcmp: i0.ɵɵComponentDeclaration<PaymentListComponent, "ccpay-payment-list", never, {}, {}, never, never, false, never>;
14
17
  }
15
- //# sourceMappingURL=payment-list.component.d.ts.map
@@ -1,7 +1,7 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { PaymentViewService } from '../../services/payment-view/payment-view.service';
3
3
  import { NotificationService } from '../../services/notification/notification.service';
4
- import { PaymentLibComponent } from '../../payment-lib.component';
4
+ import type { PaymentLibComponent } from '../../payment-lib.component';
5
5
  import { IPaymentGroup } from '../../interfaces/IPaymentGroup';
6
6
  import { IFee } from '../../interfaces/IFee';
7
7
  import { IPayment } from '../../interfaces/IPayment';
@@ -10,6 +10,7 @@ import { ChangeDetectorRef } from '@angular/core';
10
10
  import { IPaymentFailure } from '../../interfaces/IPaymentFailure';
11
11
  import { OrderslistService } from '../../services/orderslist.service';
12
12
  import { IRefundContactDetails } from '../../interfaces/IRefundContactDetails';
13
+ import * as i0 from "@angular/core";
13
14
  export declare class PaymentViewComponent implements OnInit {
14
15
  private paymentViewService;
15
16
  private notificationService;
@@ -98,5 +99,6 @@ export declare class PaymentViewComponent implements OnInit {
98
99
  getTemplateInstructionType(payment: IPayment): void;
99
100
  showNotificationPreview(): void;
100
101
  hideNotificationPreview(): void;
102
+ static ɵfac: i0.ɵɵFactoryDeclaration<PaymentViewComponent, never>;
103
+ static ɵcmp: i0.ɵɵComponentDeclaration<PaymentViewComponent, "ccpay-payment-view", never, { "isTurnOff": { "alias": "isTurnOff"; "required": false; }; "isTakePayment": { "alias": "isTakePayment"; "required": false; }; "caseType": { "alias": "caseType"; "required": false; }; "orderRef": { "alias": "orderRef"; "required": false; }; "orderStatus": { "alias": "orderStatus"; "required": false; }; "orderTotalPayments": { "alias": "orderTotalPayments"; "required": false; }; "payment": { "alias": "payment"; "required": false; }; "LOGGEDINUSERROLES": { "alias": "LOGGEDINUSERROLES"; "required": false; }; "ISPAYMENTSTATUSENABLED": { "alias": "ISPAYMENTSTATUSENABLED"; "required": false; }; "orderParty": { "alias": "orderParty"; "required": false; }; "orderCreated": { "alias": "orderCreated"; "required": false; }; "orderCCDEvent": { "alias": "orderCCDEvent"; "required": false; }; "orderFeesTotal": { "alias": "orderFeesTotal"; "required": false; }; "orderRemissionTotal": { "alias": "orderRemissionTotal"; "required": false; }; "orderDetail": { "alias": "orderDetail"; "required": false; }; "isServiceRequest": { "alias": "isServiceRequest"; "required": false; }; }, {}, never, never, true, never>;
101
104
  }
102
- //# sourceMappingURL=payment-view.component.d.ts.map
@@ -1,8 +1,10 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { IPayment } from '../../interfaces/IPayment';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class PbaDetailsComponent implements OnInit {
4
5
  payment: IPayment;
5
6
  constructor();
6
7
  ngOnInit(): void;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<PbaDetailsComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<PbaDetailsComponent, "ccpay-pba-details", never, { "payment": { "alias": "payment"; "required": false; }; }, {}, never, never, false, never>;
7
10
  }
8
- //# sourceMappingURL=pba-details.component.d.ts.map
@@ -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;
@@ -30,5 +31,6 @@ export declare class PbaPaymentComponent implements OnInit {
30
31
  cardPayment(): void;
31
32
  selectPaymentMethod(type: string): void;
32
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>;
33
36
  }
34
- //# sourceMappingURL=pba-payment.component.d.ts.map
@@ -8,9 +8,10 @@ import { IRefundRejectReason } from '../../interfaces/IRefundRejectReason';
8
8
  import { OrderslistService } from '../../services/orderslist.service';
9
9
  import { NotificationService } from '../../services/notification/notification.service';
10
10
  import { PaymentViewService } from '../../services/payment-view/payment-view.service';
11
- import { PaymentLibComponent } from '../../payment-lib.component';
11
+ import type { PaymentLibComponent } from '../../payment-lib.component';
12
12
  import { ActivatedRoute, Router } from '@angular/router';
13
13
  import { INotificationPreview } from '../../interfaces/INotificationPreview';
14
+ import * as i0 from "@angular/core";
14
15
  export declare class ProcessRefundComponent implements OnInit {
15
16
  private RefundsService;
16
17
  private paymentViewService;
@@ -74,5 +75,6 @@ export declare class ProcessRefundComponent implements OnInit {
74
75
  getTemplateInstructionType(payment: IPayment, paymentReference: string): void;
75
76
  showNotificationPreview(): void;
76
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>;
77
80
  }
78
- //# sourceMappingURL=process-refund.component.d.ts.map
@@ -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,5 +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
  }
15
- //# sourceMappingURL=processed-payments.component.d.ts.map
@@ -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,5 +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
  }
24
- //# sourceMappingURL=refund-list.component.d.ts.map
@@ -7,11 +7,12 @@ import { IRefundsNotifications } from '../../interfaces/IRefundsNotifications';
7
7
  import { OrderslistService } from '../../services/orderslist.service';
8
8
  import { IRefundContactDetails } from '../../interfaces/IRefundContactDetails';
9
9
  import { IRefundStatus } from '../../interfaces/IRefundStatus';
10
- import { PaymentLibComponent } from '../../payment-lib.component';
10
+ import type { PaymentLibComponent } from '../../payment-lib.component';
11
11
  import { PaymentViewService } from '../../services/payment-view/payment-view.service';
12
12
  import { IPayment } from '../../interfaces/IPayment';
13
13
  import { IFee } from '../../interfaces/IFee';
14
14
  import { IRefundFee } from '../../interfaces/IRefundFee';
15
+ import * as i0 from "@angular/core";
15
16
  export declare class RefundStatusComponent implements OnInit {
16
17
  private formBuilder;
17
18
  private refundService;
@@ -104,5 +105,6 @@ export declare class RefundStatusComponent implements OnInit {
104
105
  hideNotificationPreview(): void;
105
106
  showNotificationSentView(index: number): void;
106
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>;
107
110
  }
108
- //# sourceMappingURL=refund-status.component.d.ts.map
@@ -5,6 +5,7 @@ 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;
@@ -23,11 +24,7 @@ export declare class ReportsComponent implements OnInit {
23
24
  isStartDateLesthanEndDate: Boolean;
24
25
  isDateBetwnMonth: Boolean;
25
26
  isDateRangeBetnWeek: Boolean;
26
- errorMessage: {
27
- title: string;
28
- body: string;
29
- showError: any;
30
- };
27
+ errorMessage: any;
31
28
  paymentGroups: IPaymentGroup[];
32
29
  constructor(xlFileService: XlFileService, errorHandlerService: ErrorHandlerService, formBuilder: FormBuilder, bulkScaningPaymentService: BulkScaningPaymentService, paymentViewService: PaymentViewService);
33
30
  ngOnInit(): void;
@@ -43,5 +40,6 @@ export declare class ReportsComponent implements OnInit {
43
40
  applyDateFormat(res: any): any;
44
41
  multiDateFormater(dateStr: any): any;
45
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>;
46
45
  }
47
- //# sourceMappingURL=reports.component.d.ts.map
@@ -1,5 +1,5 @@
1
1
  import { OnInit, EventEmitter, ChangeDetectorRef } from '@angular/core';
2
- import { PaymentLibComponent } from '../../payment-lib.component';
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';
@@ -11,6 +11,7 @@ import { PaymentViewService } from '../../services/payment-view/payment-view.ser
11
11
  import { NotificationService } from '../../services/notification/notification.service';
12
12
  import { OrderslistService } from '../../services/orderslist.service';
13
13
  import { IRefundContactDetails } from '../../interfaces/IRefundContactDetails';
14
+ import * as i0 from "@angular/core";
14
15
  export declare class ServiceRequestComponent implements OnInit {
15
16
  private paymentLibComponent;
16
17
  private paymentViewService;
@@ -127,5 +128,6 @@ export declare class ServiceRequestComponent implements OnInit {
127
128
  getTemplateInstructionType(payment: IPayment): void;
128
129
  showNotificationPreview(): void;
129
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>;
130
133
  }
131
- //# sourceMappingURL=service-request.component.d.ts.map
@@ -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,5 +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
  }
15
- //# sourceMappingURL=status-history.component.d.ts.map
@@ -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;
@@ -37,5 +38,6 @@ export declare class TableComponent {
37
38
  goToRefundProcessComponent(refundReference: string, refundData: IRefundList): void;
38
39
  goToRefundViewComponent(refundReference: string, refundData: IRefundList): void;
39
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>;
40
43
  }
41
- //# sourceMappingURL=table.component.d.ts.map
@@ -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;
@@ -55,5 +56,6 @@ export declare class UnprocessedPaymentsComponent implements OnInit {
55
56
  validateButtons(): void;
56
57
  unprocessedPaymentUnSelectEvent(event: any): void;
57
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>;
58
61
  }
59
- //# sourceMappingURL=unprocessed-payments.component.d.ts.map
@@ -9,4 +9,3 @@ export declare class AddRemissionRequest {
9
9
  case_type: string;
10
10
  constructor(ccd_case_number: string, fee: IFee, hwf_amount: number, hwf_reference: string, caseType: string);
11
11
  }
12
- //# sourceMappingURL=AddRemissionRequest.d.ts.map
@@ -3,4 +3,3 @@ export declare class AddRetroRemissionRequest {
3
3
  hwf_reference: string;
4
4
  constructor(hwf_amount: number, hwf_reference: string);
5
5
  }
6
- //# sourceMappingURL=AddRetroRemissionRequest.d.ts.map
@@ -29,4 +29,3 @@ export declare class AllocatePaymentRequest {
29
29
  };
30
30
  constructor(ccd_case_number: string, unAllocatedPayment: IBSPayments, caseType: string, exceptionRecord: string, allocatedRequest?: any);
31
31
  }
32
- //# sourceMappingURL=AllocatePaymentRequest.d.ts.map
@@ -7,4 +7,3 @@ export declare class IAllocationPaymentsRequest {
7
7
  user_name: string;
8
8
  constructor(payment_group_reference: string, payment_reference: string, reason?: string, explanation?: string, userName?: string);
9
9
  }
10
- //# sourceMappingURL=IAllocationPaymentsRequest.d.ts.map
@@ -17,4 +17,3 @@ export interface IBSPayments {
17
17
  length?: number;
18
18
  expanded?: boolean;
19
19
  }
20
- //# sourceMappingURL=IBSPayments.d.ts.map
@@ -5,4 +5,3 @@ export interface ICardDetails {
5
5
  expiry_date: string;
6
6
  last_digits_card_number: string;
7
7
  }
8
- //# sourceMappingURL=ICardDetails.d.ts.map
@@ -27,4 +27,3 @@ export interface IFee {
27
27
  selected?: any;
28
28
  issue_refund_add_refund_add_remission: boolean;
29
29
  }
30
- //# sourceMappingURL=IFee.d.ts.map
@@ -25,4 +25,3 @@ export interface INotificationPreview {
25
25
  body: string;
26
26
  html: string;
27
27
  }
28
- //# sourceMappingURL=INotificationPreview.d.ts.map
@@ -7,4 +7,3 @@ export interface IOrderReferenceFee {
7
7
  orderCreated: Date;
8
8
  orderAddBtnEnable: boolean;
9
9
  }
10
- //# sourceMappingURL=IOrderReferenceFee.d.ts.map
@@ -2,4 +2,3 @@ export interface IPatchRefundAction {
2
2
  code: string;
3
3
  reason: string;
4
4
  }
5
- //# sourceMappingURL=IPatchRefundAction.d.ts.map
@@ -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