@ksremp/ngx-ksremp-app-lib 1.0.0
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/README.md +46 -0
- package/esm2022/ksremp-ngx-ksremp-app-lib.mjs +5 -0
- package/esm2022/lib/annimations/app-animations.mjs +37 -0
- package/esm2022/lib/components/add-employer/add-employer.component.mjs +2655 -0
- package/esm2022/lib/components/add-participant/add-participant.component.mjs +399 -0
- package/esm2022/lib/components/add-payment/add-payment.component.mjs +201 -0
- package/esm2022/lib/components/address/address.component.mjs +565 -0
- package/esm2022/lib/components/bank-details/bank-details.component.mjs +416 -0
- package/esm2022/lib/components/captcha/captcha.component.mjs +181 -0
- package/esm2022/lib/components/card/card.component.mjs +55 -0
- package/esm2022/lib/components/contact-us/contact-us.component.mjs +984 -0
- package/esm2022/lib/components/content/content.component.mjs +61 -0
- package/esm2022/lib/components/correspondence-download/correspondence-download.component.mjs +89 -0
- package/esm2022/lib/components/dashboard-card/dashboard-card.component.mjs +223 -0
- package/esm2022/lib/components/dependent-grid/dependent-grid.component.mjs +301 -0
- package/esm2022/lib/components/disclosure/disclosure.component.mjs +60 -0
- package/esm2022/lib/components/dropdown/dropdown.component.mjs +1974 -0
- package/esm2022/lib/components/dropdown/dropdown.interface.mjs +2 -0
- package/esm2022/lib/components/email-update/email-update.component.mjs +376 -0
- package/esm2022/lib/components/employer-grid/employer-grid.component.mjs +1102 -0
- package/esm2022/lib/components/error/error.component.mjs +86 -0
- package/esm2022/lib/components/fav-menu/fav-menu.component.mjs +163 -0
- package/esm2022/lib/components/file-download/file-download.component.mjs +104 -0
- package/esm2022/lib/components/file-uploader/file-uploader.component.mjs +315 -0
- package/esm2022/lib/components/footer/footer.component.mjs +350 -0
- package/esm2022/lib/components/header/header.component.mjs +535 -0
- package/esm2022/lib/components/help/help.component.mjs +49 -0
- package/esm2022/lib/components/idle-detector/idle-detector.component.mjs +76 -0
- package/esm2022/lib/components/info/info.component.mjs +187 -0
- package/esm2022/lib/components/job-search-result-page/job-search-result-page.component.mjs +212 -0
- package/esm2022/lib/components/job-title/job-title.component.mjs +162 -0
- package/esm2022/lib/components/legal-disclaimar/legal-disclaimar.component.mjs +617 -0
- package/esm2022/lib/components/lexis-nexis/lexis-nexis.component.mjs +402 -0
- package/esm2022/lib/components/link/link.component.mjs +131 -0
- package/esm2022/lib/components/maintenance-detector/maintenance-detector.component.mjs +43 -0
- package/esm2022/lib/components/mask/mask.component.mjs +48 -0
- package/esm2022/lib/components/menu/menu.component.mjs +452 -0
- package/esm2022/lib/components/mfa/mfa.component.mjs +574 -0
- package/esm2022/lib/components/mfa-popup/mfa-popup.component.mjs +57 -0
- package/esm2022/lib/components/mfa2/mfa2.component.mjs +285 -0
- package/esm2022/lib/components/money-expect/money-expect.component.mjs +98 -0
- package/esm2022/lib/components/msg/msg.component.mjs +48 -0
- package/esm2022/lib/components/news/news.component.mjs +90 -0
- package/esm2022/lib/components/overlay-info/overlay-info.component.mjs +213 -0
- package/esm2022/lib/components/page/page.component.mjs +136 -0
- package/esm2022/lib/components/profile/profile.component.mjs +505 -0
- package/esm2022/lib/components/profile-redirect/profile-redirect.component.mjs +70 -0
- package/esm2022/lib/components/questionnaire/AppValidators.mjs +541 -0
- package/esm2022/lib/components/questionnaire/FbConstants.mjs +8 -0
- package/esm2022/lib/components/questionnaire/SelectItem.mjs +2 -0
- package/esm2022/lib/components/questionnaire/account-success/account-success.page.mjs +310 -0
- package/esm2022/lib/components/questionnaire/common-success/common-success.page.mjs +528 -0
- package/esm2022/lib/components/questionnaire/dynamic-form-panel.component.mjs +1115 -0
- package/esm2022/lib/components/questionnaire/dynamic-form-question.component.mjs +2521 -0
- package/esm2022/lib/components/questionnaire/dynamic-form.component.mjs +1788 -0
- package/esm2022/lib/components/questionnaire/form-builder/form-builder.page.mjs +256 -0
- package/esm2022/lib/components/questionnaire/input-focus.directive.mjs +44 -0
- package/esm2022/lib/components/questionnaire/multi-questionnaire/multi-questionnaire.component.mjs +255 -0
- package/esm2022/lib/components/questionnaire/question-base.mjs +3 -0
- package/esm2022/lib/components/questionnaire/question-control.service.mjs +408 -0
- package/esm2022/lib/components/questionnaire/question.service.mjs +33 -0
- package/esm2022/lib/components/questionnaire/render-questionnaire/render-questionnaire.page.mjs +282 -0
- package/esm2022/lib/components/read-more/read-more.component.mjs +72 -0
- package/esm2022/lib/components/requalify-lift-previous-issues/requalify-lift-previous-issues.component.mjs +690 -0
- package/esm2022/lib/components/search-employer/search-employer.component.mjs +132 -0
- package/esm2022/lib/components/security-question/security-question.component.mjs +199 -0
- package/esm2022/lib/components/select/select.component.mjs +159 -0
- package/esm2022/lib/components/sign-ssn/sign-ssn.component.mjs +141 -0
- package/esm2022/lib/components/ssn/ssn.component.mjs +44 -0
- package/esm2022/lib/components/ssn-reverify/ssn-reverify.component.mjs +171 -0
- package/esm2022/lib/components/test/test.component.mjs +19 -0
- package/esm2022/lib/components/user-login/user-login.component.mjs +619 -0
- package/esm2022/lib/components/weekly-cert-employer/weekly-cert-employer.component.mjs +772 -0
- package/esm2022/lib/components/weekly-cert-employer-grid/weekly-cert-employer-grid.component.mjs +356 -0
- package/esm2022/lib/directives/auto-focus/auto-focus.directive.mjs +31 -0
- package/esm2022/lib/directives/caps-lock.directive.mjs +38 -0
- package/esm2022/lib/directives/required-roles/required-roles.directive.mjs +30 -0
- package/esm2022/lib/enums/EmailStatusEnum.mjs +9 -0
- package/esm2022/lib/guards/auth.guard.mjs +138 -0
- package/esm2022/lib/guards/no-login/no-login.guard.mjs +21 -0
- package/esm2022/lib/interceptors/error-interceptor/http-error-interceptor.mjs +107 -0
- package/esm2022/lib/interceptors/header-interceptor/http-header.interceptor.mjs +99 -0
- package/esm2022/lib/models/AddressComponentModel.mjs +3 -0
- package/esm2022/lib/models/BankDetailsComponentModel.mjs +3 -0
- package/esm2022/lib/models/BankDetailsModel.mjs +3 -0
- package/esm2022/lib/models/CinRequalificationCriteriaModel.mjs +3 -0
- package/esm2022/lib/models/EmployerDetailSearchResult.mjs +6 -0
- package/esm2022/lib/models/ErrorModel.mjs +6 -0
- package/esm2022/lib/models/FileModel.mjs +2 -0
- package/esm2022/lib/models/LexisNexisAccountCreationModel.mjs +2 -0
- package/esm2022/lib/models/LexisNexisAuthSelectionRequestModel.mjs +2 -0
- package/esm2022/lib/models/LexisNexisAuthSelectionResponseModel.mjs +2 -0
- package/esm2022/lib/models/LexisNexisEnabledResponseModel.mjs +2 -0
- package/esm2022/lib/models/LexisNexisResponseModel.mjs +3 -0
- package/esm2022/lib/models/LibConstants.mjs +132 -0
- package/esm2022/lib/models/NewsAndAnnouncementModel.mjs +3 -0
- package/esm2022/lib/models/NotificationModel.mjs +6 -0
- package/esm2022/lib/models/OtpAuthModel.mjs +3 -0
- package/esm2022/lib/models/PartialEmploymentModel.mjs +3 -0
- package/esm2022/lib/models/PaymentComponentModel.mjs +2 -0
- package/esm2022/lib/models/RequalifyLiftPageModel.mjs +11 -0
- package/esm2022/lib/models/SecurityQuestionModel.mjs +3 -0
- package/esm2022/lib/models/SsaVerificationModel.mjs +3 -0
- package/esm2022/lib/models/TrendModel.mjs +3 -0
- package/esm2022/lib/models/UserDetailsModel.mjs +3 -0
- package/esm2022/lib/models/UserModel.mjs +6 -0
- package/esm2022/lib/models/case/CaseAttachmentModel.mjs +3 -0
- package/esm2022/lib/models/claimant/ClaimantModel.mjs +3 -0
- package/esm2022/lib/models/claimant/JobResultsData.mjs +3 -0
- package/esm2022/lib/models/claimant/MatchingJobs.mjs +3 -0
- package/esm2022/lib/models/claimant/ResetPasswordModel.mjs +3 -0
- package/esm2022/lib/models/cmp/CaseCoreModel.mjs +3 -0
- package/esm2022/lib/models/cmp/ComplaintCategoryModel.mjs +3 -0
- package/esm2022/lib/models/cmp/ComplaintCategoryOutputModel.mjs +5 -0
- package/esm2022/lib/models/cmp/ContactUsModel.mjs +3 -0
- package/esm2022/lib/models/cmp/EmailTemplateModel.mjs +3 -0
- package/esm2022/lib/models/cmp/contactUsInqueryModel.mjs +7 -0
- package/esm2022/lib/models/cmp/messageRourceModel.mjs +3 -0
- package/esm2022/lib/models/dashboard-model.mjs +3 -0
- package/esm2022/lib/models/dependent.model.mjs +8 -0
- package/esm2022/lib/models/questionnaire/AutocoderModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/ClaimAppEmpRequestModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/ClaimAppEmpResponseModel.mjs +8 -0
- package/esm2022/lib/models/questionnaire/ClaimAppEmployerDetailsModel.mjs +6 -0
- package/esm2022/lib/models/questionnaire/ClaimOnlyEmployerDataModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/ComboModel.mjs +1010 -0
- package/esm2022/lib/models/questionnaire/ElementsModel.mjs +8 -0
- package/esm2022/lib/models/questionnaire/EmployerDetailSearchResult.mjs +3 -0
- package/esm2022/lib/models/questionnaire/EmployerWagesModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/FBConfigModel.mjs +6 -0
- package/esm2022/lib/models/questionnaire/KeyValueModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/LegalDiscaimarModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/LoaderModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/PollingStatusModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/QtrYearEmployerWageModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/QuestionnaireQueryModel.mjs +8 -0
- package/esm2022/lib/models/questionnaire/QuestionnaireReturnModel.mjs +11 -0
- package/esm2022/lib/models/questionnaire/QuestionnaireSaveModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/RequalifyLiftIssuesModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/ServiceActionResponseModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/StatusModel.mjs +6 -0
- package/esm2022/lib/models/questionnaire/SuccessPageElement.mjs +3 -0
- package/esm2022/lib/models/questionnaire/UI512AResponseModel.mjs +3 -0
- package/esm2022/lib/models/questionnaire/ValidationModel.mjs +3 -0
- package/esm2022/lib/ngx-reusa-app-lib.component.mjs +23 -0
- package/esm2022/lib/ngx-reusa-app-lib.module.mjs +410 -0
- package/esm2022/lib/ngx-reusa-app-lib.service.mjs +14 -0
- package/esm2022/lib/pages/BasePage.mjs +98 -0
- package/esm2022/lib/pages/common/accessibility-policy/accessibility-policy.page.mjs +77 -0
- package/esm2022/lib/pages/common/change-password/change-password.page.mjs +471 -0
- package/esm2022/lib/pages/common/landing/landing.component.mjs +209 -0
- package/esm2022/lib/pages/common/landing2/landing2.component.mjs +244 -0
- package/esm2022/lib/pages/common/login/login.component.mjs +533 -0
- package/esm2022/lib/pages/common/not-found/not-found.page.mjs +24 -0
- package/esm2022/lib/pages/common/privacy-disclaimer/privacy-disclaimer.page.mjs +306 -0
- package/esm2022/lib/pages/common/security-policy/security-policy.page.mjs +61 -0
- package/esm2022/lib/pages/common/unauthorized/unauthorized.page.mjs +24 -0
- package/esm2022/lib/pages/popovers/language/language.page.mjs +62 -0
- package/esm2022/lib/pages/popovers/my-notifications/my-notifications.page.mjs +204 -0
- package/esm2022/lib/pages/popovers/my-profile/my-profile.page.mjs +129 -0
- package/esm2022/lib/pages/popovers/user-search/user-search.component.mjs +251 -0
- package/esm2022/lib/pipes/filter.pipe.mjs +30 -0
- package/esm2022/lib/pipes/mask/mask.email.pipe.mjs +23 -0
- package/esm2022/lib/pipes/proper-case/proper-case.pipe.mjs +27 -0
- package/esm2022/lib/pipes/translate/dynamic-translate.pipe.mjs +44 -0
- package/esm2022/lib/pipes/trust-html/trust-html.pipe.mjs +20 -0
- package/esm2022/lib/services/base-service.mjs +50 -0
- package/esm2022/lib/services/captcha/captcha.service.mjs +46 -0
- package/esm2022/lib/services/case-service/case.service.mjs +47 -0
- package/esm2022/lib/services/chatbot/chatbot.service.mjs +258 -0
- package/esm2022/lib/services/chatbot/script.const.mjs +42 -0
- package/esm2022/lib/services/claimant/claimant.service.mjs +31 -0
- package/esm2022/lib/services/claimant-context/claimant-context.service.mjs +48 -0
- package/esm2022/lib/services/claimant-service/claimant-usps-redirect.service.mjs +36 -0
- package/esm2022/lib/services/claimant-service/claimant.service.mjs +62 -0
- package/esm2022/lib/services/claims/claims.service.mjs +102 -0
- package/esm2022/lib/services/cmp-service/cmp.service.mjs +84 -0
- package/esm2022/lib/services/dms-service/dms.service.mjs +60 -0
- package/esm2022/lib/services/fpjs/fingerprint.service.mjs +70 -0
- package/esm2022/lib/services/google-analytics/google-analytics.service.mjs +29 -0
- package/esm2022/lib/services/help/help.service.mjs +63 -0
- package/esm2022/lib/services/idle/idle.service.mjs +159 -0
- package/esm2022/lib/services/lexis-nexis/lexis.nexis.service.mjs +60 -0
- package/esm2022/lib/services/logger/logger.service.mjs +67 -0
- package/esm2022/lib/services/login/login.service.mjs +343 -0
- package/esm2022/lib/services/maintenance/maintenance.service.mjs +21 -0
- package/esm2022/lib/services/notification/notification.service.mjs +113 -0
- package/esm2022/lib/services/ovp/ovp.service.mjs +43 -0
- package/esm2022/lib/services/questionnaire/questionnaire.service.mjs +69 -0
- package/esm2022/lib/services/questionnaire/validation.service.mjs +59 -0
- package/esm2022/lib/services/security-service/security.service.mjs +42 -0
- package/esm2022/lib/services/tour/tour.service.mjs +60 -0
- package/esm2022/lib/services/util/util.service.mjs +450 -0
- package/esm2022/lib/services/weekly-cert/weekly-cert-v2.service.mjs +42 -0
- package/esm2022/lib/validations/AppRegex.mjs +51 -0
- package/esm2022/lib/validations/AppValidators.mjs +253 -0
- package/esm2022/public-api.mjs +138 -0
- package/fesm2022/ksremp-ngx-ksremp-app-lib.mjs +33786 -0
- package/fesm2022/ksremp-ngx-ksremp-app-lib.mjs.map +1 -0
- package/index.d.ts +6 -0
- package/ksremp-ngx-ksremp-app-lib.d.ts.map +1 -0
- package/lib/annimations/app-animations.d.ts +4 -0
- package/lib/annimations/app-animations.d.ts.map +1 -0
- package/lib/components/add-employer/add-employer.component.d.ts +234 -0
- package/lib/components/add-employer/add-employer.component.d.ts.map +1 -0
- package/lib/components/add-participant/add-participant.component.d.ts +49 -0
- package/lib/components/add-participant/add-participant.component.d.ts.map +1 -0
- package/lib/components/add-payment/add-payment.component.d.ts +33 -0
- package/lib/components/add-payment/add-payment.component.d.ts.map +1 -0
- package/lib/components/address/address.component.d.ts +81 -0
- package/lib/components/address/address.component.d.ts.map +1 -0
- package/lib/components/bank-details/bank-details.component.d.ts +62 -0
- package/lib/components/bank-details/bank-details.component.d.ts.map +1 -0
- package/lib/components/captcha/captcha.component.d.ts +45 -0
- package/lib/components/captcha/captcha.component.d.ts.map +1 -0
- package/lib/components/card/card.component.d.ts +12 -0
- package/lib/components/card/card.component.d.ts.map +1 -0
- package/lib/components/contact-us/contact-us.component.d.ts +109 -0
- package/lib/components/contact-us/contact-us.component.d.ts.map +1 -0
- package/lib/components/content/content.component.d.ts +14 -0
- package/lib/components/content/content.component.d.ts.map +1 -0
- package/lib/components/correspondence-download/correspondence-download.component.d.ts +22 -0
- package/lib/components/correspondence-download/correspondence-download.component.d.ts.map +1 -0
- package/lib/components/dashboard-card/dashboard-card.component.d.ts +26 -0
- package/lib/components/dashboard-card/dashboard-card.component.d.ts.map +1 -0
- package/lib/components/dependent-grid/dependent-grid.component.d.ts +36 -0
- package/lib/components/dependent-grid/dependent-grid.component.d.ts.map +1 -0
- package/lib/components/disclosure/disclosure.component.d.ts +13 -0
- package/lib/components/disclosure/disclosure.component.d.ts.map +1 -0
- package/lib/components/dropdown/dropdown.component.d.ts +582 -0
- package/lib/components/dropdown/dropdown.component.d.ts.map +1 -0
- package/lib/components/dropdown/dropdown.interface.d.ts +155 -0
- package/lib/components/dropdown/dropdown.interface.d.ts.map +1 -0
- package/lib/components/email-update/email-update.component.d.ts +43 -0
- package/lib/components/email-update/email-update.component.d.ts.map +1 -0
- package/lib/components/employer-grid/employer-grid.component.d.ts +90 -0
- package/lib/components/employer-grid/employer-grid.component.d.ts.map +1 -0
- package/lib/components/error/error.component.d.ts +18 -0
- package/lib/components/error/error.component.d.ts.map +1 -0
- package/lib/components/fav-menu/fav-menu.component.d.ts +22 -0
- package/lib/components/fav-menu/fav-menu.component.d.ts.map +1 -0
- package/lib/components/file-download/file-download.component.d.ts +23 -0
- package/lib/components/file-download/file-download.component.d.ts.map +1 -0
- package/lib/components/file-uploader/file-uploader.component.d.ts +48 -0
- package/lib/components/file-uploader/file-uploader.component.d.ts.map +1 -0
- package/lib/components/footer/footer.component.d.ts +37 -0
- package/lib/components/footer/footer.component.d.ts.map +1 -0
- package/lib/components/header/header.component.d.ts +64 -0
- package/lib/components/header/header.component.d.ts.map +1 -0
- package/lib/components/help/help.component.d.ts +11 -0
- package/lib/components/help/help.component.d.ts.map +1 -0
- package/lib/components/idle-detector/idle-detector.component.d.ts +16 -0
- package/lib/components/idle-detector/idle-detector.component.d.ts.map +1 -0
- package/lib/components/info/info.component.d.ts +23 -0
- package/lib/components/info/info.component.d.ts.map +1 -0
- package/lib/components/job-search-result-page/job-search-result-page.component.d.ts +24 -0
- package/lib/components/job-search-result-page/job-search-result-page.component.d.ts.map +1 -0
- package/lib/components/job-title/job-title.component.d.ts +38 -0
- package/lib/components/job-title/job-title.component.d.ts.map +1 -0
- package/lib/components/legal-disclaimar/legal-disclaimar.component.d.ts +39 -0
- package/lib/components/legal-disclaimar/legal-disclaimar.component.d.ts.map +1 -0
- package/lib/components/lexis-nexis/lexis-nexis.component.d.ts +59 -0
- package/lib/components/lexis-nexis/lexis-nexis.component.d.ts.map +1 -0
- package/lib/components/link/link.component.d.ts +35 -0
- package/lib/components/link/link.component.d.ts.map +1 -0
- package/lib/components/maintenance-detector/maintenance-detector.component.d.ts +16 -0
- package/lib/components/maintenance-detector/maintenance-detector.component.d.ts.map +1 -0
- package/lib/components/mask/mask.component.d.ts +12 -0
- package/lib/components/mask/mask.component.d.ts.map +1 -0
- package/lib/components/menu/menu.component.d.ts +54 -0
- package/lib/components/menu/menu.component.d.ts.map +1 -0
- package/lib/components/mfa/mfa.component.d.ts +72 -0
- package/lib/components/mfa/mfa.component.d.ts.map +1 -0
- package/lib/components/mfa-popup/mfa-popup.component.d.ts +19 -0
- package/lib/components/mfa-popup/mfa-popup.component.d.ts.map +1 -0
- package/lib/components/mfa2/mfa2.component.d.ts +48 -0
- package/lib/components/mfa2/mfa2.component.d.ts.map +1 -0
- package/lib/components/money-expect/money-expect.component.d.ts +19 -0
- package/lib/components/money-expect/money-expect.component.d.ts.map +1 -0
- package/lib/components/msg/msg.component.d.ts +11 -0
- package/lib/components/msg/msg.component.d.ts.map +1 -0
- package/lib/components/news/news.component.d.ts +15 -0
- package/lib/components/news/news.component.d.ts.map +1 -0
- package/lib/components/overlay-info/overlay-info.component.d.ts +35 -0
- package/lib/components/overlay-info/overlay-info.component.d.ts.map +1 -0
- package/lib/components/page/page.component.d.ts +24 -0
- package/lib/components/page/page.component.d.ts.map +1 -0
- package/lib/components/profile/profile.component.d.ts +74 -0
- package/lib/components/profile/profile.component.d.ts.map +1 -0
- package/lib/components/profile-redirect/profile-redirect.component.d.ts +14 -0
- package/lib/components/profile-redirect/profile-redirect.component.d.ts.map +1 -0
- package/lib/components/questionnaire/AppValidators.d.ts +16 -0
- package/lib/components/questionnaire/AppValidators.d.ts.map +1 -0
- package/lib/components/questionnaire/FbConstants.d.ts +8 -0
- package/lib/components/questionnaire/FbConstants.d.ts.map +1 -0
- package/lib/components/questionnaire/SelectItem.d.ts +5 -0
- package/lib/components/questionnaire/SelectItem.d.ts.map +1 -0
- package/lib/components/questionnaire/account-success/account-success.page.d.ts +61 -0
- package/lib/components/questionnaire/account-success/account-success.page.d.ts.map +1 -0
- package/lib/components/questionnaire/common-success/common-success.page.d.ts +77 -0
- package/lib/components/questionnaire/common-success/common-success.page.d.ts.map +1 -0
- package/lib/components/questionnaire/dynamic-form-panel.component.d.ts +47 -0
- package/lib/components/questionnaire/dynamic-form-panel.component.d.ts.map +1 -0
- package/lib/components/questionnaire/dynamic-form-question.component.d.ts +128 -0
- package/lib/components/questionnaire/dynamic-form-question.component.d.ts.map +1 -0
- package/lib/components/questionnaire/dynamic-form.component.d.ts +161 -0
- package/lib/components/questionnaire/dynamic-form.component.d.ts.map +1 -0
- package/lib/components/questionnaire/form-builder/form-builder.page.d.ts +74 -0
- package/lib/components/questionnaire/form-builder/form-builder.page.d.ts.map +1 -0
- package/lib/components/questionnaire/input-focus.directive.d.ts +12 -0
- package/lib/components/questionnaire/input-focus.directive.d.ts.map +1 -0
- package/lib/components/questionnaire/multi-questionnaire/multi-questionnaire.component.d.ts +39 -0
- package/lib/components/questionnaire/multi-questionnaire/multi-questionnaire.component.d.ts.map +1 -0
- package/lib/components/questionnaire/question-base.d.ts +17 -0
- package/lib/components/questionnaire/question-base.d.ts.map +1 -0
- package/lib/components/questionnaire/question-control.service.d.ts +21 -0
- package/lib/components/questionnaire/question-control.service.d.ts.map +1 -0
- package/lib/components/questionnaire/question.service.d.ts +19 -0
- package/lib/components/questionnaire/question.service.d.ts.map +1 -0
- package/lib/components/questionnaire/render-questionnaire/render-questionnaire.page.d.ts +83 -0
- package/lib/components/questionnaire/render-questionnaire/render-questionnaire.page.d.ts.map +1 -0
- package/lib/components/read-more/read-more.component.d.ts +15 -0
- package/lib/components/read-more/read-more.component.d.ts.map +1 -0
- package/lib/components/requalify-lift-previous-issues/requalify-lift-previous-issues.component.d.ts +68 -0
- package/lib/components/requalify-lift-previous-issues/requalify-lift-previous-issues.component.d.ts.map +1 -0
- package/lib/components/search-employer/search-employer.component.d.ts +40 -0
- package/lib/components/search-employer/search-employer.component.d.ts.map +1 -0
- package/lib/components/security-question/security-question.component.d.ts +37 -0
- package/lib/components/security-question/security-question.component.d.ts.map +1 -0
- package/lib/components/select/select.component.d.ts +56 -0
- package/lib/components/select/select.component.d.ts.map +1 -0
- package/lib/components/sign-ssn/sign-ssn.component.d.ts +34 -0
- package/lib/components/sign-ssn/sign-ssn.component.d.ts.map +1 -0
- package/lib/components/ssn/ssn.component.d.ts +12 -0
- package/lib/components/ssn/ssn.component.d.ts.map +1 -0
- package/lib/components/ssn-reverify/ssn-reverify.component.d.ts +27 -0
- package/lib/components/ssn-reverify/ssn-reverify.component.d.ts.map +1 -0
- package/lib/components/test/test.component.d.ts +9 -0
- package/lib/components/test/test.component.d.ts.map +1 -0
- package/lib/components/user-login/user-login.component.d.ts +82 -0
- package/lib/components/user-login/user-login.component.d.ts.map +1 -0
- package/lib/components/weekly-cert-employer/weekly-cert-employer.component.d.ts +67 -0
- package/lib/components/weekly-cert-employer/weekly-cert-employer.component.d.ts.map +1 -0
- package/lib/components/weekly-cert-employer-grid/weekly-cert-employer-grid.component.d.ts +47 -0
- package/lib/components/weekly-cert-employer-grid/weekly-cert-employer-grid.component.d.ts.map +1 -0
- package/lib/directives/auto-focus/auto-focus.directive.d.ts +13 -0
- package/lib/directives/auto-focus/auto-focus.directive.d.ts.map +1 -0
- package/lib/directives/caps-lock.directive.d.ts +12 -0
- package/lib/directives/caps-lock.directive.d.ts.map +1 -0
- package/lib/directives/required-roles/required-roles.directive.d.ts +15 -0
- package/lib/directives/required-roles/required-roles.directive.d.ts.map +1 -0
- package/lib/enums/EmailStatusEnum.d.ts +8 -0
- package/lib/enums/EmailStatusEnum.d.ts.map +1 -0
- package/lib/guards/auth.guard.d.ts +29 -0
- package/lib/guards/auth.guard.d.ts.map +1 -0
- package/lib/guards/no-login/no-login.guard.d.ts +12 -0
- package/lib/guards/no-login/no-login.guard.d.ts.map +1 -0
- package/lib/interceptors/error-interceptor/http-error-interceptor.d.ts +23 -0
- package/lib/interceptors/error-interceptor/http-error-interceptor.d.ts.map +1 -0
- package/lib/interceptors/header-interceptor/http-header.interceptor.d.ts +22 -0
- package/lib/interceptors/header-interceptor/http-header.interceptor.d.ts.map +1 -0
- package/lib/models/AddressComponentModel.d.ts +14 -0
- package/lib/models/AddressComponentModel.d.ts.map +1 -0
- package/lib/models/BankDetailsComponentModel.d.ts +12 -0
- package/lib/models/BankDetailsComponentModel.d.ts.map +1 -0
- package/lib/models/BankDetailsModel.d.ts +5 -0
- package/lib/models/BankDetailsModel.d.ts.map +1 -0
- package/lib/models/CinRequalificationCriteriaModel.d.ts +11 -0
- package/lib/models/CinRequalificationCriteriaModel.d.ts.map +1 -0
- package/lib/models/EmployerDetailSearchResult.d.ts +51 -0
- package/lib/models/EmployerDetailSearchResult.d.ts.map +1 -0
- package/lib/models/ErrorModel.d.ts +7 -0
- package/lib/models/ErrorModel.d.ts.map +1 -0
- package/lib/models/FileModel.d.ts +5 -0
- package/lib/models/FileModel.d.ts.map +1 -0
- package/lib/models/LexisNexisAccountCreationModel.d.ts +15 -0
- package/lib/models/LexisNexisAccountCreationModel.d.ts.map +1 -0
- package/lib/models/LexisNexisAuthSelectionRequestModel.d.ts +16 -0
- package/lib/models/LexisNexisAuthSelectionRequestModel.d.ts.map +1 -0
- package/lib/models/LexisNexisAuthSelectionResponseModel.d.ts +39 -0
- package/lib/models/LexisNexisAuthSelectionResponseModel.d.ts.map +1 -0
- package/lib/models/LexisNexisEnabledResponseModel.d.ts +5 -0
- package/lib/models/LexisNexisEnabledResponseModel.d.ts.map +1 -0
- package/lib/models/LexisNexisResponseModel.d.ts +7 -0
- package/lib/models/LexisNexisResponseModel.d.ts.map +1 -0
- package/lib/models/LibConstants.d.ts +125 -0
- package/lib/models/LibConstants.d.ts.map +1 -0
- package/lib/models/NewsAndAnnouncementModel.d.ts +6 -0
- package/lib/models/NewsAndAnnouncementModel.d.ts.map +1 -0
- package/lib/models/NotificationModel.d.ts +11 -0
- package/lib/models/NotificationModel.d.ts.map +1 -0
- package/lib/models/OtpAuthModel.d.ts +8 -0
- package/lib/models/OtpAuthModel.d.ts.map +1 -0
- package/lib/models/PartialEmploymentModel.d.ts +6 -0
- package/lib/models/PartialEmploymentModel.d.ts.map +1 -0
- package/lib/models/PaymentComponentModel.d.ts +8 -0
- package/lib/models/PaymentComponentModel.d.ts.map +1 -0
- package/lib/models/RequalifyLiftPageModel.d.ts +12 -0
- package/lib/models/RequalifyLiftPageModel.d.ts.map +1 -0
- package/lib/models/SecurityQuestionModel.d.ts +7 -0
- package/lib/models/SecurityQuestionModel.d.ts.map +1 -0
- package/lib/models/SsaVerificationModel.d.ts +9 -0
- package/lib/models/SsaVerificationModel.d.ts.map +1 -0
- package/lib/models/TrendModel.d.ts +14 -0
- package/lib/models/TrendModel.d.ts.map +1 -0
- package/lib/models/UserDetailsModel.d.ts +10 -0
- package/lib/models/UserDetailsModel.d.ts.map +1 -0
- package/lib/models/UserModel.d.ts +48 -0
- package/lib/models/UserModel.d.ts.map +1 -0
- package/lib/models/case/CaseAttachmentModel.d.ts +6 -0
- package/lib/models/case/CaseAttachmentModel.d.ts.map +1 -0
- package/lib/models/claimant/ClaimantModel.d.ts +23 -0
- package/lib/models/claimant/ClaimantModel.d.ts.map +1 -0
- package/lib/models/claimant/JobResultsData.d.ts +8 -0
- package/lib/models/claimant/JobResultsData.d.ts.map +1 -0
- package/lib/models/claimant/MatchingJobs.d.ts +13 -0
- package/lib/models/claimant/MatchingJobs.d.ts.map +1 -0
- package/lib/models/claimant/ResetPasswordModel.d.ts +9 -0
- package/lib/models/claimant/ResetPasswordModel.d.ts.map +1 -0
- package/lib/models/cmp/CaseCoreModel.d.ts +21 -0
- package/lib/models/cmp/CaseCoreModel.d.ts.map +1 -0
- package/lib/models/cmp/ComplaintCategoryModel.d.ts +9 -0
- package/lib/models/cmp/ComplaintCategoryModel.d.ts.map +1 -0
- package/lib/models/cmp/ComplaintCategoryOutputModel.d.ts +6 -0
- package/lib/models/cmp/ComplaintCategoryOutputModel.d.ts.map +1 -0
- package/lib/models/cmp/ContactUsModel.d.ts +23 -0
- package/lib/models/cmp/ContactUsModel.d.ts.map +1 -0
- package/lib/models/cmp/EmailTemplateModel.d.ts +7 -0
- package/lib/models/cmp/EmailTemplateModel.d.ts.map +1 -0
- package/lib/models/cmp/contactUsInqueryModel.d.ts +47 -0
- package/lib/models/cmp/contactUsInqueryModel.d.ts.map +1 -0
- package/lib/models/cmp/messageRourceModel.d.ts +6 -0
- package/lib/models/cmp/messageRourceModel.d.ts.map +1 -0
- package/lib/models/dashboard-model.d.ts +44 -0
- package/lib/models/dashboard-model.d.ts.map +1 -0
- package/lib/models/dependent.model.d.ts +20 -0
- package/lib/models/dependent.model.d.ts.map +1 -0
- package/lib/models/questionnaire/AutocoderModel.d.ts +9 -0
- package/lib/models/questionnaire/AutocoderModel.d.ts.map +1 -0
- package/lib/models/questionnaire/ClaimAppEmpRequestModel.d.ts +9 -0
- package/lib/models/questionnaire/ClaimAppEmpRequestModel.d.ts.map +1 -0
- package/lib/models/questionnaire/ClaimAppEmpResponseModel.d.ts +18 -0
- package/lib/models/questionnaire/ClaimAppEmpResponseModel.d.ts.map +1 -0
- package/lib/models/questionnaire/ClaimAppEmployerDetailsModel.d.ts +156 -0
- package/lib/models/questionnaire/ClaimAppEmployerDetailsModel.d.ts.map +1 -0
- package/lib/models/questionnaire/ClaimOnlyEmployerDataModel.d.ts +18 -0
- package/lib/models/questionnaire/ClaimOnlyEmployerDataModel.d.ts.map +1 -0
- package/lib/models/questionnaire/ComboModel.d.ts +178 -0
- package/lib/models/questionnaire/ComboModel.d.ts.map +1 -0
- package/lib/models/questionnaire/ElementsModel.d.ts +71 -0
- package/lib/models/questionnaire/ElementsModel.d.ts.map +1 -0
- package/lib/models/questionnaire/EmployerDetailSearchResult.d.ts +18 -0
- package/lib/models/questionnaire/EmployerDetailSearchResult.d.ts.map +1 -0
- package/lib/models/questionnaire/EmployerWagesModel.d.ts +5 -0
- package/lib/models/questionnaire/EmployerWagesModel.d.ts.map +1 -0
- package/lib/models/questionnaire/FBConfigModel.d.ts +12 -0
- package/lib/models/questionnaire/FBConfigModel.d.ts.map +1 -0
- package/lib/models/questionnaire/KeyValueModel.d.ts +11 -0
- package/lib/models/questionnaire/KeyValueModel.d.ts.map +1 -0
- package/lib/models/questionnaire/LegalDiscaimarModel.d.ts +11 -0
- package/lib/models/questionnaire/LegalDiscaimarModel.d.ts.map +1 -0
- package/lib/models/questionnaire/LoaderModel.d.ts +5 -0
- package/lib/models/questionnaire/LoaderModel.d.ts.map +1 -0
- package/lib/models/questionnaire/PollingStatusModel.d.ts +7 -0
- package/lib/models/questionnaire/PollingStatusModel.d.ts.map +1 -0
- package/lib/models/questionnaire/QtrYearEmployerWageModel.d.ts +9 -0
- package/lib/models/questionnaire/QtrYearEmployerWageModel.d.ts.map +1 -0
- package/lib/models/questionnaire/QuestionnaireQueryModel.d.ts +24 -0
- package/lib/models/questionnaire/QuestionnaireQueryModel.d.ts.map +1 -0
- package/lib/models/questionnaire/QuestionnaireReturnModel.d.ts +21 -0
- package/lib/models/questionnaire/QuestionnaireReturnModel.d.ts.map +1 -0
- package/lib/models/questionnaire/QuestionnaireSaveModel.d.ts +26 -0
- package/lib/models/questionnaire/QuestionnaireSaveModel.d.ts.map +1 -0
- package/lib/models/questionnaire/RequalifyLiftIssuesModel.d.ts +14 -0
- package/lib/models/questionnaire/RequalifyLiftIssuesModel.d.ts.map +1 -0
- package/lib/models/questionnaire/ServiceActionResponseModel.d.ts +7 -0
- package/lib/models/questionnaire/ServiceActionResponseModel.d.ts.map +1 -0
- package/lib/models/questionnaire/StatusModel.d.ts +16 -0
- package/lib/models/questionnaire/StatusModel.d.ts.map +1 -0
- package/lib/models/questionnaire/SuccessPageElement.d.ts +9 -0
- package/lib/models/questionnaire/SuccessPageElement.d.ts.map +1 -0
- package/lib/models/questionnaire/UI512AResponseModel.d.ts +13 -0
- package/lib/models/questionnaire/UI512AResponseModel.d.ts.map +1 -0
- package/lib/models/questionnaire/ValidationModel.d.ts +18 -0
- package/lib/models/questionnaire/ValidationModel.d.ts.map +1 -0
- package/lib/ngx-reusa-app-lib.component.d.ts +9 -0
- package/lib/ngx-reusa-app-lib.component.d.ts.map +1 -0
- package/lib/ngx-reusa-app-lib.module.d.ts +155 -0
- package/lib/ngx-reusa-app-lib.module.d.ts.map +1 -0
- package/lib/ngx-reusa-app-lib.service.d.ts +7 -0
- package/lib/ngx-reusa-app-lib.service.d.ts.map +1 -0
- package/lib/pages/BasePage.d.ts +32 -0
- package/lib/pages/BasePage.d.ts.map +1 -0
- package/lib/pages/common/accessibility-policy/accessibility-policy.page.d.ts +12 -0
- package/lib/pages/common/accessibility-policy/accessibility-policy.page.d.ts.map +1 -0
- package/lib/pages/common/change-password/change-password.page.d.ts +41 -0
- package/lib/pages/common/change-password/change-password.page.d.ts.map +1 -0
- package/lib/pages/common/landing/landing.component.d.ts +25 -0
- package/lib/pages/common/landing/landing.component.d.ts.map +1 -0
- package/lib/pages/common/landing2/landing2.component.d.ts +31 -0
- package/lib/pages/common/landing2/landing2.component.d.ts.map +1 -0
- package/lib/pages/common/login/login.component.d.ts +65 -0
- package/lib/pages/common/login/login.component.d.ts.map +1 -0
- package/lib/pages/common/not-found/not-found.page.d.ts +9 -0
- package/lib/pages/common/not-found/not-found.page.d.ts.map +1 -0
- package/lib/pages/common/privacy-disclaimer/privacy-disclaimer.page.d.ts +12 -0
- package/lib/pages/common/privacy-disclaimer/privacy-disclaimer.page.d.ts.map +1 -0
- package/lib/pages/common/security-policy/security-policy.page.d.ts +12 -0
- package/lib/pages/common/security-policy/security-policy.page.d.ts.map +1 -0
- package/lib/pages/common/unauthorized/unauthorized.page.d.ts +9 -0
- package/lib/pages/common/unauthorized/unauthorized.page.d.ts.map +1 -0
- package/lib/pages/popovers/language/language.page.d.ts +17 -0
- package/lib/pages/popovers/language/language.page.d.ts.map +1 -0
- package/lib/pages/popovers/my-notifications/my-notifications.page.d.ts +22 -0
- package/lib/pages/popovers/my-notifications/my-notifications.page.d.ts.map +1 -0
- package/lib/pages/popovers/my-profile/my-profile.page.d.ts +21 -0
- package/lib/pages/popovers/my-profile/my-profile.page.d.ts.map +1 -0
- package/lib/pages/popovers/user-search/user-search.component.d.ts +32 -0
- package/lib/pages/popovers/user-search/user-search.component.d.ts.map +1 -0
- package/lib/pipes/filter.pipe.d.ts +8 -0
- package/lib/pipes/filter.pipe.d.ts.map +1 -0
- package/lib/pipes/mask/mask.email.pipe.d.ts +11 -0
- package/lib/pipes/mask/mask.email.pipe.d.ts.map +1 -0
- package/lib/pipes/proper-case/proper-case.pipe.d.ts +9 -0
- package/lib/pipes/proper-case/proper-case.pipe.d.ts.map +1 -0
- package/lib/pipes/translate/dynamic-translate.pipe.d.ts +11 -0
- package/lib/pipes/translate/dynamic-translate.pipe.d.ts.map +1 -0
- package/lib/pipes/trust-html/trust-html.pipe.d.ts +11 -0
- package/lib/pipes/trust-html/trust-html.pipe.d.ts.map +1 -0
- package/lib/services/base-service.d.ts +93 -0
- package/lib/services/base-service.d.ts.map +1 -0
- package/lib/services/captcha/captcha.service.d.ts +16 -0
- package/lib/services/captcha/captcha.service.d.ts.map +1 -0
- package/lib/services/case-service/case.service.d.ts +20 -0
- package/lib/services/case-service/case.service.d.ts.map +1 -0
- package/lib/services/chatbot/chatbot.service.d.ts +61 -0
- package/lib/services/chatbot/chatbot.service.d.ts.map +1 -0
- package/lib/services/chatbot/script.const.d.ts +16 -0
- package/lib/services/chatbot/script.const.d.ts.map +1 -0
- package/lib/services/claimant/claimant.service.d.ts +18 -0
- package/lib/services/claimant/claimant.service.d.ts.map +1 -0
- package/lib/services/claimant-context/claimant-context.service.d.ts +19 -0
- package/lib/services/claimant-context/claimant-context.service.d.ts.map +1 -0
- package/lib/services/claimant-service/claimant-usps-redirect.service.d.ts +16 -0
- package/lib/services/claimant-service/claimant-usps-redirect.service.d.ts.map +1 -0
- package/lib/services/claimant-service/claimant.service.d.ts +26 -0
- package/lib/services/claimant-service/claimant.service.d.ts.map +1 -0
- package/lib/services/claims/claims.service.d.ts +42 -0
- package/lib/services/claims/claims.service.d.ts.map +1 -0
- package/lib/services/cmp-service/cmp.service.d.ts +34 -0
- package/lib/services/cmp-service/cmp.service.d.ts.map +1 -0
- package/lib/services/dms-service/dms.service.d.ts +24 -0
- package/lib/services/dms-service/dms.service.d.ts.map +1 -0
- package/lib/services/fpjs/fingerprint.service.d.ts +19 -0
- package/lib/services/fpjs/fingerprint.service.d.ts.map +1 -0
- package/lib/services/google-analytics/google-analytics.service.d.ts +9 -0
- package/lib/services/google-analytics/google-analytics.service.d.ts.map +1 -0
- package/lib/services/help/help.service.d.ts +26 -0
- package/lib/services/help/help.service.d.ts.map +1 -0
- package/lib/services/idle/idle.service.d.ts +44 -0
- package/lib/services/idle/idle.service.d.ts.map +1 -0
- package/lib/services/lexis-nexis/lexis.nexis.service.d.ts +26 -0
- package/lib/services/lexis-nexis/lexis.nexis.service.d.ts.map +1 -0
- package/lib/services/logger/logger.service.d.ts +32 -0
- package/lib/services/logger/logger.service.d.ts.map +1 -0
- package/lib/services/login/login.service.d.ts +79 -0
- package/lib/services/login/login.service.d.ts.map +1 -0
- package/lib/services/maintenance/maintenance.service.d.ts +16 -0
- package/lib/services/maintenance/maintenance.service.d.ts.map +1 -0
- package/lib/services/notification/notification.service.d.ts +39 -0
- package/lib/services/notification/notification.service.d.ts.map +1 -0
- package/lib/services/ovp/ovp.service.d.ts +17 -0
- package/lib/services/ovp/ovp.service.d.ts.map +1 -0
- package/lib/services/questionnaire/questionnaire.service.d.ts +36 -0
- package/lib/services/questionnaire/questionnaire.service.d.ts.map +1 -0
- package/lib/services/questionnaire/validation.service.d.ts +82 -0
- package/lib/services/questionnaire/validation.service.d.ts.map +1 -0
- package/lib/services/security-service/security.service.d.ts +18 -0
- package/lib/services/security-service/security.service.d.ts.map +1 -0
- package/lib/services/tour/tour.service.d.ts +25 -0
- package/lib/services/tour/tour.service.d.ts.map +1 -0
- package/lib/services/util/util.service.d.ts +194 -0
- package/lib/services/util/util.service.d.ts.map +1 -0
- package/lib/services/weekly-cert/weekly-cert-v2.service.d.ts +17 -0
- package/lib/services/weekly-cert/weekly-cert-v2.service.d.ts.map +1 -0
- package/lib/validations/AppRegex.d.ts +50 -0
- package/lib/validations/AppRegex.d.ts.map +1 -0
- package/lib/validations/AppValidators.d.ts +82 -0
- package/lib/validations/AppValidators.d.ts.map +1 -0
- package/package.json +28 -0
- package/public-api.d.ts +128 -0
- package/public-api.d.ts.map +1 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"filter.pipe.d.ts","sourceRoot":"","sources":["../../../../projects/ngx-reusa-app-lib/src/lib/pipes/filter.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;;AAEpD,qBAGa,UAAW,YAAW,aAAa;IAE9C,SAAS,CAAC,KAAK,EAAE,GAAG,EAAE,YAAY,EAAG,MAAM,EAAE,WAAW,EAAG,MAAM,GAAG,MAAM,EAAE,GAAG,GAAG;yCAFvE,UAAU;uCAAV,UAAU;CAmBtB"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { UtilService } from '../../services/util/util.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class MaskEmailPipe implements PipeTransform {
|
|
5
|
+
util: UtilService;
|
|
6
|
+
constructor(util: UtilService);
|
|
7
|
+
transform(value: string): unknown;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MaskEmailPipe, never>;
|
|
9
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MaskEmailPipe, "maskEmail", false>;
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=mask.email.pipe.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mask.email.pipe.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/pipes/mask/mask.email.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;AACpD,OAAO,EAAE,WAAW,EAAE,MAAM,kCAAkC,CAAC;;AAE/D,qBAGa,aAAc,YAAW,aAAa;IAE9B,IAAI,EAAG,WAAW;gBAAlB,IAAI,EAAG,WAAW;IAErC,SAAS,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO;yCAJtB,aAAa;uCAAb,aAAa;CAYzB"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ProperCasePipe implements PipeTransform {
|
|
4
|
+
transform(value: string, ...args: unknown[]): unknown;
|
|
5
|
+
capitolizeFirstLetter(value: string): string;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProperCasePipe, never>;
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<ProperCasePipe, "properCase", false>;
|
|
8
|
+
}
|
|
9
|
+
//# sourceMappingURL=proper-case.pipe.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"proper-case.pipe.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/pipes/proper-case/proper-case.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;;AAEpD,qBAGa,cAAe,YAAW,aAAa;IAElD,SAAS,CAAC,KAAK,EAAE,MAAM,EAAE,GAAG,IAAI,EAAE,OAAO,EAAE,GAAG,OAAO;IAYrD,qBAAqB,CAAC,KAAK,EAAG,MAAM;yCAdzB,cAAc;uCAAd,cAAc;CAkB1B"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { TranslateService } from '@ngx-translate/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DynamicTranslatePipe implements PipeTransform {
|
|
5
|
+
private translate;
|
|
6
|
+
constructor(translate: TranslateService);
|
|
7
|
+
transform(key: string, args: any): unknown;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicTranslatePipe, never>;
|
|
9
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<DynamicTranslatePipe, "dynamicTranslate", false>;
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=dynamic-translate.pipe.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dynamic-translate.pipe.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/pipes/translate/dynamic-translate.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;AACpD,OAAO,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;;AAGvD,qBAGa,oBAAqB,YAAW,aAAa;IAE5C,OAAO,CAAC,SAAS;gBAAT,SAAS,EAAE,gBAAgB;IAI/C,SAAS,CAAC,GAAG,EAAE,MAAM,EAAE,IAAI,KAAA,GAAG,OAAO;yCAN1B,oBAAoB;uCAApB,oBAAoB;CAuChC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { DomSanitizer } from '@angular/platform-browser';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class TrustHtmlPipe implements PipeTransform {
|
|
5
|
+
private sanitized;
|
|
6
|
+
constructor(sanitized: DomSanitizer);
|
|
7
|
+
transform(value: any): import("@angular/platform-browser").SafeHtml;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TrustHtmlPipe, never>;
|
|
9
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<TrustHtmlPipe, "trustHtml", false>;
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=trust-html.pipe.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"trust-html.pipe.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/pipes/trust-html/trust-html.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,aAAa,EAAE,MAAM,eAAe,CAAC;AACpD,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;;AAEzD,qBAGa,aAAc,YAAW,aAAa;IAErC,OAAO,CAAC,SAAS;gBAAT,SAAS,EAAE,YAAY;IAE3C,SAAS,CAAC,KAAK,EAAE,GAAG;yCAJT,aAAa;uCAAb,aAAa;CAQzB"}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { HttpHeaders, HttpParams, HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
export declare abstract class BaseService {
|
|
4
|
+
private httpClient;
|
|
5
|
+
serviceContext: string;
|
|
6
|
+
servicePort: string;
|
|
7
|
+
protocol: string;
|
|
8
|
+
host: string;
|
|
9
|
+
private options;
|
|
10
|
+
constructor(httpClient: HttpClient);
|
|
11
|
+
getServiceContext(): string;
|
|
12
|
+
getServicePort(): string;
|
|
13
|
+
getServiceProtocol(): string;
|
|
14
|
+
getServiceHost(): string;
|
|
15
|
+
abstract setServiceContext(): any;
|
|
16
|
+
abstract setServicePort(): any;
|
|
17
|
+
abstract setServiceProtocol(): any;
|
|
18
|
+
abstract setServiceHost(): any;
|
|
19
|
+
getUrl(endPoint: string): string;
|
|
20
|
+
get<T>(url: string, options?: {
|
|
21
|
+
headers?: HttpHeaders | {
|
|
22
|
+
[header: string]: string | string[];
|
|
23
|
+
};
|
|
24
|
+
observe?: 'body';
|
|
25
|
+
params?: HttpParams | {
|
|
26
|
+
[param: string]: string | string[];
|
|
27
|
+
};
|
|
28
|
+
reportProgress?: boolean;
|
|
29
|
+
responseType?: 'json';
|
|
30
|
+
withCredentials?: boolean;
|
|
31
|
+
}): Observable<T>;
|
|
32
|
+
post<T>(url: string, body: any | null, options?: {
|
|
33
|
+
headers?: HttpHeaders | {
|
|
34
|
+
[header: string]: string | string[];
|
|
35
|
+
};
|
|
36
|
+
observe?: 'body';
|
|
37
|
+
params?: HttpParams | {
|
|
38
|
+
[param: string]: string | string[];
|
|
39
|
+
};
|
|
40
|
+
reportProgress?: boolean;
|
|
41
|
+
responseType?: 'json';
|
|
42
|
+
withCredentials?: boolean;
|
|
43
|
+
}, serviceName?: string): Observable<T>;
|
|
44
|
+
postFormData<T>(url: string, body: any | null, options?: {
|
|
45
|
+
headers?: HttpHeaders | {
|
|
46
|
+
[header: string]: string | string[];
|
|
47
|
+
};
|
|
48
|
+
observe?: 'body';
|
|
49
|
+
params?: HttpParams | {
|
|
50
|
+
[param: string]: string | string[];
|
|
51
|
+
};
|
|
52
|
+
reportProgress?: boolean;
|
|
53
|
+
responseType?: 'json';
|
|
54
|
+
withCredentials?: boolean;
|
|
55
|
+
}): Observable<T>;
|
|
56
|
+
delete<T>(url: string, options?: {
|
|
57
|
+
headers?: HttpHeaders | {
|
|
58
|
+
[header: string]: string | string[];
|
|
59
|
+
};
|
|
60
|
+
observe?: 'body';
|
|
61
|
+
params?: HttpParams | {
|
|
62
|
+
[param: string]: string | string[];
|
|
63
|
+
};
|
|
64
|
+
reportProgress?: boolean;
|
|
65
|
+
responseType?: 'json';
|
|
66
|
+
withCredentials?: boolean;
|
|
67
|
+
}): Observable<T>;
|
|
68
|
+
patch<T>(url: string, body: any | null, options?: {
|
|
69
|
+
headers?: HttpHeaders | {
|
|
70
|
+
[header: string]: string | string[];
|
|
71
|
+
};
|
|
72
|
+
observe?: 'body';
|
|
73
|
+
params?: HttpParams | {
|
|
74
|
+
[param: string]: string | string[];
|
|
75
|
+
};
|
|
76
|
+
reportProgress?: boolean;
|
|
77
|
+
responseType?: 'json';
|
|
78
|
+
withCredentials?: boolean;
|
|
79
|
+
}): Observable<T>;
|
|
80
|
+
put<T>(url: string, body: any | null, options?: {
|
|
81
|
+
headers?: HttpHeaders | {
|
|
82
|
+
[header: string]: string | string[];
|
|
83
|
+
};
|
|
84
|
+
observe?: 'body';
|
|
85
|
+
params?: HttpParams | {
|
|
86
|
+
[param: string]: string | string[];
|
|
87
|
+
};
|
|
88
|
+
reportProgress?: boolean;
|
|
89
|
+
responseType?: 'json';
|
|
90
|
+
withCredentials?: boolean;
|
|
91
|
+
}): Observable<T>;
|
|
92
|
+
}
|
|
93
|
+
//# sourceMappingURL=base-service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"base-service.d.ts","sourceRoot":"","sources":["../../../../projects/ngx-reusa-app-lib/src/lib/services/base-service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAC3E,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAElC,8BAAsB,WAAW;IAiBjB,OAAO,CAAC,UAAU;IAfvB,cAAc,EAAE,MAAM,CAAC;IAEvB,WAAW,EAAE,MAAM,CAAC;IAEpB,QAAQ,EAAE,MAAM,CAAC;IAEjB,IAAI,EAAE,MAAM,CAAC;IAEpB,OAAO,CAAC,OAAO,CAKd;gBAEmB,UAAU,EAAG,UAAU;IAO3C,iBAAiB;IAIjB,cAAc;IAId,kBAAkB;IAIlB,cAAc;IAId,QAAQ,CAAC,iBAAiB;IAE1B,QAAQ,CAAC,cAAc;IAEvB,QAAQ,CAAC,kBAAkB;IAE3B,QAAQ,CAAC,cAAc;IAEvB,MAAM,CAAC,QAAQ,EAAG,MAAM;IAIxB,GAAG,CAAC,CAAC,EAAE,GAAG,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE;QAC1B,OAAO,CAAC,EAAE,WAAW,GAAG;YACpB,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,EAAE,CAAC;SACvC,CAAC;QACF,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,MAAM,CAAC,EAAE,UAAU,GAAG;YAClB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,EAAE,CAAC;SACtC,CAAC;QACF,cAAc,CAAC,EAAE,OAAO,CAAC;QACzB,YAAY,CAAC,EAAE,MAAM,CAAC;QACtB,eAAe,CAAC,EAAE,OAAO,CAAC;KAC7B,GAAG,UAAU,CAAC,CAAC,CAAC;IAIjB,IAAI,CAAC,CAAC,EAAE,GAAG,EAAE,MAAM,EAAE,IAAI,EAAE,GAAG,GAAG,IAAI,EAAE,OAAO,CAAC,EAAE;QAC7C,OAAO,CAAC,EAAE,WAAW,GAAG;YACpB,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,EAAE,CAAC;SACvC,CAAC;QACF,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,MAAM,CAAC,EAAE,UAAU,GAAG;YAClB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,EAAE,CAAC;SACtC,CAAC;QACF,cAAc,CAAC,EAAE,OAAO,CAAC;QACzB,YAAY,CAAC,EAAE,MAAM,CAAC;QACtB,eAAe,CAAC,EAAE,OAAO,CAAC;KAC3B,EAAE,WAAW,CAAC,EAAG,MAAM,GAAG,UAAU,CAAC,CAAC,CAAC;IAI1C,YAAY,CAAC,CAAC,EAAE,GAAG,EAAE,MAAM,EAAE,IAAI,EAAE,GAAG,GAAG,IAAI,EAAE,OAAO,CAAC,EAAE;QACvD,OAAO,CAAC,EAAE,WAAW,GAAG;YACpB,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,EAAE,CAAC;SACvC,CAAC;QACF,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,MAAM,CAAC,EAAE,UAAU,GAAG;YAClB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,EAAE,CAAC;SACtC,CAAC;QACF,cAAc,CAAC,EAAE,OAAO,CAAC;QACzB,YAAY,CAAC,EAAE,MAAM,CAAC;QACtB,eAAe,CAAC,EAAE,OAAO,CAAC;KAC3B,GAAG,UAAU,CAAC,CAAC,CAAC;IAIjB,MAAM,CAAC,CAAC,EAAE,GAAG,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE;QAC/B,OAAO,CAAC,EAAE,WAAW,GAAG;YACpB,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,EAAE,CAAC;SACvC,CAAC;QACF,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,MAAM,CAAC,EAAE,UAAU,GAAG;YAClB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,EAAE,CAAC;SACtC,CAAC;QACF,cAAc,CAAC,EAAE,OAAO,CAAC;QACzB,YAAY,CAAC,EAAE,MAAM,CAAC;QACtB,eAAe,CAAC,EAAE,OAAO,CAAC;KAC3B,GAAG,UAAU,CAAC,CAAC,CAAC;IAIjB,KAAK,CAAC,CAAC,EAAE,GAAG,EAAE,MAAM,EAAE,IAAI,EAAE,GAAG,GAAG,IAAI,EAAE,OAAO,CAAC,EAAE;QAC9C,OAAO,CAAC,EAAE,WAAW,GAAG;YACpB,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,EAAE,CAAC;SACvC,CAAC;QACF,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,MAAM,CAAC,EAAE,UAAU,GAAG;YAClB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,EAAE,CAAC;SACtC,CAAC;QACF,cAAc,CAAC,EAAE,OAAO,CAAC;QACzB,YAAY,CAAC,EAAE,MAAM,CAAC;QACtB,eAAe,CAAC,EAAE,OAAO,CAAC;KAC7B,GAAG,UAAU,CAAC,CAAC,CAAC;IAIf,GAAG,CAAC,CAAC,EAAE,GAAG,EAAE,MAAM,EAAE,IAAI,EAAE,GAAG,GAAG,IAAI,EAAE,OAAO,CAAC,EAAE;QAC9C,OAAO,CAAC,EAAE,WAAW,GAAG;YACpB,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,EAAE,CAAC;SACvC,CAAC;QACF,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,MAAM,CAAC,EAAE,UAAU,GAAG;YAClB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,MAAM,EAAE,CAAC;SACtC,CAAC;QACF,cAAc,CAAC,EAAE,OAAO,CAAC;QACzB,YAAY,CAAC,EAAE,MAAM,CAAC;QACtB,eAAe,CAAC,EAAE,OAAO,CAAC;KAC7B,GAAG,UAAU,CAAC,CAAC,CAAC;CAGpB"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CaptchaService {
|
|
4
|
+
private captcha;
|
|
5
|
+
private invisibleCaptcha;
|
|
6
|
+
constructor();
|
|
7
|
+
getCaptcha(): string;
|
|
8
|
+
setCaptcha(captcha: string): void;
|
|
9
|
+
getInvisibelCaptcha(): string;
|
|
10
|
+
setInvisibelCaptcha(captcha: string): void;
|
|
11
|
+
generateCaptchaToken(action: string): Observable<string>;
|
|
12
|
+
resetCaptcha(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CaptchaService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CaptchaService>;
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=captcha.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"captcha.service.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/services/captcha/captcha.service.ts"],"names":[],"mappings":"AAEA,OAAO,EAAQ,UAAU,EAAE,MAAM,MAAM,CAAC;;AAIxC,qBAGa,cAAc;IAEzB,OAAO,CAAC,OAAO,CAAiB;IAEhC,OAAO,CAAC,gBAAgB,CAAiB;;IAIzC,UAAU;IAIV,UAAU,CAAC,OAAO,EAAG,MAAM;IAK3B,mBAAmB;IAInB,mBAAmB,CAAC,OAAO,EAAG,MAAM;IAKpC,oBAAoB,CAAC,MAAM,EAAG,MAAM,GAAI,UAAU,CAAC,MAAM,CAAC;IAO1D,YAAY;yCAjCD,cAAc;6CAAd,cAAc;CAuC1B"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { CaseAttachmentModel } from '../../models/case/CaseAttachmentModel';
|
|
3
|
+
import { BaseService } from '../base-service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class CaseService extends BaseService {
|
|
6
|
+
http: HttpClient;
|
|
7
|
+
constructor(http: HttpClient);
|
|
8
|
+
setServiceContext(): void;
|
|
9
|
+
setServicePort(): void;
|
|
10
|
+
setServiceProtocol(): void;
|
|
11
|
+
setServiceHost(): void;
|
|
12
|
+
fetchMstDepartments(): import("rxjs").Observable<any[]>;
|
|
13
|
+
fetchMstAllUnits(): import("rxjs").Observable<any[]>;
|
|
14
|
+
fetchMstCaseCloseReasons(): import("rxjs").Observable<any[]>;
|
|
15
|
+
getMstOwnerGroups(): import("rxjs").Observable<any[]>;
|
|
16
|
+
getAttachments(caseId: string): import("rxjs").Observable<CaseAttachmentModel[]>;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CaseService, never>;
|
|
18
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CaseService>;
|
|
19
|
+
}
|
|
20
|
+
//# sourceMappingURL=case.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"case.service.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/services/case-service/case.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAe,MAAM,sBAAsB,CAAC;AAE/D,OAAO,EAAE,mBAAmB,EAAE,MAAM,uCAAuC,CAAC;AAE5E,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;;AAE9C,qBAGa,WAAY,SAAQ,WAAW;IACvB,IAAI,EAAE,UAAU;gBAAhB,IAAI,EAAE,UAAU;IAInC,iBAAiB;IAGjB,cAAc;IAGd,kBAAkB;IAGlB,cAAc;IAId,mBAAmB;IAInB,gBAAgB;IAIhB,wBAAwB;IAIxB,iBAAiB;IAIjB,cAAc,CAAC,MAAM,EAAG,MAAM;yCAlCnB,WAAW;6CAAX,WAAW;CAuCvB"}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import { RendererFactory2 } from '@angular/core';
|
|
2
|
+
import { BehaviorSubject } from 'rxjs';
|
|
3
|
+
import { LoggerService } from '../logger/logger.service';
|
|
4
|
+
import { LoginService } from '../login/login.service';
|
|
5
|
+
import { UtilService } from '../util/util.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
interface DisclaimerPopup {
|
|
8
|
+
header: string;
|
|
9
|
+
message: string;
|
|
10
|
+
}
|
|
11
|
+
interface HeaderConfig {
|
|
12
|
+
showLanguageToggle: boolean;
|
|
13
|
+
showMinimizeButton: boolean;
|
|
14
|
+
showExpandButton: boolean;
|
|
15
|
+
showReloadButton: boolean;
|
|
16
|
+
}
|
|
17
|
+
interface CustomData {
|
|
18
|
+
connectingMessage: string;
|
|
19
|
+
hoverMessage: string;
|
|
20
|
+
botState: string;
|
|
21
|
+
showCollectUserDetailForm: boolean;
|
|
22
|
+
showDisclaimerPopUp: boolean;
|
|
23
|
+
showChatBubbleAtClosed: boolean;
|
|
24
|
+
botAvatarImageName: string;
|
|
25
|
+
botIconImageName: string;
|
|
26
|
+
formBannerPath: string;
|
|
27
|
+
rootFilePath: string;
|
|
28
|
+
supportedLanguages: string[];
|
|
29
|
+
initialLanguage: string;
|
|
30
|
+
disclaimerPopup: DisclaimerPopup;
|
|
31
|
+
headerConfig: HeaderConfig;
|
|
32
|
+
}
|
|
33
|
+
export declare class ChatbotService {
|
|
34
|
+
private logger;
|
|
35
|
+
private ls;
|
|
36
|
+
private util;
|
|
37
|
+
map: Map<string, CustomData>;
|
|
38
|
+
msCustomData: CustomData;
|
|
39
|
+
meCustomData: CustomData;
|
|
40
|
+
ctCustomData: CustomData;
|
|
41
|
+
botOptions: any;
|
|
42
|
+
koreBot: any;
|
|
43
|
+
initChatbot: BehaviorSubject<Boolean>;
|
|
44
|
+
private renderer;
|
|
45
|
+
showChatbot: boolean;
|
|
46
|
+
constructor(rendererFactory: RendererFactory2, logger: LoggerService, ls: LoginService, util: UtilService);
|
|
47
|
+
getChatbotBs(): BehaviorSubject<Boolean>;
|
|
48
|
+
initialize(): void;
|
|
49
|
+
loadScripAndStyle(): void;
|
|
50
|
+
initializeChatbot(): void;
|
|
51
|
+
/***
|
|
52
|
+
*
|
|
53
|
+
* @description Initialize the chatbot with logged-in user. If user is not logged-in then bot session will be created using unique timestamp.
|
|
54
|
+
*/
|
|
55
|
+
openbot(): void;
|
|
56
|
+
assertion(options: any, callback: any): void;
|
|
57
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChatbotService, never>;
|
|
58
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ChatbotService>;
|
|
59
|
+
}
|
|
60
|
+
export {};
|
|
61
|
+
//# sourceMappingURL=chatbot.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"chatbot.service.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/services/chatbot/chatbot.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAyB,gBAAgB,EAAE,MAAM,eAAe,CAAC;AACxE,OAAO,EAAE,eAAe,EAAE,MAAM,MAAM,CAAC;AAEvC,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AAEzD,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AACtD,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;;AAKnD,UAAU,eAAe;IACvB,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,MAAM,CAAA;CAChB;AACD,UAAU,YAAY;IACpB,kBAAkB,EAAE,OAAO,CAAC;IAC5B,kBAAkB,EAAE,OAAO,CAAC;IAC5B,gBAAgB,EAAE,OAAO,CAAC;IAC1B,gBAAgB,EAAE,OAAO,CAAC;CAC3B;AACD,UAAU,UAAU;IAClB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,YAAY,EAAE,MAAM,CAAC;IACrB,QAAQ,EAAE,MAAM,CAAC;IACjB,yBAAyB,EAAE,OAAO,CAAC;IACnC,mBAAmB,EAAE,OAAO,CAAC;IAC7B,sBAAsB,EAAE,OAAO,CAAC;IAChC,kBAAkB,EAAE,MAAM,CAAC;IAC3B,gBAAgB,EAAE,MAAM,CAAC;IACzB,cAAc,EAAE,MAAM,CAAC;IACvB,YAAY,EAAE,MAAM,CAAC;IACrB,kBAAkB,EAAE,MAAM,EAAE,CAAC;IAC7B,eAAe,EAAE,MAAM,CAAC;IACxB,eAAe,EAAE,eAAe,CAAC;IACjC,YAAY,EAAE,YAAY,CAAC;CAC5B;AAED,qBAGa,cAAc;IAmFsB,OAAO,CAAC,MAAM;IAAiB,OAAO,CAAC,EAAE;IAAgB,OAAO,CAAC,IAAI;IAjFpH,GAAG,EAAE,GAAG,CAAC,MAAM,EAAE,UAAU,CAAC,CAAa;IAEzC,YAAY,EAAE,UAAU,CAwBvB;IAED,YAAY,EAAE,UAAU,CAuBvB;IACD,YAAY,EAAE,UAAU,CAuBvB;IACM,UAAU,EAAE,GAAG,CAAM;IACrB,OAAO,EAAE,GAAG,CAAM;IACzB,WAAW,EAAE,eAAe,CAAC,OAAO,CAAC,CAA8B;IACnE,OAAO,CAAC,QAAQ,CAAY;IACrB,WAAW,EAAE,OAAO,CAA0C;gBACzD,eAAe,EAAE,gBAAgB,EAAU,MAAM,EAAE,aAAa,EAAU,EAAE,EAAE,YAAY,EAAU,IAAI,EAAE,WAAW;IAejI,YAAY;IAIZ,UAAU;IAIV,iBAAiB;IAmDV,iBAAiB;IAIxB;;;OAGG;IACH,OAAO;IAwDP,SAAS,CAAC,OAAO,KAAA,EAAE,QAAQ,KAAA;yCA7NhB,cAAc;6CAAd,cAAc;CA4P1B"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export declare class ScriptConstant {
|
|
2
|
+
static readonly cssProperty = "css";
|
|
3
|
+
static readonly cssPropertyAbsolute = "cssAbsolute";
|
|
4
|
+
static readonly jsProperty = "js";
|
|
5
|
+
static readonly donotLoad = "donot-load";
|
|
6
|
+
static importUrls: ({
|
|
7
|
+
type: string;
|
|
8
|
+
url: string;
|
|
9
|
+
async: boolean;
|
|
10
|
+
} | {
|
|
11
|
+
type: string;
|
|
12
|
+
url: string;
|
|
13
|
+
async?: undefined;
|
|
14
|
+
})[];
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=script.const.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"script.const.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/services/chatbot/script.const.ts"],"names":[],"mappings":"AAAA,qBAAa,cAAc;IACvB,gBAAuB,WAAW,SAAS;IAC3C,gBAAuB,mBAAmB,iBAAiB;IAC9D,gBAAuB,UAAU,QAAQ;IACzC,gBAAuB,SAAS,gBAAgB;IAEhD,OAAc,UAAU;;;;;;;;SAoCtB;CAEF"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { BehaviorSubject } from 'rxjs';
|
|
2
|
+
import { UtilService } from '../util/util.service';
|
|
3
|
+
import { UserModel } from '../../models/UserModel';
|
|
4
|
+
import { ClaimantModel } from '../../models/claimant/ClaimantModel';
|
|
5
|
+
import { ResetPasswordModel } from '../../models/claimant/ResetPasswordModel';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class ClaimantService {
|
|
8
|
+
private util;
|
|
9
|
+
private claimant;
|
|
10
|
+
getClaimant(): BehaviorSubject<ClaimantModel>;
|
|
11
|
+
constructor(util: UtilService);
|
|
12
|
+
search(searchModel: ClaimantModel): import("rxjs").Observable<ClaimantModel[]>;
|
|
13
|
+
getUserDetails(userId: string): import("rxjs").Observable<UserModel>;
|
|
14
|
+
resetClaimantPassword(resetPassword: ResetPasswordModel): import("rxjs").Observable<unknown>;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ClaimantService, never>;
|
|
16
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ClaimantService>;
|
|
17
|
+
}
|
|
18
|
+
//# sourceMappingURL=claimant.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"claimant.service.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/services/claimant/claimant.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,MAAM,MAAM,CAAC;AACvC,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACnD,OAAO,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AACnD,OAAO,EAAE,aAAa,EAAE,MAAM,qCAAqC,CAAC;AACpE,OAAO,EAAE,kBAAkB,EAAE,MAAM,0CAA0C,CAAC;;AAE9E,qBAGa,eAAe;IAQd,OAAO,CAAC,IAAI;IANxB,OAAO,CAAC,QAAQ,CAA6E;IAE7F,WAAW;gBAIS,IAAI,EAAG,WAAW;IAEtC,MAAM,CAAC,WAAW,EAAG,aAAa;IAIlC,cAAc,CAAC,MAAM,EAAG,MAAM;IAI9B,qBAAqB,CAAC,aAAa,EAAG,kBAAkB;yCAlB7C,eAAe;6CAAf,eAAe;CAqB3B"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Storage } from '@ionic/storage-angular';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ClaimantContextService {
|
|
4
|
+
private storage;
|
|
5
|
+
private ssn;
|
|
6
|
+
private claimantId;
|
|
7
|
+
constructor(storage: Storage);
|
|
8
|
+
setupSavedValues(): Promise<void>;
|
|
9
|
+
setClaimantContext(ssn: string, claimantId: string): void;
|
|
10
|
+
clearContext(): void;
|
|
11
|
+
setSsn(social: string): void;
|
|
12
|
+
getSsn(): string;
|
|
13
|
+
getUnEncodedSsn(): string;
|
|
14
|
+
setClaimantId(claimantId: string): void;
|
|
15
|
+
getClaimantId(): string;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ClaimantContextService, never>;
|
|
17
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ClaimantContextService>;
|
|
18
|
+
}
|
|
19
|
+
//# sourceMappingURL=claimant-context.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"claimant-context.service.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/services/claimant-context/claimant-context.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,wBAAwB,CAAC;;AAEjD,qBAGa,sBAAsB;IAMrB,OAAO,CAAC,OAAO;IAJ3B,OAAO,CAAC,GAAG,CAAS;IAEpB,OAAO,CAAC,UAAU,CAAS;gBAEP,OAAO,EAAE,OAAO;IAI9B,gBAAgB;IAMtB,kBAAkB,CAAC,GAAG,EAAE,MAAM,EAAE,UAAU,EAAG,MAAM;IAKnD,YAAY;IAKZ,MAAM,CAAC,MAAM,EAAE,MAAM;IAKrB,MAAM,IAAI,MAAM;IAIhB,eAAe,IAAK,MAAM;IAI1B,aAAa,CAAC,UAAU,EAAE,MAAM;IAKhC,aAAa,IAAI,MAAM;yCA5CZ,sBAAsB;6CAAtB,sBAAsB;CA+ClC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { BaseService } from '../base-service';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ClaimantUspsRedirectService extends BaseService {
|
|
6
|
+
private http;
|
|
7
|
+
constructor(http: HttpClient);
|
|
8
|
+
setServiceContext(): void;
|
|
9
|
+
setServiceHost(): void;
|
|
10
|
+
setServicePort(): void;
|
|
11
|
+
setServiceProtocol(): void;
|
|
12
|
+
generateURLForUSPS(): Observable<string>;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ClaimantUspsRedirectService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ClaimantUspsRedirectService>;
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=claimant-usps-redirect.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"claimant-usps-redirect.service.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/services/claimant-service/claimant-usps-redirect.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAe,MAAM,sBAAsB,CAAC;AAE/D,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAC9C,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;;AAGlC,qBAGa,2BAA4B,SAAQ,WAAW;IAEhD,OAAO,CAAC,IAAI;gBAAJ,IAAI,EAAE,UAAU;IAEpC,iBAAiB;IAIjB,cAAc;IAId,cAAc;IAId,kBAAkB;IAKlB,kBAAkB,IAAI,UAAU,CAAC,MAAM,CAAC;yCArB3B,2BAA2B;6CAA3B,2BAA2B;CAyBvC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { JobResultsData } from '../../models/claimant/JobResultsData';
|
|
3
|
+
import { BaseService } from '../base-service';
|
|
4
|
+
import { SecurityQuestionModel } from '../../models/SecurityQuestionModel';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class ClaimantService extends BaseService {
|
|
7
|
+
http: HttpClient;
|
|
8
|
+
constructor(http: HttpClient);
|
|
9
|
+
setServiceContext(): void;
|
|
10
|
+
setServicePort(): void;
|
|
11
|
+
setServiceProtocol(): void;
|
|
12
|
+
setServiceHost(): void;
|
|
13
|
+
validateEmail(claimIdentifier: string, uniqueKey: string): import("rxjs").Observable<unknown>;
|
|
14
|
+
validateAndUpdateEmail(claimIdentifier: string, uniqueKey: string): import("rxjs").Observable<unknown>;
|
|
15
|
+
resendVerificationEmail(claimIdentifier: string): import("rxjs").Observable<unknown>;
|
|
16
|
+
updateEmail(emailId: string, claimIdentifier: string): import("rxjs").Observable<unknown>;
|
|
17
|
+
getJobResults(): import("rxjs").Observable<JobResultsData>;
|
|
18
|
+
checkIfUserAlreadyExist(ssn: string, dateOfbirth: string): import("rxjs").Observable<unknown>;
|
|
19
|
+
getUserDetailsForLoggedInUser(): import("rxjs").Observable<unknown>;
|
|
20
|
+
getAllSecurityQuestion(): import("rxjs").Observable<SecurityQuestionModel[]>;
|
|
21
|
+
lockClaimantAccount(ssn: string): import("rxjs").Observable<unknown>;
|
|
22
|
+
getUserPersonalDetails(): import("rxjs").Observable<unknown>;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ClaimantService, never>;
|
|
24
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ClaimantService>;
|
|
25
|
+
}
|
|
26
|
+
//# sourceMappingURL=claimant.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"claimant.service.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/services/claimant-service/claimant.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD,OAAO,EAAE,cAAc,EAAE,MAAM,sCAAsC,CAAC;AAEtE,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAC9C,OAAO,EAAE,qBAAqB,EAAE,MAAM,oCAAoC,CAAC;;AAI3E,qBAGe,eAAgB,SAAQ,WAAW;IAE3B,IAAI,EAAG,UAAU;gBAAjB,IAAI,EAAG,UAAU;IAIpC,iBAAiB;IAGjB,cAAc;IAGd,kBAAkB;IAGlB,cAAc;IAId,aAAa,CAAC,eAAe,EAAC,MAAM,EAAC,SAAS,EAAC,MAAM;IAIrD,sBAAsB,CAAC,eAAe,EAAC,MAAM,EAAC,SAAS,EAAC,MAAM;IAI9D,uBAAuB,CAAC,eAAe,EAAC,MAAM;IAI9C,WAAW,CAAC,OAAO,EAAC,MAAM,EAAC,eAAe,EAAC,MAAM;IAIjD,aAAa;IAIb,uBAAuB,CAAC,GAAG,EAAC,MAAM,EAAE,WAAW,EAAE,MAAM;IAIvD,6BAA6B;IAI7B,sBAAsB;IAItB,mBAAmB,CAAC,GAAG,EAAC,MAAM;IAI9B,sBAAsB;yCAvDX,eAAe;6CAAf,eAAe;CA2D3B"}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { KeyValueModel } from '../../models/questionnaire/KeyValueModel';
|
|
3
|
+
import { BaseService } from '../base-service';
|
|
4
|
+
import { BehaviorSubject } from 'rxjs';
|
|
5
|
+
import { ChoicesModel } from '../../models/AddressComponentModel';
|
|
6
|
+
import { ClaimAppEmpResponseModel } from '../../models/questionnaire/ClaimAppEmpResponseModel';
|
|
7
|
+
import { ClaimAppEmpRequestModel } from '../../models/questionnaire/ClaimAppEmpRequestModel';
|
|
8
|
+
import { RequalifyLiftPageModel } from '../../models/RequalifyLiftPageModel';
|
|
9
|
+
import { SsaVerificationModel } from '../../models/SsaVerificationModel';
|
|
10
|
+
import { AutocoderModel } from '../../models/questionnaire/AutocoderModel';
|
|
11
|
+
import * as i0 from "@angular/core";
|
|
12
|
+
export declare class ClaimService extends BaseService {
|
|
13
|
+
http: HttpClient;
|
|
14
|
+
private reasonSeparation;
|
|
15
|
+
private dischargeReasons;
|
|
16
|
+
private quitReasons;
|
|
17
|
+
private actionsList;
|
|
18
|
+
constructor(http: HttpClient);
|
|
19
|
+
setServiceContext(): void;
|
|
20
|
+
setServicePort(): void;
|
|
21
|
+
setServiceProtocol(): void;
|
|
22
|
+
setServiceHost(): void;
|
|
23
|
+
getReasonSeparation(): BehaviorSubject<ChoicesModel[]>;
|
|
24
|
+
loadReasonSeparation(): void;
|
|
25
|
+
getDischargeReasons(): BehaviorSubject<ChoicesModel[]>;
|
|
26
|
+
loadDischargeReasons(): void;
|
|
27
|
+
getQuitReasons(): BehaviorSubject<ChoicesModel[]>;
|
|
28
|
+
loadQuitReasons(): void;
|
|
29
|
+
loadMasterData(): void;
|
|
30
|
+
loadBasePeriodWages(clmEmpRequestModel: ClaimAppEmpRequestModel): import("rxjs").Observable<ClaimAppEmpResponseModel>;
|
|
31
|
+
getAllowSepPreviousIssuesForSSN(ssnInput: string): import("rxjs").Observable<RequalifyLiftPageModel>;
|
|
32
|
+
getRequalifyLiftIssuesForSSN(ssnInput: string): import("rxjs").Observable<RequalifyLiftPageModel>;
|
|
33
|
+
getRequalifyCriteriaEnum(): void;
|
|
34
|
+
getUI512AResponses(ssnInput: string): import("rxjs").Observable<RequalifyLiftPageModel>;
|
|
35
|
+
fetchSSAStatusForClaimApplication(claimIdentifier: string): import("rxjs").Observable<SsaVerificationModel>;
|
|
36
|
+
reVerifySSAStatusForClaimApplication(data: SsaVerificationModel, claimIdentifier: string): import("rxjs").Observable<SsaVerificationModel>;
|
|
37
|
+
getJobTileOrPosition(query: string): import("rxjs").Observable<AutocoderModel>;
|
|
38
|
+
getActionsList(): BehaviorSubject<KeyValueModel[]>;
|
|
39
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ClaimService, never>;
|
|
40
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ClaimService>;
|
|
41
|
+
}
|
|
42
|
+
//# sourceMappingURL=claims.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"claims.service.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/services/claims/claims.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAc,MAAM,sBAAsB,CAAC;AAG9D,OAAO,EAAE,aAAa,EAAE,MAAM,0CAA0C,CAAC;AACzE,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAC9C,OAAO,EAAE,eAAe,EAAE,MAAM,MAAM,CAAC;AACvC,OAAO,EAAE,YAAY,EAAE,MAAM,oCAAoC,CAAC;AAClE,OAAO,EAAE,wBAAwB,EAAE,MAAM,qDAAqD,CAAC;AAC/F,OAAO,EAAE,uBAAuB,EAAE,MAAM,oDAAoD,CAAC;AAC7F,OAAO,EAAE,sBAAsB,EAAE,MAAM,qCAAqC,CAAC;AAC7E,OAAO,EAAE,oBAAoB,EAAE,MAAM,mCAAmC,CAAC;AACzE,OAAO,EAAC,cAAc,EAAC,MAAM,2CAA2C,CAAC;;AAEzE,qBAGe,YAAa,SAAQ,WAAW;IAOxB,IAAI,EAAG,UAAU;IALpC,OAAO,CAAC,gBAAgB,CAA6D;IACrF,OAAO,CAAC,gBAAgB,CAA6D;IACrF,OAAO,CAAC,WAAW,CAA6D;IAChF,OAAO,CAAC,WAAW,CAA8D;gBAE9D,IAAI,EAAG,UAAU;IAIpC,iBAAiB;IAGjB,cAAc;IAGd,kBAAkB;IAGlB,cAAc;IAId,mBAAmB;IAInB,oBAAoB;IAMpB,mBAAmB;IAInB,oBAAoB;IAOpB,cAAc;IAId,eAAe;IAOf,cAAc;IAMd,mBAAmB,CAAC,kBAAkB,EAAE,uBAAuB;IAI/D,+BAA+B,CAAC,QAAQ,EAAE,MAAM;IAKhD,4BAA4B,CAAC,QAAQ,EAAG,MAAM;IAK9C,wBAAwB;IAOxB,kBAAkB,CAAC,QAAQ,EAAG,MAAM;IAKpC,iCAAiC,CAAC,eAAe,EAAG,MAAM;IAI1D,oCAAoC,CAAC,IAAI,EAAG,oBAAoB,EAAE,eAAe,EAAG,MAAM;IAI1F,oBAAoB,CAAC,KAAK,EAAE,MAAM;IAIlC,cAAc;yCApGH,YAAY;6CAAZ,YAAY;CAwGxB"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { ComplaintCategoryModel } from '../../models/cmp/ComplaintCategoryModel';
|
|
4
|
+
import { ContactUsInqueryModel } from '../../models/cmp/contactUsInqueryModel';
|
|
5
|
+
import { ContactUsModel } from '../../models/cmp/ContactUsModel';
|
|
6
|
+
import { EmailTemplateModle } from '../../models/cmp/EmailTemplateModel';
|
|
7
|
+
import { MessageRourceModel } from '../../models/cmp/messageRourceModel';
|
|
8
|
+
import { BaseService } from '../base-service';
|
|
9
|
+
import { BehaviorSubject } from 'rxjs';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export declare class CmpService extends BaseService {
|
|
12
|
+
http: HttpClient;
|
|
13
|
+
constructor(http: HttpClient);
|
|
14
|
+
private messageSource;
|
|
15
|
+
setServiceContext(): void;
|
|
16
|
+
setServicePort(): void;
|
|
17
|
+
setServiceProtocol(): void;
|
|
18
|
+
setServiceHost(): void;
|
|
19
|
+
getComplaintCategory(): Observable<ComplaintCategoryModel[]>;
|
|
20
|
+
submitQuery(formData: ContactUsInqueryModel): Observable<ContactUsModel>;
|
|
21
|
+
submitQueryForCSR(formData: ContactUsInqueryModel): Observable<ContactUsModel>;
|
|
22
|
+
updateInquiryData(model: ContactUsInqueryModel, caseNumber: string): Observable<unknown>;
|
|
23
|
+
submitEmailTemplate(formData: EmailTemplateModle): Observable<ContactUsModel>;
|
|
24
|
+
getEmailTemplates(): Observable<EmailTemplateModle[]>;
|
|
25
|
+
deleteEmailTemplate(id: any): Observable<unknown>;
|
|
26
|
+
editEmailTemplate(editTeamplate: EmailTemplateModle): Observable<unknown>;
|
|
27
|
+
fetchInquiryDetailsByInquiryId(inquiryId: string): Observable<ContactUsModel>;
|
|
28
|
+
getMsgGeneratedThrough(): Observable<MessageRourceModel[]>;
|
|
29
|
+
getMessageSource(): BehaviorSubject<MessageRourceModel[]>;
|
|
30
|
+
loadMessageSources(): void;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CmpService, never>;
|
|
32
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CmpService>;
|
|
33
|
+
}
|
|
34
|
+
//# sourceMappingURL=cmp.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"cmp.service.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/services/cmp-service/cmp.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAe,MAAM,sBAAsB,CAAC;AAE/D,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAClC,OAAO,EAAE,sBAAsB,EAAE,MAAM,yCAAyC,CAAC;AACjF,OAAO,EAAE,qBAAqB,EAAE,MAAM,wCAAwC,CAAC;AAC/E,OAAO,EAAE,cAAc,EAAE,MAAM,iCAAiC,CAAC;AACjE,OAAO,EAAE,kBAAkB,EAAE,MAAM,qCAAqC,CAAC;AACzE,OAAO,EAAE,kBAAkB,EAAE,MAAM,qCAAqC,CAAC;AAGzE,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAC9C,OAAO,EAAE,eAAe,EAAE,MAAM,MAAM,CAAC;;AAGvC,qBAGa,UAAW,SAAQ,WAAW;IAEtB,IAAI,EAAE,UAAU;gBAAhB,IAAI,EAAE,UAAU;IAInC,OAAO,CAAC,aAAa,CAAmE;IAExF,iBAAiB;IAGjB,cAAc;IAGd,kBAAkB;IAGlB,cAAc;IAKd,oBAAoB;IAIpB,WAAW,CAAC,QAAQ,EAAG,qBAAqB,GAAI,UAAU,CAAC,cAAc,CAAC;IAS1E,iBAAiB,CAAC,QAAQ,EAAG,qBAAqB,GAAI,UAAU,CAAC,cAAc,CAAC;IAQhF,iBAAiB,CAAC,KAAK,EAAG,qBAAqB,EAAE,UAAU,EAAE,MAAM;IAInE,mBAAmB,CAAC,QAAQ,EAAG,kBAAkB;IAIjD,iBAAiB;IAIjB,mBAAmB,CAAC,EAAE,EAAE,GAAG;IAI3B,iBAAiB,CAAC,aAAa,EAAE,kBAAkB;IAInD,8BAA8B,CAAC,SAAS,EAAG,MAAM;IAIjD,sBAAsB;IAItB,gBAAgB;IAIhB,kBAAkB;yCA3EP,UAAU;6CAAV,UAAU;CAkFtB"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { AddressComponentModel } from '../../models/AddressComponentModel';
|
|
4
|
+
import { BankDetailsModel } from '../../models/BankDetailsModel';
|
|
5
|
+
import { FileModel } from '../../models/FileModel';
|
|
6
|
+
import { BaseService } from '../base-service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class DmsService extends BaseService {
|
|
9
|
+
http: HttpClient;
|
|
10
|
+
constructor(http: HttpClient);
|
|
11
|
+
setServiceContext(): void;
|
|
12
|
+
setServicePort(): void;
|
|
13
|
+
setServiceProtocol(): void;
|
|
14
|
+
setServiceHost(): void;
|
|
15
|
+
downloadFile(fileId: String): Observable<unknown>;
|
|
16
|
+
uploadFile(formData: FormData): Observable<FileModel[]>;
|
|
17
|
+
deleteFile(fileId: string): Observable<unknown>;
|
|
18
|
+
getFile(fileId: string): Observable<unknown>;
|
|
19
|
+
getAddress(zipCode: string): Observable<AddressComponentModel>;
|
|
20
|
+
getBankName(routingNo: string): Observable<BankDetailsModel>;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DmsService, never>;
|
|
22
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<DmsService>;
|
|
23
|
+
}
|
|
24
|
+
//# sourceMappingURL=dms.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dms.service.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/services/dms-service/dms.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAe,MAAM,sBAAsB,CAAC;AAE/D,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAClC,OAAO,EAAE,qBAAqB,EAAE,MAAM,oCAAoC,CAAC;AAC3E,OAAO,EAAE,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AACjE,OAAO,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AAEnD,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;;AAE9C,qBAGa,UAAW,SAAQ,WAAW;IAEtB,IAAI,EAAG,UAAU;gBAAjB,IAAI,EAAG,UAAU;IAIpC,iBAAiB;IAGjB,cAAc;IAGd,kBAAkB;IAGlB,cAAc;IAId,YAAY,CAAC,MAAM,EAAG,MAAM;IAU5B,UAAU,CAAC,QAAQ,EAAG,QAAQ,GAAI,UAAU,CAAC,SAAS,EAAE,CAAC;IASzD,UAAU,CAAC,MAAM,EAAG,MAAM;IAI1B,OAAO,CAAC,MAAM,EAAG,MAAM;IAIvB,UAAU,CAAC,OAAO,EAAC,MAAM;IAIzB,WAAW,CAAC,SAAS,EAAC,MAAM,GAAI,UAAU,CAAC,gBAAgB,CAAC;yCAlDjD,UAAU;6CAAV,UAAU;CAqDtB"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Renderer2, RendererFactory2 } from '@angular/core';
|
|
2
|
+
import { LoggerService } from '../../services/logger/logger.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class FingerprintService {
|
|
5
|
+
logger: LoggerService;
|
|
6
|
+
private document;
|
|
7
|
+
SCRIPT_PATH: string;
|
|
8
|
+
browserFingerprint: string;
|
|
9
|
+
requestId: string;
|
|
10
|
+
private renderer;
|
|
11
|
+
constructor(logger: LoggerService, document: Document, rendererFactory: RendererFactory2);
|
|
12
|
+
private initFingerprintJs;
|
|
13
|
+
loadJsScript(renderer: Renderer2, src: string): HTMLScriptElement;
|
|
14
|
+
getBrowserFingerprint(): string;
|
|
15
|
+
getRequestId(): string;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FingerprintService, never>;
|
|
17
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FingerprintService>;
|
|
18
|
+
}
|
|
19
|
+
//# sourceMappingURL=fingerprint.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"fingerprint.service.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/services/fpjs/fingerprint.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAyB,SAAS,EAAU,gBAAgB,EAAE,MAAM,eAAe,CAAC;AAI3F,OAAO,EAAE,aAAa,EAAE,MAAM,sCAAsC,CAAC;;AAIrE,qBAGa,kBAAkB;IAOV,MAAM,EAAG,aAAa;IAAoB,OAAO,CAAC,QAAQ;IAL7E,WAAW,SAAiU;IAC5U,kBAAkB,EAAG,MAAM,CAAC;IAC5B,SAAS,EAAG,MAAM,CAAC;IACnB,OAAO,CAAC,QAAQ,CAAY;gBAET,MAAM,EAAG,aAAa,EAA4B,QAAQ,EAAE,QAAQ,EAAE,eAAe,EAAE,gBAAgB;IAK1H,OAAO,CAAC,iBAAiB;IAiClB,YAAY,CAAC,QAAQ,EAAE,SAAS,EAAE,GAAG,EAAE,MAAM,GAAG,iBAAiB;IAQxE,qBAAqB;IAIrB,YAAY;yCAzDD,kBAAkB;6CAAlB,kBAAkB;CA4D9B"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class GoogleAnalyticsService {
|
|
3
|
+
constructor();
|
|
4
|
+
emitEvent(action: string, eventCategory: string, eventLabel?: string, eventValue?: number): void;
|
|
5
|
+
emitNonInteractiveEvent(action: string, eventCategory: string, eventLabel?: string, eventValue?: number): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GoogleAnalyticsService, never>;
|
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<GoogleAnalyticsService>;
|
|
8
|
+
}
|
|
9
|
+
//# sourceMappingURL=google-analytics.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"google-analytics.service.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/services/google-analytics/google-analytics.service.ts"],"names":[],"mappings":";AAIA,qBAGa,sBAAsB;;IAI1B,SAAS,CAAE,MAAM,EAAE,MAAM,EAAG,aAAa,EAAE,MAAM,EAAE,UAAU,GAAE,MAAa,EAAI,UAAU,GAAE,MAAa;IASvG,uBAAuB,CAAE,MAAM,EAAE,MAAM,EAAG,aAAa,EAAE,MAAM,EAAE,UAAU,GAAE,MAAa,EAAI,UAAU,GAAE,MAAa;yCAbrH,sBAAsB;6CAAtB,sBAAsB;CAyBlC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { Storage } from '@ionic/storage-angular';
|
|
2
|
+
import { BehaviorSubject } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class HelpService {
|
|
5
|
+
storage: Storage;
|
|
6
|
+
private helpPreferences;
|
|
7
|
+
private showing;
|
|
8
|
+
private showHelpButton;
|
|
9
|
+
constructor(storage: Storage);
|
|
10
|
+
setupDefaultHelpBehaviour(preferences: {
|
|
11
|
+
name: string;
|
|
12
|
+
showOnLoad: boolean;
|
|
13
|
+
}[]): void;
|
|
14
|
+
private setupPreferenceInStorageIfNotPresent;
|
|
15
|
+
show(): void;
|
|
16
|
+
hide(): void;
|
|
17
|
+
isShowing(): boolean;
|
|
18
|
+
setHelpAvailability(isAvailable: boolean): void;
|
|
19
|
+
shouldDisplayHelpButton(): BehaviorSubject<boolean>;
|
|
20
|
+
setPreference(name: string, value: boolean): void;
|
|
21
|
+
getPreference(name: string): Promise<any>;
|
|
22
|
+
showDialogIfPreferenceAllow(name: string): Promise<void>;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HelpService, never>;
|
|
24
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<HelpService>;
|
|
25
|
+
}
|
|
26
|
+
//# sourceMappingURL=help.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"help.service.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/services/help/help.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,wBAAwB,CAAC;AACjD,OAAO,EAAE,eAAe,EAAE,MAAM,MAAM,CAAC;;AAEvC,qBAGa,WAAW;IAQH,OAAO,EAAG,OAAO;IANpC,OAAO,CAAC,eAAe,CAA2C;IAElE,OAAO,CAAC,OAAO,CAAmB;IAElC,OAAO,CAAC,cAAc,CAAkE;gBAErE,OAAO,EAAG,OAAO;IAEpC,yBAAyB,CAAC,WAAW,EAAG;QAAC,IAAI,EAAG,MAAM,CAAC;QAAC,UAAU,EAAG,OAAO,CAAA;KAAC,EAAE;IAM/E,OAAO,CAAC,oCAAoC;IAU5C,IAAI;IAIJ,IAAI;IAIJ,SAAS;IAIT,mBAAmB,CAAC,WAAW,EAAG,OAAO;IAOzC,uBAAuB;IAIvB,aAAa,CAAC,IAAI,EAAG,MAAM,EAAE,KAAK,EAAG,OAAO;IAI5C,aAAa,CAAC,IAAI,EAAG,MAAM;IAIrB,2BAA2B,CAAC,IAAI,EAAG,MAAM;yCAzDpC,WAAW;6CAAX,WAAW;CAgEvB"}
|