@hmcts/ccpay-web-component 5.0.10-beta07 → 5.0.10-beta09

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 (389) hide show
  1. package/bundles/hmcts-ccpay-web-component.umd.js +8705 -5098
  2. package/bundles/hmcts-ccpay-web-component.umd.js.map +1 -1
  3. package/bundles/hmcts-ccpay-web-component.umd.min.js +1 -1
  4. package/bundles/hmcts-ccpay-web-component.umd.min.js.map +1 -1
  5. package/esm2015/hmcts-ccpay-web-component.js +6 -2
  6. package/esm2015/lib/components/add-remission/add-remission.component.js +406 -33
  7. package/esm2015/lib/components/allocate-payments/allocate-payments.component.js +348 -37
  8. package/esm2015/lib/components/card-details/card-details.component.js +46 -3
  9. package/esm2015/lib/components/case-transactions/case-transactions.component.js +686 -106
  10. package/esm2015/lib/components/error-banner/error-banner.component.js +14 -2
  11. package/esm2015/lib/components/fee-summary/fee-summary.component.js +254 -28
  12. package/esm2015/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.js +180 -22
  13. package/esm2015/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.js +224 -26
  14. package/esm2015/lib/components/page-not-found.component.js +6 -2
  15. package/esm2015/lib/components/payment-list/payment-list.component.js +47 -3
  16. package/esm2015/lib/components/payment-view/payment-view.component.js +335 -38
  17. package/esm2015/lib/components/pba-details/pba-details.component.js +15 -3
  18. package/esm2015/lib/components/pba-payment/pba-payment.component.js +119 -12
  19. package/esm2015/lib/components/process-refund/process-refund.component.js +177 -15
  20. package/esm2015/lib/components/processed-payments/processed-payments.component.js +41 -3
  21. package/esm2015/lib/components/refund-list/refund-list.component.js +77 -9
  22. package/esm2015/lib/components/refund-status/refund-status.component.js +255 -23
  23. package/esm2015/lib/components/reports/reports.component.js +211 -20
  24. package/esm2015/lib/components/service-request/service-request.component.js +369 -35
  25. package/esm2015/lib/components/status-history/status-history.component.js +44 -4
  26. package/esm2015/lib/components/table/table.component.js +105 -5
  27. package/esm2015/lib/components/unprocessed-payments/unprocessed-payments.component.js +184 -12
  28. package/esm2015/lib/interfaces/AddRemissionRequest.js +28 -1
  29. package/esm2015/lib/interfaces/AddRetroRemissionRequest.js +15 -1
  30. package/esm2015/lib/interfaces/AllocatePaymentRequest.js +42 -1
  31. package/esm2015/lib/interfaces/IAllocationPaymentsRequest.js +26 -1
  32. package/esm2015/lib/interfaces/IBSPayments.js +45 -2
  33. package/esm2015/lib/interfaces/ICardDetails.js +21 -2
  34. package/esm2015/lib/interfaces/IFee.js +53 -2
  35. package/esm2015/lib/interfaces/IOrderReferenceFee.js +25 -2
  36. package/esm2015/lib/interfaces/IPatchRefundAction.js +15 -2
  37. package/esm2015/lib/interfaces/IPayment.js +65 -2
  38. package/esm2015/lib/interfaces/IPaymentFailure.js +33 -2
  39. package/esm2015/lib/interfaces/IPaymentGroup.js +19 -2
  40. package/esm2015/lib/interfaces/IPaymentStatus.js +25 -1
  41. package/esm2015/lib/interfaces/IPaymentView.js +17 -2
  42. package/esm2015/lib/interfaces/IPayments.js +13 -2
  43. package/esm2015/lib/interfaces/IRefundAction.js +15 -2
  44. package/esm2015/lib/interfaces/IRefundList.js +29 -2
  45. package/esm2015/lib/interfaces/IRefundReasons.js +19 -2
  46. package/esm2015/lib/interfaces/IRefundRejectReason.js +15 -2
  47. package/esm2015/lib/interfaces/IRefundStatus.js +23 -2
  48. package/esm2015/lib/interfaces/IRefundStatusHistory.js +15 -2
  49. package/esm2015/lib/interfaces/IRemission.js +25 -2
  50. package/esm2015/lib/interfaces/IResubmitRefundRequest.js +15 -1
  51. package/esm2015/lib/interfaces/IStatusHistories.js +19 -2
  52. package/esm2015/lib/interfaces/IStatusHistory.js +21 -2
  53. package/esm2015/lib/interfaces/IserviceRequestCardPayment.js +16 -1
  54. package/esm2015/lib/interfaces/IserviceRequestPbaPayment.js +23 -1
  55. package/esm2015/lib/interfaces/IssueRefundRequest.js +18 -1
  56. package/esm2015/lib/interfaces/PayhubAntennaRequest.js +21 -2
  57. package/esm2015/lib/interfaces/PaymentToPayhubRequest.js +27 -2
  58. package/esm2015/lib/interfaces/PostIssueRefundRetroRemission.js +12 -1
  59. package/esm2015/lib/interfaces/PostRefundRetroRemission.js +15 -1
  60. package/esm2015/lib/interfaces/RefundsRequest.js +15 -1
  61. package/esm2015/lib/interfaces/UnidentifiedPaymentsRequest.js +20 -1
  62. package/esm2015/lib/interfaces/UnsolicitedPaymentsRequest.js +29 -1
  63. package/esm2015/lib/payment-lib.component.js +147 -2
  64. package/esm2015/lib/payment-lib.module.js +5 -1
  65. package/esm2015/lib/payment-lib.service.js +45 -2
  66. package/esm2015/lib/pipes/capitalize.pipe.js +11 -1
  67. package/esm2015/lib/pipes/ccd-hyphens.pipe.js +12 -1
  68. package/esm2015/lib/pipes/key-value.pipe.js +11 -1
  69. package/esm2015/lib/pipes/sanitize-html.pipe.js +20 -1
  70. package/esm2015/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.js +102 -9
  71. package/esm2015/lib/services/card-details/card-details.service.js +39 -2
  72. package/esm2015/lib/services/case-transactions/case-transactions.service.js +39 -2
  73. package/esm2015/lib/services/orderslist.service.js +251 -2
  74. package/esm2015/lib/services/payment-list/payment-list.service.js +42 -2
  75. package/esm2015/lib/services/payment-view/payment-view.service.js +168 -3
  76. package/esm2015/lib/services/refunds/refunds.service.js +109 -7
  77. package/esm2015/lib/services/shared/error-handler.service.js +19 -2
  78. package/esm2015/lib/services/shared/httpclient/webcomponent.http.client.js +82 -6
  79. package/esm2015/lib/services/shared/logger/console-logger.service.js +27 -3
  80. package/esm2015/lib/services/shared/logger/logger.service.js +35 -3
  81. package/esm2015/lib/services/status-history/status-history.service.js +40 -2
  82. package/esm2015/lib/services/xl-file/xl-file.service.js +60 -2
  83. package/esm2015/public_api.js +8 -4
  84. package/esm5/hmcts-ccpay-web-component.js +48 -0
  85. package/esm5/lib/components/add-remission/add-remission.component.js +1146 -0
  86. package/esm5/lib/components/allocate-payments/allocate-payments.component.js +745 -0
  87. package/esm5/lib/components/card-details/card-details.component.js +77 -0
  88. package/esm5/lib/components/case-transactions/case-transactions.component.js +1448 -0
  89. package/esm5/lib/components/error-banner/error-banner.component.js +36 -0
  90. package/esm5/lib/components/fee-summary/fee-summary.component.js +504 -0
  91. package/esm5/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.js +371 -0
  92. package/esm5/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.js +474 -0
  93. package/esm5/lib/components/page-not-found.component.js +17 -0
  94. package/esm5/lib/components/payment-list/payment-list.component.js +83 -0
  95. package/esm5/lib/components/payment-view/payment-view.component.js +673 -0
  96. package/esm5/lib/components/pba-details/pba-details.component.js +36 -0
  97. package/esm5/lib/components/pba-payment/pba-payment.component.js +269 -0
  98. package/esm5/lib/components/process-refund/process-refund.component.js +536 -0
  99. package/esm5/lib/components/processed-payments/processed-payments.component.js +83 -0
  100. package/esm5/lib/components/refund-list/refund-list.component.js +130 -0
  101. package/esm5/lib/components/refund-status/refund-status.component.js +554 -0
  102. package/esm5/lib/components/reports/reports.component.js +515 -0
  103. package/esm5/lib/components/service-request/service-request.component.js +690 -0
  104. package/esm5/lib/components/status-history/status-history.component.js +70 -0
  105. package/esm5/lib/components/table/table.component.js +229 -0
  106. package/esm5/lib/components/unprocessed-payments/unprocessed-payments.component.js +418 -0
  107. package/esm5/lib/interfaces/AddRemissionRequest.js +32 -0
  108. package/esm5/lib/interfaces/AddRetroRemissionRequest.js +19 -0
  109. package/esm5/lib/interfaces/AllocatePaymentRequest.js +63 -0
  110. package/esm5/lib/interfaces/IAllocationPaymentsRequest.js +34 -0
  111. package/esm5/lib/interfaces/IBSPayments.js +45 -0
  112. package/esm5/lib/interfaces/ICardDetails.js +21 -0
  113. package/esm5/lib/interfaces/IFee.js +53 -0
  114. package/esm5/lib/interfaces/IOrderReferenceFee.js +25 -0
  115. package/esm5/lib/interfaces/IPatchRefundAction.js +15 -0
  116. package/esm5/lib/interfaces/IPayment.js +65 -0
  117. package/esm5/lib/interfaces/IPaymentFailure.js +33 -0
  118. package/esm5/lib/interfaces/IPaymentGroup.js +19 -0
  119. package/esm5/lib/interfaces/IPaymentStatus.js +31 -0
  120. package/esm5/lib/interfaces/IPaymentView.js +17 -0
  121. package/esm5/lib/interfaces/IPayments.js +13 -0
  122. package/esm5/lib/interfaces/IRefundAction.js +15 -0
  123. package/esm5/lib/interfaces/IRefundList.js +29 -0
  124. package/esm5/lib/interfaces/IRefundReasons.js +19 -0
  125. package/esm5/lib/interfaces/IRefundRejectReason.js +15 -0
  126. package/esm5/lib/interfaces/IRefundStatus.js +23 -0
  127. package/esm5/lib/interfaces/IRefundStatusHistory.js +15 -0
  128. package/esm5/lib/interfaces/IRemission.js +25 -0
  129. package/esm5/lib/interfaces/IResubmitRefundRequest.js +19 -0
  130. package/esm5/lib/interfaces/IStatusHistories.js +19 -0
  131. package/esm5/lib/interfaces/IStatusHistory.js +21 -0
  132. package/esm5/lib/interfaces/IserviceRequestCardPayment.js +22 -0
  133. package/esm5/lib/interfaces/IserviceRequestPbaPayment.js +28 -0
  134. package/esm5/lib/interfaces/IssueRefundRequest.js +22 -0
  135. package/esm5/lib/interfaces/PayhubAntennaRequest.js +25 -0
  136. package/esm5/lib/interfaces/PaymentToPayhubRequest.js +34 -0
  137. package/esm5/lib/interfaces/PostIssueRefundRetroRemission.js +16 -0
  138. package/esm5/lib/interfaces/PostRefundRetroRemission.js +19 -0
  139. package/esm5/lib/interfaces/RefundsRequest.js +19 -0
  140. package/esm5/lib/interfaces/UnidentifiedPaymentsRequest.js +28 -0
  141. package/esm5/lib/interfaces/UnsolicitedPaymentsRequest.js +37 -0
  142. package/esm5/lib/payment-lib.component.js +237 -0
  143. package/esm5/lib/payment-lib.module.js +103 -0
  144. package/esm5/lib/payment-lib.service.js +111 -0
  145. package/esm5/lib/pipes/capitalize.pipe.js +32 -0
  146. package/esm5/lib/pipes/ccd-hyphens.pipe.js +37 -0
  147. package/esm5/lib/pipes/key-value.pipe.js +37 -0
  148. package/esm5/lib/pipes/sanitize-html.pipe.js +39 -0
  149. package/esm5/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.js +218 -0
  150. package/esm5/lib/services/card-details/card-details.service.js +76 -0
  151. package/esm5/lib/services/case-transactions/case-transactions.service.js +76 -0
  152. package/esm5/lib/services/orderslist.service.js +531 -0
  153. package/esm5/lib/services/payment-list/payment-list.service.js +80 -0
  154. package/esm5/lib/services/payment-view/payment-view.service.js +416 -0
  155. package/esm5/lib/services/refunds/refunds.service.js +256 -0
  156. package/esm5/lib/services/shared/error-handler.service.js +127 -0
  157. package/esm5/lib/services/shared/httpclient/webcomponent.http.client.js +167 -0
  158. package/esm5/lib/services/shared/logger/console-logger.service.js +88 -0
  159. package/esm5/lib/services/shared/logger/logger.service.js +68 -0
  160. package/esm5/lib/services/status-history/status-history.service.js +80 -0
  161. package/esm5/lib/services/xl-file/xl-file.service.js +254 -0
  162. package/esm5/public_api.js +11 -0
  163. package/fesm2015/hmcts-ccpay-web-component.js +3543 -539
  164. package/fesm2015/hmcts-ccpay-web-component.js.map +1 -1
  165. package/fesm5/hmcts-ccpay-web-component.js +10021 -0
  166. package/fesm5/hmcts-ccpay-web-component.js.map +1 -0
  167. package/hmcts-ccpay-web-component.d.ts +0 -1
  168. package/hmcts-ccpay-web-component.metadata.json +1 -1
  169. package/lib/components/add-remission/add-remission.component.d.ts +0 -1
  170. package/lib/components/allocate-payments/allocate-payments.component.d.ts +0 -1
  171. package/lib/components/card-details/card-details.component.d.ts +1 -2
  172. package/lib/components/case-transactions/case-transactions.component.d.ts +1 -2
  173. package/lib/components/error-banner/error-banner.component.d.ts +0 -1
  174. package/lib/components/fee-summary/fee-summary.component.d.ts +0 -1
  175. package/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.d.ts +0 -1
  176. package/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.d.ts +0 -1
  177. package/lib/components/page-not-found.component.d.ts +0 -1
  178. package/lib/components/payment-list/payment-list.component.d.ts +0 -1
  179. package/lib/components/payment-view/payment-view.component.d.ts +2 -3
  180. package/lib/components/pba-details/pba-details.component.d.ts +0 -1
  181. package/lib/components/pba-payment/pba-payment.component.d.ts +0 -1
  182. package/lib/components/process-refund/process-refund.component.d.ts +0 -1
  183. package/lib/components/processed-payments/processed-payments.component.d.ts +0 -1
  184. package/lib/components/refund-list/refund-list.component.d.ts +0 -1
  185. package/lib/components/refund-status/refund-status.component.d.ts +0 -1
  186. package/lib/components/reports/reports.component.d.ts +0 -1
  187. package/lib/components/service-request/service-request.component.d.ts +0 -1
  188. package/lib/components/status-history/status-history.component.d.ts +0 -1
  189. package/lib/components/table/table.component.d.ts +0 -1
  190. package/lib/components/unprocessed-payments/unprocessed-payments.component.d.ts +0 -1
  191. package/lib/interfaces/AddRemissionRequest.d.ts +0 -1
  192. package/lib/interfaces/AddRetroRemissionRequest.d.ts +0 -1
  193. package/lib/interfaces/AllocatePaymentRequest.d.ts +0 -1
  194. package/lib/interfaces/IAllocationPaymentsRequest.d.ts +0 -1
  195. package/lib/interfaces/IBSPayments.d.ts +0 -1
  196. package/lib/interfaces/ICardDetails.d.ts +0 -1
  197. package/lib/interfaces/IFee.d.ts +0 -1
  198. package/lib/interfaces/IOrderReferenceFee.d.ts +0 -1
  199. package/lib/interfaces/IPatchRefundAction.d.ts +0 -1
  200. package/lib/interfaces/IPayment.d.ts +0 -1
  201. package/lib/interfaces/IPaymentFailure.d.ts +0 -1
  202. package/lib/interfaces/IPaymentGroup.d.ts +0 -1
  203. package/lib/interfaces/IPaymentStatus.d.ts +0 -1
  204. package/lib/interfaces/IPaymentView.d.ts +0 -1
  205. package/lib/interfaces/IPayments.d.ts +0 -1
  206. package/lib/interfaces/IRefundAction.d.ts +0 -1
  207. package/lib/interfaces/IRefundList.d.ts +0 -1
  208. package/lib/interfaces/IRefundReasons.d.ts +0 -1
  209. package/lib/interfaces/IRefundRejectReason.d.ts +0 -1
  210. package/lib/interfaces/IRefundStatus.d.ts +0 -1
  211. package/lib/interfaces/IRefundStatusHistory.d.ts +0 -1
  212. package/lib/interfaces/IRemission.d.ts +0 -1
  213. package/lib/interfaces/IResubmitRefundRequest.d.ts +0 -1
  214. package/lib/interfaces/IStatusHistories.d.ts +0 -1
  215. package/lib/interfaces/IStatusHistory.d.ts +0 -1
  216. package/lib/interfaces/IserviceRequestCardPayment.d.ts +0 -1
  217. package/lib/interfaces/IserviceRequestPbaPayment.d.ts +0 -1
  218. package/lib/interfaces/IssueRefundRequest.d.ts +0 -1
  219. package/lib/interfaces/PayhubAntennaRequest.d.ts +0 -1
  220. package/lib/interfaces/PaymentToPayhubRequest.d.ts +0 -1
  221. package/lib/interfaces/PostIssueRefundRetroRemission.d.ts +0 -1
  222. package/lib/interfaces/PostRefundRetroRemission.d.ts +0 -1
  223. package/lib/interfaces/RefundsRequest.d.ts +0 -1
  224. package/lib/interfaces/UnidentifiedPaymentsRequest.d.ts +0 -1
  225. package/lib/interfaces/UnsolicitedPaymentsRequest.d.ts +0 -1
  226. package/lib/payment-lib.component.d.ts +0 -1
  227. package/lib/payment-lib.module.d.ts +0 -1
  228. package/lib/payment-lib.service.d.ts +0 -1
  229. package/lib/pipes/capitalize.pipe.d.ts +0 -1
  230. package/lib/pipes/ccd-hyphens.pipe.d.ts +0 -1
  231. package/lib/pipes/key-value.pipe.d.ts +0 -1
  232. package/lib/pipes/sanitize-html.pipe.d.ts +0 -1
  233. package/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.d.ts +0 -1
  234. package/lib/services/card-details/card-details.service.d.ts +0 -1
  235. package/lib/services/case-transactions/case-transactions.service.d.ts +0 -1
  236. package/lib/services/orderslist.service.d.ts +0 -1
  237. package/lib/services/payment-list/payment-list.service.d.ts +0 -1
  238. package/lib/services/payment-view/payment-view.service.d.ts +0 -1
  239. package/lib/services/refunds/refunds.service.d.ts +0 -1
  240. package/lib/services/shared/error-handler.service.d.ts +0 -1
  241. package/lib/services/shared/httpclient/webcomponent.http.client.d.ts +0 -1
  242. package/lib/services/shared/logger/console-logger.service.d.ts +3 -4
  243. package/lib/services/shared/logger/logger.service.d.ts +0 -1
  244. package/lib/services/status-history/status-history.service.d.ts +0 -1
  245. package/lib/services/xl-file/xl-file.service.d.ts +0 -1
  246. package/package.json +8 -6
  247. package/public_api.d.ts +0 -1
  248. package/hmcts-ccpay-web-component.d.ts.map +0 -1
  249. package/lib/components/add-remission/add-remission.component.d.ts.map +0 -1
  250. package/lib/components/add-remission/add-remission.component.ngfactory.d.ts.map +0 -1
  251. package/lib/components/add-remission/add-remission.component.scss.shim.ngstyle.d.ts.map +0 -1
  252. package/lib/components/allocate-payments/allocate-payments.component.d.ts.map +0 -1
  253. package/lib/components/allocate-payments/allocate-payments.component.ngfactory.d.ts.map +0 -1
  254. package/lib/components/allocate-payments/allocate-payments.component.scss.shim.ngstyle.d.ts.map +0 -1
  255. package/lib/components/card-details/card-details.component.css.shim.ngstyle.d.ts.map +0 -1
  256. package/lib/components/card-details/card-details.component.d.ts.map +0 -1
  257. package/lib/components/card-details/card-details.component.ngfactory.d.ts.map +0 -1
  258. package/lib/components/case-transactions/case-transactions.component.css.shim.ngstyle.d.ts.map +0 -1
  259. package/lib/components/case-transactions/case-transactions.component.d.ts.map +0 -1
  260. package/lib/components/case-transactions/case-transactions.component.ngfactory.d.ts.map +0 -1
  261. package/lib/components/error-banner/error-banner.component.d.ts.map +0 -1
  262. package/lib/components/error-banner/error-banner.component.ngfactory.d.ts.map +0 -1
  263. package/lib/components/error-banner/error-banner.component.scss.shim.ngstyle.d.ts.map +0 -1
  264. package/lib/components/fee-summary/fee-summary.component.d.ts.map +0 -1
  265. package/lib/components/fee-summary/fee-summary.component.ngfactory.d.ts.map +0 -1
  266. package/lib/components/fee-summary/fee-summary.component.scss.shim.ngstyle.d.ts.map +0 -1
  267. package/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.d.ts.map +0 -1
  268. package/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.ngfactory.d.ts.map +0 -1
  269. package/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.scss.shim.ngstyle.d.ts.map +0 -1
  270. package/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.d.ts.map +0 -1
  271. package/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.ngfactory.d.ts.map +0 -1
  272. package/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.scss.shim.ngstyle.d.ts.map +0 -1
  273. package/lib/components/page-not-found.component.d.ts.map +0 -1
  274. package/lib/components/page-not-found.component.ngfactory.d.ts.map +0 -1
  275. package/lib/components/payment-list/payment-list.component.css.shim.ngstyle.d.ts.map +0 -1
  276. package/lib/components/payment-list/payment-list.component.d.ts.map +0 -1
  277. package/lib/components/payment-list/payment-list.component.ngfactory.d.ts.map +0 -1
  278. package/lib/components/payment-view/payment-view.component.css.shim.ngstyle.d.ts.map +0 -1
  279. package/lib/components/payment-view/payment-view.component.d.ts.map +0 -1
  280. package/lib/components/payment-view/payment-view.component.ngfactory.d.ts.map +0 -1
  281. package/lib/components/pba-details/pba-details.component.css.shim.ngstyle.d.ts.map +0 -1
  282. package/lib/components/pba-details/pba-details.component.d.ts.map +0 -1
  283. package/lib/components/pba-details/pba-details.component.ngfactory.d.ts.map +0 -1
  284. package/lib/components/pba-payment/pba-payment.component.d.ts.map +0 -1
  285. package/lib/components/pba-payment/pba-payment.component.ngfactory.d.ts.map +0 -1
  286. package/lib/components/pba-payment/pba-payment.component.scss.shim.ngstyle.d.ts.map +0 -1
  287. package/lib/components/process-refund/process-refund.component.css.shim.ngstyle.d.ts.map +0 -1
  288. package/lib/components/process-refund/process-refund.component.d.ts.map +0 -1
  289. package/lib/components/process-refund/process-refund.component.ngfactory.d.ts.map +0 -1
  290. package/lib/components/processed-payments/processed-payments.component.d.ts.map +0 -1
  291. package/lib/components/processed-payments/processed-payments.component.ngfactory.d.ts.map +0 -1
  292. package/lib/components/processed-payments/processed-payments.component.scss.shim.ngstyle.d.ts.map +0 -1
  293. package/lib/components/refund-list/refund-list.component.css.shim.ngstyle.d.ts.map +0 -1
  294. package/lib/components/refund-list/refund-list.component.d.ts.map +0 -1
  295. package/lib/components/refund-list/refund-list.component.ngfactory.d.ts.map +0 -1
  296. package/lib/components/refund-status/refund-status.component.css.shim.ngstyle.d.ts.map +0 -1
  297. package/lib/components/refund-status/refund-status.component.d.ts.map +0 -1
  298. package/lib/components/refund-status/refund-status.component.ngfactory.d.ts.map +0 -1
  299. package/lib/components/reports/reports.component.d.ts.map +0 -1
  300. package/lib/components/reports/reports.component.ngfactory.d.ts.map +0 -1
  301. package/lib/components/reports/reports.component.scss.shim.ngstyle.d.ts.map +0 -1
  302. package/lib/components/service-request/service-request.component.css.shim.ngstyle.d.ts.map +0 -1
  303. package/lib/components/service-request/service-request.component.d.ts.map +0 -1
  304. package/lib/components/service-request/service-request.component.ngfactory.d.ts.map +0 -1
  305. package/lib/components/status-history/status-history.component.css.shim.ngstyle.d.ts.map +0 -1
  306. package/lib/components/status-history/status-history.component.d.ts.map +0 -1
  307. package/lib/components/status-history/status-history.component.ngfactory.d.ts.map +0 -1
  308. package/lib/components/table/table.component.css.shim.ngstyle.d.ts.map +0 -1
  309. package/lib/components/table/table.component.d.ts.map +0 -1
  310. package/lib/components/table/table.component.ngfactory.d.ts.map +0 -1
  311. package/lib/components/unprocessed-payments/unprocessed-payments.component.d.ts.map +0 -1
  312. package/lib/components/unprocessed-payments/unprocessed-payments.component.ngfactory.d.ts.map +0 -1
  313. package/lib/components/unprocessed-payments/unprocessed-payments.component.scss.shim.ngstyle.d.ts.map +0 -1
  314. package/lib/interfaces/AddRemissionRequest.d.ts.map +0 -1
  315. package/lib/interfaces/AddRetroRemissionRequest.d.ts.map +0 -1
  316. package/lib/interfaces/AllocatePaymentRequest.d.ts.map +0 -1
  317. package/lib/interfaces/IAllocationPaymentsRequest.d.ts.map +0 -1
  318. package/lib/interfaces/IBSPayments.d.ts.map +0 -1
  319. package/lib/interfaces/ICardDetails.d.ts.map +0 -1
  320. package/lib/interfaces/IFee.d.ts.map +0 -1
  321. package/lib/interfaces/IOrderReferenceFee.d.ts.map +0 -1
  322. package/lib/interfaces/IPatchRefundAction.d.ts.map +0 -1
  323. package/lib/interfaces/IPayment.d.ts.map +0 -1
  324. package/lib/interfaces/IPaymentFailure.d.ts.map +0 -1
  325. package/lib/interfaces/IPaymentGroup.d.ts.map +0 -1
  326. package/lib/interfaces/IPaymentStatus.d.ts.map +0 -1
  327. package/lib/interfaces/IPaymentView.d.ts.map +0 -1
  328. package/lib/interfaces/IPayments.d.ts.map +0 -1
  329. package/lib/interfaces/IRefundAction.d.ts.map +0 -1
  330. package/lib/interfaces/IRefundList.d.ts.map +0 -1
  331. package/lib/interfaces/IRefundReasons.d.ts.map +0 -1
  332. package/lib/interfaces/IRefundRejectReason.d.ts.map +0 -1
  333. package/lib/interfaces/IRefundStatus.d.ts.map +0 -1
  334. package/lib/interfaces/IRefundStatusHistory.d.ts.map +0 -1
  335. package/lib/interfaces/IRemission.d.ts.map +0 -1
  336. package/lib/interfaces/IResubmitRefundRequest.d.ts.map +0 -1
  337. package/lib/interfaces/IStatusHistories.d.ts.map +0 -1
  338. package/lib/interfaces/IStatusHistory.d.ts.map +0 -1
  339. package/lib/interfaces/IserviceRequestCardPayment.d.ts.map +0 -1
  340. package/lib/interfaces/IserviceRequestPbaPayment.d.ts.map +0 -1
  341. package/lib/interfaces/IssueRefundRequest.d.ts.map +0 -1
  342. package/lib/interfaces/PayhubAntennaRequest.d.ts.map +0 -1
  343. package/lib/interfaces/PaymentToPayhubRequest.d.ts.map +0 -1
  344. package/lib/interfaces/PostIssueRefundRetroRemission.d.ts.map +0 -1
  345. package/lib/interfaces/PostRefundRetroRemission.d.ts.map +0 -1
  346. package/lib/interfaces/RefundsRequest.d.ts.map +0 -1
  347. package/lib/interfaces/UnidentifiedPaymentsRequest.d.ts.map +0 -1
  348. package/lib/interfaces/UnsolicitedPaymentsRequest.d.ts.map +0 -1
  349. package/lib/payment-lib.component.d.ts.map +0 -1
  350. package/lib/payment-lib.component.ngfactory.d.ts.map +0 -1
  351. package/lib/payment-lib.module.d.ts.map +0 -1
  352. package/lib/payment-lib.module.ngfactory.d.ts.map +0 -1
  353. package/lib/payment-lib.service.d.ts.map +0 -1
  354. package/lib/payment-lib.service.ngfactory.d.ts.map +0 -1
  355. package/lib/pipes/capitalize.pipe.d.ts.map +0 -1
  356. package/lib/pipes/capitalize.pipe.ngfactory.d.ts.map +0 -1
  357. package/lib/pipes/ccd-hyphens.pipe.d.ts.map +0 -1
  358. package/lib/pipes/ccd-hyphens.pipe.ngfactory.d.ts.map +0 -1
  359. package/lib/pipes/key-value.pipe.d.ts.map +0 -1
  360. package/lib/pipes/key-value.pipe.ngfactory.d.ts.map +0 -1
  361. package/lib/pipes/sanitize-html.pipe.d.ts.map +0 -1
  362. package/lib/pipes/sanitize-html.pipe.ngfactory.d.ts.map +0 -1
  363. package/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.d.ts.map +0 -1
  364. package/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.ngfactory.d.ts.map +0 -1
  365. package/lib/services/card-details/card-details.service.d.ts.map +0 -1
  366. package/lib/services/card-details/card-details.service.ngfactory.d.ts.map +0 -1
  367. package/lib/services/case-transactions/case-transactions.service.d.ts.map +0 -1
  368. package/lib/services/case-transactions/case-transactions.service.ngfactory.d.ts.map +0 -1
  369. package/lib/services/orderslist.service.d.ts.map +0 -1
  370. package/lib/services/orderslist.service.ngfactory.d.ts.map +0 -1
  371. package/lib/services/payment-list/payment-list.service.d.ts.map +0 -1
  372. package/lib/services/payment-list/payment-list.service.ngfactory.d.ts.map +0 -1
  373. package/lib/services/payment-view/payment-view.service.d.ts.map +0 -1
  374. package/lib/services/payment-view/payment-view.service.ngfactory.d.ts.map +0 -1
  375. package/lib/services/refunds/refunds.service.d.ts.map +0 -1
  376. package/lib/services/refunds/refunds.service.ngfactory.d.ts.map +0 -1
  377. package/lib/services/shared/error-handler.service.d.ts.map +0 -1
  378. package/lib/services/shared/error-handler.service.ngfactory.d.ts.map +0 -1
  379. package/lib/services/shared/httpclient/webcomponent.http.client.d.ts.map +0 -1
  380. package/lib/services/shared/httpclient/webcomponent.http.client.ngfactory.d.ts.map +0 -1
  381. package/lib/services/shared/logger/console-logger.service.d.ts.map +0 -1
  382. package/lib/services/shared/logger/console-logger.service.ngfactory.d.ts.map +0 -1
  383. package/lib/services/shared/logger/logger.service.d.ts.map +0 -1
  384. package/lib/services/shared/logger/logger.service.ngfactory.d.ts.map +0 -1
  385. package/lib/services/status-history/status-history.service.d.ts.map +0 -1
  386. package/lib/services/status-history/status-history.service.ngfactory.d.ts.map +0 -1
  387. package/lib/services/xl-file/xl-file.service.d.ts.map +0 -1
  388. package/lib/services/xl-file/xl-file.service.ngfactory.d.ts.map +0 -1
  389. package/public_api.d.ts.map +0 -1
