@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,44 @@
|
|
|
1
|
+
import { NavController } from '@ionic/angular';
|
|
2
|
+
import { Idle } from '@ng-idle/core';
|
|
3
|
+
import { Keepalive } from '@ng-idle/keepalive';
|
|
4
|
+
import { BehaviorSubject, Subscription } from 'rxjs';
|
|
5
|
+
import { LoggerService } from '../logger/logger.service';
|
|
6
|
+
import { LoginService } from '../login/login.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
/**
|
|
9
|
+
* This service will automatically extend user's session by refreshing access_token if the validity of access token is less than 120s and
|
|
10
|
+
* user is not idle on the screen.
|
|
11
|
+
*
|
|
12
|
+
* @author Prerak Tiwari
|
|
13
|
+
*/
|
|
14
|
+
export declare class IdleService {
|
|
15
|
+
private logger;
|
|
16
|
+
idle: Idle;
|
|
17
|
+
private ls;
|
|
18
|
+
private nav;
|
|
19
|
+
private keepalive;
|
|
20
|
+
private sessionValidityTill;
|
|
21
|
+
timerInterval: import("rxjs").Observable<number>;
|
|
22
|
+
timer: import("rxjs").Observable<0>;
|
|
23
|
+
time: number;
|
|
24
|
+
countDown: import("rxjs").Observable<number>;
|
|
25
|
+
counter: BehaviorSubject<number>;
|
|
26
|
+
lastPing?: Date;
|
|
27
|
+
counterSubscription: Subscription;
|
|
28
|
+
counterEndSubscription: Subscription;
|
|
29
|
+
sessionValiditysubscription: Subscription;
|
|
30
|
+
showSessionTimeoutWarning: BehaviorSubject<Boolean>;
|
|
31
|
+
constructor(logger: LoggerService, idle: Idle, ls: LoginService, nav: NavController, keepalive: Keepalive);
|
|
32
|
+
setupIdalTimeout(): void;
|
|
33
|
+
reset(): void;
|
|
34
|
+
stay(): void;
|
|
35
|
+
setupSessionTimeoutObserver(): void;
|
|
36
|
+
setupSessionObserver(): void;
|
|
37
|
+
private unsubscribe;
|
|
38
|
+
checkSessionValidity(): void;
|
|
39
|
+
logout(): void;
|
|
40
|
+
addSeconds(date: Date, secToAdd: number): Date;
|
|
41
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IdleService, never>;
|
|
42
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<IdleService>;
|
|
43
|
+
}
|
|
44
|
+
//# sourceMappingURL=idle.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"idle.service.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/services/idle/idle.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AAC/C,OAAO,EAA4B,IAAI,EAAE,MAAM,eAAe,CAAC;AAC/D,OAAO,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC/C,OAAO,EAAE,eAAe,EAAY,YAAY,EAAS,MAAM,MAAM,CAAC;AAGtE,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AACzD,OAAO,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;;AAEtD;;;;;GAKG;AACH,qBAGa,WAAW;IAeT,OAAO,CAAC,MAAM;IAAwB,IAAI,EAAE,IAAI;IAAE,OAAO,CAAC,EAAE;IAAiB,OAAO,CAAC,GAAG;IAAiB,OAAO,CAAC,SAAS;IAdvI,OAAO,CAAC,mBAAmB,CAAQ;IAC5B,aAAa,oCAAkB;IAC/B,KAAK,+BAAiB;IAC7B,IAAI,SAAO;IACJ,SAAS,oCAA4C;IACrD,OAAO,EAAG,eAAe,CAAC,MAAM,CAAC,CAA0B;IAClE,QAAQ,CAAC,EAAE,IAAI,CAAQ;IAEvB,mBAAmB,EAAG,YAAY,CAAC;IACnC,sBAAsB,EAAG,YAAY,CAAC;IACtC,2BAA2B,EAAE,YAAY,CAAC;IAEnC,yBAAyB,EAAG,eAAe,CAAC,OAAO,CAAC,CAA8B;gBAEpE,MAAM,EAAE,aAAa,EAAS,IAAI,EAAE,IAAI,EAAU,EAAE,EAAG,YAAY,EAAU,GAAG,EAAE,aAAa,EAAU,SAAS,EAAE,SAAS;IAIlJ,gBAAgB;IAqChB,KAAK;IAaL,IAAI;IAMJ,2BAA2B;IAa3B,oBAAoB;IAMpB,OAAO,CAAC,WAAW;IAMnB,oBAAoB;IA4BpB,MAAM;IAaN,UAAU,CAAC,IAAI,EAAI,IAAI,EAAE,QAAQ,EAAG,MAAM;yCA7I/B,WAAW;6CAAX,WAAW;CAiJvB"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { BaseService } from '../base-service';
|
|
3
|
+
import { LexisNexisResponseModel } from '../../models/LexisNexisResponseModel';
|
|
4
|
+
import { LexisNexisAuthSelectionRequestModel } from '../../models/LexisNexisAuthSelectionRequestModel';
|
|
5
|
+
import { LexisNexisAuthSelectionResponseModel } from '../../models/LexisNexisAuthSelectionResponseModel';
|
|
6
|
+
import { Observable } from 'rxjs';
|
|
7
|
+
import { LexisNexisAccountCreationModel } from '../../models/LexisNexisAccountCreationModel';
|
|
8
|
+
import { LexisNexisEnabledResponseModel } from '../../models/LexisNexisEnabledResponseModel';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class LexisNexisService extends BaseService {
|
|
11
|
+
http: HttpClient;
|
|
12
|
+
constructor(http: HttpClient);
|
|
13
|
+
setServiceContext(): void;
|
|
14
|
+
setServicePort(): void;
|
|
15
|
+
setServiceProtocol(): void;
|
|
16
|
+
setServiceHost(): void;
|
|
17
|
+
isLexisNexisIdProofingEnabled(ssn: string): Observable<LexisNexisEnabledResponseModel>;
|
|
18
|
+
isLexisNexisIdProofingEnabledWithUserId(userId: string): Observable<Boolean>;
|
|
19
|
+
isLexisNexisProofedWithin24Hours(userId: string): Observable<Boolean>;
|
|
20
|
+
getLnQueryApiResponse(userName: string, customerEventType: string): Observable<LexisNexisResponseModel>;
|
|
21
|
+
getLnQueryApiPIResponse(accountCreationData: LexisNexisAccountCreationModel): Observable<LexisNexisResponseModel>;
|
|
22
|
+
lnAuthenticationQA(authSelection: LexisNexisAuthSelectionRequestModel): Observable<LexisNexisAuthSelectionResponseModel>;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LexisNexisService, never>;
|
|
24
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LexisNexisService>;
|
|
25
|
+
}
|
|
26
|
+
//# sourceMappingURL=lexis.nexis.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lexis.nexis.service.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/services/lexis-nexis/lexis.nexis.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAc,MAAM,sBAAsB,CAAC;AAG9D,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAC9C,OAAO,EAAE,uBAAuB,EAAE,MAAM,sCAAsC,CAAC;AAC/E,OAAO,EAAE,mCAAmC,EAAE,MAAM,kDAAkD,CAAC;AACvG,OAAO,EAAE,oCAAoC,EAAE,MAAM,mDAAmD,CAAC;AACzG,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAClC,OAAO,EAAE,8BAA8B,EAAE,MAAM,6CAA6C,CAAC;AAC7F,OAAO,EAAE,8BAA8B,EAAE,MAAM,6CAA6C,CAAC;;AAE7F,qBAGa,iBAAkB,SAAQ,WAAW;IAC7B,IAAI,EAAE,UAAU;gBAAhB,IAAI,EAAE,UAAU;IAInC,iBAAiB;IAGjB,cAAc;IAGd,kBAAkB;IAGlB,cAAc;IAId,6BAA6B,CAAC,GAAG,EAAE,MAAM;IAIzC,uCAAuC,CAAC,MAAM,EAAE,MAAM;IAItD,gCAAgC,CAAC,MAAM,EAAE,MAAM;IAI/C,qBAAqB,CAAC,QAAQ,EAAG,MAAM,EAAE,iBAAiB,EAAG,MAAM,GAAI,UAAU,CAAC,uBAAuB,CAAC;IAc1G,uBAAuB,CAAC,mBAAmB,EAAE,8BAA8B,GAAI,UAAU,CAAC,uBAAuB,CAAC;IAIlH,kBAAkB,CAAC,aAAa,EAAE,mCAAmC,GAAI,UAAU,CAAC,oCAAoC,CAAC;yCAhD9G,iBAAiB;6CAAjB,iBAAiB;CAmD7B"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { HttpHeaders, HttpParams } from '@angular/common/http';
|
|
2
|
+
import { INGXLoggerConfig, INGXLoggerMonitor, NGXLogger } from 'ngx-logger';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* Logger services responsible for logging various messages in browser's console. Developers are advised to use this class for
|
|
6
|
+
* any loggin related activity instead of console.log. This service will also send any errors to remote loggin server for debugging
|
|
7
|
+
* purpose.
|
|
8
|
+
*
|
|
9
|
+
* @see https://www.npmjs.com/package/ngx-logger for more details about the configurations.
|
|
10
|
+
*
|
|
11
|
+
* @author Prerak Tiwari
|
|
12
|
+
* */
|
|
13
|
+
export declare class LoggerService {
|
|
14
|
+
private logger;
|
|
15
|
+
constructor(logger: NGXLogger);
|
|
16
|
+
trace(message: any, ...additional: any[]): void;
|
|
17
|
+
debug(message: any, ...additional: any[]): void;
|
|
18
|
+
info(message: any, ...additional: any[]): void;
|
|
19
|
+
log(message: any, ...additional: any[]): void;
|
|
20
|
+
warn(message: any, ...additional: any[]): void;
|
|
21
|
+
error(message: any, ...additional: any[]): void;
|
|
22
|
+
fatal(message: any, ...additional: any[]): void;
|
|
23
|
+
setCustomHttpHeaders(headers: HttpHeaders): void;
|
|
24
|
+
setCustomParams(params: HttpParams): void;
|
|
25
|
+
setWithCredentialsOptionValue(withCredentials: boolean): void;
|
|
26
|
+
registerMonitor(monitor: INGXLoggerMonitor): void;
|
|
27
|
+
updateConfig(config: INGXLoggerConfig): void;
|
|
28
|
+
getConfigSnapshot(): INGXLoggerConfig;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoggerService, never>;
|
|
30
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LoggerService>;
|
|
31
|
+
}
|
|
32
|
+
//# sourceMappingURL=logger.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"logger.service.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/services/logger/logger.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAE/D,OAAO,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;;AAE5E;;;;;;;;KAQK;AAEL,qBAGa,aAAa;IAEZ,OAAO,CAAC,MAAM;gBAAN,MAAM,EAAE,SAAS;IAIrC,KAAK,CAAC,OAAO,EAAE,GAAG,EAAE,GAAG,UAAU,EAAE,GAAG,EAAE,GAAG,IAAI;IAI/C,KAAK,CAAC,OAAO,EAAE,GAAG,EAAE,GAAG,UAAU,EAAE,GAAG,EAAE,GAAG,IAAI;IAI/C,IAAI,CAAC,OAAO,EAAE,GAAG,EAAE,GAAG,UAAU,EAAE,GAAG,EAAE,GAAG,IAAI;IAI9C,GAAG,CAAC,OAAO,EAAE,GAAG,EAAE,GAAG,UAAU,EAAE,GAAG,EAAE,GAAG,IAAI;IAK7C,IAAI,CAAC,OAAO,EAAE,GAAG,EAAE,GAAG,UAAU,EAAE,GAAG,EAAE,GAAG,IAAI;IAI9C,KAAK,CAAC,OAAO,EAAE,GAAG,EAAE,GAAG,UAAU,EAAE,GAAG,EAAE,GAAG,IAAI;IAI/C,KAAK,CAAC,OAAO,EAAE,GAAG,EAAE,GAAG,UAAU,EAAE,GAAG,EAAE,GAAG,IAAI;IAI/C,oBAAoB,CAAC,OAAO,EAAE,WAAW,GAAG,IAAI;IAIhD,eAAe,CAAC,MAAM,EAAE,UAAU,GAAG,IAAI;IAIzC,6BAA6B,CAAC,eAAe,EAAE,OAAO,GAAG,IAAI;IAI7D,eAAe,CAAC,OAAO,EAAE,iBAAiB,GAAG,IAAI;IAIjD,YAAY,CAAC,MAAM,EAAE,gBAAgB,GAAG,IAAI;IAI5C,iBAAiB,IAAI,gBAAgB;yCAvD1B,aAAa;6CAAb,aAAa;CA0DzB"}
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import { BehaviorSubject, Observable } from 'rxjs';
|
|
2
|
+
import { OtpAuthModel } from '../../models/OtpAuthModel';
|
|
3
|
+
import { UserDetailsModel } from '../../models/UserDetailsModel';
|
|
4
|
+
import { UserModel } from '../../models/UserModel';
|
|
5
|
+
import { UtilService } from '../util/util.service';
|
|
6
|
+
import { Storage } from '@ionic/storage-angular';
|
|
7
|
+
import { MenuItem } from 'primeng/api';
|
|
8
|
+
import { ClaimantContextService } from '../../services/claimant-context/claimant-context.service';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class LoginService {
|
|
11
|
+
util: UtilService;
|
|
12
|
+
private storage;
|
|
13
|
+
private claimantContextService;
|
|
14
|
+
options: {};
|
|
15
|
+
private userBs;
|
|
16
|
+
private userIdInUnitBs;
|
|
17
|
+
private menuBs;
|
|
18
|
+
private user;
|
|
19
|
+
private authCode;
|
|
20
|
+
setAuthCode(authcode: string): void;
|
|
21
|
+
getAuthcode(): string;
|
|
22
|
+
getUser(): UserModel;
|
|
23
|
+
getUserBs(): BehaviorSubject<UserModel>;
|
|
24
|
+
getMenuBs(): BehaviorSubject<MenuItem[]>;
|
|
25
|
+
setUser(res: UserModel): Promise<void>;
|
|
26
|
+
getFullName(): string;
|
|
27
|
+
getIsUserProfileComplete(): boolean;
|
|
28
|
+
constructor(util: UtilService, storage: Storage, claimantContextService: ClaimantContextService);
|
|
29
|
+
getUserPersonalDetails(): Observable<UserDetailsModel>;
|
|
30
|
+
generateOtp(userId: string, type: string): Observable<unknown>;
|
|
31
|
+
generateOtpForNewUserCreation(phone: string, type: string): Observable<unknown>;
|
|
32
|
+
generateOtpForLoggedInUser(): Observable<unknown>;
|
|
33
|
+
verifyOtpForPhoneNumber(code: string, phone: string, isReturningUser: boolean, ssn: String): Observable<boolean>;
|
|
34
|
+
login(auth: OtpAuthModel): Observable<UserModel>;
|
|
35
|
+
loginAndCheckForMFA(auth: OtpAuthModel): Observable<UserModel>;
|
|
36
|
+
refreshToken(refreshToken: any): Promise<UserModel>;
|
|
37
|
+
loadUserInfo(): Promise<UserModel>;
|
|
38
|
+
getStoredAccessTopen(): Promise<any>;
|
|
39
|
+
generateOtpUnregistered(mobileNo: string): Observable<unknown>;
|
|
40
|
+
signUp(userModel: UserModel): Observable<unknown>;
|
|
41
|
+
updatePersonalDetails(usrDtls: UserDetailsModel): Observable<unknown>;
|
|
42
|
+
reset(): void;
|
|
43
|
+
removeCookies(): void;
|
|
44
|
+
deleteCookie(cookieName: any): void;
|
|
45
|
+
createCookie(cookieName: any, value: any, expiration: any): void;
|
|
46
|
+
logout(): void;
|
|
47
|
+
isLoggedIn(): boolean;
|
|
48
|
+
is2FARequired(): boolean;
|
|
49
|
+
updateProfile(user: UserModel): Observable<unknown>;
|
|
50
|
+
updatePassword(oldPassword: any, newPassword: any, confirmPassword: any): Observable<unknown>;
|
|
51
|
+
initiateForgotPassword(userId: string): Observable<unknown>;
|
|
52
|
+
initiateForgotPasswordV2(userId: string): Observable<unknown>;
|
|
53
|
+
hasRole(roleName: string): boolean;
|
|
54
|
+
hasFunction(functionName: string): boolean;
|
|
55
|
+
hasRoles(...roles: string[]): boolean;
|
|
56
|
+
hasFunctions(...functions: string[]): boolean;
|
|
57
|
+
checkRoles(roles: string[]): boolean;
|
|
58
|
+
checkFunctions(functions: string[]): boolean;
|
|
59
|
+
isCsr(): boolean;
|
|
60
|
+
isEmployer(): boolean;
|
|
61
|
+
isTpa(): boolean;
|
|
62
|
+
isClaimant(): boolean;
|
|
63
|
+
hasSsnAssociated(): boolean;
|
|
64
|
+
getUserMenus(): Observable<MenuItem[]>;
|
|
65
|
+
markFav(menuId: string): Observable<MenuItem[]>;
|
|
66
|
+
removeFav(menuId: string): Observable<MenuItem[]>;
|
|
67
|
+
getFavouriteMenu(): Observable<MenuItem[]>;
|
|
68
|
+
getTrendingMenu(): Observable<MenuItem[]>;
|
|
69
|
+
verifyEmail(code: string): Observable<unknown>;
|
|
70
|
+
getNewCode(): Observable<unknown>;
|
|
71
|
+
updateEmailAndGetNewCode(email: string): Observable<unknown>;
|
|
72
|
+
getNewAuthCode(type: string): Observable<unknown>;
|
|
73
|
+
associateSsnToUserId(ssn: string): Observable<unknown>;
|
|
74
|
+
getUserIdInUnitBs(): BehaviorSubject<UserModel[]>;
|
|
75
|
+
loadUserIdsFromUnitOfLoggedInUser(unitId: string): void;
|
|
76
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoginService, never>;
|
|
77
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LoginService>;
|
|
78
|
+
}
|
|
79
|
+
//# sourceMappingURL=login.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"login.service.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/services/login/login.service.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export interface MaintenanceStatusModel {
|
|
4
|
+
isAppUnderMaintenance: boolean;
|
|
5
|
+
msg: string;
|
|
6
|
+
startTime: string;
|
|
7
|
+
endTime: string;
|
|
8
|
+
}
|
|
9
|
+
export declare class MaintenanceService {
|
|
10
|
+
http: HttpClient;
|
|
11
|
+
constructor(http: HttpClient);
|
|
12
|
+
checkforMaintenance(): import("rxjs").Observable<MaintenanceStatusModel>;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MaintenanceService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MaintenanceService>;
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=maintenance.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"maintenance.service.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/services/maintenance/maintenance.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;;AAIlD,MAAM,WAAW,sBAAsB;IACrC,qBAAqB,EAAG,OAAO,CAAC;IACjC,GAAG,EAAG,MAAM,CAAC;IACb,SAAS,EAAG,MAAM,CAAC;IACnB,OAAO,EAAG,MAAM,CAAC;CACjB;AAED,qBAGa,kBAAkB;IAEV,IAAI,EAAG,UAAU;gBAAjB,IAAI,EAAG,UAAU;IAEpC,mBAAmB;yCAJR,kBAAkB;6CAAlB,kBAAkB;CAO9B"}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { BehaviorSubject } from 'rxjs';
|
|
3
|
+
import { Subscription } from 'rxjs';
|
|
4
|
+
import { BaseService } from '../base-service';
|
|
5
|
+
import { NotificationModel } from '../../models/NotificationModel';
|
|
6
|
+
import { LoggerService } from '../logger/logger.service';
|
|
7
|
+
import { NewsAndAnnouncementModel } from '../../models/NewsAndAnnouncementModel';
|
|
8
|
+
import { TrendModel } from '../../models/TrendModel';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export declare class NotificationService extends BaseService {
|
|
11
|
+
private logger;
|
|
12
|
+
private opt;
|
|
13
|
+
subscription: Subscription;
|
|
14
|
+
notificationCount: BehaviorSubject<number>;
|
|
15
|
+
notifications: BehaviorSubject<NotificationModel[]>;
|
|
16
|
+
showNotificationLoader: boolean;
|
|
17
|
+
constructor(httpClient: HttpClient, logger: LoggerService);
|
|
18
|
+
getNotificationCount(): import("rxjs").Observable<number>;
|
|
19
|
+
getNotifications(): import("rxjs").Observable<NotificationModel[]>;
|
|
20
|
+
updateReadFlag(): Subscription;
|
|
21
|
+
setServiceContext(): void;
|
|
22
|
+
setServicePort(): void;
|
|
23
|
+
setServiceProtocol(): void;
|
|
24
|
+
setServiceHost(): void;
|
|
25
|
+
getReadNotifications(): NotificationModel[];
|
|
26
|
+
getReadNotificationCount(): number;
|
|
27
|
+
getUnReadNotifications(): NotificationModel[];
|
|
28
|
+
getUnreadNotificationCount(): number;
|
|
29
|
+
markForUpdate(notificationId: any): void;
|
|
30
|
+
markAsRead(notificationId: any): void;
|
|
31
|
+
setupNotificationTimer(): void;
|
|
32
|
+
removeNotificationTimer(): void;
|
|
33
|
+
private loadNotificationCount;
|
|
34
|
+
fetchNewsAnnouncementsInformation(): import("rxjs").Observable<NewsAndAnnouncementModel[]>;
|
|
35
|
+
fetchTrends(): import("rxjs").Observable<TrendModel[]>;
|
|
36
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationService, never>;
|
|
37
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<NotificationService>;
|
|
38
|
+
}
|
|
39
|
+
//# sourceMappingURL=notification.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"notification.service.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/services/notification/notification.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAe,MAAM,sBAAsB,CAAC;AAC/D,OAAO,EAAE,eAAe,EAAE,MAAM,MAAM,CAAC;AACvC,OAAO,EAAY,YAAY,EAAE,MAAM,MAAM,CAAC;AAC9C,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAE9C,OAAO,EAAE,iBAAiB,EAAE,MAAM,gCAAgC,CAAC;AACnE,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AACzD,OAAO,EAAE,wBAAwB,EAAE,MAAM,uCAAuC,CAAC;AACjF,OAAO,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;;AAErD,qBAGa,mBAAoB,SAAQ,WAAW;IAgBb,OAAO,CAAC,MAAM;IAdnD,OAAO,CAAC,GAAG,CAIV;IAED,YAAY,EAAE,YAAY,CAAC;IAEpB,iBAAiB,EAAG,eAAe,CAAC,MAAM,CAAC,CAA0B;IAErE,aAAa,EAAG,eAAe,CAAC,iBAAiB,EAAE,CAAC,CAA2B;IAE/E,sBAAsB,UAAS;gBAE1B,UAAU,EAAG,UAAU,EAAU,MAAM,EAAE,aAAa;IAKlE,oBAAoB;IAIpB,gBAAgB;IAIhB,cAAc;IAcd,iBAAiB;IAIjB,cAAc;IAId,kBAAkB;IAIlB,cAAc;IAId,oBAAoB;IAMpB,wBAAwB;IAIxB,sBAAsB;IAMtB,0BAA0B;IAM1B,aAAa,CAAC,cAAc,KAAA;IAK5B,UAAU,CAAC,cAAc,KAAA;IAMzB,sBAAsB;IAKtB,uBAAuB;IAMvB,OAAO,CAAC,qBAAqB;IAc7B,iCAAiC;IAIjC,WAAW;yCAzHA,mBAAmB;6CAAnB,mBAAmB;CA4H/B"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { BaseService } from '../base-service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class OvpService extends BaseService {
|
|
5
|
+
http: HttpClient;
|
|
6
|
+
constructor(http: HttpClient);
|
|
7
|
+
setServiceContext(): void;
|
|
8
|
+
setServicePort(): void;
|
|
9
|
+
setServiceProtocol(): void;
|
|
10
|
+
setServiceHost(): void;
|
|
11
|
+
triggerOverpaymentEvent(): import("rxjs").Observable<any>;
|
|
12
|
+
triggerOverpaymentEventHistory(): import("rxjs").Observable<any>;
|
|
13
|
+
triggerRepaymentEvent(ssnInput: string): Promise<any>;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OvpService, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<OvpService>;
|
|
16
|
+
}
|
|
17
|
+
//# sourceMappingURL=ovp.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ovp.service.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/services/ovp/ovp.service.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAGlD,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,uBAAuB;IAGvB,8BAA8B;IAI9B,qBAAqB,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,GAAG,CAAC;yCA1B1C,UAAU;6CAAV,UAAU;CAgCtB"}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { BehaviorSubject } from 'rxjs';
|
|
3
|
+
import { SuccessPageElement } from '../../models/questionnaire/SuccessPageElement';
|
|
4
|
+
import { QuestionnaireQueryModel } from '../../models/questionnaire/QuestionnaireQueryModel';
|
|
5
|
+
import { QuestionnaireSaveModel } from '../../models/questionnaire/QuestionnaireSaveModel';
|
|
6
|
+
import { QuestionnaireReturnModel } from '../../models/questionnaire/QuestionnaireReturnModel';
|
|
7
|
+
import { FBConfigModel } from '../../models/questionnaire/FBConfigModel';
|
|
8
|
+
import { BaseService } from '../base-service';
|
|
9
|
+
import { LoggerService } from '../logger/logger.service';
|
|
10
|
+
import { PaymentComponentModel } from '../../models/PaymentComponentModel';
|
|
11
|
+
import * as i0 from "@angular/core";
|
|
12
|
+
export declare class QuestionnaireService extends BaseService {
|
|
13
|
+
private http;
|
|
14
|
+
private logger;
|
|
15
|
+
successElement: BehaviorSubject<SuccessPageElement>;
|
|
16
|
+
uuid: BehaviorSubject<String>;
|
|
17
|
+
waitForProcessing: BehaviorSubject<String>;
|
|
18
|
+
waitCheckServiceUri: BehaviorSubject<String>;
|
|
19
|
+
pageToOpen: BehaviorSubject<String>;
|
|
20
|
+
constructor(http: HttpClient, logger: LoggerService);
|
|
21
|
+
getQuestionnaire(questionnaireQueryModel: QuestionnaireQueryModel): import("rxjs").Observable<QuestionnaireReturnModel[]>;
|
|
22
|
+
getScreenQuestions(questionnaireQueryModel: QuestionnaireQueryModel): import("rxjs").Observable<QuestionnaireReturnModel[]>;
|
|
23
|
+
fetchData(fieldValue: string, serverUrl: string): import("rxjs").Observable<unknown>;
|
|
24
|
+
saveQuestionnaire(questionnaireData: QuestionnaireSaveModel): import("rxjs").Observable<QuestionnaireReturnModel[]>;
|
|
25
|
+
saveScreenQuestionnaire(questionnaireData: QuestionnaireSaveModel): import("rxjs").Observable<unknown>;
|
|
26
|
+
getFlowData(key: string): import("rxjs").Observable<FBConfigModel>;
|
|
27
|
+
getCounty(stateValue: string, zipcode: string): import("rxjs").Observable<unknown>;
|
|
28
|
+
savePaymentDetails(paymentComponentData: PaymentComponentModel[], potentialIssueId: number): import("rxjs").Observable<unknown>;
|
|
29
|
+
setServiceContext(): void;
|
|
30
|
+
setServicePort(): void;
|
|
31
|
+
setServiceProtocol(): void;
|
|
32
|
+
setServiceHost(): void;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<QuestionnaireService, never>;
|
|
34
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<QuestionnaireService>;
|
|
35
|
+
}
|
|
36
|
+
//# sourceMappingURL=questionnaire.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"questionnaire.service.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/services/questionnaire/questionnaire.service.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAClD,OAAO,EAAE,eAAe,EAAE,MAAM,MAAM,CAAC;AACvC,OAAO,EAAE,kBAAkB,EAAE,MAAM,+CAA+C,CAAC;AACnF,OAAO,EAAE,uBAAuB,EAAE,MAAM,oDAAoD,CAAC;AAC7F,OAAO,EAAE,sBAAsB,EAAE,MAAM,mDAAmD,CAAC;AAC3F,OAAO,EAAE,wBAAwB,EAAE,MAAM,qDAAqD,CAAC;AAC/F,OAAO,EAAE,aAAa,EAAE,MAAM,0CAA0C,CAAC;AACzE,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAC9C,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AAEzD,OAAO,EAAE,qBAAqB,EAAE,MAAM,oCAAoC,CAAC;;AAE3E,qBAGa,oBAAqB,SAAQ,WAAW;IAQvC,OAAO,CAAC,IAAI;IAAc,OAAO,CAAC,MAAM;IAN7C,cAAc,EAAG,eAAe,CAAC,kBAAkB,CAAC,CAAiD;IACrG,IAAI,EAAC,eAAe,CAAC,MAAM,CAAC,CAAqC;IACjE,iBAAiB,EAAC,eAAe,CAAC,MAAM,CAAC,CAAqC;IAC9E,mBAAmB,EAAC,eAAe,CAAC,MAAM,CAAC,CAAqC;IAChF,UAAU,EAAC,eAAe,CAAC,MAAM,CAAC,CAAqC;gBAE1D,IAAI,EAAE,UAAU,EAAU,MAAM,EAAE,aAAa;IAEnE,gBAAgB,CAAC,uBAAuB,EAAE,uBAAuB;IAIjE,kBAAkB,CAAC,uBAAuB,EAAE,uBAAuB;IAKnE,SAAS,CAAC,UAAU,EAAC,MAAM,EAAC,SAAS,EAAC,MAAM;IAI5C,iBAAiB,CAAC,iBAAiB,EAAE,sBAAsB;IAK3D,uBAAuB,CAAC,iBAAiB,EAAE,sBAAsB;IAIjE,WAAW,CAAC,GAAG,EAAC,MAAM;IAItB,SAAS,CAAC,UAAU,EAAC,MAAM,EAAE,OAAO,EAAE,MAAM;IAQ5C,kBAAkB,CAAC,oBAAoB,EAAE,qBAAqB,EAAE,EAAE,gBAAgB,EAAE,MAAM;IAI1F,iBAAiB;IAIjB,cAAc;IAId,kBAAkB;IAIlB,cAAc;yCA5DH,oBAAoB;6CAApB,oBAAoB;CA+DhC"}
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import { HttpHeaders, HttpParams, HttpClient } from '@angular/common/http';
|
|
2
|
+
import { BehaviorSubject, Observable } from 'rxjs';
|
|
3
|
+
import { ClaimAppEmpResponseModel } from '../../models/questionnaire/ClaimAppEmpResponseModel';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ValidationService {
|
|
6
|
+
private httpClient;
|
|
7
|
+
servicePort: string;
|
|
8
|
+
protocol: string;
|
|
9
|
+
host: string;
|
|
10
|
+
dependents: BehaviorSubject<any>;
|
|
11
|
+
weeklyEmployers: BehaviorSubject<any>;
|
|
12
|
+
bpEmpLstFrmService: BehaviorSubject<ClaimAppEmpResponseModel>;
|
|
13
|
+
bpEmpLstFrmAdd: BehaviorSubject<ClaimAppEmpResponseModel>;
|
|
14
|
+
participants: BehaviorSubject<any>;
|
|
15
|
+
payForm: BehaviorSubject<any>;
|
|
16
|
+
private options;
|
|
17
|
+
constructor(httpClient: HttpClient);
|
|
18
|
+
getUrl(endPoint: string): string;
|
|
19
|
+
get<T>(url: string, options?: {
|
|
20
|
+
headers?: HttpHeaders | {
|
|
21
|
+
[header: string]: string | string[];
|
|
22
|
+
};
|
|
23
|
+
observe?: 'body';
|
|
24
|
+
params?: HttpParams | {
|
|
25
|
+
[param: string]: string | string[];
|
|
26
|
+
};
|
|
27
|
+
reportProgress?: boolean;
|
|
28
|
+
responseType?: 'json';
|
|
29
|
+
withCredentials?: boolean;
|
|
30
|
+
}): Observable<T>;
|
|
31
|
+
post<T>(url: string, body: any | null, options?: {
|
|
32
|
+
headers?: HttpHeaders | {
|
|
33
|
+
[header: string]: string | string[];
|
|
34
|
+
};
|
|
35
|
+
observe?: 'body';
|
|
36
|
+
params?: HttpParams | {
|
|
37
|
+
[param: string]: string | string[];
|
|
38
|
+
};
|
|
39
|
+
reportProgress?: boolean;
|
|
40
|
+
responseType?: 'json';
|
|
41
|
+
withCredentials?: boolean;
|
|
42
|
+
}, serviceName?: string): Observable<T>;
|
|
43
|
+
postFormData<T>(url: string, body: any | null, options?: {
|
|
44
|
+
headers?: HttpHeaders | {
|
|
45
|
+
[header: string]: string | string[];
|
|
46
|
+
};
|
|
47
|
+
observe?: 'body';
|
|
48
|
+
params?: HttpParams | {
|
|
49
|
+
[param: string]: string | string[];
|
|
50
|
+
};
|
|
51
|
+
reportProgress?: boolean;
|
|
52
|
+
responseType?: 'json';
|
|
53
|
+
withCredentials?: boolean;
|
|
54
|
+
}): Observable<T>;
|
|
55
|
+
delete<T>(url: string, options?: {
|
|
56
|
+
headers?: HttpHeaders | {
|
|
57
|
+
[header: string]: string | string[];
|
|
58
|
+
};
|
|
59
|
+
observe?: 'body';
|
|
60
|
+
params?: HttpParams | {
|
|
61
|
+
[param: string]: string | string[];
|
|
62
|
+
};
|
|
63
|
+
reportProgress?: boolean;
|
|
64
|
+
responseType?: 'json';
|
|
65
|
+
withCredentials?: boolean;
|
|
66
|
+
}): Observable<T>;
|
|
67
|
+
patch<T>(url: string, body: any | null, options?: {
|
|
68
|
+
headers?: HttpHeaders | {
|
|
69
|
+
[header: string]: string | string[];
|
|
70
|
+
};
|
|
71
|
+
observe?: 'body';
|
|
72
|
+
params?: HttpParams | {
|
|
73
|
+
[param: string]: string | string[];
|
|
74
|
+
};
|
|
75
|
+
reportProgress?: boolean;
|
|
76
|
+
responseType?: 'json';
|
|
77
|
+
withCredentials?: boolean;
|
|
78
|
+
}): Observable<T>;
|
|
79
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ValidationService, never>;
|
|
80
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ValidationService>;
|
|
81
|
+
}
|
|
82
|
+
//# sourceMappingURL=validation.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"validation.service.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/services/questionnaire/validation.service.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,18 @@
|
|
|
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 SecurityService extends BaseService {
|
|
6
|
+
http: HttpClient;
|
|
7
|
+
constructor(http: HttpClient);
|
|
8
|
+
setServiceContext(): void;
|
|
9
|
+
setServicePort(): void;
|
|
10
|
+
setServiceProtocol(): void;
|
|
11
|
+
setServiceHost(): void;
|
|
12
|
+
getUserUnitIdRoleId(unitId: string, roleId: string[]): Observable<any[]>;
|
|
13
|
+
generateURLForUSPS(userId: string): Observable<string>;
|
|
14
|
+
lockClaimantAccount(userId: string): Observable<unknown>;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SecurityService, never>;
|
|
16
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SecurityService>;
|
|
17
|
+
}
|
|
18
|
+
//# sourceMappingURL=security.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"security.service.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/services/security-service/security.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAe,MAAM,sBAAsB,CAAC;AAG/D,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAC9C,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;;AAElC,qBAGa,eAAgB,SAAQ,WAAW;IAE3B,IAAI,EAAE,UAAU;gBAAhB,IAAI,EAAE,UAAU;IAInC,iBAAiB;IAGjB,cAAc;IAGd,kBAAkB;IAGlB,cAAc;IAKd,mBAAmB,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE;IAKpD,kBAAkB,CAAC,MAAM,EAAE,MAAM,GAAG,UAAU,CAAC,MAAM,CAAC;IAItD,mBAAmB,CAAC,MAAM,EAAC,MAAM;yCA7BtB,eAAe;6CAAf,eAAe;CAgC3B"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { ActivatedRoute } from '@angular/router';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import { LoggerService } from '../logger/logger.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class TourService {
|
|
7
|
+
private http;
|
|
8
|
+
private ar;
|
|
9
|
+
private logger;
|
|
10
|
+
private currentStepsCount;
|
|
11
|
+
steps: any[];
|
|
12
|
+
tourConfig: Array<{
|
|
13
|
+
pageId: string;
|
|
14
|
+
stepsCount: number;
|
|
15
|
+
}>;
|
|
16
|
+
constructor(http: HttpClient, ar: ActivatedRoute, logger: LoggerService);
|
|
17
|
+
loadTourConfig(): void;
|
|
18
|
+
getSteps(numberOfSteps: number): any[];
|
|
19
|
+
setCurrentStepsCount(newValue: number): void;
|
|
20
|
+
setSetpsCount(pageId: string): void;
|
|
21
|
+
getCurrentStepsCount(): Observable<number>;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TourService, never>;
|
|
23
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TourService>;
|
|
24
|
+
}
|
|
25
|
+
//# sourceMappingURL=tour.service.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tour.service.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/services/tour/tour.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAElD,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACjD,OAAO,EAAmB,UAAU,EAAE,MAAM,MAAM,CAAC;AACnD,OAAO,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;;AAEzD,qBAGa,WAAW;IAWZ,OAAO,CAAC,IAAI;IAAe,OAAO,CAAC,EAAE;IAAkB,OAAO,CAAC,MAAM;IANjF,OAAO,CAAC,iBAAiB,CAA2D;IAEpF,KAAK,QAAW;IAEhB,UAAU,EAAG,KAAK,CAAC;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,UAAU,EAAE,MAAM,CAAA;KAAC,CAAC,CAAM;gBAE3C,IAAI,EAAG,UAAU,EAAU,EAAE,EAAE,cAAc,EAAU,MAAM,EAAE,aAAa;IAOhG,cAAc;IAcd,QAAQ,CAAC,aAAa,EAAE,MAAM;IAI9B,oBAAoB,CAAC,QAAQ,EAAE,MAAM,GAAG,IAAI;IAI5C,aAAa,CAAC,MAAM,EAAG,MAAM;IAU7B,oBAAoB,IAAI,UAAU,CAAC,MAAM,CAAC;yCAlD7B,WAAW;6CAAX,WAAW;CAqDvB"}
|