integration-web-core--socle 1.4.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of integration-web-core--socle might be problematic. Click here for more details.
- package/cdp-due--authentication-module-master/.babelrc +4 -0
- package/cdp-due--authentication-module-master/.dependabot/config.yml +12 -0
- package/cdp-due--authentication-module-master/.editorconfig +34 -0
- package/cdp-due--authentication-module-master/.github/settings.xml +54 -0
- package/cdp-due--authentication-module-master/.github/workflows/build-branch.yml +50 -0
- package/cdp-due--authentication-module-master/.github/workflows/build-release.yml +24 -0
- package/cdp-due--authentication-module-master/.github/workflows/checkmarx.yml +27 -0
- package/cdp-due--authentication-module-master/.github/workflows/cleanup.yml +18 -0
- package/cdp-due--authentication-module-master/.github/workflows/quality.yml +45 -0
- package/cdp-due--authentication-module-master/.github/workflows/release.yml +59 -0
- package/cdp-due--authentication-module-master/.releaserc +18 -0
- package/cdp-due--authentication-module-master/.tool-versions +1 -0
- package/cdp-due--authentication-module-master/.vcmrc +14 -0
- package/cdp-due--authentication-module-master/CHANGELOG.md +1784 -0
- package/cdp-due--authentication-module-master/CONTRIBUTING.md +3 -0
- package/cdp-due--authentication-module-master/DOCUMENTATION.md +191 -0
- package/cdp-due--authentication-module-master/DOCUMENTATION_EN.MD +204 -0
- package/cdp-due--authentication-module-master/Dockerfile +14 -0
- package/cdp-due--authentication-module-master/README.md +37 -0
- package/cdp-due--authentication-module-master/archi/level-context.dot +23 -0
- package/cdp-due--authentication-module-master/authentication-module.quality.json +24 -0
- package/cdp-due--authentication-module-master/authentication-process.png +0 -0
- package/cdp-due--authentication-module-master/babel.config.js +13 -0
- package/cdp-due--authentication-module-master/docker/README.md +1 -0
- package/cdp-due--authentication-module-master/docker/certificates/prepSSO.crt +33 -0
- package/cdp-due--authentication-module-master/docker/dev/DEVELOPERS.md +149 -0
- package/cdp-due--authentication-module-master/docker/dev/Dockerfile +40 -0
- package/cdp-due--authentication-module-master/docker/dev/docker-compose.yml +26 -0
- package/cdp-due--authentication-module-master/docker/dev/template.env +9 -0
- package/cdp-due--authentication-module-master/docker/entrypoint.sh +4 -0
- package/cdp-due--authentication-module-master/jest.config.js +24 -0
- package/cdp-due--authentication-module-master/jest.setup.js +15 -0
- package/cdp-due--authentication-module-master/keystore.p12 +0 -0
- package/cdp-due--authentication-module-master/package-lock.json +12532 -0
- package/cdp-due--authentication-module-master/package.json +57 -0
- package/cdp-due--authentication-module-master/pom.xml +483 -0
- package/cdp-due--authentication-module-master/product-info.json +3 -0
- package/cdp-due--authentication-module-master/settings.xml +56 -0
- package/cdp-due--authentication-module-master/src/main/config/application-local.yaml +3 -0
- package/cdp-due--authentication-module-master/src/main/config/application.yaml +102 -0
- package/cdp-due--authentication-module-master/src/main/config/bootstrap-local.yaml +4 -0
- package/cdp-due--authentication-module-master/src/main/config/bootstrap-test.yaml +3 -0
- package/cdp-due--authentication-module-master/src/main/config/bootstrap.yaml +15 -0
- package/cdp-due--authentication-module-master/src/main/config/debug.yaml +5 -0
- package/cdp-due--authentication-module-master/src/main/config/logback-properties.xml +7 -0
- package/cdp-due--authentication-module-master/src/main/config/logback-spring.xml +138 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/Application.java +42 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/clients/CiamClient.java +283 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/clients/PingClient.java +90 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/clients/ReachFiveClient.java +262 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/clients/TempoClient.java +82 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/commons/Constants.java +164 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/accountactivation/AccountActivationComponent.java +55 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/accountactivation/AccountActivationFragment.java +32 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/accountactivation/AccountActivationSmsComponent.java +70 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/accountactivation/AccountActivationSmsFragment.java +32 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/callback/BaseCallbackPingController.java +135 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/callback/CallbackController.java +140 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/callback/CallbackPingController.java +87 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/callback/SplittedCallbackPingController.java +58 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/keepalive/KeepAliveComponent.java +42 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/keepalive/KeepAliveFragment.java +32 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/landing/ExampleLandingController.java +24 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/login/AbstractLoginController.java +104 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/login/LoginController.java +179 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/login/LoginFragment.java +21 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/login/LoginOaaController.java +37 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/login/LoginOaaFragment.java +21 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/login/LoginPartnerController.java +41 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/login/LoginPartnerFragment.java +21 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/login/LoginVadController.java +47 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/login/LoginVadFragment.java +21 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/login/VerifyEmailFragment.java +20 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/login/VerifySmsComponent.java +96 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/login/VerifySmsFragment.java +20 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/logout/LogoutController.java +61 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/password/PasswordController.java +62 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/password/ResetPasswordFragment.java +20 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/password/UpdatePasswordFragment.java +20 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/redirect/RedirectToController.java +247 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/config/AccountConfig.java +21 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/config/ApplicationConfig.java +102 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/config/AuthenticationConfig.java +29 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/config/CookiesConfig.java +93 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/config/EmailingConfig.java +18 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/config/FrameOptionsConfig.java +16 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/config/RoleFilterConfig.java +16 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/config/RoleMappingConfiguration.java +23 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/config/WebSecurity.java +61 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/config/clients/CiamClientConfig.java +28 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/config/clients/ClientConfig.java +71 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/config/clients/PingClientConfig.java +33 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/config/clients/ReachFiveClientConfig.java +45 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/config/clients/tempo/OrderConfig.java +18 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/config/clients/tempo/TempoComposerClientConfig.java +29 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/config/clients/tempo/TempoConsolidatorClientConfig.java +29 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/config/oauth/CustomAuthorizationRequestResolver.java +192 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/controllers/AccessTokenController.java +26 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/controllers/AccountController.java +87 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/controllers/PasswordRestController.java +37 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/controllers/RefreshController.java +39 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/controllers/SocialLoginController.java +48 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/controllers/exceptions/EmptyStateAtLoginException.java +15 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/controllers/exceptions/RestExceptionHandler.java +237 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/controllers/exceptions/TokenValidationException.java +12 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/helpers/AccessTokenManager.java +68 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/helpers/CipherUtility.java +64 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/helpers/CookieHelper.java +26 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/helpers/KobiUserHelper.java +92 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/helpers/LogHelper.java +39 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/helpers/ProcessHelper.java +72 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/helpers/StateHelper.java +77 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/helpers/UriHelper.java +38 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/helpers/WebUserHelper.java +86 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/logs/AccessLogsFilter.java +30 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/mappers/AccountMapper.java +60 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/mappers/SearchRequestMapper.java +19 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/AccessToken.java +45 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/IntrospectTokenRequest.java +17 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/IntrospectedToken.java +24 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/LoginRequest.java +19 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/ManagementTokenRequest.java +23 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/Modes.java +5 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/Provider.java +12 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/RevokeTokenRequest.java +20 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/SocialLoginProviders.java +23 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/UserInfos.java +43 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/account/AccountActivationRequest.java +18 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/account/AccountActivationResponse.java +24 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/account/AccountActivationResponseType.java +8 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/account/AccountDTO.java +27 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/account/AccountEmailRequestDTO.java +17 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/account/AccountSmsRequestDTO.java +14 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/account/AuthTypeEnum.java +13 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/account/CheckAccountResponse.java +17 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/account/CheckVerificationCodeResponse.java +16 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/account/CiamAccountDTO.java +22 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/account/CiamAccountResponse.java +18 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/account/IdentityDTO.java +27 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/account/LoginDTO.java +20 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/account/LoginsDTO.java +32 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/account/SocialLoginProviderRequestDTO.java +14 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/collab/PingAccessToken.java +19 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/collab/RedirectByRole.java +14 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/cookie/Cookie.java +19 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/cookie/CookieTypeEnum.java +40 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/emailing/AdobeTokenResponse.java +28 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/emailing/EmailingAuthenticationRequest.java +16 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/emailing/EmailingAuthenticationResponse.java +16 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/error/OAuthError.java +18 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/error/UpdatePasswordError.java +20 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/keepalive/KeepAliveStatus.java +5 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/login/SavedLoginRequest.java +44 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/login/State.java +58 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/logs/ActionType.java +5 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/logs/Log.java +31 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/logs/LogType.java +5 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/password/ForgotPasswordRequest.java +14 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/password/ResetPasswordRequestDTO.java +12 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/password/ResetPasswordResponseDTO.java +16 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/password/UpdatePasswordRequest.java +18 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/password/UpdatePasswordRequestDTO.java +16 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/password/UpdatePasswordResponse.java +16 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/ping/PingUserInfos.java +46 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/refresh/RefreshTokenRequest.java +14 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/refresh/RefreshTokenResponse.java +16 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/roles/RoleResponse.java +26 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/roles/RolesResponse.java +21 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/tempo/ConsolidatorOrdersResponse.java +14 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/tempo/Customer.java +13 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/tempo/CustomerOrder.java +13 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/tempo/CustomerOrderResponse.java +14 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/tempo/CustomerOrdersRequest.java +17 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/tempo/DependenciesInformation.java +12 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/tempo/DependencyInformation.java +13 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/tempo/LinkToCustomerRequest.java +16 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/tempo/OfferLine.java +13 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/tempo/OrderStatus.java +5 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/tempo/TempoConsolidatedOrder.java +16 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/tempo/TempoOrder.java +18 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/tokywoky/PartnerSSOMessage.java +18 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/user/PingUser.java +32 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/user/ReachFiveUser.java +72 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/AccountAlreadyActiveException.java +7 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/AccountNotFoundException.java +12 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/CiamException.java +19 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/EmailAccountAlreadyExistsException.java +7 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/EmailNotFoundException.java +12 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/ErrorResource.java +81 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/InternalErrorApiException.java +16 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/InvalidBodyException.java +7 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/InvalidClientIdException.java +7 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/InvalidEncodedDataException.java +7 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/PingException.java +19 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/PresignupMailCouldNotBeSentException.java +7 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/PresignupMailSentException.java +7 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/ReachFiveException.java +19 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/SamePasswordException.java +12 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/SavedLoginCookieNotFoundException.java +14 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/StateNotEqualsException.java +14 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/TokenDoesNotMatchException.java +7 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/TokenExpiredWithRedirectException.java +7 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/TokenExpiredWithoutRedirectException.java +7 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/UnauthorizedException.java +12 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/VerificationCodeExpiredException.java +7 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/VerificationCodeInvalidException.java +7 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/CiamService.java +144 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/CookieService.java +262 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/JwtService.java +332 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/MdmService.java +40 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/PasswordService.java +64 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/PingService.java +133 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/ReachFiveService.java +175 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/RefreshService.java +165 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/RequestSavingService.java +60 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/RoleMappingService.java +177 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/account/AccountService.java +23 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/account/AccountServiceDefault.java +391 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/account/AccountServiceLMES.java +52 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/postauthent/ContextualizationService.java +67 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/postauthent/PostAuthenticationService.java +170 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/postauthent/TempoService.java +122 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/postauthent/TokyWokyService.java +51 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/postauthent/actions/MultipleBuCondition.java +24 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/postauthent/actions/PostAuthenticationActionsService.java +28 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/postauthent/actions/impl/lmfr/PostAuthenticationActionsServiceFrImpl.java +96 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/postauthent/actions/impl/lmit/PostAuthenticationActionsServiceWithTkWkImpl.java +92 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/postauthent/actions/impl/others/PostAuthenticationActionsServiceOthersImpl.java +51 -0
- package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/postauthent/actions/utils/PostAuthenticationActionsUtils.java +68 -0
- package/cdp-due--authentication-module-master/src/main/resources/__tests__/authentication-module.src.test.js +117 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/javascript/accountactivation/accountactivation.fr_FR.js.txt +11 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/javascript/accountactivation/accountactivation.src.js +226 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/javascript/accountactivation/accountactivationsms.fr_FR.js.txt +11 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/javascript/accountactivation/accountactivationsms.src.js +228 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/javascript/authentication-module.fr_FR.js.txt +11 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/javascript/authentication-module.src.js +733 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/javascript/authentication-password-reset.fr_FR.js.txt +11 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/javascript/authentication-password-reset.src.js +152 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/javascript/authentication-password-update.fr_FR.js.txt +11 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/javascript/authentication-password-update.src.js +219 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/javascript/authentication-verify-email.fr_FR.js.txt +11 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/javascript/authentication-verify-email.src.js +123 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/javascript/authentication-verify-sms.fr_FR.js.txt +11 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/javascript/authentication-verify-sms.src.js +168 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/javascript/keepalive.fr_FR.js.txt +14 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/javascript/keepalive.src.js +47 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/javascript/keepaliveworker.fr_FR.js.txt +14 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/javascript/keepaliveworker.src.js +125 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/javascript/locales/build.json +3 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/javascript/locales/messages_es_ES.json +2 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/javascript/locales/messages_fr_FR.json +2 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/javascript/locales/messages_it_IT.json +2 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/javascript/locales/messages_pl_PL.json +3 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/javascript/locales/messages_pt_PT.json +2 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/javascript/trackingEvents.js +116 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/sass/_atoms/_titles-texts.scss +1 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/sass/_patchs/_compatibilite-marcopolo.scss +17 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/sass/accountactivation/accountactivation.css.txt +23 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/sass/accountactivation/accountactivation.src.scss +123 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/sass/authentication-module.css.txt +11 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/sass/authentication-module.src.scss +294 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/sass/authentication-password-reset.css.txt +11 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/sass/authentication-password-reset.src.scss +76 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/sass/authentication-password-update.css.txt +11 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/sass/authentication-password-update.src.scss +140 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/sass/authentication-vad.css.txt +11 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/sass/authentication-vad.src.scss +181 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/sass/authentication-verify-email.css.txt +11 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/sass/authentication-verify-email.src.scss +76 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/sass/authentication-verify-sms.css.txt +12 -0
- package/cdp-due--authentication-module-master/src/main/resources/static/sass/authentication-verify-sms.src.scss +127 -0
- package/cdp-due--authentication-module-master/src/main/resources/templates/components/accountactivation/accountactivation.ftlh +130 -0
- package/cdp-due--authentication-module-master/src/main/resources/templates/components/accountactivation/accountactivationsms.ftlh +147 -0
- package/cdp-due--authentication-module-master/src/main/resources/templates/components/empty.ftl +1 -0
- package/cdp-due--authentication-module-master/src/main/resources/templates/components/keepalive/keepalive.ftlh +1 -0
- package/cdp-due--authentication-module-master/src/main/resources/templates/components/landing/home.ftl +26 -0
- package/cdp-due--authentication-module-master/src/main/resources/templates/components/login/callback.ftl +5 -0
- package/cdp-due--authentication-module-master/src/main/resources/templates/components/login/login.ftlh +3 -0
- package/cdp-due--authentication-module-master/src/main/resources/templates/components/login/loginVAD.ftlh +53 -0
- package/cdp-due--authentication-module-master/src/main/resources/templates/components/login/loginoaa.ftlh +3 -0
- package/cdp-due--authentication-module-master/src/main/resources/templates/components/login/reachfive.ftl +0 -0
- package/cdp-due--authentication-module-master/src/main/resources/templates/components/login/separator.ftl +3 -0
- package/cdp-due--authentication-module-master/src/main/resources/templates/components/login/verify-email.ftlh +107 -0
- package/cdp-due--authentication-module-master/src/main/resources/templates/components/login/verify-sms.ftlh +166 -0
- package/cdp-due--authentication-module-master/src/main/resources/templates/components/molecules/loginContext.ftlh +49 -0
- package/cdp-due--authentication-module-master/src/main/resources/templates/components/molecules/loginEmail.ftlh +156 -0
- package/cdp-due--authentication-module-master/src/main/resources/templates/components/molecules/loginForm.ftlh +47 -0
- package/cdp-due--authentication-module-master/src/main/resources/templates/components/molecules/loginPassword.ftlh +72 -0
- package/cdp-due--authentication-module-master/src/main/resources/templates/components/password/reset.ftlh +107 -0
- package/cdp-due--authentication-module-master/src/main/resources/templates/components/password/update.ftlh +115 -0
- package/cdp-due--authentication-module-master/src/test/java/com/adeo/authentication/components/accountactivation/AccountActivationComponentTest.java +114 -0
- package/cdp-due--authentication-module-master/src/test/java/com/adeo/authentication/components/callback/CallbackControllerTest.java +70 -0
- package/cdp-due--authentication-module-master/src/test/java/com/adeo/authentication/components/callback/CallbackPingControllerTest.java +137 -0
- package/cdp-due--authentication-module-master/src/test/java/com/adeo/authentication/components/callback/RedirectToControllerTest.java +173 -0
- package/cdp-due--authentication-module-master/src/test/java/com/adeo/authentication/components/login/LoginControllerTest.java +93 -0
- package/cdp-due--authentication-module-master/src/test/java/com/adeo/authentication/controllers/AccountControllerTest.java +302 -0
- package/cdp-due--authentication-module-master/src/test/java/com/adeo/authentication/services/RoleMappingServiceTest.java +86 -0
- package/cdp-due--authentication-module-master/src/test/java/com/adeo/authentication/services/postauthent/PostAuthenticationServiceTest.java +64 -0
- package/cdp-due--customer-space-module-master/.babelrc +16 -0
- package/cdp-due--customer-space-module-master/.browserslistrc +2 -0
- package/cdp-due--customer-space-module-master/.dockerignore +3 -0
- package/cdp-due--customer-space-module-master/.editorconfig +5 -0
- package/cdp-due--customer-space-module-master/.eslintrc.js +226 -0
- package/cdp-due--customer-space-module-master/.eslintrc.mandatory.js +53 -0
- package/cdp-due--customer-space-module-master/.github/settings.xml +54 -0
- package/cdp-due--customer-space-module-master/.github/workflows/build-branch.yml +69 -0
- package/cdp-due--customer-space-module-master/.github/workflows/build-release.yml +23 -0
- package/cdp-due--customer-space-module-master/.github/workflows/cleanup.yml +20 -0
- package/cdp-due--customer-space-module-master/.github/workflows/release.yml +24 -0
- package/cdp-due--customer-space-module-master/.husky/pre-commit +4 -0
- package/cdp-due--customer-space-module-master/.husky/pre-push +18 -0
- package/cdp-due--customer-space-module-master/.prettierrc +12 -0
- package/cdp-due--customer-space-module-master/.releaserc +16 -0
- package/cdp-due--customer-space-module-master/.tool-versions +1 -0
- package/cdp-due--customer-space-module-master/.vscode/extensions.json +15 -0
- package/cdp-due--customer-space-module-master/.vscode/launch.json +15 -0
- package/cdp-due--customer-space-module-master/.vscode/settings.json +88 -0
- package/cdp-due--customer-space-module-master/CHANGELOG.md +9252 -0
- package/cdp-due--customer-space-module-master/Dockerfile +14 -0
- package/cdp-due--customer-space-module-master/README.md +130 -0
- package/cdp-due--customer-space-module-master/babel.config.js +3 -0
- package/cdp-due--customer-space-module-master/commitlint.config.js +1 -0
- package/cdp-due--customer-space-module-master/customer-space-module.quality.json +24 -0
- package/cdp-due--customer-space-module-master/docs/pull_request_template.md +22 -0
- package/cdp-due--customer-space-module-master/jest/setup.js +17 -0
- package/cdp-due--customer-space-module-master/jest.config.js +29 -0
- package/cdp-due--customer-space-module-master/jsconfig.json +11 -0
- package/cdp-due--customer-space-module-master/mozaic.config.js +8 -0
- package/cdp-due--customer-space-module-master/package-lock.json +42688 -0
- package/cdp-due--customer-space-module-master/package.json +111 -0
- package/cdp-due--customer-space-module-master/postcss.config.js +5 -0
- package/cdp-due--customer-space-module-master/product-info.json +3 -0
- package/cdp-due--customer-space-module-master/public/index.html +24 -0
- package/cdp-due--customer-space-module-master/public/kobi-fragment-index.html +1 -0
- package/cdp-due--customer-space-module-master/public/locales/messages_en_GB.json +1744 -0
- package/cdp-due--customer-space-module-master/public/locales/messages_es_ES.json +1760 -0
- package/cdp-due--customer-space-module-master/public/locales/messages_fr_FR.json +2004 -0
- package/cdp-due--customer-space-module-master/public/locales/messages_it_IT.json +1392 -0
- package/cdp-due--customer-space-module-master/public/locales/messages_pl_PL.json +1845 -0
- package/cdp-due--customer-space-module-master/public/locales/messages_pt_PT.json +1722 -0
- package/cdp-due--customer-space-module-master/public/robots.txt +2 -0
- package/cdp-due--customer-space-module-master/public/static/css/global.css +129 -0
- package/cdp-due--customer-space-module-master/public/static/img/01_Carte_Maison-No_Card.png +0 -0
- package/cdp-due--customer-space-module-master/public/static/img/02_Carte_Maison-Oney.png +0 -0
- package/cdp-due--customer-space-module-master/public/static/img/03_Carte_Maison-Card.png +0 -0
- package/cdp-due--customer-space-module-master/public/static/img/04_Dons_points-Confirmation.png +0 -0
- package/cdp-due--customer-space-module-master/public/static/img/05_MyHome_Mobile_Phone.png +0 -0
- package/cdp-due--customer-space-module-master/public/static/img/10_Carte_Maison-Pass.png +0 -0
- package/cdp-due--customer-space-module-master/public/static/img/11_Carte_Maison-1-3years.png +0 -0
- package/cdp-due--customer-space-module-master/public/static/img/12_Carte_Maison_App.png +0 -0
- package/cdp-due--customer-space-module-master/public/static/img/13_Carte_Maison_App_Background_Mobile.png +0 -0
- package/cdp-due--customer-space-module-master/public/static/img/14_Carte_Maison_App_Background_Desktop.png +0 -0
- package/cdp-due--customer-space-module-master/public/static/img/15_App_Mobile.png +0 -0
- package/cdp-due--customer-space-module-master/public/static/img/16_Loyalty_Card_Details_Page_Header.png +0 -0
- package/cdp-due--customer-space-module-master/public/static/img/CM.png +0 -0
- package/cdp-due--customer-space-module-master/public/static/img/Compte-Historique_achat-Liste-Empty.png +0 -0
- package/cdp-due--customer-space-module-master/public/static/img/LM.png +0 -0
- package/cdp-due--customer-space-module-master/public/static/img/Leroy_et_Moi_header.svg +9 -0
- package/cdp-due--customer-space-module-master/public/static/img/account-creation.jpg +0 -0
- package/cdp-due--customer-space-module-master/public/static/img/apple.svg +3 -0
- package/cdp-due--customer-space-module-master/public/static/img/bg-pres-kzp.png +0 -0
- package/cdp-due--customer-space-module-master/public/static/img/compte-historique_achat-liste-empty.svg +87 -0
- package/cdp-due--customer-space-module-master/public/static/img/coowner-invitation-expired_img.png +0 -0
- package/cdp-due--customer-space-module-master/public/static/img/coowner-invitation-valid_background.png +0 -0
- package/cdp-due--customer-space-module-master/public/static/img/coowner-invitation-wrong-account_background.png +0 -0
- package/cdp-due--customer-space-module-master/public/static/img/duplicated-background.png +0 -0
- package/cdp-due--customer-space-module-master/public/static/img/elo.svg +9 -0
- package/cdp-due--customer-space-module-master/public/static/img/empty-autocomplete-list.png +0 -0
- package/cdp-due--customer-space-module-master/public/static/img/empty-list.svg +1 -0
- package/cdp-due--customer-space-module-master/public/static/img/empty_state.png +0 -0
- package/cdp-due--customer-space-module-master/public/static/img/facebook.svg +8 -0
- package/cdp-due--customer-space-module-master/public/static/img/google.svg +6 -0
- package/cdp-due--customer-space-module-master/public/static/img/info-blue.svg +8 -0
- package/cdp-due--customer-space-module-master/public/static/img/info.svg +3 -0
- package/cdp-due--customer-space-module-master/public/static/img/ipn-access-denied-img.svg +76 -0
- package/cdp-due--customer-space-module-master/public/static/img/logo.png +0 -0
- package/cdp-due--customer-space-module-master/public/static/img/loyalty-selection.jpg +0 -0
- package/cdp-due--customer-space-module-master/public/static/img/no_result.png +0 -0
- package/cdp-due--customer-space-module-master/public/static/img/picto_App_Store.png +0 -0
- package/cdp-due--customer-space-module-master/public/static/img/picto_Carte_Maison.png +0 -0
- package/cdp-due--customer-space-module-master/public/static/img/picto_Pass_Maison.png +0 -0
- package/cdp-due--customer-space-module-master/public/static/img/plan_sample1.jpg +0 -0
- package/cdp-due--customer-space-module-master/public/static/img/plan_sample2.jpg +0 -0
- package/cdp-due--customer-space-module-master/public/static/img/plan_sample3.jpg +0 -0
- package/cdp-due--customer-space-module-master/public/static/img/right.svg +3 -0
- package/cdp-due--customer-space-module-master/public/static/img/sent-email-confirmation-picture.svg +37 -0
- package/cdp-due--customer-space-module-master/public/static/img/shopping-list-empty.svg +63 -0
- package/cdp-due--customer-space-module-master/public/static/img/ticket.png +0 -0
- package/cdp-due--customer-space-module-master/public/static/img/unauthorized.svg +73 -0
- package/cdp-due--customer-space-module-master/public/static/img/voucher-empty.png +0 -0
- package/cdp-due--customer-space-module-master/public/static/img/wrong.svg +3 -0
- package/cdp-due--customer-space-module-master/scripts/build/build.sh +15 -0
- package/cdp-due--customer-space-module-master/scripts/build/kobi-post-build.js +74 -0
- package/cdp-due--customer-space-module-master/scripts/build/locales-minify.js +17 -0
- package/cdp-due--customer-space-module-master/scripts/common/app.variables.sh +26 -0
- package/cdp-due--customer-space-module-master/scripts/common/app.variables_common.sh +63 -0
- package/cdp-due--customer-space-module-master/scripts/common/app.variables_customer_space.sh +53 -0
- package/cdp-due--customer-space-module-master/scripts/common/app.variables_customer_space_no_layout.sh +46 -0
- package/cdp-due--customer-space-module-master/scripts/common/createConfig.sh +22 -0
- package/cdp-due--customer-space-module-master/scripts/deploy/createLocaleConfig.sh +21 -0
- package/cdp-due--customer-space-module-master/scripts/deploy/createNginxConfig.sh +48 -0
- package/cdp-due--customer-space-module-master/scripts/deploy/docker-entrypoint.sh +29 -0
- package/cdp-due--customer-space-module-master/scripts/deploy/kobi_registration.sh +31 -0
- package/cdp-due--customer-space-module-master/scripts/deploy/variables.sh +11 -0
- package/cdp-due--customer-space-module-master/scripts/dev/docker-local.sh +6 -0
- package/cdp-due--customer-space-module-master/scripts/dev/phrase.sh +10 -0
- package/cdp-due--customer-space-module-master/scripts/dev/prepareI18n.js +28 -0
- package/cdp-due--customer-space-module-master/scripts/dev/serve.sh +38 -0
- package/cdp-due--customer-space-module-master/scripts/lint.sh +3 -0
- package/cdp-due--customer-space-module-master/scripts/test.sh +8 -0
- package/cdp-due--customer-space-module-master/scripts/utils/locales/check-translations.js +43 -0
- package/cdp-due--customer-space-module-master/scripts/utils/locales/extract-translations.js +26 -0
- package/cdp-due--customer-space-module-master/scripts/utils/locales/find-in-translations.js +28 -0
- package/cdp-due--customer-space-module-master/scripts/utils/locales/locales.js +22 -0
- package/cdp-due--customer-space-module-master/scripts/utils/locales/locate-route-from-translations.js +57 -0
- package/cdp-due--customer-space-module-master/scripts/utils/version/package-version.update.sh +16 -0
- package/cdp-due--customer-space-module-master/scripts/utils/version/print-package-version.js +12 -0
- package/cdp-due--customer-space-module-master/scripts/utils/version/random-patch-package-version.js +17 -0
- package/cdp-due--customer-space-module-master/sonar-project.properties +9 -0
- package/cdp-due--customer-space-module-master/src/App.vue +21 -0
- package/cdp-due--customer-space-module-master/src/assets/tokens/scss/_tokens.scss +2 -0
- package/cdp-due--customer-space-module-master/src/authentication/IpnAuthorize.vue +24 -0
- package/cdp-due--customer-space-module-master/src/authentication/IpnRole.vue +22 -0
- package/cdp-due--customer-space-module-master/src/authentication/constants.js +59 -0
- package/cdp-due--customer-space-module-master/src/authentication/index.js +41 -0
- package/cdp-due--customer-space-module-master/src/authentication/module/actions.js +17 -0
- package/cdp-due--customer-space-module-master/src/authentication/module/constants.js +10 -0
- package/cdp-due--customer-space-module-master/src/authentication/module/getters.js +36 -0
- package/cdp-due--customer-space-module-master/src/authentication/module/index.js +23 -0
- package/cdp-due--customer-space-module-master/src/authentication/useAuthorization.js +26 -0
- package/cdp-due--customer-space-module-master/src/authentication/useRole.js +25 -0
- package/cdp-due--customer-space-module-master/src/common/clients/coOwnerInvitation.client.js +9 -0
- package/cdp-due--customer-space-module-master/src/common/clients/preexistence.client.js +9 -0
- package/cdp-due--customer-space-module-master/src/components/DownloadLoyaltyCardButton.vue +28 -0
- package/cdp-due--customer-space-module-master/src/components/IpnBanner.vue +118 -0
- package/cdp-due--customer-space-module-master/src/components/IpnContainer.vue +57 -0
- package/cdp-due--customer-space-module-master/src/components/IpnDashboardButton.vue +27 -0
- package/cdp-due--customer-space-module-master/src/components/IpnLinkBox.vue +156 -0
- package/cdp-due--customer-space-module-master/src/components/IpnTitle.vue +38 -0
- package/cdp-due--customer-space-module-master/src/components/SubTitle.vue +25 -0
- package/cdp-due--customer-space-module-master/src/components/Title.vue +49 -0
- package/cdp-due--customer-space-module-master/src/components/Tooltip.vue +124 -0
- package/cdp-due--customer-space-module-master/src/components/barcode-reader/BarcodeReader.vue +31 -0
- package/cdp-due--customer-space-module-master/src/components/barcode-reader/barcodeReader.rules.js +27 -0
- package/cdp-due--customer-space-module-master/src/components/barcode-reader/useBarcodeReader.js +5 -0
- package/cdp-due--customer-space-module-master/src/components/button-with-custom-icon/ButtonWithCustomIcon.vue +42 -0
- package/cdp-due--customer-space-module-master/src/components/datatable/IpnDatatable.vue +782 -0
- package/cdp-due--customer-space-module-master/src/components/display-more/DisplayMore.vue +54 -0
- package/cdp-due--customer-space-module-master/src/components/divider/McDivider.vue +42 -0
- package/cdp-due--customer-space-module-master/src/components/empty-page/EmptyPage.vue +106 -0
- package/cdp-due--customer-space-module-master/src/components/feature-flipper/FeatureFlipper.vue +17 -0
- package/cdp-due--customer-space-module-master/src/components/feature-flipper/__tests__/isFeatureEnabled.rules.test.js +15 -0
- package/cdp-due--customer-space-module-master/src/components/feature-flipper/isFeatureEnabled.rules.js +12 -0
- package/cdp-due--customer-space-module-master/src/components/feature-flipper/useIsFeatureEnabled.js +9 -0
- package/cdp-due--customer-space-module-master/src/components/grid/MlContainer.vue +39 -0
- package/cdp-due--customer-space-module-master/src/components/grid/MlFlexy.vue +70 -0
- package/cdp-due--customer-space-module-master/src/components/grid/MlFlexyCol.vue +42 -0
- package/cdp-due--customer-space-module-master/src/components/html-expand/HtmlExpand.vue +22 -0
- package/cdp-due--customer-space-module-master/src/components/html-expand/htmlExpand.composable.js +24 -0
- package/cdp-due--customer-space-module-master/src/components/information-box/InformationBox.vue +112 -0
- package/cdp-due--customer-space-module-master/src/components/information-details-box/InformationDetailsBox.vue +44 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-bu-content/IpnBuComponent.vue +18 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-button-with-icon/IpnButtonWithIcon.vue +36 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/LoyaltyNotification/LoyaltyNotification.composable.js +31 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/LoyaltyNotification/LoyaltyNotification.rules.js +25 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/LoyaltyNotification/LoyaltyNotification.vue +80 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/LoyaltyNotification/__tests__/LoyaltyNotification.rules.test.js +34 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/address/Address.default.vue +66 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/address/Address.eslm.vue +76 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/address/Address.frlm.vue +90 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/address/Address.itlm.vue +76 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/address/Address.vue +9 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/address/additionalInfosAddress.rules.js +16 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/address/addressConfig.common.js +86 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/address/provinceAddressConfig.js +15 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/address/useAddress.default.js +91 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/address/useAddress.eslm.js +94 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/address/useAddress.itlm.js +94 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/cards/CardWithIcon.vue +117 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/cards/CardWithLabel.vue +77 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/city/City.vue +40 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/city/cityConfig.js +31 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/city/rules.js +50 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/inputOrSelectField/InputOrSelectField.vue +34 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/inputOrSelectField/__tests__/rules.test.js +108 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/inputOrSelectField/inputOrSelectConfig.js +26 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/inputOrSelectField/rules.js +55 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/inputOrSelectField/useInputOrSelectField.js +37 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/phone/phoneConfig.js +12 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/Stepper.vue +180 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/LoyaltySelection/LoyaltySelection.events.js +6 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/LoyaltySelection/LoyaltySelection.vue +125 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/StepAdditionalInformation.vue +50 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/StepPersonalDataInfos/StepPersonalDataInfos.vue +116 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/StepPersonalDataInfos/administrativeIdentifier/AdministrativeIdentifier.eslm.vue +66 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/StepPersonalDataInfos/administrativeIdentifier/__tests__/administrativeIdentifier.rules.test.js +34 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/StepPersonalDataInfos/administrativeIdentifier/administrativeIdentifier.composable.js +31 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/StepPersonalDataInfos/administrativeIdentifier/administrativeIdentifier.rules.js +127 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/StepPersonalDataInfos/rules/__tests__/personalDataInfos.rules.test.js +151 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/StepPersonalDataInfos/rules/accountCreationFields.js +124 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/StepPersonalDataInfos/rules/generatePersonalFields.js +46 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/StepPersonalDataInfos/rules/personalDataInfos.rules.js +61 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/StepPersonalDataInfos/rules/professionalDataInfo.rules.js +77 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/StepPersonalDataInfos/translations.js +5 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/StepPersonalDataInfos/useStepPersonalDataInfos.js +71 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/communication/CommunicationConfig.js +72 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/communication/StepCommunication.default.vue +212 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/communication/StepCommunication.eslm.vue +14 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/communication/StepCommunication.frlm.vue +169 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/communication/StepCommunication.itlm.vue +180 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/communication/StepCommunication.per-channel.vue +35 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/communication/StepCommunication.pllm.vue +14 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/communication/StepCommunication.ptlm.vue +14 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/communication/StepCommunication.vue +12 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/communication/TermsOfUseValidation/TermsOfUseValidation.vue +53 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/communication/TermsOfUseValidation/termsOfUseValidation.composable.js +24 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/communication/TermsOfUseValidation/termsOfUseValidation.rules.js +6 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/communication/composables/useCGU.js +54 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/communication/constants.js +3 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/personal-data-address/LoyaltyMembershipAddress.vue +22 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/personal-data-address/StepPersonalDataAddress.vue +96 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/personal-data-address/__tests__/stepPersonalDataAddressConfig.frlm.test.js +37 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/personal-data-address/composables/useAdditionalFields.js +34 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/personal-data-address/loyaltyMemberShipAddress.composable.js +23 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/personal-data-address/personaDataAddressStep.composable.js +22 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/personal-data-address/personaDataAddressStep.rules.js +18 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/personal-data-address/stepPersonalDataAddressConfig.frlm.js +31 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/stepAdditionalInformation/useAdditionalInformation.js +141 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/zipCode/ZipCode.vue +30 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/zipCode/hook.js +25 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/zipCode/rules.js +12 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-commons/zipCode/zipCodeConfig.js +16 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-components/HeadingTitle.vue +62 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-focus-lock/IpnFocusLock.vue +196 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-form/IpnControl.vue +142 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-form/IpnDatePicker.vue +36 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-form/IpnField.vue +142 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-form/IpnForm.vue +107 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-form/IpnFormSubmit.vue +39 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-form/__tests__/validations.test.js +764 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-form/composables/useForm.js +82 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-form/constants.js +9 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-form/controls/CheckboxControl.vue +56 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-form/controls/InputPasswordControl.vue +30 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-form/controls/InputSuggestControl.vue +48 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-form/controls/MultiCheckboxControl.vue +69 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-form/controls/SelectControl.vue +52 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-form/controls/ToggleControl.vue +48 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-form/controls/input-control/InputControl.vue +69 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-form/controls/input-control/__tests__/inputControl.test.js +16 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-form/controls/input-control/inputControl.composable.js +12 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-form/controls/input-control/inputControl.events.js +10 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-form/controls/input-control/inputControl.rules.js +8 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-form/controls/radio-control/RadioControl.vue +129 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-form/controls/radio-control/RadioControlButton.vue +69 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-form/controls/radio-control/RadioControlOption.vue +74 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-form/ipnRadioWithContent/IpnRadioWithContent.vue +76 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-form/ipnRadioWithCustomLabel/IpnRadioWithCustomLabel.vue +51 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-form/module/actions.js +30 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-form/module/constants.js +20 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-form/module/getters.js +55 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-form/module/index.js +73 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-form/validations/constants.js +7 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-form/validations/getValidatePassword.js +39 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-form/validations/validateLimitCaractersOfCardNumber.js +6 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-form/validations/validateNumericData.js +7 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-form/validations/validateRegExp.js +12 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-form/validations/validateVatNumberPerCountry.js +15 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-form/validations.js +593 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-link/IpnLink.vue +32 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-link/__tests__/checkIpnLink.test.js +20 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-link/rules.js +8 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-notification-toast/IpnNotificationToast.vue +61 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-notification-toast/module/actions.js +11 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-notification-toast/module/constants.js +5 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-notification-toast/module/getters.js +7 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-notification-toast/module/index.js +43 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-picture/IpnPicture.vue +17 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-search-result-card/IpnSearchResultCard.vue +331 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-search-result-card/ipnSearchResultCard.composable.js +27 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-search-result-card/ipnSearchResultCard.rules.js +63 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-search-result-card/tagConfig.js +29 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-store/IpnStore.vue +99 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-store/composables/useOptions.js +12 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-store/composables/useSpecificConfig.js +9 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-store/constants.js +4 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-store/storeConfig.js +12 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-store/utils.js +3 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-video/IpnVideo.vue +76 -0
- package/cdp-due--customer-space-module-master/src/components/ipn-video/ipnVideo.rules.js +36 -0
- package/cdp-due--customer-space-module-master/src/components/layout-box/LayoutBox.vue +78 -0
- package/cdp-due--customer-space-module-master/src/components/loading/IpnLoadingButton.vue +67 -0
- package/cdp-due--customer-space-module-master/src/components/loading/Loading.vue +124 -0
- package/cdp-due--customer-space-module-master/src/components/loading/LoadingContainer.vue +66 -0
- package/cdp-due--customer-space-module-master/src/components/loading/TanstackLoading.vue +121 -0
- package/cdp-due--customer-space-module-master/src/components/loading/TanstackLoadingContainer.vue +68 -0
- package/cdp-due--customer-space-module-master/src/components/loading/loaders.js +39 -0
- package/cdp-due--customer-space-module-master/src/components/loading/module/actions.js +17 -0
- package/cdp-due--customer-space-module-master/src/components/loading/module/constants.js +7 -0
- package/cdp-due--customer-space-module-master/src/components/loading/module/getters.js +12 -0
- package/cdp-due--customer-space-module-master/src/components/loading/module/index.js +23 -0
- package/cdp-due--customer-space-module-master/src/components/loading/useLoading.js +8 -0
- package/cdp-due--customer-space-module-master/src/components/mozaic/m-layer/MLayer.vue +167 -0
- package/cdp-due--customer-space-module-master/src/components/mozaic/m-link/MLink.vue +114 -0
- package/cdp-due--customer-space-module-master/src/components/mozaic/m-modal/MModal.vue +156 -0
- package/cdp-due--customer-space-module-master/src/components/mozaic/m-modal/NMModal.vue +175 -0
- package/cdp-due--customer-space-module-master/src/components/mozaic/m-notification/MNotification.vue +71 -0
- package/cdp-due--customer-space-module-master/src/components/mozaic/m-notification-toast/MNotificationToast.vue +126 -0
- package/cdp-due--customer-space-module-master/src/components/mozaic/m-notification-toast/MNotificationToastItem.vue +76 -0
- package/cdp-due--customer-space-module-master/src/components/mozaic/m-password/MPassword.vue +148 -0
- package/cdp-due--customer-space-module-master/src/components/mozaic/m-radio/MRadio.vue +70 -0
- package/cdp-due--customer-space-module-master/src/components/mozaic/m-select/MSelect.vue +88 -0
- package/cdp-due--customer-space-module-master/src/components/mozaic/m-stepper/MStepper.vue +125 -0
- package/cdp-due--customer-space-module-master/src/components/mozaic/m-stepper/MStepperStep.vue +76 -0
- package/cdp-due--customer-space-module-master/src/components/mozaic/m-tag-custom/MTagCustom.vue +131 -0
- package/cdp-due--customer-space-module-master/src/components/product-box/ProductBox.vue +82 -0
- package/cdp-due--customer-space-module-master/src/components/show-more-link/ShowMoreLink.vue +20 -0
- package/cdp-due--customer-space-module-master/src/components/show-more-link/__tests__/showMoreLink.rules.test.js +25 -0
- package/cdp-due--customer-space-module-master/src/components/show-more-link/showMoreLink.composable.js +24 -0
- package/cdp-due--customer-space-module-master/src/components/show-more-link/showMoreLink.rules.js +15 -0
- package/cdp-due--customer-space-module-master/src/components/tag-list/TagList.vue +100 -0
- package/cdp-due--customer-space-module-master/src/components/tag-list/tagList.rules.js +8 -0
- package/cdp-due--customer-space-module-master/src/components/text-expand/TextExpand.vue +31 -0
- package/cdp-due--customer-space-module-master/src/components/text-expand/__tests__/textExpand.rules.test.js +37 -0
- package/cdp-due--customer-space-module-master/src/components/text-expand/textExpand.composable.js +25 -0
- package/cdp-due--customer-space-module-master/src/components/text-expand/textExpand.rules.js +14 -0
- package/cdp-due--customer-space-module-master/src/composables/useAdminSearchCustomers.js +11 -0
- package/cdp-due--customer-space-module-master/src/composables/useBuComponent.js +5 -0
- package/cdp-due--customer-space-module-master/src/composables/useBuConfig.js +34 -0
- package/cdp-due--customer-space-module-master/src/composables/useCitiesOptions.js +33 -0
- package/cdp-due--customer-space-module-master/src/composables/useCountry.js +70 -0
- package/cdp-due--customer-space-module-master/src/composables/useCustomDiscounts.js +63 -0
- package/cdp-due--customer-space-module-master/src/composables/useCustomerConsents.js +129 -0
- package/cdp-due--customer-space-module-master/src/composables/useCustomerInfo.js +146 -0
- package/cdp-due--customer-space-module-master/src/composables/useCustomerLoyalty.js +85 -0
- package/cdp-due--customer-space-module-master/src/composables/useCustomerValues.js +23 -0
- package/cdp-due--customer-space-module-master/src/composables/useDefaultStoreCode.js +34 -0
- package/cdp-due--customer-space-module-master/src/composables/useDiscounts.js +97 -0
- package/cdp-due--customer-space-module-master/src/composables/useDisplayLoyalty.js +23 -0
- package/cdp-due--customer-space-module-master/src/composables/useIpnLink.js +10 -0
- package/cdp-due--customer-space-module-master/src/composables/useLoyaltyAdvantages.js +33 -0
- package/cdp-due--customer-space-module-master/src/composables/useNavigation.js +25 -0
- package/cdp-due--customer-space-module-master/src/composables/useStores.js +69 -0
- package/cdp-due--customer-space-module-master/src/composables/useUserInfo.js +15 -0
- package/cdp-due--customer-space-module-master/src/composables/useWindowResize.js +29 -0
- package/cdp-due--customer-space-module-master/src/config/account-creation/index.js +221 -0
- package/cdp-due--customer-space-module-master/src/config/companyTypeOptions.js +177 -0
- package/cdp-due--customer-space-module-master/src/config/consentMode.js +17 -0
- package/cdp-due--customer-space-module-master/src/config/dashboard/index.js +24 -0
- package/cdp-due--customer-space-module-master/src/config/fields/emailConfig.js +13 -0
- package/cdp-due--customer-space-module-master/src/config/fields/professionalConfig.common.js +87 -0
- package/cdp-due--customer-space-module-master/src/config/fields/professionalConfig.eslm.js +81 -0
- package/cdp-due--customer-space-module-master/src/config/fields/professionalConfig.frlm.js +259 -0
- package/cdp-due--customer-space-module-master/src/config/fields/professionalConfig.itlm.js +71 -0
- package/cdp-due--customer-space-module-master/src/config/fields/professionalConfig.pllm.js +33 -0
- package/cdp-due--customer-space-module-master/src/config/fields/professionalConfig.ptlm.js +68 -0
- package/cdp-due--customer-space-module-master/src/config/loyalty-membership/index.js +64 -0
- package/cdp-due--customer-space-module-master/src/config/mask.js +7 -0
- package/cdp-due--customer-space-module-master/src/config/personal-data/index.js +17 -0
- package/cdp-due--customer-space-module-master/src/config/precreation/index.js +47 -0
- package/cdp-due--customer-space-module-master/src/config.js +100 -0
- package/cdp-due--customer-space-module-master/src/constants/accountStatus.js +3 -0
- package/cdp-due--customer-space-module-master/src/constants/accountStep.js +11 -0
- package/cdp-due--customer-space-module-master/src/constants/accountType.js +9 -0
- package/cdp-due--customer-space-module-master/src/constants/administrativeIdentifierType.js +5 -0
- package/cdp-due--customer-space-module-master/src/constants/buCodes.js +8 -0
- package/cdp-due--customer-space-module-master/src/constants/companyType.eslm.js +70 -0
- package/cdp-due--customer-space-module-master/src/constants/companyType.itlm.js +40 -0
- package/cdp-due--customer-space-module-master/src/constants/companyType.js +55 -0
- package/cdp-due--customer-space-module-master/src/constants/consentModes.js +6 -0
- package/cdp-due--customer-space-module-master/src/constants/consentType.js +26 -0
- package/cdp-due--customer-space-module-master/src/constants/counterType.js +9 -0
- package/cdp-due--customer-space-module-master/src/constants/form/formFieldNames.js +5 -0
- package/cdp-due--customer-space-module-master/src/constants/form/formNames.js +14 -0
- package/cdp-due--customer-space-module-master/src/constants/general.js +8 -0
- package/cdp-due--customer-space-module-master/src/constants/houseType.js +4 -0
- package/cdp-due--customer-space-module-master/src/constants/httpErrors.js +1 -0
- package/cdp-due--customer-space-module-master/src/constants/index.js +19 -0
- package/cdp-due--customer-space-module-master/src/constants/inhabitantType.js +11 -0
- package/cdp-due--customer-space-module-master/src/constants/invoiceGenerationStatus.js +3 -0
- package/cdp-due--customer-space-module-master/src/constants/invoiceGenerationSteps.js +6 -0
- package/cdp-due--customer-space-module-master/src/constants/localStorage.js +1 -0
- package/cdp-due--customer-space-module-master/src/constants/loyaltyCreationState.js +3 -0
- package/cdp-due--customer-space-module-master/src/constants/loyaltyMembershipProcess.js +6 -0
- package/cdp-due--customer-space-module-master/src/constants/loyaltyMigrationStatus.js +5 -0
- package/cdp-due--customer-space-module-master/src/constants/loyaltyType.js +23 -0
- package/cdp-due--customer-space-module-master/src/constants/professionalAdministrativeIdentifierType.js +4 -0
- package/cdp-due--customer-space-module-master/src/constants/programTypes.js +4 -0
- package/cdp-due--customer-space-module-master/src/constants/provisioning.js +1 -0
- package/cdp-due--customer-space-module-master/src/constants/vatRegexCountryMapper.js +29 -0
- package/cdp-due--customer-space-module-master/src/constants/warrantyType.js +2 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/AccountCreationConfirm.vue +62 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/AccountCreationHelp.vue +124 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/AccountCreationStart.composable.js +9 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/AccountCreationStart.vue +24 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/AccountHavingPassPage.vue +243 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/accountConfig.js +73 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/accountCreationHelp.composable.js +9 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/existingCustomerPage/AccountCreationExistingCustomer.vue +135 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/existingCustomerPage/accountCreationExistingCustomer.composable.js +33 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/existingCustomerPage/accountCreationExistingCustomer.events.js +33 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/existingCustomerPage/accountCreationExistingCustomer.rules.js +45 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/AccountCreationLoyaltyAdvantages.vue +171 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/AccountCreationLoyaltyInfo.vue +88 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/AccountCreationStepperPage.vue +60 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/SiretLayer.vue +81 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/StepOptins/StepOptins.frlm.vue +163 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/StepOptins/StepOptins.itlm.vue +7 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/StepOptins.vue +112 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/StepOptinsConfig.js +82 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/Stepper.vue +78 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/StepperButtons.vue +32 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/__tests__/StepOptinsConfig.test.js +79 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/accountCreationLoyaltyAdvantages.composable.js +94 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/composables/accountCreationStepper.rules.js +94 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/composables/submit/handleHousing.js +15 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/composables/submit/onSubmit.js +9 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/composables/submit/onSubmit.rules.js +153 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/composables/useAccountCreationStepper.js +114 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/composables/utils/__tests__/checkIfCustomerSubscribed.test.js +28 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/composables/utils/__tests__/createAvailableSteps.test.js +33 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/composables/utils/__tests__/getStepsTests.test.js +153 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/composables/utils/checkIfCustomerSubscribed.js +2 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/composables/utils/createAvailableSteps.js +45 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/constants.js +16 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/AccountCreationAddress.vue +11 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/AccountCreationOptins/AccountCreationOptins.default.vue +76 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/AccountCreationOptins/AccountCreationOptins.eslm.vue +67 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/AccountCreationOptins/AccountCreationOptins.frlm.vue +80 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/AccountCreationOptins/AccountCreationOptins.itlm.vue +78 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/AccountCreationOptins/AccountCreationOptins.pllm.vue +69 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/AccountCreationOptins/AccountCreationOptins.ptlm.vue +71 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/AccountCreationOptins/AccountCreationOptins.vue +9 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/AccountCreationOptins/accountCreationGaEventSubmit.js +16 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/AccountCreationPersonalData.vue +62 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/accountCreationLegalTexts/AccountCreationLegalTexts.vue +136 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/accountCreationLoyaltyPrograms.composable.js +36 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/accountCreationPersonalData.composable.js +28 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/accountCreationPersonalData.rules.js +18 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/accountCreationStore/AccountCreationStore.vue +23 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/accountCreationStore/accountCreationStore.composable.js +64 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/accountCreationStore/accountCreationZipCode/AccountCreationZipCode.vue +14 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/accountCreationStore/accountCreationZipCode/accountCreationZipCode.composable.js +34 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/composables/config.js +16 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/composables/useInitialFormState.eslm.js +76 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/composables/useInitialFormState.frlm.js +66 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/composables/useInitialFormState.itlm.js +63 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/composables/useInitialFormState.ptlm.js +66 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/termsOfUseValidation/TermsOfUseValidation.vue +91 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/termsOfUseValidation/termsOfUseValidation.composable.js +32 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/termsOfUseValidation/termsOfUseValidation.rules.js +173 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/useStepper.js +50 -0
- package/cdp-due--customer-space-module-master/src/contents/account/create/trackingEvents.js +124 -0
- package/cdp-due--customer-space-module-master/src/contents/account/module/actions.js +77 -0
- package/cdp-due--customer-space-module-master/src/contents/account/module/constants.js +32 -0
- package/cdp-due--customer-space-module-master/src/contents/account/module/getters.js +35 -0
- package/cdp-due--customer-space-module-master/src/contents/account/module/index.js +36 -0
- package/cdp-due--customer-space-module-master/src/contents/account/module/mutations.js +30 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/AccountCreation.vue +196 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/LoyaltyProgramSelection.vue +97 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/accountCreation.composable.js +158 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/accountCreation.constants.js +16 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/accountCreation.requests.js +33 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/accountCreation.rules.js +211 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-optins/ConsentDescriptionAsTemplate.vue +22 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-optins/ConsentDescriptionAsText.vue +15 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-optins/ConsentsOptins.vue +22 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-optins/StaticOptin.vue +43 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-optins/StaticOptinRadio.vue +46 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-optins/consentsOptins.composable.js +11 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-optins/consentsOptins.rules.js +177 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-optins/dynamic-optins/DynamicOptin.vue +90 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-optins/dynamic-optins/DynamicOptins.vue +24 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-optins/dynamic-optins/dynamicOptins.composable.js +21 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-optins/dynamic-optins/dynamicOptins.requests.js +20 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-optins/dynamic-optins/dynamicOptins.rules.js +116 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-section/CguOrder.vue +5 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-section/Consents.vue +87 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-section/ConsentsText.vue +43 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-section/cgu-block/CguBlock.vue +105 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-section/cgu-block/CguField.vue +20 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-section/cgu-block/CguFieldRadio.vue +19 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-section/cgu-block/CguLink.vue +30 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-section/cgu-block/cguBlock.composable.js +24 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-section/cgu-block/cguBlock.rules.js +43 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-section/consents.composable.js +24 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-section/consents.rules.js +36 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/DuplicatedAccount.vue +51 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/duplicatedAccount.composable.js +18 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/duplicatedAccount.rules.js +23 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/email-confirmation/EmailConfirmation.vue +81 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/email-confirmation/emailConfirmation.composable.js +10 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/match-account-on-email/MatchAccountOnEmail.vue +85 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/match-account-on-email/matchAccountOnEmail.composable.js +17 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/match-account-on-email-and-phone/MatchAccountOnEmailAndPhone.vue +88 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/match-account-on-email-and-phone/matchAccountOnEmailAndPhone.composable.js +14 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/match-account-on-phone/MatchAccountOnPhone.vue +83 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/match-account-on-phone/matchAccountOnPhone.composable.js +20 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/match-multiple-accounts/MatchMultipleAccounts.vue +75 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/match-webaccount/MatchWebAccount.vue +97 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/match-webaccount/matchWebAccount.composable.js +7 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/onSubmitOrchestrator.composable.js +21 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/preExistenceQueryParam.composable.js +11 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/sendResetPassword.composable.js +26 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/utils.js +5 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/webAccountManagement.composable.js +50 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/webAccountManagement.request.js +38 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/legals-section/Legals.vue +62 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/legals-section/legalsSection.composable.js +21 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/legals-section/legalsSection.config.js +57 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/legals-section/legalsSection.rules.js +24 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/module/index.js +17 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/newCreate.constants.js +4 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/personal-section/PersonalSection.vue +39 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/personal-section/password-hint/PasswordHint.vue +58 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/personal-section/password-hint/password-hint-item/PasswordHintItem.vue +69 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/personal-section/password-hint/password-hint-item/passwordHintItem.rules.js +14 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/personal-section/password-hint/passwordHint.composable.js +17 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/personal-section/personalSection.composable.js +62 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/personal-section/personalSection.constants.js +122 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/personal-section/personalSection.rules.js +62 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/ProfessionalSection.vue +54 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/__tests__/professionalSectionAutocomplete.test.js +29 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/__tests__/professionalSectionDefault.test.js +19 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-autocomplete/ClosedCompany.vue +84 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-autocomplete/ProfessionalSectionAutocomplete.vue +71 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-autocomplete/autocomplete-layer/AutocompleteLayer.vue +175 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-autocomplete/autocomplete-layer/autocomplete-company/AutocompleteCompany.vue +140 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-autocomplete/autocomplete-layer/autocomplete-no-resut/AutocompleteNoResult.vue +96 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-autocomplete/autocomplete-layer/autocompleteLayer.composable.js +52 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-autocomplete/autocomplete-layer/autocompleteLayer.requests.js +52 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-autocomplete/company-details/CompanyDetails.vue +53 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-autocomplete/company-details/companyDetails.composable.js +32 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-autocomplete/company-details/companyDetails.requests.js +25 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-autocomplete/company-details/companyDetails.rules.js +41 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-autocomplete/professionalSectionAutocomplete.composable.js +48 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-autocomplete/professionalSectionAutocomplete.rules.js +13 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-autocomplete/search-company/SearchCompany.vue +61 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-autocomplete/search-company/searchCompany.composable.js +55 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-autocomplete/search-company/searchCompany.config.js +89 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-autocomplete/search-company/searchCompany.events.js +3 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-autocomplete/search-company/searchCompany.rules.js +41 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-default/ProfessionalSectionDefault.vue +51 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-default/professionalSectionDefault.composable.js +50 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-default/professionalSectionDefault.config.js +226 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-default/professionalSectionDefault.rules.js +37 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professionalSection.composable.js +24 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professionalSection.config.js +223 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professionalSection.rules.js +13 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/social-login/SocialLoginConnectors.vue +39 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/social-login/SocialLoginInfo.vue +43 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/social-login/socialLoginConnectors.composable.js +22 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/social-login/socialLoginConnectors.requests.js +18 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/social-login/socialLoginConnectors.rules.js +18 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/socialLoginUserInfo.composable.js +9 -0
- package/cdp-due--customer-space-module-master/src/contents/account/new-create/trackingEvents.js +83 -0
- package/cdp-due--customer-space-module-master/src/contents/account/routeConstant.js +65 -0
- package/cdp-due--customer-space-module-master/src/contents/account/routes.js +205 -0
- package/cdp-due--customer-space-module-master/src/contents/account-management/AccountManagementPage.vue +80 -0
- package/cdp-due--customer-space-module-master/src/contents/account-management/accountManagementLinks.eslm.js +28 -0
- package/cdp-due--customer-space-module-master/src/contents/account-management/accountManagementLinks.frlm.js +41 -0
- package/cdp-due--customer-space-module-master/src/contents/account-management/accountManagementLinks.itlm.js +29 -0
- package/cdp-due--customer-space-module-master/src/contents/account-management/accountManagementLinks.pllm.js +28 -0
- package/cdp-due--customer-space-module-master/src/contents/account-management/accountManagementLinks.ptlm.js +28 -0
- package/cdp-due--customer-space-module-master/src/contents/account-management/config.js +16 -0
- package/cdp-due--customer-space-module-master/src/contents/account-management/routes.js +36 -0
- package/cdp-due--customer-space-module-master/src/contents/account-management/stopPaper/StopPaper.vue +54 -0
- package/cdp-due--customer-space-module-master/src/contents/account-management/stopPaper/__tests__/stopPaper.rules.test.js +42 -0
- package/cdp-due--customer-space-module-master/src/contents/account-management/stopPaper/constants.js +6 -0
- package/cdp-due--customer-space-module-master/src/contents/account-management/stopPaper/stopPaper.composable.js +30 -0
- package/cdp-due--customer-space-module-master/src/contents/account-management/stopPaper/stopPaper.events.js +23 -0
- package/cdp-due--customer-space-module-master/src/contents/account-management/stopPaper/stopPaper.rules.js +79 -0
- package/cdp-due--customer-space-module-master/src/contents/account-management/stopPaper/trackingEvents.js +7 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/AdminLandingPage.vue +86 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/AdminPage.vue +9 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/associate-to-sale/AssociateToSaleButton.vue +46 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/associate-to-sale/AssociateToSaleModal.vue +106 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/associate-to-sale/__tests__/associateToSale.rules.test.js +90 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/associate-to-sale/associateToSale.rules.js +33 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/associate-to-sale/associateToSaleButton.composable.js +43 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/associate-to-sale/associateToSaleModal.composable.js +74 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/associate-to-sale/associateToSaleTrackingEvents.js +30 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/associate-to-sale/useAssociateToSale.js +36 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/associate-to-sale/utils.js +6 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/AdminClientSummaryV1.page.vue +116 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/AdminClientSummaryV2.page.vue +138 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/actions/Actions.section.vue +44 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/actions/__tests__/rules.test.js +43 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/actions/actions.composable.js +23 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/actions/actions.rules.js +72 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/actions/switch-to-pro/modal/SwitchToProErrorModal.vue +113 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/actions/switch-to-pro/modal/SwitchToProErrorModalWrapper.vue +45 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/actions/switch-to-pro/modal/errorModal.composable.js +30 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/actions/switch-to-pro/translations.js +84 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/actions/translations.js +22 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/adminClientSummary.rules.js +27 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/common/ClientSummaryData.vue +67 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/common/ClientSummaryDataLink.vue +31 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/common/ClientSummaryDataV2.vue +72 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/common/DatatableV2.vue +150 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/consents/Consents.section.vue +124 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/consents/consentMode.vue +73 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/consents/consentsConfig.js +36 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/constants.js +18 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/estimates/Estimates.section.vue +29 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/estimates/EstimatesV2.section.vue +32 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/estimates/estimatesSection-v2.composable.js +40 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/estimates/estimatesSection.composable.js +34 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/estimates/estimatesSection.requests.js +18 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/estimates/estimatesSection.rules.js +12 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/estimates/translations.js +9 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/hook.js +5 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/orders/Orders.section.vue +59 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/orders/OrdersV2.section.vue +52 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/orders/orders-v2.composable.js +28 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/orders/orders-v2.rules.js +80 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/orders/orders.composable.js +21 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/orders/orders.request.js +12 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/orders/orders.rules.js +74 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/orders/orders.translations.js +22 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/Customer.vue +69 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/CustomerV2.vue +87 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/InfoBlock/InfoBlock.vue +54 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/InfoBlock/InfoBlockV2.vue +72 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/InfoBlock/constants.js +1 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/__tests__/customer.rules.test.js +112 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/constants.js +12 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/customer.composable.js +35 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/customer.rules.js +115 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/hook.js +106 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/loyalty/Loyalty.vue +67 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/loyalty/LoyaltyV2.vue +96 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/loyalty/__tests__/loyalty.rules.test.js +148 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/loyalty/loyalty-v2.composable.js +45 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/loyalty/loyalty.composable.js +37 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/loyalty/loyalty.rules.js +108 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/professional-infos/ProfessionalInfos.vue +15 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/professional-infos/ProfessionalInfosV2.vue +38 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/professional-infos/hook.js +19 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/professional-infos/professional-infos-v2.composable.js +26 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/professional-infos/rules.js +83 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/rewards/Rewards.vue +10 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/rewards/RewardsV2.vue +79 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/rewards/__tests__/rewards.rules.test.js +117 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/rewards/rewards-v2.composable.js +22 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/rewards/rewards.rules.js +41 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/rewards/useRewards.js +53 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/rules.js +17 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/useAccountCoOwner.js +33 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/usePersonalInfoLoyalty.js +29 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/utils.js +14 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/receipts/LastReceipts.section.vue +30 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/receipts/lastReceipts.composable.js +32 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/receipts/lastReceipts.requests.js +29 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/receipts/translations.js +5 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/utils.js +66 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/contextualization/ContextualizationPage.vue +19 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/history/CustomerHistoryPage.vue +82 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/history/CustomerHistorySubDatatable.vue +42 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/history/__tests__/customerHistory.rules.test.js +71 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/history/constants.js +9 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/history/rules.js +18 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/history/useCustomerHistoryPage.js +47 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/loyalty/LoyaltyPage.vue +73 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/loyalty/LoyaltyPageComponent.vue +49 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/loyalty/loyaltyConfig.js +34 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/module/actions.js +374 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/module/constants.js +69 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/module/getters.js +43 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/module/index.js +78 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/routes.js +148 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/hooks/useRedirectRoute.js +15 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/quick-access/QuickAccess.vue +55 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/quick-access/__tests__/quickAccess.tests.js +24 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/quick-access/quick-access-card/QuickAccessCard.vue +89 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/quick-access/quick-access-config/quickAccessConfig.eslm.js +4 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/quick-access/quick-access-config/quickAccessConfig.frlm.js +41 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/quick-access/quick-access-config/quickAccessConfig.itlm.js +3 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/quick-access/quick-access-config/quickAccessConfig.ptlm.js +9 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/quick-access/quick-access-config/services/quickAccessBoomerang.js +10 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/quick-access/quick-access-config/services/quickAccessDataCompliance.js +10 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/quick-access/quick-access-config/services/quickAccessFloyd.js +10 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/quick-access/quick-access-config/services/quickAccessTempo.js +12 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/quick-access/quickAccess.rules.js +28 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/HistoryOfVisitedCustomers.vue +58 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/SearchPage.vue +194 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/__tests__/searchPage.rules.test.js +89 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/constants.js +2 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/AccountPrecreateLayer.vue +66 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/accountPrecreationLayer.composable.js +44 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/accountPrecreationLayer.rules.js +156 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/steps/address/AddressStep.vue +40 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/steps/precreate-personal-data/AdditionalFields/AdditionalFields.vue +11 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/steps/precreate-personal-data/AdditionalFields/ProfessionalAdministrativeIdentifier.vue +10 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/steps/precreate-personal-data/AdditionalFields/additionalFields.composable.js +18 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/steps/precreate-personal-data/AdditionalFields/additionalFields.rules.js +31 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/steps/precreate-personal-data/ConsentsSection/ConsentsSection.legacy-fr.vue +11 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/steps/precreate-personal-data/ConsentsSection/ConsentsSection.per-channel.vue +11 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/steps/precreate-personal-data/ConsentsSection/ConsentsSection.vue +9 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/steps/precreate-personal-data/ConsentsSection/ConsentsSection.yes-no.vue +26 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/steps/precreate-personal-data/ConsentsSection/consentsSection.rules.js +23 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/steps/precreate-personal-data/ConsentsSection/useConsentsSection.frlm.js +39 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/steps/precreate-personal-data/PreCreatePersonalDataStep.vue +121 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/steps/precreate-personal-data/constants.js +109 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/steps/precreate-personal-data/preCreateAccount.rules.js +106 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/steps/precreate-personal-data/preCreatePersonalDataStep.composable.js +103 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/searchFieldsConfig.js +161 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/searchPage.composable.js +136 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/searchPage.events.js +22 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/searchPage.rules.js +49 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/results/SearchResults.vue +325 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/results/__tests__/searchResults.rules.test.js +18 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/results/accountStatusModalConfig.js +58 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/results/deleteAccountTrackingEvents.js +63 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/results/searchResults.composable.js +125 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/results/searchResults.events.js +71 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/results/searchResults.rules.js +37 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/search/trackingEvents.js +62 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/switch-to-pro/AccountSwitchToProPage.vue +80 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/switch-to-pro/BlocPresenter/BlocPresenter.vue +22 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/switch-to-pro/Buttons/SwitchToProStepperButtons.vue +54 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/switch-to-pro/Form/AccountSwitchToProPageForm.vue +139 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/switch-to-pro/Notifications/SwitchToProNotification.vue +51 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/switch-to-pro/accountSwitchToPro.composable.js +175 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/switch-to-pro/accountSwitchToPro.rules.js +105 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/switch-to-pro/constants.js +11 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/switch-to-pro/trackingEvents.js +75 -0
- package/cdp-due--customer-space-module-master/src/contents/admin/switch-to-pro/translations.js +24 -0
- package/cdp-due--customer-space-module-master/src/contents/after-sales/routes.js +35 -0
- package/cdp-due--customer-space-module-master/src/contents/after-sales/service-list/AfterSalesServiceList.vue +48 -0
- package/cdp-due--customer-space-module-master/src/contents/after-sales/service-list/__tests__/afterSalesServiceList.rules.test.js +18 -0
- package/cdp-due--customer-space-module-master/src/contents/after-sales/service-list/afterSalesServiceList.composable.js +19 -0
- package/cdp-due--customer-space-module-master/src/contents/after-sales/service-list/afterSalesServiceList.requests.js +13 -0
- package/cdp-due--customer-space-module-master/src/contents/after-sales/service-list/afterSalesServiceList.rules.js +11 -0
- package/cdp-due--customer-space-module-master/src/contents/after-sales/service-list/empty/AfterSalesServiceEmpty.vue +12 -0
- package/cdp-due--customer-space-module-master/src/contents/after-sales/service-list/item/AfterSalesItem.vue +134 -0
- package/cdp-due--customer-space-module-master/src/contents/after-sales/service-list/item/afterSalesItem.composable.js +31 -0
- package/cdp-due--customer-space-module-master/src/contents/after-sales/service-list/item/product/NoImage.vue +18 -0
- package/cdp-due--customer-space-module-master/src/contents/after-sales/service-list/item/product/Product.vue +73 -0
- package/cdp-due--customer-space-module-master/src/contents/banner/CollaboratorBanner.vue +229 -0
- package/cdp-due--customer-space-module-master/src/contents/banner/CollaboratorBannerHomeLink.vue +16 -0
- package/cdp-due--customer-space-module-master/src/contents/banner/IncidentInformationModal.vue +109 -0
- package/cdp-due--customer-space-module-master/src/contents/communications/CommunicationsCGUPage.vue +1129 -0
- package/cdp-due--customer-space-module-master/src/contents/communications/CommunicationsPage.vue +9 -0
- package/cdp-due--customer-space-module-master/src/contents/communications/NewsletterCheckbox.vue +86 -0
- package/cdp-due--customer-space-module-master/src/contents/communications/OptinsOfflinePage.vue +26 -0
- package/cdp-due--customer-space-module-master/src/contents/communications/communication-preferences/CommunicationComponentConsent.vue +84 -0
- package/cdp-due--customer-space-module-master/src/contents/communications/communication-preferences/CommunicationPreferences.default.vue +93 -0
- package/cdp-due--customer-space-module-master/src/contents/communications/communication-preferences/CommunicationPreferences.eslm.vue +7 -0
- package/cdp-due--customer-space-module-master/src/contents/communications/communication-preferences/CommunicationPreferences.frlm.vue +317 -0
- package/cdp-due--customer-space-module-master/src/contents/communications/communication-preferences/CommunicationPreferences.itlm.vue +97 -0
- package/cdp-due--customer-space-module-master/src/contents/communications/communication-preferences/CommunicationPreferences.pllm.vue +7 -0
- package/cdp-due--customer-space-module-master/src/contents/communications/communication-preferences/CommunicationPreferences.ptlm.vue +7 -0
- package/cdp-due--customer-space-module-master/src/contents/communications/communication-preferences/ConsentChoices.vue +120 -0
- package/cdp-due--customer-space-module-master/src/contents/communications/communication-preferences/ConsentsChoicesForm.vue +38 -0
- package/cdp-due--customer-space-module-master/src/contents/communications/communication-preferences/communicationPreferences.composable.js +60 -0
- package/cdp-due--customer-space-module-master/src/contents/communications/communication-preferences/communicationPreferences.rules.js +133 -0
- package/cdp-due--customer-space-module-master/src/contents/communications/feedbackConfig.js +20 -0
- package/cdp-due--customer-space-module-master/src/contents/communications/module/actions.js +162 -0
- package/cdp-due--customer-space-module-master/src/contents/communications/module/constants.js +28 -0
- package/cdp-due--customer-space-module-master/src/contents/communications/module/getters.js +23 -0
- package/cdp-due--customer-space-module-master/src/contents/communications/module/index.js +44 -0
- package/cdp-due--customer-space-module-master/src/contents/communications/newsletterConfig.js +57 -0
- package/cdp-due--customer-space-module-master/src/contents/communications/routes.js +33 -0
- package/cdp-due--customer-space-module-master/src/contents/communications/trackingEvents.js +19 -0
- package/cdp-due--customer-space-module-master/src/contents/communications/useCommunicationComponent.js +61 -0
- package/cdp-due--customer-space-module-master/src/contents/communications/useConsent.js +18 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/DashboardBoxLink.vue +108 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/DashboardPage/DashboardPage.vue +52 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/DashboardPage/__tests__/dashboardPage.composable.test.js +46 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/DashboardPage/dashboardPage.composable.js +45 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/DashboardPage/dashboardPage.rules.js +9 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/DashboardPage/dashboardPage.translations.js +6 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/account-settings/DashboardAccountSettings.vue +126 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/account-settings/DashboardAccountSettingsModal.vue +188 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/account-settings/__tests__/rules.test.js +81 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/account-settings/accountSettingsConfig.js +180 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/account-settings/rules.js +28 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/account-settings/useDashboardAccountSettings.js +43 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-account-settings-v2/DashboardAccountSettingsV2.vue +102 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-account-settings-v2/dashboardAccountSettingsV2.composable.js +17 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-account-settings-v2/dashboardAccountSettingsV2.rules.js +232 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-actions/DashboardActions.vue +13 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-actions/dashboardActions.composable.js +39 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-actions/dashboardActions.rules.js +101 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-box/DashboardBox.vue +112 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-box/dashboardBox.composable.js +58 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty/DashboardLoyalty.vue +73 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty/DashboardLoyaltyCardBarcodeModal.vue +34 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty/DashboardLoyaltyPassMaisonBarcodeModal.vue +32 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty/__tests__/dashboardLoyalty.rules.test.js +137 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty/dashboardLoyalty.composable.js +53 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty/dashboardLoyalty.event.js +5 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty/dashboardLoyalty.request.js +31 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty/dashboardLoyalty.rules.js +78 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty-admin/DashboardLoyaltyAdmin.vue +24 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty-admin/DashboardLoyaltyAdminInvitationModal.vue +79 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty-admin/DashboardLoyaltyAdminV2.vue +24 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty-admin/__tests__/dashboardLoyaltyAdmin.rules.test.js +59 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty-admin/__tests__/dashboardLoyaltyAdminInvitationModal.rules.test.js +31 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty-admin/dashboardLoyaltyAdmin.composable.js +44 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty-admin/dashboardLoyaltyAdmin.event.js +47 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty-admin/dashboardLoyaltyAdmin.request.js +36 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty-admin/dashboardLoyaltyAdmin.rules.js +76 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty-admin/dashboardLoyaltyAdminInvitationModal.composable.js +32 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty-admin/dashboardLoyaltyAdminInvitationModal.event.js +31 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty-admin/dashboardLoyaltyAdminInvitationModal.request.js +21 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty-admin/dashboardLoyaltyAdminInvitationModal.rules.js +41 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-page-grid/DashboardPageGrid.vue +149 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-page-grid/dashboardPageGrid.composable.js +53 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-page-grid/dashboardPageGrid.rules.js +453 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/loyalty-card/IpnLoyaltyCard.vue +54 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/loyalty-card/IpnLoyaltyCardBasic.vue +214 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/loyalty-card/IpnLoyaltyCardPassMaison.vue +156 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/loyalty-card/IpnLoyaltyCardPresentationShell.vue +40 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/loyalty-card/IpnLoyaltyCardPrograms.vue +43 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/loyalty-card/LoyaltyCard.default.vue +86 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/loyalty-card/LoyaltyCard.frlm.vue +101 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/loyalty-card/LoyaltyCard.itlm.vue +86 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/loyalty-card/LoyaltyCard.vue +7 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/loyalty-card/LoyaltyCardAdminButton.vue +31 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/loyalty-card/LoyaltyCardBasic.vue +233 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/loyalty-card/LoyaltyCardBenefit.vue +52 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/loyalty-card/LoyaltyProgramsList.vue +80 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/loyalty-card/ProgramCard.vue +109 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/loyalty-card/loyalty-card-pass-maison/LoyaltyCardPassMaison.vue +96 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/loyalty-card/loyalty-card-pass-maison/LoyaltyCardPassMaisonModal.vue +32 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/loyalty-card/trackingEvents.js +28 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/rattachCustomer/RattachCustomerLayer.vue +160 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/rattachCustomer/module/actions.js +95 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/rattachCustomer/module/constants.js +21 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/rattachCustomer/module/getters.js +7 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/rattachCustomer/module/index.js +19 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/rattachCustomer/module/mutations.js +12 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/rattachCustomer/rattachCustomerConfig.js +15 -0
- package/cdp-due--customer-space-module-master/src/contents/dashboard/trackingEvents.js +63 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/MyDiscountsPage.vue +45 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/__tests__/myDiscountsPage.rules.test.js +17 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/components/BoxContainer.vue +50 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/components/DiscountElement.vue +115 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/components/InformationBox/InformationBox/Container/InformationBoxContainer.vue +48 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/components/InformationBox/InformationBox/Text/InformationBoxText.vue +27 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/components/InformationBox/InformationBox/Title/InformationBoxTitle.vue +23 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/components/InformationBox/NoCustomRewards/NoCustomRewards.vue +41 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/components/InformationBox/PointsWhenNoRewards/PointsWhenNoRewards.vue +33 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/components/InformationBox/PointsWhenNoRewards/pointsWhenNoRewards.composable.js +13 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/components/InformationBox/PointsWhenNoRewards/pointsWhenNoRewards.rules.js +13 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/components/MyDiscountsSection.vue +52 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/components/TransformPointsBox.vue +70 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/components/transformPointsBox.rules.js +18 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/constants.js +81 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/custom-discount-section/CustomDiscountSection.vue +148 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/custom-discount-section/custom-discount/CustomDiscount.events.js +18 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/custom-discount-section/custom-discount/CustomDiscount.vue +88 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/custom-discount-section/custom-discount/CustomDiscounts.rules.js +9 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/custom-discount-section/custom-discount/customDiscount.composable.js +20 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/custom-discount-section/rules.js +15 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/discount-layer/DiscountLayer.vue +206 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/discount-layer/__tests__/discountLayer.rules.test.js +115 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/discount-layer/constants.js +3 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/discount-layer/discountLayer.rules.js +22 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/discount-layer/useDiscountLayer.js +58 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/discount-outdated-layer/DiscountOutdatedLayer.events.js +13 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/discount-outdated-layer/DiscountOutdatedLayer.rules.js +15 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/discount-outdated-layer/DiscountOutdatedLayer.vue +97 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/discount-outdated-layer/constants.js +33 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/discount-outdated-layer/useDiscountOutdatedLayer.js +41 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/module/actions.js +70 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/module/constants.js +27 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/module/getters.js +40 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/module/index.js +31 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/module/mutations.js +25 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/my-rewards-section/MyRewardsSection.vue +50 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/my-rewards-section/__tests__/myRewardsSection.rules.test.js +20 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/my-rewards-section/myRewardsSection.composable.js +17 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/my-rewards-section/myRewardsSection.rules.js +15 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/myDiscountsPage.composable.js +23 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/myDiscountsPage.rules.js +6 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/no-rewards/NoRewards.vue +80 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/no-rewards/noRewards.rules.js +14 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/routes.js +29 -0
- package/cdp-due--customer-space-module-master/src/contents/discounts/tracking/trackingEvents.js +7 -0
- package/cdp-due--customer-space-module-master/src/contents/errors/Error.vue +70 -0
- package/cdp-due--customer-space-module-master/src/contents/errors/ErrorNotAuthorized.vue +14 -0
- package/cdp-due--customer-space-module-master/src/contents/errors/ErrorNotFound.vue +10 -0
- package/cdp-due--customer-space-module-master/src/contents/errors/ErrorUnknown.vue +10 -0
- package/cdp-due--customer-space-module-master/src/contents/estimate/box/EstimateBox.vue +168 -0
- package/cdp-due--customer-space-module-master/src/contents/estimate/constants.js +26 -0
- package/cdp-due--customer-space-module-master/src/contents/estimate/estimateDetailPage/EstimateDetailPage.vue +180 -0
- package/cdp-due--customer-space-module-master/src/contents/estimate/estimateDetailPage/estimateDetailPage.composable.js +37 -0
- package/cdp-due--customer-space-module-master/src/contents/estimate/estimateDetailPage/estimateDetailPage.events.js +6 -0
- package/cdp-due--customer-space-module-master/src/contents/estimate/estimateDetailPage/estimateDetailPage.requests.js +18 -0
- package/cdp-due--customer-space-module-master/src/contents/estimate/estimateDetailPage/estimateDetailPage.rules.js +24 -0
- package/cdp-due--customer-space-module-master/src/contents/estimate/estimatesListPage/EstimatesListPage.vue +93 -0
- package/cdp-due--customer-space-module-master/src/contents/estimate/estimatesListPage/estimatesListPage.composable.js +47 -0
- package/cdp-due--customer-space-module-master/src/contents/estimate/estimatesListPage/estimatesListPage.requests.js +34 -0
- package/cdp-due--customer-space-module-master/src/contents/estimate/estimatesListPage/estimatesListPage.rules.js +17 -0
- package/cdp-due--customer-space-module-master/src/contents/estimate/module/index.js +19 -0
- package/cdp-due--customer-space-module-master/src/contents/estimate/routes.js +53 -0
- package/cdp-due--customer-space-module-master/src/contents/estimate/trackingEvents.js +15 -0
- package/cdp-due--customer-space-module-master/src/contents/kazaplan/KazaplanLandingPage.vue +128 -0
- package/cdp-due--customer-space-module-master/src/contents/kazaplan/KazaplanLandingPageConfig.js +40 -0
- package/cdp-due--customer-space-module-master/src/contents/kazaplan/KazaplanListPage.vue +201 -0
- package/cdp-due--customer-space-module-master/src/contents/kazaplan/kazaplan-plan-page/KazaplanAuthentPage.vue +18 -0
- package/cdp-due--customer-space-module-master/src/contents/kazaplan/kazaplan-plan-page/KazaplanPlanPage.vue +23 -0
- package/cdp-due--customer-space-module-master/src/contents/kazaplan/kazaplan-plan-page/useKazaplanPlan.js +80 -0
- package/cdp-due--customer-space-module-master/src/contents/kazaplan/module/actions.js +29 -0
- package/cdp-due--customer-space-module-master/src/contents/kazaplan/module/constants.js +6 -0
- package/cdp-due--customer-space-module-master/src/contents/kazaplan/module/getters.js +5 -0
- package/cdp-due--customer-space-module-master/src/contents/kazaplan/module/index.js +16 -0
- package/cdp-due--customer-space-module-master/src/contents/kazaplan/module/mutations.js +7 -0
- package/cdp-due--customer-space-module-master/src/contents/kazaplan/routes.js +89 -0
- package/cdp-due--customer-space-module-master/src/contents/kazaplan/trackingEvents.js +15 -0
- package/cdp-due--customer-space-module-master/src/contents/layout/LayoutHeader.vue +224 -0
- package/cdp-due--customer-space-module-master/src/contents/layout/LayoutPage.vue +32 -0
- package/cdp-due--customer-space-module-master/src/contents/layout/banners/BannerUserInfoCollaborator.vue +43 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/LoyaltyCardDetailsPage.vue +205 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/LoyaltyPage.vue +262 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/adherent-card/LoyaltyAdherentCardPage.no-layout.vue +49 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/adherent-card/OnDisplayStepAnalyticsWrapper.vue +16 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/adherent-card/composables/utils/__tests__/defineFormValues.js +68 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/adherent-card/constants/notifications.js +25 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/adherent-card/constants/storage.js +1 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/adherent-card/constants/tracking.js +83 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/adherent-card/constants/translations.js +13 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/adherent-card/loyaltyAdherentPage.composable.js +178 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/adherent-card/loyaltyAdherentPage.rules.js +130 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/adherent-card/submit/createLoyaltyPayload.js +14 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/adherent-card/submit/handleAdditionalFields.js +6 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/adherent-card/submit/handleIGeneralInfos.js +11 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/adherent-card/submit/handleProfessionalInfos.js +16 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/adherent-card/submit/handleSubmit.js +38 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/adherent-card/submit/submit.js +60 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/coOwner-invitation/CoOwnerInvitation.vue +16 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/coOwner-invitation/CoOwnerInvitationPage.vue +10 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/coOwner-invitation/__tests__/coOwnerInvitation.rules.test.js +52 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/coOwner-invitation/coOwnerInvitation.composable.js +32 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/coOwner-invitation/coOwnerInvitation.rules.js +30 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/coOwner-invitation/coOwnerInvitationPage.composable.js +8 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/coOwner-invitation/expired/CoOwnerInvitationExpired.vue +80 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/coOwner-invitation/expired/coOwnerInvitationExpired.composable.js +20 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/coOwner-invitation/notification/CoOwnerInvitationNotification.vue +54 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/coOwner-invitation/notification/__tests__/coOwnerInvitationNotification.rules.test.js +23 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/coOwner-invitation/notification/coOwnerInvitationNotification.composable.js +37 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/coOwner-invitation/notification/coOwnerInvitationNotification.rules.js +31 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/coOwner-invitation/valid/CoOwnerInvitationValid.vue +171 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/coOwner-invitation/valid/__tests__/coOwnerInvitationValid.rules.test.js +55 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/coOwner-invitation/valid/coOwnerInvitationValid.composable.js +59 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/coOwner-invitation/valid/coOwnerInvitationValid.rules.js +26 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/coOwner-invitation/wrong-account/CoOwnerInvitationWrongAccount.vue +81 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/constants.js +21 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/history-points/HistoryPointsPage.vue +104 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/history-points/__tests__/historyPointsPage.rules.test.js +146 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/history-points/historyPointsPage.composable.js +60 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/history-points/historyPointsPage.request.js +19 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/history-points/historyPointsPage.rules.js +63 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/history-points/module/index.js +21 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-card/LoyaltyCard.vue +64 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-card/LoyaltyCardApp.vue +169 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-card/LoyaltyCardEverywhere.vue +138 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-card/LoyaltyCardFunding.default.vue +3 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-card/LoyaltyCardFunding.frlm.vue +7 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-card/LoyaltyCardFunding.vue +103 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-card/LoyaltyCardHeader.vue +49 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-card/LoyaltyCardOwned.vue +60 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-card/LoyaltyCardQuestion.vue +58 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-card/LoyaltyCardTou.vue +34 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-card/loyalty-card-advantages/LoyaltyCardAdvantages.vue +232 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-card/loyaltyCardApp.rules.js +13 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-card/loyaltyCardTou.rules.js +13 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-page-components/advantageConfig.js +31 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-page-components/loyalty-stop/LoyaltyStop.vue +80 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-page-components/loyalty-stop/LoyaltyStopModal.vue +86 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-page-components/loyalty-stop/loyaltyStop.composable.js +49 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-page-components/loyalty-stop/loyaltyStop.rules.js +20 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-page-components/my-advantages/MyAdvantages.vue +77 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-page-components/my-advantages/advantagesConfig.frlm.js +191 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-page-components/my-advantages/advantagesConfig.itlm.js +177 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-page-components/my-discount/Discount.vue +148 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-page-components/my-discount/DiscountContainer.vue +51 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-page-components/partner-platform-loyalty/PartnerPlatformLoyalty.vue +62 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-page-components/partner-platform-loyalty/partenerPlatformLoylaty.composable.js +16 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/loyaltyCardDetailsPage.rules.js +17 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/loyaltyPageStyle.scss +114 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/module/actions.js +124 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/module/constants.js +37 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/module/getters.js +21 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/module/index.js +31 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/module/mutations.js +26 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/partnerPlatformLoyalty.rules.js +13 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/Advantage.vue +131 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/DiscoverLoyaltyBenefitsPage.vue +135 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/InformationCard.vue +36 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/Reward.vue +143 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/Rewards.vue +115 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/ShowMoreButton.vue +57 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/StoreChoice.vue +31 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/StoreChoicePage.vue +43 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/my-loyalty-page/MyLoyaltyNoLoyalty.vue +52 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/my-loyalty-page/MyLoyaltyPage.vue +188 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/my-loyalty-page/__tests__/myLoyaltyPage.rules.test.js +35 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/my-loyalty-page/co-owners/CoOwners.vue +33 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/my-loyalty-page/myLoyaltyPage.composable.js +31 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/my-loyalty-page/myLoyaltyPage.rules.js +42 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/my-loyalty-page/useLoyaltyCardComponent.js +16 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/rewards.composable.js +73 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/rewards.rules.js +32 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/useRewards.js +10 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/routes.js +207 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/trackingEvents.js +111 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/transform-points/LoyaltyTransformPointsPage.vue +189 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/transform-points/availablePointsTransformation.composable.js +29 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/transform-points/layer/CustomRewardLayer.vue +110 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/transform-points/layer/FixedRewardLayer.vue +128 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/transform-points/layer/components/LayerButton.vue +45 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/transform-points/layer/components/TextBlockDescription.vue +31 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/transform-points/layer/components/TextBlockTitle.vue +31 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/transform-points/layer/loyaltyFixedPointsTransformation.composable.js +40 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/transform-points/layer/loyaltyTransformPointsPageCustomizableLayer.composable.js +96 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/transform-points/layer/loyaltyTransformPointsPageLayer.rules.js +61 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/transform-points/loyaltyTransformPointsPage.composable.js +65 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/transform-points/loyaltyTransformPointsPage.rules.js +137 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/transform-points/points/PointsComment.vue +20 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/transform-points/points/PointsSubComment.vue +25 -0
- package/cdp-due--customer-space-module-master/src/contents/loyalty/transform-points/points/PointsTitle.vue +39 -0
- package/cdp-due--customer-space-module-master/src/contents/menu/CustomerHeader.vue +84 -0
- package/cdp-due--customer-space-module-master/src/contents/menu/customerHeader.rules.js +11 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/PersonalDataPage.vue +21 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/module/index.js +18 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/PersonalDataAccount.vue +20 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/__tests__/personalDataAccountConfig.rules.test.js +44 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-addresses/AccountAddressContent.default.vue +26 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-addresses/AccountAddressContent.eslm.vue +28 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-addresses/AccountAddressContent.itlm.vue +28 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-addresses/AccountAddresses.vue +278 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-addresses/LayerDeleteAddress.vue +78 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-addresses/LayerMainAddresses.vue +155 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-addresses/account-address-edit/AddressEditLayer.vue +257 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-addresses/additionalInfoFields.rules.js +102 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-addresses/address-usages/AddressUsages.vue +41 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-addresses/address-usages/__tests__/addressUsages.rules.test.js +67 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-addresses/address-usages/addressUsages.composable.js +22 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-addresses/address-usages/addressUsages.rules.js +19 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-addresses/addressEditConfig.js +21 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-addresses/addressEditMainConfig.js +7 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-addresses/useAdditionalInfoFields.js +15 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-company/AccountCompany.vue +38 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-company/account-company-form/AccountCompanyForm.vue +59 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-company/account-company-form/accountCompanyForm.composable.js +142 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-company/account-company-form/accountCompanyForm.requests.js +14 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-company/account-company-form/accountCompanyForm.rules.js +64 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-moving-date/AccountMovingDate.vue +73 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-moving-date/accountMovingDate.composable.js +68 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-moving-date/accountMovingDateConfig.js +9 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-password/AccountPassword.vue +167 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-password/accountPasswordDetailFormConfig.js +29 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-payment/AccountPayment.vue +138 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-payment/AccountPaymentCardBox.vue +173 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-payment/AccountPaymentDeleteModal.vue +71 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-payment/AccountPaymentRenameLayer.vue +72 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-payment/__tests__/payment.rules.test.js +37 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-payment/payment.composable.js +135 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-payment/payment.rules.js +38 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-phones/AccountPhones.vue +78 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-phones/account-phone/AccountPhone.vue +80 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-phones/account-phone/accountPhone.rules.js +22 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-phones/accountPhones.composable.js +50 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-phones/accountPhones.rules.js +7 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-phones/phonesEditConfig.js +9 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-profile/AccountProfile.vue +130 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-profile/__tests__/AccountProfile.rules.test.js +78 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-profile/accountProfile.rules.js +155 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-profile/form/AccountProfileForm.eslm.vue +66 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-profile/form/AccountProfileForm.frlm.vue +34 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-profile/form/AccountProfileForm.itlm.vue +94 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-profile/form/AccountProfileForm.pllm.vue +35 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-profile/form/AccountProfileForm.ptlm.vue +69 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-profile/form/AccountProfileForm.vue +104 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-profile/form/AccountProfilesForm.rules.js +163 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-profile/form/__tests__/AccountProfileForm.rules.test.js +114 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-profile/form/accountProfileForm.composable.js +72 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-profile/form/accountProfileForm.translations.js +8 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-profile/form/accountProfileFormConfig.js +128 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-profile/useAccountProfile.js +51 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-store/AccountStore.vue +69 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-store/EditStoreLayer.vue +88 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-store/storesConfig.js +11 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/personalDataAccount.requests.js +66 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/personalDataAccountConfig.rules.js +46 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/trackingEvents.js +59 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-community/PersonalDataCommunity.vue +31 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-community/community-avatar/CommunityAvatar.vue +121 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-community/community-create/CommunityCreate.vue +34 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-community/community-create/CommunityCreateNickname.vue +213 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-community/community-infos/CommunityInfos.vue +94 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-community/community-infos/communityDetailFormConfig.js +28 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-community/community-none/CommunityNone.vue +65 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/routes.js +78 -0
- package/cdp-due--customer-space-module-master/src/contents/personal-data/translations.js +19 -0
- package/cdp-due--customer-space-module-master/src/contents/projects-and-tools/projectsAndToolsConfig.js +38 -0
- package/cdp-due--customer-space-module-master/src/contents/projects-and-tools/projectsAndToolsPage.vue +16 -0
- package/cdp-due--customer-space-module-master/src/contents/projects-and-tools/routes.js +25 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/__tests__/purchaseReceiptDetail.rules.test.js +52 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/composables/chooseAddress.composable.js +186 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/composables/donwloadInvoice.composable.js +33 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/composables/editAddress.composable.js +103 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/composables/generationInvoice.composable.js +68 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/composables/invoice.requests.js +21 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/composables/invoiceGenerationHandler.composable.js +40 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/composables/layerGenerate.composable.js +84 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/composables/receiptDetail.js +72 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/composables/receiptDetailQuery.composable.js +31 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/layers/ChooseAddress.vue +318 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/layers/DownloadInvoiceFailed.vue +48 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/layers/EditAddress.vue +190 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/layers/GenerationInvoice.vue +87 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/layers/GenerationInvoiceFailed.vue +53 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/layers/LayerGenerate.vue +69 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/layers/layerAddressesConfig.js +44 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/module/index.js +37 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipt-detail/DepositReceiptBoxProduct.vue +170 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipt-detail/PurchaseReceiptBoxProduct.vue +220 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipt-detail/PurchaseReceiptDetailPage.vue +476 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipt-detail/depositReceiptBoxProduct.rules.js +7 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipt-detail/purchaseReceiptDetail.composable.js +139 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipt-detail/purchaseReceiptDetail.events.js +34 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipt-detail/purchaseReceiptDetail.rules.js +52 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipt-detail/receiptsDetail.requests.js +30 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipts-list/ReceiptsListPage.vue +80 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipts-list/__tests__/purchaseReceiptListPage.rules.test.js +150 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipts-list/box/ReceiptsListBox.vue +181 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipts-list/empty/ReceiptsListEmpty.vue +32 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipts-list/receiptsListPage.composable.js +85 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipts-list/receiptsListPage.requests.js +51 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipts-list/receiptsListPage.rules.js +46 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipts-list/search-bar/ReceiptsListSearchBar.vue +57 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipts-list/search-bar/receiptsListSearchBar.composable.js +21 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipts-list/search-bar/receiptsListSearchBar.rules.js +20 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipts-list/tags/ReceiptsListTags.vue +100 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipts-list/tags/receiptsListTags.composable.js +45 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipts-list/tags/receiptsListTags.rules.js +12 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/routes.js +51 -0
- package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/trackingEvents.js +26 -0
- package/cdp-due--customer-space-module-master/src/domains/addresses/address-edition/AddressEditionLayer.vue +93 -0
- package/cdp-due--customer-space-module-master/src/domains/addresses/address-edition/addressEditionLayer.composable.js +137 -0
- package/cdp-due--customer-space-module-master/src/domains/addresses/address-edition/constants.js +163 -0
- package/cdp-due--customer-space-module-master/src/domains/addresses/address-edition/steps/address/AddressStep.vue +13 -0
- package/cdp-due--customer-space-module-master/src/domains/addresses/address-edition/steps/commodities/BigCheckbox.vue +49 -0
- package/cdp-due--customer-space-module-master/src/domains/addresses/address-edition/steps/commodities/Commodities.vue +9 -0
- package/cdp-due--customer-space-module-master/src/domains/addresses/address-edition/steps/commodities/CommoditiesControl.vue +60 -0
- package/cdp-due--customer-space-module-master/src/domains/addresses/address-edition/steps/commodities/CommoditiesControlOption.vue +83 -0
- package/cdp-due--customer-space-module-master/src/domains/addresses/address-edition/steps/housingCategory/HousingCategory.vue +26 -0
- package/cdp-due--customer-space-module-master/src/domains/addresses/address-edition/steps/housingType/HousingType.vue +26 -0
- package/cdp-due--customer-space-module-master/src/domains/addresses/address-edition/steps/inhabitantStatus/InhabitantStatus.vue +29 -0
- package/cdp-due--customer-space-module-master/src/domains/addresses/address-edition/store.js +21 -0
- package/cdp-due--customer-space-module-master/src/domains/addresses/address-edition/updateCustomerAddress.composable.js +27 -0
- package/cdp-due--customer-space-module-master/src/domains/addresses/address-edition/updateCustomerAddress.request.js +30 -0
- package/cdp-due--customer-space-module-master/src/domains/addresses/main-address-status/MainAddressStatusCheckbox.vue +15 -0
- package/cdp-due--customer-space-module-master/src/domains/addresses/usages/Usages.vue +43 -0
- package/cdp-due--customer-space-module-master/src/domains/addresses/usages/usages.composable.js +18 -0
- package/cdp-due--customer-space-module-master/src/domains/addresses/usages/usages.rules.js +21 -0
- package/cdp-due--customer-space-module-master/src/domains/administrative-identifier/administrativeIdentifier.rules.js +128 -0
- package/cdp-due--customer-space-module-master/src/domains/currency/index.js +15 -0
- package/cdp-due--customer-space-module-master/src/domains/fundings/DashboardFunding.vue +43 -0
- package/cdp-due--customer-space-module-master/src/domains/fundings/DashboardFundingV2.vue +26 -0
- package/cdp-due--customer-space-module-master/src/domains/fundings/__tests__/funding.rules.test.js +42 -0
- package/cdp-due--customer-space-module-master/src/domains/fundings/dashboardFundingV2.composable.js +15 -0
- package/cdp-due--customer-space-module-master/src/domains/fundings/dashboardFundingV2.rules.js +43 -0
- package/cdp-due--customer-space-module-master/src/domains/fundings/funding.composable.js +17 -0
- package/cdp-due--customer-space-module-master/src/domains/fundings/funding.constants.js +4 -0
- package/cdp-due--customer-space-module-master/src/domains/fundings/funding.events.js +60 -0
- package/cdp-due--customer-space-module-master/src/domains/fundings/funding.rules.js +29 -0
- package/cdp-due--customer-space-module-master/src/domains/fundings/fundingSettingsConfig.js +29 -0
- package/cdp-due--customer-space-module-master/src/domains/fundings/oney/OneyFunding.vue +28 -0
- package/cdp-due--customer-space-module-master/src/domains/fundings/oney/hook.js +28 -0
- package/cdp-due--customer-space-module-master/src/domains/legal-form/legalForm.rules.js +9 -0
- package/cdp-due--customer-space-module-master/src/domains/loyalty/available-programs/getAvailablePrograms.composable.js +16 -0
- package/cdp-due--customer-space-module-master/src/domains/loyalty/available-programs/getAvailablePrograms.request.js +14 -0
- package/cdp-due--customer-space-module-master/src/domains/loyalty/invitations/__tests__/getLoyaltyInvitations.rules.test.js +40 -0
- package/cdp-due--customer-space-module-master/src/domains/loyalty/invitations/getLoyaltyInvitations.composable.js +26 -0
- package/cdp-due--customer-space-module-master/src/domains/loyalty/invitations/getLoyaltyInvitations.request.js +12 -0
- package/cdp-due--customer-space-module-master/src/domains/loyalty/invitations/getLoyaltyInvitations.rules.js +8 -0
- package/cdp-due--customer-space-module-master/src/domains/loyalty/program/__tests__/getProgram.rules.test.js +22 -0
- package/cdp-due--customer-space-module-master/src/domains/loyalty/program/constants.js +3 -0
- package/cdp-due--customer-space-module-master/src/domains/loyalty/program/getProgram.composable.js +24 -0
- package/cdp-due--customer-space-module-master/src/domains/loyalty/program/getProgram.request.js +13 -0
- package/cdp-due--customer-space-module-master/src/domains/loyalty/program/getProgram.rules.js +9 -0
- package/cdp-due--customer-space-module-master/src/domains/personal-information/data.js +0 -0
- package/cdp-due--customer-space-module-master/src/domains/personal-information/hook.js +0 -0
- package/cdp-due--customer-space-module-master/src/domains/personal-information/rules.js +0 -0
- package/cdp-due--customer-space-module-master/src/domains/personal-information/service.js +0 -0
- package/cdp-due--customer-space-module-master/src/domains/personal-information/slice.js +1 -0
- package/cdp-due--customer-space-module-master/src/helpers.js +43 -0
- package/cdp-due--customer-space-module-master/src/i18n/index.js +5 -0
- package/cdp-due--customer-space-module-master/src/main.js +53 -0
- package/cdp-due--customer-space-module-master/src/module/actions.js +79 -0
- package/cdp-due--customer-space-module-master/src/module/constants.js +18 -0
- package/cdp-due--customer-space-module-master/src/module/general/actions.js +64 -0
- package/cdp-due--customer-space-module-master/src/module/general/constants.js +23 -0
- package/cdp-due--customer-space-module-master/src/module/general/getters.js +21 -0
- package/cdp-due--customer-space-module-master/src/module/general/index.js +29 -0
- package/cdp-due--customer-space-module-master/src/module/general/mutations.js +22 -0
- package/cdp-due--customer-space-module-master/src/module/getters.js +14 -0
- package/cdp-due--customer-space-module-master/src/module/index.js +69 -0
- package/cdp-due--customer-space-module-master/src/queryHandler.js +61 -0
- package/cdp-due--customer-space-module-master/src/router/constants.js +14 -0
- package/cdp-due--customer-space-module-master/src/router/index.js +81 -0
- package/cdp-due--customer-space-module-master/src/router/routes.common.js +88 -0
- package/cdp-due--customer-space-module-master/src/router/routes.eslm.js +49 -0
- package/cdp-due--customer-space-module-master/src/router/routes.frlm.js +51 -0
- package/cdp-due--customer-space-module-master/src/router/routes.itlm.js +51 -0
- package/cdp-due--customer-space-module-master/src/router/routes.js +15 -0
- package/cdp-due--customer-space-module-master/src/router/routes.ptlm.js +49 -0
- package/cdp-due--customer-space-module-master/src/router/utils.js +7 -0
- package/cdp-due--customer-space-module-master/src/services/__mocks__/customerServiceMock.js +405 -0
- package/cdp-due--customer-space-module-master/src/services/adminService/__tests__/adminService.rules.test.js +79 -0
- package/cdp-due--customer-space-module-master/src/services/adminService/adminService.rules.js +34 -0
- package/cdp-due--customer-space-module-master/src/services/adminService/index.js +111 -0
- package/cdp-due--customer-space-module-master/src/services/afterSaleService.js +35 -0
- package/cdp-due--customer-space-module-master/src/services/customerService.js +485 -0
- package/cdp-due--customer-space-module-master/src/services/errorHandler.js +30 -0
- package/cdp-due--customer-space-module-master/src/services/errorMessages/shoppingListErrorMessage.js +15 -0
- package/cdp-due--customer-space-module-master/src/services/projectsService.js +60 -0
- package/cdp-due--customer-space-module-master/src/services/queries/fetchWrapper.js +45 -0
- package/cdp-due--customer-space-module-master/src/services/queries/queryBuilder.js +24 -0
- package/cdp-due--customer-space-module-master/src/services/utils.js +13 -0
- package/cdp-due--customer-space-module-master/src/store/edges-cases/siret/module/index.js +8 -0
- package/cdp-due--customer-space-module-master/src/store/index.js +77 -0
- package/cdp-due--customer-space-module-master/src/store/storeUtils.js +45 -0
- package/cdp-due--customer-space-module-master/src/stylelint.config.js +1 -0
- package/cdp-due--customer-space-module-master/src/theming/index.js +1 -0
- package/cdp-due--customer-space-module-master/src/theming/mozaic.scss +5 -0
- package/cdp-due--customer-space-module-master/src/utils/AppError.js +5 -0
- package/cdp-due--customer-space-module-master/src/utils/__tests__/createStateManager.test.js +38 -0
- package/cdp-due--customer-space-module-master/src/utils/__tests__/customerNumberForApiUSe.test.js +14 -0
- package/cdp-due--customer-space-module-master/src/utils/__tests__/formatCitiesToOptions.test.js +45 -0
- package/cdp-due--customer-space-module-master/src/utils/__tests__/getFromBuCode.test.js +29 -0
- package/cdp-due--customer-space-module-master/src/utils/ab-test.js +37 -0
- package/cdp-due--customer-space-module-master/src/utils/asyncDebounce.js +21 -0
- package/cdp-due--customer-space-module-master/src/utils/buildPayloadPart.js +114 -0
- package/cdp-due--customer-space-module-master/src/utils/checkMobile.js +33 -0
- package/cdp-due--customer-space-module-master/src/utils/clearForm.js +29 -0
- package/cdp-due--customer-space-module-master/src/utils/composeUrl.js +15 -0
- package/cdp-due--customer-space-module-master/src/utils/config/index.js +31 -0
- package/cdp-due--customer-space-module-master/src/utils/convertString.js +11 -0
- package/cdp-due--customer-space-module-master/src/utils/cookieClickHandler.js +17 -0
- package/cdp-due--customer-space-module-master/src/utils/createInterfacedClass.js +77 -0
- package/cdp-due--customer-space-module-master/src/utils/createModule.js +36 -0
- package/cdp-due--customer-space-module-master/src/utils/createSliceHandler.js +26 -0
- package/cdp-due--customer-space-module-master/src/utils/createStateManager.js +149 -0
- package/cdp-due--customer-space-module-master/src/utils/dispatchUserInfos.js +17 -0
- package/cdp-due--customer-space-module-master/src/utils/formatCitiesToOptions.js +19 -0
- package/cdp-due--customer-space-module-master/src/utils/formatter.js +51 -0
- package/cdp-due--customer-space-module-master/src/utils/getBuCodeFromCountryCode.js +12 -0
- package/cdp-due--customer-space-module-master/src/utils/getCustomerNumberForApiUse.js +5 -0
- package/cdp-due--customer-space-module-master/src/utils/getDomElement.js +3 -0
- package/cdp-due--customer-space-module-master/src/utils/getFromBuCode.js +12 -0
- package/cdp-due--customer-space-module-master/src/utils/getFromBuCodeForConfig.js +17 -0
- package/cdp-due--customer-space-module-master/src/utils/index.js +14 -0
- package/cdp-due--customer-space-module-master/src/utils/logger.js +10 -0
- package/cdp-due--customer-space-module-master/src/utils/loggz.js +4 -0
- package/cdp-due--customer-space-module-master/src/utils/openPopup.js +35 -0
- package/cdp-due--customer-space-module-master/src/utils/sleep.js +5 -0
- package/cdp-due--customer-space-module-master/src/utils/sort.js +24 -0
- package/cdp-due--customer-space-module-master/src/utils/storage.js +97 -0
- package/cdp-due--customer-space-module-master/src/utils/syncUserNameOnStaticContent.js +25 -0
- package/cdp-due--customer-space-module-master/src/utils/tracking/dirtyHackBase64.js +14 -0
- package/cdp-due--customer-space-module-master/src/utils/tracking/fireTrackingEvent.js +10 -0
- package/cdp-due--customer-space-module-master/src/utils/tracking/index.js +238 -0
- package/cdp-due--customer-space-module-master/src/utils/tracking/sendTrackingEvent.js +32 -0
- package/cdp-due--customer-space-module-master/src/utils/tracking/useDomTrackingEvent.js +20 -0
- package/cdp-due--customer-space-module-master/templates/i18nConfig.js +12 -0
- package/cdp-due--customer-space-module-master/templates/nginx.conf +77 -0
- package/cdp-due--customer-space-module-master/templates/nginx.conf.local +38 -0
- package/cdp-due--customer-space-module-master/vue.config.js +122 -0
- package/cdp-hpn--customer-profile-backend-master/.dependabot/config.yml +12 -0
- package/cdp-hpn--customer-profile-backend-master/.github/dependabot.yml +13 -0
- package/cdp-hpn--customer-profile-backend-master/.github/settings.xml +54 -0
- package/cdp-hpn--customer-profile-backend-master/.github/workflows/build-branch.yml +62 -0
- package/cdp-hpn--customer-profile-backend-master/.github/workflows/build-release.yml +42 -0
- package/cdp-hpn--customer-profile-backend-master/.github/workflows/check-pr-title.yml +19 -0
- package/cdp-hpn--customer-profile-backend-master/.github/workflows/cleanup.yml +20 -0
- package/cdp-hpn--customer-profile-backend-master/.github/workflows/release.yml +64 -0
- package/cdp-hpn--customer-profile-backend-master/.releaserc +18 -0
- package/cdp-hpn--customer-profile-backend-master/CHANGELOG.md +2300 -0
- package/cdp-hpn--customer-profile-backend-master/Dockerfile +11 -0
- package/cdp-hpn--customer-profile-backend-master/README.md +124 -0
- package/cdp-hpn--customer-profile-backend-master/archi/level-context.dot +44 -0
- package/cdp-hpn--customer-profile-backend-master/customer-profile-backend.json +24 -0
- package/cdp-hpn--customer-profile-backend-master/docker/entrypoint.sh +4 -0
- package/cdp-hpn--customer-profile-backend-master/pom.xml +578 -0
- package/cdp-hpn--customer-profile-backend-master/product-info.json +3 -0
- package/cdp-hpn--customer-profile-backend-master/sonar-project.properties +28 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/config/application.yaml +143 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/config/debug.yaml +5 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/config/logback-properties.xml +7 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/config/logback-spring.xml +141 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/Application.java +27 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/account/AccountController.java +55 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/account/AccountService.java +17 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/account/enums/AccountIdentifierType.java +6 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/account/enums/ProcessType.java +6 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/account/exceptions/CustomerNotFoundException.java +10 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/account/exceptions/WebAccountAlreadyActivatedException.java +10 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/account/exceptions/WebAccountConflictException.java +10 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/account/exceptions/WebAccountNotFoundException.java +10 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/account/impl/AccountServiceDefaultImpl.java +145 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/account/impl/AccountServiceLmesImpl.java +48 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/account/mappers/PreExistenceMapper.java +171 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/account/requests/AccountIdentifierRequest.java +23 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/clients/ClientConfig.java +58 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/clients/exceptions/AccessDeniedData.java +32 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/clients/exceptions/AccessDeniedExceptionHandler.java +68 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/clients/exceptions/AddressNotFoundException.java +14 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/clients/exceptions/CustomerNotFoundException.java +16 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/clients/exceptions/ErrorResource.java +79 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/clients/exceptions/RestExceptionHandler.java +445 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/clients/exceptions/UnauthorizedException.java +12 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/commons/DateFormatter.java +58 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/commons/helpers/DateHelper.java +29 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/commons/helpers/JwtHelper.java +16 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/commons/helpers/LdapHelper.java +17 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/commons/helpers/PhoneHelper.java +31 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/commons/log/ActionType.java +10 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/commons/log/LogHelper.java +62 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/commons/log/LogService.java +37 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/commons/log/LogType.java +5 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/commons/oney/StoreProperties.java +15 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/CacheConfig.java +19 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/Constants.java +66 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/CountryConfiguration.java +19 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/CreationProcessConfig.java +45 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/DecryptionConfiguration.java +20 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/DisableClientConfig.java +15 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/FeatureFlagsConfig.java +14 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/LoyaltyPdfConfig.java +21 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/LoyaltyProgramConfig.java +18 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/LoyaltyTypesConfig.java +15 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/MembershipConfig.java +22 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/OneyConfig.java +28 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/PersonnalDataConfig.java +21 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/RoleMappingConfiguration.java +32 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/SearchOrdersConfig.java +18 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/StringToActionTypeConverter.java +13 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/WebConfig.java +15 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/cookies/CustomerSpaceCustomerCookieConfig.java +19 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/models/CreationProcess.java +12 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/consents/ConsentController.java +140 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/consents/ConsentService.java +30 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/consents/ConsentServiceFrImpl.java +131 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/consents/ConsentServiceOthersImpl.java +83 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/consents/DecryptionService.java +65 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/consents/dtos/ConsentConfigurationDto.java +28 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/consents/dtos/ConsentDto.java +35 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/consents/helpers/ConsentFinalityTypeHelper.java +25 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/consents/mappers/ConsentDtoMapper.java +29 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/consents/mappers/ConsentMapper.java +19 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/consents/mappers/DataComplianceMapper.java +336 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/consents/requests/ConsentListRequest.java +19 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/consents/requests/ConsentRequest.java +30 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/cookies/CookieService.java +120 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/cookies/helper/SavedLoginRequestHelper.java +42 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/CheckAttributesService.java +99 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/CustomerController.java +412 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/CustomerService.java +438 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/AdministrativeIdentifiersDto.java +25 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/CustomerDto.java +52 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/CustomerListDto.java +18 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/LoyaltyCreationDto.java +19 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/MatchCount.java +7 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/MovingDateDto.java +20 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/OrderDto.java +18 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/PreExistenceDto.java +59 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/PreExistenceWebAccountStatus.java +7 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/ProfessionalOrganisationDto.java +32 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/ProfileUrlDto.java +19 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/QualityDto.java +22 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/QualityStatus.java +8 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/SearchResultDto.java +41 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/SocialNetworkProfileDto.java +24 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/TransformationEligibility.java +11 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/UnicityPaymentAccountDto.java +15 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/WebAccountStatus.java +8 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/WebUserDto.java +24 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/enums/ConsentDigitalDocumentsTypeEnum.java +8 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/enums/CustomerTypeEnum.java +5 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/enums/HouseTypeEnum.java +15 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/enums/InhabitantTypeEnum.java +15 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/enums/ProfessionalOrganisationLegalFormEnum.java +32 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/enums/ProfileTypeEnum.java +39 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/history/AccountHistory.java +19 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/history/FieldHistory.java +12 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/mapper/AccountHistoryMapper.java +64 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/mapper/AdministrativeIdentifiersDtoMapper.java +27 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/mapper/ClientPreferenceMapper.java +109 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/mapper/CreateCustomerRequestMapper.java +153 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/mapper/CustomerMapper.java +579 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/mapper/CustomerOrderMapper.java +31 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/mapper/CustomerTypeMapper.java +38 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/mapper/HousingMapper.java +95 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/mapper/InhabitantTranformationMapper.java +102 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/mapper/ProfessionalOrganisationDtoMapper.java +62 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/models/response/CreateCustomerResponse.java +22 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/models/response/LoyaltyCreationState.java +7 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/requests/CheckAttributesRequest.java +14 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/requests/CheckPreExistenceRequest.java +22 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/requests/ConsentTypeRequestEnum.java +6 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/requests/CreateCustomerRequest.java +30 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/requests/HouseTypeEnum.java +15 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/requests/InhabitantTransformationRequest.java +25 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/requests/InhabitantTypeEnum.java +16 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/requests/PreCreateCustomerRequest.java +48 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/requests/SearchCustomerRequest.java +30 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/requests/SearchIdentityRequest.java +20 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/requests/SearchProfessionalOrganisationRequest.java +19 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/requests/UpdateCustomerRequest.java +37 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/requests/UpdateHousingRequest.java +16 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/helpers/StringHelper.java +19 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/helpers/UriHelper.java +61 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/labels/LabelsController.java +27 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/labels/LabelsService.java +20 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/LoyaltyController.java +350 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/LoyaltyCreationService.java +204 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/LoyaltyProgramsController.java +81 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/LoyaltyService.java +262 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/PdfService.java +267 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/ActionType.java +6 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/BadgeDto.java +19 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/BadgeTypeDto.java +20 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/CguDto.java +16 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/CoOwnerDTO.java +19 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/LoyaltyCardDto.java +47 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/LoyaltyCardType.java +19 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/LoyaltyLabelDto.java +15 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/MembershipProcess.java +8 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/ProgramDto.java +36 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/ProgramsDto.java +18 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/RankDto.java +20 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/RankTypeDto.java +16 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/ReEnrollDto.java +18 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/RewardAttributeDto.java +23 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/RewardBurnCriteriaDto.java +22 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/RewardDto.java +32 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/SupportDto.java +18 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/invitations/LoyaltyInvitationDto.java +35 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/invitations/UserInvitationAction.java +37 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/pointshistories/EventLoyaltyPointDto.java +29 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/pointshistories/LoyaltyPointsHistoriesDto.java +26 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/pointtransformation/PointTransformationDto.java +30 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/targetedoffer/PromotionalRewardDto.java +29 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/exceptions/CoOwnerInvitationNotFoundException.java +11 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/helpers/BarcodeHelper.java +54 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/helpers/LoyaltyCardHelper.java +152 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/mappers/LoyaltyAccountMapper.java +272 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/mappers/LoyaltyCreationMapper.java +32 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/mappers/LoyaltyCustomerMapper.java +287 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/mappers/LoyaltyInvitationsMapper.java +103 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/mappers/LoyaltyProgramMapper.java +129 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/mappers/MembershipRequestMapper.java +47 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/mappers/PointTansformationMapper.java +94 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/mappers/TargetedOfferMapper.java +42 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/models/pdf/PdfOutputStream.java +15 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/requests/CreateLoyaltyInvitationAttributesPreRequest.java +16 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/requests/CreateLoyaltyInvitationPreRequest.java +19 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/requests/CreateLoyaltyRequest.java +15 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/requests/PatchTargetedOfferRequest.java +15 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/requests/PointTransformationRequest.java +16 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/payments/PaymentsController.java +92 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/payments/PaymentsService.java +153 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/payments/mappers/OneyMapper.java +176 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/payments/mappers/PaymentsPgwMapper.java +83 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/payments/models/CreditCardDto.java +29 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/payments/models/CreditCardRequest.java +16 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/personaldata/AddressesController.java +121 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/personaldata/dtos/AddressDto.java +38 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/personaldata/dtos/HousingDto.java +31 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/personaldata/dtos/PhoneDto.java +21 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/personaldata/mappers/AddressDtoMapper.java +29 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/personaldata/mappers/AddressesMapper.java +171 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/personaldata/mappers/ApiCiamMapper.java +47 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/personaldata/mappers/ApiMdmMapper.java +137 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/personaldata/mappers/HousingDtoMapper.java +66 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/personaldata/request/UpdateCompanyRequest.java +31 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/personaldata/request/UpdateProfileRequest.java +44 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/personaldata/services/AddressesService.java +241 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/personaldata/services/PatchCustomerService.java +713 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/profile/ProfileController.java +59 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/profile/ProfileService.java +86 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/profile/models/CommunityProfileResponse.java +17 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/profile/models/ImageSize.java +14 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/profile/requests/CommunityProfileRequest.java +19 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/profile/requests/CommunitySocialRequest.java +14 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/profile/requests/UpdateAvatarRequest.java +11 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/profile/requests/UpdateCommunityProfileRequest.java +31 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/profile/requests/UploadAvatarRequest.java +13 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/ResourceController.java +90 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/ResourceMapper.java +95 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/ResourceService.java +203 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/StoreDtoMapper.java +24 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/StoreService.java +88 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/city/CityService.java +8 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/city/dtos/CityDto.java +6 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/city/dtos/CityListDto.java +18 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/city/dtos/FrCityDto.java +25 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/city/dtos/OtherBuCityDto.java +21 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/city/impl/lmfr/CityServiceFrImpl.java +24 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/city/impl/others/CityServiceOthersImpl.java +29 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/dtos/AddressDto.java +17 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/dtos/CountryDto.java +19 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/dtos/ProvinceDto.java +14 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/dtos/RoleDto.java +22 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/dtos/RoleListDto.java +17 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/dtos/StoreDto.java +16 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/dtos/StoreListDto.java +18 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/user/UserContextMapper.java +17 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/user/UserController.java +65 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/user/UserMapper.java +38 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/user/UserService.java +63 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/user/contextualization/ContextualizationService.java +9 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/user/contextualization/impl/ContextualizationServiceDefaultImpl.java +39 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/user/contextualization/impl/ContextualizationServiceFrImpl.java +49 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/user/dtos/CustomerSpaceCustomerCookieDto.java +25 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/user/dtos/UserDto.java +46 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/user/dtos/enums/CivilityEnum.java +32 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/user/exceptions/UserContextualizationException.java +14 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/user/requests/UserContextRequest.java +10 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/webuser/WebUserController.java +77 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/webuser/WebUserService.java +124 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/webuser/exceptions/CustomerAlreadyBoundToWebUserException.java +14 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/webuser/exceptions/WebUserNotFoundException.java +14 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/webuser/exceptions/WebUserSuspendException.java +17 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/webuser/mappers/WebUserMapper.java +43 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/webuser/models/BindToWebUserRequest.java +18 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/webuser/models/UpdateWebUserResponse.java +19 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/housing_pass.jrxml +30 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/bullet.gif +0 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/carte-row-right.gif +0 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/carte.gif +0 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/closer.gif +0 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/closer2.gif +0 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/code_barre.gif +0 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/codebarre.gif +0 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/contents1-left.gif +0 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/contents1-right.gif +0 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/contents2-end.gif +0 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/contents2-left.gif +0 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/contents2-right.gif +0 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/contents5-left.gif +0 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/contents5-right.gif +0 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/last-left.gif +0 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/last-right.gif +0 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/logo.gif +0 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/midtitles.gif +0 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/pass_maison.jpg +0 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/subtitle1.gif +0 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/subtitle2.gif +0 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/subtitle3.gif +0 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/subtitle4.png +0 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/title.gif +0 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/title4.gif +0 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/title5-end.gif +0 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/title5.gif +0 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/top.gif +0 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/lm_and_me.jrxml +17 -0
- package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/loyalty_card.jrxml +303 -0
- package/cdp-hpn--customer-profile-backend-master/src/test/java/com/adeo/customerprofilebackend/ApplicationTests.java +21 -0
- package/cdp-hpn--customer-profile-backend-master/src/test/java/com/adeo/customerprofilebackend/customer/mapper/CustomerMapperTest.java +264 -0
- package/cdp-hpn--customer-profile-backend-master/src/test/java/com/adeo/customerprofilebackend/loyalty/LoyaltyCreationServiceTest.java +349 -0
- package/cdp-hpn--customer-profile-backend-master/src/test/java/com/adeo/customerprofilebackend/resource/ResourceServiceTest.java +414 -0
- package/index.js +13 -0
- package/package.json +15 -0
@@ -0,0 +1,1784 @@
|
|
1
|
+
## [6.54.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.54.2...v6.54.3) (2024-05-27)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* CIAM-2650 Unit tests P1 ([#293](https://github.com/adeo/cdp-due--authentication-module/issues/293)) ([42424f5](https://github.com/adeo/cdp-due--authentication-module/commit/42424f5e38814c5bc848b13c8e4f29ea08358e1e))
|
7
|
+
|
8
|
+
## [6.54.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.54.1...v6.54.2) (2024-04-26)
|
9
|
+
|
10
|
+
|
11
|
+
### Reverts
|
12
|
+
|
13
|
+
* Revert "feat: Customer Context Cookie (#286)" ([403d540](https://github.com/adeo/cdp-due--authentication-module/commit/403d5404b8ff09ac3508399624b1b2fa4591a493)), closes [#286](https://github.com/adeo/cdp-due--authentication-module/issues/286)
|
14
|
+
|
15
|
+
## [6.54.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.54.0...v6.54.1) (2024-04-25)
|
16
|
+
|
17
|
+
|
18
|
+
### Bug Fixes
|
19
|
+
|
20
|
+
* missing social-connector param after social login for non LMFR BU ([#290](https://github.com/adeo/cdp-due--authentication-module/issues/290)) ([c23a40d](https://github.com/adeo/cdp-due--authentication-module/commit/c23a40df105e7e9bf402175d2dec3b3f84954071))
|
21
|
+
|
22
|
+
# [6.54.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.53.1...v6.54.0) (2024-04-25)
|
23
|
+
|
24
|
+
|
25
|
+
### Features
|
26
|
+
|
27
|
+
* CIAM-2358 Authenticate users using the SSO cookie ([#289](https://github.com/adeo/cdp-due--authentication-module/issues/289)) ([89ee58d](https://github.com/adeo/cdp-due--authentication-module/commit/89ee58db342eb760434fef6939dc9034689cc88c))
|
28
|
+
|
29
|
+
## [6.53.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.53.0...v6.53.1) (2024-04-18)
|
30
|
+
|
31
|
+
|
32
|
+
### Bug Fixes
|
33
|
+
|
34
|
+
* CIAM-2356 AUTH-MOD - Password Strength Validation ([#265](https://github.com/adeo/cdp-due--authentication-module/issues/265)) ([f6b0c6e](https://github.com/adeo/cdp-due--authentication-module/commit/f6b0c6e6262774990462c917e19c411debfbdc6e))
|
35
|
+
|
36
|
+
# [6.53.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.52.8...v6.53.0) (2024-04-18)
|
37
|
+
|
38
|
+
|
39
|
+
### Features
|
40
|
+
|
41
|
+
* Customer Context Cookie ([#286](https://github.com/adeo/cdp-due--authentication-module/issues/286)) ([a32bc12](https://github.com/adeo/cdp-due--authentication-module/commit/a32bc12c711e0b908d36afe99e9bfa511905d8ab))
|
42
|
+
|
43
|
+
## [6.52.8](https://github.com/adeo/cdp-due--authentication-module/compare/v6.52.7...v6.52.8) (2024-04-04)
|
44
|
+
|
45
|
+
|
46
|
+
### Bug Fixes
|
47
|
+
|
48
|
+
* CIAM-2482 Translation missing for "Not matching password" ([#284](https://github.com/adeo/cdp-due--authentication-module/issues/284)) ([8134130](https://github.com/adeo/cdp-due--authentication-module/commit/8134130a20ac499cbfc84c8538742568c1b7a503))
|
49
|
+
|
50
|
+
## [6.52.7](https://github.com/adeo/cdp-due--authentication-module/compare/v6.52.6...v6.52.7) (2024-04-04)
|
51
|
+
|
52
|
+
|
53
|
+
### Bug Fixes
|
54
|
+
|
55
|
+
* CIAM-2483 Custom contact url (vault) and phone number (phrase App) per BU ([#283](https://github.com/adeo/cdp-due--authentication-module/issues/283)) ([3d3114b](https://github.com/adeo/cdp-due--authentication-module/commit/3d3114bd64f50ce5ea7d7069861f0a3d4a951cd9))
|
56
|
+
|
57
|
+
## [6.52.6](https://github.com/adeo/cdp-due--authentication-module/compare/v6.52.5...v6.52.6) (2024-04-04)
|
58
|
+
|
59
|
+
|
60
|
+
### Bug Fixes
|
61
|
+
|
62
|
+
* CIAM-2346 Pre-fill email field with the correct email on forgotten pwd page ([#281](https://github.com/adeo/cdp-due--authentication-module/issues/281)) ([83de730](https://github.com/adeo/cdp-due--authentication-module/commit/83de73013420f595786d4affc88cfc645ce9e677))
|
63
|
+
|
64
|
+
## [6.52.5](https://github.com/adeo/cdp-due--authentication-module/compare/v6.52.4...v6.52.5) (2024-04-03)
|
65
|
+
|
66
|
+
|
67
|
+
### Bug Fixes
|
68
|
+
|
69
|
+
* CIAM-2505 CSRF security implementation => fix wrong import :D ([#285](https://github.com/adeo/cdp-due--authentication-module/issues/285)) ([d79a307](https://github.com/adeo/cdp-due--authentication-module/commit/d79a307ec487cce8105af81bc07d75f40d6642bb))
|
70
|
+
|
71
|
+
## [6.52.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.52.3...v6.52.4) (2024-04-02)
|
72
|
+
|
73
|
+
|
74
|
+
### Bug Fixes
|
75
|
+
|
76
|
+
* adding kazaplan pattern config ([#282](https://github.com/adeo/cdp-due--authentication-module/issues/282)) ([4d551e5](https://github.com/adeo/cdp-due--authentication-module/commit/4d551e5c8e03602100ccd9805fb6bd1057f759ee))
|
77
|
+
|
78
|
+
## [6.52.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.52.2...v6.52.3) (2024-03-29)
|
79
|
+
|
80
|
+
|
81
|
+
### Bug Fixes
|
82
|
+
|
83
|
+
* CIAM-2447 Secure the /services/account/check endpoint using CSRF security ([#280](https://github.com/adeo/cdp-due--authentication-module/issues/280)) ([836828d](https://github.com/adeo/cdp-due--authentication-module/commit/836828d14de557672a13f915256646759c255c6f))
|
84
|
+
|
85
|
+
## [6.52.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.52.1...v6.52.2) (2024-03-25)
|
86
|
+
|
87
|
+
|
88
|
+
### Bug Fixes
|
89
|
+
|
90
|
+
* CIAM-2447 Secure the /services/account/check endpoint ([#279](https://github.com/adeo/cdp-due--authentication-module/issues/279)) ([5d63668](https://github.com/adeo/cdp-due--authentication-module/commit/5d63668815e646e6d122c313e0b4bafbbccaf763))
|
91
|
+
|
92
|
+
## [6.52.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.52.0...v6.52.1) (2024-03-20)
|
93
|
+
|
94
|
+
|
95
|
+
### Bug Fixes
|
96
|
+
|
97
|
+
* CIAM-2447 Secure the /services/account/check endpoint ([#278](https://github.com/adeo/cdp-due--authentication-module/issues/278)) ([5295b17](https://github.com/adeo/cdp-due--authentication-module/commit/5295b17c8ea8821010a6cdc96546629ecd37dc3b))
|
98
|
+
|
99
|
+
# [6.52.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.51.0...v6.52.0) (2024-03-19)
|
100
|
+
|
101
|
+
|
102
|
+
### Features
|
103
|
+
|
104
|
+
* **ping:** implements refresh token ([#275](https://github.com/adeo/cdp-due--authentication-module/issues/275)) ([efd46a7](https://github.com/adeo/cdp-due--authentication-module/commit/efd46a734eea6bf99e79e234ec0ed00bbf02cf2c))
|
105
|
+
|
106
|
+
# [6.51.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.50.0...v6.51.0) (2024-03-18)
|
107
|
+
|
108
|
+
|
109
|
+
### Features
|
110
|
+
|
111
|
+
* fix dockerfile ([#277](https://github.com/adeo/cdp-due--authentication-module/issues/277)) ([5fa276f](https://github.com/adeo/cdp-due--authentication-module/commit/5fa276fee588d4d50d88225d6334be9308e3d2d1))
|
112
|
+
|
113
|
+
# [6.50.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.49.0...v6.50.0) (2024-03-18)
|
114
|
+
|
115
|
+
|
116
|
+
### Features
|
117
|
+
|
118
|
+
* restore versions upgrades, role management update, log fixes --- Revert "fix: delete kobijwt on authorize and revert to v6.46.1 ([#268](https://github.com/adeo/cdp-due--authentication-module/issues/268))" ([#272](https://github.com/adeo/cdp-due--authentication-module/issues/272)) ([0ac5587](https://github.com/adeo/cdp-due--authentication-module/commit/0ac5587c31d0187a27d975fd23f2ea01795a2a91))
|
119
|
+
|
120
|
+
# [6.49.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.48.0...v6.49.0) (2024-03-18)
|
121
|
+
|
122
|
+
|
123
|
+
### Features
|
124
|
+
|
125
|
+
* restor versions upgrades, role management update, log fixes --- Revert "fix: delete kobijwt on authorize and revert to v6.46.1 ([#268](https://github.com/adeo/cdp-due--authentication-module/issues/268))" ([#272](https://github.com/adeo/cdp-due--authentication-module/issues/272)) ([379fc84](https://github.com/adeo/cdp-due--authentication-module/commit/379fc849a52e42f99bf07116d0a47c9e707c4840))
|
126
|
+
|
127
|
+
# [6.48.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.47.3...v6.48.0) (2024-03-18)
|
128
|
+
|
129
|
+
|
130
|
+
### Features
|
131
|
+
|
132
|
+
* restor versions upgrades, role management update, log fixes --- Revert "fix: delete kobijwt on authorize and revert to v6.46.1 ([#268](https://github.com/adeo/cdp-due--authentication-module/issues/268))" ([#272](https://github.com/adeo/cdp-due--authentication-module/issues/272)) ([7ba7c41](https://github.com/adeo/cdp-due--authentication-module/commit/7ba7c4110a5885a44549cb1946bd51f41969f57d))
|
133
|
+
|
134
|
+
## [6.47.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.47.2...v6.47.3) (2024-03-13)
|
135
|
+
|
136
|
+
|
137
|
+
### Bug Fixes
|
138
|
+
|
139
|
+
* CIAM-2262 Authent module - 500 errors account check ([#273](https://github.com/adeo/cdp-due--authentication-module/issues/273)) ([4287a95](https://github.com/adeo/cdp-due--authentication-module/commit/4287a95af19f82362c8cb98aeab44817880ce3cc))
|
140
|
+
|
141
|
+
## [6.47.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.47.1...v6.47.2) (2024-03-12)
|
142
|
+
|
143
|
+
|
144
|
+
### Bug Fixes
|
145
|
+
|
146
|
+
* max session in memory ([#274](https://github.com/adeo/cdp-due--authentication-module/issues/274)) ([d7426d2](https://github.com/adeo/cdp-due--authentication-module/commit/d7426d27d44fffc9c513a81e76106356e99e05e6))
|
147
|
+
|
148
|
+
## [6.47.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.47.0...v6.47.1) (2024-03-12)
|
149
|
+
|
150
|
+
|
151
|
+
### Reverts
|
152
|
+
|
153
|
+
* Revert "feat: CIAM-2003 Presignup email page : disable email update (#243)" ([a260337](https://github.com/adeo/cdp-due--authentication-module/commit/a26033785bd261a06779492bc3e2249e2f15c306)), closes [#243](https://github.com/adeo/cdp-due--authentication-module/issues/243)
|
154
|
+
|
155
|
+
# [6.47.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.46.7...v6.47.0) (2024-03-11)
|
156
|
+
|
157
|
+
|
158
|
+
### Features
|
159
|
+
|
160
|
+
* CIAM-2003 Presignup email page : disable email update ([#243](https://github.com/adeo/cdp-due--authentication-module/issues/243)) ([a72ffb6](https://github.com/adeo/cdp-due--authentication-module/commit/a72ffb67caa3744dc48a73910e2151162c69d4df))
|
161
|
+
|
162
|
+
## [6.46.7](https://github.com/adeo/cdp-due--authentication-module/compare/v6.46.6...v6.46.7) (2024-03-06)
|
163
|
+
|
164
|
+
### Bug Fixes
|
165
|
+
|
166
|
+
* 9831a269 (fix: delete kobijwt on authorize and revert to v6.46.1 (#268))
|
167
|
+
|
168
|
+
|
169
|
+
## [6.46.6](https://github.com/adeo/cdp-due--authentication-module/compare/v6.46.5...v6.46.6) (2024-03-04)
|
170
|
+
|
171
|
+
|
172
|
+
### Bug Fixes
|
173
|
+
|
174
|
+
* added the matching role to the final delivered roles ([#267](https://github.com/adeo/cdp-due--authentication-module/issues/267)) ([5dadd1d](https://github.com/adeo/cdp-due--authentication-module/commit/5dadd1dfaefbbfb382f0cf620f0c7cec45eae29b))
|
175
|
+
|
176
|
+
## [6.46.5](https://github.com/adeo/cdp-due--authentication-module/compare/v6.46.4...v6.46.5) (2024-03-04)
|
177
|
+
|
178
|
+
|
179
|
+
### Bug Fixes
|
180
|
+
|
181
|
+
* CIAM-2338 | Role detection behavior change ([#266](https://github.com/adeo/cdp-due--authentication-module/issues/266)) ([e3f1f5b](https://github.com/adeo/cdp-due--authentication-module/commit/e3f1f5b9ed6761554daf7841b20bfa372fa74218))
|
182
|
+
|
183
|
+
## [6.46.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.46.3...v6.46.4) (2024-02-15)
|
184
|
+
|
185
|
+
|
186
|
+
### Bug Fixes
|
187
|
+
|
188
|
+
* CIAM-2275 | Removed or changed frequent logs ([#262](https://github.com/adeo/cdp-due--authentication-module/issues/262)) ([94f2401](https://github.com/adeo/cdp-due--authentication-module/commit/94f2401027266111dbb29b5f35a65c9052c060a4))
|
189
|
+
|
190
|
+
## [6.46.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.46.2...v6.46.3) (2024-02-15)
|
191
|
+
|
192
|
+
|
193
|
+
### Bug Fixes
|
194
|
+
|
195
|
+
* **dockerfile:** remove useless line causing error ([#264](https://github.com/adeo/cdp-due--authentication-module/issues/264)) ([31a8a09](https://github.com/adeo/cdp-due--authentication-module/commit/31a8a09fa15131a25c4a30f1c306ce51c90d7e40))
|
196
|
+
|
197
|
+
## [6.46.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.46.2...v6.46.3) (2024-02-15)
|
198
|
+
|
199
|
+
|
200
|
+
### Bug Fixes
|
201
|
+
|
202
|
+
* **dockerfile:** remove useless line causing error ([#264](https://github.com/adeo/cdp-due--authentication-module/issues/264)) ([31a8a09](https://github.com/adeo/cdp-due--authentication-module/commit/31a8a09fa15131a25c4a30f1c306ce51c90d7e40))
|
203
|
+
|
204
|
+
## [6.46.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.46.1...v6.46.2) (2024-02-15)
|
205
|
+
|
206
|
+
|
207
|
+
### Bug Fixes
|
208
|
+
|
209
|
+
* **presignupsms:** change encoding algorithm and jackson timezone pb wsince java upgrade([#263](https://github.com/adeo/cdp-due--authentication-module/issues/263)) ([8d9bb36](https://github.com/adeo/cdp-due--authentication-module/commit/8d9bb36fc0ee6173b90fc7c939259f7a745cb01e))
|
210
|
+
|
211
|
+
## [6.46.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.46.0...v6.46.1) (2024-02-06)
|
212
|
+
|
213
|
+
|
214
|
+
### Reverts
|
215
|
+
|
216
|
+
* Revert "Revert "feat: incorporated hylia roles (#254)"" ([f6fd2ca](https://github.com/adeo/cdp-due--authentication-module/commit/f6fd2cad24901b84d9c4b098dba47f5247442203)), closes [#254](https://github.com/adeo/cdp-due--authentication-module/issues/254)
|
217
|
+
|
218
|
+
# [6.46.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.45.1...v6.46.0) (2024-02-02)
|
219
|
+
|
220
|
+
|
221
|
+
### Features
|
222
|
+
|
223
|
+
* upgrade dockerfile jdk 11.0.16 ([#261](https://github.com/adeo/cdp-due--authentication-module/issues/261)) ([f69d7d5](https://github.com/adeo/cdp-due--authentication-module/commit/f69d7d53e9073b43f859418276a94a989842784f))
|
224
|
+
|
225
|
+
|
226
|
+
### Reverts
|
227
|
+
|
228
|
+
* Revert "feat: incorporated hylia roles (#254)" ([c12cc5e](https://github.com/adeo/cdp-due--authentication-module/commit/c12cc5e961641bf4fb83ac55a448e383109f8e61)), closes [#254](https://github.com/adeo/cdp-due--authentication-module/issues/254)
|
229
|
+
|
230
|
+
## [6.45.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.45.0...v6.45.1) (2024-02-01)
|
231
|
+
|
232
|
+
|
233
|
+
### Bug Fixes
|
234
|
+
|
235
|
+
* temporary Kobi.jwt must expire as UncompleteSignup.jwt ([#260](https://github.com/adeo/cdp-due--authentication-module/issues/260)) ([5e75fe8](https://github.com/adeo/cdp-due--authentication-module/commit/5e75fe8dbac0f12ca81f4130ccc920b3dc3d4e4a))
|
236
|
+
|
237
|
+
# [6.45.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.44.0...v6.45.0) (2024-02-01)
|
238
|
+
|
239
|
+
|
240
|
+
### Features
|
241
|
+
|
242
|
+
* new cookie UncompleteSignup.jwt when missing client number on web account ([#259](https://github.com/adeo/cdp-due--authentication-module/issues/259)) ([7935d1f](https://github.com/adeo/cdp-due--authentication-module/commit/7935d1fd56d662d4453406852a45f7c4a9a6d6a7))
|
243
|
+
|
244
|
+
# [6.44.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.43.14...v6.44.0) (2024-01-29)
|
245
|
+
|
246
|
+
|
247
|
+
### Features
|
248
|
+
|
249
|
+
* incorporated hylia roles ([#254](https://github.com/adeo/cdp-due--authentication-module/issues/254)) ([7f14320](https://github.com/adeo/cdp-due--authentication-module/commit/7f14320e5507d2c2775a0f1f0bd88ceeb19dd54e))
|
250
|
+
|
251
|
+
## [6.43.14](https://github.com/adeo/cdp-due--authentication-module/compare/v6.43.13...v6.43.14) (2024-01-23)
|
252
|
+
|
253
|
+
|
254
|
+
### Bug Fixes
|
255
|
+
|
256
|
+
* **cookie:** don't set storeId ccokie on Elo post authentication for specific store setted in vault ([#258](https://github.com/adeo/cdp-due--authentication-module/issues/258)) ([7f28a6d](https://github.com/adeo/cdp-due--authentication-module/commit/7f28a6d49e3733a6c0e7f87661d357f84bae65dc))
|
257
|
+
|
258
|
+
## [6.43.13](https://github.com/adeo/cdp-due--authentication-module/compare/v6.43.12...v6.43.13) (2024-01-22)
|
259
|
+
|
260
|
+
|
261
|
+
### Bug Fixes
|
262
|
+
|
263
|
+
* verify login state, when not valid redirect to empty state callback ([#256](https://github.com/adeo/cdp-due--authentication-module/issues/256)) ([8baf097](https://github.com/adeo/cdp-due--authentication-module/commit/8baf09706c70d8df9a22b0723740320714a49cea))
|
264
|
+
|
265
|
+
## [6.43.12](https://github.com/adeo/cdp-due--authentication-module/compare/v6.43.11...v6.43.12) (2024-01-22)
|
266
|
+
|
267
|
+
|
268
|
+
### Bug Fixes
|
269
|
+
|
270
|
+
* blank space on cgv text for activate account component ([#257](https://github.com/adeo/cdp-due--authentication-module/issues/257)) ([db569d7](https://github.com/adeo/cdp-due--authentication-module/commit/db569d7a16b4add530dac96ab6a35b0f7dbe20d1))
|
271
|
+
|
272
|
+
## [6.43.11](https://github.com/adeo/cdp-due--authentication-module/compare/v6.43.10...v6.43.11) (2024-01-16)
|
273
|
+
|
274
|
+
|
275
|
+
### Bug Fixes
|
276
|
+
|
277
|
+
* manage authentication for mobile ([#253](https://github.com/adeo/cdp-due--authentication-module/issues/253)) ([6205b57](https://github.com/adeo/cdp-due--authentication-module/commit/6205b57d2c300666dbc595115a1254192e3a130b))
|
278
|
+
|
279
|
+
## [6.43.10](https://github.com/adeo/cdp-due--authentication-module/compare/v6.43.9...v6.43.10) (2024-01-02)
|
280
|
+
|
281
|
+
|
282
|
+
### Bug Fixes
|
283
|
+
|
284
|
+
* to bypass reach5 bug which returns last_login_provider = null ([#252](https://github.com/adeo/cdp-due--authentication-module/issues/252)) ([d386af0](https://github.com/adeo/cdp-due--authentication-module/commit/d386af07899f3049cb96df9de1e5349b8147a092))
|
285
|
+
|
286
|
+
## [6.43.9](https://github.com/adeo/cdp-due--authentication-module/compare/v6.43.8...v6.43.9) (2023-12-28)
|
287
|
+
|
288
|
+
|
289
|
+
### Bug Fixes
|
290
|
+
|
291
|
+
* add new env variable to manage maxDepthPerThrowable ([#251](https://github.com/adeo/cdp-due--authentication-module/issues/251)) ([73c556d](https://github.com/adeo/cdp-due--authentication-module/commit/73c556d7352160d48018483918a2c42e84f03f2a))
|
292
|
+
|
293
|
+
## [6.43.8](https://github.com/adeo/cdp-due--authentication-module/compare/v6.43.7...v6.43.8) (2023-12-28)
|
294
|
+
|
295
|
+
|
296
|
+
### Bug Fixes
|
297
|
+
|
298
|
+
* access logs ([#249](https://github.com/adeo/cdp-due--authentication-module/issues/249)) ([079fa2d](https://github.com/adeo/cdp-due--authentication-module/commit/079fa2d90ae701e800a850e057a80c5d8b0d6101))
|
299
|
+
|
300
|
+
## [6.43.7](https://github.com/adeo/cdp-due--authentication-module/compare/v6.43.6...v6.43.7) (2023-12-28)
|
301
|
+
|
302
|
+
|
303
|
+
### Bug Fixes
|
304
|
+
|
305
|
+
* manage unknown genders sent by reachfive ([#250](https://github.com/adeo/cdp-due--authentication-module/issues/250)) ([4a188d1](https://github.com/adeo/cdp-due--authentication-module/commit/4a188d149260b1e5257420731190baf1d23fe89a))
|
306
|
+
|
307
|
+
## [6.43.6](https://github.com/adeo/cdp-due--authentication-module/compare/v6.43.5...v6.43.6) (2023-12-27)
|
308
|
+
|
309
|
+
|
310
|
+
### Bug Fixes
|
311
|
+
|
312
|
+
* remove legacy code developped for mobile app ([#248](https://github.com/adeo/cdp-due--authentication-module/issues/248)) ([213013b](https://github.com/adeo/cdp-due--authentication-module/commit/213013bedb4e6bc1812a889fe735017e4a2a1b67))
|
313
|
+
|
314
|
+
## [6.43.5](https://github.com/adeo/cdp-due--authentication-module/compare/v6.43.4...v6.43.5) (2023-12-21)
|
315
|
+
|
316
|
+
|
317
|
+
### Bug Fixes
|
318
|
+
|
319
|
+
* lmfr social login kobi.jwt duration change ([#247](https://github.com/adeo/cdp-due--authentication-module/issues/247)) ([fa8a75d](https://github.com/adeo/cdp-due--authentication-module/commit/fa8a75d681c46504b60b18672a95be101957facc))
|
320
|
+
|
321
|
+
## [6.43.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.43.3...v6.43.4) (2023-12-19)
|
322
|
+
|
323
|
+
|
324
|
+
### Bug Fixes
|
325
|
+
|
326
|
+
* **social:** fix condition to redirect on completion page ([#246](https://github.com/adeo/cdp-due--authentication-module/issues/246)) ([58de1d4](https://github.com/adeo/cdp-due--authentication-module/commit/58de1d4ef868b8970a7f97e1986fe15e0ed43089))
|
327
|
+
|
328
|
+
## [6.43.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.43.2...v6.43.3) (2023-12-18)
|
329
|
+
|
330
|
+
|
331
|
+
### Bug Fixes
|
332
|
+
|
333
|
+
* 500 error when missing collab department data ([#245](https://github.com/adeo/cdp-due--authentication-module/issues/245)) ([a355ceb](https://github.com/adeo/cdp-due--authentication-module/commit/a355ceb3f86bfe4c486d785785ef9004ea1c9b9f))
|
334
|
+
|
335
|
+
## [6.43.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.43.1...v6.43.2) (2023-12-14)
|
336
|
+
|
337
|
+
|
338
|
+
### Bug Fixes
|
339
|
+
|
340
|
+
* **security:** cipher encoding padding scheme ([#244](https://github.com/adeo/cdp-due--authentication-module/issues/244)) ([906943c](https://github.com/adeo/cdp-due--authentication-module/commit/906943c206b763fe3a264b3ea74b3c7168df2864))
|
341
|
+
|
342
|
+
## [6.43.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.43.0...v6.43.1) (2023-12-12)
|
343
|
+
|
344
|
+
|
345
|
+
### Bug Fixes
|
346
|
+
|
347
|
+
* **check:** add configuration to disable mdm pre existence check ([#242](https://github.com/adeo/cdp-due--authentication-module/issues/242)) ([e64e7f5](https://github.com/adeo/cdp-due--authentication-module/commit/e64e7f51fab790aa5e5b8f50a91297c0a5466ebb))
|
348
|
+
|
349
|
+
# [6.43.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.42.7...v6.43.0) (2023-12-11)
|
350
|
+
|
351
|
+
|
352
|
+
### Features
|
353
|
+
|
354
|
+
* presignup sms activation ([#241](https://github.com/adeo/cdp-due--authentication-module/issues/241)) ([6a0af01](https://github.com/adeo/cdp-due--authentication-module/commit/6a0af0142b9dd2d9cba3225578e1bb55dc35741e))
|
355
|
+
|
356
|
+
## [6.42.7](https://github.com/adeo/cdp-due--authentication-module/compare/v6.42.6...v6.42.7) (2023-11-30)
|
357
|
+
|
358
|
+
|
359
|
+
### Bug Fixes
|
360
|
+
|
361
|
+
* Revert all sms features ([f826834](https://github.com/adeo/cdp-due--authentication-module/commit/f8268343df796b39754de4f855a966af96b22875))
|
362
|
+
|
363
|
+
## [6.42.6](https://github.com/adeo/cdp-due--authentication-module/compare/v6.42.5...v6.42.6) (2023-11-30)
|
364
|
+
|
365
|
+
|
366
|
+
### Bug Fixes
|
367
|
+
|
368
|
+
* revert presignup sms ([#239](https://github.com/adeo/cdp-due--authentication-module/issues/239)) ([6c75f45](https://github.com/adeo/cdp-due--authentication-module/commit/6c75f45a29b7d24e8d79cdb6221727060f0197a3)), closes [#228](https://github.com/adeo/cdp-due--authentication-module/issues/228)
|
369
|
+
|
370
|
+
## [6.42.5](https://github.com/adeo/cdp-due--authentication-module/compare/v6.42.4...v6.42.5) (2023-11-30)
|
371
|
+
|
372
|
+
|
373
|
+
### Bug Fixes
|
374
|
+
|
375
|
+
* set phonenumber not mandatory ([#238](https://github.com/adeo/cdp-due--authentication-module/issues/238)) ([64162b8](https://github.com/adeo/cdp-due--authentication-module/commit/64162b8ff93ce8ddc786a3324e59a0ef8262e0ed))
|
376
|
+
|
377
|
+
## [6.42.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.42.3...v6.42.4) (2023-11-30)
|
378
|
+
|
379
|
+
|
380
|
+
### Bug Fixes
|
381
|
+
|
382
|
+
* set verification code not mandatory ([#237](https://github.com/adeo/cdp-due--authentication-module/issues/237)) ([a3c95c8](https://github.com/adeo/cdp-due--authentication-module/commit/a3c95c8f79cd90bb3d012eabc09ba6e50c68f30f))
|
383
|
+
|
384
|
+
## [6.42.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.42.2...v6.42.3) (2023-11-27)
|
385
|
+
|
386
|
+
|
387
|
+
### Bug Fixes
|
388
|
+
|
389
|
+
* CIAM-2004 sonar issues ([#236](https://github.com/adeo/cdp-due--authentication-module/issues/236)) ([c6d4803](https://github.com/adeo/cdp-due--authentication-module/commit/c6d48035aa83d4faf33d3640ad75dcb5a0d23f6f))
|
390
|
+
|
391
|
+
## [6.42.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.42.1...v6.42.2) (2023-11-20)
|
392
|
+
|
393
|
+
|
394
|
+
### Bug Fixes
|
395
|
+
|
396
|
+
* hide phone number from user ([#233](https://github.com/adeo/cdp-due--authentication-module/issues/233)) ([b76f665](https://github.com/adeo/cdp-due--authentication-module/commit/b76f665e38f268566e572ad918e81854945c619b))
|
397
|
+
|
398
|
+
## [6.42.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.42.0...v6.42.1) (2023-11-15)
|
399
|
+
|
400
|
+
|
401
|
+
### Bug Fixes
|
402
|
+
|
403
|
+
* **social-login:** add tracking values for signup and login + remove worflow for ab-testing + minor fixes on signup workflow ([#225](https://github.com/adeo/cdp-due--authentication-module/issues/225)) ([3830583](https://github.com/adeo/cdp-due--authentication-module/commit/38305837cc8dcbc63f78d68ba6fd7bfb043b8150))
|
404
|
+
|
405
|
+
# [6.42.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.41.2...v6.42.0) (2023-11-15)
|
406
|
+
|
407
|
+
|
408
|
+
### Features
|
409
|
+
|
410
|
+
* **sms:** presignup sms validation code form ([2740102](https://github.com/adeo/cdp-due--authentication-module/commit/2740102169a664a5068da0de94da623ffca2745f))
|
411
|
+
|
412
|
+
## [6.41.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.41.1...v6.41.2) (2023-11-13)
|
413
|
+
|
414
|
+
|
415
|
+
### Bug Fixes
|
416
|
+
|
417
|
+
* **logout:** add query param to manage custom redirect path for poland ([#229](https://github.com/adeo/cdp-due--authentication-module/issues/229)) ([433c9e2](https://github.com/adeo/cdp-due--authentication-module/commit/433c9e2bdd195c66f742874850b0d9f4b2b59916))
|
418
|
+
|
419
|
+
## [6.41.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.41.0...v6.41.1) (2023-11-10)
|
420
|
+
|
421
|
+
|
422
|
+
### Bug Fixes
|
423
|
+
|
424
|
+
* set docker user for security ([#201](https://github.com/adeo/cdp-due--authentication-module/issues/201)) ([dde1b1b](https://github.com/adeo/cdp-due--authentication-module/commit/dde1b1bdffea840d4784646d0651b78b1a1aa96c))
|
425
|
+
|
426
|
+
# [6.41.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.40.0...v6.41.0) (2023-11-09)
|
427
|
+
|
428
|
+
|
429
|
+
### Features
|
430
|
+
|
431
|
+
* **CIAM-1832:** Micro-frontend activation with preexistence from presignup sms ([#228](https://github.com/adeo/cdp-due--authentication-module/issues/228)) ([a64c0de](https://github.com/adeo/cdp-due--authentication-module/commit/a64c0de0e64401e30d66319bd3515c9bb6744f20))
|
432
|
+
|
433
|
+
# [6.40.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.39.3...v6.40.0) (2023-11-09)
|
434
|
+
|
435
|
+
|
436
|
+
### Features
|
437
|
+
|
438
|
+
* **analytics:** button click event on social connector buttons ([#230](https://github.com/adeo/cdp-due--authentication-module/issues/230)) ([1dce38b](https://github.com/adeo/cdp-due--authentication-module/commit/1dce38bee9406b18290d2c91535b4fa50621f935))
|
439
|
+
|
440
|
+
## [6.39.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.39.2...v6.39.3) (2023-11-09)
|
441
|
+
|
442
|
+
|
443
|
+
### Bug Fixes
|
444
|
+
|
445
|
+
* correct null exception on sms activate ([#227](https://github.com/adeo/cdp-due--authentication-module/issues/227)) ([397f6f5](https://github.com/adeo/cdp-due--authentication-module/commit/397f6f5e58bac23bd948aa0ca5d2e3f35a44ab63))
|
446
|
+
|
447
|
+
## [6.39.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.39.1...v6.39.2) (2023-10-26)
|
448
|
+
|
449
|
+
|
450
|
+
### Bug Fixes
|
451
|
+
|
452
|
+
* **reset-password:** encode email in query parameter ([342b94f](https://github.com/adeo/cdp-due--authentication-module/commit/342b94f9d5f49289af55aa72a2cd5d78fb6df5fc))
|
453
|
+
|
454
|
+
## [6.39.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.39.0...v6.39.1) (2023-10-09)
|
455
|
+
|
456
|
+
|
457
|
+
### Bug Fixes
|
458
|
+
|
459
|
+
* **socialLogin:** add webUserId attribute on kobiJwt for social login signup ([#219](https://github.com/adeo/cdp-due--authentication-module/issues/219)) ([7073770](https://github.com/adeo/cdp-due--authentication-module/commit/7073770b1d6ad73519f80a394b3e15f95bd78744))
|
460
|
+
|
461
|
+
# [6.39.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.38.4...v6.39.0) (2023-10-06)
|
462
|
+
|
463
|
+
|
464
|
+
### Features
|
465
|
+
|
466
|
+
* **login:** enter password for accounts without client number to force reset ([#223](https://github.com/adeo/cdp-due--authentication-module/issues/223)) ([93dd3ec](https://github.com/adeo/cdp-due--authentication-module/commit/93dd3ecbc63ba5734e7f67428ba2e78497941737))
|
467
|
+
|
468
|
+
## [6.38.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.38.3...v6.38.4) (2023-10-05)
|
469
|
+
|
470
|
+
|
471
|
+
### Bug Fixes
|
472
|
+
|
473
|
+
* **CIAM-1900:** AUTH - 500 response on activation for already existing account ([#221](https://github.com/adeo/cdp-due--authentication-module/issues/221)) ([88b6533](https://github.com/adeo/cdp-due--authentication-module/commit/88b6533ee628df819c980f5104fdfb6d6286f315))
|
474
|
+
|
475
|
+
## [6.38.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.38.2...v6.38.3) (2023-09-21)
|
476
|
+
|
477
|
+
|
478
|
+
### Bug Fixes
|
479
|
+
|
480
|
+
* **CIAM-1877:** Go to account creation page. ([#220](https://github.com/adeo/cdp-due--authentication-module/issues/220)) ([e17f654](https://github.com/adeo/cdp-due--authentication-module/commit/e17f654af0607af30528ed26aa6e7f4c0bdacc27))
|
481
|
+
|
482
|
+
## [6.38.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.38.1...v6.38.2) (2023-09-19)
|
483
|
+
|
484
|
+
|
485
|
+
### Bug Fixes
|
486
|
+
|
487
|
+
* redirect to login page when code is null ([#217](https://github.com/adeo/cdp-due--authentication-module/issues/217)) ([1575b19](https://github.com/adeo/cdp-due--authentication-module/commit/1575b198d97850ce4a827c471a60351e6c0b186d))
|
488
|
+
|
489
|
+
## [6.38.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.38.0...v6.38.1) (2023-09-18)
|
490
|
+
|
491
|
+
|
492
|
+
### Bug Fixes
|
493
|
+
|
494
|
+
* **translations:** trigger release ([a0586e6](https://github.com/adeo/cdp-due--authentication-module/commit/a0586e69bf6391b89114c25e9de8e5793f0e43a8))
|
495
|
+
|
496
|
+
# [6.38.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.37.0...v6.38.0) (2023-09-15)
|
497
|
+
|
498
|
+
|
499
|
+
### Features
|
500
|
+
|
501
|
+
* **sociallogin2:** redirection verify email if adress unverified ([68f090f](https://github.com/adeo/cdp-due--authentication-module/commit/68f090fbcac6777fd92036229ec92563e6704eb9))
|
502
|
+
|
503
|
+
# [6.37.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.36.2...v6.37.0) (2023-09-15)
|
504
|
+
|
505
|
+
|
506
|
+
### Features
|
507
|
+
|
508
|
+
* **social_login:** force verify email if address unverified ([#213](https://github.com/adeo/cdp-due--authentication-module/issues/213)) ([096937e](https://github.com/adeo/cdp-due--authentication-module/commit/096937e41436892dd3fe768ff09ff41e93ffbb26))
|
509
|
+
|
510
|
+
## [6.36.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.36.1...v6.36.2) (2023-09-14)
|
511
|
+
|
512
|
+
|
513
|
+
### Bug Fixes
|
514
|
+
|
515
|
+
* **CIAM-1730:** check whether the social connection button exists in the DOM. ([#215](https://github.com/adeo/cdp-due--authentication-module/issues/215)) ([22ff55d](https://github.com/adeo/cdp-due--authentication-module/commit/22ff55dc5024295242ffdb56bdd4902dae02f8cf))
|
516
|
+
|
517
|
+
## [6.36.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.36.0...v6.36.1) (2023-09-14)
|
518
|
+
|
519
|
+
|
520
|
+
### Bug Fixes
|
521
|
+
|
522
|
+
* **ciam-1789:** remove additional space when password and password confirmation are not equals ([#214](https://github.com/adeo/cdp-due--authentication-module/issues/214)) ([37de81a](https://github.com/adeo/cdp-due--authentication-module/commit/37de81a98071387af713e7e5e46078eecdd09909))
|
523
|
+
|
524
|
+
# [6.36.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.35.1...v6.36.0) (2023-08-31)
|
525
|
+
|
526
|
+
|
527
|
+
### Features
|
528
|
+
|
529
|
+
* **CIAM-1789:** password entropy helper ([#208](https://github.com/adeo/cdp-due--authentication-module/issues/208)) ([cc6a816](https://github.com/adeo/cdp-due--authentication-module/commit/cc6a816af95cdb2b91674c8fb32f5bd3c246c69d))
|
530
|
+
|
531
|
+
## [6.35.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.35.0...v6.35.1) (2023-08-22)
|
532
|
+
|
533
|
+
|
534
|
+
### Bug Fixes
|
535
|
+
|
536
|
+
* **authentication:** add tracking value for the new signup ([#203](https://github.com/adeo/cdp-due--authentication-module/issues/203)) ([74eddf5](https://github.com/adeo/cdp-due--authentication-module/commit/74eddf530460f90685bb350149982d88019dcbce))
|
537
|
+
|
538
|
+
# [6.35.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.34.3...v6.35.0) (2023-07-24)
|
539
|
+
|
540
|
+
|
541
|
+
### Features
|
542
|
+
|
543
|
+
* **role:** add custom role for professional customers ([#200](https://github.com/adeo/cdp-due--authentication-module/issues/200)) ([126a171](https://github.com/adeo/cdp-due--authentication-module/commit/126a171f0857d88c7d4bf34e5eb81983d0c22d6e))
|
544
|
+
|
545
|
+
## [6.34.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.34.2...v6.34.3) (2023-07-12)
|
546
|
+
|
547
|
+
|
548
|
+
### Bug Fixes
|
549
|
+
|
550
|
+
* **keepAlive:** reactivate feature ([6febbb6](https://github.com/adeo/cdp-due--authentication-module/commit/6febbb6883df93c073d6aec0f19481779a46af03))
|
551
|
+
|
552
|
+
## [6.34.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.34.1...v6.34.2) (2023-07-11)
|
553
|
+
|
554
|
+
|
555
|
+
### Bug Fixes
|
556
|
+
|
557
|
+
* **idToken:** setIdToken from reachfive response on refreshService ([#199](https://github.com/adeo/cdp-due--authentication-module/issues/199)) ([4f53b15](https://github.com/adeo/cdp-due--authentication-module/commit/4f53b15a4803a268fc89eca0a85dad46937389f5))
|
558
|
+
|
559
|
+
## [6.34.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.34.0...v6.34.1) (2023-07-10)
|
560
|
+
|
561
|
+
|
562
|
+
### Bug Fixes
|
563
|
+
|
564
|
+
* **keepalive:** return keepaliveStatus enum instead of the boolean isCollab ([#196](https://github.com/adeo/cdp-due--authentication-module/issues/196)) ([ce67cb3](https://github.com/adeo/cdp-due--authentication-module/commit/ce67cb39a7eb250fe8a77e9a08853b6ceca721a1))
|
565
|
+
|
566
|
+
# [6.34.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.33.1...v6.34.0) (2023-07-03)
|
567
|
+
|
568
|
+
|
569
|
+
### Features
|
570
|
+
|
571
|
+
* **keepalive:** Implemented keepalive ([#193](https://github.com/adeo/cdp-due--authentication-module/issues/193)) ([44ccb3c](https://github.com/adeo/cdp-due--authentication-module/commit/44ccb3c56d0c7605f9247147a5b1ecd8f2461c56))
|
572
|
+
|
573
|
+
## [6.33.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.33.0...v6.33.1) (2023-06-21)
|
574
|
+
|
575
|
+
|
576
|
+
### Bug Fixes
|
577
|
+
|
578
|
+
* **onboarding:** poland ([#194](https://github.com/adeo/cdp-due--authentication-module/issues/194)) ([d97308d](https://github.com/adeo/cdp-due--authentication-module/commit/d97308dcf2a7f8f8cd86be15dc5757d3e0f530c7))
|
579
|
+
|
580
|
+
# [6.33.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.32.1...v6.33.0) (2023-05-15)
|
581
|
+
|
582
|
+
|
583
|
+
### Features
|
584
|
+
|
585
|
+
* **community:** add generation of tokywoky bep sso cookie ([000f136](https://github.com/adeo/cdp-due--authentication-module/commit/000f136dfc87a0b2a68f57c36b7bfa95bb7a4f33))
|
586
|
+
|
587
|
+
## [6.32.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.32.0...v6.32.1) (2023-05-11)
|
588
|
+
|
589
|
+
|
590
|
+
### Bug Fixes
|
591
|
+
|
592
|
+
* **accessibility:** added hidden field on address edit ([d67f27f](https://github.com/adeo/cdp-due--authentication-module/commit/d67f27ffb95df15384de430a26aaa0d39f2415ae))
|
593
|
+
|
594
|
+
# [6.32.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.31.1...v6.32.0) (2023-04-27)
|
595
|
+
|
596
|
+
|
597
|
+
### Bug Fixes
|
598
|
+
|
599
|
+
* build release ([4ca5d2b](https://github.com/adeo/cdp-due--authentication-module/commit/4ca5d2bcb196da3371386b5e1d536cb0170f1dc1))
|
600
|
+
|
601
|
+
|
602
|
+
### Features
|
603
|
+
|
604
|
+
* **token:** add a new endpoint to retrieve the accessToken expiration date ([#189](https://github.com/adeo/cdp-due--authentication-module/issues/189)) ([31f0a80](https://github.com/adeo/cdp-due--authentication-module/commit/31f0a807118ce35f39e9a98737360b77afb7ae36))
|
605
|
+
|
606
|
+
## [6.31.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.31.0...v6.31.1) (2023-04-26)
|
607
|
+
|
608
|
+
|
609
|
+
### Bug Fixes
|
610
|
+
|
611
|
+
* **ci:** add checkmarx scan on release build workflow ([#190](https://github.com/adeo/cdp-due--authentication-module/issues/190)) ([15f528c](https://github.com/adeo/cdp-due--authentication-module/commit/15f528ccd2cec2a2fc15a5f0f2deaed2c6423f12))
|
612
|
+
|
613
|
+
# [6.31.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.30.0...v6.31.0) (2023-04-06)
|
614
|
+
|
615
|
+
|
616
|
+
### Features
|
617
|
+
|
618
|
+
* **callback:** add authMode queryParam on redirectUrl ([#178](https://github.com/adeo/cdp-due--authentication-module/issues/178)) ([c251121](https://github.com/adeo/cdp-due--authentication-module/commit/c25112185522c5b3dd03fd71765eff2af7226c17))
|
619
|
+
|
620
|
+
# [6.30.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.29.1...v6.30.0) (2023-04-04)
|
621
|
+
|
622
|
+
|
623
|
+
### Features
|
624
|
+
|
625
|
+
* **account-activation:** add feature ([#181](https://github.com/adeo/cdp-due--authentication-module/issues/181)) ([d53130a](https://github.com/adeo/cdp-due--authentication-module/commit/d53130a8b66f4b5161cb916db9d42f92b9ce1839))
|
626
|
+
|
627
|
+
## [6.29.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.29.0...v6.29.1) (2023-03-31)
|
628
|
+
|
629
|
+
|
630
|
+
### Bug Fixes
|
631
|
+
|
632
|
+
* **kobijwt:** delete old domain synchronisation method ([#174](https://github.com/adeo/cdp-due--authentication-module/issues/174)) ([cb5deb4](https://github.com/adeo/cdp-due--authentication-module/commit/cb5deb4040d1d6266a3a41c5d1547c8478bb6194))
|
633
|
+
|
634
|
+
# [6.29.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.28.6...v6.29.0) (2023-03-30)
|
635
|
+
|
636
|
+
|
637
|
+
### Bug Fixes
|
638
|
+
|
639
|
+
* **elo:** add elo kobi.jwt expiration configuration in vault ([#188](https://github.com/adeo/cdp-due--authentication-module/issues/188)) ([b6c638b](https://github.com/adeo/cdp-due--authentication-module/commit/b6c638ba8e9c7f9b516da13a701d4847f2167ecb))
|
640
|
+
|
641
|
+
|
642
|
+
### Features
|
643
|
+
|
644
|
+
* make email edit accessible ([#179](https://github.com/adeo/cdp-due--authentication-module/issues/179)) ([375645d](https://github.com/adeo/cdp-due--authentication-module/commit/375645dbb9d4711e319a42cc801cc434987bd48d))
|
645
|
+
|
646
|
+
## [6.28.6](https://github.com/adeo/cdp-due--authentication-module/compare/v6.28.5...v6.28.6) (2023-03-29)
|
647
|
+
|
648
|
+
|
649
|
+
### Bug Fixes
|
650
|
+
|
651
|
+
* **689:** fix button color for a11y ([#182](https://github.com/adeo/cdp-due--authentication-module/issues/182)) ([c0b4370](https://github.com/adeo/cdp-due--authentication-module/commit/c0b437067311c694ac7ab99d8cdc47963b615c9e))
|
652
|
+
|
653
|
+
## [6.28.5](https://github.com/adeo/cdp-due--authentication-module/compare/v6.28.4...v6.28.5) (2023-03-22)
|
654
|
+
|
655
|
+
|
656
|
+
### Bug Fixes
|
657
|
+
|
658
|
+
* **elo:** Revert fix kobi expiration attribute value for ELO ([#187](https://github.com/adeo/cdp-due--authentication-module/issues/187))" ([772581d](https://github.com/adeo/cdp-due--authentication-module/commit/772581dccac87f90738b205d2b33c1fd4bd6acdc))
|
659
|
+
|
660
|
+
## [6.28.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.28.3...v6.28.4) (2023-03-21)
|
661
|
+
|
662
|
+
|
663
|
+
### Bug Fixes
|
664
|
+
|
665
|
+
* **elo:** fix kobi expiration attribute value for ELO ([#187](https://github.com/adeo/cdp-due--authentication-module/issues/187)) ([45d9bde](https://github.com/adeo/cdp-due--authentication-module/commit/45d9bde435e891d310c9f634310d3047ed74e378))
|
666
|
+
|
667
|
+
## [6.28.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.28.2...v6.28.3) (2023-03-15)
|
668
|
+
|
669
|
+
|
670
|
+
### Bug Fixes
|
671
|
+
|
672
|
+
* fix bad PUT request send at page init ([#185](https://github.com/adeo/cdp-due--authentication-module/issues/185)) ([c813c3f](https://github.com/adeo/cdp-due--authentication-module/commit/c813c3f3e14bc31d6feccf4046517a26236b7088))
|
673
|
+
|
674
|
+
## [6.28.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.28.1...v6.28.2) (2023-03-01)
|
675
|
+
|
676
|
+
|
677
|
+
### Bug Fixes
|
678
|
+
|
679
|
+
* add cdl_page_name on update password page ([#180](https://github.com/adeo/cdp-due--authentication-module/issues/180)) ([b2ce39f](https://github.com/adeo/cdp-due--authentication-module/commit/b2ce39f3b5eb658c114396e951a0293ebfd81de9))
|
680
|
+
|
681
|
+
## [6.28.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.28.0...v6.28.1) (2023-02-23)
|
682
|
+
|
683
|
+
|
684
|
+
### Bug Fixes
|
685
|
+
|
686
|
+
* **translations:** trigger build for translations ([b1c472c](https://github.com/adeo/cdp-due--authentication-module/commit/b1c472cb6a2b2942cc056d7affc597b3014056b6))
|
687
|
+
|
688
|
+
# [6.28.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.27.1...v6.28.0) (2023-02-16)
|
689
|
+
|
690
|
+
|
691
|
+
### Features
|
692
|
+
|
693
|
+
* **elo:** add specific redirect on elo authentication ([#175](https://github.com/adeo/cdp-due--authentication-module/issues/175)) ([66a4d32](https://github.com/adeo/cdp-due--authentication-module/commit/66a4d3245c74c97a9a443b65ab0e61405a413679))
|
694
|
+
|
695
|
+
## [6.27.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.27.0...v6.27.1) (2023-02-14)
|
696
|
+
|
697
|
+
|
698
|
+
### Bug Fixes
|
699
|
+
|
700
|
+
* autorize space in front and back on email ([#177](https://github.com/adeo/cdp-due--authentication-module/issues/177)) ([5318cb1](https://github.com/adeo/cdp-due--authentication-module/commit/5318cb1fb6614578ce4dc125d408e78dd171114e))
|
701
|
+
|
702
|
+
# [6.27.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.26.8...v6.27.0) (2023-02-10)
|
703
|
+
|
704
|
+
|
705
|
+
### Features
|
706
|
+
|
707
|
+
* fix tracking events ([#173](https://github.com/adeo/cdp-due--authentication-module/issues/173)) ([965c1e4](https://github.com/adeo/cdp-due--authentication-module/commit/965c1e422d175e6b4bdf8a200db06b7c4d1593a4))
|
708
|
+
|
709
|
+
## [6.26.8](https://github.com/adeo/cdp-due--authentication-module/compare/v6.26.7...v6.26.8) (2023-01-17)
|
710
|
+
|
711
|
+
|
712
|
+
### Bug Fixes
|
713
|
+
|
714
|
+
* **security:** set sameSite attribute for Kobi.jwt + fix state checking procces to avoid csrf vulnerability ([#171](https://github.com/adeo/cdp-due--authentication-module/issues/171)) ([79872ab](https://github.com/adeo/cdp-due--authentication-module/commit/79872ab4f94c2367db60ff95fc3f49057afb2567))
|
715
|
+
|
716
|
+
## [6.26.7](https://github.com/adeo/cdp-due--authentication-module/compare/v6.26.6...v6.26.7) (2023-01-17)
|
717
|
+
|
718
|
+
|
719
|
+
### Bug Fixes
|
720
|
+
|
721
|
+
* **docker:** update docker reusable workflows version ([#67](https://github.com/adeo/cdp-due--authentication-module/issues/67)) ([#170](https://github.com/adeo/cdp-due--authentication-module/issues/170)) ([c2d01a7](https://github.com/adeo/cdp-due--authentication-module/commit/c2d01a7f17900549e70966fb1e1c16dfd746dec0))
|
722
|
+
|
723
|
+
## [6.26.6](https://github.com/adeo/cdp-due--authentication-module/compare/v6.26.5...v6.26.6) (2023-01-03)
|
724
|
+
|
725
|
+
|
726
|
+
### Bug Fixes
|
727
|
+
|
728
|
+
* update phrase key with empty commit ([#169](https://github.com/adeo/cdp-due--authentication-module/issues/169)) ([97cd01a](https://github.com/adeo/cdp-due--authentication-module/commit/97cd01ad5baaaa9e67f5cfe4e1326d0f136f3484))
|
729
|
+
|
730
|
+
## [6.26.5](https://github.com/adeo/cdp-due--authentication-module/compare/v6.26.4...v6.26.5) (2022-12-22)
|
731
|
+
|
732
|
+
|
733
|
+
### Bug Fixes
|
734
|
+
|
735
|
+
* fix email msg stacking when user click multiple time on resend pwd ([#168](https://github.com/adeo/cdp-due--authentication-module/issues/168)) ([871a474](https://github.com/adeo/cdp-due--authentication-module/commit/871a474fa36349a31dbeec04ceb2fe2b8e89b6ff))
|
736
|
+
|
737
|
+
## [6.26.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.26.3...v6.26.4) (2022-12-22)
|
738
|
+
|
739
|
+
|
740
|
+
### Bug Fixes
|
741
|
+
|
742
|
+
* **phrase:** refacto to avoid to declare translation in project ([#167](https://github.com/adeo/cdp-due--authentication-module/issues/167)) ([db91d8a](https://github.com/adeo/cdp-due--authentication-module/commit/db91d8abce641a352e3f8840b10e15e167063d5e))
|
743
|
+
|
744
|
+
## [6.26.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.26.2...v6.26.3) (2022-12-22)
|
745
|
+
|
746
|
+
|
747
|
+
### Bug Fixes
|
748
|
+
|
749
|
+
* update ipn team lib ([#166](https://github.com/adeo/cdp-due--authentication-module/issues/166)) ([d8f8202](https://github.com/adeo/cdp-due--authentication-module/commit/d8f82025e78dfa4294c9fcda4bec4f98652a7009))
|
750
|
+
|
751
|
+
## [6.26.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.26.1...v6.26.2) (2022-12-16)
|
752
|
+
|
753
|
+
|
754
|
+
### Bug Fixes
|
755
|
+
|
756
|
+
* fix css on tips on reset pwd page ([#164](https://github.com/adeo/cdp-due--authentication-module/issues/164)) ([b42b450](https://github.com/adeo/cdp-due--authentication-module/commit/b42b450b75327451b18080c519f0e0a9ee2f6b8e))
|
757
|
+
|
758
|
+
## [6.26.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.26.0...v6.26.1) (2022-12-06)
|
759
|
+
|
760
|
+
|
761
|
+
### Bug Fixes
|
762
|
+
|
763
|
+
* clean unwanted notification on precreate activation ([#165](https://github.com/adeo/cdp-due--authentication-module/issues/165)) ([b98759f](https://github.com/adeo/cdp-due--authentication-module/commit/b98759fba9ef5599e08fccd4478872288c930e41))
|
764
|
+
|
765
|
+
# [6.26.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.25.4...v6.26.0) (2022-11-28)
|
766
|
+
|
767
|
+
|
768
|
+
### Features
|
769
|
+
|
770
|
+
* **callback:** add specific italian implementation to generate community cookie on authentication callback ([#163](https://github.com/adeo/cdp-due--authentication-module/issues/163)) ([3877591](https://github.com/adeo/cdp-due--authentication-module/commit/3877591b567764b965ebdc55967e70dc0a8834c4))
|
771
|
+
|
772
|
+
## [6.25.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.25.3...v6.25.4) (2022-11-15)
|
773
|
+
|
774
|
+
|
775
|
+
### Bug Fixes
|
776
|
+
|
777
|
+
* **cookie:** delete customerSpace.customer cookie on ping post authentication ([#162](https://github.com/adeo/cdp-due--authentication-module/issues/162)) ([7ed7353](https://github.com/adeo/cdp-due--authentication-module/commit/7ed7353c2e2f14c97ac10e967d933e7aa130700a))
|
778
|
+
|
779
|
+
## [6.25.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.25.2...v6.25.3) (2022-10-24)
|
780
|
+
|
781
|
+
|
782
|
+
### Bug Fixes
|
783
|
+
|
784
|
+
* update phrase key with empty commit ([58596be](https://github.com/adeo/cdp-due--authentication-module/commit/58596be0b85d80ed3c927e28ad717589e50b8701))
|
785
|
+
|
786
|
+
## [6.25.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.25.1...v6.25.2) (2022-10-17)
|
787
|
+
|
788
|
+
|
789
|
+
### Bug Fixes
|
790
|
+
|
791
|
+
* **cookies:** delete ping sso cookies on logout ([#160](https://github.com/adeo/cdp-due--authentication-module/issues/160)) ([86d4c24](https://github.com/adeo/cdp-due--authentication-module/commit/86d4c24352254d07e3db31b37b69601cadc33886))
|
792
|
+
|
793
|
+
## [6.25.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.25.0...v6.25.1) (2022-10-12)
|
794
|
+
|
795
|
+
|
796
|
+
### Bug Fixes
|
797
|
+
|
798
|
+
* **phrase:** update phrase plugins (maven and node) ([#159](https://github.com/adeo/cdp-due--authentication-module/issues/159)) ([f8cfa48](https://github.com/adeo/cdp-due--authentication-module/commit/f8cfa483e44c3d5182493d43147d6c8708fd8062))
|
799
|
+
|
800
|
+
# [6.25.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.24.2...v6.25.0) (2022-10-11)
|
801
|
+
|
802
|
+
|
803
|
+
### Features
|
804
|
+
|
805
|
+
* **logout:** logout collab from ping ([#158](https://github.com/adeo/cdp-due--authentication-module/issues/158)) ([7b4b940](https://github.com/adeo/cdp-due--authentication-module/commit/7b4b9405cde6c1b21df637fd0374c23bead54c26))
|
806
|
+
|
807
|
+
## [6.24.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.24.1...v6.24.2) (2022-10-06)
|
808
|
+
|
809
|
+
|
810
|
+
### Bug Fixes
|
811
|
+
|
812
|
+
* update translation for js file (no phrase used directly in js)) ([7700e05](https://github.com/adeo/cdp-due--authentication-module/commit/7700e05690ea507fc0ca0e58c60d8b16228f07c1))
|
813
|
+
|
814
|
+
## [6.24.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.24.0...v6.24.1) (2022-10-06)
|
815
|
+
|
816
|
+
|
817
|
+
### Bug Fixes
|
818
|
+
|
819
|
+
* empty commit to update lmpt translation ([8abd7ca](https://github.com/adeo/cdp-due--authentication-module/commit/8abd7ca6d7cc933f370726f412e93a87171e40e5))
|
820
|
+
|
821
|
+
# [6.24.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.23.4...v6.24.0) (2022-10-05)
|
822
|
+
|
823
|
+
|
824
|
+
### Features
|
825
|
+
|
826
|
+
* pre-fill email on forgotten password page ([#157](https://github.com/adeo/cdp-due--authentication-module/issues/157)) ([24479c6](https://github.com/adeo/cdp-due--authentication-module/commit/24479c65c5f3aee0c90ce4ece206a96bb13e82c9))
|
827
|
+
|
828
|
+
## [6.23.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.23.3...v6.23.4) (2022-10-04)
|
829
|
+
|
830
|
+
|
831
|
+
### Bug Fixes
|
832
|
+
|
833
|
+
* empty commit to get translation for LMPT ([#156](https://github.com/adeo/cdp-due--authentication-module/issues/156)) ([80b6fd6](https://github.com/adeo/cdp-due--authentication-module/commit/80b6fd6be481f7c682d174b68f367c223dc8c26e))
|
834
|
+
|
835
|
+
## [6.23.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.23.2...v6.23.3) (2022-09-29)
|
836
|
+
|
837
|
+
|
838
|
+
### Bug Fixes
|
839
|
+
|
840
|
+
* **presignup:** defer on switch if empty ([#155](https://github.com/adeo/cdp-due--authentication-module/issues/155)) ([defb9b5](https://github.com/adeo/cdp-due--authentication-module/commit/defb9b50fe8790a26d11d7204c502a2b56350a2b))
|
841
|
+
|
842
|
+
## [6.23.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.23.1...v6.23.2) (2022-09-26)
|
843
|
+
|
844
|
+
|
845
|
+
### Bug Fixes
|
846
|
+
|
847
|
+
* empty commit to get translation for LMPT ([#154](https://github.com/adeo/cdp-due--authentication-module/issues/154)) ([bf8cbcb](https://github.com/adeo/cdp-due--authentication-module/commit/bf8cbcb5dc19b316ab84c67b965f00a0f79535a4))
|
848
|
+
|
849
|
+
## [6.23.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.23.0...v6.23.1) (2022-08-30)
|
850
|
+
|
851
|
+
|
852
|
+
### Bug Fixes
|
853
|
+
|
854
|
+
* check email before calling back ([#153](https://github.com/adeo/cdp-due--authentication-module/issues/153)) ([339047c](https://github.com/adeo/cdp-due--authentication-module/commit/339047cec01bbc325289ca56a972ee91b14a51af))
|
855
|
+
|
856
|
+
# [6.23.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.22.1...v6.23.0) (2022-08-23)
|
857
|
+
|
858
|
+
|
859
|
+
### Features
|
860
|
+
|
861
|
+
* **webaccount:** display confirmation or error message on webaccount creation and activation process ([#149](https://github.com/adeo/cdp-due--authentication-module/issues/149)) ([c5f1521](https://github.com/adeo/cdp-due--authentication-module/commit/c5f1521179cb517f6299d52aef1bb053a143a671))
|
862
|
+
|
863
|
+
## [6.22.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.22.0...v6.22.1) (2022-08-12)
|
864
|
+
|
865
|
+
|
866
|
+
### Bug Fixes
|
867
|
+
|
868
|
+
* avoid JS errors and refresh tracking on auth ([#144](https://github.com/adeo/cdp-due--authentication-module/issues/144)) ([52e4bd6](https://github.com/adeo/cdp-due--authentication-module/commit/52e4bd6707448a9abe6620b9c839299c1151ab2b))
|
869
|
+
|
870
|
+
# [6.22.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.21.6...v6.22.0) (2022-08-12)
|
871
|
+
|
872
|
+
|
873
|
+
### Features
|
874
|
+
|
875
|
+
* **cookies:** set http only from configuration for OrderId + delete customerOrder cookie on logout and ping post authent ([#148](https://github.com/adeo/cdp-due--authentication-module/issues/148)) ([1ba383b](https://github.com/adeo/cdp-due--authentication-module/commit/1ba383b5abf3acde94bfa004b7798dafc4d35800))
|
876
|
+
|
877
|
+
## [6.21.6](https://github.com/adeo/cdp-due--authentication-module/compare/v6.21.5...v6.21.6) (2022-08-11)
|
878
|
+
|
879
|
+
|
880
|
+
### Bug Fixes
|
881
|
+
|
882
|
+
* **login:** send back to the right auth process when state is empty ([#146](https://github.com/adeo/cdp-due--authentication-module/issues/146)) ([0aaa4a3](https://github.com/adeo/cdp-due--authentication-module/commit/0aaa4a3845b8c6b0bc1d9b65ad6851595fb541e6))
|
883
|
+
|
884
|
+
## [6.21.5](https://github.com/adeo/cdp-due--authentication-module/compare/v6.21.4...v6.21.5) (2022-08-08)
|
885
|
+
|
886
|
+
|
887
|
+
### Bug Fixes
|
888
|
+
|
889
|
+
* **login:** fix redirect on postauthent ([#145](https://github.com/adeo/cdp-due--authentication-module/issues/145)) ([a0ddeb7](https://github.com/adeo/cdp-due--authentication-module/commit/a0ddeb7863a55902d549879f86e2363a03697967))
|
890
|
+
|
891
|
+
## [6.21.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.21.3...v6.21.4) (2022-08-02)
|
892
|
+
|
893
|
+
|
894
|
+
### Bug Fixes
|
895
|
+
|
896
|
+
* **login:** redirect user after a bad login to a special URL ([#141](https://github.com/adeo/cdp-due--authentication-module/issues/141)) ([35ac077](https://github.com/adeo/cdp-due--authentication-module/commit/35ac077313336a7b7e33fc2c843e19e4ecc8c54f))
|
897
|
+
|
898
|
+
## [6.21.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.21.2...v6.21.3) (2022-08-01)
|
899
|
+
|
900
|
+
|
901
|
+
### Bug Fixes
|
902
|
+
|
903
|
+
* **cookie:** fix idToken cookie duration and avoid npe on cookie helper ([#143](https://github.com/adeo/cdp-due--authentication-module/issues/143)) ([5f0c563](https://github.com/adeo/cdp-due--authentication-module/commit/5f0c563e3161b2e1e44f79bcdb21b9b87a759fa1))
|
904
|
+
|
905
|
+
## [6.21.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.21.1...v6.21.2) (2022-08-01)
|
906
|
+
|
907
|
+
|
908
|
+
### Bug Fixes
|
909
|
+
|
910
|
+
* **cookie:** fix refresh cookie duration on post authentication component ([#142](https://github.com/adeo/cdp-due--authentication-module/issues/142)) ([f05284d](https://github.com/adeo/cdp-due--authentication-module/commit/f05284d0730a9ba3eb12463be35ea0a88af584a4))
|
911
|
+
|
912
|
+
## [6.21.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.21.0...v6.21.1) (2022-08-01)
|
913
|
+
|
914
|
+
|
915
|
+
### Bug Fixes
|
916
|
+
|
917
|
+
* **refresh:** fix NPE on computeCookieDuration when refreshToken is expired ([#140](https://github.com/adeo/cdp-due--authentication-module/issues/140)) ([b1b43c9](https://github.com/adeo/cdp-due--authentication-module/commit/b1b43c96505d3f5f98d07cb8b972d5c6086fc911))
|
918
|
+
|
919
|
+
# [6.21.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.20.0...v6.21.0) (2022-07-29)
|
920
|
+
|
921
|
+
|
922
|
+
### Features
|
923
|
+
|
924
|
+
* **cookie:** adjust Kobi.jwt and idToken cookie duration ([#121](https://github.com/adeo/cdp-due--authentication-module/issues/121)) ([f3b804c](https://github.com/adeo/cdp-due--authentication-module/commit/f3b804cd3e4ab06d0f77ed3fc4adf19c5a11ef3d))
|
925
|
+
|
926
|
+
# [6.20.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.19.10...v6.20.0) (2022-07-29)
|
927
|
+
|
928
|
+
|
929
|
+
### Features
|
930
|
+
|
931
|
+
* **cookie:** externalize cookie duration on configuration for Order.id ([#138](https://github.com/adeo/cdp-due--authentication-module/issues/138)) ([7758a8b](https://github.com/adeo/cdp-due--authentication-module/commit/7758a8b37f679ec097aa2fd6dbfcc499c67a449c))
|
932
|
+
|
933
|
+
## [6.19.10](https://github.com/adeo/cdp-due--authentication-module/compare/v6.19.9...v6.19.10) (2022-07-28)
|
934
|
+
|
935
|
+
|
936
|
+
### Bug Fixes
|
937
|
+
|
938
|
+
* **state:** state are not equals error ([#139](https://github.com/adeo/cdp-due--authentication-module/issues/139)) ([acdab4d](https://github.com/adeo/cdp-due--authentication-module/commit/acdab4dda9ddeb005bde9e2d20ee7827afaa27d0))
|
939
|
+
|
940
|
+
## [6.19.9](https://github.com/adeo/cdp-due--authentication-module/compare/v6.19.8...v6.19.9) (2022-07-19)
|
941
|
+
|
942
|
+
|
943
|
+
### Bug Fixes
|
944
|
+
|
945
|
+
* **account:** revert fix for passwordless account ([#137](https://github.com/adeo/cdp-due--authentication-module/issues/137)) ([7eee689](https://github.com/adeo/cdp-due--authentication-module/commit/7eee689c455d47a2de2a6cee9305b6e1a5e963c5))
|
946
|
+
|
947
|
+
## [6.19.8](https://github.com/adeo/cdp-due--authentication-module/compare/v6.19.7...v6.19.8) (2022-07-19)
|
948
|
+
|
949
|
+
|
950
|
+
### Bug Fixes
|
951
|
+
|
952
|
+
* **account:** specific behavior to check activated account in LMES ([#136](https://github.com/adeo/cdp-due--authentication-module/issues/136)) ([8304eff](https://github.com/adeo/cdp-due--authentication-module/commit/8304eff3dce5bfb150d4489768ff9f42955f96f6))
|
953
|
+
|
954
|
+
## [6.19.7](https://github.com/adeo/cdp-due--authentication-module/compare/v6.19.6...v6.19.7) (2022-07-18)
|
955
|
+
|
956
|
+
|
957
|
+
### Bug Fixes
|
958
|
+
|
959
|
+
* **cookie:** delete savedLoginRequest on logout and post authent ([#135](https://github.com/adeo/cdp-due--authentication-module/issues/135)) ([554706a](https://github.com/adeo/cdp-due--authentication-module/commit/554706a5fe0ec73b667149f630d7fb8352579964))
|
960
|
+
|
961
|
+
## [6.19.6](https://github.com/adeo/cdp-due--authentication-module/compare/v6.19.5...v6.19.6) (2022-07-18)
|
962
|
+
|
963
|
+
|
964
|
+
### Bug Fixes
|
965
|
+
|
966
|
+
* **checkAccount:** fix handling of Flux to Mono ([#134](https://github.com/adeo/cdp-due--authentication-module/issues/134)) ([f9db07c](https://github.com/adeo/cdp-due--authentication-module/commit/f9db07c6260b456baca371b47792ee9d9fb3d33d))
|
967
|
+
|
968
|
+
## [6.19.5](https://github.com/adeo/cdp-due--authentication-module/compare/v6.19.4...v6.19.5) (2022-07-13)
|
969
|
+
|
970
|
+
|
971
|
+
### Bug Fixes
|
972
|
+
|
973
|
+
* **cookie:** deletecustomerSpace.customer cookie on customer post authentication ([#133](https://github.com/adeo/cdp-due--authentication-module/issues/133)) ([3ef8824](https://github.com/adeo/cdp-due--authentication-module/commit/3ef882437a36c359141e8117f49647e85e556d33))
|
974
|
+
|
975
|
+
## [6.19.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.19.3...v6.19.4) (2022-07-12)
|
976
|
+
|
977
|
+
|
978
|
+
### Bug Fixes
|
979
|
+
|
980
|
+
* **validation:** filter error message to display relevant information ([#131](https://github.com/adeo/cdp-due--authentication-module/issues/131)) ([9f2f74c](https://github.com/adeo/cdp-due--authentication-module/commit/9f2f74cfc237fd7a39b0f30742a848bfefff2772))
|
981
|
+
|
982
|
+
## [6.19.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.19.2...v6.19.3) (2022-07-11)
|
983
|
+
|
984
|
+
|
985
|
+
### Bug Fixes
|
986
|
+
|
987
|
+
* **checkAccount:** fix mdm call even if ciam account is retrieved ([#130](https://github.com/adeo/cdp-due--authentication-module/issues/130)) ([7bf0cba](https://github.com/adeo/cdp-due--authentication-module/commit/7bf0cbabae53427504018266426c8ca6a58413da))
|
988
|
+
|
989
|
+
## [6.19.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.19.1...v6.19.2) (2022-07-11)
|
990
|
+
|
991
|
+
|
992
|
+
### Bug Fixes
|
993
|
+
|
994
|
+
* **email:** check email validity on request payload ([#128](https://github.com/adeo/cdp-due--authentication-module/issues/128)) ([183e01a](https://github.com/adeo/cdp-due--authentication-module/commit/183e01adb38583c143d7db1e0284edf8704ecd85))
|
995
|
+
|
996
|
+
# [6.19.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.18.0...v6.19.0) (2022-07-06)
|
997
|
+
|
998
|
+
|
999
|
+
### Features
|
1000
|
+
|
1001
|
+
* **cookie:** externalize httponly in configuration for idToken cookie ([#118](https://github.com/adeo/cdp-due--authentication-module/issues/118)) ([5b3b8cd](https://github.com/adeo/cdp-due--authentication-module/commit/5b3b8cdcb6ed42682473bf7e38b85d98447e6fb0))
|
1002
|
+
|
1003
|
+
# [6.18.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.17.3...v6.18.0) (2022-07-06)
|
1004
|
+
|
1005
|
+
|
1006
|
+
### Features
|
1007
|
+
|
1008
|
+
* **login:** check if email is verified before login a user ([#112](https://github.com/adeo/cdp-due--authentication-module/issues/112)) ([47a0d16](https://github.com/adeo/cdp-due--authentication-module/commit/47a0d163a5e6a5a083a69cbc27b2a86df94ac183))
|
1009
|
+
|
1010
|
+
## [6.17.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.17.2...v6.17.3) (2022-07-05)
|
1011
|
+
|
1012
|
+
|
1013
|
+
### Bug Fixes
|
1014
|
+
|
1015
|
+
* **presignup:** fix account presignup for professionnal customers ([#126](https://github.com/adeo/cdp-due--authentication-module/issues/126)) ([4b5d6c4](https://github.com/adeo/cdp-due--authentication-module/commit/4b5d6c41e0ca2657326f1e5f8e7f16822ab55bac))
|
1016
|
+
|
1017
|
+
## [6.17.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.17.1...v6.17.2) (2022-07-05)
|
1018
|
+
|
1019
|
+
|
1020
|
+
### Bug Fixes
|
1021
|
+
|
1022
|
+
* catch PingException and return right http status code ([#125](https://github.com/adeo/cdp-due--authentication-module/issues/125)) ([d10cf3b](https://github.com/adeo/cdp-due--authentication-module/commit/d10cf3bcdb66febafa64cdb40d9b7519bccc02c6))
|
1023
|
+
|
1024
|
+
## [6.17.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.17.0...v6.17.1) (2022-07-04)
|
1025
|
+
|
1026
|
+
|
1027
|
+
### Bug Fixes
|
1028
|
+
|
1029
|
+
* **checkEmail:** fix isAccountActivated on checkAccountResponse ([#122](https://github.com/adeo/cdp-due--authentication-module/issues/122)) ([a4acc34](https://github.com/adeo/cdp-due--authentication-module/commit/a4acc34d3347a4cf6accf2cf65d4291185fb39e0))
|
1030
|
+
|
1031
|
+
# [6.17.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.16.1...v6.17.0) (2022-07-04)
|
1032
|
+
|
1033
|
+
|
1034
|
+
### Features
|
1035
|
+
|
1036
|
+
* remove legacy order id cookie on logout ([#124](https://github.com/adeo/cdp-due--authentication-module/issues/124)) ([e68fb71](https://github.com/adeo/cdp-due--authentication-module/commit/e68fb711d5a8ae1100ca87254e0c2dbebbd6036e))
|
1037
|
+
|
1038
|
+
## [6.16.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.16.0...v6.16.1) (2022-07-04)
|
1039
|
+
|
1040
|
+
|
1041
|
+
### Bug Fixes
|
1042
|
+
|
1043
|
+
* improve error handling ([#123](https://github.com/adeo/cdp-due--authentication-module/issues/123)) ([2e44ab9](https://github.com/adeo/cdp-due--authentication-module/commit/2e44ab9b10a12ec0c729947ef624731d32da01e1))
|
1044
|
+
|
1045
|
+
# [6.16.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.15.1...v6.16.0) (2022-06-30)
|
1046
|
+
|
1047
|
+
|
1048
|
+
### Features
|
1049
|
+
|
1050
|
+
* **collab:** split default and elo behavior on collab auth ([#93](https://github.com/adeo/cdp-due--authentication-module/issues/93)) ([b286ed6](https://github.com/adeo/cdp-due--authentication-module/commit/b286ed66350bd3b12708c038d84de85c7d304f39))
|
1051
|
+
|
1052
|
+
## [6.15.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.15.0...v6.15.1) (2022-06-22)
|
1053
|
+
|
1054
|
+
|
1055
|
+
### Bug Fixes
|
1056
|
+
|
1057
|
+
* **cookie:** delete cookie on wrong domain ([#119](https://github.com/adeo/cdp-due--authentication-module/issues/119)) ([eaa8253](https://github.com/adeo/cdp-due--authentication-module/commit/eaa825325ca88b4ed7063c6474597db6952550f3))
|
1058
|
+
|
1059
|
+
# [6.15.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.14.2...v6.15.0) (2022-06-20)
|
1060
|
+
|
1061
|
+
|
1062
|
+
### Features
|
1063
|
+
|
1064
|
+
* **cookie:** global rework ([#113](https://github.com/adeo/cdp-due--authentication-module/issues/113)) ([a4e82c6](https://github.com/adeo/cdp-due--authentication-module/commit/a4e82c699a036acf9f32238ca463f38131d80fc4))
|
1065
|
+
|
1066
|
+
## [6.14.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.14.1...v6.14.2) (2022-06-17)
|
1067
|
+
|
1068
|
+
|
1069
|
+
### Bug Fixes
|
1070
|
+
|
1071
|
+
* **kobi.jwt:** fix comparison between gender enums ([#117](https://github.com/adeo/cdp-due--authentication-module/issues/117)) ([ebe8896](https://github.com/adeo/cdp-due--authentication-module/commit/ebe88962a7d74fb5900415743a95b58033dd3d7f))
|
1072
|
+
|
1073
|
+
## [6.14.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.14.0...v6.14.1) (2022-06-16)
|
1074
|
+
|
1075
|
+
|
1076
|
+
### Bug Fixes
|
1077
|
+
|
1078
|
+
* **password:** add missing translation key ([#116](https://github.com/adeo/cdp-due--authentication-module/issues/116)) ([7ebaedf](https://github.com/adeo/cdp-due--authentication-module/commit/7ebaedfac6c02dc5135ce75f215effc32aa80208))
|
1079
|
+
|
1080
|
+
# [6.14.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.13.4...v6.14.0) (2022-06-14)
|
1081
|
+
|
1082
|
+
|
1083
|
+
### Features
|
1084
|
+
|
1085
|
+
* **password:** internationalize reset password page ([#115](https://github.com/adeo/cdp-due--authentication-module/issues/115)) ([4b4d119](https://github.com/adeo/cdp-due--authentication-module/commit/4b4d119af315313e2d8bb09044203c84972016bb))
|
1086
|
+
|
1087
|
+
## [6.13.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.13.3...v6.13.4) (2022-06-03)
|
1088
|
+
|
1089
|
+
|
1090
|
+
### Bug Fixes
|
1091
|
+
|
1092
|
+
* **wording:** error message ([#111](https://github.com/adeo/cdp-due--authentication-module/issues/111)) ([d05aa83](https://github.com/adeo/cdp-due--authentication-module/commit/d05aa830ac961531745dd195d80f7a4cc2d9579f))
|
1093
|
+
|
1094
|
+
## [6.13.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.13.2...v6.13.3) (2022-06-03)
|
1095
|
+
|
1096
|
+
|
1097
|
+
### Bug Fixes
|
1098
|
+
|
1099
|
+
* **wording:** edit ([#110](https://github.com/adeo/cdp-due--authentication-module/issues/110)) ([efef999](https://github.com/adeo/cdp-due--authentication-module/commit/efef9995d46bb608abc48879bef8f7843cd6fbd9))
|
1100
|
+
|
1101
|
+
## [6.13.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.13.0...v6.13.1) (2022-05-18)
|
1102
|
+
|
1103
|
+
|
1104
|
+
### Bug Fixes
|
1105
|
+
|
1106
|
+
* avoid npe when redirectByRoles attribut vault config is not defined ([#104](https://github.com/adeo/cdp-due--authentication-module/issues/104)) ([ae3917f](https://github.com/adeo/cdp-due--authentication-module/commit/ae3917f08d7a902d35a3a22a21704f12b9661975))
|
1107
|
+
|
1108
|
+
# [6.13.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.12.0...v6.13.0) (2022-05-17)
|
1109
|
+
|
1110
|
+
|
1111
|
+
### Features
|
1112
|
+
|
1113
|
+
* **tracking:** implemented cdl tracking ([99da9f4](https://github.com/adeo/cdp-due--authentication-module/commit/99da9f487cae878533b42a7542bc6974f209099c))
|
1114
|
+
|
1115
|
+
# [6.12.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.11.1...v6.12.0) (2022-05-09)
|
1116
|
+
|
1117
|
+
|
1118
|
+
### Features
|
1119
|
+
|
1120
|
+
* add local js files for reset password PT and ES ([#102](https://github.com/adeo/cdp-due--authentication-module/issues/102)) ([ed4e2d2](https://github.com/adeo/cdp-due--authentication-module/commit/ed4e2d20c6da7e355eef8ce3d77cca276f7f3605))
|
1121
|
+
|
1122
|
+
## [6.11.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.11.0...v6.11.1) (2022-05-05)
|
1123
|
+
|
1124
|
+
|
1125
|
+
### Bug Fixes
|
1126
|
+
|
1127
|
+
* **ci:** fix build-release workflow ([7ce6fe6](https://github.com/adeo/cdp-due--authentication-module/commit/7ce6fe6409cc022ba771b63cc3e8eb3314e5ac95))
|
1128
|
+
|
1129
|
+
# [6.11.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.10.2...v6.11.0) (2022-05-05)
|
1130
|
+
|
1131
|
+
|
1132
|
+
### Features
|
1133
|
+
|
1134
|
+
* **ci:** migrate to github actions ([#101](https://github.com/adeo/cdp-due--authentication-module/issues/101)) ([a081a7c](https://github.com/adeo/cdp-due--authentication-module/commit/a081a7c1ae3afa1e94172a9f72ac8bc77f572fb6))
|
1135
|
+
|
1136
|
+
# Changelog
|
1137
|
+
|
1138
|
+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
1139
|
+
|
1140
|
+
### [6.10.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.10.1...v6.10.2) (2022-05-05)
|
1141
|
+
|
1142
|
+
|
1143
|
+
### Bug Fixes
|
1144
|
+
|
1145
|
+
* remove useless i18n on JS file ([#92](https://github.com/adeo/cdp-due--authentication-module/issues/92)) ([ecf330e](https://github.com/adeo/cdp-due--authentication-module/commit/ecf330e0ca3010b95a8440282a4c1ff7b704c64e))
|
1146
|
+
|
1147
|
+
### [6.10.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.10.0...v6.10.1) (2022-05-02)
|
1148
|
+
|
1149
|
+
## [6.10.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.9.5...v6.10.0) (2022-05-02)
|
1150
|
+
|
1151
|
+
|
1152
|
+
### Features
|
1153
|
+
|
1154
|
+
* **community:** switch to community profiles v3 ([#97](https://github.com/adeo/cdp-due--authentication-module/issues/97)) ([f454e4c](https://github.com/adeo/cdp-due--authentication-module/commit/f454e4c09d093589b5bc8fdfe446e4d2566bdd92))
|
1155
|
+
|
1156
|
+
### [6.9.5](https://github.com/adeo/cdp-due--authentication-module/compare/v6.9.4...v6.9.5) (2022-04-29)
|
1157
|
+
|
1158
|
+
|
1159
|
+
### Bug Fixes
|
1160
|
+
|
1161
|
+
* **logout:** delete reachfive cookie for lmit ([#99](https://github.com/adeo/cdp-due--authentication-module/issues/99)) ([bf8308d](https://github.com/adeo/cdp-due--authentication-module/commit/bf8308d35fb8b80690d65fe7a6fe6baf44a462f1))
|
1162
|
+
|
1163
|
+
### [6.9.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.9.3...v6.9.4) (2022-04-28)
|
1164
|
+
|
1165
|
+
### [6.9.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.9.2...v6.9.3) (2022-04-28)
|
1166
|
+
|
1167
|
+
|
1168
|
+
### Features
|
1169
|
+
|
1170
|
+
* **collab-authent:** switch from scim to pinguserinfo ([#96](https://github.com/adeo/cdp-due--authentication-module/issues/96)) ([e71be88](https://github.com/adeo/cdp-due--authentication-module/commit/e71be8810c42c2dfd67a4b79aed8a697b77635f9))
|
1171
|
+
|
1172
|
+
### [6.9.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.9.1...v6.9.2) (2022-04-26)
|
1173
|
+
|
1174
|
+
### [6.9.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.9.0...v6.9.1) (2022-04-25)
|
1175
|
+
|
1176
|
+
|
1177
|
+
### Bug Fixes
|
1178
|
+
|
1179
|
+
* **token:** avoid multiple NPE the time the expirationTime occurs ([#94](https://github.com/adeo/cdp-due--authentication-module/issues/94)) ([d1f04b5](https://github.com/adeo/cdp-due--authentication-module/commit/d1f04b56cec53c75df0dde97fbda4b72b0ae7203))
|
1180
|
+
|
1181
|
+
## [6.9.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.8.2...v6.9.0) (2022-04-19)
|
1182
|
+
|
1183
|
+
|
1184
|
+
### Features
|
1185
|
+
|
1186
|
+
* **bu:** handle different implementation for BUs ([#90](https://github.com/adeo/cdp-due--authentication-module/issues/90)) ([ed46f06](https://github.com/adeo/cdp-due--authentication-module/commit/ed46f0675f9ddc83eb84ab6abdae832d15f212cd))
|
1187
|
+
|
1188
|
+
### [6.8.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.8.1...v6.8.2) (2022-04-13)
|
1189
|
+
|
1190
|
+
|
1191
|
+
### Bug Fixes
|
1192
|
+
|
1193
|
+
* **sso:** regenerate token on /redirect to avoid infinite redirect ([#91](https://github.com/adeo/cdp-due--authentication-module/issues/91)) ([2b8a2fd](https://github.com/adeo/cdp-due--authentication-module/commit/2b8a2fdd6e8f639da0fa0e0786497f03695d1041))
|
1194
|
+
|
1195
|
+
### [6.8.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.8.0...v6.8.1) (2022-04-01)
|
1196
|
+
|
1197
|
+
|
1198
|
+
### Bug Fixes
|
1199
|
+
|
1200
|
+
* **cookie:** delete kobi jwt cookie ([#89](https://github.com/adeo/cdp-due--authentication-module/issues/89)) ([9da0c5d](https://github.com/adeo/cdp-due--authentication-module/commit/9da0c5d14f29b233c42bb23109674b35808591d3))
|
1201
|
+
|
1202
|
+
## [6.8.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.7.5...v6.8.0) (2022-03-24)
|
1203
|
+
|
1204
|
+
### [6.7.5](https://github.com/adeo/cdp-due--authentication-module/compare/v6.7.4...v6.7.5) (2022-03-17)
|
1205
|
+
|
1206
|
+
|
1207
|
+
### Bug Fixes
|
1208
|
+
|
1209
|
+
* **refresh:** problems on refresh token ([#86](https://github.com/adeo/cdp-due--authentication-module/issues/86)) ([abde75b](https://github.com/adeo/cdp-due--authentication-module/commit/abde75bcf4d2686fc9b0bcafedcbf94c5af499b3))
|
1210
|
+
|
1211
|
+
### [6.7.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.7.3...v6.7.4) (2022-03-07)
|
1212
|
+
|
1213
|
+
|
1214
|
+
### Bug Fixes
|
1215
|
+
|
1216
|
+
* **account creation:** encode email and create account for collaborators on lmpartner ([#84](https://github.com/adeo/cdp-due--authentication-module/issues/84)) ([63bc754](https://github.com/adeo/cdp-due--authentication-module/commit/63bc7540b87a6025329c13d58d935c1f2ab93357))
|
1217
|
+
|
1218
|
+
### [6.7.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.7.2...v6.7.3) (2022-02-25)
|
1219
|
+
|
1220
|
+
|
1221
|
+
### Features
|
1222
|
+
|
1223
|
+
* add openId parameters for partner login ([#82](https://github.com/adeo/cdp-due--authentication-module/issues/82)) ([a4ce4c3](https://github.com/adeo/cdp-due--authentication-module/commit/a4ce4c38edf950cf2a18047327b0843a58d12b2f))
|
1224
|
+
|
1225
|
+
### [6.7.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.7.1...v6.7.2) (2022-02-17)
|
1226
|
+
|
1227
|
+
|
1228
|
+
### Bug Fixes
|
1229
|
+
|
1230
|
+
* **gender:** fix when gender is not defined ([#81](https://github.com/adeo/cdp-due--authentication-module/issues/81)) ([1c0e2a6](https://github.com/adeo/cdp-due--authentication-module/commit/1c0e2a6b1a8634c648eb5de1a8dd1347a69d2c8a))
|
1231
|
+
|
1232
|
+
### [6.7.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.7.0...v6.7.1) (2022-02-10)
|
1233
|
+
|
1234
|
+
|
1235
|
+
### Features
|
1236
|
+
|
1237
|
+
* **cookieSSO:** switch to new community-profile client ([#80](https://github.com/adeo/cdp-due--authentication-module/issues/80)) ([c333c37](https://github.com/adeo/cdp-due--authentication-module/commit/c333c3721e3a14d4c824ca5e845725d9605149f4))
|
1238
|
+
|
1239
|
+
## [6.7.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.6.6...v6.7.0) (2022-02-03)
|
1240
|
+
|
1241
|
+
|
1242
|
+
### Bug Fixes
|
1243
|
+
|
1244
|
+
* refresh token just before it expires ([#75](https://github.com/adeo/cdp-due--authentication-module/issues/75)) ([4d2386e](https://github.com/adeo/cdp-due--authentication-module/commit/4d2386e28aae3ec78fbc187adc40e0ca1cb18b0a))
|
1245
|
+
* send nonce as part of the request ([#77](https://github.com/adeo/cdp-due--authentication-module/issues/77)) ([b438b8b](https://github.com/adeo/cdp-due--authentication-module/commit/b438b8bae0538cca52e990ddff70024052ca7ccd))
|
1246
|
+
|
1247
|
+
### [6.6.6](https://github.com/adeo/cdp-due--authentication-module/compare/v6.6.5...v6.6.6) (2022-02-01)
|
1248
|
+
|
1249
|
+
|
1250
|
+
### Bug Fixes
|
1251
|
+
|
1252
|
+
* **cookie:** Set cookie store_id for client ([#76](https://github.com/adeo/cdp-due--authentication-module/issues/76)) ([78e1797](https://github.com/adeo/cdp-due--authentication-module/commit/78e1797163860f6c5dcb3c61a5fa51b7238f1ec4))
|
1253
|
+
|
1254
|
+
### [6.6.5](https://github.com/adeo/cdp-due--authentication-module/compare/v6.6.4...v6.6.5) (2022-01-17)
|
1255
|
+
|
1256
|
+
|
1257
|
+
### Bug Fixes
|
1258
|
+
|
1259
|
+
* encode email before calling CIAM API ([#45](https://github.com/adeo/cdp-due--authentication-module/issues/45)) ([971507d](https://github.com/adeo/cdp-due--authentication-module/commit/971507d1aa797491d6834784ca11cfabb7ed3a63))
|
1260
|
+
|
1261
|
+
### [6.6.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.6.3...v6.6.4) (2022-01-12)
|
1262
|
+
|
1263
|
+
### [6.6.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.6.2...v6.6.3) (2022-01-06)
|
1264
|
+
|
1265
|
+
### [6.6.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.6.1...v6.6.2) (2022-01-06)
|
1266
|
+
|
1267
|
+
|
1268
|
+
### Features
|
1269
|
+
|
1270
|
+
* **cookies:** add multiple domains for delete customer uuid ([#71](https://github.com/adeo/cdp-due--authentication-module/issues/71)) ([5d166ab](https://github.com/adeo/cdp-due--authentication-module/commit/5d166ab67bc2b968dba68b5f861d3f4547c147c6))
|
1271
|
+
|
1272
|
+
### [6.6.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.6.0...v6.6.1) (2021-12-31)
|
1273
|
+
|
1274
|
+
## [6.6.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.5.4...v6.6.0) (2021-12-31)
|
1275
|
+
|
1276
|
+
### [6.5.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.5.3...v6.5.4) (2021-12-30)
|
1277
|
+
|
1278
|
+
### [6.5.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.5.2...v6.5.3) (2021-12-23)
|
1279
|
+
|
1280
|
+
### [6.5.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.5.1...v6.5.2) (2021-12-23)
|
1281
|
+
|
1282
|
+
### [6.5.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.5.0...v6.5.1) (2021-12-21)
|
1283
|
+
|
1284
|
+
## [6.5.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.4.5...v6.5.0) (2021-12-21)
|
1285
|
+
|
1286
|
+
### [6.4.5](https://github.com/adeo/cdp-due--authentication-module/compare/v6.4.4...v6.4.5) (2021-12-20)
|
1287
|
+
|
1288
|
+
|
1289
|
+
### Bug Fixes
|
1290
|
+
|
1291
|
+
* update log4j version ([#62](https://github.com/adeo/cdp-due--authentication-module/issues/62)) ([d51ea83](https://github.com/adeo/cdp-due--authentication-module/commit/d51ea8305fd0475b954a29f9936b6cf578b5695e))
|
1292
|
+
|
1293
|
+
### [6.4.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.4.3...v6.4.4) (2021-12-20)
|
1294
|
+
|
1295
|
+
|
1296
|
+
### Features
|
1297
|
+
|
1298
|
+
* **cookies:** Delete deletion of store cookie for internal collabs ([#61](https://github.com/adeo/cdp-due--authentication-module/issues/61)) ([268e61e](https://github.com/adeo/cdp-due--authentication-module/commit/268e61e090ede51898488386e44454b4266d0187))
|
1299
|
+
|
1300
|
+
### [6.4.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.4.2...v6.4.3) (2021-12-17)
|
1301
|
+
|
1302
|
+
|
1303
|
+
### Bug Fixes
|
1304
|
+
|
1305
|
+
* update log4 version ([8f9e637](https://github.com/adeo/cdp-due--authentication-module/commit/8f9e637b201c7fe48049801fd87a74e677394856))
|
1306
|
+
|
1307
|
+
### [6.4.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.4.1...v6.4.2) (2021-12-16)
|
1308
|
+
|
1309
|
+
|
1310
|
+
### Bug Fixes
|
1311
|
+
|
1312
|
+
* **jwt cookie:** delete cookie ([#60](https://github.com/adeo/cdp-due--authentication-module/issues/60)) ([5f9e8ee](https://github.com/adeo/cdp-due--authentication-module/commit/5f9e8eed32b67d261ae778b6155e874e10d5d415))
|
1313
|
+
|
1314
|
+
### [6.4.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.4.0...v6.4.1) (2021-12-14)
|
1315
|
+
|
1316
|
+
## [6.4.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.3.0...v6.4.0) (2021-12-02)
|
1317
|
+
|
1318
|
+
## [6.3.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.2.8...v6.3.0) (2021-12-02)
|
1319
|
+
|
1320
|
+
### [6.2.8](https://github.com/adeo/cdp-due--authentication-module/compare/v6.2.7...v6.2.8) (2021-11-30)
|
1321
|
+
|
1322
|
+
### [6.2.7](https://github.com/adeo/cdp-due--authentication-module/compare/v6.2.6...v6.2.7) (2021-11-30)
|
1323
|
+
|
1324
|
+
|
1325
|
+
### Features
|
1326
|
+
|
1327
|
+
* add store_id cookie for collaborators ([#55](https://github.com/adeo/cdp-due--authentication-module/issues/55)) ([7dbc382](https://github.com/adeo/cdp-due--authentication-module/commit/7dbc38220e1357a2107f96db6b7559b9ebcd86f2))
|
1328
|
+
|
1329
|
+
### [6.2.6](https://github.com/adeo/cdp-due--authentication-module/compare/v6.2.5...v6.2.6) (2021-11-29)
|
1330
|
+
|
1331
|
+
|
1332
|
+
### Bug Fixes
|
1333
|
+
|
1334
|
+
* add new pattern to dissociate signup & login redirects ([ac678f7](https://github.com/adeo/cdp-due--authentication-module/commit/ac678f73278ca1250b140ad6b93088c83a5bbc0b))
|
1335
|
+
* add vad & basket uris to redirect on legacy signup ([5fe6031](https://github.com/adeo/cdp-due--authentication-module/commit/5fe603115245dbe32997f0164e8562881f15f496))
|
1336
|
+
* pattern vad ([2cce053](https://github.com/adeo/cdp-due--authentication-module/commit/2cce05389e8b91452d9ded930cc7291e13251283))
|
1337
|
+
|
1338
|
+
### [6.2.5](https://github.com/adeo/cdp-due--authentication-module/compare/v6.2.4...v6.2.5) (2021-11-29)
|
1339
|
+
|
1340
|
+
|
1341
|
+
### Bug Fixes
|
1342
|
+
|
1343
|
+
* add vad & basket uris to redirect on legacy signup ([#54](https://github.com/adeo/cdp-due--authentication-module/issues/54)) ([9c21c2e](https://github.com/adeo/cdp-due--authentication-module/commit/9c21c2ecf412f96d325c7218730e750369665ae4))
|
1344
|
+
|
1345
|
+
### [6.2.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.2.3...v6.2.4) (2021-11-25)
|
1346
|
+
|
1347
|
+
|
1348
|
+
### Bug Fixes
|
1349
|
+
|
1350
|
+
* redirect on legacy signup when user is coming from tempo ([9621c2c](https://github.com/adeo/cdp-due--authentication-module/commit/9621c2c674c02bcf71d75c31a152462637c6ab68))
|
1351
|
+
|
1352
|
+
### [6.2.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.2.2...v6.2.3) (2021-11-25)
|
1353
|
+
|
1354
|
+
|
1355
|
+
### Features
|
1356
|
+
|
1357
|
+
* **authent:** add param email in url ([#37](https://github.com/adeo/cdp-due--authentication-module/issues/37)) ([035b3f8](https://github.com/adeo/cdp-due--authentication-module/commit/035b3f809d28d5a4f53d0326f69d92557efdab41))
|
1358
|
+
|
1359
|
+
### [6.2.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.2.1...v6.2.2) (2021-11-24)
|
1360
|
+
|
1361
|
+
|
1362
|
+
### Bug Fixes
|
1363
|
+
|
1364
|
+
* ping redirection for collab ([e842caf](https://github.com/adeo/cdp-due--authentication-module/commit/e842cafc05e1f453d48cfb8a59cd4c71e811b4c4))
|
1365
|
+
|
1366
|
+
### [6.2.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.2.0...v6.2.1) (2021-11-23)
|
1367
|
+
|
1368
|
+
|
1369
|
+
### Bug Fixes
|
1370
|
+
|
1371
|
+
* authorize collabs to authenticate even if account is inactive in mdm ([#51](https://github.com/adeo/cdp-due--authentication-module/issues/51)) ([7ec2c60](https://github.com/adeo/cdp-due--authentication-module/commit/7ec2c604d7388fb53fc882d974aa1a590b5e4bf2))
|
1372
|
+
|
1373
|
+
## [6.2.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.1.2...v6.2.0) (2021-11-22)
|
1374
|
+
|
1375
|
+
### [6.1.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.1.1...v6.1.2) (2021-11-22)
|
1376
|
+
|
1377
|
+
|
1378
|
+
### Features
|
1379
|
+
|
1380
|
+
* check if user is active when checking the email ([#49](https://github.com/adeo/cdp-due--authentication-module/issues/49)) ([0ebc986](https://github.com/adeo/cdp-due--authentication-module/commit/0ebc986df1da2f1de717616b7728e3a4d8e6de94))
|
1381
|
+
|
1382
|
+
### [6.1.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.1.0...v6.1.1) (2021-11-19)
|
1383
|
+
|
1384
|
+
|
1385
|
+
### Bug Fixes
|
1386
|
+
|
1387
|
+
* **header display:** fixed vad login ([c070910](https://github.com/adeo/cdp-due--authentication-module/commit/c0709103b1f766c7820fa064fb8bee85d2a1039f))
|
1388
|
+
* **header:** fixed css side effect ([e20ba8a](https://github.com/adeo/cdp-due--authentication-module/commit/e20ba8a8ee29f4e2d87f8af2059468e209620ea1))
|
1389
|
+
|
1390
|
+
## [6.1.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.0.0...v6.1.0) (2021-11-16)
|
1391
|
+
|
1392
|
+
## [6.0.0](https://github.com/adeo/cdp-due--authentication-module/compare/v5.16.4...v6.0.0) (2021-11-16)
|
1393
|
+
|
1394
|
+
|
1395
|
+
### Features
|
1396
|
+
|
1397
|
+
* **account creation:** implemented creation process fork ([0a79380](https://github.com/adeo/cdp-due--authentication-module/commit/0a793803fa91d54d1d6abfa16a7e82e924d82c9a))
|
1398
|
+
* **split:** change jfrog registry and use variable for vault namespace ([#47](https://github.com/adeo/cdp-due--authentication-module/issues/47)) ([80b2c1d](https://github.com/adeo/cdp-due--authentication-module/commit/80b2c1def59d084a5e030c5b0df29b5a23f4bfb0))
|
1399
|
+
|
1400
|
+
### [5.16.4](https://github.com/adeo/cdp-due--authentication-module/compare/v5.16.3...v5.16.4) (2021-11-12)
|
1401
|
+
|
1402
|
+
|
1403
|
+
### Features
|
1404
|
+
|
1405
|
+
* **community:** redirect to profile if no community profile ([82fffb4](https://github.com/adeo/cdp-due--authentication-module/commit/82fffb4afdadd8da31c0692b7ce07cb68f8ad0f6))
|
1406
|
+
|
1407
|
+
### [5.16.3](https://github.com/adeo/cdp-due--authentication-module/compare/v5.16.2...v5.16.3) (2021-11-09)
|
1408
|
+
|
1409
|
+
### [5.16.2](https://github.com/adeo/cdp-due--authentication-module/compare/v5.16.1...v5.16.2) (2021-11-09)
|
1410
|
+
|
1411
|
+
|
1412
|
+
### Bug Fixes
|
1413
|
+
|
1414
|
+
* add space in pom in order to trigger a new release with no changes ([6a493cc](https://github.com/adeo/cdp-due--authentication-module/commit/6a493cc10c6aa1ea9f8be1bb950a467f29bbd2dd))
|
1415
|
+
|
1416
|
+
### [5.16.1](https://github.com/adeo/cdp-due--authentication-module/compare/v5.16.0...v5.16.1) (2021-11-09)
|
1417
|
+
|
1418
|
+
## [5.16.0](https://github.com/adeo/cdp-due--authentication-module/compare/v5.15.1...v5.16.0) (2021-11-08)
|
1419
|
+
|
1420
|
+
### [5.15.1](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.15.0...v5.15.1) (2021-10-29)
|
1421
|
+
|
1422
|
+
## [5.15.0](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.14.6...v5.15.0) (2021-10-28)
|
1423
|
+
|
1424
|
+
### [5.14.6](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.14.5...v5.14.6) (2021-10-26)
|
1425
|
+
|
1426
|
+
|
1427
|
+
### Features
|
1428
|
+
|
1429
|
+
* **community:** add redirectToPage parameter ([0ff1d80](https://github.com/adeo/lmfr-web-client--authentication-module/commit/0ff1d80b4aea5621a554849fed78f2070f65780f))
|
1430
|
+
|
1431
|
+
### [5.14.5](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.14.4...v5.14.5) (2021-10-20)
|
1432
|
+
|
1433
|
+
|
1434
|
+
### Features
|
1435
|
+
|
1436
|
+
* **756:** add default role collab ([#38](https://github.com/adeo/lmfr-web-client--authentication-module/issues/38)) ([7aa8c64](https://github.com/adeo/lmfr-web-client--authentication-module/commit/7aa8c64bd9fd6d127414d8f845f47c6a6e6558ea))
|
1437
|
+
|
1438
|
+
### [5.14.4](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.14.3...v5.14.4) (2021-10-18)
|
1439
|
+
|
1440
|
+
### [5.14.3](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.14.2...v5.14.3) (2021-10-18)
|
1441
|
+
|
1442
|
+
### [5.14.2](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.14.1...v5.14.2) (2021-10-18)
|
1443
|
+
|
1444
|
+
### [5.14.1](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.14.0...v5.14.1) (2021-10-13)
|
1445
|
+
|
1446
|
+
## [5.14.0](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.13.2...v5.14.0) (2021-10-12)
|
1447
|
+
|
1448
|
+
|
1449
|
+
### Bug Fixes
|
1450
|
+
|
1451
|
+
* **account service:** add no customer number ([#34](https://github.com/adeo/lmfr-web-client--authentication-module/issues/34)) ([855e630](https://github.com/adeo/lmfr-web-client--authentication-module/commit/855e6309ade3c578e4d5a9f1633239cb6ff54931))
|
1452
|
+
|
1453
|
+
### [5.13.2](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.13.1...v5.13.2) (2021-10-11)
|
1454
|
+
|
1455
|
+
### [5.13.1](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.13.0...v5.13.1) (2021-10-08)
|
1456
|
+
|
1457
|
+
|
1458
|
+
### Features
|
1459
|
+
|
1460
|
+
* handle weak collab role ([#35](https://github.com/adeo/lmfr-web-client--authentication-module/issues/35)) ([5b01223](https://github.com/adeo/lmfr-web-client--authentication-module/commit/5b01223636a88aca4d075fcff55d7e1ba1521d02))
|
1461
|
+
|
1462
|
+
## [5.13.0](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.12.0...v5.13.0) (2021-09-30)
|
1463
|
+
|
1464
|
+
|
1465
|
+
### Features
|
1466
|
+
|
1467
|
+
* **contextualisation:** add actions on post authent ([6b16c74](https://github.com/adeo/lmfr-web-client--authentication-module/commit/6b16c74c0cc04598eeec0b59970dd11a8bc429d7))
|
1468
|
+
|
1469
|
+
## [5.12.0](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.11.1...v5.12.0) (2021-09-28)
|
1470
|
+
|
1471
|
+
### [5.11.1](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.11.0...v5.11.1) (2021-09-27)
|
1472
|
+
|
1473
|
+
|
1474
|
+
### Features
|
1475
|
+
|
1476
|
+
* **community:** generate tokywoky sso cookie ([7fef2c9](https://github.com/adeo/lmfr-web-client--authentication-module/commit/7fef2c930e6790cdd011d2f37bfc3640ecb60370))
|
1477
|
+
|
1478
|
+
## [5.11.0](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.10.0...v5.11.0) (2021-09-23)
|
1479
|
+
|
1480
|
+
## [5.10.0](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.9.8...v5.10.0) (2021-09-21)
|
1481
|
+
|
1482
|
+
### [5.9.8](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.9.7...v5.9.8) (2021-09-20)
|
1483
|
+
|
1484
|
+
|
1485
|
+
### Bug Fixes
|
1486
|
+
|
1487
|
+
* **customer in context:** removed contextualized customer on login form ([#27](https://github.com/adeo/lmfr-web-client--authentication-module/issues/27)) ([17544b2](https://github.com/adeo/lmfr-web-client--authentication-module/commit/17544b231f6428c3802e711c8eaf31f72e0988c9))
|
1488
|
+
|
1489
|
+
### [5.9.7](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.9.6...v5.9.7) (2021-09-20)
|
1490
|
+
|
1491
|
+
|
1492
|
+
### Bug Fixes
|
1493
|
+
|
1494
|
+
* **authentication:** Whitelist on store code ([c31d9cd](https://github.com/adeo/lmfr-web-client--authentication-module/commit/c31d9cd33448b85999a5ac7900db35d6db0fb23f))
|
1495
|
+
|
1496
|
+
### [5.9.6](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.9.5...v5.9.6) (2021-09-20)
|
1497
|
+
|
1498
|
+
|
1499
|
+
### Features
|
1500
|
+
|
1501
|
+
* **authentication:** Whitelist on store code ([ab832d0](https://github.com/adeo/lmfr-web-client--authentication-module/commit/ab832d0815c21463dbf7d885f230776c129f67e3))
|
1502
|
+
|
1503
|
+
### [5.9.5](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.9.4...v5.9.5) (2021-09-17)
|
1504
|
+
|
1505
|
+
|
1506
|
+
### Features
|
1507
|
+
|
1508
|
+
* **roles:** remove automatically given role collab ([f42781e](https://github.com/adeo/lmfr-web-client--authentication-module/commit/f42781e82681ad5d892d37b5081866c236425379))
|
1509
|
+
|
1510
|
+
### [5.9.4](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.9.3...v5.9.4) (2021-09-01)
|
1511
|
+
|
1512
|
+
### [5.9.3](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.9.2...v5.9.3) (2021-08-30)
|
1513
|
+
|
1514
|
+
|
1515
|
+
### Bug Fixes
|
1516
|
+
|
1517
|
+
* **roles:** fix collab role on post authent ([#19](https://github.com/adeo/lmfr-web-client--authentication-module/issues/19)) ([1ed52e8](https://github.com/adeo/lmfr-web-client--authentication-module/commit/1ed52e83f4a06a984f8601c70349477b5d8fac61))
|
1518
|
+
|
1519
|
+
### [5.9.2](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.9.1...v5.9.2) (2021-08-26)
|
1520
|
+
|
1521
|
+
### [5.9.1](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.9.0...v5.9.1) (2021-08-25)
|
1522
|
+
|
1523
|
+
|
1524
|
+
### Features
|
1525
|
+
|
1526
|
+
* **roles:** rework on get role + readd user role on ping auth + add client role on r5 auth ([#17](https://github.com/adeo/lmfr-web-client--authentication-module/issues/17)) ([7f770fc](https://github.com/adeo/lmfr-web-client--authentication-module/commit/7f770fc0a6e6364f7e8d73f355ed048747b649e8))
|
1527
|
+
|
1528
|
+
## [5.9.0](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.8.0...v5.9.0) (2021-08-23)
|
1529
|
+
|
1530
|
+
## [5.8.0](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.7.5...v5.8.0) (2021-08-20)
|
1531
|
+
|
1532
|
+
|
1533
|
+
### Features
|
1534
|
+
|
1535
|
+
* **roles:** add roles to jwt kobi ([#14](https://github.com/adeo/lmfr-web-client--authentication-module/issues/14)) ([c07638b](https://github.com/adeo/lmfr-web-client--authentication-module/commit/c07638bbd707f7d06b2838d617334440a7eaf2a4))
|
1536
|
+
|
1537
|
+
### [5.7.5](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.7.4...v5.7.5) (2021-07-23)
|
1538
|
+
|
1539
|
+
### [5.7.4](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.7.3...v5.7.4) (2021-07-20)
|
1540
|
+
|
1541
|
+
|
1542
|
+
### Bug Fixes
|
1543
|
+
|
1544
|
+
* reencode target uri before final redirect ([0f6c7f9](https://github.com/adeo/lmfr-web-client--authentication-module/commit/0f6c7f9cc4c1f0f985d1fdb26998c2a7770634c1))
|
1545
|
+
* try to use native redirection instead of spring one ([c4c5fa7](https://github.com/adeo/lmfr-web-client--authentication-module/commit/c4c5fa77acfebaa0e6db23a2c389204cca48bfe4))
|
1546
|
+
|
1547
|
+
### [5.7.3](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.7.2...v5.7.3) (2021-07-19)
|
1548
|
+
|
1549
|
+
|
1550
|
+
### Bug Fixes
|
1551
|
+
|
1552
|
+
* **ipn-111:** add parameters to account creation url ([338bb6f](https://github.com/adeo/lmfr-web-client--authentication-module/commit/338bb6f7ac9c3a80018ba0ac8255a2e79dcacc00))
|
1553
|
+
|
1554
|
+
### [5.7.2](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.7.1...v5.7.2) (2021-07-12)
|
1555
|
+
|
1556
|
+
### [5.7.1](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.7.0...v5.7.1) (2021-07-05)
|
1557
|
+
|
1558
|
+
## [5.7.0](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.6.3...v5.7.0) (2021-07-01)
|
1559
|
+
|
1560
|
+
### [5.6.3](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.6.2...v5.6.3) (2021-06-16)
|
1561
|
+
|
1562
|
+
### [5.6.2](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.6.1...v5.6.2) (2021-05-10)
|
1563
|
+
|
1564
|
+
### [5.6.1](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.6.0...v5.6.1) (2021-05-10)
|
1565
|
+
|
1566
|
+
## [5.6.0](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.5.4...v5.6.0) (2021-04-29)
|
1567
|
+
|
1568
|
+
|
1569
|
+
### Features
|
1570
|
+
|
1571
|
+
* merging baskets ([#5](https://github.com/adeo/lmfr-web-client--authentication-module/issues/5)) ([1c744a4](https://github.com/adeo/lmfr-web-client--authentication-module/commit/1c744a4d3340f258a4945385b36e9af0484007ed))
|
1572
|
+
|
1573
|
+
### [5.5.4](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.5.3...v5.5.4) (2021-03-19)
|
1574
|
+
|
1575
|
+
|
1576
|
+
### Bug Fixes
|
1577
|
+
|
1578
|
+
* check is user is already contextualized before setting store cookies ([7cbfb60](https://github.com/adeo/lmfr-web-client--authentication-module/commit/7cbfb600cb29904fd07150b0880ad788af286ea5))
|
1579
|
+
|
1580
|
+
### [5.5.3](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.5.2...v5.5.3) (2021-03-11)
|
1581
|
+
|
1582
|
+
|
1583
|
+
### Bug Fixes
|
1584
|
+
|
1585
|
+
* set root path on both store cookies ([fdef163](https://github.com/adeo/lmfr-web-client--authentication-module/commit/fdef163c142473c29673caad1f8d24a5f025efd6))
|
1586
|
+
|
1587
|
+
### [5.5.2](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.5.1...v5.5.2) (2021-03-03)
|
1588
|
+
|
1589
|
+
### [5.5.1](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.5.0...v5.5.1) (2021-03-03)
|
1590
|
+
|
1591
|
+
## [5.5.0](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.4.2...v5.5.0) (2021-03-03)
|
1592
|
+
|
1593
|
+
|
1594
|
+
### Bug Fixes
|
1595
|
+
|
1596
|
+
* change saved login request cookie domain ([2d58e09](https://github.com/adeo/lmfr-web-client--authentication-module/commit/2d58e09a661d4fb136f598a6d8ed74aa26a4fd36))
|
1597
|
+
|
1598
|
+
### [5.4.2](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.4.1...v5.4.2) (2021-03-02)
|
1599
|
+
|
1600
|
+
|
1601
|
+
### Bug Fixes
|
1602
|
+
|
1603
|
+
* avoid calls to reach five if refresh token is empty ([6b403f0](https://github.com/adeo/lmfr-web-client--authentication-module/commit/6b403f00e7756e594d1e93b45166855d8d714bb3))
|
1604
|
+
|
1605
|
+
### [5.4.1](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.4.0...v5.4.1) (2021-03-02)
|
1606
|
+
|
1607
|
+
## [5.4.0](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.3.1...v5.4.0) (2021-03-02)
|
1608
|
+
|
1609
|
+
|
1610
|
+
### Bug Fixes
|
1611
|
+
|
1612
|
+
* add accept leway on jwt verifier to handle jwt freshly created ([4df5123](https://github.com/adeo/lmfr-web-client--authentication-module/commit/4df51237b1d9a93d3a0fda52139a7a4243ceded4))
|
1613
|
+
|
1614
|
+
### [5.0.10](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.9...v5.0.10) (2020-12-07)
|
1615
|
+
|
1616
|
+
### [5.0.9](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.8...v5.0.9) (2020-12-03)
|
1617
|
+
|
1618
|
+
### [5.0.8](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.7...v5.0.8) (2020-12-03)
|
1619
|
+
|
1620
|
+
|
1621
|
+
### Bug Fixes
|
1622
|
+
|
1623
|
+
* check contains instead of equality for mobile user agent ([ff4d3b4](https://github.com/adeo/lmfr-web-client--authentication-module/commit/ff4d3b48ec0444fbeb3f1a0f1b2e49eef7c096af))
|
1624
|
+
|
1625
|
+
### [5.0.7](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.6...v5.0.7) (2020-12-03)
|
1626
|
+
|
1627
|
+
### [5.0.6](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.5...v5.0.6) (2020-12-03)
|
1628
|
+
|
1629
|
+
### [5.0.5](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.4...v5.0.5) (2020-12-02)
|
1630
|
+
|
1631
|
+
### [5.0.4](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.3...v5.0.4) (2020-12-01)
|
1632
|
+
|
1633
|
+
### [5.0.3](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.2...v5.0.3) (2020-11-27)
|
1634
|
+
|
1635
|
+
### 5.0.2 (2020-11-10)
|
1636
|
+
|
1637
|
+
### [5.3.1](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.3.0...v5.3.1) (2021-02-23)
|
1638
|
+
|
1639
|
+
## [5.3.0](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.2.2...v5.3.0) (2021-02-22)
|
1640
|
+
|
1641
|
+
### [5.2.2](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.2.1...v5.2.2) (2021-02-18)
|
1642
|
+
|
1643
|
+
### [5.2.1](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.2.0...v5.2.1) (2021-02-10)
|
1644
|
+
|
1645
|
+
## [5.2.0](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.1.5...v5.2.0) (2021-02-09)
|
1646
|
+
|
1647
|
+
### [5.1.5](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.1.4...v5.1.5) (2021-02-05)
|
1648
|
+
|
1649
|
+
### [5.1.4](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.1.3...v5.1.4) (2021-02-04)
|
1650
|
+
|
1651
|
+
### [5.1.3](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.1.2...v5.1.3) (2021-02-04)
|
1652
|
+
|
1653
|
+
### [5.1.2](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.1.1...v5.1.2) (2021-02-03)
|
1654
|
+
|
1655
|
+
### [5.1.1](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.1.0...v5.1.1) (2021-02-03)
|
1656
|
+
|
1657
|
+
## [5.1.0](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.29...v5.1.0) (2021-01-25)
|
1658
|
+
|
1659
|
+
|
1660
|
+
### Features
|
1661
|
+
|
1662
|
+
* reset password ([304c164](https://github.com/adeo/lmfr-web-client--authentication-module/commit/304c16462e2d2278180fcacd1061076cb55c6bba))
|
1663
|
+
* update password ([3f0b846](https://github.com/adeo/lmfr-web-client--authentication-module/commit/3f0b846e27dcacbd2232f0d2664a2e931ea0e01c))
|
1664
|
+
|
1665
|
+
### [5.0.29](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.28...v5.0.29) (2021-01-14)
|
1666
|
+
|
1667
|
+
|
1668
|
+
### Bug Fixes
|
1669
|
+
|
1670
|
+
* InvalidFormatException while deserialize gender from R5 ([#3](https://github.com/adeo/lmfr-web-client--authentication-module/issues/3)) ([00afbb7](https://github.com/adeo/lmfr-web-client--authentication-module/commit/00afbb799bb10a5524725031bdcb73cd7ec6f578))
|
1671
|
+
|
1672
|
+
### [5.0.28](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.27...v5.0.28) (2021-01-08)
|
1673
|
+
|
1674
|
+
### [5.0.27](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.26...v5.0.27) (2021-01-08)
|
1675
|
+
|
1676
|
+
### [5.0.26](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.25...v5.0.26) (2021-01-08)
|
1677
|
+
|
1678
|
+
### [5.0.25](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.24...v5.0.25) (2021-01-08)
|
1679
|
+
|
1680
|
+
### [5.0.24](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.23...v5.0.24) (2021-01-08)
|
1681
|
+
|
1682
|
+
### [5.0.23](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.22...v5.0.23) (2021-01-08)
|
1683
|
+
|
1684
|
+
### [5.0.22](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.21...v5.0.22) (2021-01-08)
|
1685
|
+
|
1686
|
+
### [5.0.21](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.20...v5.0.21) (2021-01-06)
|
1687
|
+
|
1688
|
+
### [5.0.20](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.19...v5.0.20) (2021-01-06)
|
1689
|
+
|
1690
|
+
### [5.0.19](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.18...v5.0.19) (2021-01-06)
|
1691
|
+
|
1692
|
+
### [5.0.18](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.17...v5.0.18) (2021-01-05)
|
1693
|
+
|
1694
|
+
### [5.0.17](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.16...v5.0.17) (2021-01-05)
|
1695
|
+
|
1696
|
+
### [5.0.16](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.15...v5.0.16) (2021-01-05)
|
1697
|
+
|
1698
|
+
### [5.0.15](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.14...v5.0.15) (2021-01-05)
|
1699
|
+
|
1700
|
+
### [5.0.14](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.13...v5.0.14) (2021-01-05)
|
1701
|
+
|
1702
|
+
### [5.0.13](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.12...v5.0.13) (2021-01-05)
|
1703
|
+
|
1704
|
+
### [5.0.12](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.11...v5.0.12) (2021-01-04)
|
1705
|
+
|
1706
|
+
### [5.0.11](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.10...v5.0.11) (2020-12-11)
|
1707
|
+
|
1708
|
+
|
1709
|
+
### Bug Fixes
|
1710
|
+
|
1711
|
+
* add accept leway on jwt verifier to handle jwt freshly created ([4df5123](https://github.com/adeo/lmfr-web-client--authentication-module/commit/4df51237b1d9a93d3a0fda52139a7a4243ceded4))
|
1712
|
+
|
1713
|
+
### [5.0.10](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.9...v5.0.10) (2020-12-07)
|
1714
|
+
|
1715
|
+
### [5.0.9](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.8...v5.0.9) (2020-12-03)
|
1716
|
+
|
1717
|
+
### [5.0.8](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.7...v5.0.8) (2020-12-03)
|
1718
|
+
|
1719
|
+
|
1720
|
+
### Bug Fixes
|
1721
|
+
|
1722
|
+
* check contains instead of equality for mobile user agent ([ff4d3b4](https://github.com/adeo/lmfr-web-client--authentication-module/commit/ff4d3b48ec0444fbeb3f1a0f1b2e49eef7c096af))
|
1723
|
+
|
1724
|
+
### [5.0.7](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.6...v5.0.7) (2020-12-03)
|
1725
|
+
|
1726
|
+
### [5.0.6](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.5...v5.0.6) (2020-12-03)
|
1727
|
+
|
1728
|
+
### [5.0.5](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.4...v5.0.5) (2020-12-02)
|
1729
|
+
|
1730
|
+
### [5.0.4](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.3...v5.0.4) (2020-12-01)
|
1731
|
+
|
1732
|
+
### [5.0.3](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.2...v5.0.3) (2020-11-27)
|
1733
|
+
|
1734
|
+
### [5.0.2](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.1...v5.0.2) (2020-11-10)
|
1735
|
+
|
1736
|
+
|
1737
|
+
### Bug Fixes
|
1738
|
+
|
1739
|
+
* set default scopes when no scopes provided in state ([377ce70](https://github.com/adeo/lmfr-web-client--authentication-module/commit/377ce701b2bae86c6a1b7ab68c2ec8dd0e0a82cd))
|
1740
|
+
|
1741
|
+
### [5.0.1](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.0...v5.0.1) (2020-11-05)
|
1742
|
+
|
1743
|
+
## 5.0.0 (2020-10-28)
|
1744
|
+
|
1745
|
+
|
1746
|
+
### Features
|
1747
|
+
|
1748
|
+
* add has logged cookie ([aca341e](https://github.com/adeo/lmfr-web-client--authentication-module/commit/aca341e63405d96aad0975f20eb3827b2a9ca8aa))
|
1749
|
+
* change saved login cookie properties ([eeac9e5](https://github.com/adeo/lmfr-web-client--authentication-module/commit/eeac9e5d61c8272a6e98377f0db0802b926e5dad))
|
1750
|
+
|
1751
|
+
## [4.0.0](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v3.0.2...v4.0.0) (2020-07-06)
|
1752
|
+
|
1753
|
+
### [3.0.2](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v3.0.1...v3.0.2) (2020-02-06)
|
1754
|
+
|
1755
|
+
### [3.0.1](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v3.0.0...v3.0.1) (2020-02-06)
|
1756
|
+
|
1757
|
+
## [3.0.0](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v2.0.0...v3.0.0) (2019-12-04)
|
1758
|
+
|
1759
|
+
## [2.0.0](http://gitlab-xnet.fr.corp.leroymerlin.com/fr-lm-internet-refonte/lmfr-authentication-module/compare/v1.0.8...v2.0.0) (2019-10-25)
|
1760
|
+
|
1761
|
+
### [1.0.8](http://gitlab-xnet.fr.corp.leroymerlin.com/fr-lm-internet-refonte/lmfr-authentication-module/compare/v1.0.7...v1.0.8) (2019-10-16)
|
1762
|
+
|
1763
|
+
### [1.0.7](http://gitlab-xnet.fr.corp.leroymerlin.com/fr-lm-internet-refonte/lmfr-authentication-module/compare/v1.0.6...v1.0.7) (2019-10-16)
|
1764
|
+
|
1765
|
+
### [1.0.6](http://gitlab-xnet.fr.corp.leroymerlin.com/fr-lm-internet-refonte/lmfr-authentication-module/compare/v1.0.5...v1.0.6) (2019-10-16)
|
1766
|
+
|
1767
|
+
### [1.0.5](http://gitlab-xnet.fr.corp.leroymerlin.com/fr-lm-internet-refonte/lmfr-authentication-module/compare/v1.0.4...v1.0.5) (2019-10-14)
|
1768
|
+
|
1769
|
+
### [1.0.4](http://gitlab-xnet.fr.corp.leroymerlin.com/fr-lm-internet-refonte/lmfr-authentication-module/compare/v1.0.3...v1.0.4) (2019-10-11)
|
1770
|
+
|
1771
|
+
### [1.0.3](http://gitlab-xnet.fr.corp.leroymerlin.com/fr-lm-internet-refonte/lmfr-authentication-module/compare/v1.0.2...v1.0.3) (2019-10-09)
|
1772
|
+
|
1773
|
+
### [1.0.2](http://gitlab-xnet.fr.corp.leroymerlin.com/fr-lm-internet-refonte/lmfr-authentication-module/compare/v1.0.1...v1.0.2) (2019-10-09)
|
1774
|
+
|
1775
|
+
### [1.0.1](http://gitlab-xnet.fr.corp.leroymerlin.com/fr-lm-internet-refonte/lmfr-authentication-module/compare/v1.0.0...v1.0.1) (2019-10-09)
|
1776
|
+
|
1777
|
+
## 1.0.0 (2019-10-08)
|
1778
|
+
|
1779
|
+
|
1780
|
+
### Features
|
1781
|
+
|
1782
|
+
* **authent:** login & callback controllers ([33e778a](http://gitlab-xnet.fr.corp.leroymerlin.com/fr-lm-internet-refonte/lmfr-authentication-module/commit/33e778a))
|
1783
|
+
* **login:** login & callback controllers ([cb17aa1](http://gitlab-xnet.fr.corp.leroymerlin.com/fr-lm-internet-refonte/lmfr-authentication-module/commit/cb17aa1))
|
1784
|
+
* **node:** remove node_modules from git ([e5ee8e2](http://gitlab-xnet.fr.corp.leroymerlin.com/fr-lm-internet-refonte/lmfr-authentication-module/commit/e5ee8e2))
|