@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.
- package/esm2022/hmcts-ccpay-web-component.mjs +5 -0
- package/esm2022/lib/components/add-remission/add-remission.component.mjs +1189 -0
- package/esm2022/lib/components/allocate-payments/allocate-payments.component.mjs +407 -0
- package/esm2022/lib/components/card-details/card-details.component.mjs +32 -0
- package/esm2022/lib/components/case-transactions/case-transactions.component.mjs +798 -0
- package/esm2022/lib/components/contact-details/contact-details.component.mjs +338 -0
- package/esm2022/lib/components/error-banner/error-banner.component.mjs +18 -0
- package/esm2022/lib/components/fee-summary/fee-summary.component.mjs +247 -0
- package/esm2022/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.mjs +195 -0
- package/esm2022/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.mjs +255 -0
- package/esm2022/lib/components/notification-preview/notification-preview.component.mjs +79 -0
- package/esm2022/lib/components/page-not-found.component.mjs +17 -0
- package/esm2022/lib/components/payment-list/payment-list.component.mjs +36 -0
- package/esm2022/lib/components/payment-view/payment-view.component.mjs +416 -0
- package/esm2022/lib/components/pba-details/pba-details.component.mjs +18 -0
- package/esm2022/lib/components/pba-payment/pba-payment.component.mjs +151 -0
- package/esm2022/lib/components/process-refund/process-refund.component.mjs +417 -0
- package/esm2022/lib/components/processed-payments/processed-payments.component.mjs +37 -0
- package/esm2022/lib/components/refund-list/refund-list.component.mjs +73 -0
- package/esm2022/lib/components/refund-status/refund-status.component.mjs +453 -0
- package/esm2022/lib/components/reports/reports.component.mjs +291 -0
- package/esm2022/lib/components/service-request/service-request.component.mjs +456 -0
- package/esm2022/lib/components/status-history/status-history.component.mjs +33 -0
- package/esm2022/lib/components/table/table.component.mjs +128 -0
- package/esm2022/lib/components/unprocessed-payments/unprocessed-payments.component.mjs +236 -0
- package/esm2022/lib/interfaces/AddRemissionRequest.mjs +17 -0
- package/esm2022/lib/interfaces/AddRetroRemissionRequest.mjs +9 -0
- package/esm2022/lib/interfaces/AllocatePaymentRequest.mjs +41 -0
- package/esm2022/lib/interfaces/IAllocationPaymentsRequest.mjs +20 -0
- package/esm2022/lib/interfaces/IPaymentStatus.mjs +12 -0
- package/esm2022/lib/interfaces/IPutNotificationRequest.mjs +13 -0
- package/esm2022/lib/interfaces/IResubmitRefundRequest.mjs +13 -0
- package/esm2022/lib/interfaces/IserviceRequestCardPayment.mjs +11 -0
- package/esm2022/lib/interfaces/IserviceRequestPbaPayment.mjs +15 -0
- package/esm2022/lib/interfaces/IssueRefundRequest.mjs +11 -0
- package/esm2022/lib/interfaces/NotificationPreviewRequest.mjs +45 -0
- package/esm2022/lib/interfaces/PayhubAntennaRequest.mjs +12 -0
- package/esm2022/lib/interfaces/PaymentToPayhubRequest.mjs +15 -0
- package/esm2022/lib/interfaces/PostIssueRefundRetroRemission.mjs +9 -0
- package/esm2022/lib/interfaces/PostRefundRetroRemission.mjs +18 -0
- package/esm2022/lib/interfaces/RefundsRequest.mjs +9 -0
- package/esm2022/lib/interfaces/UnidentifiedPaymentsRequest.mjs +16 -0
- package/esm2022/lib/interfaces/UnsolicitedPaymentsRequest.mjs +22 -0
- package/esm2022/lib/payment-lib.component.mjs +288 -0
- package/esm2022/lib/payment-lib.module.mjs +187 -0
- package/esm2022/lib/payment-lib.service.mjs +49 -0
- package/esm2022/lib/pipes/capitalize.pipe.mjs +18 -0
- package/esm2022/lib/pipes/ccd-hyphens.pipe.mjs +22 -0
- package/esm2022/lib/pipes/key-value.pipe.mjs +23 -0
- package/esm2022/lib/pipes/sanitize-html.pipe.mjs +20 -0
- package/esm2022/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.mjs +87 -0
- package/esm2022/lib/services/card-details/card-details.service.mjs +39 -0
- package/esm2022/lib/services/case-transactions/case-transactions.service.mjs +39 -0
- package/esm2022/lib/services/notification/notification.service.mjs +70 -0
- package/esm2022/lib/services/orderslist.service.mjs +154 -0
- package/esm2022/lib/services/payment-list/payment-list.service.mjs +40 -0
- package/esm2022/lib/services/payment-view/payment-view.service.mjs +152 -0
- package/esm2022/lib/services/refunds/refunds.service.mjs +117 -0
- package/{esm2015/lib/services/shared/error-handler.service.js → esm2022/lib/services/shared/error-handler.service.mjs} +9 -8
- package/esm2022/lib/services/shared/httpclient/webcomponent.http.client.mjs +64 -0
- package/esm2022/lib/services/shared/logger/console-logger.service.mjs +43 -0
- package/esm2022/lib/services/shared/logger/logger.service.mjs +23 -0
- package/esm2022/lib/services/status-history/status-history.service.mjs +41 -0
- package/esm2022/lib/services/xl-file/xl-file.service.mjs +153 -0
- package/fesm2022/hmcts-ccpay-web-component.mjs +7874 -0
- package/fesm2022/hmcts-ccpay-web-component.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/components/add-remission/add-remission.component.d.ts +5 -3
- package/lib/components/allocate-payments/allocate-payments.component.d.ts +5 -7
- package/lib/components/card-details/card-details.component.d.ts +3 -1
- package/lib/components/case-transactions/case-transactions.component.d.ts +4 -2
- package/lib/components/contact-details/contact-details.component.d.ts +4 -2
- package/lib/components/error-banner/error-banner.component.d.ts +3 -1
- package/lib/components/fee-summary/fee-summary.component.d.ts +4 -2
- package/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.d.ts +4 -2
- package/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.d.ts +4 -2
- package/lib/components/notification-preview/notification-preview.component.d.ts +4 -6
- package/lib/components/page-not-found.component.d.ts +3 -1
- package/lib/components/payment-list/payment-list.component.d.ts +4 -2
- package/lib/components/payment-view/payment-view.component.d.ts +4 -2
- package/lib/components/pba-details/pba-details.component.d.ts +3 -1
- package/lib/components/pba-payment/pba-payment.component.d.ts +4 -2
- package/lib/components/process-refund/process-refund.component.d.ts +4 -2
- package/lib/components/processed-payments/processed-payments.component.d.ts +3 -1
- package/lib/components/refund-list/refund-list.component.d.ts +3 -1
- package/lib/components/refund-status/refund-status.component.d.ts +4 -2
- package/lib/components/reports/reports.component.d.ts +4 -6
- package/lib/components/service-request/service-request.component.d.ts +4 -2
- package/lib/components/status-history/status-history.component.d.ts +4 -2
- package/lib/components/table/table.component.d.ts +4 -2
- package/lib/components/unprocessed-payments/unprocessed-payments.component.d.ts +4 -2
- package/lib/interfaces/AddRemissionRequest.d.ts +0 -1
- package/lib/interfaces/AddRetroRemissionRequest.d.ts +0 -1
- package/lib/interfaces/AllocatePaymentRequest.d.ts +0 -1
- package/lib/interfaces/IAllocationPaymentsRequest.d.ts +0 -1
- package/lib/interfaces/IBSPayments.d.ts +0 -1
- package/lib/interfaces/ICardDetails.d.ts +0 -1
- package/lib/interfaces/IFee.d.ts +0 -1
- package/lib/interfaces/INotificationPreview.d.ts +0 -1
- package/lib/interfaces/IOrderReferenceFee.d.ts +0 -1
- package/lib/interfaces/IPatchRefundAction.d.ts +0 -1
- package/lib/interfaces/IPayment.d.ts +0 -1
- package/lib/interfaces/IPaymentFailure.d.ts +0 -1
- package/lib/interfaces/IPaymentGroup.d.ts +0 -1
- package/lib/interfaces/IPaymentStatus.d.ts +0 -1
- package/lib/interfaces/IPaymentView.d.ts +0 -1
- package/lib/interfaces/IPayments.d.ts +0 -1
- package/lib/interfaces/IPutNotificationRequest.d.ts +0 -1
- package/lib/interfaces/IRefundAction.d.ts +0 -1
- package/lib/interfaces/IRefundContactDetails.d.ts +0 -1
- package/lib/interfaces/IRefundFee.d.ts +0 -1
- package/lib/interfaces/IRefundList.d.ts +0 -1
- package/lib/interfaces/IRefundReasons.d.ts +0 -1
- package/lib/interfaces/IRefundRejectReason.d.ts +0 -1
- package/lib/interfaces/IRefundStatus.d.ts +0 -1
- package/lib/interfaces/IRefundStatusHistory.d.ts +0 -1
- package/lib/interfaces/IRefundsNotifications.d.ts +0 -1
- package/lib/interfaces/IRemission.d.ts +0 -1
- package/lib/interfaces/IResubmitRefundRequest.d.ts +0 -1
- package/lib/interfaces/IStatusHistories.d.ts +0 -1
- package/lib/interfaces/IStatusHistory.d.ts +0 -1
- package/lib/interfaces/IserviceRequestCardPayment.d.ts +0 -1
- package/lib/interfaces/IserviceRequestPbaPayment.d.ts +0 -1
- package/lib/interfaces/IssueRefundRequest.d.ts +0 -1
- package/lib/interfaces/NotificationPreviewRequest.d.ts +0 -1
- package/lib/interfaces/PayhubAntennaRequest.d.ts +0 -1
- package/lib/interfaces/PaymentToPayhubRequest.d.ts +0 -1
- package/lib/interfaces/PostIssueRefundRetroRemission.d.ts +0 -1
- package/lib/interfaces/PostRefundRetroRemission.d.ts +0 -1
- package/lib/interfaces/RefundsRequest.d.ts +0 -1
- package/lib/interfaces/UnidentifiedPaymentsRequest.d.ts +0 -1
- package/lib/interfaces/UnsolicitedPaymentsRequest.d.ts +0 -1
- package/lib/payment-lib.component.d.ts +3 -1
- package/lib/payment-lib.module.d.ts +40 -1
- package/lib/payment-lib.service.d.ts +3 -1
- package/lib/pipes/capitalize.pipe.d.ts +3 -1
- package/lib/pipes/ccd-hyphens.pipe.d.ts +3 -1
- package/lib/pipes/key-value.pipe.d.ts +3 -1
- package/lib/pipes/sanitize-html.pipe.d.ts +3 -1
- package/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.d.ts +4 -2
- package/lib/services/card-details/card-details.service.d.ts +3 -1
- package/lib/services/case-transactions/case-transactions.service.d.ts +4 -2
- package/lib/services/notification/notification.service.d.ts +4 -2
- package/lib/services/orderslist.service.d.ts +3 -1
- package/lib/services/payment-list/payment-list.service.d.ts +3 -1
- package/lib/services/payment-view/payment-view.service.d.ts +3 -1
- package/lib/services/refunds/refunds.service.d.ts +4 -2
- package/lib/services/shared/error-handler.service.d.ts +3 -1
- package/lib/services/shared/httpclient/webcomponent.http.client.d.ts +3 -1
- package/lib/services/shared/logger/console-logger.service.d.ts +3 -1
- package/lib/services/shared/logger/logger.service.d.ts +3 -1
- package/lib/services/status-history/status-history.service.d.ts +3 -1
- package/lib/services/xl-file/xl-file.service.d.ts +3 -1
- package/package.json +17 -11
- package/public_api.d.ts +0 -1
- package/bundles/hmcts-ccpay-web-component.umd.js +0 -7550
- package/bundles/hmcts-ccpay-web-component.umd.js.map +0 -1
- package/bundles/hmcts-ccpay-web-component.umd.min.js +0 -2
- package/bundles/hmcts-ccpay-web-component.umd.min.js.map +0 -1
- package/esm2015/hmcts-ccpay-web-component.js +0 -47
- package/esm2015/lib/components/add-remission/add-remission.component.js +0 -1045
- package/esm2015/lib/components/allocate-payments/allocate-payments.component.js +0 -381
- package/esm2015/lib/components/card-details/card-details.component.js +0 -28
- package/esm2015/lib/components/case-transactions/case-transactions.component.js +0 -735
- package/esm2015/lib/components/contact-details/contact-details.component.js +0 -315
- package/esm2015/lib/components/error-banner/error-banner.component.js +0 -18
- package/esm2015/lib/components/fee-summary/fee-summary.component.js +0 -223
- package/esm2015/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.js +0 -184
- package/esm2015/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.js +0 -238
- package/esm2015/lib/components/notification-preview/notification-preview.component.js +0 -59
- package/esm2015/lib/components/page-not-found.component.js +0 -11
- package/esm2015/lib/components/payment-list/payment-list.component.js +0 -31
- package/esm2015/lib/components/payment-view/payment-view.component.js +0 -335
- package/esm2015/lib/components/pba-details/pba-details.component.js +0 -18
- package/esm2015/lib/components/pba-payment/pba-payment.component.js +0 -144
- package/esm2015/lib/components/process-refund/process-refund.component.js +0 -398
- package/esm2015/lib/components/processed-payments/processed-payments.component.js +0 -34
- package/esm2015/lib/components/refund-list/refund-list.component.js +0 -59
- package/esm2015/lib/components/refund-status/refund-status.component.js +0 -399
- package/esm2015/lib/components/reports/reports.component.js +0 -280
- package/esm2015/lib/components/service-request/service-request.component.js +0 -345
- package/esm2015/lib/components/status-history/status-history.component.js +0 -28
- package/esm2015/lib/components/table/table.component.js +0 -99
- package/esm2015/lib/components/unprocessed-payments/unprocessed-payments.component.js +0 -199
- package/esm2015/lib/interfaces/AddRemissionRequest.js +0 -10
- package/esm2015/lib/interfaces/AddRetroRemissionRequest.js +0 -7
- package/esm2015/lib/interfaces/AllocatePaymentRequest.js +0 -27
- package/esm2015/lib/interfaces/IAllocationPaymentsRequest.js +0 -14
- package/esm2015/lib/interfaces/IPaymentStatus.js +0 -3
- package/esm2015/lib/interfaces/IPutNotificationRequest.js +0 -11
- package/esm2015/lib/interfaces/IResubmitRefundRequest.js +0 -9
- package/esm2015/lib/interfaces/IserviceRequestCardPayment.js +0 -8
- package/esm2015/lib/interfaces/IserviceRequestPbaPayment.js +0 -10
- package/esm2015/lib/interfaces/IssueRefundRequest.js +0 -8
- package/esm2015/lib/interfaces/NotificationPreviewRequest.js +0 -37
- package/esm2015/lib/interfaces/PayhubAntennaRequest.js +0 -9
- package/esm2015/lib/interfaces/PaymentToPayhubRequest.js +0 -12
- package/esm2015/lib/interfaces/PostIssueRefundRetroRemission.js +0 -7
- package/esm2015/lib/interfaces/PostRefundRetroRemission.js +0 -11
- package/esm2015/lib/interfaces/RefundsRequest.js +0 -7
- package/esm2015/lib/interfaces/UnidentifiedPaymentsRequest.js +0 -12
- package/esm2015/lib/interfaces/UnsolicitedPaymentsRequest.js +0 -15
- package/esm2015/lib/payment-lib.component.js +0 -132
- package/esm2015/lib/payment-lib.module.js +0 -99
- package/esm2015/lib/payment-lib.service.js +0 -43
- package/esm2015/lib/pipes/capitalize.pipe.js +0 -14
- package/esm2015/lib/pipes/ccd-hyphens.pipe.js +0 -18
- package/esm2015/lib/pipes/key-value.pipe.js +0 -20
- package/esm2015/lib/pipes/sanitize-html.pipe.js +0 -17
- package/esm2015/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.js +0 -87
- package/esm2015/lib/services/card-details/card-details.service.js +0 -39
- package/esm2015/lib/services/case-transactions/case-transactions.service.js +0 -39
- package/esm2015/lib/services/notification/notification.service.js +0 -70
- package/esm2015/lib/services/orderslist.service.js +0 -154
- package/esm2015/lib/services/payment-list/payment-list.service.js +0 -39
- package/esm2015/lib/services/payment-view/payment-view.service.js +0 -150
- package/esm2015/lib/services/refunds/refunds.service.js +0 -117
- package/esm2015/lib/services/shared/httpclient/webcomponent.http.client.js +0 -61
- package/esm2015/lib/services/shared/logger/console-logger.service.js +0 -43
- package/esm2015/lib/services/shared/logger/logger.service.js +0 -17
- package/esm2015/lib/services/status-history/status-history.service.js +0 -41
- package/esm2015/lib/services/xl-file/xl-file.service.js +0 -151
- package/fesm2015/hmcts-ccpay-web-component.js +0 -6980
- package/fesm2015/hmcts-ccpay-web-component.js.map +0 -1
- package/hmcts-ccpay-web-component.d.ts +0 -47
- package/hmcts-ccpay-web-component.d.ts.map +0 -1
- package/hmcts-ccpay-web-component.metadata.json +0 -1
- package/lib/components/add-remission/add-remission.component.d.ts.map +0 -1
- package/lib/components/add-remission/add-remission.component.ngfactory.d.ts.map +0 -1
- package/lib/components/add-remission/add-remission.component.scss.shim.ngstyle.d.ts.map +0 -1
- package/lib/components/allocate-payments/allocate-payments.component.d.ts.map +0 -1
- package/lib/components/allocate-payments/allocate-payments.component.ngfactory.d.ts.map +0 -1
- package/lib/components/allocate-payments/allocate-payments.component.scss.shim.ngstyle.d.ts.map +0 -1
- package/lib/components/card-details/card-details.component.css.shim.ngstyle.d.ts.map +0 -1
- package/lib/components/card-details/card-details.component.d.ts.map +0 -1
- package/lib/components/card-details/card-details.component.ngfactory.d.ts.map +0 -1
- package/lib/components/case-transactions/case-transactions.component.css.shim.ngstyle.d.ts.map +0 -1
- package/lib/components/case-transactions/case-transactions.component.d.ts.map +0 -1
- package/lib/components/case-transactions/case-transactions.component.ngfactory.d.ts.map +0 -1
- package/lib/components/contact-details/contact-details.component.css.shim.ngstyle.d.ts.map +0 -1
- package/lib/components/contact-details/contact-details.component.d.ts.map +0 -1
- package/lib/components/contact-details/contact-details.component.ngfactory.d.ts.map +0 -1
- package/lib/components/error-banner/error-banner.component.d.ts.map +0 -1
- package/lib/components/error-banner/error-banner.component.ngfactory.d.ts.map +0 -1
- package/lib/components/error-banner/error-banner.component.scss.shim.ngstyle.d.ts.map +0 -1
- package/lib/components/fee-summary/fee-summary.component.d.ts.map +0 -1
- package/lib/components/fee-summary/fee-summary.component.ngfactory.d.ts.map +0 -1
- package/lib/components/fee-summary/fee-summary.component.scss.shim.ngstyle.d.ts.map +0 -1
- package/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.d.ts.map +0 -1
- package/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.ngfactory.d.ts.map +0 -1
- package/lib/components/mark-unidentified-payment/mark-unidentified-payment.component.scss.shim.ngstyle.d.ts.map +0 -1
- package/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.d.ts.map +0 -1
- package/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.ngfactory.d.ts.map +0 -1
- package/lib/components/mark-unsolicited-payment/mark-unsolicited-payment.component.scss.shim.ngstyle.d.ts.map +0 -1
- package/lib/components/notification-preview/notification-preview.component.d.ts.map +0 -1
- package/lib/components/notification-preview/notification-preview.component.ngfactory.d.ts.map +0 -1
- package/lib/components/notification-preview/notification-preview.component.scss.shim.ngstyle.d.ts.map +0 -1
- package/lib/components/page-not-found.component.d.ts.map +0 -1
- package/lib/components/page-not-found.component.ngfactory.d.ts.map +0 -1
- package/lib/components/payment-list/payment-list.component.css.shim.ngstyle.d.ts.map +0 -1
- package/lib/components/payment-list/payment-list.component.d.ts.map +0 -1
- package/lib/components/payment-list/payment-list.component.ngfactory.d.ts.map +0 -1
- package/lib/components/payment-view/payment-view.component.d.ts.map +0 -1
- package/lib/components/payment-view/payment-view.component.ngfactory.d.ts.map +0 -1
- package/lib/components/payment-view/payment-view.component.scss.shim.ngstyle.d.ts.map +0 -1
- package/lib/components/pba-details/pba-details.component.css.shim.ngstyle.d.ts.map +0 -1
- package/lib/components/pba-details/pba-details.component.d.ts.map +0 -1
- package/lib/components/pba-details/pba-details.component.ngfactory.d.ts.map +0 -1
- package/lib/components/pba-payment/pba-payment.component.d.ts.map +0 -1
- package/lib/components/pba-payment/pba-payment.component.ngfactory.d.ts.map +0 -1
- package/lib/components/pba-payment/pba-payment.component.scss.shim.ngstyle.d.ts.map +0 -1
- package/lib/components/process-refund/process-refund.component.css.shim.ngstyle.d.ts.map +0 -1
- package/lib/components/process-refund/process-refund.component.d.ts.map +0 -1
- package/lib/components/process-refund/process-refund.component.ngfactory.d.ts.map +0 -1
- package/lib/components/processed-payments/processed-payments.component.d.ts.map +0 -1
- package/lib/components/processed-payments/processed-payments.component.ngfactory.d.ts.map +0 -1
- package/lib/components/processed-payments/processed-payments.component.scss.shim.ngstyle.d.ts.map +0 -1
- package/lib/components/refund-list/refund-list.component.css.shim.ngstyle.d.ts.map +0 -1
- package/lib/components/refund-list/refund-list.component.d.ts.map +0 -1
- package/lib/components/refund-list/refund-list.component.ngfactory.d.ts.map +0 -1
- package/lib/components/refund-status/refund-status.component.css.shim.ngstyle.d.ts.map +0 -1
- package/lib/components/refund-status/refund-status.component.d.ts.map +0 -1
- package/lib/components/refund-status/refund-status.component.ngfactory.d.ts.map +0 -1
- package/lib/components/reports/reports.component.d.ts.map +0 -1
- package/lib/components/reports/reports.component.ngfactory.d.ts.map +0 -1
- package/lib/components/reports/reports.component.scss.shim.ngstyle.d.ts.map +0 -1
- package/lib/components/service-request/service-request.component.d.ts.map +0 -1
- package/lib/components/service-request/service-request.component.ngfactory.d.ts.map +0 -1
- package/lib/components/service-request/service-request.component.scss.shim.ngstyle.d.ts.map +0 -1
- package/lib/components/status-history/status-history.component.css.shim.ngstyle.d.ts.map +0 -1
- package/lib/components/status-history/status-history.component.d.ts.map +0 -1
- package/lib/components/status-history/status-history.component.ngfactory.d.ts.map +0 -1
- package/lib/components/table/table.component.css.shim.ngstyle.d.ts.map +0 -1
- package/lib/components/table/table.component.d.ts.map +0 -1
- package/lib/components/table/table.component.ngfactory.d.ts.map +0 -1
- package/lib/components/unprocessed-payments/unprocessed-payments.component.d.ts.map +0 -1
- package/lib/components/unprocessed-payments/unprocessed-payments.component.ngfactory.d.ts.map +0 -1
- package/lib/components/unprocessed-payments/unprocessed-payments.component.scss.shim.ngstyle.d.ts.map +0 -1
- package/lib/interfaces/AddRemissionRequest.d.ts.map +0 -1
- package/lib/interfaces/AddRetroRemissionRequest.d.ts.map +0 -1
- package/lib/interfaces/AllocatePaymentRequest.d.ts.map +0 -1
- package/lib/interfaces/IAllocationPaymentsRequest.d.ts.map +0 -1
- package/lib/interfaces/IBSPayments.d.ts.map +0 -1
- package/lib/interfaces/ICardDetails.d.ts.map +0 -1
- package/lib/interfaces/IFee.d.ts.map +0 -1
- package/lib/interfaces/INotificationPreview.d.ts.map +0 -1
- package/lib/interfaces/IOrderReferenceFee.d.ts.map +0 -1
- package/lib/interfaces/IPatchRefundAction.d.ts.map +0 -1
- package/lib/interfaces/IPayment.d.ts.map +0 -1
- package/lib/interfaces/IPaymentFailure.d.ts.map +0 -1
- package/lib/interfaces/IPaymentGroup.d.ts.map +0 -1
- package/lib/interfaces/IPaymentStatus.d.ts.map +0 -1
- package/lib/interfaces/IPaymentView.d.ts.map +0 -1
- package/lib/interfaces/IPayments.d.ts.map +0 -1
- package/lib/interfaces/IPutNotificationRequest.d.ts.map +0 -1
- package/lib/interfaces/IRefundAction.d.ts.map +0 -1
- package/lib/interfaces/IRefundContactDetails.d.ts.map +0 -1
- package/lib/interfaces/IRefundFee.d.ts.map +0 -1
- package/lib/interfaces/IRefundList.d.ts.map +0 -1
- package/lib/interfaces/IRefundReasons.d.ts.map +0 -1
- package/lib/interfaces/IRefundRejectReason.d.ts.map +0 -1
- package/lib/interfaces/IRefundStatus.d.ts.map +0 -1
- package/lib/interfaces/IRefundStatusHistory.d.ts.map +0 -1
- package/lib/interfaces/IRefundsNotifications.d.ts.map +0 -1
- package/lib/interfaces/IRemission.d.ts.map +0 -1
- package/lib/interfaces/IResubmitRefundRequest.d.ts.map +0 -1
- package/lib/interfaces/IStatusHistories.d.ts.map +0 -1
- package/lib/interfaces/IStatusHistory.d.ts.map +0 -1
- package/lib/interfaces/IserviceRequestCardPayment.d.ts.map +0 -1
- package/lib/interfaces/IserviceRequestPbaPayment.d.ts.map +0 -1
- package/lib/interfaces/IssueRefundRequest.d.ts.map +0 -1
- package/lib/interfaces/NotificationPreviewRequest.d.ts.map +0 -1
- package/lib/interfaces/PayhubAntennaRequest.d.ts.map +0 -1
- package/lib/interfaces/PaymentToPayhubRequest.d.ts.map +0 -1
- package/lib/interfaces/PostIssueRefundRetroRemission.d.ts.map +0 -1
- package/lib/interfaces/PostRefundRetroRemission.d.ts.map +0 -1
- package/lib/interfaces/RefundsRequest.d.ts.map +0 -1
- package/lib/interfaces/UnidentifiedPaymentsRequest.d.ts.map +0 -1
- package/lib/interfaces/UnsolicitedPaymentsRequest.d.ts.map +0 -1
- package/lib/payment-lib.component.d.ts.map +0 -1
- package/lib/payment-lib.component.ngfactory.d.ts.map +0 -1
- package/lib/payment-lib.module.d.ts.map +0 -1
- package/lib/payment-lib.module.ngfactory.d.ts.map +0 -1
- package/lib/payment-lib.service.d.ts.map +0 -1
- package/lib/payment-lib.service.ngfactory.d.ts.map +0 -1
- package/lib/pipes/capitalize.pipe.d.ts.map +0 -1
- package/lib/pipes/capitalize.pipe.ngfactory.d.ts.map +0 -1
- package/lib/pipes/ccd-hyphens.pipe.d.ts.map +0 -1
- package/lib/pipes/ccd-hyphens.pipe.ngfactory.d.ts.map +0 -1
- package/lib/pipes/key-value.pipe.d.ts.map +0 -1
- package/lib/pipes/key-value.pipe.ngfactory.d.ts.map +0 -1
- package/lib/pipes/sanitize-html.pipe.d.ts.map +0 -1
- package/lib/pipes/sanitize-html.pipe.ngfactory.d.ts.map +0 -1
- package/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.d.ts.map +0 -1
- package/lib/services/bulk-scaning-payment/bulk-scaning-payment.service.ngfactory.d.ts.map +0 -1
- package/lib/services/card-details/card-details.service.d.ts.map +0 -1
- package/lib/services/card-details/card-details.service.ngfactory.d.ts.map +0 -1
- package/lib/services/case-transactions/case-transactions.service.d.ts.map +0 -1
- package/lib/services/case-transactions/case-transactions.service.ngfactory.d.ts.map +0 -1
- package/lib/services/notification/notification.service.d.ts.map +0 -1
- package/lib/services/notification/notification.service.ngfactory.d.ts.map +0 -1
- package/lib/services/orderslist.service.d.ts.map +0 -1
- package/lib/services/orderslist.service.ngfactory.d.ts.map +0 -1
- package/lib/services/payment-list/payment-list.service.d.ts.map +0 -1
- package/lib/services/payment-list/payment-list.service.ngfactory.d.ts.map +0 -1
- package/lib/services/payment-view/payment-view.service.d.ts.map +0 -1
- package/lib/services/payment-view/payment-view.service.ngfactory.d.ts.map +0 -1
- package/lib/services/refunds/refunds.service.d.ts.map +0 -1
- package/lib/services/refunds/refunds.service.ngfactory.d.ts.map +0 -1
- package/lib/services/shared/error-handler.service.d.ts.map +0 -1
- package/lib/services/shared/error-handler.service.ngfactory.d.ts.map +0 -1
- package/lib/services/shared/httpclient/webcomponent.http.client.d.ts.map +0 -1
- package/lib/services/shared/httpclient/webcomponent.http.client.ngfactory.d.ts.map +0 -1
- package/lib/services/shared/logger/console-logger.service.d.ts.map +0 -1
- package/lib/services/shared/logger/console-logger.service.ngfactory.d.ts.map +0 -1
- package/lib/services/shared/logger/logger.service.d.ts.map +0 -1
- package/lib/services/shared/logger/logger.service.ngfactory.d.ts.map +0 -1
- package/lib/services/status-history/status-history.service.d.ts.map +0 -1
- package/lib/services/status-history/status-history.service.ngfactory.d.ts.map +0 -1
- package/lib/services/xl-file/xl-file.service.d.ts.map +0 -1
- package/lib/services/xl-file/xl-file.service.ngfactory.d.ts.map +0 -1
- package/public_api.d.ts.map +0 -1
- /package/{esm2015/lib/interfaces/IBSPayments.js → esm2022/lib/interfaces/IBSPayments.mjs} +0 -0
- /package/{esm2015/lib/interfaces/ICardDetails.js → esm2022/lib/interfaces/ICardDetails.mjs} +0 -0
- /package/{esm2015/lib/interfaces/IFee.js → esm2022/lib/interfaces/IFee.mjs} +0 -0
- /package/{esm2015/lib/interfaces/INotificationPreview.js → esm2022/lib/interfaces/INotificationPreview.mjs} +0 -0
- /package/{esm2015/lib/interfaces/IOrderReferenceFee.js → esm2022/lib/interfaces/IOrderReferenceFee.mjs} +0 -0
- /package/{esm2015/lib/interfaces/IPatchRefundAction.js → esm2022/lib/interfaces/IPatchRefundAction.mjs} +0 -0
- /package/{esm2015/lib/interfaces/IPayment.js → esm2022/lib/interfaces/IPayment.mjs} +0 -0
- /package/{esm2015/lib/interfaces/IPaymentFailure.js → esm2022/lib/interfaces/IPaymentFailure.mjs} +0 -0
- /package/{esm2015/lib/interfaces/IPaymentGroup.js → esm2022/lib/interfaces/IPaymentGroup.mjs} +0 -0
- /package/{esm2015/lib/interfaces/IPaymentView.js → esm2022/lib/interfaces/IPaymentView.mjs} +0 -0
- /package/{esm2015/lib/interfaces/IPayments.js → esm2022/lib/interfaces/IPayments.mjs} +0 -0
- /package/{esm2015/lib/interfaces/IRefundAction.js → esm2022/lib/interfaces/IRefundAction.mjs} +0 -0
- /package/{esm2015/lib/interfaces/IRefundContactDetails.js → esm2022/lib/interfaces/IRefundContactDetails.mjs} +0 -0
- /package/{esm2015/lib/interfaces/IRefundFee.js → esm2022/lib/interfaces/IRefundFee.mjs} +0 -0
- /package/{esm2015/lib/interfaces/IRefundList.js → esm2022/lib/interfaces/IRefundList.mjs} +0 -0
- /package/{esm2015/lib/interfaces/IRefundReasons.js → esm2022/lib/interfaces/IRefundReasons.mjs} +0 -0
- /package/{esm2015/lib/interfaces/IRefundRejectReason.js → esm2022/lib/interfaces/IRefundRejectReason.mjs} +0 -0
- /package/{esm2015/lib/interfaces/IRefundStatus.js → esm2022/lib/interfaces/IRefundStatus.mjs} +0 -0
- /package/{esm2015/lib/interfaces/IRefundStatusHistory.js → esm2022/lib/interfaces/IRefundStatusHistory.mjs} +0 -0
- /package/{esm2015/lib/interfaces/IRefundsNotifications.js → esm2022/lib/interfaces/IRefundsNotifications.mjs} +0 -0
- /package/{esm2015/lib/interfaces/IRemission.js → esm2022/lib/interfaces/IRemission.mjs} +0 -0
- /package/{esm2015/lib/interfaces/IStatusHistories.js → esm2022/lib/interfaces/IStatusHistories.mjs} +0 -0
- /package/{esm2015/lib/interfaces/IStatusHistory.js → esm2022/lib/interfaces/IStatusHistory.mjs} +0 -0
- /package/{esm2015/public_api.js → esm2022/public_api.mjs} +0 -0
package/index.d.ts
ADDED
|
@@ -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
|
package/lib/interfaces/IFee.d.ts
CHANGED