@@ -0,0 +1,531 @@
1
+ /**
2
+ * @fileoverview added by tsickle
3
+ * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
4
+ */
5
+ import { Injectable } from '@angular/core';
6
+ import { BehaviorSubject } from 'rxjs';
7
+ import * as i0 from "@angular/core";
8
+ var OrderslistService = /** @class */ (function () {
9
+ function OrderslistService() {
10
+ this.ordersList = new BehaviorSubject(null);
11
+ this.refundView = new BehaviorSubject(null);
12
+ this.caseType = new BehaviorSubject("");
13
+ this.getcaseType = this.caseType.asObservable();
14
+ this.feeExists = new BehaviorSubject(null);
15
+ this.getFeeExist = this.feeExists.asObservable();
16
+ this.ccdCaseNumber = new BehaviorSubject("");
17
+ this.getCCDCaseNumberforRefund = this.ccdCaseNumber.asObservable();
18
+ this.isFromServiceRequestPage = new BehaviorSubject(null);
19
+ this.getisFromServiceRequestPage = this.isFromServiceRequestPage.asObservable();
20
+ this.OrderRefId = new BehaviorSubject("");
21
+ this.getOrderRefId = this.OrderRefId.asObservable();
22
+ this.navigationPage = new BehaviorSubject("");
23
+ this.getnavigationPage = this.navigationPage.asObservable();
24
+ this.orderRef = new BehaviorSubject("");
25
+ this.getorderRef = this.orderRef.asObservable();
26
+ this.orderCCDEvent = new BehaviorSubject("");
27
+ this.getorderCCDEvent = this.caseType.asObservable();
28
+ this.orderCreated = new BehaviorSubject(null);
29
+ this.getorderCreated = this.orderCreated.asObservable();
30
+ this.orderParty = new BehaviorSubject("");
31
+ this.getorderParty = this.orderParty.asObservable();
32
+ this.orderRemissionTotal = new BehaviorSubject(null);
33
+ this.getorderRemissionTotal = this.orderRemissionTotal.asObservable();
34
+ this.orderFeesTotal = new BehaviorSubject(null);
35
+ this.getorderFeesTotal = this.orderFeesTotal.asObservable();
36
+ this.orderTotalPayments = new BehaviorSubject(null);
37
+ this.getorderTotalPayments = this.orderTotalPayments.asObservable();
38
+ this.rolesList = new BehaviorSubject(null);
39
+ this.orderDetail = new BehaviorSubject(null);
40
+ this.paymentPageView = new BehaviorSubject(null);
41
+ }
42
+ /**
43
+ * @param {?} orderLevelFees
44
+ * @return {?}
45
+ */
46
+ OrderslistService.prototype.setOrdersList = /**
47
+ * @param {?} orderLevelFees
48
+ * @return {?}
49
+ */
50
+ function (orderLevelFees) {
51
+ this.ordersList.next(Object.assign([], orderLevelFees));
52
+ };
53
+ /**
54
+ * @return {?}
55
+ */
56
+ OrderslistService.prototype.getOrdersList = /**
57
+ * @return {?}
58
+ */
59
+ function () {
60
+ return this.ordersList;
61
+ };
62
+ /**
63
+ * @param {?} refundList
64
+ * @return {?}
65
+ */
66
+ OrderslistService.prototype.setRefundView = /**
67
+ * @param {?} refundList
68
+ * @return {?}
69
+ */
70
+ function (refundList) {
71
+ this.refundView.next(Object.assign([], refundList));
72
+ };
73
+ /**
74
+ * @return {?}
75
+ */
76
+ OrderslistService.prototype.getRefundView = /**
77
+ * @return {?}
78
+ */
79
+ function () {
80
+ return this.refundView;
81
+ };
82
+ /**
83
+ * @param {?} caseType
84
+ * @return {?}
85
+ */
86
+ OrderslistService.prototype.setCaseType = /**
87
+ * @param {?} caseType
88
+ * @return {?}
89
+ */
90
+ function (caseType) {
91
+ this.caseType.next(caseType);
92
+ };
93
+ /**
94
+ * @return {?}
95
+ */
96
+ OrderslistService.prototype.getCaseType = /**
97
+ * @return {?}
98
+ */
99
+ function () {
100
+ return this.caseType;
101
+ };
102
+ /**
103
+ * @param {?} ccdCaseNumber
104
+ * @return {?}
105
+ */
106
+ OrderslistService.prototype.setCCDCaseNumber = /**
107
+ * @param {?} ccdCaseNumber
108
+ * @return {?}
109
+ */
110
+ function (ccdCaseNumber) {
111
+ this.ccdCaseNumber.next(ccdCaseNumber);
112
+ };
113
+ /**
114
+ * @return {?}
115
+ */
116
+ OrderslistService.prototype.getCCDCaseNumber = /**
117
+ * @return {?}
118
+ */
119
+ function () {
120
+ return this.ccdCaseNumber;
121
+ };
122
+ /**
123
+ * @param {?} feeExists
124
+ * @return {?}
125
+ */
126
+ OrderslistService.prototype.setFeeExists = /**
127
+ * @param {?} feeExists
128
+ * @return {?}
129
+ */
130
+ function (feeExists) {
131
+ this.feeExists.next(feeExists);
132
+ };
133
+ /**
134
+ * @return {?}
135
+ */
136
+ OrderslistService.prototype.getFeeExists = /**
137
+ * @return {?}
138
+ */
139
+ function () {
140
+ return this.feeExists;
141
+ };
142
+ /**
143
+ * @param {?} isFromServiceRequestPage
144
+ * @return {?}
145
+ */
146
+ OrderslistService.prototype.setisFromServiceRequestPage = /**
147
+ * @param {?} isFromServiceRequestPage
148
+ * @return {?}
149
+ */
150
+ function (isFromServiceRequestPage) {
151
+ this.isFromServiceRequestPage.next(isFromServiceRequestPage);
152
+ };
153
+ /**
154
+ * @return {?}
155
+ */
156
+ OrderslistService.prototype.getisFromServiceRequestPages = /**
157
+ * @return {?}
158
+ */
159
+ function () {
160
+ return this.isFromServiceRequestPage;
161
+ };
162
+ /**
163
+ * @param {?} OrderRefId
164
+ * @return {?}
165
+ */
166
+ OrderslistService.prototype.setOrderRefId = /**
167
+ * @param {?} OrderRefId
168
+ * @return {?}
169
+ */
170
+ function (OrderRefId) {
171
+ this.OrderRefId.next(OrderRefId);
172
+ };
173
+ /**
174
+ * @return {?}
175
+ */
176
+ OrderslistService.prototype.getSelectedOrderRefId = /**
177
+ * @return {?}
178
+ */
179
+ function () {
180
+ return this.OrderRefId;
181
+ };
182
+ /**
183
+ * @param {?} navigationPage
184
+ * @return {?}
185
+ */
186
+ OrderslistService.prototype.setnavigationPage = /**
187
+ * @param {?} navigationPage
188
+ * @return {?}
189
+ */
190
+ function (navigationPage) {
191
+ this.navigationPage.next(navigationPage);
192
+ };
193
+ /**
194
+ * @return {?}
195
+ */
196
+ OrderslistService.prototype.getnavigationPageValue = /**
197
+ * @return {?}
198
+ */
199
+ function () {
200
+ return this.navigationPage;
201
+ };
202
+ /**
203
+ * @param {?} paymentpageList
204
+ * @return {?}
205
+ */
206
+ OrderslistService.prototype.setpaymentPageView = /**
207
+ * @param {?} paymentpageList
208
+ * @return {?}
209
+ */
210
+ function (paymentpageList) {
211
+ this.paymentPageView.next(Object.assign([], paymentpageList));
212
+ };
213
+ /**
214
+ * @return {?}
215
+ */
216
+ OrderslistService.prototype.getpaymentPageView = /**
217
+ * @return {?}
218
+ */
219
+ function () {
220
+ return this.paymentPageView;
221
+ };
222
+ /**
223
+ * @param {?} rolesList
224
+ * @return {?}
225
+ */
226
+ OrderslistService.prototype.setUserRolesList = /**
227
+ * @param {?} rolesList
228
+ * @return {?}
229
+ */
230
+ function (rolesList) {
231
+ this.rolesList.next(Object.assign([], rolesList));
232
+ };
233
+ /**
234
+ * @return {?}
235
+ */
236
+ OrderslistService.prototype.getUserRolesList = /**
237
+ * @return {?}
238
+ */
239
+ function () {
240
+ return this.rolesList;
241
+ };
242
+ /**
243
+ * @param {?} orderDetail
244
+ * @return {?}
245
+ */
246
+ OrderslistService.prototype.setorderDetail = /**
247
+ * @param {?} orderDetail
248
+ * @return {?}
249
+ */
250
+ function (orderDetail) {
251
+ this.orderDetail.next(Object.assign([], orderDetail));
252
+ };
253
+ /**
254
+ * @return {?}
255
+ */
256
+ OrderslistService.prototype.getorderDetail = /**
257
+ * @return {?}
258
+ */
259
+ function () {
260
+ return this.orderDetail;
261
+ };
262
+ /**
263
+ * @param {?} orderRef
264
+ * @return {?}
265
+ */
266
+ OrderslistService.prototype.setOrderRef = /**
267
+ * @param {?} orderRef
268
+ * @return {?}
269
+ */
270
+ function (orderRef) {
271
+ this.orderRef.next(orderRef);
272
+ };
273
+ /**
274
+ * @return {?}
275
+ */
276
+ OrderslistService.prototype.getorderRefs = /**
277
+ * @return {?}
278
+ */
279
+ function () {
280
+ return this.orderRef;
281
+ };
282
+ /**
283
+ * @param {?} orderCCDEvent
284
+ * @return {?}
285
+ */
286
+ OrderslistService.prototype.setorderCCDEvent = /**
287
+ * @param {?} orderCCDEvent
288
+ * @return {?}
289
+ */
290
+ function (orderCCDEvent) {
291
+ this.orderCCDEvent.next(orderCCDEvent);
292
+ };
293
+ /**
294
+ * @return {?}
295
+ */
296
+ OrderslistService.prototype.getorderCCDEvents = /**
297
+ * @return {?}
298
+ */
299
+ function () {
300
+ return this.orderCCDEvent;
301
+ };
302
+ /**
303
+ * @param {?} orderCreated
304
+ * @return {?}
305
+ */
306
+ OrderslistService.prototype.setorderCreated = /**
307
+ * @param {?} orderCreated
308
+ * @return {?}
309
+ */
310
+ function (orderCreated) {
311
+ this.orderCreated.next(orderCreated);
312
+ };
313
+ /**
314
+ * @return {?}
315
+ */
316
+ OrderslistService.prototype.getorderCreateds = /**
317
+ * @return {?}
318
+ */
319
+ function () {
320
+ return this.orderCreated;
321
+ };
322
+ /**
323
+ * @param {?} orderParty
324
+ * @return {?}
325
+ */
326
+ OrderslistService.prototype.setorderParty = /**
327
+ * @param {?} orderParty
328
+ * @return {?}
329
+ */
330
+ function (orderParty) {
331
+ this.orderParty.next(orderParty);
332
+ };
333
+ /**
334
+ * @return {?}
335
+ */
336
+ OrderslistService.prototype.getorderPartys = /**
337
+ * @return {?}
338
+ */
339
+ function () {
340
+ return this.orderParty;
341
+ };
342
+ /**
343
+ * @param {?} orderRemissionTotal
344
+ * @return {?}
345
+ */
346
+ OrderslistService.prototype.setorderRemissionTotal = /**
347
+ * @param {?} orderRemissionTotal
348
+ * @return {?}
349
+ */
350
+ function (orderRemissionTotal) {
351
+ this.orderRemissionTotal.next(orderRemissionTotal);
352
+ };
353
+ /**
354
+ * @return {?}
355
+ */
356
+ OrderslistService.prototype.getorderRemissionTotals = /**
357
+ * @return {?}
358
+ */
359
+ function () {
360
+ return this.orderRemissionTotal;
361
+ };
362
+ /**
363
+ * @param {?} orderFeesTotal
364
+ * @return {?}
365
+ */
366
+ OrderslistService.prototype.setorderFeesTotal = /**
367
+ * @param {?} orderFeesTotal
368
+ * @return {?}
369
+ */
370
+ function (orderFeesTotal) {
371
+ this.orderFeesTotal.next(orderFeesTotal);
372
+ };
373
+ /**
374
+ * @return {?}
375
+ */
376
+ OrderslistService.prototype.getorderFeesTotals = /**
377
+ * @return {?}
378
+ */
379
+ function () {
380
+ return this.orderFeesTotal;
381
+ };
382
+ /**
383
+ * @param {?} orderTotalPayments
384
+ * @return {?}
385
+ */
386
+ OrderslistService.prototype.setorderTotalPayments = /**
387
+ * @param {?} orderTotalPayments
388
+ * @return {?}
389
+ */
390
+ function (orderTotalPayments) {
391
+ this.orderTotalPayments.next(orderTotalPayments);
392
+ };
393
+ /**
394
+ * @return {?}
395
+ */
396
+ OrderslistService.prototype.getoorderTotalPaymentss = /**
397
+ * @return {?}
398
+ */
399
+ function () {
400
+ return this.orderTotalPayments;
401
+ };
402
+ OrderslistService.decorators = [
403
+ { type: Injectable, args: [{
404
+ providedIn: 'root'
405
+ },] }
406
+ ];
407
+ /** @nocollapse */
408
+ OrderslistService.ctorParameters = function () { return []; };
409
+ /** @nocollapse */ OrderslistService.ngInjectableDef = i0.defineInjectable({ factory: function OrderslistService_Factory() { return new OrderslistService(); }, token: OrderslistService, providedIn: "root" });
410
+ return OrderslistService;
411
+ }());
412
+ export { OrderslistService };
413
+ if (false) {
414
+ /**
415
+ * @type {?}
416
+ * @private
417
+ */
418
+ OrderslistService.prototype.ordersList;
419
+ /**
420
+ * @type {?}
421
+ * @private
422
+ */
423
+ OrderslistService.prototype.refundView;
424
+ /**
425
+ * @type {?}
426
+ * @private
427
+ */
428
+ OrderslistService.prototype.caseType;
429
+ /** @type {?} */
430
+ OrderslistService.prototype.getcaseType;
431
+ /**
432
+ * @type {?}
433
+ * @private
434
+ */
435
+ OrderslistService.prototype.feeExists;
436
+ /** @type {?} */
437
+ OrderslistService.prototype.getFeeExist;
438
+ /**
439
+ * @type {?}
440
+ * @private
441
+ */
442
+ OrderslistService.prototype.ccdCaseNumber;
443
+ /** @type {?} */
444
+ OrderslistService.prototype.getCCDCaseNumberforRefund;
445
+ /**
446
+ * @type {?}
447
+ * @private
448
+ */
449
+ OrderslistService.prototype.isFromServiceRequestPage;
450
+ /** @type {?} */
451
+ OrderslistService.prototype.getisFromServiceRequestPage;
452
+ /**
453
+ * @type {?}
454
+ * @private
455
+ */
456
+ OrderslistService.prototype.OrderRefId;
457
+ /** @type {?} */
458
+ OrderslistService.prototype.getOrderRefId;
459
+ /**
460
+ * @type {?}
461
+ * @private
462
+ */
463
+ OrderslistService.prototype.navigationPage;
464
+ /** @type {?} */
465
+ OrderslistService.prototype.getnavigationPage;
466
+ /**
467
+ * @type {?}
468
+ * @private
469
+ */
470
+ OrderslistService.prototype.orderRef;
471
+ /** @type {?} */
472
+ OrderslistService.prototype.getorderRef;
473
+ /**
474
+ * @type {?}
475
+ * @private
476
+ */
477
+ OrderslistService.prototype.orderCCDEvent;
478
+ /** @type {?} */
479
+ OrderslistService.prototype.getorderCCDEvent;
480
+ /**
481
+ * @type {?}
482
+ * @private
483
+ */
484
+ OrderslistService.prototype.orderCreated;
485
+ /** @type {?} */
486
+ OrderslistService.prototype.getorderCreated;
487
+ /**
488
+ * @type {?}
489
+ * @private
490
+ */
491
+ OrderslistService.prototype.orderParty;
492
+ /** @type {?} */
493
+ OrderslistService.prototype.getorderParty;
494
+ /**
495
+ * @type {?}
496
+ * @private
497
+ */
498
+ OrderslistService.prototype.orderRemissionTotal;
499
+ /** @type {?} */
500
+ OrderslistService.prototype.getorderRemissionTotal;
501
+ /**
502
+ * @type {?}
503
+ * @private
504
+ */
505
+ OrderslistService.prototype.orderFeesTotal;
506
+ /** @type {?} */
507
+ OrderslistService.prototype.getorderFeesTotal;
508
+ /**
509
+ * @type {?}
510
+ * @private
511
+ */
512
+ OrderslistService.prototype.orderTotalPayments;
513
+ /** @type {?} */
514
+ OrderslistService.prototype.getorderTotalPayments;
515
+ /**
516
+ * @type {?}
517
+ * @private
518
+ */
519
+ OrderslistService.prototype.rolesList;
520
+ /**
521
+ * @type {?}
522
+ * @private
523
+ */
524
+ OrderslistService.prototype.orderDetail;
525
+ /**
526
+ * @type {?}
527
+ * @private
528
+ */
529
+ OrderslistService.prototype.paymentPageView;
530
+ }
531
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib3JkZXJzbGlzdC5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6Im5nOi8vQGhtY3RzL2NjcGF5LXdlYi1jb21wb25lbnQvIiwic291cmNlcyI6WyJsaWIvc2VydmljZXMvb3JkZXJzbGlzdC5zZXJ2aWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7QUFBQSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzNDLE9BQU8sRUFBYyxlQUFlLEVBQUUsTUFBTSxNQUFNLENBQUM7O0FBS25EO0lBdUNFO1FBbkNRLGVBQVUsR0FBMEMsSUFBSSxlQUFlLENBQXVCLElBQUksQ0FBQyxDQUFDO1FBQ3BHLGVBQVUsR0FBaUMsSUFBSSxlQUFlLENBQWMsSUFBSSxDQUFDLENBQUM7UUFDbEYsYUFBUSxHQUFHLElBQUksZUFBZSxDQUFDLEVBQUUsQ0FBQyxDQUFDO1FBQzNDLGdCQUFXLEdBQUcsSUFBSSxDQUFDLFFBQVEsQ0FBQyxZQUFZLEVBQUUsQ0FBQztRQUNuQyxjQUFTLEdBQUcsSUFBSSxlQUFlLENBQVUsSUFBSSxDQUFDLENBQUM7UUFDdkQsZ0JBQVcsR0FBRyxJQUFJLENBQUMsU0FBUyxDQUFDLFlBQVksRUFBRSxDQUFDO1FBQ3BDLGtCQUFhLEdBQUcsSUFBSSxlQUFlLENBQUMsRUFBRSxDQUFDLENBQUM7UUFDaEQsOEJBQXlCLEdBQUcsSUFBSSxDQUFDLGFBQWEsQ0FBQyxZQUFZLEVBQUUsQ0FBQztRQUN0RCw2QkFBd0IsR0FBRyxJQUFJLGVBQWUsQ0FBVSxJQUFJLENBQUMsQ0FBQztRQUN0RSxnQ0FBMkIsR0FBRyxJQUFJLENBQUMsd0JBQXdCLENBQUMsWUFBWSxFQUFFLENBQUM7UUFDbkUsZUFBVSxHQUFHLElBQUksZUFBZSxDQUFDLEVBQUUsQ0FBQyxDQUFDO1FBQzdDLGtCQUFhLEdBQUcsSUFBSSxDQUFDLFVBQVUsQ0FBQyxZQUFZLEVBQUUsQ0FBQztRQUN2QyxtQkFBYyxHQUFHLElBQUksZUFBZSxDQUFDLEVBQUUsQ0FBQyxDQUFD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dkQsK0NBQStEOztJQUMvRCxrREFBK0Q7Ozs7O0lBQy9ELHNDQUE2RTs7Ozs7SUFFN0Usd0NBQStFOzs7OztJQUUvRSw0Q0FBaUciLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJbmplY3RhYmxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBPYnNlcnZhYmxlLCBCZWhhdmlvclN1YmplY3QgfSBmcm9tICdyeGpzJztcbmltcG9ydCB7SU9yZGVyUmVmZXJlbmNlRmVlfSBmcm9tICcuLi9pbnRlcmZhY2VzL0lPcmRlclJlZmVyZW5jZUZlZSc7XG5pbXBvcnQgeyBJUmVmdW5kTGlzdCB9IGZyb20gJy4uL2ludGVyZmFjZXMvSVJlZnVuZExpc3QnO1xuaW1wb3J0IHsgSVBheW1lbnRWaWV3IH0gZnJvbSAnLi4vaW50ZXJmYWNlcy9JUGF5bWVudFZpZXcnOyAgXG5cbkBJbmplY3RhYmxlKHtcbiAgcHJvdmlkZWRJbjogJ3Jvb3QnXG59KVxuZXhwb3J0IGNsYXNzIE9yZGVyc2xpc3RTZXJ2aWNlIHtcbiAgcHJpdmF0ZSBvcmRlcnNMaXN0OiBCZWhhdmlvclN1YmplY3Q8SU9yZGVyUmVmZXJlbmNlRmVlW10+ID0gbmV3IEJlaGF2aW9yU3ViamVjdDxJT3JkZXJSZWZlcmVuY2VGZWVbXT4obnVsbCk7XG4gIHByaXZhdGUgcmVmdW5kVmlldzogQmVoYXZpb3JTdWJqZWN0PElSZWZ1bmRMaXN0PiA9IG5ldyBCZWhhdmlvclN1YmplY3Q8SVJlZnVuZExpc3Q+KG51bGwpO1xuICBwcml2YXRlIGNhc2VUeXBlID0gbmV3IEJlaGF2aW9yU3ViamVjdChcIlwiKTtcbiAgZ2V0Y2FzZVR5cGUgPSB0aGlzLmNhc2VUeXBlLmFzT2JzZXJ2YWJsZSgpO1xuICBwcml2YXRlIGZlZUV4aXN0cyA9IG5ldyBCZWhhdmlvclN1YmplY3Q8Ym9vbGVhbj4obnVsbCk7XG4gIGdldEZlZUV4aXN0ID0gdGhpcy5mZWVFeGlzdHMuYXNPYnNlcnZhYmxlKCk7XG4gIHByaXZhdGUgY2NkQ2FzZU51bWJlciA9IG5ldyBCZWhhdmlvclN1YmplY3QoXCJcIik7XG4gIGdldENDRENhc2VOdW1iZXJmb3JSZWZ1bmQgPSB0aGlzLmNjZENhc2VOdW1iZXIuYXNPYnNlcnZhYmxlKCk7XG4gIHByaXZhdGUgaXNGcm9tU2VydmljZVJlcXVlc3RQYWdlID0gbmV3IEJlaGF2aW9yU3ViamVjdDxib29sZWFuPihudWxsKTtcbiAgZ2V0aXNGcm9tU2VydmljZVJlcXVlc3RQYWdlID0gdGhpcy5pc0Zyb21TZXJ2aWNlUmVxdWVzdFBhZ2UuYXNPYnNlcnZhYmxlKCk7XG4gIHByaXZhdGUgT3JkZXJSZWZJZCA9IG5ldyBCZWhhdmlvclN1YmplY3QoXCJcIik7XG4gIGdldE9yZGVyUmVmSWQgPSB0aGlzLk9yZGVyUmVmSWQuYXNPYnNlcnZhYmxlKCk7XG4gIHByaXZhdGUgbmF2aWdhdGlvblBhZ2UgPSBuZXcgQmVoYXZpb3JTdWJqZWN0KFwiXCIpO1xuICBnZXRuYXZpZ2F0aW9uUGFnZSA9IHRoaXMubmF2aWdhdGlvblBhZ2UuYXNPYnNlcnZhYmxlKCk7XG5cbiAgcHJpdmF0ZSBvcmRlclJlZiA9IG5ldyBCZWhhdmlvclN1YmplY3QoXCJcIik7XG4gIGdldG9yZGVyUmVmID0gdGhpcy5vcmRlclJlZi5hc09ic2VydmFibGUoKTtcbiAgcHJpdmF0ZSBvcmRlckNDREV2ZW50ID0gbmV3IEJlaGF2aW9yU3ViamVjdChcIlwiKTtcbiAgZ2V0b3JkZXJDQ0RFdmVudCA9IHRoaXMuY2FzZVR5cGUuYXNPYnNlcnZhYmxlKCk7XG4gIHByaXZhdGUgb3JkZXJDcmVhdGVkID0gbmV3IEJlaGF2aW9yU3ViamVjdDxEYXRlPihudWxsKTtcbiAgZ2V0b3JkZXJDcmVhdGVkID0gdGhpcy5vcmRlckNyZWF0ZWQuYXNPYnNlcnZhYmxlKCk7XG4gIHByaXZhdGUgb3JkZXJQYXJ0eSA9IG5ldyBCZWhhdmlvclN1YmplY3QoXCJcIik7XG4gIGdldG9yZGVyUGFydHkgPSB0aGlzLm9yZGVyUGFydHkuYXNPYnNlcnZhYmxlKCk7XG4gIHByaXZhdGUgb3JkZXJSZW1pc3Npb25Ub3RhbCA9IG5ldyBCZWhhdmlvclN1YmplY3Q8bnVtYmVyPihudWxsKTtcbiAgZ2V0b3JkZXJSZW1pc3Npb25Ub3RhbCA9IHRoaXMub3JkZXJSZW1pc3Npb25Ub3RhbC5hc09ic2VydmFibGUoKTtcbiAgcHJpdmF0ZSBvcmRlckZlZXNUb3RhbCA9IG5ldyBCZWhhdmlvclN1YmplY3Q8bnVtYmVyPihudWxsKTtcbiAgZ2V0b3JkZXJGZWVzVG90YWwgPSB0aGlzLm9yZGVyRmVlc1RvdGFsLmFzT2JzZXJ2YWJsZSgpO1xuICBwcml2YXRlIG9yZGVyVG90YWxQYXltZW50cyA9IG5ldyBCZWhhdmlvclN1YmplY3Q8bnVtYmVyPihudWxsKTtcbiAgZ2V0b3JkZXJUb3RhbFBheW1lbnRzID0gdGhpcy5vcmRlclRvdGFsUGF5bWVudHMuYXNPYnNlcnZhYmxlKCk7XG4gIHByaXZhdGUgcm9sZXNMaXN0OiBCZWhhdmlvclN1YmplY3Q8YW55W10+ID0gbmV3IEJlaGF2aW9yU3ViamVjdDxhbnlbXT4obnVsbCk7XG5cbiAgcHJpdmF0ZSBvcmRlckRldGFpbDogQmVoYXZpb3JTdWJqZWN0PGFueVtdPiA9IG5ldyBCZWhhdmlvclN1YmplY3Q8YW55W10+KG51bGwpO1xuXG4gIHByaXZhdGUgcGF5bWVudFBhZ2VWaWV3OiBCZWhhdmlvclN1YmplY3Q8SVBheW1lbnRWaWV3PiA9IG5ldyBCZWhhdmlvclN1YmplY3Q8SVBheW1lbnRWaWV3PihudWxsKTtcblxuICBjb25zdHJ1Y3RvcigpIHsgfVxuXG4gIHNldE9yZGVyc0xpc3Qob3JkZXJMZXZlbEZlZXM6IElPcmRlclJlZmVyZW5jZUZlZVtdKTogdm9pZCB7XG4gICAgdGhpcy5vcmRlcnNMaXN0Lm5leHQoT2JqZWN0LmFzc2lnbihbXSwgb3JkZXJMZXZlbEZlZXMpKTtcbiAgfVxuICBnZXRPcmRlcnNMaXN0KCkge1xuICAgIHJldHVybiB0aGlzLm9yZGVyc0xpc3Q7XG4gIH1cblxuICBzZXRSZWZ1bmRWaWV3KHJlZnVuZExpc3Q6IElSZWZ1bmRMaXN0KTogdm9pZCB7XG4gICAgdGhpcy5yZWZ1bmRWaWV3Lm5leHQoT2JqZWN0LmFzc2lnbihbXSwgcmVmdW5kTGlzdCkpO1xuICB9XG4gIGdldFJlZnVuZFZpZXcoKSB7XG4gICAgcmV0dXJuIHRoaXMucmVmdW5kVmlldztcbiAgfVxuXG4gIHNldENhc2VUeXBlKGNhc2VUeXBlOiBzdHJpbmcpe1xuICAgIHRoaXMuY2FzZVR5cGUubmV4dChjYXNlVHlwZSk7XG4gIH1cbiAgZ2V0Q2FzZVR5cGUoKXtcbiAgICByZXR1cm4gdGhpcy5jYXNlVHlwZTtcbiAgfVxuXG4gIHNldENDRENhc2VOdW1iZXIoY2NkQ2FzZU51bWJlcjogc3RyaW5nKXtcbiAgICB0aGlzLmNjZENhc2VOdW1iZXIubmV4dChjY2RDYXNlTnVtYmVyKTtcbiAgfVxuICBnZXRDQ0RDYXNlTnVtYmVyKCl7XG4gICAgcmV0dXJuIHRoaXMuY2NkQ2FzZU51bWJlcjtcbiAgfVxuXG4gIHNldEZlZUV4aXN0cyhmZWVFeGlzdHM6IGJvb2xlYW4pe1xuICAgIHRoaXMuZmVlRXhpc3RzLm5leHQoZmVlRXhpc3RzKTtcbiAgfVxuICBnZXRGZWVFeGlzdHMoKXtcbiAgICByZXR1cm4gdGhpcy5mZWVFeGlzdHM7XG4gIH0gXG5cbiAgc2V0aXNGcm9tU2VydmljZVJlcXVlc3RQYWdlKGlzRnJvbVNlcnZpY2VSZXF1ZXN0UGFnZTogYm9vbGVhbil7XG4gICAgdGhpcy5pc0Zyb21TZXJ2aWNlUmVxdWVzdFBhZ2UubmV4dChpc0Zyb21TZXJ2aWNlUmVxdWVzdFBhZ2UpO1xuICB9XG4gIGdldGlzRnJvbVNlcnZpY2VSZXF1ZXN0UGFnZXMoKXtcbiAgICByZXR1cm4gdGhpcy5pc0Zyb21TZXJ2aWNlUmVxdWVzdFBhZ2U7XG4gIH1cblxuICBzZXRPcmRlclJlZklkKE9yZGVyUmVmSWQ6IHN0cmluZyl7XG4gICAgdGhpcy5PcmRlclJlZklkLm5leHQoT3JkZXJSZWZJZCk7XG4gIH1cbiAgZ2V0U2VsZWN0ZWRPcmRlclJlZklkKCl7XG4gICAgcmV0dXJuIHRoaXMuT3JkZXJSZWZJZDtcbiAgfVxuXG4gIHNldG5hdmlnYXRpb25QYWdlKG5hdmlnYXRpb25QYWdlOiBzdHJpbmcpe1xuICAgIHRoaXMubmF2aWdhdGlvblBhZ2UubmV4dChuYXZpZ2F0aW9uUGFnZSk7XG4gIH1cbiAgZ2V0bmF2aWdhdGlvblBhZ2VWYWx1ZSgpe1xuICAgIHJldHVybiB0aGlzLm5hdmlnYXRpb25QYWdlO1xuICB9XG5cbiAgc2V0cGF5bWVudFBhZ2VWaWV3KHBheW1lbnRwYWdlTGlzdDogSVBheW1lbnRWaWV3KTogdm9pZCB7XG4gICAgdGhpcy5wYXltZW50UGFnZVZpZXcubmV4dChPYmplY3QuYXNzaWduKFtdLCBwYXltZW50cGFnZUxpc3QpKTtcbiAgfVxuICBnZXRwYXltZW50UGFnZVZpZXcoKSB7XG4gICAgcmV0dXJuIHRoaXMucGF5bWVudFBhZ2VWaWV3O1xuICB9XG5cbiAgc2V0VXNlclJvbGVzTGlzdChyb2xlc0xpc3Q6YW55W10pOiB2b2lkIHtcbiAgICB0aGlzLnJvbGVzTGlzdC5uZXh0KE9iamVjdC5hc3NpZ24oW10sIHJvbGVzTGlzdCkpO1xuICB9XG4gIGdldFVzZXJSb2xlc0xpc3QoKSB7XG4gICAgcmV0dXJuIHRoaXMucm9sZXNMaXN0O1xuICB9XG5cbiAgc2V0b3JkZXJEZXRhaWwob3JkZXJEZXRhaWw6YW55W10pOiB2b2lkIHtcbiAgICB0aGlzLm9yZGVyRGV0YWlsLm5leHQoT2JqZWN0LmFzc2lnbihbXSwgb3JkZXJEZXRhaWwpKTtcbiAgfVxuICBnZXRvcmRlckRldGFpbCgpIHtcbiAgICByZXR1cm4gdGhpcy5vcmRlckRldGFpbDtcbiAgfVxuXG4gIHNldE9yZGVyUmVmKG9yZGVyUmVmOiBzdHJpbmcpe1xuICAgIHRoaXMub3JkZXJSZWYubmV4dChvcmRlclJlZik7XG4gIH1cbiAgZ2V0b3JkZXJSZWZzKCl7XG4gICAgcmV0dXJuIHRoaXMub3JkZXJSZWY7XG4gIH1cblxuICBzZXRvcmRlckNDREV2ZW50KG9yZGVyQ0NERXZlbnQ6IHN0cmluZyl7XG4gICAgdGhpcy5vcmRlckNDREV2ZW50Lm5leHQob3JkZXJDQ0RFdmVudCk7XG4gIH1cbiAgZ2V0b3JkZXJDQ0RFdmVudHMoKXtcbiAgICByZXR1cm4gdGhpcy5vcmRlckNDREV2ZW50O1xuICB9XG5cbiAgc2V0b3JkZXJDcmVhdGVkKG9yZGVyQ3JlYXRlZDogRGF0ZSl7XG4gICAgdGhpcy5vcmRlckNyZWF0ZWQubmV4dChvcmRlckNyZWF0ZWQpO1xuICB9XG4gIGdldG9yZGVyQ3JlYXRlZHMoKXtcbiAgICByZXR1cm4gdGhpcy5vcmRlckNyZWF0ZWQ7XG4gIH1cblxuICBzZXRvcmRlclBhcnR5KG9yZGVyUGFydHk6IHN0cmluZyl7XG4gICAgdGhpcy5vcmRlclBhcnR5Lm5leHQob3JkZXJQYXJ0eSk7XG4gIH1cbiAgZ2V0b3JkZXJQYXJ0eXMoKXtcbiAgICByZXR1cm4gdGhpcy5vcmRlclBhcnR5O1xuICB9XG5cbiAgc2V0b3JkZXJSZW1pc3Npb25Ub3RhbChvcmRlclJlbWlzc2lvblRvdGFsOiBudW1iZXIpe1xuICAgIHRoaXMub3JkZXJSZW1pc3Npb25Ub3RhbC5uZXh0KG9yZGVyUmVtaXNzaW9uVG90YWwpO1xuICB9XG4gIGdldG9yZGVyUmVtaXNzaW9uVG90YWxzKCl7XG4gICAgcmV0dXJuIHRoaXMub3JkZXJSZW1pc3Npb25Ub3RhbDtcbiAgfVxuXG4gIHNldG9yZGVyRmVlc1RvdGFsKG9yZGVyRmVlc1RvdGFsOiBudW1iZXIpe1xuICAgIHRoaXMub3JkZXJGZWVzVG90YWwubmV4dChvcmRlckZlZXNUb3RhbCk7XG4gIH1cbiAgZ2V0b3JkZXJGZWVzVG90YWxzKCl7XG4gICAgcmV0dXJuIHRoaXMub3JkZXJGZWVzVG90YWw7XG4gIH1cblxuICBzZXRvcmRlclRvdGFsUGF5bWVudHMob3JkZXJUb3RhbFBheW1lbnRzOiBudW1iZXIpe1xuICAgIHRoaXMub3JkZXJUb3RhbFBheW1lbnRzLm5leHQob3JkZXJUb3RhbFBheW1lbnRzKTtcbiAgfVxuICBnZXRvb3JkZXJUb3RhbFBheW1lbnRzcygpe1xuICAgIHJldHVybiB0aGlzLm9yZGVyVG90YWxQYXltZW50cztcbiAgfVxufVxuIl19
@@ -0,0 +1,80 @@
1
+ /**
2
+ * @fileoverview added by tsickle
3
+ * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
4
+ */
5
+ import { Injectable } from '@angular/core';
6
+ import { HttpClient } from '@angular/common/http';
7
+ import { PaymentLibService } from '../../payment-lib.service';
8
+ import { catchError } from 'rxjs/operators';
9
+ import { ErrorHandlerService } from '../shared/error-handler.service';
10
+ import { LoggerService } from '../shared/logger/logger.service';
11
+ import * as i0 from "@angular/core";
12
+ import * as i1 from "@angular/common/http";
13
+ import * as i2 from "../shared/logger/logger.service";
14
+ import * as i3 from "../shared/error-handler.service";
15
+ import * as i4 from "../../payment-lib.service";
16
+ var PaymentListService = /** @class */ (function () {
17
+ function PaymentListService(http, logger, errorHandlerService, paymentLibService) {
18
+ this.http = http;
19
+ this.logger = logger;
20
+ this.errorHandlerService = errorHandlerService;
21
+ this.paymentLibService = paymentLibService;
22
+ }
23
+ /**
24
+ * @param {?} ccdCaseNumber
25
+ * @param {?} paymentMethod
26
+ * @return {?}
27
+ */
28
+ PaymentListService.prototype.getPaymentByCcdCaseNumber = /**
29
+ * @param {?} ccdCaseNumber
30
+ * @param {?} paymentMethod
31
+ * @return {?}
32
+ */
33
+ function (ccdCaseNumber, paymentMethod) {
34
+ this.logger.info('Payment-list-service getPaymentByCcdCaseNumber for: ', ccdCaseNumber);
35
+ return this.http.get(this.paymentLibService.API_ROOT + "/cases/" + ccdCaseNumber + "/payments", {
36
+ withCredentials: true
37
+ })
38
+ .pipe(catchError(this.errorHandlerService.handleError));
39
+ };
40
+ PaymentListService.decorators = [
41
+ { type: Injectable, args: [{
42
+ providedIn: 'root'
43
+ },] }
44
+ ];
45
+ /** @nocollapse */
46
+ PaymentListService.ctorParameters = function () { return [
47
+ { type: HttpClient },
48
+ { type: LoggerService },
49
+ { type: ErrorHandlerService },
50
+ { type: PaymentLibService }
51
+ ]; };
52
+ /** @nocollapse */ PaymentListService.ngInjectableDef = i0.defineInjectable({ factory: function PaymentListService_Factory() { return new PaymentListService(i0.inject(i1.HttpClient), i0.inject(i2.LoggerService), i0.inject(i3.ErrorHandlerService), i0.inject(i4.PaymentLibService)); }, token: PaymentListService, providedIn: "root" });
53
+ return PaymentListService;
54
+ }());
55
+ export { PaymentListService };
56
+ if (false) {
57
+ /** @type {?} */
58
+ PaymentListService.prototype.payments;
59
+ /**
60
+ * @type {?}
61
+ * @private
62
+ */
63
+ PaymentListService.prototype.http;
64
+ /**
65
+ * @type {?}
66
+ * @private
67
+ */
68
+ PaymentListService.prototype.logger;
69
+ /**
70
+ * @type {?}
71
+ * @private
72
+ */
73
+ PaymentListService.prototype.errorHandlerService;
74
+ /**
75
+ * @type {?}
76
+ * @private
77
+ */
78
+ PaymentListService.prototype.paymentLibService;
79
+ }
80
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGF5bWVudC1saXN0LnNlcnZpY2UuanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AaG1jdHMvY2NwYXktd2ViLWNvbXBvbmVudC8iLCJzb3VyY2VzIjpbImxpYi9zZXJ2aWNlcy9wYXltZW50LWxpc3QvcGF5bWVudC1saXN0LnNlcnZpY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7OztBQUFBLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDM0MsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLHNCQUFzQixDQUFDO0FBR2xELE9BQU8sRUFBQyxpQkFBaUIsRUFBQyxNQUFNLDJCQUEyQixDQUFDO0FBRTVELE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQztBQUM1QyxPQUFPLEVBQUUsbUJBQW1CLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUN0RSxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0saUNBQWlDLENBQUM7Ozs7OztBQUVoRTtJQU1FLDRCQUFvQixJQUFnQixFQUNoQixNQUFxQixFQUNyQixtQkFBd0MsRUFDeEMsaUJBQW9DO1FBSHBDLFNBQUksR0FBSixJQUFJLENBQVk7UUFDaEIsV0FBTSxHQUFOLE1BQU0sQ0FBZTtRQUNyQix3QkFBbUIsR0FBbkIsbUJBQW1CLENBQXFCO1FBQ3hDLHNCQUFpQixHQUFqQixpQkFBaUIsQ0FBbUI7SUFBSSxDQUFDOzs7Ozs7SUFHN0Qsc0RBQXlCOzs7OztJQUF6QixVQUEwQixhQUFxQixFQUFFLGFBQXFCO1FBQ3BFLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLHNEQUFzRCxFQUFFLGFBQWEsQ0FBQyxDQUFDO1FBRXhGLE9BQU8sSUFBSSxDQUFDLElBQUksQ0FBQyxHQUFHLENBQWUsSUFBSSxDQUFDLGlCQUFpQixDQUFDLFFBQVEsZUFBVSxhQUFhLGNBQVcsRUFBRTtZQUNsRyxlQUFlLEVBQUUsSUFBSTtTQUN0QixDQUFDO2FBQ0QsSUFBSSxDQUNILFVBQVUsQ0FBQyxJQUFJLENBQUMsbUJBQW1CLENBQUMsV0FBVyxDQUFDLENBQ2pELENBQUM7SUFDTixDQUFDOztnQkFyQkYsVUFBVSxTQUFDO29CQUNWLFVBQVUsRUFBRSxNQUFNO2lCQUNuQjs7OztnQkFYUSxVQUFVO2dCQU9WLGFBQWE7Z0JBRGIsbUJBQW1CO2dCQUhwQixpQkFBaUI7Ozs2QkFKekI7Q0FnQ0MsQUF0QkQsSUFzQkM7U0FuQlksa0JBQWtCOzs7SUFDN0Isc0NBQW9COzs7OztJQUVSLGtDQUF3Qjs7Ozs7SUFDeEIsb0NBQTZCOzs7OztJQUM3QixpREFBZ0Q7Ozs7O0lBQ2hELCtDQUE0QyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEluamVjdGFibGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEh0dHBDbGllbnQgfSBmcm9tICdAYW5ndWxhci9jb21tb24vaHR0cCc7XG5cbmltcG9ydCB7IE9ic2VydmFibGUgfSBmcm9tICdyeGpzL2ludGVybmFsL09ic2VydmFibGUnO1xuaW1wb3J0IHtQYXltZW50TGliU2VydmljZX0gZnJvbSAnLi4vLi4vcGF5bWVudC1saWIuc2VydmljZSc7XG5pbXBvcnQgeyBJUGF5bWVudHMgfSBmcm9tICcuLi8uLi9pbnRlcmZhY2VzL0lQYXltZW50cyc7XG5pbXBvcnQgeyBjYXRjaEVycm9yIH0gZnJvbSAncnhqcy9vcGVyYXRvcnMnO1xuaW1wb3J0IHsgRXJyb3JIYW5kbGVyU2VydmljZSB9IGZyb20gJy4uL3NoYXJlZC9lcnJvci1oYW5kbGVyLnNlcnZpY2UnO1xuaW1wb3J0IHsgTG9nZ2VyU2VydmljZSB9IGZyb20gJy4uL3NoYXJlZC9sb2dnZXIvbG9nZ2VyLnNlcnZpY2UnO1xuXG5ASW5qZWN0YWJsZSh7XG4gIHByb3ZpZGVkSW46ICdyb290J1xufSlcbmV4cG9ydCBjbGFzcyBQYXltZW50TGlzdFNlcnZpY2Uge1xuICBwYXltZW50czogSVBheW1lbnRzO1xuXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgaHR0cDogSHR0cENsaWVudCxcbiAgICAgICAgICAgICAgcHJpdmF0ZSBsb2dnZXI6IExvZ2dlclNlcnZpY2UsXG4gICAgICAgICAgICAgIHByaXZhdGUgZXJyb3JIYW5kbGVyU2VydmljZTogRXJyb3JIYW5kbGVyU2VydmljZSxcbiAgICAgICAgICAgICAgcHJpdmF0ZSBwYXltZW50TGliU2VydmljZTogUGF5bWVudExpYlNlcnZpY2UpIHsgfVxuXG5cbiAgZ2V0UGF5bWVudEJ5Q2NkQ2FzZU51bWJlcihjY2RDYXNlTnVtYmVyOiBzdHJpbmcsIHBheW1lbnRNZXRob2Q6IHN0cmluZyk6IE9ic2VydmFibGU8SVBheW1lbnRzPiB7XG4gICAgdGhpcy5sb2dnZXIuaW5mbygnUGF5bWVudC1saXN0LXNlcnZpY2UgZ2V0UGF5bWVudEJ5Q2NkQ2FzZU51bWJlciBmb3I6ICcsIGNjZENhc2VOdW1iZXIpO1xuXG4gICAgcmV0dXJuIHRoaXMuaHR0cC5nZXQ8SVBheW1lbnRzPihgJHt0aGlzLnBheW1lbnRMaWJTZXJ2aWNlLkFQSV9ST09UfS9jYXNlcy8ke2NjZENhc2VOdW1iZXJ9L3BheW1lbnRzYCwge1xuICAgICAgICB3aXRoQ3JlZGVudGlhbHM6IHRydWVcbiAgICAgIH0pXG4gICAgICAucGlwZShcbiAgICAgICAgY2F0Y2hFcnJvcih0aGlzLmVycm9ySGFuZGxlclNlcnZpY2UuaGFuZGxlRXJyb3IpXG4gICAgICApO1xuICB9XG59XG4iXX0=