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,2300 @@
|
|
1
|
+
## [1.96.5](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.96.4...v1.96.5) (2024-06-03)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* put pro field ([#462](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/462)) ([daea0ba](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/daea0ba2e18adfe833eec2d6f77fb85702f90cfe))
|
7
|
+
|
8
|
+
## [1.96.4](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.96.3...v1.96.4) (2024-06-03)
|
9
|
+
|
10
|
+
|
11
|
+
### Bug Fixes
|
12
|
+
|
13
|
+
* add null check on declaredStoreAttachment in PUT ([#461](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/461)) ([0221af6](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/0221af63aaf3d35c2dbb53dde2cfbd9215082d4f))
|
14
|
+
|
15
|
+
## [1.96.3](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.96.2...v1.96.3) (2024-06-03)
|
16
|
+
|
17
|
+
|
18
|
+
### Bug Fixes
|
19
|
+
|
20
|
+
* **customer:** rework on put ([#460](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/460)) ([b1b515c](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/b1b515c8baa773020156704516ba50c789fd8dd4))
|
21
|
+
|
22
|
+
## [1.96.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.96.1...v1.96.2) (2024-05-23)
|
23
|
+
|
24
|
+
|
25
|
+
### Bug Fixes
|
26
|
+
|
27
|
+
* update lib version to fix switchToPro feature ([89c0a72](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/89c0a727be8160e2493d0f7724aa5e4c01593762))
|
28
|
+
|
29
|
+
## [1.96.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.96.0...v1.96.1) (2024-05-22)
|
30
|
+
|
31
|
+
|
32
|
+
### Bug Fixes
|
33
|
+
|
34
|
+
* update lib version in order to fix MDM PUT on administrativeCodeAsArray ([#459](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/459)) ([9262536](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/9262536a3b54d1cef096111f4109a8da110907cb))
|
35
|
+
|
36
|
+
# [1.96.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.95.1...v1.96.0) (2024-05-17)
|
37
|
+
|
38
|
+
|
39
|
+
### Features
|
40
|
+
|
41
|
+
* add unicity payment account info in customer search result ([#454](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/454)) ([baef972](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/baef9721189e31f96c78521f75b8492f28c0f05b))
|
42
|
+
|
43
|
+
## [1.95.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.95.0...v1.95.1) (2024-04-25)
|
44
|
+
|
45
|
+
|
46
|
+
### Bug Fixes
|
47
|
+
|
48
|
+
* upgrade to java17 ([#449](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/449)) ([53aa973](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/53aa97313fd3660aae233f045188c0a5da1bd2bd))
|
49
|
+
|
50
|
+
# [1.95.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.94.2...v1.95.0) (2024-04-23)
|
51
|
+
|
52
|
+
|
53
|
+
### Features
|
54
|
+
|
55
|
+
* **loyalty-program-by-type:** add the new endpoint to be able to get loyalty program by type. ([#451](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/451)) ([c13c30c](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/c13c30c5caeebf9537f4158701aaacd67d4d04ad))
|
56
|
+
|
57
|
+
## [1.94.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.94.1...v1.94.2) (2024-04-22)
|
58
|
+
|
59
|
+
|
60
|
+
### Bug Fixes
|
61
|
+
|
62
|
+
* use addOrReplace patch operation on clientPreferences API ([#450](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/450)) ([7ebc23a](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/7ebc23a0067a632be79e80615942ff7adb8348fd))
|
63
|
+
|
64
|
+
## [1.94.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.94.0...v1.94.1) (2024-04-12)
|
65
|
+
|
66
|
+
|
67
|
+
### Bug Fixes
|
68
|
+
|
69
|
+
* update lib version ([d821554](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/d8215542699c260d54a653489a2674f4fa50c9b6))
|
70
|
+
|
71
|
+
# [1.94.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.93.3...v1.94.0) (2024-04-03)
|
72
|
+
|
73
|
+
|
74
|
+
### Features
|
75
|
+
|
76
|
+
* **mdm:** add isMaster attribute ([#447](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/447)) ([8dae529](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/8dae5290a4414bc99196c7f60b96570b1e63a00c))
|
77
|
+
|
78
|
+
## [1.93.3](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.93.2...v1.93.3) (2024-03-29)
|
79
|
+
|
80
|
+
|
81
|
+
### Bug Fixes
|
82
|
+
|
83
|
+
* **webuser:** align permission on webaccount deletion with front ([e5724cf](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/e5724cfe0ac77d5292e7466bf0c57732444d4f96))
|
84
|
+
|
85
|
+
## [1.93.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.93.1...v1.93.2) (2024-03-25)
|
86
|
+
|
87
|
+
|
88
|
+
### Bug Fixes
|
89
|
+
|
90
|
+
* **security:** use csrf annotation on check endpoint used in creation ([#446](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/446)) ([b4a6950](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/b4a69501b9a133dbc51b3525934b867029259443))
|
91
|
+
|
92
|
+
## [1.93.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.93.0...v1.93.1) (2024-03-07)
|
93
|
+
|
94
|
+
|
95
|
+
### Bug Fixes
|
96
|
+
|
97
|
+
* update lib version ([c8a09f2](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/c8a09f299a623cf9d9d6deec677108b49426d98d))
|
98
|
+
|
99
|
+
# [1.93.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.92.9...v1.93.0) (2024-02-22)
|
100
|
+
|
101
|
+
|
102
|
+
### Features
|
103
|
+
|
104
|
+
* **Loyalty-Invitation:** complete the LoyaltyInvitationDto object. I add senderIdentifier, validityStartDate, and validityEndDate. And adapt the call to loyalty team. ([#444](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/444)) ([42d9039](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/42d9039bcee59d6f0e5c3688fcf420a4e037e786))
|
105
|
+
|
106
|
+
## [1.92.9](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.92.8...v1.92.9) (2024-02-21)
|
107
|
+
|
108
|
+
|
109
|
+
### Bug Fixes
|
110
|
+
|
111
|
+
* **legalForm:** add FR SAS ([#443](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/443)) ([5040e50](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/5040e5070982246863e90b3d46c49a9150d6cbe4))
|
112
|
+
|
113
|
+
## [1.92.8](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.92.7...v1.92.8) (2024-02-21)
|
114
|
+
|
115
|
+
|
116
|
+
### Bug Fixes
|
117
|
+
|
118
|
+
* **legalForm:** add FR SAS ([#442](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/442)) ([44c2d71](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/44c2d7187075921a56bdb663bf8b271706316d02))
|
119
|
+
|
120
|
+
## [1.92.7](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.92.6...v1.92.7) (2024-02-15)
|
121
|
+
|
122
|
+
|
123
|
+
### Bug Fixes
|
124
|
+
|
125
|
+
* **preexistence:** add customerNumber in preexistence response ([#440](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/440)) ([eef885f](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/eef885fe57a5d30f35a50ee2a5d732ead0e01b3f))
|
126
|
+
|
127
|
+
## [1.92.6](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.92.5...v1.92.6) (2024-02-14)
|
128
|
+
|
129
|
+
|
130
|
+
### Bug Fixes
|
131
|
+
|
132
|
+
* **preexistence:** check multi account header from IDP response ([#439](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/439)) ([2218349](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/2218349b4131b76cd7424abde4171bed80b920b1))
|
133
|
+
|
134
|
+
## [1.92.5](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.92.4...v1.92.5) (2024-02-14)
|
135
|
+
|
136
|
+
|
137
|
+
### Bug Fixes
|
138
|
+
|
139
|
+
* revert dependabot update ([edc9f1c](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/edc9f1c231873f62c61260594be18f90303a30d7))
|
140
|
+
|
141
|
+
## [1.92.4](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.92.3...v1.92.4) (2024-02-13)
|
142
|
+
|
143
|
+
|
144
|
+
### Bug Fixes
|
145
|
+
|
146
|
+
* **search:** remove unused withConsents query param ([#433](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/433)) ([cba27fa](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/cba27fa1f196b6492ddfad86f9016a79b4d7b0bd))
|
147
|
+
|
148
|
+
## [1.92.3](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.92.2...v1.92.3) (2024-02-07)
|
149
|
+
|
150
|
+
|
151
|
+
### Bug Fixes
|
152
|
+
|
153
|
+
* **pointHistories:** fix an error when points attribute has a decimal value ([#436](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/436)) ([3721997](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/3721997630eccc5e1e1177e18766b1f1664c0d6a))
|
154
|
+
|
155
|
+
## [1.92.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.92.1...v1.92.2) (2024-02-06)
|
156
|
+
|
157
|
+
|
158
|
+
### Bug Fixes
|
159
|
+
|
160
|
+
* remove unused endpoint since new account creation deployment ([#435](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/435)) ([e3471a0](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/e3471a09f0e4bf51b1fa738eeb84c7bcc5f0b1b8))
|
161
|
+
|
162
|
+
## [1.92.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.92.0...v1.92.1) (2024-02-06)
|
163
|
+
|
164
|
+
|
165
|
+
### Bug Fixes
|
166
|
+
|
167
|
+
* create light CustomerSpace.customer cookie when api call fail ([#431](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/431)) ([ab1ee49](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/ab1ee49c76ba175db7807e3cadc4051cec5047f6))
|
168
|
+
|
169
|
+
# [1.92.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.91.3...v1.92.0) (2024-02-05)
|
170
|
+
|
171
|
+
|
172
|
+
### Features
|
173
|
+
|
174
|
+
* **Loyalty-Invitation:** Add new endpoint to resendInvitationByEmail ([#434](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/434)) ([510e38f](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/510e38f7526a58725ca60484641878cf40bd102b))
|
175
|
+
|
176
|
+
## [1.91.3](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.91.2...v1.91.3) (2024-02-05)
|
177
|
+
|
178
|
+
|
179
|
+
### Bug Fixes
|
180
|
+
|
181
|
+
* **social-signup:** use custom UncompleteSignup.jwt cookie to get user infos ([#429](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/429)) ([1938c20](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/1938c2064a65687dcb955182121b73ff02a80eb7))
|
182
|
+
|
183
|
+
## [1.91.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.91.1...v1.91.2) (2024-02-02)
|
184
|
+
|
185
|
+
|
186
|
+
### Bug Fixes
|
187
|
+
|
188
|
+
* add missing quote in string constant ([139d39b](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/139d39bc5054c45e5174b26f8030e0e7d5a186bd))
|
189
|
+
|
190
|
+
## [1.91.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.91.0...v1.91.1) (2024-02-02)
|
191
|
+
|
192
|
+
|
193
|
+
### Bug Fixes
|
194
|
+
|
195
|
+
* update docker image ([22808b9](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/22808b94585ba6b38c7076da535d40bd05fc9177))
|
196
|
+
|
197
|
+
# [1.91.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.90.3...v1.91.0) (2024-02-02)
|
198
|
+
|
199
|
+
|
200
|
+
### Features
|
201
|
+
|
202
|
+
* **Loyalty-Invitation:** update invitation for the employee ([#432](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/432)) ([2cf0342](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/2cf0342a7577934eac47f60555636c4c3e6820fe))
|
203
|
+
|
204
|
+
## [1.90.3](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.90.2...v1.90.3) (2024-02-01)
|
205
|
+
|
206
|
+
|
207
|
+
### Bug Fixes
|
208
|
+
|
209
|
+
* **loyalty:** add description label on point transofrmation dto ([#425](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/425)) ([4b8865e](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/4b8865e4cc942b9ef4480a10d59a1d469cc30f72))
|
210
|
+
|
211
|
+
## [1.90.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.90.1...v1.90.2) (2024-01-30)
|
212
|
+
|
213
|
+
|
214
|
+
### Bug Fixes
|
215
|
+
|
216
|
+
* **Loyalty-Invitation:** writing value of topic enum was wrong. ADD_COOWNER <> ADD_CO_OWNER ([#430](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/430)) ([e2d651b](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/e2d651b2dcff0086e45b5d300aecb48025ae8b48))
|
217
|
+
|
218
|
+
## [1.90.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.90.0...v1.90.1) (2024-01-29)
|
219
|
+
|
220
|
+
|
221
|
+
### Bug Fixes
|
222
|
+
|
223
|
+
* **search:** display disabled client on mdm search call ([#424](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/424)) ([4cd67b5](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/4cd67b5d0ad92325b1c8d2f07af4f23c2cd7bb45))
|
224
|
+
|
225
|
+
# [1.90.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.89.2...v1.90.0) (2024-01-25)
|
226
|
+
|
227
|
+
|
228
|
+
### Features
|
229
|
+
|
230
|
+
* **Loyalty-Invitation:** improve filter on getInvitationsByCustomer ([#428](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/428)) ([97a7a87](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/97a7a879b5b30491549972220999a5eb0527b752))
|
231
|
+
|
232
|
+
## [1.89.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.89.1...v1.89.2) (2024-01-25)
|
233
|
+
|
234
|
+
|
235
|
+
### Bug Fixes
|
236
|
+
|
237
|
+
* **ide:** add attribute ([#401](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/401)) ([bdaac50](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/bdaac50acb59ec66b5e92f418f694b75dca9bf88))
|
238
|
+
|
239
|
+
## [1.89.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.89.0...v1.89.1) (2024-01-25)
|
240
|
+
|
241
|
+
|
242
|
+
### Bug Fixes
|
243
|
+
|
244
|
+
* **coowner-invitation:** add accountType attribute in DTO ([#427](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/427)) ([3bdee85](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/3bdee85f13b43c13f54828e8d08cd41c808d3e7e))
|
245
|
+
|
246
|
+
# [1.89.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.88.1...v1.89.0) (2024-01-22)
|
247
|
+
|
248
|
+
|
249
|
+
### Features
|
250
|
+
|
251
|
+
* **Loyalty-Invitation:** add topic attribute in loyalty invitation. ([#426](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/426)) ([47337f8](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/47337f82482e4ee6c1bfdf3ed3ccb1d9e2954858))
|
252
|
+
|
253
|
+
## [1.88.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.88.0...v1.88.1) (2024-01-18)
|
254
|
+
|
255
|
+
|
256
|
+
### Bug Fixes
|
257
|
+
|
258
|
+
* **coowner:** fix npe ([9a646bf](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/9a646bf7374a86e6268f2664cc38f1a7c8ca178d))
|
259
|
+
|
260
|
+
# [1.88.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.87.0...v1.88.0) (2024-01-18)
|
261
|
+
|
262
|
+
|
263
|
+
### Features
|
264
|
+
|
265
|
+
* **loyalty:** add cguUrl for coowner invitation ([#423](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/423)) ([904dde0](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/904dde04d77e87b7025e56e9e9e72713667da74f))
|
266
|
+
|
267
|
+
# [1.87.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.86.8...v1.87.0) (2024-01-11)
|
268
|
+
|
269
|
+
|
270
|
+
### Features
|
271
|
+
|
272
|
+
* **Loyalty-Invitation:** add call to lys to create new invitation ([#421](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/421)) ([0e40bc4](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/0e40bc462e9e0745f8abb9f07346a3e949246f76))
|
273
|
+
|
274
|
+
## [1.86.8](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.86.7...v1.86.8) (2024-01-10)
|
275
|
+
|
276
|
+
|
277
|
+
### Bug Fixes
|
278
|
+
|
279
|
+
* **loyalty:** fix currency label for lmpl ([#418](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/418)) ([79acf72](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/79acf72eb31f7630f8f8251d6d80ba945b0c6498))
|
280
|
+
|
281
|
+
## [1.86.7](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.86.6...v1.86.7) (2024-01-10)
|
282
|
+
|
283
|
+
|
284
|
+
### Bug Fixes
|
285
|
+
|
286
|
+
* **contextualization:** fix error handling on contextualization api call ([#420](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/420)) ([f0dbc7b](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/f0dbc7b95e0fe740eb8dbf5f2fa3a1b2046cd325))
|
287
|
+
|
288
|
+
## [1.86.6](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.86.5...v1.86.6) (2024-01-09)
|
289
|
+
|
290
|
+
|
291
|
+
### Bug Fixes
|
292
|
+
|
293
|
+
* handle community profile call error to prevent issue en customer/me ([#419](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/419)) ([152a4f3](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/152a4f37bde95c357872b1430574ac1aac13c02e))
|
294
|
+
|
295
|
+
## [1.86.5](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.86.4...v1.86.5) (2024-01-05)
|
296
|
+
|
297
|
+
|
298
|
+
### Bug Fixes
|
299
|
+
|
300
|
+
* clean some code ([#416](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/416)) ([2ac6215](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/2ac62154b6515dc477aa4f1120b456f35c007046))
|
301
|
+
|
302
|
+
## [1.86.4](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.86.3...v1.86.4) (2024-01-05)
|
303
|
+
|
304
|
+
|
305
|
+
### Bug Fixes
|
306
|
+
|
307
|
+
* **consents:** add queryParam to filter available consents ([#412](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/412)) ([3f58755](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/3f5875596e135a92d9bf9e271233a9cbd15d0281))
|
308
|
+
|
309
|
+
## [1.86.3](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.86.2...v1.86.3) (2023-12-18)
|
310
|
+
|
311
|
+
|
312
|
+
### Bug Fixes
|
313
|
+
|
314
|
+
* **loyalty:** remove filter on loyalty invitation status done in lib now ([#408](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/408)) ([b7334c0](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/b7334c0403d0c377e4c711f129a6b0a1a8bb0ee9))
|
315
|
+
|
316
|
+
## [1.86.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.86.1...v1.86.2) (2023-12-13)
|
317
|
+
|
318
|
+
|
319
|
+
### Bug Fixes
|
320
|
+
|
321
|
+
* **loyalty:** remove housingpass support type specific handling on apply ([#410](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/410)) ([be0558a](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/be0558a1b750aa5326417a61f79fd5a1026b5a1a))
|
322
|
+
|
323
|
+
## [1.86.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.86.0...v1.86.1) (2023-12-13)
|
324
|
+
|
325
|
+
|
326
|
+
### Bug Fixes
|
327
|
+
|
328
|
+
* **npe:** avoid error when savedloginrequestcookie is not present ([56d94de](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/56d94de2a4e66d0102c91ff50d7d9f540893f699))
|
329
|
+
|
330
|
+
# [1.86.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.85.0...v1.86.0) (2023-12-05)
|
331
|
+
|
332
|
+
|
333
|
+
### Features
|
334
|
+
|
335
|
+
* **signup:** adapt workflow for social login process ([#391](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/391)) ([645ccab](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/645ccabedfa198c764f4ec2f3598a780bd90c3dc))
|
336
|
+
|
337
|
+
# [1.85.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.84.4...v1.85.0) (2023-11-29)
|
338
|
+
|
339
|
+
|
340
|
+
### Features
|
341
|
+
|
342
|
+
* **preexistence:** add preexistence endpoint ([#406](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/406)) ([cc586fa](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/cc586fa3c9e2ef302266696f5266c1e25ebbd61e))
|
343
|
+
|
344
|
+
## [1.84.4](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.84.3...v1.84.4) (2023-11-27)
|
345
|
+
|
346
|
+
|
347
|
+
### Bug Fixes
|
348
|
+
|
349
|
+
* npe on redirectUrl build ([e8288d3](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/e8288d34bb39524c4e4ec22353a731acbdb987e2))
|
350
|
+
|
351
|
+
## [1.84.3](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.84.2...v1.84.3) (2023-11-15)
|
352
|
+
|
353
|
+
|
354
|
+
### Bug Fixes
|
355
|
+
|
356
|
+
* **signup:** remove loyalty redirect cookie ([a38248b](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/a38248b9bc9abd7f3ee819e2719c2d83ce26ab62))
|
357
|
+
|
358
|
+
|
359
|
+
### Reverts
|
360
|
+
|
361
|
+
* Revert "ci: remove check-pr workflow" ([975803e](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/975803ec57816f97233b92296b61070d27ed2382))
|
362
|
+
|
363
|
+
## [1.84.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.84.1...v1.84.2) (2023-11-15)
|
364
|
+
|
365
|
+
|
366
|
+
### Bug Fixes
|
367
|
+
|
368
|
+
* **signup:** manage loyalty redirection after new signup ([#405](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/405)) ([36a10d5](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/36a10d5b967f2c0e6edeeca2a0be3d3236311e3b))
|
369
|
+
|
370
|
+
## [1.84.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.84.0...v1.84.1) (2023-11-14)
|
371
|
+
|
372
|
+
|
373
|
+
### Bug Fixes
|
374
|
+
|
375
|
+
* adapt lys customer's coowner invitation response ([#407](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/407)) ([b39dc52](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/b39dc52949bad3d6ab68cb32ef3af23130a190ec))
|
376
|
+
|
377
|
+
# [1.84.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.83.5...v1.84.0) (2023-11-08)
|
378
|
+
|
379
|
+
|
380
|
+
### Features
|
381
|
+
|
382
|
+
* **consents:** add community consents type for lmes ([#349](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/349)) ([f37d170](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/f37d170af529332769f0fe2de00bc675cd856a0d))
|
383
|
+
|
384
|
+
## [1.83.5](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.83.4...v1.83.5) (2023-11-07)
|
385
|
+
|
386
|
+
|
387
|
+
### Bug Fixes
|
388
|
+
|
389
|
+
* handle professional MDM path deactivation ([#404](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/404)) ([22f5bee](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/22f5beef76d0ec355b1d6ca90457a460a89940d6))
|
390
|
+
|
391
|
+
## [1.83.4](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.83.3...v1.83.4) (2023-11-06)
|
392
|
+
|
393
|
+
|
394
|
+
### Bug Fixes
|
395
|
+
|
396
|
+
* remove professional classification enums ([#403](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/403)) ([8944092](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/89440924d3bc9b129840c6d85ef4e8499f000ec4))
|
397
|
+
|
398
|
+
## [1.83.3](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.83.2...v1.83.3) (2023-11-03)
|
399
|
+
|
400
|
+
|
401
|
+
### Bug Fixes
|
402
|
+
|
403
|
+
* **nip:** fix search by administrative identifier ([#402](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/402)) ([1a0d9e2](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/1a0d9e200a71174c4cd6c9b659a3be201db9e059))
|
404
|
+
|
405
|
+
## [1.83.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.83.1...v1.83.2) (2023-10-26)
|
406
|
+
|
407
|
+
|
408
|
+
### Bug Fixes
|
409
|
+
|
410
|
+
* **address:** add complementaryDeliveryAddress MDM field update ([#396](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/396)) ([b23f631](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/b23f631e40eae60f4ea00336f496856f8ee7df63))
|
411
|
+
|
412
|
+
## [1.83.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.83.0...v1.83.1) (2023-10-18)
|
413
|
+
|
414
|
+
|
415
|
+
### Bug Fixes
|
416
|
+
|
417
|
+
* **consents:** add informationHtml field on consents ([#395](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/395)) ([4a4ded3](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/4a4ded33c340c5c172de31e5cf697757161d8a7e))
|
418
|
+
|
419
|
+
# [1.83.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.82.0...v1.83.0) (2023-10-12)
|
420
|
+
|
421
|
+
|
422
|
+
### Features
|
423
|
+
|
424
|
+
* **consents:** add new consents types ([#351](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/351)) ([89f6a63](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/89f6a639abccab97a0cb9c8b94dd18f77b49915f))
|
425
|
+
|
426
|
+
# [1.82.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.81.3...v1.82.0) (2023-10-05)
|
427
|
+
|
428
|
+
|
429
|
+
### Features
|
430
|
+
|
431
|
+
* **loyalty:** add coowner invitation journey ([#392](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/392)) ([5218558](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/5218558530fde57e79c341cdf92c0015715241f3))
|
432
|
+
|
433
|
+
## [1.81.3](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.81.2...v1.81.3) (2023-09-28)
|
434
|
+
|
435
|
+
|
436
|
+
### Bug Fixes
|
437
|
+
|
438
|
+
* **pre-existence:** anonymise email on pre-existence check ([#393](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/393)) ([9bc9758](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/9bc97589672d4ea0c1f5c5e3744678e475697a22))
|
439
|
+
|
440
|
+
## [1.81.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.81.1...v1.81.2) (2023-09-15)
|
441
|
+
|
442
|
+
|
443
|
+
### Bug Fixes
|
444
|
+
|
445
|
+
* **lmpl:** add nip patch management ([#389](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/389)) ([54685da](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/54685da64f53f3b6b91b14e2cf2b89fe6a7f2bad))
|
446
|
+
|
447
|
+
## [1.81.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.81.0...v1.81.1) (2023-09-13)
|
448
|
+
|
449
|
+
|
450
|
+
### Bug Fixes
|
451
|
+
|
452
|
+
* update lib version ([0dfcbb7](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/0dfcbb7dd529ff10c09a7d1b0ac39e928caefdeb))
|
453
|
+
|
454
|
+
# [1.81.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.80.2...v1.81.0) (2023-09-11)
|
455
|
+
|
456
|
+
|
457
|
+
### Features
|
458
|
+
|
459
|
+
* **loyalty:** add loyalty points histories service ([#384](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/384)) ([734d055](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/734d05563aab5f6b98ffe9bc172f1823e057b8fc)), closes [#387](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/387) [#387](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/387) [#388](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/388) [#385](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/385) [#385](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/385)
|
460
|
+
|
461
|
+
## [1.80.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.80.1...v1.80.2) (2023-09-05)
|
462
|
+
|
463
|
+
|
464
|
+
### Bug Fixes
|
465
|
+
|
466
|
+
* **consents:** clean unused digital constents ([#385](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/385)) ([5d420aa](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/5d420aa26f6cac93a2ab9353eb45ea7fb54224f2))
|
467
|
+
|
468
|
+
## [1.80.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.80.0...v1.80.1) (2023-08-28)
|
469
|
+
|
470
|
+
|
471
|
+
### Bug Fixes
|
472
|
+
|
473
|
+
* **check:** add email regex check when dq is KO ([#387](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/387)) ([712abe7](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/712abe7b481f4f37809122bec0e80c386ff3d222))
|
474
|
+
|
475
|
+
# [1.80.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.79.1...v1.80.0) (2023-08-02)
|
476
|
+
|
477
|
+
|
478
|
+
### Features
|
479
|
+
|
480
|
+
* **search:** add nip field for professionnal customers ([#383](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/383)) ([044b629](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/044b6298483e65501fcafeec6683fcd6f2d8aa88))
|
481
|
+
|
482
|
+
## [1.79.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.79.0...v1.79.1) (2023-07-26)
|
483
|
+
|
484
|
+
|
485
|
+
### Bug Fixes
|
486
|
+
|
487
|
+
* **patch-company:** handle tvaIntraCommunautaire patch ([#381](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/381)) ([7647bb6](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/7647bb6b2e7f68fdb3d43549bde114788922ae19))
|
488
|
+
|
489
|
+
# [1.79.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.78.1...v1.79.0) (2023-07-24)
|
490
|
+
|
491
|
+
|
492
|
+
### Features
|
493
|
+
|
494
|
+
* **customer:** manage pro role ([#377](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/377)) ([6dd51d3](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/6dd51d325b7c260f8bb2869925c744acfa3476ab))
|
495
|
+
|
496
|
+
## [1.78.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.78.0...v1.78.1) (2023-07-20)
|
497
|
+
|
498
|
+
|
499
|
+
### Bug Fixes
|
500
|
+
|
501
|
+
* **lib:** upgrade version ([#380](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/380)) ([7232321](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/72323215cd93721765a4cae3cec97fc89b298b07))
|
502
|
+
|
503
|
+
# [1.78.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.77.0...v1.78.0) (2023-07-20)
|
504
|
+
|
505
|
+
|
506
|
+
### Features
|
507
|
+
|
508
|
+
* **lmpl:** add nip administrative code ([#373](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/373)) ([d145330](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/d14533021ff65a9c92ff8b9b14a7d954898f21d1))
|
509
|
+
|
510
|
+
# [1.77.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.76.0...v1.77.0) (2023-07-20)
|
511
|
+
|
512
|
+
|
513
|
+
### Features
|
514
|
+
|
515
|
+
* **consents:** pl implementation ([#374](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/374)) ([ce5432b](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/ce5432b6f851fc47025a0981963ccd2660326d11))
|
516
|
+
|
517
|
+
# [1.76.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.75.0...v1.76.0) (2023-07-17)
|
518
|
+
|
519
|
+
|
520
|
+
### Features
|
521
|
+
|
522
|
+
* **oney:** add loyalty card number on API call ([#378](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/378)) ([ef3b45e](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/ef3b45ebd726cafb6896adb3adf9ce29ac7e79d9))
|
523
|
+
|
524
|
+
# [1.75.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.74.1...v1.75.0) (2023-07-07)
|
525
|
+
|
526
|
+
|
527
|
+
### Features
|
528
|
+
|
529
|
+
* **contextualization:** split contextualization into two impl ([#375](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/375)) ([bb055bf](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/bb055bf3a8db310932630b60ff7ee3675f76517d))
|
530
|
+
|
531
|
+
## [1.74.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.74.0...v1.74.1) (2023-06-22)
|
532
|
+
|
533
|
+
|
534
|
+
### Bug Fixes
|
535
|
+
|
536
|
+
* date format on last orders ([#372](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/372)) ([cca803b](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/cca803bacace3adf3efd951b4ec326296e8b46f6))
|
537
|
+
|
538
|
+
# [1.74.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.73.0...v1.74.0) (2023-06-21)
|
539
|
+
|
540
|
+
|
541
|
+
### Features
|
542
|
+
|
543
|
+
* **loyalty:** add partner platform access management ([#369](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/369)) ([28e3c2d](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/28e3c2def562b73af44edabcc1ca0a0ce07931a6))
|
544
|
+
|
545
|
+
# [1.73.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.72.1...v1.73.0) (2023-06-21)
|
546
|
+
|
547
|
+
|
548
|
+
### Features
|
549
|
+
|
550
|
+
* **search:** add new search criterias ([#365](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/365)) ([721d81a](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/721d81a809e8d2b36c9f7795cd2d00225137621b))
|
551
|
+
|
552
|
+
## [1.72.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.72.0...v1.72.1) (2023-06-16)
|
553
|
+
|
554
|
+
|
555
|
+
### Bug Fixes
|
556
|
+
|
557
|
+
* **orders:** add storeCode and deliveryMode on orders ([#371](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/371)) ([4e6c6ea](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/4e6c6ea0c3c5ae858042f9df85b6dfd5a06b0dc2))
|
558
|
+
|
559
|
+
# [1.72.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.71.2...v1.72.0) (2023-06-15)
|
560
|
+
|
561
|
+
|
562
|
+
### Features
|
563
|
+
|
564
|
+
* **loyalty:** display multiple loyalty co-owners ([#367](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/367)) ([56a9885](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/56a9885fb098f1095df195f548207965ba4645db))
|
565
|
+
|
566
|
+
## [1.71.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.71.1...v1.71.2) (2023-06-14)
|
567
|
+
|
568
|
+
|
569
|
+
### Bug Fixes
|
570
|
+
|
571
|
+
* restore com.adeo.rbacmanager in ComponentScan ([#370](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/370)) ([007e6ec](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/007e6ec8795afaf7b4e631d87a26602ef72994e6))
|
572
|
+
|
573
|
+
## [1.71.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.71.0...v1.71.1) (2023-06-14)
|
574
|
+
|
575
|
+
|
576
|
+
### Bug Fixes
|
577
|
+
|
578
|
+
* update lib version ([9d2ea52](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/9d2ea52f51a689c0e0c5d545cda1464123332564))
|
579
|
+
|
580
|
+
# [1.71.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.70.4...v1.71.0) (2023-06-14)
|
581
|
+
|
582
|
+
|
583
|
+
### Features
|
584
|
+
|
585
|
+
* **orders:** add endpoint to retrieve last five customer's orders ([#368](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/368)) ([87fdf8a](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/87fdf8a2318202543a69051d6cb9688f597494dc))
|
586
|
+
|
587
|
+
## [1.70.4](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.70.3...v1.70.4) (2023-06-12)
|
588
|
+
|
589
|
+
|
590
|
+
### Bug Fixes
|
591
|
+
|
592
|
+
* check customer email on administrative identifier preexistence ([#348](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/348)) ([91bedb3](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/91bedb3504e9d81d7e4216948658c8ae94953847))
|
593
|
+
|
594
|
+
## [1.70.3](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.70.2...v1.70.3) (2023-06-08)
|
595
|
+
|
596
|
+
|
597
|
+
### Bug Fixes
|
598
|
+
|
599
|
+
* **store:** retrieve default list sorted by alphabetical order ([#366](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/366)) ([446d260](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/446d260748fc6945f5bdcf5205ce1aaa7009b7a3))
|
600
|
+
|
601
|
+
## [1.70.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.70.1...v1.70.2) (2023-06-01)
|
602
|
+
|
603
|
+
|
604
|
+
### Bug Fixes
|
605
|
+
|
606
|
+
* return main adress in first ([#364](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/364)) ([e73b5b5](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/e73b5b5396f6a04353c79c722fedc32008179ce4))
|
607
|
+
|
608
|
+
## [1.70.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.70.0...v1.70.1) (2023-05-25)
|
609
|
+
|
610
|
+
|
611
|
+
### Bug Fixes
|
612
|
+
|
613
|
+
* upgrade snapshot ([#363](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/363)) ([a771ff9](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/a771ff97e0e3a5a244558baa1114e6f0b81567d1))
|
614
|
+
|
615
|
+
# [1.70.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.69.7...v1.70.0) (2023-05-25)
|
616
|
+
|
617
|
+
|
618
|
+
### Features
|
619
|
+
|
620
|
+
* **switch-to-pro:** bind eligibility check service to idp orchestration client ([#357](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/357)) ([deaefa4](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/deaefa4ae76d50428769fc39ea91c3e727c45c32))
|
621
|
+
|
622
|
+
## [1.69.7](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.69.6...v1.69.7) (2023-05-23)
|
623
|
+
|
624
|
+
|
625
|
+
### Bug Fixes
|
626
|
+
|
627
|
+
* upgrade lib version ([5345fd4](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/5345fd4685e40c610d48d68d003a45cebed944e6))
|
628
|
+
|
629
|
+
## [1.69.6](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.69.5...v1.69.6) (2023-05-23)
|
630
|
+
|
631
|
+
|
632
|
+
### Bug Fixes
|
633
|
+
|
634
|
+
* update lib version ([bd1cfda](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/bd1cfda96813d9ee98ca3a80326d87c16e08330b))
|
635
|
+
|
636
|
+
## [1.69.5](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.69.4...v1.69.5) (2023-05-23)
|
637
|
+
|
638
|
+
|
639
|
+
### Bug Fixes
|
640
|
+
|
641
|
+
* update lib version ([#362](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/362)) ([9627ca7](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/9627ca72395679ccb7a9af3631453324dde0efb7))
|
642
|
+
|
643
|
+
## [1.69.4](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.69.3...v1.69.4) (2023-05-22)
|
644
|
+
|
645
|
+
|
646
|
+
### Bug Fixes
|
647
|
+
|
648
|
+
* update lib version to add COMPUTING professional classification ([#361](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/361)) ([7ca6e56](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/7ca6e5601bc543305f2a62b53b6e49457b025750))
|
649
|
+
|
650
|
+
## [1.69.3](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.69.2...v1.69.3) (2023-05-15)
|
651
|
+
|
652
|
+
|
653
|
+
### Bug Fixes
|
654
|
+
|
655
|
+
* **rewards:** remove movin reward from counters ([#360](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/360)) ([0d60f00](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/0d60f00139a4c91871eefee768dd1e6d27965eb2))
|
656
|
+
|
657
|
+
## [1.69.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.69.1...v1.69.2) (2023-05-12)
|
658
|
+
|
659
|
+
|
660
|
+
### Bug Fixes
|
661
|
+
|
662
|
+
* **patch:** check storeAttachement nullity ([#359](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/359)) ([ff09086](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/ff090865f8f99ea2f0d6f319c3525f4a1474dcdb))
|
663
|
+
|
664
|
+
## [1.69.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.69.0...v1.69.1) (2023-05-12)
|
665
|
+
|
666
|
+
|
667
|
+
### Bug Fixes
|
668
|
+
|
669
|
+
* **store:** fix store patch when customer has not store ([#358](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/358)) ([5a4e75a](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/5a4e75af773e20658f52509a0aa842da2d2e37b2))
|
670
|
+
|
671
|
+
# [1.69.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.68.1...v1.69.0) (2023-05-09)
|
672
|
+
|
673
|
+
|
674
|
+
### Features
|
675
|
+
|
676
|
+
* **oney:** add endpoint to check if collab store is present on oney ([#324](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/324)) ([57c6064](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/57c60645f5513ede6a63ed2f2776c90f02f83304))
|
677
|
+
|
678
|
+
## [1.68.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.68.0...v1.68.1) (2023-05-04)
|
679
|
+
|
680
|
+
|
681
|
+
### Bug Fixes
|
682
|
+
|
683
|
+
* **lmes:** handle when customer change administrative identifier type ([#356](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/356)) ([945803e](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/945803e0a935e10b31e5b78a226ff72e7e740d6f))
|
684
|
+
|
685
|
+
# [1.68.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.67.2...v1.68.0) (2023-04-27)
|
686
|
+
|
687
|
+
|
688
|
+
### Features
|
689
|
+
|
690
|
+
* **pro:** add tmp pro transformation ([#355](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/355)) ([996ee65](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/996ee65cb80dc8a55664349e1df169751e3aafff))
|
691
|
+
|
692
|
+
## [1.67.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.67.1...v1.67.2) (2023-04-26)
|
693
|
+
|
694
|
+
|
695
|
+
### Bug Fixes
|
696
|
+
|
697
|
+
* **movingDate:** return if moving date has reward eligible ([#354](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/354)) ([1c89153](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/1c89153c1d4a95e657f9e94bb778ea4d13813802))
|
698
|
+
|
699
|
+
## [1.67.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.67.0...v1.67.1) (2023-04-24)
|
700
|
+
|
701
|
+
|
702
|
+
### Bug Fixes
|
703
|
+
|
704
|
+
* **movingDate:** split calculator methods ([#353](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/353)) ([747cb1f](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/747cb1f1012013cb0ae658851e4ccf374cf0c463))
|
705
|
+
|
706
|
+
# [1.67.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.66.1...v1.67.0) (2023-04-24)
|
707
|
+
|
708
|
+
|
709
|
+
### Features
|
710
|
+
|
711
|
+
* **customer:** add move date ([#350](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/350)) ([50ab742](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/50ab74266f02b30b188a20d85994503e0c567ea9))
|
712
|
+
|
713
|
+
## [1.66.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.66.0...v1.66.1) (2023-04-20)
|
714
|
+
|
715
|
+
|
716
|
+
### Bug Fixes
|
717
|
+
|
718
|
+
* handle missing pro fields on loyalty subscription ([#352](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/352)) ([8b747a2](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/8b747a21480c298d9c36a7983011df94d318a75a))
|
719
|
+
|
720
|
+
# [1.66.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.65.0...v1.66.0) (2023-04-06)
|
721
|
+
|
722
|
+
|
723
|
+
### Features
|
724
|
+
|
725
|
+
* **autologin:** add authentication mode for analytics ([#330](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/330)) ([c4989bc](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/c4989bca985f6ca55c486356195fae691e3a2009))
|
726
|
+
|
727
|
+
# [1.65.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.64.10...v1.65.0) (2023-04-06)
|
728
|
+
|
729
|
+
|
730
|
+
### Features
|
731
|
+
|
732
|
+
* **presignup:** use custom storecode on presignup ([#290](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/290)) ([8388f83](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/8388f83e0f5d97d81a14215f44ce6e8ec34bc1aa))
|
733
|
+
|
734
|
+
## [1.64.10](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.64.9...v1.64.10) (2023-03-29)
|
735
|
+
|
736
|
+
|
737
|
+
### Bug Fixes
|
738
|
+
|
739
|
+
* **rewards:** handle move in offer reward ([#347](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/347)) ([9cb578d](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/9cb578dd6b7df278906a061f3de2f4646b822b77))
|
740
|
+
|
741
|
+
## [1.64.9](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.64.8...v1.64.9) (2023-03-16)
|
742
|
+
|
743
|
+
|
744
|
+
### Bug Fixes
|
745
|
+
|
746
|
+
* **lys:** retrieve dynamically dematerialized type from supports ([#327](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/327)) ([bfea2f7](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/bfea2f7aad644f789e6da23da526cedb4c696e5a))
|
747
|
+
|
748
|
+
## [1.64.8](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.64.7...v1.64.8) (2023-03-08)
|
749
|
+
|
750
|
+
|
751
|
+
### Bug Fixes
|
752
|
+
|
753
|
+
* add dependabot ([#336](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/336)) ([a4f6f55](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/a4f6f550d3d8bb18fd0a04857dcd893b1958aa11))
|
754
|
+
|
755
|
+
## [1.64.7](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.64.6...v1.64.7) (2023-03-07)
|
756
|
+
|
757
|
+
|
758
|
+
### Bug Fixes
|
759
|
+
|
760
|
+
* **release:** trigger release ([0c7c7f3](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/0c7c7f392fc3ccb227c18627d768f3f3e42d294d))
|
761
|
+
|
762
|
+
## [1.64.6](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.64.5...v1.64.6) (2023-03-01)
|
763
|
+
|
764
|
+
|
765
|
+
### Bug Fixes
|
766
|
+
|
767
|
+
* update lib version ([51253eb](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/51253ebd0392f1d72383f0acb88bd9fae6d933e7))
|
768
|
+
|
769
|
+
## [1.64.5](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.64.4...v1.64.5) (2023-03-01)
|
770
|
+
|
771
|
+
|
772
|
+
### Bug Fixes
|
773
|
+
|
774
|
+
* **loyalty:** return all cgu by language instead of first one ([#333](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/333)) ([bf9bc04](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/bf9bc04b294c9e6e03644c3ce7b60d3003b67ff4))
|
775
|
+
|
776
|
+
## [1.64.4](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.64.3...v1.64.4) (2023-03-01)
|
777
|
+
|
778
|
+
|
779
|
+
### Bug Fixes
|
780
|
+
|
781
|
+
* change http response status to 409 when webuser already existing ([#334](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/334)) ([0f81940](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/0f819402fe1f6fdf4d8882d6747bb06137ca633a))
|
782
|
+
|
783
|
+
## [1.64.3](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.64.2...v1.64.3) (2023-03-01)
|
784
|
+
|
785
|
+
|
786
|
+
### Bug Fixes
|
787
|
+
|
788
|
+
* remove savedLoginRequest redirect after account creation for lmes ([#332](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/332)) ([7649642](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/764964209dba7c90c741682c9b948bc0b464122c))
|
789
|
+
|
790
|
+
## [1.64.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.64.1...v1.64.2) (2023-02-20)
|
791
|
+
|
792
|
+
|
793
|
+
### Bug Fixes
|
794
|
+
|
795
|
+
* **loyalty:** add point transformation endpoint for collab ([#329](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/329)) ([749041b](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/749041ba70b43005992c2edc456988b223dcda8c))
|
796
|
+
|
797
|
+
## [1.64.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.64.0...v1.64.1) (2023-02-16)
|
798
|
+
|
799
|
+
|
800
|
+
### Bug Fixes
|
801
|
+
|
802
|
+
* update ipn lib version ([a2d72fc](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/a2d72fc72e646de5cea7e879ea8ed8fefae51868))
|
803
|
+
|
804
|
+
# [1.64.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.63.2...v1.64.0) (2023-02-16)
|
805
|
+
|
806
|
+
|
807
|
+
### Features
|
808
|
+
|
809
|
+
* **loyalty:** add point transformation feature ([#322](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/322)) ([6fbaf63](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/6fbaf63428325fb34d1f96d45939d7f3beead732))
|
810
|
+
|
811
|
+
## [1.63.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.63.1...v1.63.2) (2023-02-13)
|
812
|
+
|
813
|
+
|
814
|
+
### Bug Fixes
|
815
|
+
|
816
|
+
* **patch:** delete useless regex on firstname / lastname attributes (not compatible for all bus) ([#326](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/326)) ([a40908b](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/a40908bc12f49a0782b7af0b00cbd2d6ea68348a))
|
817
|
+
|
818
|
+
## [1.63.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.63.0...v1.63.1) (2023-02-13)
|
819
|
+
|
820
|
+
|
821
|
+
### Bug Fixes
|
822
|
+
|
823
|
+
* **loyalty:** add partnerCode attribute ([#325](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/325)) ([327fdeb](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/327fdeb70d28f8072b5884f6b2c35b6024c078f6))
|
824
|
+
|
825
|
+
# [1.63.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.62.0...v1.63.0) (2023-02-08)
|
826
|
+
|
827
|
+
|
828
|
+
### Features
|
829
|
+
|
830
|
+
* **roles:** add specific role for tempo sellers ([#311](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/311)) ([2db94e3](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/2db94e373c21165c989c4aa52429d8d9efbb9220))
|
831
|
+
|
832
|
+
# [1.62.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.61.3...v1.62.0) (2023-02-08)
|
833
|
+
|
834
|
+
|
835
|
+
### Features
|
836
|
+
|
837
|
+
* **lys:** switch to new GET available-programs ([#319](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/319)) ([1e01a04](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/1e01a043912f8e5efdf5d5160c45fccd7a1b1838))
|
838
|
+
|
839
|
+
## [1.61.3](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.61.2...v1.61.3) (2023-02-07)
|
840
|
+
|
841
|
+
|
842
|
+
### Bug Fixes
|
843
|
+
|
844
|
+
* add birthdate on search by loyalty card and lastname ([#321](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/321)) ([9dff902](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/9dff902f4e96ad6c77153891b84b32f6c71868ef))
|
845
|
+
|
846
|
+
## [1.61.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.61.1...v1.61.2) (2023-02-07)
|
847
|
+
|
848
|
+
|
849
|
+
### Bug Fixes
|
850
|
+
|
851
|
+
* **ciam:** update lib to encode query param email on CIAM GET webusers ([#320](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/320)) ([481be44](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/481be44f6563303252a05f4c80df0e55c92b7773))
|
852
|
+
|
853
|
+
## [1.61.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.61.0...v1.61.1) (2023-02-07)
|
854
|
+
|
855
|
+
|
856
|
+
### Reverts
|
857
|
+
|
858
|
+
* Revert "feat(lys): switch to new GET available-programs (#319)" ([240f596](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/240f596603f8ee76c1adf3dbfb68676983d15082)), closes [#319](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/319)
|
859
|
+
|
860
|
+
# [1.61.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.60.7...v1.61.0) (2023-02-03)
|
861
|
+
|
862
|
+
|
863
|
+
### Features
|
864
|
+
|
865
|
+
* **lys:** switch to new GET available-programs ([#319](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/319)) ([9a57ed5](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/9a57ed5c6f785a56b19bf7f10ca8b547bba8903f))
|
866
|
+
|
867
|
+
## [1.60.7](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.60.6...v1.60.7) (2023-02-03)
|
868
|
+
|
869
|
+
|
870
|
+
### Bug Fixes
|
871
|
+
|
872
|
+
* **adhesion:** don't update customer adress if streetNameNumber is empty ([#318](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/318)) ([bc7a90a](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/bc7a90a69575b910309592578fac6de8f19abe50))
|
873
|
+
|
874
|
+
## [1.60.6](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.60.5...v1.60.6) (2023-01-27)
|
875
|
+
|
876
|
+
|
877
|
+
### Bug Fixes
|
878
|
+
|
879
|
+
* **loyalty:** fix permission to generate loyalty card pdf on csa ([#317](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/317)) ([2912d04](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/2912d04b28140892423a3b1138c368c74cdd9d79))
|
880
|
+
|
881
|
+
## [1.60.5](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.60.4...v1.60.5) (2023-01-26)
|
882
|
+
|
883
|
+
|
884
|
+
### Bug Fixes
|
885
|
+
|
886
|
+
* remove cardNumber check and set to true hasLoyalty ([#315](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/315)) ([618d649](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/618d6499c82f3437c5cf56b3516df7be32c29e3d))
|
887
|
+
|
888
|
+
## [1.60.4](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.60.3...v1.60.4) (2023-01-26)
|
889
|
+
|
890
|
+
|
891
|
+
### Bug Fixes
|
892
|
+
|
893
|
+
* **customers:** allow empty consents on put customers ([#316](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/316)) ([6d1e36f](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/6d1e36fffb81b61b0c9912bca5508766b4a5e451))
|
894
|
+
|
895
|
+
## [1.60.3](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.60.2...v1.60.3) (2023-01-19)
|
896
|
+
|
897
|
+
|
898
|
+
### Bug Fixes
|
899
|
+
|
900
|
+
* use member client number for pro to check web account existence ([#314](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/314)) ([2119bae](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/2119baec34f9e6e9cf50df63cbb419194e74c1f6))
|
901
|
+
|
902
|
+
## [1.60.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.60.1...v1.60.2) (2023-01-19)
|
903
|
+
|
904
|
+
|
905
|
+
### Bug Fixes
|
906
|
+
|
907
|
+
* add web account check existence on administrativeCode check ([#313](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/313)) ([ac86f54](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/ac86f543255732c82e3441fdcdacadc71e451fb5))
|
908
|
+
|
909
|
+
## [1.60.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.60.0...v1.60.1) (2023-01-17)
|
910
|
+
|
911
|
+
|
912
|
+
### Bug Fixes
|
913
|
+
|
914
|
+
* **docker:** update docker reusable workflows version ([#67](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/67)) ([#312](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/312)) ([0f9f7cd](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/0f9f7cd5fb6f2431d4b1963d90ad5b689ffa02f4))
|
915
|
+
|
916
|
+
# [1.60.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.59.1...v1.60.0) (2023-01-10)
|
917
|
+
|
918
|
+
|
919
|
+
### Features
|
920
|
+
|
921
|
+
* **loyalty:** add endpoint to reactivate expirated targeted offers ([#306](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/306)) ([777371c](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/777371ca3702c80887f10b240c9c6bc8068db67d))
|
922
|
+
|
923
|
+
## [1.59.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.59.0...v1.59.1) (2023-01-05)
|
924
|
+
|
925
|
+
|
926
|
+
### Bug Fixes
|
927
|
+
|
928
|
+
* rework administrative identifiers ([#304](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/304)) ([4bf229a](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/4bf229ab536d6ba7f04634758682a498a2fe089b))
|
929
|
+
|
930
|
+
# [1.59.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.58.5...v1.59.0) (2023-01-05)
|
931
|
+
|
932
|
+
|
933
|
+
### Features
|
934
|
+
|
935
|
+
* add endpoints for presignup and send activation/resetPwd email ([#305](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/305)) ([f22fbc2](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/f22fbc257d39244702eb800015d81b348332ebd6))
|
936
|
+
|
937
|
+
## [1.58.5](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.58.4...v1.58.5) (2023-01-05)
|
938
|
+
|
939
|
+
|
940
|
+
### Bug Fixes
|
941
|
+
|
942
|
+
* disable autologin when email is not verified by default at creation ([#303](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/303)) ([77d55c8](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/77d55c85636bb906eeb82e5869ef3bb129603a7a))
|
943
|
+
|
944
|
+
## [1.58.4](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.58.3...v1.58.4) (2023-01-02)
|
945
|
+
|
946
|
+
|
947
|
+
### Bug Fixes
|
948
|
+
|
949
|
+
* **search:** add administrativeIdentifiers on searchResultDto ([#309](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/309)) ([5d418a9](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/5d418a969fc604edf3da1394a58c9250520374ca))
|
950
|
+
|
951
|
+
## [1.58.3](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.58.2...v1.58.3) (2022-12-22)
|
952
|
+
|
953
|
+
|
954
|
+
### Bug Fixes
|
955
|
+
|
956
|
+
* remove deprecated dependency community-profiles-api-model ([#310](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/310)) ([b03fd88](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/b03fd88383197b030f35877c9bd447a63d315f6c))
|
957
|
+
|
958
|
+
## [1.58.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.58.1...v1.58.2) (2022-12-21)
|
959
|
+
|
960
|
+
|
961
|
+
### Bug Fixes
|
962
|
+
|
963
|
+
* migrate mdm search from GET to POST endpoint ([6f499e9](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/6f499e90d10dfd91098da7e5d5b78906f203d564))
|
964
|
+
|
965
|
+
## [1.58.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.58.0...v1.58.1) (2022-12-20)
|
966
|
+
|
967
|
+
|
968
|
+
### Bug Fixes
|
969
|
+
|
970
|
+
* **mdm:** add onlyMaster param in input of search request ([#308](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/308)) ([b97e923](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/b97e923489e219e58498a742ff64088e8d50b80b))
|
971
|
+
|
972
|
+
# [1.58.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.57.2...v1.58.0) (2022-12-16)
|
973
|
+
|
974
|
+
|
975
|
+
### Features
|
976
|
+
|
977
|
+
* **customer:** add birthdate attribute for professional customers ([#307](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/307)) ([a59244f](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/a59244f6acb9bb107ad6cd94857b3faebe71ab4e))
|
978
|
+
|
979
|
+
## [1.57.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.57.1...v1.57.2) (2022-12-15)
|
980
|
+
|
981
|
+
|
982
|
+
### Bug Fixes
|
983
|
+
|
984
|
+
* **handler:** add lys targeted offer exception ([cf02c12](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/cf02c12284bf0a30bf69571897e39ac5db0d53d7))
|
985
|
+
|
986
|
+
## [1.57.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.57.0...v1.57.1) (2022-12-02)
|
987
|
+
|
988
|
+
|
989
|
+
### Bug Fixes
|
990
|
+
|
991
|
+
* **loyalty:** add dematerialized support type from configuration ([#302](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/302)) ([970c620](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/970c62074e344f6ad6ac3b86dd9f90e4e9cfb9fd))
|
992
|
+
|
993
|
+
# [1.57.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.56.8...v1.57.0) (2022-12-02)
|
994
|
+
|
995
|
+
|
996
|
+
### Features
|
997
|
+
|
998
|
+
* **administrativeIdentifers:** check webAccount existence after mdm ([#300](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/300)) ([200ca8f](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/200ca8fc1e3de696dadd97376e70d282a20118a0))
|
999
|
+
|
1000
|
+
## [1.56.8](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.56.7...v1.56.8) (2022-12-02)
|
1001
|
+
|
1002
|
+
|
1003
|
+
### Bug Fixes
|
1004
|
+
|
1005
|
+
* **ciam:** add verified email attribute on webuser creation ([#297](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/297)) ([b0483da](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/b0483dafdec0aec3586328ca11f38b18547b99a5))
|
1006
|
+
|
1007
|
+
## [1.56.7](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.56.6...v1.56.7) (2022-12-02)
|
1008
|
+
|
1009
|
+
|
1010
|
+
### Bug Fixes
|
1011
|
+
|
1012
|
+
* **check-attributes:** add lmpt attributes + clean code ([#298](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/298)) ([f62e23b](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/f62e23b78ffb165ba4e1d407a4caaf99604c7023))
|
1013
|
+
|
1014
|
+
## [1.56.6](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.56.5...v1.56.6) (2022-12-01)
|
1015
|
+
|
1016
|
+
|
1017
|
+
### Bug Fixes
|
1018
|
+
|
1019
|
+
* **presignup:** add specific error handling only for loyalty service ([#301](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/301)) ([4d1a793](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/4d1a793d2711378c2a85327bc15a9ea12bf54bbb))
|
1020
|
+
|
1021
|
+
## [1.56.5](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.56.4...v1.56.5) (2022-12-01)
|
1022
|
+
|
1023
|
+
|
1024
|
+
### Reverts
|
1025
|
+
|
1026
|
+
* Revert error handling on presignup ([1b0e7f1](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/1b0e7f10b467c5c876bdb4aa524413718c8f1f92))
|
1027
|
+
|
1028
|
+
## [1.56.4](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.56.3...v1.56.4) (2022-12-01)
|
1029
|
+
|
1030
|
+
|
1031
|
+
### Bug Fixes
|
1032
|
+
|
1033
|
+
* **presignup:** delete useless error handling added on kmcs 1826 fix ([35c4ef7](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/35c4ef7321e19ef9363acf435cd11d128b57d6fd))
|
1034
|
+
|
1035
|
+
## [1.56.3](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.56.2...v1.56.3) (2022-11-30)
|
1036
|
+
|
1037
|
+
|
1038
|
+
### Bug Fixes
|
1039
|
+
|
1040
|
+
* add missing house type values ([#299](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/299)) ([8d22746](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/8d227464829fa1fc460e5cdc5444714828b618f1))
|
1041
|
+
|
1042
|
+
## [1.56.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.56.1...v1.56.2) (2022-11-24)
|
1043
|
+
|
1044
|
+
|
1045
|
+
### Bug Fixes
|
1046
|
+
|
1047
|
+
* **checkmarx:** added checkmarx ([b642372](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/b6423722890fd06340903ddc69b4163bcd58fa3e))
|
1048
|
+
|
1049
|
+
## [1.56.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.56.0...v1.56.1) (2022-11-24)
|
1050
|
+
|
1051
|
+
|
1052
|
+
### Bug Fixes
|
1053
|
+
|
1054
|
+
* **consents:** return communicationType translations ([#296](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/296)) ([de7a029](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/de7a0292d8a1fdbdd0fa16fd2e5a9cc89b824302))
|
1055
|
+
|
1056
|
+
# [1.56.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.55.3...v1.56.0) (2022-11-23)
|
1057
|
+
|
1058
|
+
|
1059
|
+
### Features
|
1060
|
+
|
1061
|
+
* **customer:** add specific fields for lmpt ([#295](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/295)) ([e73bbc2](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/e73bbc2b564bc7d94b3152b4faff8262da4f637d))
|
1062
|
+
|
1063
|
+
## [1.55.3](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.55.2...v1.55.3) (2022-11-22)
|
1064
|
+
|
1065
|
+
|
1066
|
+
### Bug Fixes
|
1067
|
+
|
1068
|
+
* **city:** set FR BU as specific implementation ([#294](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/294)) ([6f6be9a](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/6f6be9a013c2c1e059c649c4143aa090a6b617ab))
|
1069
|
+
|
1070
|
+
## [1.55.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.55.1...v1.55.2) (2022-11-22)
|
1071
|
+
|
1072
|
+
|
1073
|
+
### Bug Fixes
|
1074
|
+
|
1075
|
+
* **lmes:** add lmes specific fields ([#292](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/292)) ([b74b833](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/b74b833fb51be79908fc358ae996ae98f7e9ac44))
|
1076
|
+
|
1077
|
+
## [1.55.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.55.0...v1.55.1) (2022-11-21)
|
1078
|
+
|
1079
|
+
|
1080
|
+
### Bug Fixes
|
1081
|
+
|
1082
|
+
* **dc:** add communicationTypes in response of available consents ([#293](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/293)) ([5410031](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/5410031263304c015a55f9da70b4627c002c1914))
|
1083
|
+
|
1084
|
+
# [1.55.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.54.1...v1.55.0) (2022-11-18)
|
1085
|
+
|
1086
|
+
|
1087
|
+
### Features
|
1088
|
+
|
1089
|
+
* **users:** add md5 and sha256 encoded login on users/me ([#291](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/291)) ([c44db64](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/c44db64ef03a43d97345b684d9f54e2e3323345a))
|
1090
|
+
|
1091
|
+
## [1.54.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.54.0...v1.54.1) (2022-10-26)
|
1092
|
+
|
1093
|
+
|
1094
|
+
### Bug Fixes
|
1095
|
+
|
1096
|
+
* handle generate loyalty card when customer has not loyalty ([#289](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/289)) ([7a01257](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/7a012571c484849cc2404b365b9c40ee9d8f4389))
|
1097
|
+
|
1098
|
+
# [1.54.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.53.2...v1.54.0) (2022-10-26)
|
1099
|
+
|
1100
|
+
|
1101
|
+
### Features
|
1102
|
+
|
1103
|
+
* **oney:** add new endpoints to subscribe credit and creditCard ([#285](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/285)) ([46ca8f6](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/46ca8f60a5ebc42321623f781a5154286fc7787f))
|
1104
|
+
|
1105
|
+
## [1.53.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.53.1...v1.53.2) (2022-10-26)
|
1106
|
+
|
1107
|
+
|
1108
|
+
### Bug Fixes
|
1109
|
+
|
1110
|
+
* **search:** sort resultList ([#287](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/287)) ([dd6664f](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/dd6664fc322efabc0737e05c6ca601b544365017))
|
1111
|
+
|
1112
|
+
## [1.53.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.53.0...v1.53.1) (2022-10-26)
|
1113
|
+
|
1114
|
+
|
1115
|
+
### Bug Fixes
|
1116
|
+
|
1117
|
+
* update lib version to fix diyLevel enum ([#288](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/288)) ([c5ce5e7](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/c5ce5e7dc3647168c848a4455ed10082e347136c))
|
1118
|
+
|
1119
|
+
# [1.53.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.52.1...v1.53.0) (2022-10-24)
|
1120
|
+
|
1121
|
+
|
1122
|
+
### Features
|
1123
|
+
|
1124
|
+
* **lys:** update getavailableprogram call ([#284](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/284)) ([1717338](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/171733868331a90afcf37571ca7688cc6f27fc0d))
|
1125
|
+
|
1126
|
+
## [1.52.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.52.0...v1.52.1) (2022-10-24)
|
1127
|
+
|
1128
|
+
|
1129
|
+
### Bug Fixes
|
1130
|
+
|
1131
|
+
* **lmes:** add specific legalForm ([#286](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/286)) ([a72db81](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/a72db810f324cd6d55176daf69c17cd1f56788a2))
|
1132
|
+
|
1133
|
+
# [1.52.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.51.1...v1.52.0) (2022-10-19)
|
1134
|
+
|
1135
|
+
|
1136
|
+
### Features
|
1137
|
+
|
1138
|
+
* **lmes:** add specific data and consents ([#283](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/283)) ([bb07baf](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/bb07bafd629b3cc4de3fec89c8aeab6d4f846e97))
|
1139
|
+
|
1140
|
+
## [1.51.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.51.0...v1.51.1) (2022-10-18)
|
1141
|
+
|
1142
|
+
|
1143
|
+
### Bug Fixes
|
1144
|
+
|
1145
|
+
* **lib:** upgrade lib version ([6443839](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/64438392685b07083fe087ed5c68419d0e003ed5))
|
1146
|
+
|
1147
|
+
# [1.51.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.50.3...v1.51.0) (2022-10-18)
|
1148
|
+
|
1149
|
+
|
1150
|
+
### Features
|
1151
|
+
|
1152
|
+
* **token:** patch credit card ([#282](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/282)) ([263dd17](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/263dd17efed2b81dcc9f8f9a828dde09fc7753fa))
|
1153
|
+
|
1154
|
+
## [1.50.3](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.50.2...v1.50.3) (2022-10-13)
|
1155
|
+
|
1156
|
+
|
1157
|
+
### Bug Fixes
|
1158
|
+
|
1159
|
+
* **email:** fix patch email when acount doesnt have existing email ([#281](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/281)) ([f9d8e66](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/f9d8e66a29af1f2699c445bb62a59eb4f9ba7211))
|
1160
|
+
|
1161
|
+
## [1.50.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.50.1...v1.50.2) (2022-10-11)
|
1162
|
+
|
1163
|
+
|
1164
|
+
### Bug Fixes
|
1165
|
+
|
1166
|
+
* **loyality:** use account status instead of card status ([#279](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/279)) ([862d58e](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/862d58e0ee566ed0df402e8a5e3ae5272a4dd99b))
|
1167
|
+
|
1168
|
+
## [1.50.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.50.0...v1.50.1) (2022-10-10)
|
1169
|
+
|
1170
|
+
|
1171
|
+
### Bug Fixes
|
1172
|
+
|
1173
|
+
* **loyalty:** fix check on housing pass ([#280](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/280)) ([0f98660](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/0f98660aaafb2de55c863973fc801cb61905376a))
|
1174
|
+
|
1175
|
+
# [1.50.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.49.2...v1.50.0) (2022-10-10)
|
1176
|
+
|
1177
|
+
|
1178
|
+
### Features
|
1179
|
+
|
1180
|
+
* **webuser:** add enpoint to presignup webuser for existing accounts ([#277](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/277)) ([d4ce030](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/d4ce030d21d3482eb005ec1f944ac3db93f295c1))
|
1181
|
+
|
1182
|
+
## [1.49.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.49.1...v1.49.2) (2022-10-05)
|
1183
|
+
|
1184
|
+
|
1185
|
+
### Bug Fixes
|
1186
|
+
|
1187
|
+
* **bind-webuser:** clean code ([#278](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/278)) ([0364d01](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/0364d017c5f1a97bb490c2bf9a26c0beb8b18b4f))
|
1188
|
+
|
1189
|
+
## [1.49.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.49.0...v1.49.1) (2022-09-28)
|
1190
|
+
|
1191
|
+
|
1192
|
+
### Bug Fixes
|
1193
|
+
|
1194
|
+
* **loyalty:** remove customer check on getAvailablePrograms when authent ([#276](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/276)) ([a05ca7f](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/a05ca7fdfcc987601a7bad27c514b2a030e42f7e))
|
1195
|
+
|
1196
|
+
# [1.49.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.48.2...v1.49.0) (2022-09-20)
|
1197
|
+
|
1198
|
+
|
1199
|
+
### Features
|
1200
|
+
|
1201
|
+
* add nbOfFamilyMembers field ([#275](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/275)) ([3a054df](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/3a054dfebe72ca4fa3f5517d59590af6fe221016))
|
1202
|
+
|
1203
|
+
## [1.48.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.48.1...v1.48.2) (2022-09-19)
|
1204
|
+
|
1205
|
+
|
1206
|
+
### Bug Fixes
|
1207
|
+
|
1208
|
+
* **history:** add operation attribute ([#274](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/274)) ([340b754](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/340b754d1caae4a8ac8bf77080fc16b72cbffdc3))
|
1209
|
+
|
1210
|
+
## [1.48.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.48.0...v1.48.1) (2022-09-07)
|
1211
|
+
|
1212
|
+
|
1213
|
+
### Bug Fixes
|
1214
|
+
|
1215
|
+
* **loyalty:** add migration state field ([#273](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/273)) ([7054a0e](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/7054a0e7fac088c83a13a309ae27f891b9a5ea46))
|
1216
|
+
|
1217
|
+
# [1.48.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.47.0...v1.48.0) (2022-09-07)
|
1218
|
+
|
1219
|
+
|
1220
|
+
### Features
|
1221
|
+
|
1222
|
+
* **customer:** add enpoint to get customer history ([#254](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/254)) ([55dc5f6](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/55dc5f636f4b7f41d890c1271b05666d0e08332e))
|
1223
|
+
|
1224
|
+
# [1.47.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.46.1...v1.47.0) (2022-09-07)
|
1225
|
+
|
1226
|
+
|
1227
|
+
### Features
|
1228
|
+
|
1229
|
+
* **targetedOffer:** add targeted offer endpoints ([#268](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/268)) ([5ac7696](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/5ac7696c2ef4a7c5196bf6186615e3dc15db3f9e))
|
1230
|
+
|
1231
|
+
## [1.46.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.46.0...v1.46.1) (2022-08-31)
|
1232
|
+
|
1233
|
+
|
1234
|
+
### Bug Fixes
|
1235
|
+
|
1236
|
+
* add pattern validation on zipCode param in getCities endpoint ([#272](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/272)) ([e3f574a](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/e3f574a14080adcce08fbb3643e0ef703b27e657))
|
1237
|
+
|
1238
|
+
# [1.46.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.45.1...v1.46.0) (2022-08-31)
|
1239
|
+
|
1240
|
+
|
1241
|
+
### Features
|
1242
|
+
|
1243
|
+
* add addresse helpers and split getCity BU impl ([#266](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/266)) ([429209a](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/429209a39f446b534455f0e0ed43b969734cba67))
|
1244
|
+
|
1245
|
+
## [1.45.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.45.0...v1.45.1) (2022-08-29)
|
1246
|
+
|
1247
|
+
|
1248
|
+
### Bug Fixes
|
1249
|
+
|
1250
|
+
* add trim on lastName in searchCustomerByLastNameAndId ([#271](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/271)) ([1f1e2dc](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/1f1e2dc6d845671dcbb75cd2cdc6c77c9903856f))
|
1251
|
+
|
1252
|
+
# [1.45.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.44.1...v1.45.0) (2022-08-26)
|
1253
|
+
|
1254
|
+
|
1255
|
+
### Features
|
1256
|
+
|
1257
|
+
* add CRUD for nbOfChildren,maritalStatus,activitySector on account ([#265](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/265)) ([fa3a233](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/fa3a233d5b384a789a455ee7a0f7ff5efd25670e))
|
1258
|
+
|
1259
|
+
## [1.44.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.44.0...v1.44.1) (2022-08-19)
|
1260
|
+
|
1261
|
+
|
1262
|
+
### Bug Fixes
|
1263
|
+
|
1264
|
+
* add ConnectException handling ([#267](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/267)) ([72b6977](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/72b6977f074574e5fdbc2c8a807210d5ba65b2a0))
|
1265
|
+
|
1266
|
+
# [1.44.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.43.0...v1.44.0) (2022-08-09)
|
1267
|
+
|
1268
|
+
|
1269
|
+
### Features
|
1270
|
+
|
1271
|
+
* **dq:** add retry on getCitiesByZipCode ([#264](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/264)) ([7003ccc](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/7003ccc0d10b8eda21d669c355453b9bd3c0061d))
|
1272
|
+
|
1273
|
+
# [1.43.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.42.0...v1.43.0) (2022-08-05)
|
1274
|
+
|
1275
|
+
|
1276
|
+
### Features
|
1277
|
+
|
1278
|
+
* add redirect after account creation from savedLoginRequest cookie ([#263](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/263)) ([2abdd19](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/2abdd19bcddeccd3e4db05c8f7c763fc93aad1b2))
|
1279
|
+
|
1280
|
+
# [1.42.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.41.0...v1.42.0) (2022-07-29)
|
1281
|
+
|
1282
|
+
|
1283
|
+
### Features
|
1284
|
+
|
1285
|
+
* revert add activity sector management ([1926e72](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/1926e727ed344c6dc2c6fe8dae05f8363f1ccb86))
|
1286
|
+
|
1287
|
+
# [1.41.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.40.1...v1.41.0) (2022-07-29)
|
1288
|
+
|
1289
|
+
|
1290
|
+
### Features
|
1291
|
+
|
1292
|
+
* add activity sector management ([56f30b7](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/56f30b7c5d4277fb477f2fa0736f3e45374a4803))
|
1293
|
+
|
1294
|
+
## [1.40.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.40.0...v1.40.1) (2022-07-28)
|
1295
|
+
|
1296
|
+
|
1297
|
+
### Bug Fixes
|
1298
|
+
|
1299
|
+
* **webaccount:** check if webAccount has password to deteminate his status ([#262](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/262)) ([6c87b22](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/6c87b22bbcb45782e028da6dbffc8fa72375befa))
|
1300
|
+
|
1301
|
+
# [1.40.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.39.3...v1.40.0) (2022-07-26)
|
1302
|
+
|
1303
|
+
|
1304
|
+
### Features
|
1305
|
+
|
1306
|
+
* **cookie:** set cookie for elo + refactor on cookie service + fix error handling on ciam / put addresses + clean code ([#260](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/260)) ([1c8f924](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/1c8f9246673a62f494984e8325a7e280a0d179dc))
|
1307
|
+
|
1308
|
+
## [1.39.3](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.39.2...v1.39.3) (2022-07-19)
|
1309
|
+
|
1310
|
+
|
1311
|
+
### Bug Fixes
|
1312
|
+
|
1313
|
+
* fix npe when userId from Kobi.jwt is null ([#259](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/259)) ([9f64634](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/9f646342b3713a161fde7f476fbfe7c6e6e69a30))
|
1314
|
+
|
1315
|
+
## [1.39.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.39.1...v1.39.2) (2022-07-12)
|
1316
|
+
|
1317
|
+
|
1318
|
+
### Bug Fixes
|
1319
|
+
|
1320
|
+
* **validation:** filter error message to display relevant information ([#258](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/258)) ([cd4c04c](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/cd4c04cd19d1b2df54368e316970a83c6356b05f))
|
1321
|
+
|
1322
|
+
## [1.39.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.39.0...v1.39.1) (2022-07-08)
|
1323
|
+
|
1324
|
+
|
1325
|
+
### Bug Fixes
|
1326
|
+
|
1327
|
+
* **oney:** delete unused variable to clean config ([#249](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/249)) ([9dff55e](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/9dff55e90990f2b151673ea8426f52374fc37d55))
|
1328
|
+
|
1329
|
+
# [1.39.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.38.1...v1.39.0) (2022-07-05)
|
1330
|
+
|
1331
|
+
|
1332
|
+
### Features
|
1333
|
+
|
1334
|
+
* **getStores:** add ray parameter to filter stores around ([#251](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/251)) ([ea53311](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/ea5331199fcd5d351ca5634105339576496d779a))
|
1335
|
+
|
1336
|
+
## [1.38.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.38.0...v1.38.1) (2022-06-30)
|
1337
|
+
|
1338
|
+
|
1339
|
+
### Bug Fixes
|
1340
|
+
|
1341
|
+
* **mdm:** remove lowercase value for some MDM enum ([#253](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/253)) ([e35fc8e](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/e35fc8e8713054f4d58bf8d56b6740d2843f3f5d))
|
1342
|
+
|
1343
|
+
# [1.38.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.37.0...v1.38.0) (2022-06-30)
|
1344
|
+
|
1345
|
+
|
1346
|
+
### Features
|
1347
|
+
|
1348
|
+
* **lmit:** implement lmit (data/consents) ([#252](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/252)) ([59c10cc](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/59c10cc9e796f66762aed183ac20fc820a9b506f)), closes [#91](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/91)
|
1349
|
+
|
1350
|
+
# [1.37.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.36.0...v1.37.0) (2022-06-17)
|
1351
|
+
|
1352
|
+
|
1353
|
+
### Features
|
1354
|
+
|
1355
|
+
* **optin:** Add optin digitalDocumentsPreferences from MDM ([#220](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/220)) ([f86fa41](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/f86fa41fb3cbb998fce15c3182f16308c7a47d4e))
|
1356
|
+
|
1357
|
+
# [1.36.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.35.3...v1.36.0) (2022-06-08)
|
1358
|
+
|
1359
|
+
|
1360
|
+
### Features
|
1361
|
+
|
1362
|
+
* **ci:** build release tag ([dce2ac2](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/dce2ac282b5cf2f2a7b2c21b5db8f9c19613fa22))
|
1363
|
+
|
1364
|
+
## [1.35.3](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.35.2...v1.35.3) (2022-06-03)
|
1365
|
+
|
1366
|
+
|
1367
|
+
### Bug Fixes
|
1368
|
+
|
1369
|
+
* **loyalty:** take in account cgu startDate to take older one ([#246](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/246)) ([1dc22d1](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/1dc22d1814628eb2a861c3b64848dfe58caa0a8d))
|
1370
|
+
|
1371
|
+
## [1.35.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.35.1...v1.35.2) (2022-05-23)
|
1372
|
+
|
1373
|
+
|
1374
|
+
### Bug Fixes
|
1375
|
+
|
1376
|
+
* **npe:** handle null case for mdm user phones ([#244](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/244)) ([a6d8ba5](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/a6d8ba515bf8f50f4bc0d8b0aeb2a7101de7d898))
|
1377
|
+
|
1378
|
+
## [1.35.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.35.0...v1.35.1) (2022-05-20)
|
1379
|
+
|
1380
|
+
|
1381
|
+
### Bug Fixes
|
1382
|
+
|
1383
|
+
* **security:** add email validations ([#241](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/241)) ([f269f38](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/f269f38f4cc09960965985a6a3016821fd4c72e3))
|
1384
|
+
|
1385
|
+
# [1.35.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.34.1...v1.35.0) (2022-05-19)
|
1386
|
+
|
1387
|
+
|
1388
|
+
### Features
|
1389
|
+
|
1390
|
+
* **migration:** migrate to community profile v3 ([#228](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/228)) ([97b1456](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/97b145657e7f4d06381a13d3ede35ee7d20a5888))
|
1391
|
+
|
1392
|
+
## [1.34.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.34.0...v1.34.1) (2022-05-18)
|
1393
|
+
|
1394
|
+
|
1395
|
+
### Bug Fixes
|
1396
|
+
|
1397
|
+
* **oney:** ldap instead of store code ([#239](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/239)) ([9fd65c5](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/9fd65c5f4ec998eb0f9cc2e2e0c9f723dd228bd2))
|
1398
|
+
|
1399
|
+
# [1.34.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.33.0...v1.34.0) (2022-05-17)
|
1400
|
+
|
1401
|
+
|
1402
|
+
### Features
|
1403
|
+
|
1404
|
+
* **oney:** add funding ([9cd2ca1](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/9cd2ca1d535629c3dcc4bf3dcfa736cf44f8b1ef))
|
1405
|
+
|
1406
|
+
# [1.33.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.32.1...v1.33.0) (2022-05-12)
|
1407
|
+
|
1408
|
+
|
1409
|
+
### Features
|
1410
|
+
|
1411
|
+
* **users:** add storeCode on users/me ([#236](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/236)) ([7013248](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/70132485d892567103711f9d23bff702e20fa40c))
|
1412
|
+
|
1413
|
+
## [1.32.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.32.0...v1.32.1) (2022-05-09)
|
1414
|
+
|
1415
|
+
|
1416
|
+
### Bug Fixes
|
1417
|
+
|
1418
|
+
* fix npe on getAvailableLoyaltyProgramsFor ([#232](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/232)) ([db481dd](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/db481dd4a285b6cc4ed6dbe9569ec04d31ddf4a9))
|
1419
|
+
|
1420
|
+
# [1.32.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.31.12...v1.32.0) (2022-05-09)
|
1421
|
+
|
1422
|
+
|
1423
|
+
### Features
|
1424
|
+
|
1425
|
+
* **creation:** check on ciam ([b6a8aee](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/b6a8aee46760b9cb41e7699fb782f1c2d52d496f))
|
1426
|
+
|
1427
|
+
## [1.31.12](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.31.11...v1.31.12) (2022-05-09)
|
1428
|
+
|
1429
|
+
|
1430
|
+
### Bug Fixes
|
1431
|
+
|
1432
|
+
* **error:** add handler to CustomerOrchestrationV2ClientException exception ([#233](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/233)) ([aafa5a3](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/aafa5a3ed82878ebee54c1d8298d456b259ce883))
|
1433
|
+
|
1434
|
+
## [1.31.11](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.31.10...v1.31.11) (2022-05-04)
|
1435
|
+
|
1436
|
+
|
1437
|
+
### Bug Fixes
|
1438
|
+
|
1439
|
+
* **dep:** update ipn team dep + fix error caused by update ([#234](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/234)) ([4415653](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/4415653994448a65b2c588bc9d4b6d3d3025f2e3))
|
1440
|
+
|
1441
|
+
## [1.31.10](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.31.9...v1.31.10) (2022-05-02)
|
1442
|
+
|
1443
|
+
|
1444
|
+
### Bug Fixes
|
1445
|
+
|
1446
|
+
* fix npe on update phone method ([#231](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/231)) ([bbc99aa](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/bbc99aa450f1916e3b3b9abbed603a0588779e23))
|
1447
|
+
|
1448
|
+
## [1.31.9](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.31.8...v1.31.9) (2022-04-28)
|
1449
|
+
|
1450
|
+
|
1451
|
+
### Bug Fixes
|
1452
|
+
|
1453
|
+
* **company:** use customerId instead of companyId when patch on MDM ([#229](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/229)) ([f943b8a](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/f943b8a75d4eb516e3c7d3904444f9a3c90b6156))
|
1454
|
+
|
1455
|
+
## [1.31.8](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.31.7...v1.31.8) (2022-04-28)
|
1456
|
+
|
1457
|
+
|
1458
|
+
### Bug Fixes
|
1459
|
+
|
1460
|
+
* **consents:** add log for invalid token ([#230](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/230)) ([9094eb0](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/9094eb0a5a0c803480211411045dcebb652b306d))
|
1461
|
+
|
1462
|
+
## [1.31.7](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.31.6...v1.31.7) (2022-04-28)
|
1463
|
+
|
1464
|
+
|
1465
|
+
### Bug Fixes
|
1466
|
+
|
1467
|
+
* **sonar:** fix some sonar alerts ([#224](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/224)) ([2a18eb7](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/2a18eb782d7c78267018a65b70e6120da4399633))
|
1468
|
+
|
1469
|
+
## [1.31.6](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.31.5...v1.31.6) (2022-04-27)
|
1470
|
+
|
1471
|
+
|
1472
|
+
### Bug Fixes
|
1473
|
+
|
1474
|
+
* **consents:** handle spring validation exceptions ([#227](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/227)) ([88b4b59](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/88b4b59b713b7cb54dddf0e2ced84f6de95ac198))
|
1475
|
+
|
1476
|
+
## [1.31.5](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.31.4...v1.31.5) (2022-04-26)
|
1477
|
+
|
1478
|
+
|
1479
|
+
### Bug Fixes
|
1480
|
+
|
1481
|
+
* **loyalty:** change error message check ([#226](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/226)) ([2f2b5f1](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/2f2b5f1ee88678a8b751ae0539dc1293b63ede94))
|
1482
|
+
|
1483
|
+
## [1.31.4](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.31.3...v1.31.4) (2022-04-26)
|
1484
|
+
|
1485
|
+
|
1486
|
+
### Bug Fixes
|
1487
|
+
|
1488
|
+
* **error:** check if error message is empty ([#225](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/225)) ([1f7ff12](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/1f7ff1201adf95f26707901fccf38a36cc94f286))
|
1489
|
+
|
1490
|
+
## [1.31.3](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.31.2...v1.31.3) (2022-04-19)
|
1491
|
+
|
1492
|
+
|
1493
|
+
### Bug Fixes
|
1494
|
+
|
1495
|
+
* **putCustomer:** fix method when updating email or phones on profess… ([#221](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/221)) ([76051c4](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/76051c4bdea66d21f661baa87f257204a083b87b))
|
1496
|
+
|
1497
|
+
## [1.31.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.31.1...v1.31.2) (2022-04-15)
|
1498
|
+
|
1499
|
+
|
1500
|
+
### Bug Fixes
|
1501
|
+
|
1502
|
+
* **legalForm:** Fix legalForm equals check between Enum and String ([#222](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/222)) ([3bdad68](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/3bdad689c23fba7de4a3e81c02e9fb89a3da7601))
|
1503
|
+
|
1504
|
+
# [1.30.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.29.0...v1.30.0) (2022-04-12)
|
1505
|
+
|
1506
|
+
|
1507
|
+
### Features
|
1508
|
+
|
1509
|
+
* **mdm:** send accessToken when calling mdmClient ([#217](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/217)) ([c092e25](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/c092e255c82118dea38d781416159ca9747bba76))
|
1510
|
+
|
1511
|
+
# [1.29.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.28.0...v1.29.0) (2022-04-12)
|
1512
|
+
|
1513
|
+
|
1514
|
+
### Features
|
1515
|
+
|
1516
|
+
* **loyalty:** set default storeCode when searching loyalty available progams for customer ([#218](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/218)) ([ec12add](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/ec12add68e92d2f84b213363caca580253d1804d))
|
1517
|
+
|
1518
|
+
# [1.28.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.27.3...v1.28.0) (2022-04-12)
|
1519
|
+
|
1520
|
+
|
1521
|
+
### Features
|
1522
|
+
|
1523
|
+
* mapping orchestrator signUpCustomer errors ([#211](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/211)) ([00cb53c](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/00cb53c8de26aaba846cb2712347882ecd414150))
|
1524
|
+
|
1525
|
+
## [1.27.3](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.27.2...v1.27.3) (2022-04-08)
|
1526
|
+
|
1527
|
+
|
1528
|
+
### Bug Fixes
|
1529
|
+
|
1530
|
+
* **webuser:** delete password check when determinating webaccount status ([#214](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/214)) ([cc6840c](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/cc6840cc2c3c47bbf79e2c8a112b2573833fce79))
|
1531
|
+
|
1532
|
+
## [1.27.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.27.0...v1.27.1) (2022-04-05)
|
1533
|
+
|
1534
|
+
|
1535
|
+
### Bug Fixes
|
1536
|
+
|
1537
|
+
* **ipn-clients:** upgrade lib version ([#213](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/213)) ([12c1153](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/12c1153aa8c1ee8cd87bb923f96b7defd8acf5a1))
|
1538
|
+
|
1539
|
+
# [1.27.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.26.0...v1.27.0) (2022-04-01)
|
1540
|
+
|
1541
|
+
|
1542
|
+
### Features
|
1543
|
+
|
1544
|
+
* **password:** check password before update ([#202](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/202)) ([1990e76](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/1990e76d4f3cfc7c49d2108c73f60a556ca16b83))
|
1545
|
+
|
1546
|
+
# [1.26.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.25.0...v1.26.0) (2022-04-01)
|
1547
|
+
|
1548
|
+
|
1549
|
+
### Features
|
1550
|
+
|
1551
|
+
* add feature flipping for usage of community ([#201](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/201)) ([d5fa575](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/d5fa575d4f737c13cf644d5f50dce81fae4fb247)), closes [#183](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/183)
|
1552
|
+
|
1553
|
+
# [1.25.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.24.2...v1.25.0) (2022-03-30)
|
1554
|
+
|
1555
|
+
|
1556
|
+
### Features
|
1557
|
+
|
1558
|
+
* log error 403 ([#209](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/209)) ([30bb825](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/30bb8253c07a756ed404f96fc54f28f907ed81c8))
|
1559
|
+
|
1560
|
+
## [1.24.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.24.0...v1.24.1) (2022-03-24)
|
1561
|
+
|
1562
|
+
|
1563
|
+
### Reverts
|
1564
|
+
|
1565
|
+
* Revert "fix(loyalty) : call new LYS endpoint to fix available program for remembership (#205)" ([0fbb662](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/0fbb6629ae97ac11e983176e3c7fdfee16ca5f99)), closes [#205](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/205)
|
1566
|
+
|
1567
|
+
# [1.24.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.23.2...v1.24.0) (2022-03-24)
|
1568
|
+
|
1569
|
+
|
1570
|
+
### Features
|
1571
|
+
|
1572
|
+
* **mail:** patch mdm mail & ciam mail ([#207](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/207)) ([9f2eee0](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/9f2eee0377bf61c101e8f377a2b4f12d2a9c2db7))
|
1573
|
+
|
1574
|
+
# Changelog
|
1575
|
+
|
1576
|
+
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.
|
1577
|
+
|
1578
|
+
### [1.22.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.22.1...v1.22.2) (2022-03-17)
|
1579
|
+
|
1580
|
+
|
1581
|
+
### Bug Fixes
|
1582
|
+
|
1583
|
+
* **mail:** fix update login mail ([#200](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/200)) ([134f8e5](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/134f8e5bcc314caf12450b4704766410e60d039f))
|
1584
|
+
|
1585
|
+
### [1.22.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.22.0...v1.22.1) (2022-03-17)
|
1586
|
+
|
1587
|
+
|
1588
|
+
### Features
|
1589
|
+
|
1590
|
+
* **mail:** update mdm main mail ([#199](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/199)) ([7e64e05](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/7e64e05299a8ae20427ce437e59af9f89478c775))
|
1591
|
+
|
1592
|
+
## [1.22.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.21.0...v1.22.0) (2022-03-17)
|
1593
|
+
|
1594
|
+
|
1595
|
+
### Features
|
1596
|
+
|
1597
|
+
* **login:** update login email ([#198](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/198)) ([68082ac](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/68082acdc605dd8f22c3271a0de8f04e9c9010a3))
|
1598
|
+
|
1599
|
+
## [1.21.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.20.1...v1.21.0) (2022-03-16)
|
1600
|
+
|
1601
|
+
### [1.20.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.20.0...v1.20.1) (2022-03-15)
|
1602
|
+
|
1603
|
+
|
1604
|
+
### Features
|
1605
|
+
|
1606
|
+
* **countries:** add list of countries ([#194](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/194)) ([a5809b0](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/a5809b065838961df4d809a72335e5fef3585445))
|
1607
|
+
|
1608
|
+
## [1.20.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.19.1...v1.20.0) (2022-03-11)
|
1609
|
+
|
1610
|
+
### [1.19.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.19.0...v1.19.1) (2022-03-10)
|
1611
|
+
|
1612
|
+
|
1613
|
+
### Features
|
1614
|
+
|
1615
|
+
* **lys:** add status ([#195](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/195)) ([d247e81](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/d247e81275c91f9b0b08559e62131c9227c776bb))
|
1616
|
+
|
1617
|
+
## [1.19.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.18.7...v1.19.0) (2022-03-08)
|
1618
|
+
|
1619
|
+
|
1620
|
+
### Features
|
1621
|
+
|
1622
|
+
* **presignup:** check user permissions when email is empty on create request ([#182](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/182)) ([1c1bc28](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/1c1bc280d24b20ff35b047ea218eda92cd1aa2b1))
|
1623
|
+
|
1624
|
+
### [1.18.7](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.18.6...v1.18.7) (2022-03-07)
|
1625
|
+
|
1626
|
+
### [1.18.6](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.18.5...v1.18.6) (2022-03-07)
|
1627
|
+
|
1628
|
+
|
1629
|
+
### Features
|
1630
|
+
|
1631
|
+
* **loyalty:** extract lys client to ipn-team-clients library ([#186](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/186)) ([8a8f7f1](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/8a8f7f10fe1c3d88fc69c7dde9e439c47162988c))
|
1632
|
+
|
1633
|
+
### [1.18.5](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.18.4...v1.18.5) (2022-03-04)
|
1634
|
+
|
1635
|
+
|
1636
|
+
### Features
|
1637
|
+
|
1638
|
+
* **orchestration:** switch to ipn team client ([#184](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/184)) ([f4abfd7](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/f4abfd7ca077e5a55b8ac31135acefa9fb925875))
|
1639
|
+
|
1640
|
+
### [1.18.4](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.18.3...v1.18.4) (2022-03-04)
|
1641
|
+
|
1642
|
+
|
1643
|
+
### Bug Fixes
|
1644
|
+
|
1645
|
+
* **patch:** remove useless patchObjectMapper and use PatchObject from… ([#193](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/193)) ([596a565](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/596a56569c38e77c49aa4717a14e62a1456cb2c1))
|
1646
|
+
|
1647
|
+
### [1.18.3](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.18.2...v1.18.3) (2022-03-02)
|
1648
|
+
|
1649
|
+
### [1.18.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.18.1...v1.18.2) (2022-03-01)
|
1650
|
+
|
1651
|
+
|
1652
|
+
### Bug Fixes
|
1653
|
+
|
1654
|
+
* **dep:** update ipn team dependency ([#189](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/189)) ([01aca52](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/01aca52d60b285456bf20fdb3d0ff37b4f84d283))
|
1655
|
+
|
1656
|
+
### [1.18.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.18.0...v1.18.1) (2022-02-28)
|
1657
|
+
|
1658
|
+
## [1.18.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.17.0...v1.18.0) (2022-02-28)
|
1659
|
+
|
1660
|
+
|
1661
|
+
### Features
|
1662
|
+
|
1663
|
+
* **migration:** migration to ipn team client ([#176](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/176)) ([def923b](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/def923b7c88ae45d694e442092b86e2a922d7e41))
|
1664
|
+
|
1665
|
+
## [1.17.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.16.2...v1.17.0) (2022-02-24)
|
1666
|
+
|
1667
|
+
### [1.16.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.16.1...v1.16.2) (2022-02-23)
|
1668
|
+
|
1669
|
+
### [1.16.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.16.0...v1.16.1) (2022-02-23)
|
1670
|
+
|
1671
|
+
|
1672
|
+
### Features
|
1673
|
+
|
1674
|
+
* **split:** change jfrog registry and use variable for vault namespace ([#183](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/183)) ([8e9b202](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/8e9b202655321d94b4b39c56442e6e647544bee3))
|
1675
|
+
|
1676
|
+
## [1.16.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.15.0...v1.16.0) (2022-02-22)
|
1677
|
+
|
1678
|
+
## [1.15.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.14.18...v1.15.0) (2022-02-16)
|
1679
|
+
|
1680
|
+
|
1681
|
+
### Features
|
1682
|
+
|
1683
|
+
* **get-customer:** add additional webuser information ([#171](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/171)) ([f28fa6b](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/f28fa6b81c5f216b65843f8d7624f007fd44a758))
|
1684
|
+
* **loyalty-pdf:** add pdf for new loyalty + delete useless mdm call ([#169](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/169)) ([1bdb2ac](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/1bdb2ac568cd589b848e04b0dab08411d9f24c8a))
|
1685
|
+
|
1686
|
+
### [1.14.18](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.14.17...v1.14.18) (2022-02-16)
|
1687
|
+
|
1688
|
+
|
1689
|
+
### Features
|
1690
|
+
|
1691
|
+
* dynamize loyalty ([#165](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/165)) ([637161a](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/637161a8254d43b5b6fc43e4315c9259d0f4c760))
|
1692
|
+
|
1693
|
+
|
1694
|
+
### Bug Fixes
|
1695
|
+
|
1696
|
+
* **dcp:** use string instead of int for customerId ([#170](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/170)) ([ed9881a](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/ed9881a44f5ebd535882f243fde8d6d2b89fc6f4))
|
1697
|
+
|
1698
|
+
### [1.14.17](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.14.16...v1.14.17) (2022-02-11)
|
1699
|
+
|
1700
|
+
|
1701
|
+
### Features
|
1702
|
+
|
1703
|
+
* **housingpass:** disable if store in config ([#166](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/166)) ([0243dcc](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/0243dcc081101fa06ff1b683a0164390d753c2f6))
|
1704
|
+
|
1705
|
+
### [1.14.16](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.14.15...v1.14.16) (2022-02-11)
|
1706
|
+
|
1707
|
+
|
1708
|
+
### Features
|
1709
|
+
|
1710
|
+
* **presignup:** create mdm customer without web account pre-creation… ([#167](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/167)) ([e675ae7](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/e675ae7f6aa3d382ffdd502ff251ae60ca25087f))
|
1711
|
+
|
1712
|
+
### [1.14.15](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.14.14...v1.14.15) (2022-02-03)
|
1713
|
+
|
1714
|
+
|
1715
|
+
### Features
|
1716
|
+
|
1717
|
+
* **customer:** Endpoint to disable client + search disabled clients ([#159](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/159)) ([b1edf2d](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/b1edf2d5b9cdde518c6e67a5d11c9392941fc3cc))
|
1718
|
+
|
1719
|
+
### [1.14.14](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.14.13...v1.14.14) (2022-02-01)
|
1720
|
+
|
1721
|
+
|
1722
|
+
### Bug Fixes
|
1723
|
+
|
1724
|
+
* **npe:** fix npe on addressesMapper ([#164](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/164)) ([5ab08cd](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/5ab08cd8a65fe8f17f75b6d94df1dc96a489f8d4))
|
1725
|
+
|
1726
|
+
### [1.14.13](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.14.12...v1.14.13) (2022-01-31)
|
1727
|
+
|
1728
|
+
|
1729
|
+
### Bug Fixes
|
1730
|
+
|
1731
|
+
* set membership fee to pay to 0 if var is not present ([c9048cd](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/c9048cda4a95d050af36e262f8bbcdb7058b9cfe))
|
1732
|
+
|
1733
|
+
### [1.14.12](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.14.11...v1.14.12) (2022-01-28)
|
1734
|
+
|
1735
|
+
|
1736
|
+
### Features
|
1737
|
+
|
1738
|
+
* use lys loyalty attributes to build pdf ([#163](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/163)) ([1278477](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/1278477d00d69088070ef241629f99d9ce6aa5c6))
|
1739
|
+
|
1740
|
+
### [1.14.11](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.14.10...v1.14.11) (2022-01-25)
|
1741
|
+
|
1742
|
+
|
1743
|
+
### Bug Fixes
|
1744
|
+
|
1745
|
+
* **address:** main address to false when changing ([#161](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/161)) ([d03651c](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/d03651cfa1728a0b12175f8d2fddfe53725d5fa8))
|
1746
|
+
* update javadoc ([cdfdd38](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/cdfdd38ca8a81344e3827178c164788303ab31ae))
|
1747
|
+
|
1748
|
+
### [1.14.10](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.14.9...v1.14.10) (2022-01-20)
|
1749
|
+
|
1750
|
+
### [1.14.9](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.14.8...v1.14.9) (2022-01-19)
|
1751
|
+
|
1752
|
+
|
1753
|
+
### Bug Fixes
|
1754
|
+
|
1755
|
+
* url decoding problem on spring controller ([#157](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/157)) ([c2d125e](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/c2d125e0f756cbb19d86c3d2efb0b68df6ecb44a))
|
1756
|
+
|
1757
|
+
### [1.14.8](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.14.7...v1.14.8) (2022-01-19)
|
1758
|
+
|
1759
|
+
|
1760
|
+
### Features
|
1761
|
+
|
1762
|
+
* **customer/me:** add label from Lys ([#155](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/155)) ([5d3602a](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/5d3602a0a64f63f351bc54b4e05c464151208cab))
|
1763
|
+
|
1764
|
+
### [1.14.7](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.14.6...v1.14.7) (2022-01-18)
|
1765
|
+
|
1766
|
+
|
1767
|
+
### Bug Fixes
|
1768
|
+
|
1769
|
+
* **consents:** create a new cypher before decryption ([#156](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/156)) ([3b812b7](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/3b812b77cb280dbd0ca5f515c9655541390a7c4a))
|
1770
|
+
|
1771
|
+
### [1.14.6](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.14.5...v1.14.6) (2022-01-18)
|
1772
|
+
|
1773
|
+
|
1774
|
+
### Features
|
1775
|
+
|
1776
|
+
* **customers:** add loyalty start date ([#153](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/153)) ([d63b7d1](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/d63b7d1c55525d3f4bfa89161cb28d07b8b89126))
|
1777
|
+
|
1778
|
+
### [1.14.5](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.14.4...v1.14.5) (2022-01-17)
|
1779
|
+
|
1780
|
+
|
1781
|
+
### Bug Fixes
|
1782
|
+
|
1783
|
+
* **update:** mdm address string ([#154](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/154)) ([1d16a54](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/1d16a541aa28e4310073dd68670d4282ad7d6156))
|
1784
|
+
|
1785
|
+
### [1.14.4](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.14.3...v1.14.4) (2022-01-17)
|
1786
|
+
|
1787
|
+
|
1788
|
+
### Bug Fixes
|
1789
|
+
|
1790
|
+
* **addresses:** modify address with movingDate ([#152](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/152)) ([a643eaf](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/a643eafe449bee337fb83dec2a0f8b530c3e3de7))
|
1791
|
+
|
1792
|
+
### [1.14.3](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.14.2...v1.14.3) (2022-01-17)
|
1793
|
+
|
1794
|
+
|
1795
|
+
### Bug Fixes
|
1796
|
+
|
1797
|
+
* **update:** NPE when no consents sent ([#149](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/149)) ([2383891](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/2383891cd1410bd9a0e259215ce9c91328690d6e)), closes [#150](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/150) [#141](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/141)
|
1798
|
+
|
1799
|
+
### [1.14.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.14.1...v1.14.2) (2022-01-14)
|
1800
|
+
|
1801
|
+
|
1802
|
+
### Bug Fixes
|
1803
|
+
|
1804
|
+
* pre create account when creating loyalty for customer ([301098e](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/301098e8c09570c10e6e04b43780d21e7e2f821d))
|
1805
|
+
|
1806
|
+
### [1.14.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.14.0...v1.14.1) (2022-01-14)
|
1807
|
+
|
1808
|
+
|
1809
|
+
### Features
|
1810
|
+
|
1811
|
+
* **moving date:** change rules to display moving in reduction ([#151](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/151)) ([3409520](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/3409520025854b3239703aaea08f1e81701d835b))
|
1812
|
+
|
1813
|
+
## [1.14.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.13.6...v1.14.0) (2022-01-13)
|
1814
|
+
|
1815
|
+
|
1816
|
+
### Features
|
1817
|
+
|
1818
|
+
* **delete:** delete fid ([#141](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/141)) ([4eddbec](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/4eddbecb2601d7ff24901b2cd7987d99b59bf72a))
|
1819
|
+
|
1820
|
+
### [1.13.6](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.13.5...v1.13.6) (2022-01-12)
|
1821
|
+
|
1822
|
+
|
1823
|
+
### Bug Fixes
|
1824
|
+
|
1825
|
+
* **date-format:** fix movingDate format on MdmAddresses ([#150](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/150)) ([48613c5](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/48613c524c16899d7770f342444ef85af8a25b37))
|
1826
|
+
|
1827
|
+
### [1.13.5](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.13.4...v1.13.5) (2022-01-10)
|
1828
|
+
|
1829
|
+
|
1830
|
+
### Features
|
1831
|
+
|
1832
|
+
* **orchestration:** doesnt get consent when non necessary ([#148](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/148)) ([08d13d2](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/08d13d2d73349034ccd3c6af0879e6009aba6157))
|
1833
|
+
|
1834
|
+
### [1.13.4](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.13.3...v1.13.4) (2022-01-07)
|
1835
|
+
|
1836
|
+
|
1837
|
+
### Bug Fixes
|
1838
|
+
|
1839
|
+
* **roles:** get roles from (groups or job) and group patterns ([#147](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/147)) ([5d44a2f](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/5d44a2f86b48f52b145a46fdbb42d3c8cc0d07cd))
|
1840
|
+
|
1841
|
+
### [1.13.3](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.13.2...v1.13.3) (2022-01-07)
|
1842
|
+
|
1843
|
+
### [1.13.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.13.1...v1.13.2) (2022-01-07)
|
1844
|
+
|
1845
|
+
|
1846
|
+
### Bug Fixes
|
1847
|
+
|
1848
|
+
* **address-mapper:** npe ([#142](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/142)) ([7e3d9d3](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/7e3d9d3ba82a332d86b8291311e34ffa3d50fd7c))
|
1849
|
+
|
1850
|
+
### [1.13.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.13.0...v1.13.1) (2021-12-23)
|
1851
|
+
|
1852
|
+
|
1853
|
+
### Features
|
1854
|
+
|
1855
|
+
* **pre-registration:** add default community-profile ([#138](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/138)) ([ee1844a](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/ee1844aac6fe47c2c88f6b66c9e85dfa49cdf3c9))
|
1856
|
+
|
1857
|
+
## [1.13.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.12.5...v1.13.0) (2021-12-23)
|
1858
|
+
|
1859
|
+
|
1860
|
+
### Features
|
1861
|
+
|
1862
|
+
* **webuser:** add suspend unsuspend endpoints ([#133](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/133)) ([65c077b](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/65c077b6544fc0ecce1063922f0c681c6a8d6592))
|
1863
|
+
|
1864
|
+
|
1865
|
+
### Bug Fixes
|
1866
|
+
|
1867
|
+
* catch Forbidden error instead of Unauthorized for Kazaplan ([#136](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/136)) ([1cdc692](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/1cdc692fc6791526824ccef21f72e6f3e25212d1))
|
1868
|
+
|
1869
|
+
### [1.12.5](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.12.4...v1.12.5) (2021-12-21)
|
1870
|
+
|
1871
|
+
### [1.12.4](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.12.3...v1.12.4) (2021-12-20)
|
1872
|
+
|
1873
|
+
|
1874
|
+
### Bug Fixes
|
1875
|
+
|
1876
|
+
* update log4j version ([#134](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/134)) ([72d1917](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/72d19174016bd801571960258df17a3640cdce78))
|
1877
|
+
|
1878
|
+
### [1.12.3](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.12.2...v1.12.3) (2021-12-20)
|
1879
|
+
|
1880
|
+
|
1881
|
+
### Features
|
1882
|
+
|
1883
|
+
* **subscription:** create community-profile-on-subscription ([#132](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/132)) ([c339afd](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/c339afd44298abbf8d0ad13e4f4f22c424bd1e85))
|
1884
|
+
|
1885
|
+
### [1.12.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.12.1...v1.12.2) (2021-12-17)
|
1886
|
+
|
1887
|
+
|
1888
|
+
### Features
|
1889
|
+
|
1890
|
+
* **webUser:** add an endpoint to delete a webuser ([#131](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/131)) ([4294d79](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/4294d798745266e0647d3be39714424579f8a86f))
|
1891
|
+
|
1892
|
+
|
1893
|
+
### Bug Fixes
|
1894
|
+
|
1895
|
+
* **log4J:** upgrade version to 2.16.0 ([93af651](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/93af6519a9ad2e8880b8c51aee87f25dedca272d))
|
1896
|
+
|
1897
|
+
### [1.12.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.12.0...v1.12.1) (2021-12-16)
|
1898
|
+
|
1899
|
+
|
1900
|
+
### Bug Fixes
|
1901
|
+
|
1902
|
+
* **loyalty pdf:** check label dto nullity ([209c7cd](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/209c7cd232e04aeeab16bffc10a631ee6a17e61c))
|
1903
|
+
|
1904
|
+
## [1.12.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.11.6...v1.12.0) (2021-12-16)
|
1905
|
+
|
1906
|
+
### [1.11.6](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.11.5...v1.11.6) (2021-12-13)
|
1907
|
+
|
1908
|
+
|
1909
|
+
### Features
|
1910
|
+
|
1911
|
+
* **loyalty:** remove put customer ([320ddee](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/320ddeec269cd06cf5d5f8da85e6a25eb610f385))
|
1912
|
+
|
1913
|
+
### [1.11.5](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.11.4...v1.11.5) (2021-12-09)
|
1914
|
+
|
1915
|
+
### [1.11.4](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.11.3...v1.11.4) (2021-12-09)
|
1916
|
+
|
1917
|
+
|
1918
|
+
### Bug Fixes
|
1919
|
+
|
1920
|
+
* **loyalty:** NPE on get Remembership Available ([a64b135](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/a64b1356313323718c2b17e55196814e0fadbe4f))
|
1921
|
+
|
1922
|
+
### [1.11.3](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.11.2...v1.11.3) (2021-12-09)
|
1923
|
+
|
1924
|
+
### [1.11.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.11.1...v1.11.2) (2021-12-07)
|
1925
|
+
|
1926
|
+
|
1927
|
+
### Features
|
1928
|
+
|
1929
|
+
* **loyalty:** kmcs 294 refactoring loyalties ([#116](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/116)) ([3d4ad2b](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/3d4ad2bcb6ffa932d0ad6911ad5cf38ffb2ef6ff))
|
1930
|
+
|
1931
|
+
### [1.11.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.11.0...v1.11.1) (2021-12-03)
|
1932
|
+
|
1933
|
+
|
1934
|
+
### Features
|
1935
|
+
|
1936
|
+
* **ciam:** use client from ipn-team ([#122](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/122)) ([96358b5](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/96358b5a701bf7182880473185fcb973fbadbc27))
|
1937
|
+
* **customer:** disable account is not active ([#123](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/123)) ([c20ec81](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/c20ec8153d1ea5e4d496bc5b8550b1e10548197a))
|
1938
|
+
|
1939
|
+
## [1.11.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.10.4...v1.11.0) (2021-11-30)
|
1940
|
+
|
1941
|
+
|
1942
|
+
### Features
|
1943
|
+
|
1944
|
+
* **orchestration:** switch v2 ([#109](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/109)) ([741f7be](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/741f7be3520f39c334931d1038a1f114f8bdd0f3))
|
1945
|
+
|
1946
|
+
### [1.10.4](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.10.3...v1.10.4) (2021-11-26)
|
1947
|
+
|
1948
|
+
|
1949
|
+
### Bug Fixes
|
1950
|
+
|
1951
|
+
* disable payload logs for requests excepting for search ([02b8061](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/02b80617ddc4a29167ee2108274f852dc8483fc1))
|
1952
|
+
|
1953
|
+
### [1.10.3](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.10.2...v1.10.3) (2021-11-25)
|
1954
|
+
|
1955
|
+
|
1956
|
+
### Bug Fixes
|
1957
|
+
|
1958
|
+
* **traçabilite:** adeo operator for lys ([3dcb75f](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/3dcb75f26e96a6a005596cfd2b76ba120689dcf0))
|
1959
|
+
|
1960
|
+
### [1.10.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.10.1...v1.10.2) (2021-11-24)
|
1961
|
+
|
1962
|
+
|
1963
|
+
### Bug Fixes
|
1964
|
+
|
1965
|
+
* add to string annotation on object class fields ([7f764f0](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/7f764f0facb218b21bb37e63e861429e2d342278))
|
1966
|
+
* log payload & change search to GET for collaborators actions ([ee997cb](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/ee997cbba3bbce17cf2fc44f7c9b97e2c4332eed))
|
1967
|
+
|
1968
|
+
### [1.10.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.10.0...v1.10.1) (2021-11-24)
|
1969
|
+
|
1970
|
+
|
1971
|
+
### Bug Fixes
|
1972
|
+
|
1973
|
+
* log payload & change search to GET for collaborators actions ([#120](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/120)) ([f2f1649](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/f2f1649aef49ef4c3ae53a117f3612a922402657))
|
1974
|
+
|
1975
|
+
## [1.10.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.9.13...v1.10.0) (2021-11-23)
|
1976
|
+
|
1977
|
+
### [1.9.13](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.9.12...v1.9.13) (2021-11-22)
|
1978
|
+
|
1979
|
+
|
1980
|
+
### Bug Fixes
|
1981
|
+
|
1982
|
+
* **account-status:** fix getWebAccountStatus method ([#118](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/118)) ([f36abc6](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/f36abc64bfcc666a78ba936e1a26feba3ed87599))
|
1983
|
+
|
1984
|
+
### [1.9.12](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.9.11...v1.9.12) (2021-11-22)
|
1985
|
+
|
1986
|
+
|
1987
|
+
### Bug Fixes
|
1988
|
+
|
1989
|
+
* **creation:** add autologin cookie ([#117](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/117)) ([00d225c](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/00d225c326320a2cea44b3be9e1d58bd57e5da56))
|
1990
|
+
|
1991
|
+
### [1.9.11](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.9.10...v1.9.11) (2021-11-18)
|
1992
|
+
|
1993
|
+
|
1994
|
+
### Bug Fixes
|
1995
|
+
|
1996
|
+
* correct reapply body ([#115](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/115)) ([8d41ba6](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/8d41ba69ba8349c3cfc34baeef297d395148f99f))
|
1997
|
+
|
1998
|
+
### [1.9.10](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.9.9...v1.9.10) (2021-11-17)
|
1999
|
+
|
2000
|
+
### [1.9.9](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.9.8...v1.9.9) (2021-11-16)
|
2001
|
+
|
2002
|
+
|
2003
|
+
### Bug Fixes
|
2004
|
+
|
2005
|
+
* retrieve loyalty card number instead of account number to generate pdf ([#113](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/113)) ([c6f53ea](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/c6f53ea59ac2cde7f713e47c2a8aef7cf68e12a9))
|
2006
|
+
|
2007
|
+
### [1.9.8](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.9.7...v1.9.8) (2021-11-16)
|
2008
|
+
|
2009
|
+
|
2010
|
+
### Bug Fixes
|
2011
|
+
|
2012
|
+
* do not call mdm when nothing to update on PUT /customers ([#111](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/111)) ([e48d601](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/e48d6014b6de88a45726918f224deefc51043369))
|
2013
|
+
|
2014
|
+
### [1.9.7](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.9.6...v1.9.7) (2021-11-16)
|
2015
|
+
|
2016
|
+
|
2017
|
+
### Features
|
2018
|
+
|
2019
|
+
* **tracing:** add xldap header to ciam calls ([#112](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/112)) ([0375b03](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/0375b031524e3530088bafe083fcc6108b33a8f5))
|
2020
|
+
|
2021
|
+
### [1.9.6](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.9.5...v1.9.6) (2021-11-15)
|
2022
|
+
|
2023
|
+
|
2024
|
+
### Features
|
2025
|
+
|
2026
|
+
* **consents:** add performing user to update consents call ([#110](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/110)) ([6563633](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/656363355ce45a435a4ef19646c71a14f18f99c8))
|
2027
|
+
|
2028
|
+
### [1.9.5](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.9.4...v1.9.5) (2021-11-09)
|
2029
|
+
|
2030
|
+
|
2031
|
+
### Features
|
2032
|
+
|
2033
|
+
* **community:** sso tokywoky at the profile creation ([#108](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/108)) ([8bcd274](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/8bcd274732c48196219fac02f33853e5b6d2fe9a))
|
2034
|
+
|
2035
|
+
### [1.9.4](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.9.3...v1.9.4) (2021-11-08)
|
2036
|
+
|
2037
|
+
|
2038
|
+
### Features
|
2039
|
+
|
2040
|
+
* **creation:** add some missing values to response ([#105](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/105)) ([3afa112](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/3afa112d4a83e1513eb5247617d895d906e59d3b))
|
2041
|
+
|
2042
|
+
### [1.9.3](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.9.2...v1.9.3) (2021-11-05)
|
2043
|
+
|
2044
|
+
|
2045
|
+
### Features
|
2046
|
+
|
2047
|
+
* **precreation:** add precreation for professional users ([#104](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/104)) ([0675d75](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/0675d75276f3f1528df9ae19fd9a8553446f6d78))
|
2048
|
+
|
2049
|
+
### [1.9.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.9.1...v1.9.2) (2021-11-04)
|
2050
|
+
|
2051
|
+
|
2052
|
+
### Features
|
2053
|
+
|
2054
|
+
* add web account status to /customers response ([#102](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/102)) ([86652f7](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/86652f7df71e3db2ef68a4153f4a8c5baf85ded9))
|
2055
|
+
|
2056
|
+
### [1.9.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.9.0...v1.9.1) (2021-11-04)
|
2057
|
+
|
2058
|
+
## [1.9.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.8.5...v1.9.0) (2021-11-03)
|
2059
|
+
|
2060
|
+
|
2061
|
+
### Features
|
2062
|
+
|
2063
|
+
* **creation:** modify creation endpoint ([#84](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/84)) ([cd6fd01](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/cd6fd013bd7c00aeea22ba1dc914e3d87845dea3))
|
2064
|
+
|
2065
|
+
### [1.8.5](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.8.4...v1.8.5) (2021-11-02)
|
2066
|
+
|
2067
|
+
|
2068
|
+
### Features
|
2069
|
+
|
2070
|
+
* **loyalty:** add adeo-operator ([d75b539](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/d75b539b27956e98300c2d911c205cdd98fc6bc4))
|
2071
|
+
|
2072
|
+
### [1.8.4](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.8.3...v1.8.4) (2021-10-28)
|
2073
|
+
|
2074
|
+
|
2075
|
+
### Features
|
2076
|
+
|
2077
|
+
* add security logs ([#100](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/100)) ([3f0a491](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/3f0a491f1c081879501e3ab6bd25ad5efa58a8b9))
|
2078
|
+
|
2079
|
+
### [1.8.3](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.8.2...v1.8.3) (2021-10-27)
|
2080
|
+
|
2081
|
+
|
2082
|
+
### Features
|
2083
|
+
|
2084
|
+
* add query param light to optimize search ([#99](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/99)) ([dbf00c0](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/dbf00c0f0b0772601d8e9b90e69256eea306f987))
|
2085
|
+
|
2086
|
+
### [1.8.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.8.1...v1.8.2) (2021-10-26)
|
2087
|
+
|
2088
|
+
### [1.8.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.8.0...v1.8.1) (2021-10-22)
|
2089
|
+
|
2090
|
+
|
2091
|
+
### Features
|
2092
|
+
|
2093
|
+
* **creation:** change path to presignup ([#94](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/94)) ([dddba1a](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/dddba1a6fa7cc7f41fc380bc824a9d6daa0fdbc3))
|
2094
|
+
* **creation:** change response of presignup ([#95](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/95)) ([f445a9b](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/f445a9b2fb0649554cebb65edec8760a90b0a2e9))
|
2095
|
+
|
2096
|
+
## [1.8.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.7.2...v1.8.0) (2021-10-21)
|
2097
|
+
|
2098
|
+
### [1.7.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.7.1...v1.7.2) (2021-10-21)
|
2099
|
+
|
2100
|
+
### [1.7.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.7.0...v1.7.1) (2021-10-20)
|
2101
|
+
|
2102
|
+
|
2103
|
+
### Features
|
2104
|
+
|
2105
|
+
* **personalData:** update company informations ([feb8c6a](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/feb8c6afe1a398efd06f98866a14233adf381a38))
|
2106
|
+
|
2107
|
+
## [1.7.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.6.1...v1.7.0) (2021-10-15)
|
2108
|
+
|
2109
|
+
|
2110
|
+
### Features
|
2111
|
+
|
2112
|
+
* **customer:** add check email validity ([#79](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/79)) ([a1fdb66](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/a1fdb6659294c14cea661ed0517db8dbb38eac7d))
|
2113
|
+
* **customer:** add check email validity ([#85](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/85)) ([e8fbb24](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/e8fbb24e135ff58c5386e45408a869d6084ee66b))
|
2114
|
+
* **customers-search:** change address fields naming ([#83](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/83)) ([ed8cb69](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/ed8cb69422c7c97a7b1322e60ed786f666fc7f03))
|
2115
|
+
* **MDM:** security header for MDM requests ([b8794b8](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/b8794b80a45344bfd4f2df4ea0434439d61f6583))
|
2116
|
+
* **search:** add customer search endpoint ([#82](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/82)) ([38df02a](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/38df02a40fa2a18a1ebe9b0857d4fe54eccf1dd3))
|
2117
|
+
|
2118
|
+
|
2119
|
+
### Bug Fixes
|
2120
|
+
|
2121
|
+
* **phonenumber:** add type on phone number update ([#81](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/81)) ([1d35053](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/1d35053b0d319b8e229e878f17e5a589a4fe0484))
|
2122
|
+
* remove oldpassword that isn't used on password change ([#88](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/88)) ([33248a1](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/33248a1336f55dbb767c976c64e4fd09b9cbbeb0))
|
2123
|
+
|
2124
|
+
### [1.6.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.6.0...v1.6.1) (2021-10-08)
|
2125
|
+
|
2126
|
+
|
2127
|
+
### Features
|
2128
|
+
|
2129
|
+
* **customer:** add moving date ([#80](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/80)) ([32c26b8](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/32c26b813b18d220edd926ab0dbdda008585df24))
|
2130
|
+
|
2131
|
+
## [1.6.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.5.1...v1.6.0) (2021-09-30)
|
2132
|
+
|
2133
|
+
|
2134
|
+
### Features
|
2135
|
+
|
2136
|
+
* **contextualisation:** add actions on post authent ([f793089](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/f793089a81fc34b61331885dfeb3f88a9bbbf162))
|
2137
|
+
|
2138
|
+
### [1.5.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.5.0...v1.5.1) (2021-09-20)
|
2139
|
+
|
2140
|
+
|
2141
|
+
### Bug Fixes
|
2142
|
+
|
2143
|
+
* **loyalty:** store code on collab's adhesion ([98f9e38](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/98f9e38d8d8c530653299d683dc14e5bb644024c))
|
2144
|
+
|
2145
|
+
## [1.5.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.4.4...v1.5.0) (2021-09-17)
|
2146
|
+
|
2147
|
+
|
2148
|
+
### Features
|
2149
|
+
|
2150
|
+
* **roles:** allow multiple roles for one job and for one gina group ([b82057a](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/b82057a8b8d4f82e912330f9ef5bbbff7c404692))
|
2151
|
+
* **users:** add an endpoint to check authentication ([5ced9a0](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/5ced9a0409a9b823594053d2a8c0f69e31c9e21b))
|
2152
|
+
|
2153
|
+
|
2154
|
+
### Bug Fixes
|
2155
|
+
|
2156
|
+
* **loyalty:** use requested loyalty program ([070182d](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/070182d1a7e102a88052e363f1b3ec07c46a2aa9))
|
2157
|
+
* **search:** ignore unknown properties from ciam response ([7314e9c](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/7314e9c27cce820370b2ade905a3040101dcda41))
|
2158
|
+
|
2159
|
+
### [1.4.4](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.4.3...v1.4.4) (2021-09-16)
|
2160
|
+
|
2161
|
+
|
2162
|
+
### Bug Fixes
|
2163
|
+
|
2164
|
+
* **personaldata:** update company account ([8bf9b92](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/8bf9b92fa284931656f4d2a6c0857648e4fdd8cc))
|
2165
|
+
|
2166
|
+
### [1.4.3](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.4.2...v1.4.3) (2021-09-16)
|
2167
|
+
|
2168
|
+
|
2169
|
+
### Bug Fixes
|
2170
|
+
|
2171
|
+
* **personaldata:** update company account ([dbb97d1](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/dbb97d16c20169a436b488f4aa950599d02d3ae0))
|
2172
|
+
|
2173
|
+
### [1.4.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.4.1...v1.4.2) (2021-09-16)
|
2174
|
+
|
2175
|
+
|
2176
|
+
### Bug Fixes
|
2177
|
+
|
2178
|
+
* **personaldata:** update corporate member informations ([bb55c87](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/bb55c87177332e93e174f3eb3bd09230a6e1e1e4))
|
2179
|
+
|
2180
|
+
### [1.4.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.4.0...v1.4.1) (2021-09-16)
|
2181
|
+
|
2182
|
+
|
2183
|
+
### Bug Fixes
|
2184
|
+
|
2185
|
+
* **customer:** delete set refresh cookie on endpoints ([#67](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/67)) ([79042b3](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/79042b34d64c008003ec886eb261f5c07b91f21d))
|
2186
|
+
* **loyalty:** mapper with loyalty null ([#66](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/66)) ([7cf2b26](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/7cf2b2605fa8e2452018c028de9fc1c562f2b6da))
|
2187
|
+
|
2188
|
+
## [1.4.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.3.4...v1.4.0) (2021-09-15)
|
2189
|
+
|
2190
|
+
|
2191
|
+
### Features
|
2192
|
+
|
2193
|
+
* **customer:** add controller put customer me ([#65](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/65)) ([36b23cb](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/36b23cbec2a591d9890635cfa9cc92ff9ab6db1b))
|
2194
|
+
|
2195
|
+
|
2196
|
+
### Bug Fixes
|
2197
|
+
|
2198
|
+
* **customer:** fix put customer with addresses null ([#63](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/63)) ([9d7cd1b](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/9d7cd1b4d562cd744f663588c4b6498c363bdd5f))
|
2199
|
+
* **customer:** update customer adresse ([#62](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/62)) ([ec71383](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/ec713839c93a0939124f9992cbaec74eb10e8461))
|
2200
|
+
* **personaldata:** update corporate member informations ([e8e004b](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/e8e004b81ed5fd6e2282b4f073cc5e38633834e0))
|
2201
|
+
|
2202
|
+
### [1.3.4](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.3.3...v1.3.4) (2021-09-13)
|
2203
|
+
|
2204
|
+
|
2205
|
+
### Bug Fixes
|
2206
|
+
|
2207
|
+
* allow GET /cities to customers ([fdb96ce](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/fdb96ced0118e5fac5dbbee0b1a52675007d89e5))
|
2208
|
+
|
2209
|
+
### [1.3.3](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.3.2...v1.3.3) (2021-09-13)
|
2210
|
+
|
2211
|
+
### [1.3.2](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.3.1...v1.3.2) (2021-09-13)
|
2212
|
+
|
2213
|
+
### [1.3.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.3.0...v1.3.1) (2021-09-10)
|
2214
|
+
|
2215
|
+
|
2216
|
+
### Features
|
2217
|
+
|
2218
|
+
* **community-profile:** split put profile/avatar in 2 distinct endpo… ([#49](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/49)) ([770af3d](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/770af3d37aac3e1dba6863da1e9137253e5b954f))
|
2219
|
+
* **email:** endpoint to check existence of an email ([#38](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/38)) ([02d0a7d](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/02d0a7dcc5c49be5ae43fecf744583890c8dbd0e))
|
2220
|
+
* **global endpoints:** add userId routes ([#33](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/33)) ([2e27b82](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/2e27b82a6266c199f6f2467692c861dcefc5348d))
|
2221
|
+
* **ipn-team-client:** upgrade version ([e1803a4](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/e1803a43e637100590557e2f8de17aae5488bdf3))
|
2222
|
+
* **loyalty:** change date formatting ([0da8c07](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/0da8c074f6b46f0923bb3e587cf6f9f79f958a38))
|
2223
|
+
* **permissions:** add permissions on endpoints ([22781fd](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/22781fd2e21909fae53edfb33f784abfd4dc8042))
|
2224
|
+
* **permissions:** get permissions by role ([#35](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/35)) ([1359bb5](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/1359bb53de5ccb7e82502a72a8637f50ec063d46))
|
2225
|
+
* **reaccession:** add an endpoint to return stores around a zipCode ([c8652f7](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/c8652f7ed138ff291e872431e59f1a8af9d4e065))
|
2226
|
+
|
2227
|
+
|
2228
|
+
### Bug Fixes
|
2229
|
+
|
2230
|
+
* **communication channels:** phone could be in other communication channels ([#37](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/37)) ([6758e20](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/6758e202512a7131c0e68e346cd9ce5f88fef524))
|
2231
|
+
* **community-profile:** fix community profile services ([#51](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/51)) ([d23587a](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/d23587afe19ac10631996e59471bc70594b6d8f1))
|
2232
|
+
* **community-profile:** synchronize profileId with ciam on creation ([#56](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/56)) ([6deb3f6](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/6deb3f6b81afd253bab0ca17e1dea50db6a2b927))
|
2233
|
+
* **customer:** search customer with empty response ([#29](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/29)) ([49435ee](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/49435eed655bed3eb2b5499770c8e88417cbedfa))
|
2234
|
+
* **email:** add accesstoken to call check email ([#39](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/39)) ([05ff174](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/05ff17421d19f7760115e5a245b7a14b1319eea6))
|
2235
|
+
* **email:** use management token instead of user's to search email existance ([#45](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/45)) ([5ac96cb](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/5ac96cb2dd05932a721bffe5df1c3907ed2e92f4))
|
2236
|
+
* **get-role:** return job role if group roles list is empty ([c14a6dd](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/c14a6dd3f3c3556752f1cf5e3caca1e1a77afac9))
|
2237
|
+
* **loyalties:** change token collab ([#36](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/36)) ([d63cb53](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/d63cb5332766881e31a61caf14ce38a0f30d8277))
|
2238
|
+
* **mapping:** NPE when communications list was null ([#32](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/32)) ([3e86c42](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/3e86c42d8c35dba978439e8e826e927d29802c29))
|
2239
|
+
* **null-values:** fix null values on get roles method ([#30](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/30)) ([d4daedc](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/d4daedc8c327a1cea8083b05d98b6c0b9dde881a))
|
2240
|
+
* **profile:** access token and profileId parameters were switched ([#43](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/43)) ([e833412](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/e833412e900bc0dee2d0d282d8edf6386c0bcdc8))
|
2241
|
+
* **sociale-profile:** fix endpoint securization ([d38aaea](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/d38aaea2d1a66401df687e0a09e34420d4da744c))
|
2242
|
+
|
2243
|
+
## [1.3.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.2.0...v1.3.0) (2021-08-13)
|
2244
|
+
|
2245
|
+
## [1.2.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.1.1...v1.2.0) (2021-08-13)
|
2246
|
+
|
2247
|
+
|
2248
|
+
### Features
|
2249
|
+
|
2250
|
+
* add profile controller ([950a085](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/950a085a557a5102c2a374ee1b348569e010a09b))
|
2251
|
+
* **csa:** change social info returned by /users/me and /customers/me|{id} ([#22](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/22)) ([3cb7794](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/3cb77940a39d18b29463e92eb023b67ad700fc5c))
|
2252
|
+
* **loyalty:** add endpoints to update coordinates & habitat before creating a loyalty ([2696ebf](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/2696ebfe8e5a202195279a0d47812ebb4d559a1a))
|
2253
|
+
* **profile:** add endpoint to retrieve customer profile ([3714e19](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/3714e19549d4471b6e45745d2669475ad557e9ad))
|
2254
|
+
* **profile:** add endpoints to retrieve default avatars ([bac408a](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/bac408adef4c02a582727d9e2eff9843807996ff))
|
2255
|
+
* **resource:** add controller to recover cities ([#18](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/18)) ([bf55783](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/bf55783617c8c95bd288b1ee0c76cb1051ecbe5c))
|
2256
|
+
* **users:** add search controller ([#7](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/7)) ([ea7c356](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/ea7c356bba5c446f703046266a34c89886a4bc34))
|
2257
|
+
* **users:** advanced search ([#17](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/17)) ([f6698e9](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/f6698e9ba1a57dd8786288dee2c2087165b73190))
|
2258
|
+
|
2259
|
+
|
2260
|
+
### Bug Fixes
|
2261
|
+
|
2262
|
+
* conflicts between profile client beans ([654613d](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/654613d684e7f66b824503cac1f1456b2d7aa894))
|
2263
|
+
* **customer:** add main address and creation date ([#24](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/24)) ([a4ba5d2](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/a4ba5d2eea27e9a984f27b06849d0071bfab9dfe))
|
2264
|
+
* **loyalty card:** is readherable ([#26](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/26)) ([acb23ef](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/acb23ef7bff57f920505502dc499e588478378ff))
|
2265
|
+
* **profile:** upload avatar with base64 string as entry ([1dffec4](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/1dffec47d72feeefd61d56e0dc01240f2ff6b723))
|
2266
|
+
* **profile:** use request body instead of request part to handle avatar update ([3dd0231](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/3dd02317d19bd1c4c405db188c4c30782fedfe10))
|
2267
|
+
|
2268
|
+
### [1.1.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.1.0...v1.1.1) (2021-07-21)
|
2269
|
+
|
2270
|
+
|
2271
|
+
### Features
|
2272
|
+
|
2273
|
+
* **loyalty:** add endpoint to change loyalty type ([d866cff](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/d866cff47ac611b1f6832e7caec3181e1ffda52c))
|
2274
|
+
* **loyalty:** add endpoints to apply and reapply loyalty program for customers ([bff845a](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/bff845ac18c48c3e405f7ea68000110b616c890a))
|
2275
|
+
* **loyalty:** add endpoints to apply and reapply loyalty program for customers ([b24ea68](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/b24ea68ff1b11faf2878e1f6cc085c1ffa86f264))
|
2276
|
+
|
2277
|
+
## [1.1.0](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.0.1...v1.1.0) (2021-07-21)
|
2278
|
+
|
2279
|
+
|
2280
|
+
### Features
|
2281
|
+
|
2282
|
+
* **ipn-120:** add mdm models and client ([#3](https://github.com/adeo/cdp-hpn--customer-profile-backend/issues/3)) ([11bfe16](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/11bfe164cd0c849e0b5d70c70f070c4970f8170b))
|
2283
|
+
* **loyalty card:** add rewards ([ea11bfd](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/ea11bfd25ab8da508a57a0231896c7d09dea54da))
|
2284
|
+
* **loyalty card:** change move client to lys client ([87d24b4](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/87d24b4c35a84426880e79e953a235a7cf11bea3))
|
2285
|
+
|
2286
|
+
|
2287
|
+
### Bug Fixes
|
2288
|
+
|
2289
|
+
* **loyalty card:** change mapper ([4fb5051](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/4fb5051f9b43e0a0e305eb9f1bc7357a0225b322))
|
2290
|
+
* **loyalty card:** reward dto ([c41450e](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/c41450e2a0cc64dfd4eb7de935e1bdf2ece9787e))
|
2291
|
+
|
2292
|
+
### [1.0.1](https://github.com/adeo/cdp-hpn--customer-profile-backend/compare/v1.0.0...v1.0.1) (2021-06-22)
|
2293
|
+
|
2294
|
+
## 1.0.0 (2021-06-21)
|
2295
|
+
|
2296
|
+
|
2297
|
+
### Features
|
2298
|
+
|
2299
|
+
* **loyalty:** add loyalty card controller ([02ac552](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/02ac5523b315fc89c864973bdec05a0a91eb6e52))
|
2300
|
+
* **loyalty card:** generate barcode ([5a29a0b](https://github.com/adeo/cdp-hpn--customer-profile-backend/commit/5a29a0b26c1893866035b66a046a29ee38ae5711))
|