@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,23 @@
|
|
|
1
|
+
export declare class ClaimantModel {
|
|
2
|
+
claimantId: string;
|
|
3
|
+
userId: string;
|
|
4
|
+
ssn: string;
|
|
5
|
+
firstName: string;
|
|
6
|
+
middleInitial: string;
|
|
7
|
+
lastName: string;
|
|
8
|
+
otherLastName: string;
|
|
9
|
+
firstNameSsCard: string;
|
|
10
|
+
lastNameSsCard: string;
|
|
11
|
+
dateOfBirth: Date;
|
|
12
|
+
locked: string;
|
|
13
|
+
signature: string;
|
|
14
|
+
pin: string;
|
|
15
|
+
ssaStatus: string;
|
|
16
|
+
signupAttempts: number;
|
|
17
|
+
reasonUserIdLocked: string;
|
|
18
|
+
ivrLocked: string;
|
|
19
|
+
reasonForIvrLock: string;
|
|
20
|
+
selfServiceStatus: string;
|
|
21
|
+
selfServiceLock: string;
|
|
22
|
+
}
|
|
23
|
+
//# sourceMappingURL=ClaimantModel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ClaimantModel.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/models/claimant/ClaimantModel.ts"],"names":[],"mappings":"AAAA,qBAAa,aAAa;IACtB,UAAU,EAAG,MAAM,CAAC;IAEvB,MAAM,EAAG,MAAM,CAAC;IAEhB,GAAG,EAAG,MAAM,CAAC;IAEb,SAAS,EAAG,MAAM,CAAC;IAEnB,aAAa,EAAG,MAAM,CAAC;IAEvB,QAAQ,EAAG,MAAM,CAAC;IAElB,aAAa,EAAG,MAAM,CAAC;IAEvB,eAAe,EAAG,MAAM,CAAC;IAEzB,cAAc,EAAG,MAAM,CAAC;IAExB,WAAW,EAAG,IAAI,CAAC;IAEnB,MAAM,EAAG,MAAM,CAAC;IAEhB,SAAS,EAAG,MAAM,CAAC;IAEnB,GAAG,EAAG,MAAM,CAAC;IAEb,SAAS,EAAG,MAAM,CAAC;IAEnB,cAAc,EAAG,MAAM,CAAC;IAExB,kBAAkB,EAAG,MAAM,CAAC;IAE5B,SAAS,EAAG,MAAM,CAAC;IAEnB,gBAAgB,EAAG,MAAM,CAAC;IAE1B,iBAAiB,EAAG,MAAM,CAAC;IAE3B,eAAe,EAAG,MAAM,CAAC;CACzB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"JobResultsData.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/models/claimant/JobResultsData.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C,qBAAa,cAAc;IAC1B,iBAAiB,EAAE,YAAY,EAAE,CAAC;IAClC,iBAAiB,EAAE,MAAM,CAAC;IAC1B,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;CAChB"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export declare class MatchingJobs {
|
|
2
|
+
jobOrderNumber: number;
|
|
3
|
+
jobTitle: string;
|
|
4
|
+
employerName: string;
|
|
5
|
+
numberOfOpenings: number;
|
|
6
|
+
jobOrderURL: string;
|
|
7
|
+
sequenceNumber: number;
|
|
8
|
+
notificationStatus: string;
|
|
9
|
+
claimantMatchingJobId: number;
|
|
10
|
+
payRange: number;
|
|
11
|
+
jobOrderCreateDate: Date;
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=MatchingJobs.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MatchingJobs.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/models/claimant/MatchingJobs.ts"],"names":[],"mappings":"AAAA,qBAAa,YAAY;IACrB,cAAc,EAAE,MAAM,CAAC;IAC1B,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,EAAE,MAAM,CAAC;IACrB,gBAAgB,EAAE,MAAM,CAAC;IACzB,WAAW,EAAE,MAAM,CAAC;IACpB,cAAc,EAAE,MAAM,CAAC;IACvB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,qBAAqB,EAAE,MAAM,CAAC;IAC9B,QAAQ,EAAE,MAAM,CAAC;IACjB,kBAAkB,EAAE,IAAI,CAAC;CACzB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ResetPasswordModel.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/models/claimant/ResetPasswordModel.ts"],"names":[],"mappings":"AAAA,qBAAa,kBAAkB;IAC3B,UAAU,MAAC;IAEd,MAAM,MAAC;IAEP,QAAQ,MAAC;IAET,eAAe,MAAC;IAEhB,WAAW,MAAC;IAEZ,MAAM,MAAC;CACP"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Choices } from '../../components/search-employer/search-employer.component';
|
|
2
|
+
import { KeyValueModel } from '../questionnaire/KeyValueModel';
|
|
3
|
+
export declare class CaseCoreModel {
|
|
4
|
+
caseId: string;
|
|
5
|
+
caseNumber: string;
|
|
6
|
+
businessId: string;
|
|
7
|
+
caseStatus: Choices;
|
|
8
|
+
entityName: string;
|
|
9
|
+
id: string;
|
|
10
|
+
level: Choices;
|
|
11
|
+
status: Choices;
|
|
12
|
+
assignedTouser: Choices;
|
|
13
|
+
age: string;
|
|
14
|
+
ageColor: string;
|
|
15
|
+
createdOn: string;
|
|
16
|
+
department: KeyValueModel;
|
|
17
|
+
unit: KeyValueModel;
|
|
18
|
+
closeCaseReason: Choices;
|
|
19
|
+
generatedThrough: Choices;
|
|
20
|
+
}
|
|
21
|
+
//# sourceMappingURL=CaseCoreModel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CaseCoreModel.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/models/cmp/CaseCoreModel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,4DAA4D,CAAC;AACrF,OAAO,EAAE,aAAa,EAAE,MAAM,gCAAgC,CAAC;AAE/D,qBAAa,aAAa;IACtB,MAAM,EAAE,MAAM,CAAC;IACf,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,OAAO,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;IACnB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,OAAO,CAAC;IACf,MAAM,EAAE,OAAO,CAAC;IAChB,cAAc,EAAC,OAAO,CAAC;IACvB,GAAG,EAAE,MAAM,CAAC;IACZ,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,aAAa,CAAC;IAC1B,IAAI,EAAE,aAAa,CAAA;IACnB,eAAe,EAAE,OAAO,CAAC;IACzB,gBAAgB,EAAE,OAAO,CAAC;CAC7B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ComplaintCategoryModel.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/models/cmp/ComplaintCategoryModel.ts"],"names":[],"mappings":"AAAA,qBAAa,sBAAsB;IAElC,mBAAmB,EAAE,MAAM,CAAC;IAC5B,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,MAAM,CAAC;IACb,gBAAgB,EAAE,MAAM,CAAC;IACzB,YAAY,EAAE,MAAM,CAAC;CACrB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ComplaintCategoryOutputModel.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/models/cmp/ComplaintCategoryOutputModel.ts"],"names":[],"mappings":"AAAA,qBAAa,4BAA4B;IACxC,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;;CAId"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { ChoicesModel } from "../AddressComponentModel";
|
|
2
|
+
export declare class ContactUsModel {
|
|
3
|
+
city: string;
|
|
4
|
+
complaintCategory: string;
|
|
5
|
+
department: string;
|
|
6
|
+
ean: string;
|
|
7
|
+
email: string;
|
|
8
|
+
employerName: string;
|
|
9
|
+
fein: string;
|
|
10
|
+
firstName: string;
|
|
11
|
+
inquiryBy: string;
|
|
12
|
+
inquiryType: string;
|
|
13
|
+
lastName: string;
|
|
14
|
+
line1: string;
|
|
15
|
+
line2: string;
|
|
16
|
+
phone1: string;
|
|
17
|
+
phone2: string;
|
|
18
|
+
ssn: string;
|
|
19
|
+
state: string;
|
|
20
|
+
zip: string;
|
|
21
|
+
generatedThrough: ChoicesModel;
|
|
22
|
+
}
|
|
23
|
+
//# sourceMappingURL=ContactUsModel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ContactUsModel.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/models/cmp/ContactUsModel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,0BAA0B,CAAC;AAExD,qBAAa,cAAc;IAC1B,IAAI,EAAE,MAAM,CAAC;IACb,iBAAiB,EAAE,MAAM,CAAC;IAC1B,UAAU,EAAE,MAAM,CAAC;IACnB,GAAG,EAAE,MAAM,CAAC;IACZ,KAAK,EAAE,MAAM,CAAC;IACd,YAAY,EAAE,MAAM,CAAC;IACrB,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;IACf,GAAG,EAAE,MAAM,CAAC;IACZ,KAAK,EAAE,MAAM,CAAC;IACd,GAAG,EAAE,MAAM,CAAC;IACZ,gBAAgB,EAAE,YAAY,CAAC;CAC/B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EmailTemplateModel.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/models/cmp/EmailTemplateModel.ts"],"names":[],"mappings":"AAAA,qBAAa,kBAAkB;IAC3B,kBAAkB,EAAE,MAAM,CAAC;IAC3B,YAAY,EAAE,MAAM,CAAC;IACrB,oBAAoB,EAAE,MAAM,CAAC;IAC7B,YAAY,EAAE,MAAM,CAAC;CACxB"}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { ComplaintCategoryOutputModel } from "./ComplaintCategoryOutputModel";
|
|
2
|
+
export declare class AddressModel {
|
|
3
|
+
streetAddress?: string;
|
|
4
|
+
optionalAddress?: string;
|
|
5
|
+
zip?: string;
|
|
6
|
+
city?: string;
|
|
7
|
+
county?: ChoicesModel;
|
|
8
|
+
state?: ChoicesModel;
|
|
9
|
+
country?: ChoicesModel;
|
|
10
|
+
}
|
|
11
|
+
export declare class ChoicesModel {
|
|
12
|
+
value: string;
|
|
13
|
+
text: string;
|
|
14
|
+
}
|
|
15
|
+
export declare class ContactUsInqueryModel {
|
|
16
|
+
inquiryId?: string;
|
|
17
|
+
inquiryBy: string;
|
|
18
|
+
userType?: ChoicesModel;
|
|
19
|
+
firstName: string;
|
|
20
|
+
lastName: string;
|
|
21
|
+
address?: AddressModel;
|
|
22
|
+
ssn: string;
|
|
23
|
+
claimantId: string;
|
|
24
|
+
ean: string;
|
|
25
|
+
fein: string;
|
|
26
|
+
selectedReason?: ChoicesModel;
|
|
27
|
+
complaintCategory: ComplaintCategoryOutputModel;
|
|
28
|
+
question: string;
|
|
29
|
+
department: string;
|
|
30
|
+
email: string;
|
|
31
|
+
phone: string;
|
|
32
|
+
altPhone: string;
|
|
33
|
+
streetAddress: string;
|
|
34
|
+
optionalAddress: string;
|
|
35
|
+
state: string;
|
|
36
|
+
city: string;
|
|
37
|
+
zip: string;
|
|
38
|
+
country: string;
|
|
39
|
+
division: ChoicesModel;
|
|
40
|
+
unit: ChoicesModel;
|
|
41
|
+
assignCaseTo: ChoicesModel;
|
|
42
|
+
caseOwnerGroupKey: ChoicesModel;
|
|
43
|
+
closeCaseReason: ChoicesModel;
|
|
44
|
+
generatedThrough?: ChoicesModel;
|
|
45
|
+
constructor();
|
|
46
|
+
}
|
|
47
|
+
//# sourceMappingURL=contactUsInqueryModel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"contactUsInqueryModel.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/models/cmp/contactUsInqueryModel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAC;AAE9E,MAAM,CAAC,OAAO,OAAO,YAAY;IAC7B,aAAa,CAAC,EAAC,MAAM,CAAC;IACtB,eAAe,CAAC,EAAC,MAAM,CAAC;IACxB,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,YAAY,CAAC;IACtB,KAAK,CAAC,EAAE,YAAY,CAAC;IACrB,OAAO,CAAC,EAAE,YAAY,CAAC;CAC1B;AAED,qBAAa,YAAY;IACrB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;CAChB;AAED,qBAAa,qBAAqB;IAC9B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,YAAY,CAAC;IACxB,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,CAAC,EAAE,YAAY,CAAC;IACvB,GAAG,EAAE,MAAM,CAAC;IACZ,UAAU,EAAE,MAAM,CAAC;IACnB,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,cAAc,CAAC,EAAE,YAAY,CAAC;IAC9B,iBAAiB,EAAE,4BAA4B,CAAC;IAChD,QAAQ,EAAE,MAAM,CAAC;IAEjB,UAAU,EAAE,MAAM,CAAC;IAEnB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,aAAa,EAAE,MAAM,CAAC;IACtB,eAAe,EAAE,MAAM,CAAC;IACxB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,GAAG,EAAE,MAAM,CAAC;IACZ,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,YAAY,CAAC;IACvB,IAAI,EAAE,YAAY,CAAC;IACnB,YAAY,EAAE,YAAY,CAAC;IAC3B,iBAAiB,EAAE,YAAY,CAAC;IAChC,eAAe,EAAE,YAAY,CAAC;IAC9B,gBAAgB,CAAC,EAAE,YAAY,CAAC;;CAInC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"messageRourceModel.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/models/cmp/messageRourceModel.ts"],"names":[],"mappings":"AAAA,qBAAa,kBAAkB;IAC9B,GAAG,EAAE,MAAM,CAAC;IACZ,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;CAClB"}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
export interface HistoryModel {
|
|
2
|
+
historyKey: string;
|
|
3
|
+
title: string;
|
|
4
|
+
eventKey: string;
|
|
5
|
+
eventDate: string;
|
|
6
|
+
desc: string;
|
|
7
|
+
color: string;
|
|
8
|
+
actionUri: string;
|
|
9
|
+
processType: string;
|
|
10
|
+
}
|
|
11
|
+
export interface YearWiseHistory {
|
|
12
|
+
icon: string;
|
|
13
|
+
color: string;
|
|
14
|
+
history: HistoryModel[];
|
|
15
|
+
year: string;
|
|
16
|
+
}
|
|
17
|
+
export interface Histories {
|
|
18
|
+
history: YearWiseHistory[];
|
|
19
|
+
}
|
|
20
|
+
export declare class DashboardModel {
|
|
21
|
+
transactionId?: string;
|
|
22
|
+
hintKey?: string;
|
|
23
|
+
icon?: string;
|
|
24
|
+
heading?: string;
|
|
25
|
+
subHeading?: string;
|
|
26
|
+
date?: string;
|
|
27
|
+
button?: {
|
|
28
|
+
buttonIcon?: string;
|
|
29
|
+
iconType?: string;
|
|
30
|
+
color?: string;
|
|
31
|
+
url?: string;
|
|
32
|
+
context?: string;
|
|
33
|
+
uri?: string;
|
|
34
|
+
dialog?: string;
|
|
35
|
+
};
|
|
36
|
+
data?: any;
|
|
37
|
+
triage?: number;
|
|
38
|
+
}
|
|
39
|
+
export interface DashboardModels {
|
|
40
|
+
current: DashboardModel[];
|
|
41
|
+
comingUp: DashboardModel[];
|
|
42
|
+
pending: DashboardModel[];
|
|
43
|
+
}
|
|
44
|
+
//# sourceMappingURL=dashboard-model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dashboard-model.d.ts","sourceRoot":"","sources":["../../../../projects/ngx-reusa-app-lib/src/lib/models/dashboard-model.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,YAAY;IACzB,UAAU,EAAG,MAAM,CAAC;IACpB,KAAK,EAAG,MAAM,CAAC;IACf,QAAQ,EAAG,MAAM,CAAC;IAClB,SAAS,EAAG,MAAM,CAAC;IACnB,IAAI,EAAG,MAAM,CAAC;IACd,KAAK,EAAG,MAAM,CAAC;IACf,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;CACvB;AAED,MAAM,WAAW,eAAe;IAC5B,IAAI,EAAG,MAAM,CAAC;IACd,KAAK,EAAG,MAAM,CAAC;IACf,OAAO,EAAG,YAAY,EAAE,CAAC;IACzB,IAAI,EAAG,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,SAAS;IACtB,OAAO,EAAG,eAAe,EAAE,CAAC;CAC/B;AAED,qBAAa,cAAc;IACvB,aAAc,CAAC,EAAE,MAAM,CAAC;IACxB,OAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,UAAW,CAAC,EAAE,MAAM,CAAC;IACrB,IAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAO,CAAC,EAAE;QACN,UAAW,CAAC,EAAE,MAAM,CAAC;QACrB,QAAS,CAAC,EAAE,MAAM,CAAC;QACnB,KAAM,CAAC,EAAE,MAAM,CAAC;QAChB,GAAI,CAAC,EAAE,MAAM,CAAC;QACd,OAAQ,CAAC,EAAE,MAAM,CAAC;QAClB,GAAI,CAAC,EAAE,MAAM,CAAC;QACd,MAAO,CAAC,EAAE,MAAM,CAAC;KACpB,CAAC;IACF,IAAK,CAAC,EAAE,GAAG,CAAC;IACZ,MAAO,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,eAAe;IAC5B,OAAO,EAAG,cAAc,EAAE,CAAC;IAC3B,QAAQ,EAAG,cAAc,EAAE,CAAC;IAC5B,OAAO,EAAG,cAAc,EAAE,CAAC;CAC9B"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export declare class DependentModels {
|
|
2
|
+
dependents: DependentModel[];
|
|
3
|
+
}
|
|
4
|
+
export declare class DependentModel {
|
|
5
|
+
dependentFirstName: string;
|
|
6
|
+
dependentLastName: string;
|
|
7
|
+
relationship: any;
|
|
8
|
+
dependentDateOfBirth: string;
|
|
9
|
+
isSsnAvailable: string;
|
|
10
|
+
dependentSSN: string;
|
|
11
|
+
doesDependentLiveWithClmt: string;
|
|
12
|
+
isClmtMainlySupportingDependent: string;
|
|
13
|
+
isDependentStudent: string;
|
|
14
|
+
hasDisability: string;
|
|
15
|
+
isDependentMarried: string;
|
|
16
|
+
dependentId: number;
|
|
17
|
+
dependentDetailId: number;
|
|
18
|
+
markForDeletion: boolean;
|
|
19
|
+
}
|
|
20
|
+
//# sourceMappingURL=dependent.model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dependent.model.d.ts","sourceRoot":"","sources":["../../../../projects/ngx-reusa-app-lib/src/lib/models/dependent.model.ts"],"names":[],"mappings":"AAAA,qBAAa,eAAe;IACxB,UAAU,EAAG,cAAc,EAAE,CAAM;CACtC;AAED,qBAAa,cAAc;IACvB,kBAAkB,EAAG,MAAM,CAAC;IAE5B,iBAAiB,EAAG,MAAM,CAAC;IAE3B,YAAY,EAAG,GAAG,CAAC;IAEnB,oBAAoB,EAAG,MAAM,CAAC;IAE9B,cAAc,EAAG,MAAM,CAAC;IAExB,YAAY,EAAG,MAAM,CAAC;IAEtB,yBAAyB,EAAG,MAAM,CAAC;IAEnC,+BAA+B,EAAG,MAAM,CAAC;IAEzC,kBAAkB,EAAG,MAAM,CAAC;IAE5B,aAAa,EAAG,MAAM,CAAC;IAEvB,kBAAkB,EAAG,MAAM,CAAC;IAE5B,WAAW,EAAG,MAAM,CAAC;IAErB,iBAAiB,EAAG,MAAM,CAAC;IAE3B,eAAe,EAAG,OAAO,CAAC;CAE7B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AutocoderModel.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/models/questionnaire/AutocoderModel.ts"],"names":[],"mappings":"AAAA,qBAAa,cAAc;IACvB,OAAO,CAAC,EAAC,MAAM,CAAC;IAChB,cAAc,CAAC,EAAC,MAAM,CAAC;IACvB,QAAQ,CAAC,EAAC,MAAM,CAAC;IACjB,oBAAoB,CAAC,EAAC,MAAM,CAAC;IAC7B,UAAU,CAAC,EAAC,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAC,MAAM,CAAC;CACpB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ClaimAppEmpRequestModel.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/models/questionnaire/ClaimAppEmpRequestModel.ts"],"names":[],"mappings":"AAAA,qBAAa,uBAAuB;IAChC,GAAG,CAAC,EAAC,MAAM,CAAC;IACf,kBAAkB,CAAC,EAAC,IAAI,CAAC;IACzB,SAAS,CAAC,EAAC,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAC,MAAM,CAAC;IACjB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;CAClB"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { ClaimAppEmployerDetailsModel } from "./ClaimAppEmployerDetailsModel";
|
|
2
|
+
import { QtrYearEmployerWageModel } from "./QtrYearEmployerWageModel";
|
|
3
|
+
export declare class ClaimAppEmpResponseModel {
|
|
4
|
+
ssn?: string;
|
|
5
|
+
hideMonetaryEstimation?: Boolean;
|
|
6
|
+
wba?: string;
|
|
7
|
+
mba?: string;
|
|
8
|
+
claimEffectiveDate?: Date;
|
|
9
|
+
byeDate?: Date;
|
|
10
|
+
basePeriodStartDate?: Date;
|
|
11
|
+
basePeriodEndDate?: Date;
|
|
12
|
+
bpStartDateToDisplay?: Date;
|
|
13
|
+
qtrYearWageListGeneric?: QtrYearEmployerWageModel[];
|
|
14
|
+
isNewClaimApplication?: Boolean;
|
|
15
|
+
bpEmpList?: ClaimAppEmployerDetailsModel[];
|
|
16
|
+
dateOfBirth?: string;
|
|
17
|
+
}
|
|
18
|
+
//# sourceMappingURL=ClaimAppEmpResponseModel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ClaimAppEmpResponseModel.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/models/questionnaire/ClaimAppEmpResponseModel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,4BAA4B,EAAE,MAAM,gCAAgC,CAAC;AAC9E,OAAO,EAAE,wBAAwB,EAAE,MAAM,4BAA4B,CAAC;AAEtE,qBAAa,wBAAwB;IAEjC,GAAG,CAAC,EAAC,MAAM,CAAC;IACf,sBAAsB,CAAC,EAAC,OAAO,CAAQ;IACvC,GAAG,CAAC,EAAC,MAAM,CAAC;IACZ,GAAG,CAAC,EAAC,MAAM,CAAC;IACZ,kBAAkB,CAAC,EAAC,IAAI,CAAC;IACzB,OAAO,CAAC,EAAC,IAAI,CAAC;IACd,mBAAmB,CAAC,EAAC,IAAI,CAAC;IAC1B,iBAAiB,CAAC,EAAC,IAAI,CAAC;IACxB,oBAAoB,CAAC,EAAC,IAAI,CAAC;IAC3B,sBAAsB,CAAC,EAAC,wBAAwB,EAAE,CAAI;IACtD,qBAAqB,CAAC,EAAC,OAAO,CAAC;IAC/B,SAAS,CAAC,EAAE,4BAA4B,EAAE,CAAM;IAChD,WAAW,CAAC,EAAC,MAAM,CAAC;CACpB"}
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
import { AddressModel } from "../cmp/contactUsInqueryModel";
|
|
2
|
+
import { ClaimOnlyEmployerDataModel } from "./ClaimOnlyEmployerDataModel";
|
|
3
|
+
import { EmployerWagesModel } from './EmployerWagesModel';
|
|
4
|
+
import { QtrYearEmployerWageModel } from "./QtrYearEmployerWageModel";
|
|
5
|
+
export declare class ClaimAppEmployerDetailsModel {
|
|
6
|
+
employerData?: ClaimOnlyEmployerDataModel;
|
|
7
|
+
employerProvidedWages?: EmployerWagesModel;
|
|
8
|
+
employerType?: string;
|
|
9
|
+
employerId?: number;
|
|
10
|
+
employerName?: string;
|
|
11
|
+
othStateEmpName?: string;
|
|
12
|
+
startDate?: Date;
|
|
13
|
+
endDate?: Date;
|
|
14
|
+
mailAddress?: string;
|
|
15
|
+
city?: string;
|
|
16
|
+
state?: Combo;
|
|
17
|
+
country?: Combo;
|
|
18
|
+
zip?: string;
|
|
19
|
+
employerTelephoneNumber?: string;
|
|
20
|
+
bpEmployerFlag?: string;
|
|
21
|
+
osaBpEmployerFlag?: string;
|
|
22
|
+
regEmployerFound?: string;
|
|
23
|
+
reasonSeparation?: Combo;
|
|
24
|
+
dischargeDetail?: Combo;
|
|
25
|
+
volQuitDetails?: Combo;
|
|
26
|
+
grossWages?: string;
|
|
27
|
+
wageAssignability?: string;
|
|
28
|
+
visaSponsorship?: string;
|
|
29
|
+
sevPayFlag?: string;
|
|
30
|
+
weeklyAmount?: number;
|
|
31
|
+
numberOfWeeks?: number;
|
|
32
|
+
sevPayAmount?: number;
|
|
33
|
+
sevPayStartDate?: Date;
|
|
34
|
+
sevPayEndDate?: Date;
|
|
35
|
+
sevPayPaymentStartDate?: Date;
|
|
36
|
+
wageQuarter1?: string;
|
|
37
|
+
wageQuarter2?: string;
|
|
38
|
+
wageQuarter3?: string;
|
|
39
|
+
wageQuarter4?: string;
|
|
40
|
+
wageQuarter5?: string;
|
|
41
|
+
wageQuarter6?: string;
|
|
42
|
+
militaryServiceBranch?: string;
|
|
43
|
+
sfEightFlag?: string;
|
|
44
|
+
agreeFlag?: string;
|
|
45
|
+
pensionFlag?: string;
|
|
46
|
+
regPensionFlag?: string;
|
|
47
|
+
schoolFlag?: string;
|
|
48
|
+
missingFlag?: string;
|
|
49
|
+
workFlag?: string;
|
|
50
|
+
performedService?: string;
|
|
51
|
+
currentFlag?: string;
|
|
52
|
+
dd214Flag?: string;
|
|
53
|
+
ficDestinationCode?: string;
|
|
54
|
+
ficCode?: string;
|
|
55
|
+
processedFlag?: string;
|
|
56
|
+
workFlowFlag?: string;
|
|
57
|
+
requalificationStatus?: string;
|
|
58
|
+
addressLine3?: string;
|
|
59
|
+
jobTileOrPosition?: string;
|
|
60
|
+
claimantEmployedWithEmpr?: string;
|
|
61
|
+
isClmtPaidWhileLow?: string;
|
|
62
|
+
isProofOfAffidavitWagesReceived?: string;
|
|
63
|
+
hasRemuneration?: string;
|
|
64
|
+
payRate?: string;
|
|
65
|
+
payRateFrequency?: Combo;
|
|
66
|
+
pensionreceived?: Date;
|
|
67
|
+
county?: any;
|
|
68
|
+
whopaid?: string;
|
|
69
|
+
worklocationcity?: string;
|
|
70
|
+
worklocationstate?: Combo;
|
|
71
|
+
paymethod?: string;
|
|
72
|
+
docreceived?: string;
|
|
73
|
+
anotherssn?: string;
|
|
74
|
+
approxemp?: string;
|
|
75
|
+
worktype?: string;
|
|
76
|
+
managername?: string;
|
|
77
|
+
businessowner?: any;
|
|
78
|
+
fein?: string;
|
|
79
|
+
doingbusiness?: any;
|
|
80
|
+
naturebusiness?: string;
|
|
81
|
+
paidBy?: string;
|
|
82
|
+
workCity?: string;
|
|
83
|
+
workState?: Combo;
|
|
84
|
+
paymentType?: Combo;
|
|
85
|
+
docsReceived?: Combo;
|
|
86
|
+
otherSSNFlag?: string;
|
|
87
|
+
otherSSN?: string;
|
|
88
|
+
otherNameFlag?: string;
|
|
89
|
+
otherName?: string;
|
|
90
|
+
numberEmployed?: string;
|
|
91
|
+
workType?: string;
|
|
92
|
+
appReconsiderationWages?: string;
|
|
93
|
+
doingBusinessAs?: string;
|
|
94
|
+
quitreason?: Combo;
|
|
95
|
+
hiredBy?: string;
|
|
96
|
+
businessOwner?: string;
|
|
97
|
+
businessNature?: string;
|
|
98
|
+
fedPensionFlag?: string;
|
|
99
|
+
fedMailAddress?: string;
|
|
100
|
+
fedPaymentStartDate?: string;
|
|
101
|
+
fedCity?: string;
|
|
102
|
+
fedCountry?: Combo;
|
|
103
|
+
fedState?: Combo;
|
|
104
|
+
fedCounty?: Combo;
|
|
105
|
+
fedZip?: string;
|
|
106
|
+
totalEntitlement?: string;
|
|
107
|
+
sfEightflag?: string;
|
|
108
|
+
fedWorkCity?: string;
|
|
109
|
+
fedWorkState?: Combo;
|
|
110
|
+
fedWorkCountry?: Combo;
|
|
111
|
+
startDateFed?: string;
|
|
112
|
+
endDateFed?: string;
|
|
113
|
+
jobtitlePosition?: string;
|
|
114
|
+
sameAmtFlag?: string;
|
|
115
|
+
displayVerificationOfWages?: boolean;
|
|
116
|
+
formerlyKnownAs?: string;
|
|
117
|
+
fedJobTileOrPosition?: string;
|
|
118
|
+
fedEmployerName?: string;
|
|
119
|
+
serviceBranch?: Combo;
|
|
120
|
+
startDateMil?: Date;
|
|
121
|
+
endDateMil?: Date;
|
|
122
|
+
milPensionFlag?: string;
|
|
123
|
+
lastPayGrade?: string;
|
|
124
|
+
lastduty?: string;
|
|
125
|
+
placeSeparated?: string;
|
|
126
|
+
noLeaveDays?: string;
|
|
127
|
+
completedFullTermFlag?: string;
|
|
128
|
+
reserveOrGuardFlag?: string;
|
|
129
|
+
wageAmountArray?: QtrYearEmployerWageModel[];
|
|
130
|
+
addressLine1?: string;
|
|
131
|
+
addressLine2?: string;
|
|
132
|
+
ficDestinationId?: string;
|
|
133
|
+
ficDestinationName?: string;
|
|
134
|
+
reserveBranch?: string;
|
|
135
|
+
startDateReserve?: Date;
|
|
136
|
+
endDateReserve?: Date;
|
|
137
|
+
dd214File?: [];
|
|
138
|
+
address?: AddressModel;
|
|
139
|
+
pensionRecvDate?: Date;
|
|
140
|
+
regPensionRecvDate?: Date;
|
|
141
|
+
fedPensionRecvDate?: Date;
|
|
142
|
+
milPensionRecvDate?: Date;
|
|
143
|
+
prevWorkedState?: string;
|
|
144
|
+
severance?: "Y" | "N";
|
|
145
|
+
hasShortTermDisability?: string;
|
|
146
|
+
hasRecvRemuneration?: string;
|
|
147
|
+
remunerationTypes?: string[];
|
|
148
|
+
vacation?: string;
|
|
149
|
+
empDeleted?: string;
|
|
150
|
+
bpEmpDelReason?: string;
|
|
151
|
+
}
|
|
152
|
+
export interface Combo {
|
|
153
|
+
value: string;
|
|
154
|
+
text: string;
|
|
155
|
+
}
|
|
156
|
+
//# sourceMappingURL=ClaimAppEmployerDetailsModel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ClaimAppEmployerDetailsModel.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/models/questionnaire/ClaimAppEmployerDetailsModel.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export declare class ClaimOnlyEmployerDataModel {
|
|
2
|
+
employerId?: number;
|
|
3
|
+
employerType?: string;
|
|
4
|
+
employerName?: string;
|
|
5
|
+
displayName?: string;
|
|
6
|
+
tradeName?: string;
|
|
7
|
+
mailingAddressDisplay?: string;
|
|
8
|
+
mailAddressLine1?: string;
|
|
9
|
+
mailAddressLine2?: string;
|
|
10
|
+
mailAddressLine3?: string;
|
|
11
|
+
mailCity?: string;
|
|
12
|
+
mailState?: string;
|
|
13
|
+
mailCountry?: string;
|
|
14
|
+
mailZip?: string;
|
|
15
|
+
schoolFlag?: string;
|
|
16
|
+
prevWorkedState?: string;
|
|
17
|
+
}
|
|
18
|
+
//# sourceMappingURL=ClaimOnlyEmployerDataModel.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ClaimOnlyEmployerDataModel.d.ts","sourceRoot":"","sources":["../../../../../projects/ngx-reusa-app-lib/src/lib/models/questionnaire/ClaimOnlyEmployerDataModel.ts"],"names":[],"mappings":"AACA,qBAAa,0BAA0B;IAEnC,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAC/B,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,eAAe,CAAC,EAAE,MAAM,CAAC;CAC5B"}
|