@resolveio/client-lib-core 0.0.1
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/esm2020/lib/account-manager.service.mjs +213 -0
- package/esm2020/lib/auth/auth-guard.service.mjs +137 -0
- package/esm2020/lib/auth/auth-permissions.service.mjs +24 -0
- package/esm2020/lib/auth/auth.service.mjs +241 -0
- package/esm2020/lib/auth/auth365.component.mjs +44 -0
- package/esm2020/lib/auth/can-deactivate-guard.service.mjs +13 -0
- package/esm2020/lib/auth/enroll.component.mjs +81 -0
- package/esm2020/lib/auth/forgot-password.component.mjs +82 -0
- package/esm2020/lib/core.component.mjs +488 -0
- package/esm2020/lib/core.module.mjs +179 -0
- package/esm2020/lib/core.service.mjs +96 -0
- package/esm2020/lib/directive/focus.mjs +22 -0
- package/esm2020/lib/directive/scroll.mjs +55 -0
- package/esm2020/lib/home/about-us.component.mjs +34 -0
- package/esm2020/lib/home/contact-us.component.mjs +57 -0
- package/esm2020/lib/home/demo.component.mjs +59 -0
- package/esm2020/lib/home/home.component.mjs +105 -0
- package/esm2020/lib/home/home.module.mjs +50 -0
- package/esm2020/lib/logger/logger.component.mjs +221 -0
- package/esm2020/lib/models/app-status.model.mjs +2 -0
- package/esm2020/lib/models/collection-document.model.mjs +2 -0
- package/esm2020/lib/models/cron-job.model.mjs +2 -0
- package/esm2020/lib/models/dialog.model.mjs +2 -0
- package/esm2020/lib/models/file.model.mjs +2 -0
- package/esm2020/lib/models/log-method-latency.model.mjs +2 -0
- package/esm2020/lib/models/navbar-main-tab.model.mjs +2 -0
- package/esm2020/lib/models/pagination.model.mjs +2 -0
- package/esm2020/lib/models/permission.model.mjs +2 -0
- package/esm2020/lib/models/select-data-label.model.mjs +2 -0
- package/esm2020/lib/models/subscription.model.mjs +2 -0
- package/esm2020/lib/models/support-ticket.model.mjs +2 -0
- package/esm2020/lib/models/user-group.model.mjs +2 -0
- package/esm2020/lib/models/user.model.mjs +2 -0
- package/esm2020/lib/offline-db.mjs +519 -0
- package/esm2020/lib/offline-manager.service.mjs +107 -0
- package/esm2020/lib/pipes/domsanitizor.pipe.mjs +28 -0
- package/esm2020/lib/pipes/filter.pipe.mjs +36 -0
- package/esm2020/lib/pipes/json-parse.pipe.mjs +29 -0
- package/esm2020/lib/pipes/minus-currency.pipe.mjs +16 -0
- package/esm2020/lib/pipes/phone.pipe.mjs +47 -0
- package/esm2020/lib/pipes/pipe.module.mjs +54 -0
- package/esm2020/lib/pipes/reverse-list.pipe.mjs +17 -0
- package/esm2020/lib/pipes/titlecase.pipe.mjs +22 -0
- package/esm2020/lib/resolveio-class.mjs +41 -0
- package/esm2020/lib/shared/shared.module.mjs +91 -0
- package/esm2020/lib/socket-manager.service.mjs +360 -0
- package/esm2020/lib/socket.service.mjs +129 -0
- package/esm2020/lib/standard-pages/contactus/contactus.component.mjs +45 -0
- package/esm2020/lib/standard-pages/faq/faq.component.mjs +45 -0
- package/esm2020/lib/standard-pages/features/features.component.mjs +23 -0
- package/esm2020/lib/standard-pages/home/home.component.mjs +38 -0
- package/esm2020/lib/standard-pages/howitwork/howitwork.component.mjs +23 -0
- package/esm2020/lib/standard-pages/loginsignup/loginsignup.component.mjs +23 -0
- package/esm2020/lib/standard-pages/pricing/pricing.component.mjs +37 -0
- package/esm2020/lib/standard-pages/standard-pages.module.mjs +69 -0
- package/esm2020/lib/support-ticket/detail/support-ticket-detail.component.mjs +204 -0
- package/esm2020/lib/support-ticket/edit/support-ticket-edit.component.mjs +122 -0
- package/esm2020/lib/support-ticket/list/support-ticket-list.component.mjs +137 -0
- package/esm2020/lib/support-ticket/new/support-ticket-new.component.mjs +115 -0
- package/esm2020/lib/support-ticket/support-ticket.component.mjs +63 -0
- package/esm2020/lib/support-ticket/support-ticket.module.mjs +57 -0
- package/esm2020/lib/support-ticket/support-ticket.routing.mjs +20 -0
- package/esm2020/lib/support-ticket/support-ticket.service.mjs +17 -0
- package/esm2020/lib/token-manager.service.mjs +24 -0
- package/esm2020/lib/user-settings/settings/users-settings.component.mjs +312 -0
- package/esm2020/lib/user-settings/user-settings.component.mjs +57 -0
- package/esm2020/lib/user-settings/user-settings.module.mjs +58 -0
- package/esm2020/lib/user-settings/user-settings.permission.mjs +10 -0
- package/esm2020/lib/user-settings/user-settings.routing.mjs +14 -0
- package/esm2020/lib/user-settings/user-settings.service.mjs +17 -0
- package/esm2020/lib/util/action-name.helper.mjs +9 -0
- package/esm2020/lib/util/aws.service.mjs +79 -0
- package/esm2020/lib/util/common.helper.mjs +140 -0
- package/esm2020/lib/util/validation.service.mjs +177 -0
- package/esm2020/lib/util/window-resize.service.mjs +24 -0
- package/esm2020/lib/util/window.service.mjs +16 -0
- package/esm2020/lib/widgets/alert/alert.model.mjs +2 -0
- package/esm2020/lib/widgets/alert/alert.service.mjs +76 -0
- package/esm2020/lib/widgets/chartjs/chart.component.mjs +86 -0
- package/esm2020/lib/widgets/chartjs/chart.module.mjs +17 -0
- package/esm2020/lib/widgets/collapse-table/collapse-table.component.mjs +79 -0
- package/esm2020/lib/widgets/collapse-table/collapse-table.module.mjs +36 -0
- package/esm2020/lib/widgets/data-table/data-table.component.mjs +77 -0
- package/esm2020/lib/widgets/data-table/data-table.model.mjs +2 -0
- package/esm2020/lib/widgets/data-table/data-table.module.mjs +43 -0
- package/esm2020/lib/widgets/date-shortcut/date-shortcut.component.mjs +195 -0
- package/esm2020/lib/widgets/date-shortcut/date-shortcut.module.mjs +34 -0
- package/esm2020/lib/widgets/dialog/dialog.confirm.content.mjs +63 -0
- package/esm2020/lib/widgets/dialog/dialog.error.content.mjs +57 -0
- package/esm2020/lib/widgets/dialog/dialog.input.content.mjs +197 -0
- package/esm2020/lib/widgets/dialog/dialog.login.content.mjs +348 -0
- package/esm2020/lib/widgets/dialog/dialog.notify.content.mjs +57 -0
- package/esm2020/lib/widgets/dialog/dialog.register.content.mjs +330 -0
- package/esm2020/lib/widgets/dialog/dialog.select-data-labels.content.mjs +191 -0
- package/esm2020/lib/widgets/dialog/dialog.select-datetime.content.mjs +140 -0
- package/esm2020/lib/widgets/dialog/dialog.service.mjs +71 -0
- package/esm2020/lib/widgets/file/file-upload.component.mjs +440 -0
- package/esm2020/lib/widgets/file/file-upload.module.mjs +50 -0
- package/esm2020/lib/widgets/form-button/form-button.component.mjs +91 -0
- package/esm2020/lib/widgets/form-button/form-button.module.mjs +30 -0
- package/esm2020/lib/widgets/navbar-main/navbar-main.component.mjs +209 -0
- package/esm2020/lib/widgets/navbar-module/navbar-module.component.mjs +138 -0
- package/esm2020/lib/widgets/navbar-module/navbar-module.model.mjs +2 -0
- package/esm2020/lib/widgets/ngx-tour-ng-bootstrap/ng-bootstrap-tour.service.mjs +14 -0
- package/esm2020/lib/widgets/ngx-tour-ng-bootstrap/ng-bootstrap.module.mjs +34 -0
- package/esm2020/lib/widgets/ngx-tour-ng-bootstrap/step-option.interface.mjs +2 -0
- package/esm2020/lib/widgets/ngx-tour-ng-bootstrap/tour-anchor.directive.mjs +76 -0
- package/esm2020/lib/widgets/ngx-tour-ng-bootstrap/tour-step-template.component.mjs +70 -0
- package/esm2020/lib/widgets/ngx-tour-ng-bootstrap/tour-step-template.service.mjs +10 -0
- package/esm2020/lib/widgets/responsive-button-group/responsive-button-group.component.mjs +38 -0
- package/esm2020/lib/widgets/responsive-button-group/responsive-button-group.module.mjs +26 -0
- package/esm2020/lib/widgets/scheduler/scheduler.component.mjs +185 -0
- package/esm2020/lib/widgets/scheduler/scheduler.module.mjs +39 -0
- package/esm2020/lib/widgets/sort-table/sort-table-header.component.mjs +67 -0
- package/esm2020/lib/widgets/sort-table/sort-table-ngfor.component.mjs +48 -0
- package/esm2020/lib/widgets/sort-table/sort-table.directive.mjs +174 -0
- package/esm2020/lib/widgets/sort-table/sort-table.module.mjs +40 -0
- package/esm2020/lib/widgets/user-role/user-role.component.mjs +27 -0
- package/esm2020/lib/widgets/user-role/user-role.module.mjs +26 -0
- package/esm2020/public_api.mjs +109 -0
- package/esm2020/resolveio-client-lib-core.mjs +5 -0
- package/fesm2015/resolveio-client-lib-core.mjs +8856 -0
- package/fesm2015/resolveio-client-lib-core.mjs.map +1 -0
- package/fesm2020/resolveio-client-lib-core.mjs +8849 -0
- package/fesm2020/resolveio-client-lib-core.mjs.map +1 -0
- package/lib/account-manager.service.d.ts +42 -0
- package/lib/auth/auth-guard.service.d.ts +25 -0
- package/lib/auth/auth-permissions.service.d.ts +10 -0
- package/lib/auth/auth.service.d.ts +29 -0
- package/lib/auth/auth365.component.d.ts +20 -0
- package/lib/auth/can-deactivate-guard.service.d.ts +11 -0
- package/lib/auth/enroll.component.d.ts +28 -0
- package/lib/auth/forgot-password.component.d.ts +28 -0
- package/lib/core.component.d.ts +69 -0
- package/lib/core.module.d.ts +32 -0
- package/lib/core.service.d.ts +53 -0
- package/lib/directive/focus.d.ts +10 -0
- package/lib/directive/scroll.d.ts +20 -0
- package/lib/home/about-us.component.d.ts +15 -0
- package/lib/home/contact-us.component.d.ts +20 -0
- package/lib/home/demo.component.d.ts +25 -0
- package/lib/home/home.component.d.ts +33 -0
- package/lib/home/home.module.d.ts +13 -0
- package/lib/logger/logger.component.d.ts +37 -0
- package/lib/models/app-status.model.d.ts +4 -0
- package/lib/models/collection-document.model.d.ts +6 -0
- package/lib/models/cron-job.model.d.ts +13 -0
- package/lib/models/dialog.model.d.ts +18 -0
- package/lib/models/file.model.d.ts +9 -0
- package/lib/models/log-method-latency.model.d.ts +7 -0
- package/lib/models/navbar-main-tab.model.d.ts +14 -0
- package/lib/models/pagination.model.d.ts +17 -0
- package/lib/models/permission.model.d.ts +13 -0
- package/lib/models/select-data-label.model.d.ts +9 -0
- package/lib/models/subscription.model.d.ts +19 -0
- package/lib/models/support-ticket.model.d.ts +71 -0
- package/lib/models/user-group.model.d.ts +19 -0
- package/lib/models/user.model.d.ts +70 -0
- package/lib/offline-db.d.ts +28 -0
- package/lib/offline-manager.service.d.ts +23 -0
- package/lib/pipes/domsanitizor.pipe.d.ts +10 -0
- package/lib/pipes/filter.pipe.d.ts +12 -0
- package/lib/pipes/json-parse.pipe.d.ts +7 -0
- package/lib/pipes/minus-currency.pipe.d.ts +7 -0
- package/lib/pipes/phone.pipe.d.ts +7 -0
- package/lib/pipes/pipe.module.d.ts +13 -0
- package/lib/pipes/reverse-list.pipe.d.ts +6 -0
- package/lib/pipes/titlecase.pipe.d.ts +7 -0
- package/lib/resolveio-class.d.ts +26 -0
- package/lib/shared/shared.module.d.ts +16 -0
- package/lib/socket-manager.service.d.ts +33 -0
- package/lib/socket.service.d.ts +33 -0
- package/lib/standard-pages/contactus/contactus.component.d.ts +17 -0
- package/lib/standard-pages/faq/faq.component.d.ts +17 -0
- package/lib/standard-pages/features/features.component.d.ts +12 -0
- package/lib/standard-pages/home/home.component.d.ts +14 -0
- package/lib/standard-pages/howitwork/howitwork.component.d.ts +12 -0
- package/lib/standard-pages/loginsignup/loginsignup.component.d.ts +12 -0
- package/lib/standard-pages/pricing/pricing.component.d.ts +14 -0
- package/lib/standard-pages/standard-pages.module.d.ts +17 -0
- package/lib/support-ticket/detail/support-ticket-detail.component.d.ts +32 -0
- package/lib/support-ticket/edit/support-ticket-edit.component.d.ts +30 -0
- package/lib/support-ticket/list/support-ticket-list.component.d.ts +26 -0
- package/lib/support-ticket/new/support-ticket-new.component.d.ts +26 -0
- package/lib/support-ticket/support-ticket.component.d.ts +20 -0
- package/lib/support-ticket/support-ticket.module.d.ts +16 -0
- package/lib/support-ticket/support-ticket.routing.d.ts +3 -0
- package/lib/support-ticket/support-ticket.service.d.ts +9 -0
- package/lib/token-manager.service.d.ts +11 -0
- package/lib/user-settings/settings/users-settings.component.d.ts +57 -0
- package/lib/user-settings/user-settings.component.d.ts +20 -0
- package/lib/user-settings/user-settings.module.d.ts +15 -0
- package/lib/user-settings/user-settings.permission.d.ts +2 -0
- package/lib/user-settings/user-settings.routing.d.ts +3 -0
- package/lib/user-settings/user-settings.service.d.ts +9 -0
- package/lib/util/action-name.helper.d.ts +1 -0
- package/lib/util/aws.service.d.ts +16 -0
- package/lib/util/common.helper.d.ts +12 -0
- package/lib/util/validation.service.d.ts +85 -0
- package/lib/util/window-resize.service.d.ts +12 -0
- package/lib/util/window.service.d.ts +6 -0
- package/lib/widgets/alert/alert.model.d.ts +1 -0
- package/lib/widgets/alert/alert.service.d.ts +11 -0
- package/lib/widgets/chartjs/chart.component.d.ts +22 -0
- package/lib/widgets/chartjs/chart.module.d.ts +8 -0
- package/lib/widgets/collapse-table/collapse-table.component.d.ts +23 -0
- package/lib/widgets/collapse-table/collapse-table.module.d.ts +9 -0
- package/lib/widgets/data-table/data-table.component.d.ts +23 -0
- package/lib/widgets/data-table/data-table.model.d.ts +13 -0
- package/lib/widgets/data-table/data-table.module.d.ts +12 -0
- package/lib/widgets/date-shortcut/date-shortcut.component.d.ts +20 -0
- package/lib/widgets/date-shortcut/date-shortcut.module.d.ts +10 -0
- package/lib/widgets/dialog/dialog.confirm.content.d.ts +12 -0
- package/lib/widgets/dialog/dialog.error.content.d.ts +11 -0
- package/lib/widgets/dialog/dialog.input.content.d.ts +18 -0
- package/lib/widgets/dialog/dialog.login.content.d.ts +16 -0
- package/lib/widgets/dialog/dialog.notify.content.d.ts +11 -0
- package/lib/widgets/dialog/dialog.register.content.d.ts +13 -0
- package/lib/widgets/dialog/dialog.select-data-labels.content.d.ts +22 -0
- package/lib/widgets/dialog/dialog.select-datetime.content.d.ts +16 -0
- package/lib/widgets/dialog/dialog.service.d.ts +18 -0
- package/lib/widgets/file/file-upload.component.d.ts +49 -0
- package/lib/widgets/file/file-upload.module.d.ts +14 -0
- package/lib/widgets/form-button/form-button.component.d.ts +14 -0
- package/lib/widgets/form-button/form-button.module.d.ts +9 -0
- package/lib/widgets/navbar-main/navbar-main.component.d.ts +52 -0
- package/lib/widgets/navbar-module/navbar-module.component.d.ts +24 -0
- package/lib/widgets/navbar-module/navbar-module.model.d.ts +13 -0
- package/lib/widgets/ngx-tour-ng-bootstrap/ng-bootstrap-tour.service.d.ts +7 -0
- package/lib/widgets/ngx-tour-ng-bootstrap/ng-bootstrap.module.d.ts +17 -0
- package/lib/widgets/ngx-tour-ng-bootstrap/step-option.interface.d.ts +5 -0
- package/lib/widgets/ngx-tour-ng-bootstrap/tour-anchor.directive.d.ts +26 -0
- package/lib/widgets/ngx-tour-ng-bootstrap/tour-step-template.component.d.ts +20 -0
- package/lib/widgets/ngx-tour-ng-bootstrap/tour-step-template.service.d.ts +9 -0
- package/lib/widgets/responsive-button-group/responsive-button-group.component.d.ts +17 -0
- package/lib/widgets/responsive-button-group/responsive-button-group.module.d.ts +8 -0
- package/lib/widgets/scheduler/scheduler.component.d.ts +50 -0
- package/lib/widgets/scheduler/scheduler.module.d.ts +11 -0
- package/lib/widgets/sort-table/sort-table-header.component.d.ts +23 -0
- package/lib/widgets/sort-table/sort-table-ngfor.component.d.ts +17 -0
- package/lib/widgets/sort-table/sort-table.directive.d.ts +48 -0
- package/lib/widgets/sort-table/sort-table.module.d.ts +11 -0
- package/lib/widgets/user-role/user-role.component.d.ts +10 -0
- package/lib/widgets/user-role/user-role.module.d.ts +8 -0
- package/package.json +72 -0
- package/public_api.d.ts +105 -0
- package/resolveio-client-lib-core.d.ts +5 -0
- package/src/assets/css/font-awesome.css +2338 -0
- package/src/assets/css/home-page-layout.css +7221 -0
- package/src/assets/css/home-page-theme.css +1157 -0
- package/src/assets/css/leaflet.css +629 -0
- package/src/assets/css/owl.carousel.min.css +1 -0
- package/src/assets/css/owl.theme.min.css +1 -0
- package/src/assets/css/style.css +1283 -0
- package/src/assets/css/tablet.css +18 -0
- package/src/assets/css/toastr.css +192 -0
- package/src/assets/images/ResolveIO.png +0 -0
- package/src/assets/images/ResolveIO_white.png +0 -0
- package/src/assets/images/contactus/Contact_bnr.jpg +0 -0
- package/src/assets/images/contactus/cont-comp.png +0 -0
- package/src/assets/images/contactus/cont-mail.png +0 -0
- package/src/assets/images/contactus/cont-phone.png +0 -0
- package/src/assets/images/contactus/form-img.png +0 -0
- package/src/assets/images/contactus/user.png +0 -0
- package/src/assets/images/faq/Faq-form.png +0 -0
- package/src/assets/images/faq/clientlogo1.jpg +0 -0
- package/src/assets/images/faq/clientlogo2.jpg +0 -0
- package/src/assets/images/faq/clientlogo3.jpg +0 -0
- package/src/assets/images/faq/clientlogo4.jpg +0 -0
- package/src/assets/images/faq/clientlogo5.jpg +0 -0
- package/src/assets/images/faq/faq_banner copy.jpg +0 -0
- package/src/assets/images/faq/faq_banner.jpg +0 -0
- package/src/assets/images/faq/faqwomen.jpg +0 -0
- package/src/assets/images/faq/mail-input.png +0 -0
- package/src/assets/images/faq/user-input.png +0 -0
- package/src/assets/images/favicon-32x32.png +0 -0
- package/src/assets/images/features/future-bnr.jpg +0 -0
- package/src/assets/images/features/polygon.png +0 -0
- package/src/assets/images/home/banner-1.jpg +0 -0
- package/src/assets/images/home/booking.png +0 -0
- package/src/assets/images/home/client.jpg +0 -0
- package/src/assets/images/home/client2.jpg +0 -0
- package/src/assets/images/home/clientlogo1.jpg +0 -0
- package/src/assets/images/home/clientlogo2.jpg +0 -0
- package/src/assets/images/home/clientlogo3.jpg +0 -0
- package/src/assets/images/home/clientlogo4.jpg +0 -0
- package/src/assets/images/home/clientlogo5.jpg +0 -0
- package/src/assets/images/home/easy_invoicing.png +0 -0
- package/src/assets/images/home/inventory.png +0 -0
- package/src/assets/images/home/manage.png +0 -0
- package/src/assets/images/home/more.png +0 -0
- package/src/assets/images/home/order_management.png +0 -0
- package/src/assets/images/home/plan.png +0 -0
- package/src/assets/images/home-page/AjaxLoader.gif +0 -0
- package/src/assets/images/home-page/ResolveIO_white.png +0 -0
- package/src/assets/images/home-page/abt_thumb.png +0 -0
- package/src/assets/images/home-page/aero_icon_right_white.png +0 -0
- package/src/assets/images/home-page/arrow_btn.png +0 -0
- package/src/assets/images/home-page/banner_thumb.png +0 -0
- package/src/assets/images/home-page/blank.gif +0 -0
- package/src/assets/images/home-page/close_icon.png +0 -0
- package/src/assets/images/home-page/contact_bg.jpg +0 -0
- package/src/assets/images/home-page/email_icon.png +0 -0
- package/src/assets/images/home-page/fancybox_loading.gif +0 -0
- package/src/assets/images/home-page/fancybox_loading@2x.gif +0 -0
- package/src/assets/images/home-page/fancybox_overlay.png +0 -0
- package/src/assets/images/home-page/fancybox_sprite.png +0 -0
- package/src/assets/images/home-page/fancybox_sprite@2x.png +0 -0
- package/src/assets/images/home-page/header_center_after.png +0 -0
- package/src/assets/images/home-page/header_left_after.png +0 -0
- package/src/assets/images/home-page/home_banner_1.jpg +0 -0
- package/src/assets/images/home-page/logo.png +0 -0
- package/src/assets/images/home-page/logo_thumb_ace.png +0 -0
- package/src/assets/images/home-page/logo_thumb_acquire.png +0 -0
- package/src/assets/images/home-page/logo_thumb_chemtech.jpeg +0 -0
- package/src/assets/images/home-page/logo_thumb_cherokee.png +0 -0
- package/src/assets/images/home-page/logo_thumb_coilchem.png +0 -0
- package/src/assets/images/home-page/logo_thumb_dcs.png +0 -0
- package/src/assets/images/home-page/logo_thumb_integrity.png +0 -0
- package/src/assets/images/home-page/logo_thumb_intrepid.png +0 -0
- package/src/assets/images/home-page/logo_thumb_omt.png +0 -0
- package/src/assets/images/home-page/logo_thumb_quantum.png +0 -0
- package/src/assets/images/home-page/logo_thumb_smartchemical.png +0 -0
- package/src/assets/images/home-page/logo_thumb_terra.png +0 -0
- package/src/assets/images/home-page/logo_thumb_truechem.png +0 -0
- package/src/assets/images/home-page/password_icon.png +0 -0
- package/src/assets/images/home-page/phone_icon.png +0 -0
- package/src/assets/images/home-page/software_icon_1.png +0 -0
- package/src/assets/images/home-page/software_icon_2.png +0 -0
- package/src/assets/images/home-page/software_sec_bg.jpg +0 -0
- package/src/assets/images/home-page/software_thumb.png +0 -0
- package/src/assets/images/home-page/white_arrow_btn.png +0 -0
- package/src/assets/images/howitwork/add-booking.png +0 -0
- package/src/assets/images/howitwork/add-order.png +0 -0
- package/src/assets/images/howitwork/add-stuff.png +0 -0
- package/src/assets/images/howitwork/how_banner.jpg +0 -0
- package/src/assets/images/howitwork/howimg1.png +0 -0
- package/src/assets/images/howitwork/howimg2.png +0 -0
- package/src/assets/images/howitwork/step-check.png +0 -0
- package/src/assets/images/loginsignup/formimg.jpg +0 -0
- package/src/assets/images/loginsignup/login-logo.png +0 -0
- package/src/assets/images/owl.video.play.png +0 -0
- package/src/assets/images/pricing/Pricing_banner.jpg +0 -0
- package/src/assets/images/pricing/clientlogo1.jpg +0 -0
- package/src/assets/images/pricing/clientlogo2.jpg +0 -0
- package/src/assets/images/pricing/clientlogo3.jpg +0 -0
- package/src/assets/images/pricing/clientlogo4.jpg +0 -0
- package/src/assets/images/pricing/clientlogo5.jpg +0 -0
- package/src/assets/images/pricing/info-ico.png +0 -0
- package/src/assets/scss/toastr.scss +201 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export interface ModulePermissionModel {
|
|
2
|
+
name: string;
|
|
3
|
+
views: ModulePermissionViewModel[];
|
|
4
|
+
approval?: ModulePermissionApprovalModel;
|
|
5
|
+
}
|
|
6
|
+
export interface ModulePermissionViewModel {
|
|
7
|
+
link: string;
|
|
8
|
+
label: string;
|
|
9
|
+
has_parameter: boolean;
|
|
10
|
+
}
|
|
11
|
+
export interface ModulePermissionApprovalModel {
|
|
12
|
+
type: string;
|
|
13
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Subject } from 'rxjs';
|
|
2
|
+
export interface SubscriptionModel {
|
|
3
|
+
[key: string]: SubscriptionPubModel;
|
|
4
|
+
}
|
|
5
|
+
export interface SubscriptionPubModel {
|
|
6
|
+
check?: any;
|
|
7
|
+
preFunction?: (...parameters: any[]) => Promise<Object>;
|
|
8
|
+
function: (...parameters: any[]) => Promise<any | any[]>;
|
|
9
|
+
collections: string[];
|
|
10
|
+
fetchFunction?: (document: Object, ...parameters: any[]) => boolean;
|
|
11
|
+
ws_specific?: boolean;
|
|
12
|
+
}
|
|
13
|
+
export interface ActiveClientSubscriptionModel {
|
|
14
|
+
messageId: number;
|
|
15
|
+
messageRoute: string;
|
|
16
|
+
subscription: string;
|
|
17
|
+
parameters: any[];
|
|
18
|
+
subject: Subject<any>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import { CollectionDocument } from './collection-document.model';
|
|
2
|
+
export interface SupportTicketModel extends CollectionDocument {
|
|
3
|
+
type: SupportTicketType;
|
|
4
|
+
priority: SupportTicketPriority;
|
|
5
|
+
issue: string;
|
|
6
|
+
support_ticket_number: number;
|
|
7
|
+
support_ticket_number_string: string;
|
|
8
|
+
status: SupportTicketStatus;
|
|
9
|
+
substatus: SupportTicketSubstatus;
|
|
10
|
+
client: string;
|
|
11
|
+
id_client: string;
|
|
12
|
+
messages: SupportTicketMessageModel[];
|
|
13
|
+
date_created: Date;
|
|
14
|
+
date_created_string: string;
|
|
15
|
+
id_user_created: string;
|
|
16
|
+
user_created: string;
|
|
17
|
+
billable: boolean;
|
|
18
|
+
date_investigation?: Date;
|
|
19
|
+
date_closed?: Date;
|
|
20
|
+
files: string[];
|
|
21
|
+
current_watchers: SupportTicketWatchersModel[];
|
|
22
|
+
client_user: SupportTicketClientUserModel;
|
|
23
|
+
users_assigned: SupportTicketUserAssignedModel[];
|
|
24
|
+
estimated_billable_hours?: number;
|
|
25
|
+
billable_hours?: number;
|
|
26
|
+
bill_description: string;
|
|
27
|
+
tasks: SupportTicketTaskModel[];
|
|
28
|
+
notes: SupportTicketNoteModel[];
|
|
29
|
+
}
|
|
30
|
+
export interface SupportTicketClientUserModel {
|
|
31
|
+
id_user: string;
|
|
32
|
+
user: string;
|
|
33
|
+
email: string;
|
|
34
|
+
}
|
|
35
|
+
export declare type SupportTicketPriority = 'High' | 'Low';
|
|
36
|
+
export declare type SupportTicketType = 'System Impairment' | 'Request New Feature' | 'General Inquery' | 'New Build';
|
|
37
|
+
export declare type SupportTicketStatus = 'Opened' | 'Review' | 'Closed';
|
|
38
|
+
export declare type SupportTicketSubstatus = 'New' | 'Work In Progress' | 'Idle' | 'Awaiting Customer Interaction';
|
|
39
|
+
export interface SupportTicketMessageModel {
|
|
40
|
+
message: string;
|
|
41
|
+
id_user: string;
|
|
42
|
+
user: string;
|
|
43
|
+
date: Date;
|
|
44
|
+
type: SupportTicketMessageType;
|
|
45
|
+
}
|
|
46
|
+
declare type SupportTicketMessageType = 'ResolveIO' | 'Client';
|
|
47
|
+
export interface SupportTicketWatchersModel {
|
|
48
|
+
user: string;
|
|
49
|
+
id_user: string;
|
|
50
|
+
email: string;
|
|
51
|
+
}
|
|
52
|
+
export interface SupportTicketTaskModel {
|
|
53
|
+
description: string;
|
|
54
|
+
completed: boolean;
|
|
55
|
+
id_user: string;
|
|
56
|
+
user: string;
|
|
57
|
+
date_created: Date;
|
|
58
|
+
date_completed?: Date;
|
|
59
|
+
}
|
|
60
|
+
export interface SupportTicketNoteModel {
|
|
61
|
+
description: string;
|
|
62
|
+
id_user: string;
|
|
63
|
+
user: string;
|
|
64
|
+
date_created: Date;
|
|
65
|
+
}
|
|
66
|
+
export interface SupportTicketUserAssignedModel {
|
|
67
|
+
id_user: string;
|
|
68
|
+
user: string;
|
|
69
|
+
date_created: Date;
|
|
70
|
+
}
|
|
71
|
+
export {};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { CollectionDocument } from './collection-document.model';
|
|
2
|
+
export interface UserGroupModel extends CollectionDocument {
|
|
3
|
+
name: string;
|
|
4
|
+
permissions: UserGroupPermissionModel[];
|
|
5
|
+
notifications: UserGroupNotificationModel[];
|
|
6
|
+
}
|
|
7
|
+
export interface UserGroupNotificationModel {
|
|
8
|
+
name: string;
|
|
9
|
+
selected: boolean;
|
|
10
|
+
}
|
|
11
|
+
export interface UserGroupPermissionModel {
|
|
12
|
+
name: string;
|
|
13
|
+
selected: boolean;
|
|
14
|
+
views: UserGroupViewModel[];
|
|
15
|
+
}
|
|
16
|
+
export interface UserGroupViewModel {
|
|
17
|
+
link: string;
|
|
18
|
+
selected: boolean;
|
|
19
|
+
}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import { CollectionDocument } from './collection-document.model';
|
|
2
|
+
export interface UserModel extends CollectionDocument {
|
|
3
|
+
roles: UserRoleModel;
|
|
4
|
+
username: string;
|
|
5
|
+
email: string;
|
|
6
|
+
fullname: string;
|
|
7
|
+
active: boolean;
|
|
8
|
+
phonenumber: string;
|
|
9
|
+
readonly: boolean;
|
|
10
|
+
other: OtherObject;
|
|
11
|
+
attempts: number;
|
|
12
|
+
salt: string;
|
|
13
|
+
hash: string;
|
|
14
|
+
last?: Date;
|
|
15
|
+
settings?: UserSettingsModel;
|
|
16
|
+
services?: Object;
|
|
17
|
+
}
|
|
18
|
+
export interface UserSettingsModel {
|
|
19
|
+
table_color: string;
|
|
20
|
+
table_font_color: string;
|
|
21
|
+
secondary_table_color: string;
|
|
22
|
+
secondary_table_font_color: string;
|
|
23
|
+
tertiary_table_color: string;
|
|
24
|
+
tertiary_table_font_color: string;
|
|
25
|
+
font_size: number;
|
|
26
|
+
collapsable_menu: boolean;
|
|
27
|
+
entries_per_page: string;
|
|
28
|
+
warning_color: string;
|
|
29
|
+
warning_font_color: string;
|
|
30
|
+
warning_hover_color: string;
|
|
31
|
+
success_color: string;
|
|
32
|
+
success_font_color: string;
|
|
33
|
+
success_hover_color: string;
|
|
34
|
+
danger_color: string;
|
|
35
|
+
danger_font_color: string;
|
|
36
|
+
danger_hover_color: string;
|
|
37
|
+
info_color: string;
|
|
38
|
+
info_font_color: string;
|
|
39
|
+
info_hover_color: string;
|
|
40
|
+
primary_color: string;
|
|
41
|
+
primary_font_color: string;
|
|
42
|
+
primary_hover_color: string;
|
|
43
|
+
secondary_color: string;
|
|
44
|
+
secondary_font_color: string;
|
|
45
|
+
secondary_hover_color: string;
|
|
46
|
+
routing_preference: string;
|
|
47
|
+
opening_route: string;
|
|
48
|
+
}
|
|
49
|
+
export interface UserRoleModel {
|
|
50
|
+
super_admin: boolean;
|
|
51
|
+
approvals: UserRoleApprovalModel[];
|
|
52
|
+
groups: UserRoleGroupModel[];
|
|
53
|
+
notifications: string[];
|
|
54
|
+
miscs: string[];
|
|
55
|
+
}
|
|
56
|
+
export interface UserRoleApprovalModel {
|
|
57
|
+
type: string;
|
|
58
|
+
key_1: string;
|
|
59
|
+
key_2: string;
|
|
60
|
+
key_3: string;
|
|
61
|
+
name: string;
|
|
62
|
+
}
|
|
63
|
+
export interface UserRoleGroupModel {
|
|
64
|
+
name: string;
|
|
65
|
+
views: string[];
|
|
66
|
+
yard?: string;
|
|
67
|
+
}
|
|
68
|
+
export interface OtherObject {
|
|
69
|
+
[key: string]: any;
|
|
70
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
export declare class StorageDB {
|
|
2
|
+
storage: any;
|
|
3
|
+
database: any;
|
|
4
|
+
primaryKey: any;
|
|
5
|
+
sep: string;
|
|
6
|
+
constructor(opts: any);
|
|
7
|
+
get(name: any, opts: any): Collection;
|
|
8
|
+
getCollections(): any[];
|
|
9
|
+
collection(name: any, opts: any): Collection;
|
|
10
|
+
}
|
|
11
|
+
declare class Collection {
|
|
12
|
+
name: string;
|
|
13
|
+
storage: any;
|
|
14
|
+
path: string;
|
|
15
|
+
primaryKey: string;
|
|
16
|
+
cache: {};
|
|
17
|
+
cacheable: boolean;
|
|
18
|
+
constructor(db: any, name: any, opts: any);
|
|
19
|
+
_initCache(): void;
|
|
20
|
+
_filter(filter: any, opts: any): any;
|
|
21
|
+
insert(data: any, expiresDate?: any, opts?: any): any;
|
|
22
|
+
find(query: any, opts?: any, total?: any): any;
|
|
23
|
+
findOne(query: any, opts?: any): any;
|
|
24
|
+
remove(query: any, opts?: any): any;
|
|
25
|
+
update(query: any, values: any, opts?: any): any;
|
|
26
|
+
drop(): boolean;
|
|
27
|
+
}
|
|
28
|
+
export {};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { LocalStorageService } from 'ngx-localstorage';
|
|
2
|
+
import { UserModel } from './models/user.model';
|
|
3
|
+
import { BehaviorSubject } from 'rxjs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class OfflineManagerService {
|
|
6
|
+
private _storage;
|
|
7
|
+
offlineMode: BehaviorSubject<boolean>;
|
|
8
|
+
private _offlineDB;
|
|
9
|
+
constructor(_storage: LocalStorageService);
|
|
10
|
+
setOffline(value: boolean): void;
|
|
11
|
+
saveUser(user: UserModel): void;
|
|
12
|
+
getUser(): any;
|
|
13
|
+
removeUser(): void;
|
|
14
|
+
find(collectionName: string, query: Object, options?: {}, total?: boolean): any;
|
|
15
|
+
findOne(collectionName: string, query: Object): any;
|
|
16
|
+
insertDocument(collectionName: string, data: Object, expiresDate?: Date): string;
|
|
17
|
+
updateDocument(collectionName: string, data: Object): 0 | 1;
|
|
18
|
+
updateDocumentProps(collectionName: string, doc_id: string, updateParams: any[], doc__v: number): 0 | 1;
|
|
19
|
+
removeDocument(collectionName: string, id: string): void;
|
|
20
|
+
dropCollection(collectionName: any): void;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OfflineManagerService, never>;
|
|
22
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<OfflineManagerService>;
|
|
23
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { DomSanitizer, SafeHtml, SafeStyle, SafeScript, SafeUrl, SafeResourceUrl } from '@angular/platform-browser';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DomSanitizorPipe implements PipeTransform {
|
|
5
|
+
private _sanitizer;
|
|
6
|
+
constructor(_sanitizer: DomSanitizer);
|
|
7
|
+
transform(value: string, type?: string): SafeHtml | SafeStyle | SafeScript | SafeUrl | SafeResourceUrl;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DomSanitizorPipe, never>;
|
|
9
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<DomSanitizorPipe, "safe">;
|
|
10
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class FilterEqualPipe implements PipeTransform {
|
|
4
|
+
transform(items: any[], field: string, value: string): any[];
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FilterEqualPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<FilterEqualPipe, "filterEqual">;
|
|
7
|
+
}
|
|
8
|
+
export declare class FilterNotEqualPipe implements PipeTransform {
|
|
9
|
+
transform(items: any[], field: string, value: string): any[];
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FilterNotEqualPipe, never>;
|
|
11
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<FilterNotEqualPipe, "filterNotEqual">;
|
|
12
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class JsonParsePipe implements PipeTransform {
|
|
4
|
+
transform(value: string): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<JsonParsePipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<JsonParsePipe, "jsonParse">;
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class MinusCurrencyPipe implements PipeTransform {
|
|
4
|
+
transform(value: any, args?: any): any;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MinusCurrencyPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MinusCurrencyPipe, "minusCurrency">;
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class PhonePipe implements PipeTransform {
|
|
4
|
+
transform(tel: string): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PhonePipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<PhonePipe, "phone">;
|
|
7
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./filter.pipe";
|
|
3
|
+
import * as i2 from "./phone.pipe";
|
|
4
|
+
import * as i3 from "./reverse-list.pipe";
|
|
5
|
+
import * as i4 from "./minus-currency.pipe";
|
|
6
|
+
import * as i5 from "./domsanitizor.pipe";
|
|
7
|
+
import * as i6 from "./titlecase.pipe";
|
|
8
|
+
import * as i7 from "./json-parse.pipe";
|
|
9
|
+
export declare class PipeModule {
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PipeModule, never>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PipeModule, [typeof i1.FilterEqualPipe, typeof i1.FilterNotEqualPipe, typeof i2.PhonePipe, typeof i3.ReversePipe, typeof i4.MinusCurrencyPipe, typeof i5.DomSanitizorPipe, typeof i6.TitleCaseAndUnderscorePipe, typeof i7.JsonParsePipe], never, [typeof i1.FilterEqualPipe, typeof i1.FilterNotEqualPipe, typeof i2.PhonePipe, typeof i3.ReversePipe, typeof i4.MinusCurrencyPipe, typeof i5.DomSanitizorPipe, typeof i6.TitleCaseAndUnderscorePipe, typeof i7.JsonParsePipe]>;
|
|
12
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PipeModule>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class TitleCaseAndUnderscorePipe implements PipeTransform {
|
|
4
|
+
transform(value: string): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TitleCaseAndUnderscorePipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<TitleCaseAndUnderscorePipe, "titleCase">;
|
|
7
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { FormBuilder } from '@angular/forms';
|
|
2
|
+
import { AlertService } from './widgets/alert/alert.service';
|
|
3
|
+
import { AccountManagerService } from './account-manager.service';
|
|
4
|
+
import { Router } from '@angular/router';
|
|
5
|
+
import { SocketManagerService } from './socket-manager.service';
|
|
6
|
+
import { CoreService } from './core.service';
|
|
7
|
+
import { ValidationService } from './util/validation.service';
|
|
8
|
+
import { AwsService } from './util/aws.service';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class BaseComponent {
|
|
11
|
+
protected providerService: ProviderService;
|
|
12
|
+
constructor(providerService: ProviderService);
|
|
13
|
+
}
|
|
14
|
+
export declare class ProviderService {
|
|
15
|
+
_app: CoreService;
|
|
16
|
+
_router: Router;
|
|
17
|
+
_socket: SocketManagerService;
|
|
18
|
+
_account: AccountManagerService;
|
|
19
|
+
_alert: AlertService;
|
|
20
|
+
_vs: ValidationService;
|
|
21
|
+
_aws: AwsService;
|
|
22
|
+
_fb: FormBuilder;
|
|
23
|
+
constructor(_app: CoreService, _router: Router, _socket: SocketManagerService, _account: AccountManagerService, _alert: AlertService, _vs: ValidationService, _aws: AwsService, _fb: FormBuilder);
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProviderService, never>;
|
|
25
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ProviderService>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "@angular/forms";
|
|
3
|
+
import * as i2 from "../widgets/collapse-table/collapse-table.module";
|
|
4
|
+
import * as i3 from "@angular/router";
|
|
5
|
+
import * as i4 from "@ng-bootstrap/ng-bootstrap";
|
|
6
|
+
import * as i5 from "../widgets/form-button/form-button.module";
|
|
7
|
+
import * as i6 from "../widgets/responsive-button-group/responsive-button-group.module";
|
|
8
|
+
import * as i7 from "../pipes/pipe.module";
|
|
9
|
+
import * as i8 from "../widgets/user-role/user-role.module";
|
|
10
|
+
import * as i9 from "@ng-select/ng-select";
|
|
11
|
+
import * as i10 from "../widgets/sort-table/sort-table.module";
|
|
12
|
+
export declare class SharedModule {
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SharedModule, never>;
|
|
14
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SharedModule, never, [typeof i1.ReactiveFormsModule, typeof i1.FormsModule, typeof i2.CollapseTableModule, typeof i3.RouterModule, typeof i4.NgbModule, typeof i5.FormButtonModule, typeof i6.ResponsiveButtonGroupModule, typeof i7.PipeModule, typeof i8.UserRoleModule, typeof i9.NgSelectModule, typeof i10.SortTableModule], [typeof i1.ReactiveFormsModule, typeof i1.FormsModule, typeof i2.CollapseTableModule, typeof i3.RouterModule, typeof i4.NgbModule, typeof i5.FormButtonModule, typeof i6.ResponsiveButtonGroupModule, typeof i7.PipeModule, typeof i8.UserRoleModule, typeof i9.NgSelectModule, typeof i10.SortTableModule]>;
|
|
15
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SharedModule>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { SocketService } from './socket.service';
|
|
2
|
+
import { OfflineManagerService } from './offline-manager.service';
|
|
3
|
+
import { AlertService } from './widgets/alert/alert.service';
|
|
4
|
+
import { Router } from '@angular/router';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class SocketManagerService {
|
|
7
|
+
private _socket;
|
|
8
|
+
private _offline;
|
|
9
|
+
private _alert;
|
|
10
|
+
private _router;
|
|
11
|
+
private socketStatus;
|
|
12
|
+
private messageId;
|
|
13
|
+
private _cbArray;
|
|
14
|
+
private _subArray;
|
|
15
|
+
private _sendQueue;
|
|
16
|
+
private _offlineUpdates;
|
|
17
|
+
private _runningQueue;
|
|
18
|
+
private initConnection;
|
|
19
|
+
private _connectionDelayTimeout;
|
|
20
|
+
onerror: () => void;
|
|
21
|
+
constructor(_socket: SocketService, _offline: OfflineManagerService, _alert: AlertService, _router: Router);
|
|
22
|
+
initSocketManager(): void;
|
|
23
|
+
openSocket(environment: any, protocols: any): void;
|
|
24
|
+
closeSocket(): void;
|
|
25
|
+
call(method: string, ...parameters: any[]): Promise<unknown>;
|
|
26
|
+
subscribe(subscription: string, ...parameters: any[]): import("rxjs").Observable<any>;
|
|
27
|
+
subscribeBypassRoute(subscription: string, ...parameters: any[]): import("rxjs").Observable<any>;
|
|
28
|
+
unsubscribe(messageId: any, subscription: string, ...parameters: any[]): void;
|
|
29
|
+
private send;
|
|
30
|
+
getStatus(): import("rxjs").BehaviorSubject<number>;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SocketManagerService, never>;
|
|
32
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SocketManagerService>;
|
|
33
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { LocalStorageService } from 'ngx-localstorage';
|
|
2
|
+
import { BehaviorSubject } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SocketService {
|
|
5
|
+
private _storage;
|
|
6
|
+
debug: boolean;
|
|
7
|
+
reconnectInterval: number;
|
|
8
|
+
timeoutInterval: number;
|
|
9
|
+
private timeout;
|
|
10
|
+
readyState: number;
|
|
11
|
+
readyState$: BehaviorSubject<number>;
|
|
12
|
+
private protocols;
|
|
13
|
+
ws: WebSocket;
|
|
14
|
+
private url;
|
|
15
|
+
onopen: (ev: Event) => void;
|
|
16
|
+
onclose: (ev: CloseEvent) => void;
|
|
17
|
+
onconnecting: () => void;
|
|
18
|
+
onmessage: (ev: MessageEvent) => void;
|
|
19
|
+
onerror: (ev: ErrorEvent) => void;
|
|
20
|
+
constructor(_storage: LocalStorageService);
|
|
21
|
+
openSocket(environment: any, protocols: any): void;
|
|
22
|
+
private connect;
|
|
23
|
+
send(...data: any[]): boolean;
|
|
24
|
+
/**
|
|
25
|
+
* Returns boolean, whether websocket was FORCEFULLY closed.
|
|
26
|
+
*/
|
|
27
|
+
close(): boolean;
|
|
28
|
+
reconnect(): void;
|
|
29
|
+
getBufferAmount(): number;
|
|
30
|
+
private log;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SocketService, never>;
|
|
32
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SocketService>;
|
|
33
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { AuthService } from '../../auth/auth.service';
|
|
3
|
+
import { ProviderService, BaseComponent } from '../../resolveio-class';
|
|
4
|
+
import { FormGroup } from '@angular/forms';
|
|
5
|
+
import { HttpClient } from '@angular/common/http';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class ContactUsStandardComponent extends BaseComponent implements OnInit {
|
|
8
|
+
private auth;
|
|
9
|
+
private _services;
|
|
10
|
+
private _http;
|
|
11
|
+
form: FormGroup;
|
|
12
|
+
constructor(auth: AuthService, _services: ProviderService, _http: HttpClient);
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
onSubmitContactUs(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ContactUsStandardComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ContactUsStandardComponent, "ng-component", never, {}, {}, never, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { AuthService } from '../../auth/auth.service';
|
|
3
|
+
import { ProviderService, BaseComponent } from '../../resolveio-class';
|
|
4
|
+
import { FormGroup } from '@angular/forms';
|
|
5
|
+
import { HttpClient } from '@angular/common/http';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class FAQComponent extends BaseComponent implements OnInit {
|
|
8
|
+
private auth;
|
|
9
|
+
private _services;
|
|
10
|
+
private _http;
|
|
11
|
+
form: FormGroup;
|
|
12
|
+
constructor(auth: AuthService, _services: ProviderService, _http: HttpClient);
|
|
13
|
+
ngOnInit(): void;
|
|
14
|
+
onSubmitContactUs(): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FAQComponent, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FAQComponent, "ng-component", never, {}, {}, never, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { AuthService } from '../../auth/auth.service';
|
|
2
|
+
import { ProviderService, BaseComponent } from '../../resolveio-class';
|
|
3
|
+
import { HttpClient } from '@angular/common/http';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class FeaturesComponent extends BaseComponent {
|
|
6
|
+
private auth;
|
|
7
|
+
private _services;
|
|
8
|
+
private _http;
|
|
9
|
+
constructor(auth: AuthService, _services: ProviderService, _http: HttpClient);
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FeaturesComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FeaturesComponent, "ng-component", never, {}, {}, never, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { AuthService } from '../../auth/auth.service';
|
|
2
|
+
import { ProviderService, BaseComponent } from '../../resolveio-class';
|
|
3
|
+
import { HttpClient } from '@angular/common/http';
|
|
4
|
+
import { OwlOptions } from 'ngx-owl-carousel-o';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class HomeStandardComponent extends BaseComponent {
|
|
7
|
+
private auth;
|
|
8
|
+
private _services;
|
|
9
|
+
private _http;
|
|
10
|
+
constructor(auth: AuthService, _services: ProviderService, _http: HttpClient);
|
|
11
|
+
customOptions: OwlOptions;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HomeStandardComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HomeStandardComponent, "ng-component", never, {}, {}, never, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { AuthService } from '../../auth/auth.service';
|
|
2
|
+
import { ProviderService, BaseComponent } from '../../resolveio-class';
|
|
3
|
+
import { HttpClient } from '@angular/common/http';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class HowItWorkComponent extends BaseComponent {
|
|
6
|
+
private auth;
|
|
7
|
+
private _services;
|
|
8
|
+
private _http;
|
|
9
|
+
constructor(auth: AuthService, _services: ProviderService, _http: HttpClient);
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HowItWorkComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<HowItWorkComponent, "ng-component", never, {}, {}, never, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { AuthService } from '../../auth/auth.service';
|
|
2
|
+
import { ProviderService, BaseComponent } from '../../resolveio-class';
|
|
3
|
+
import { HttpClient } from '@angular/common/http';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class LoginSignupComponent extends BaseComponent {
|
|
6
|
+
private auth;
|
|
7
|
+
private _services;
|
|
8
|
+
private _http;
|
|
9
|
+
constructor(auth: AuthService, _services: ProviderService, _http: HttpClient);
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoginSignupComponent, never>;
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoginSignupComponent, "ng-component", never, {}, {}, never, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { AuthService } from '../../auth/auth.service';
|
|
2
|
+
import { ProviderService, BaseComponent } from '../../resolveio-class';
|
|
3
|
+
import { HttpClient } from '@angular/common/http';
|
|
4
|
+
import { OwlOptions } from 'ngx-owl-carousel-o';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class PricingComponent extends BaseComponent {
|
|
7
|
+
private auth;
|
|
8
|
+
private _services;
|
|
9
|
+
private _http;
|
|
10
|
+
constructor(auth: AuthService, _services: ProviderService, _http: HttpClient);
|
|
11
|
+
customOptions: OwlOptions;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PricingComponent, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PricingComponent, "ng-component", never, {}, {}, never, never>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./contactus/contactus.component";
|
|
3
|
+
import * as i2 from "./faq/faq.component";
|
|
4
|
+
import * as i3 from "./features/features.component";
|
|
5
|
+
import * as i4 from "./home/home.component";
|
|
6
|
+
import * as i5 from "./howitwork/howitwork.component";
|
|
7
|
+
import * as i6 from "./loginsignup/loginsignup.component";
|
|
8
|
+
import * as i7 from "./pricing/pricing.component";
|
|
9
|
+
import * as i8 from "@angular/common";
|
|
10
|
+
import * as i9 from "../shared/shared.module";
|
|
11
|
+
import * as i10 from "@ng-bootstrap/ng-bootstrap";
|
|
12
|
+
import * as i11 from "ngx-owl-carousel-o";
|
|
13
|
+
export declare class StandardPagesModule {
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StandardPagesModule, never>;
|
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<StandardPagesModule, [typeof i1.ContactUsStandardComponent, typeof i2.FAQComponent, typeof i3.FeaturesComponent, typeof i4.HomeStandardComponent, typeof i5.HowItWorkComponent, typeof i6.LoginSignupComponent, typeof i7.PricingComponent], [typeof i8.CommonModule, typeof i9.SharedModule, typeof i10.NgbModule, typeof i11.CarouselModule], [typeof i1.ContactUsStandardComponent, typeof i2.FAQComponent, typeof i3.FeaturesComponent, typeof i4.HomeStandardComponent, typeof i5.HowItWorkComponent, typeof i6.LoginSignupComponent, typeof i7.PricingComponent]>;
|
|
16
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<StandardPagesModule>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { OnInit, OnDestroy } from '@angular/core';
|
|
2
|
+
import { ActivatedRoute } from '@angular/router';
|
|
3
|
+
import { SupportTicketService } from '../support-ticket.service';
|
|
4
|
+
import { Subscription } from 'rxjs';
|
|
5
|
+
import { ProviderService, BaseComponent } from '../../resolveio-class';
|
|
6
|
+
import { SupportTicketModel } from '../../models/support-ticket.model';
|
|
7
|
+
import { DialogService } from '../../widgets/dialog/dialog.service';
|
|
8
|
+
import { FileModel } from '../../models/file.model';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class SupportTicketDetailComponent extends BaseComponent implements OnInit, OnDestroy {
|
|
11
|
+
private _route;
|
|
12
|
+
private _sts;
|
|
13
|
+
private _services;
|
|
14
|
+
private _ds;
|
|
15
|
+
fileUpload: any;
|
|
16
|
+
subscription$: Subscription[];
|
|
17
|
+
id: string;
|
|
18
|
+
data: SupportTicketModel;
|
|
19
|
+
files: FileModel[];
|
|
20
|
+
constructor(_route: ActivatedRoute, _sts: SupportTicketService, _services: ProviderService, _ds: DialogService);
|
|
21
|
+
ngOnInit(): void;
|
|
22
|
+
ngOnDestroy(): void;
|
|
23
|
+
onFileAdded(file: FileModel): void;
|
|
24
|
+
onFilesRemoved(file: FileModel): void;
|
|
25
|
+
edit(): void;
|
|
26
|
+
newMessage(): void;
|
|
27
|
+
editMessage(index: any): void;
|
|
28
|
+
deleteMessage(index: any): void;
|
|
29
|
+
isMyMessage(message: any): boolean;
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SupportTicketDetailComponent, never>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SupportTicketDetailComponent, "ng-component", never, {}, {}, never, never>;
|
|
32
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { OnInit, OnDestroy } from '@angular/core';
|
|
2
|
+
import { SupportTicketService } from '../support-ticket.service';
|
|
3
|
+
import { FormGroup } from '@angular/forms';
|
|
4
|
+
import { ActivatedRoute } from '@angular/router';
|
|
5
|
+
import { Subscription } from 'rxjs';
|
|
6
|
+
import { ProviderService, BaseComponent } from '../../resolveio-class';
|
|
7
|
+
import { SupportTicketModel } from '../../models/support-ticket.model';
|
|
8
|
+
import { DialogService } from '../../widgets/dialog/dialog.service';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class SupportTicketEditComponent extends BaseComponent implements OnInit, OnDestroy {
|
|
11
|
+
private _route;
|
|
12
|
+
private _sts;
|
|
13
|
+
private _services;
|
|
14
|
+
private _ds;
|
|
15
|
+
fileUpload: any;
|
|
16
|
+
selectType: any;
|
|
17
|
+
id: string;
|
|
18
|
+
data: SupportTicketModel;
|
|
19
|
+
subscription$: Subscription[];
|
|
20
|
+
form: FormGroup;
|
|
21
|
+
disableFormButton: boolean;
|
|
22
|
+
constructor(_route: ActivatedRoute, _sts: SupportTicketService, _services: ProviderService, _ds: DialogService);
|
|
23
|
+
ngOnInit(): void;
|
|
24
|
+
ngOnDestroy(): void;
|
|
25
|
+
loadForm(): void;
|
|
26
|
+
onTypeChange(): void;
|
|
27
|
+
submitForm(form: any): void;
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SupportTicketEditComponent, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SupportTicketEditComponent, "ng-component", never, {}, {}, never, never>;
|
|
30
|
+
}
|