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.

Files changed (1871) hide show
  1. package/cdp-due--authentication-module-master/.babelrc +4 -0
  2. package/cdp-due--authentication-module-master/.dependabot/config.yml +12 -0
  3. package/cdp-due--authentication-module-master/.editorconfig +34 -0
  4. package/cdp-due--authentication-module-master/.github/settings.xml +54 -0
  5. package/cdp-due--authentication-module-master/.github/workflows/build-branch.yml +50 -0
  6. package/cdp-due--authentication-module-master/.github/workflows/build-release.yml +24 -0
  7. package/cdp-due--authentication-module-master/.github/workflows/checkmarx.yml +27 -0
  8. package/cdp-due--authentication-module-master/.github/workflows/cleanup.yml +18 -0
  9. package/cdp-due--authentication-module-master/.github/workflows/quality.yml +45 -0
  10. package/cdp-due--authentication-module-master/.github/workflows/release.yml +59 -0
  11. package/cdp-due--authentication-module-master/.releaserc +18 -0
  12. package/cdp-due--authentication-module-master/.tool-versions +1 -0
  13. package/cdp-due--authentication-module-master/.vcmrc +14 -0
  14. package/cdp-due--authentication-module-master/CHANGELOG.md +1784 -0
  15. package/cdp-due--authentication-module-master/CONTRIBUTING.md +3 -0
  16. package/cdp-due--authentication-module-master/DOCUMENTATION.md +191 -0
  17. package/cdp-due--authentication-module-master/DOCUMENTATION_EN.MD +204 -0
  18. package/cdp-due--authentication-module-master/Dockerfile +14 -0
  19. package/cdp-due--authentication-module-master/README.md +37 -0
  20. package/cdp-due--authentication-module-master/archi/level-context.dot +23 -0
  21. package/cdp-due--authentication-module-master/authentication-module.quality.json +24 -0
  22. package/cdp-due--authentication-module-master/authentication-process.png +0 -0
  23. package/cdp-due--authentication-module-master/babel.config.js +13 -0
  24. package/cdp-due--authentication-module-master/docker/README.md +1 -0
  25. package/cdp-due--authentication-module-master/docker/certificates/prepSSO.crt +33 -0
  26. package/cdp-due--authentication-module-master/docker/dev/DEVELOPERS.md +149 -0
  27. package/cdp-due--authentication-module-master/docker/dev/Dockerfile +40 -0
  28. package/cdp-due--authentication-module-master/docker/dev/docker-compose.yml +26 -0
  29. package/cdp-due--authentication-module-master/docker/dev/template.env +9 -0
  30. package/cdp-due--authentication-module-master/docker/entrypoint.sh +4 -0
  31. package/cdp-due--authentication-module-master/jest.config.js +24 -0
  32. package/cdp-due--authentication-module-master/jest.setup.js +15 -0
  33. package/cdp-due--authentication-module-master/keystore.p12 +0 -0
  34. package/cdp-due--authentication-module-master/package-lock.json +12532 -0
  35. package/cdp-due--authentication-module-master/package.json +57 -0
  36. package/cdp-due--authentication-module-master/pom.xml +483 -0
  37. package/cdp-due--authentication-module-master/product-info.json +3 -0
  38. package/cdp-due--authentication-module-master/settings.xml +56 -0
  39. package/cdp-due--authentication-module-master/src/main/config/application-local.yaml +3 -0
  40. package/cdp-due--authentication-module-master/src/main/config/application.yaml +102 -0
  41. package/cdp-due--authentication-module-master/src/main/config/bootstrap-local.yaml +4 -0
  42. package/cdp-due--authentication-module-master/src/main/config/bootstrap-test.yaml +3 -0
  43. package/cdp-due--authentication-module-master/src/main/config/bootstrap.yaml +15 -0
  44. package/cdp-due--authentication-module-master/src/main/config/debug.yaml +5 -0
  45. package/cdp-due--authentication-module-master/src/main/config/logback-properties.xml +7 -0
  46. package/cdp-due--authentication-module-master/src/main/config/logback-spring.xml +138 -0
  47. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/Application.java +42 -0
  48. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/clients/CiamClient.java +283 -0
  49. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/clients/PingClient.java +90 -0
  50. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/clients/ReachFiveClient.java +262 -0
  51. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/clients/TempoClient.java +82 -0
  52. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/commons/Constants.java +164 -0
  53. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/accountactivation/AccountActivationComponent.java +55 -0
  54. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/accountactivation/AccountActivationFragment.java +32 -0
  55. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/accountactivation/AccountActivationSmsComponent.java +70 -0
  56. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/accountactivation/AccountActivationSmsFragment.java +32 -0
  57. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/callback/BaseCallbackPingController.java +135 -0
  58. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/callback/CallbackController.java +140 -0
  59. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/callback/CallbackPingController.java +87 -0
  60. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/callback/SplittedCallbackPingController.java +58 -0
  61. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/keepalive/KeepAliveComponent.java +42 -0
  62. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/keepalive/KeepAliveFragment.java +32 -0
  63. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/landing/ExampleLandingController.java +24 -0
  64. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/login/AbstractLoginController.java +104 -0
  65. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/login/LoginController.java +179 -0
  66. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/login/LoginFragment.java +21 -0
  67. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/login/LoginOaaController.java +37 -0
  68. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/login/LoginOaaFragment.java +21 -0
  69. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/login/LoginPartnerController.java +41 -0
  70. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/login/LoginPartnerFragment.java +21 -0
  71. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/login/LoginVadController.java +47 -0
  72. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/login/LoginVadFragment.java +21 -0
  73. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/login/VerifyEmailFragment.java +20 -0
  74. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/login/VerifySmsComponent.java +96 -0
  75. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/login/VerifySmsFragment.java +20 -0
  76. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/logout/LogoutController.java +61 -0
  77. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/password/PasswordController.java +62 -0
  78. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/password/ResetPasswordFragment.java +20 -0
  79. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/password/UpdatePasswordFragment.java +20 -0
  80. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/components/redirect/RedirectToController.java +247 -0
  81. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/config/AccountConfig.java +21 -0
  82. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/config/ApplicationConfig.java +102 -0
  83. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/config/AuthenticationConfig.java +29 -0
  84. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/config/CookiesConfig.java +93 -0
  85. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/config/EmailingConfig.java +18 -0
  86. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/config/FrameOptionsConfig.java +16 -0
  87. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/config/RoleFilterConfig.java +16 -0
  88. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/config/RoleMappingConfiguration.java +23 -0
  89. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/config/WebSecurity.java +61 -0
  90. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/config/clients/CiamClientConfig.java +28 -0
  91. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/config/clients/ClientConfig.java +71 -0
  92. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/config/clients/PingClientConfig.java +33 -0
  93. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/config/clients/ReachFiveClientConfig.java +45 -0
  94. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/config/clients/tempo/OrderConfig.java +18 -0
  95. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/config/clients/tempo/TempoComposerClientConfig.java +29 -0
  96. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/config/clients/tempo/TempoConsolidatorClientConfig.java +29 -0
  97. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/config/oauth/CustomAuthorizationRequestResolver.java +192 -0
  98. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/controllers/AccessTokenController.java +26 -0
  99. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/controllers/AccountController.java +87 -0
  100. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/controllers/PasswordRestController.java +37 -0
  101. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/controllers/RefreshController.java +39 -0
  102. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/controllers/SocialLoginController.java +48 -0
  103. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/controllers/exceptions/EmptyStateAtLoginException.java +15 -0
  104. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/controllers/exceptions/RestExceptionHandler.java +237 -0
  105. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/controllers/exceptions/TokenValidationException.java +12 -0
  106. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/helpers/AccessTokenManager.java +68 -0
  107. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/helpers/CipherUtility.java +64 -0
  108. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/helpers/CookieHelper.java +26 -0
  109. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/helpers/KobiUserHelper.java +92 -0
  110. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/helpers/LogHelper.java +39 -0
  111. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/helpers/ProcessHelper.java +72 -0
  112. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/helpers/StateHelper.java +77 -0
  113. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/helpers/UriHelper.java +38 -0
  114. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/helpers/WebUserHelper.java +86 -0
  115. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/logs/AccessLogsFilter.java +30 -0
  116. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/mappers/AccountMapper.java +60 -0
  117. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/mappers/SearchRequestMapper.java +19 -0
  118. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/AccessToken.java +45 -0
  119. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/IntrospectTokenRequest.java +17 -0
  120. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/IntrospectedToken.java +24 -0
  121. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/LoginRequest.java +19 -0
  122. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/ManagementTokenRequest.java +23 -0
  123. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/Modes.java +5 -0
  124. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/Provider.java +12 -0
  125. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/RevokeTokenRequest.java +20 -0
  126. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/SocialLoginProviders.java +23 -0
  127. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/UserInfos.java +43 -0
  128. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/account/AccountActivationRequest.java +18 -0
  129. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/account/AccountActivationResponse.java +24 -0
  130. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/account/AccountActivationResponseType.java +8 -0
  131. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/account/AccountDTO.java +27 -0
  132. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/account/AccountEmailRequestDTO.java +17 -0
  133. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/account/AccountSmsRequestDTO.java +14 -0
  134. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/account/AuthTypeEnum.java +13 -0
  135. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/account/CheckAccountResponse.java +17 -0
  136. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/account/CheckVerificationCodeResponse.java +16 -0
  137. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/account/CiamAccountDTO.java +22 -0
  138. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/account/CiamAccountResponse.java +18 -0
  139. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/account/IdentityDTO.java +27 -0
  140. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/account/LoginDTO.java +20 -0
  141. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/account/LoginsDTO.java +32 -0
  142. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/account/SocialLoginProviderRequestDTO.java +14 -0
  143. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/collab/PingAccessToken.java +19 -0
  144. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/collab/RedirectByRole.java +14 -0
  145. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/cookie/Cookie.java +19 -0
  146. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/cookie/CookieTypeEnum.java +40 -0
  147. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/emailing/AdobeTokenResponse.java +28 -0
  148. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/emailing/EmailingAuthenticationRequest.java +16 -0
  149. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/emailing/EmailingAuthenticationResponse.java +16 -0
  150. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/error/OAuthError.java +18 -0
  151. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/error/UpdatePasswordError.java +20 -0
  152. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/keepalive/KeepAliveStatus.java +5 -0
  153. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/login/SavedLoginRequest.java +44 -0
  154. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/login/State.java +58 -0
  155. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/logs/ActionType.java +5 -0
  156. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/logs/Log.java +31 -0
  157. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/logs/LogType.java +5 -0
  158. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/password/ForgotPasswordRequest.java +14 -0
  159. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/password/ResetPasswordRequestDTO.java +12 -0
  160. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/password/ResetPasswordResponseDTO.java +16 -0
  161. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/password/UpdatePasswordRequest.java +18 -0
  162. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/password/UpdatePasswordRequestDTO.java +16 -0
  163. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/password/UpdatePasswordResponse.java +16 -0
  164. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/ping/PingUserInfos.java +46 -0
  165. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/refresh/RefreshTokenRequest.java +14 -0
  166. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/refresh/RefreshTokenResponse.java +16 -0
  167. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/roles/RoleResponse.java +26 -0
  168. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/roles/RolesResponse.java +21 -0
  169. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/tempo/ConsolidatorOrdersResponse.java +14 -0
  170. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/tempo/Customer.java +13 -0
  171. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/tempo/CustomerOrder.java +13 -0
  172. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/tempo/CustomerOrderResponse.java +14 -0
  173. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/tempo/CustomerOrdersRequest.java +17 -0
  174. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/tempo/DependenciesInformation.java +12 -0
  175. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/tempo/DependencyInformation.java +13 -0
  176. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/tempo/LinkToCustomerRequest.java +16 -0
  177. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/tempo/OfferLine.java +13 -0
  178. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/tempo/OrderStatus.java +5 -0
  179. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/tempo/TempoConsolidatedOrder.java +16 -0
  180. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/tempo/TempoOrder.java +18 -0
  181. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/tokywoky/PartnerSSOMessage.java +18 -0
  182. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/user/PingUser.java +32 -0
  183. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/model/user/ReachFiveUser.java +72 -0
  184. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/AccountAlreadyActiveException.java +7 -0
  185. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/AccountNotFoundException.java +12 -0
  186. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/CiamException.java +19 -0
  187. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/EmailAccountAlreadyExistsException.java +7 -0
  188. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/EmailNotFoundException.java +12 -0
  189. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/ErrorResource.java +81 -0
  190. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/InternalErrorApiException.java +16 -0
  191. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/InvalidBodyException.java +7 -0
  192. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/InvalidClientIdException.java +7 -0
  193. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/InvalidEncodedDataException.java +7 -0
  194. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/PingException.java +19 -0
  195. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/PresignupMailCouldNotBeSentException.java +7 -0
  196. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/PresignupMailSentException.java +7 -0
  197. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/ReachFiveException.java +19 -0
  198. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/SamePasswordException.java +12 -0
  199. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/SavedLoginCookieNotFoundException.java +14 -0
  200. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/StateNotEqualsException.java +14 -0
  201. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/TokenDoesNotMatchException.java +7 -0
  202. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/TokenExpiredWithRedirectException.java +7 -0
  203. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/TokenExpiredWithoutRedirectException.java +7 -0
  204. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/UnauthorizedException.java +12 -0
  205. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/VerificationCodeExpiredException.java +7 -0
  206. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/rest/resources/VerificationCodeInvalidException.java +7 -0
  207. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/CiamService.java +144 -0
  208. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/CookieService.java +262 -0
  209. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/JwtService.java +332 -0
  210. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/MdmService.java +40 -0
  211. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/PasswordService.java +64 -0
  212. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/PingService.java +133 -0
  213. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/ReachFiveService.java +175 -0
  214. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/RefreshService.java +165 -0
  215. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/RequestSavingService.java +60 -0
  216. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/RoleMappingService.java +177 -0
  217. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/account/AccountService.java +23 -0
  218. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/account/AccountServiceDefault.java +391 -0
  219. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/account/AccountServiceLMES.java +52 -0
  220. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/postauthent/ContextualizationService.java +67 -0
  221. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/postauthent/PostAuthenticationService.java +170 -0
  222. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/postauthent/TempoService.java +122 -0
  223. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/postauthent/TokyWokyService.java +51 -0
  224. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/postauthent/actions/MultipleBuCondition.java +24 -0
  225. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/postauthent/actions/PostAuthenticationActionsService.java +28 -0
  226. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/postauthent/actions/impl/lmfr/PostAuthenticationActionsServiceFrImpl.java +96 -0
  227. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/postauthent/actions/impl/lmit/PostAuthenticationActionsServiceWithTkWkImpl.java +92 -0
  228. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/postauthent/actions/impl/others/PostAuthenticationActionsServiceOthersImpl.java +51 -0
  229. package/cdp-due--authentication-module-master/src/main/java/com/adeo/authentication/services/postauthent/actions/utils/PostAuthenticationActionsUtils.java +68 -0
  230. package/cdp-due--authentication-module-master/src/main/resources/__tests__/authentication-module.src.test.js +117 -0
  231. package/cdp-due--authentication-module-master/src/main/resources/static/javascript/accountactivation/accountactivation.fr_FR.js.txt +11 -0
  232. package/cdp-due--authentication-module-master/src/main/resources/static/javascript/accountactivation/accountactivation.src.js +226 -0
  233. package/cdp-due--authentication-module-master/src/main/resources/static/javascript/accountactivation/accountactivationsms.fr_FR.js.txt +11 -0
  234. package/cdp-due--authentication-module-master/src/main/resources/static/javascript/accountactivation/accountactivationsms.src.js +228 -0
  235. package/cdp-due--authentication-module-master/src/main/resources/static/javascript/authentication-module.fr_FR.js.txt +11 -0
  236. package/cdp-due--authentication-module-master/src/main/resources/static/javascript/authentication-module.src.js +733 -0
  237. package/cdp-due--authentication-module-master/src/main/resources/static/javascript/authentication-password-reset.fr_FR.js.txt +11 -0
  238. package/cdp-due--authentication-module-master/src/main/resources/static/javascript/authentication-password-reset.src.js +152 -0
  239. package/cdp-due--authentication-module-master/src/main/resources/static/javascript/authentication-password-update.fr_FR.js.txt +11 -0
  240. package/cdp-due--authentication-module-master/src/main/resources/static/javascript/authentication-password-update.src.js +219 -0
  241. package/cdp-due--authentication-module-master/src/main/resources/static/javascript/authentication-verify-email.fr_FR.js.txt +11 -0
  242. package/cdp-due--authentication-module-master/src/main/resources/static/javascript/authentication-verify-email.src.js +123 -0
  243. package/cdp-due--authentication-module-master/src/main/resources/static/javascript/authentication-verify-sms.fr_FR.js.txt +11 -0
  244. package/cdp-due--authentication-module-master/src/main/resources/static/javascript/authentication-verify-sms.src.js +168 -0
  245. package/cdp-due--authentication-module-master/src/main/resources/static/javascript/keepalive.fr_FR.js.txt +14 -0
  246. package/cdp-due--authentication-module-master/src/main/resources/static/javascript/keepalive.src.js +47 -0
  247. package/cdp-due--authentication-module-master/src/main/resources/static/javascript/keepaliveworker.fr_FR.js.txt +14 -0
  248. package/cdp-due--authentication-module-master/src/main/resources/static/javascript/keepaliveworker.src.js +125 -0
  249. package/cdp-due--authentication-module-master/src/main/resources/static/javascript/locales/build.json +3 -0
  250. package/cdp-due--authentication-module-master/src/main/resources/static/javascript/locales/messages_es_ES.json +2 -0
  251. package/cdp-due--authentication-module-master/src/main/resources/static/javascript/locales/messages_fr_FR.json +2 -0
  252. package/cdp-due--authentication-module-master/src/main/resources/static/javascript/locales/messages_it_IT.json +2 -0
  253. package/cdp-due--authentication-module-master/src/main/resources/static/javascript/locales/messages_pl_PL.json +3 -0
  254. package/cdp-due--authentication-module-master/src/main/resources/static/javascript/locales/messages_pt_PT.json +2 -0
  255. package/cdp-due--authentication-module-master/src/main/resources/static/javascript/trackingEvents.js +116 -0
  256. package/cdp-due--authentication-module-master/src/main/resources/static/sass/_atoms/_titles-texts.scss +1 -0
  257. package/cdp-due--authentication-module-master/src/main/resources/static/sass/_patchs/_compatibilite-marcopolo.scss +17 -0
  258. package/cdp-due--authentication-module-master/src/main/resources/static/sass/accountactivation/accountactivation.css.txt +23 -0
  259. package/cdp-due--authentication-module-master/src/main/resources/static/sass/accountactivation/accountactivation.src.scss +123 -0
  260. package/cdp-due--authentication-module-master/src/main/resources/static/sass/authentication-module.css.txt +11 -0
  261. package/cdp-due--authentication-module-master/src/main/resources/static/sass/authentication-module.src.scss +294 -0
  262. package/cdp-due--authentication-module-master/src/main/resources/static/sass/authentication-password-reset.css.txt +11 -0
  263. package/cdp-due--authentication-module-master/src/main/resources/static/sass/authentication-password-reset.src.scss +76 -0
  264. package/cdp-due--authentication-module-master/src/main/resources/static/sass/authentication-password-update.css.txt +11 -0
  265. package/cdp-due--authentication-module-master/src/main/resources/static/sass/authentication-password-update.src.scss +140 -0
  266. package/cdp-due--authentication-module-master/src/main/resources/static/sass/authentication-vad.css.txt +11 -0
  267. package/cdp-due--authentication-module-master/src/main/resources/static/sass/authentication-vad.src.scss +181 -0
  268. package/cdp-due--authentication-module-master/src/main/resources/static/sass/authentication-verify-email.css.txt +11 -0
  269. package/cdp-due--authentication-module-master/src/main/resources/static/sass/authentication-verify-email.src.scss +76 -0
  270. package/cdp-due--authentication-module-master/src/main/resources/static/sass/authentication-verify-sms.css.txt +12 -0
  271. package/cdp-due--authentication-module-master/src/main/resources/static/sass/authentication-verify-sms.src.scss +127 -0
  272. package/cdp-due--authentication-module-master/src/main/resources/templates/components/accountactivation/accountactivation.ftlh +130 -0
  273. package/cdp-due--authentication-module-master/src/main/resources/templates/components/accountactivation/accountactivationsms.ftlh +147 -0
  274. package/cdp-due--authentication-module-master/src/main/resources/templates/components/empty.ftl +1 -0
  275. package/cdp-due--authentication-module-master/src/main/resources/templates/components/keepalive/keepalive.ftlh +1 -0
  276. package/cdp-due--authentication-module-master/src/main/resources/templates/components/landing/home.ftl +26 -0
  277. package/cdp-due--authentication-module-master/src/main/resources/templates/components/login/callback.ftl +5 -0
  278. package/cdp-due--authentication-module-master/src/main/resources/templates/components/login/login.ftlh +3 -0
  279. package/cdp-due--authentication-module-master/src/main/resources/templates/components/login/loginVAD.ftlh +53 -0
  280. package/cdp-due--authentication-module-master/src/main/resources/templates/components/login/loginoaa.ftlh +3 -0
  281. package/cdp-due--authentication-module-master/src/main/resources/templates/components/login/reachfive.ftl +0 -0
  282. package/cdp-due--authentication-module-master/src/main/resources/templates/components/login/separator.ftl +3 -0
  283. package/cdp-due--authentication-module-master/src/main/resources/templates/components/login/verify-email.ftlh +107 -0
  284. package/cdp-due--authentication-module-master/src/main/resources/templates/components/login/verify-sms.ftlh +166 -0
  285. package/cdp-due--authentication-module-master/src/main/resources/templates/components/molecules/loginContext.ftlh +49 -0
  286. package/cdp-due--authentication-module-master/src/main/resources/templates/components/molecules/loginEmail.ftlh +156 -0
  287. package/cdp-due--authentication-module-master/src/main/resources/templates/components/molecules/loginForm.ftlh +47 -0
  288. package/cdp-due--authentication-module-master/src/main/resources/templates/components/molecules/loginPassword.ftlh +72 -0
  289. package/cdp-due--authentication-module-master/src/main/resources/templates/components/password/reset.ftlh +107 -0
  290. package/cdp-due--authentication-module-master/src/main/resources/templates/components/password/update.ftlh +115 -0
  291. package/cdp-due--authentication-module-master/src/test/java/com/adeo/authentication/components/accountactivation/AccountActivationComponentTest.java +114 -0
  292. package/cdp-due--authentication-module-master/src/test/java/com/adeo/authentication/components/callback/CallbackControllerTest.java +70 -0
  293. package/cdp-due--authentication-module-master/src/test/java/com/adeo/authentication/components/callback/CallbackPingControllerTest.java +137 -0
  294. package/cdp-due--authentication-module-master/src/test/java/com/adeo/authentication/components/callback/RedirectToControllerTest.java +173 -0
  295. package/cdp-due--authentication-module-master/src/test/java/com/adeo/authentication/components/login/LoginControllerTest.java +93 -0
  296. package/cdp-due--authentication-module-master/src/test/java/com/adeo/authentication/controllers/AccountControllerTest.java +302 -0
  297. package/cdp-due--authentication-module-master/src/test/java/com/adeo/authentication/services/RoleMappingServiceTest.java +86 -0
  298. package/cdp-due--authentication-module-master/src/test/java/com/adeo/authentication/services/postauthent/PostAuthenticationServiceTest.java +64 -0
  299. package/cdp-due--customer-space-module-master/.babelrc +16 -0
  300. package/cdp-due--customer-space-module-master/.browserslistrc +2 -0
  301. package/cdp-due--customer-space-module-master/.dockerignore +3 -0
  302. package/cdp-due--customer-space-module-master/.editorconfig +5 -0
  303. package/cdp-due--customer-space-module-master/.eslintrc.js +226 -0
  304. package/cdp-due--customer-space-module-master/.eslintrc.mandatory.js +53 -0
  305. package/cdp-due--customer-space-module-master/.github/settings.xml +54 -0
  306. package/cdp-due--customer-space-module-master/.github/workflows/build-branch.yml +69 -0
  307. package/cdp-due--customer-space-module-master/.github/workflows/build-release.yml +23 -0
  308. package/cdp-due--customer-space-module-master/.github/workflows/cleanup.yml +20 -0
  309. package/cdp-due--customer-space-module-master/.github/workflows/release.yml +24 -0
  310. package/cdp-due--customer-space-module-master/.husky/pre-commit +4 -0
  311. package/cdp-due--customer-space-module-master/.husky/pre-push +18 -0
  312. package/cdp-due--customer-space-module-master/.prettierrc +12 -0
  313. package/cdp-due--customer-space-module-master/.releaserc +16 -0
  314. package/cdp-due--customer-space-module-master/.tool-versions +1 -0
  315. package/cdp-due--customer-space-module-master/.vscode/extensions.json +15 -0
  316. package/cdp-due--customer-space-module-master/.vscode/launch.json +15 -0
  317. package/cdp-due--customer-space-module-master/.vscode/settings.json +88 -0
  318. package/cdp-due--customer-space-module-master/CHANGELOG.md +9252 -0
  319. package/cdp-due--customer-space-module-master/Dockerfile +14 -0
  320. package/cdp-due--customer-space-module-master/README.md +130 -0
  321. package/cdp-due--customer-space-module-master/babel.config.js +3 -0
  322. package/cdp-due--customer-space-module-master/commitlint.config.js +1 -0
  323. package/cdp-due--customer-space-module-master/customer-space-module.quality.json +24 -0
  324. package/cdp-due--customer-space-module-master/docs/pull_request_template.md +22 -0
  325. package/cdp-due--customer-space-module-master/jest/setup.js +17 -0
  326. package/cdp-due--customer-space-module-master/jest.config.js +29 -0
  327. package/cdp-due--customer-space-module-master/jsconfig.json +11 -0
  328. package/cdp-due--customer-space-module-master/mozaic.config.js +8 -0
  329. package/cdp-due--customer-space-module-master/package-lock.json +42688 -0
  330. package/cdp-due--customer-space-module-master/package.json +111 -0
  331. package/cdp-due--customer-space-module-master/postcss.config.js +5 -0
  332. package/cdp-due--customer-space-module-master/product-info.json +3 -0
  333. package/cdp-due--customer-space-module-master/public/index.html +24 -0
  334. package/cdp-due--customer-space-module-master/public/kobi-fragment-index.html +1 -0
  335. package/cdp-due--customer-space-module-master/public/locales/messages_en_GB.json +1744 -0
  336. package/cdp-due--customer-space-module-master/public/locales/messages_es_ES.json +1760 -0
  337. package/cdp-due--customer-space-module-master/public/locales/messages_fr_FR.json +2004 -0
  338. package/cdp-due--customer-space-module-master/public/locales/messages_it_IT.json +1392 -0
  339. package/cdp-due--customer-space-module-master/public/locales/messages_pl_PL.json +1845 -0
  340. package/cdp-due--customer-space-module-master/public/locales/messages_pt_PT.json +1722 -0
  341. package/cdp-due--customer-space-module-master/public/robots.txt +2 -0
  342. package/cdp-due--customer-space-module-master/public/static/css/global.css +129 -0
  343. package/cdp-due--customer-space-module-master/public/static/img/01_Carte_Maison-No_Card.png +0 -0
  344. package/cdp-due--customer-space-module-master/public/static/img/02_Carte_Maison-Oney.png +0 -0
  345. package/cdp-due--customer-space-module-master/public/static/img/03_Carte_Maison-Card.png +0 -0
  346. package/cdp-due--customer-space-module-master/public/static/img/04_Dons_points-Confirmation.png +0 -0
  347. package/cdp-due--customer-space-module-master/public/static/img/05_MyHome_Mobile_Phone.png +0 -0
  348. package/cdp-due--customer-space-module-master/public/static/img/10_Carte_Maison-Pass.png +0 -0
  349. package/cdp-due--customer-space-module-master/public/static/img/11_Carte_Maison-1-3years.png +0 -0
  350. package/cdp-due--customer-space-module-master/public/static/img/12_Carte_Maison_App.png +0 -0
  351. package/cdp-due--customer-space-module-master/public/static/img/13_Carte_Maison_App_Background_Mobile.png +0 -0
  352. package/cdp-due--customer-space-module-master/public/static/img/14_Carte_Maison_App_Background_Desktop.png +0 -0
  353. package/cdp-due--customer-space-module-master/public/static/img/15_App_Mobile.png +0 -0
  354. package/cdp-due--customer-space-module-master/public/static/img/16_Loyalty_Card_Details_Page_Header.png +0 -0
  355. package/cdp-due--customer-space-module-master/public/static/img/CM.png +0 -0
  356. package/cdp-due--customer-space-module-master/public/static/img/Compte-Historique_achat-Liste-Empty.png +0 -0
  357. package/cdp-due--customer-space-module-master/public/static/img/LM.png +0 -0
  358. package/cdp-due--customer-space-module-master/public/static/img/Leroy_et_Moi_header.svg +9 -0
  359. package/cdp-due--customer-space-module-master/public/static/img/account-creation.jpg +0 -0
  360. package/cdp-due--customer-space-module-master/public/static/img/apple.svg +3 -0
  361. package/cdp-due--customer-space-module-master/public/static/img/bg-pres-kzp.png +0 -0
  362. package/cdp-due--customer-space-module-master/public/static/img/compte-historique_achat-liste-empty.svg +87 -0
  363. package/cdp-due--customer-space-module-master/public/static/img/coowner-invitation-expired_img.png +0 -0
  364. package/cdp-due--customer-space-module-master/public/static/img/coowner-invitation-valid_background.png +0 -0
  365. package/cdp-due--customer-space-module-master/public/static/img/coowner-invitation-wrong-account_background.png +0 -0
  366. package/cdp-due--customer-space-module-master/public/static/img/duplicated-background.png +0 -0
  367. package/cdp-due--customer-space-module-master/public/static/img/elo.svg +9 -0
  368. package/cdp-due--customer-space-module-master/public/static/img/empty-autocomplete-list.png +0 -0
  369. package/cdp-due--customer-space-module-master/public/static/img/empty-list.svg +1 -0
  370. package/cdp-due--customer-space-module-master/public/static/img/empty_state.png +0 -0
  371. package/cdp-due--customer-space-module-master/public/static/img/facebook.svg +8 -0
  372. package/cdp-due--customer-space-module-master/public/static/img/google.svg +6 -0
  373. package/cdp-due--customer-space-module-master/public/static/img/info-blue.svg +8 -0
  374. package/cdp-due--customer-space-module-master/public/static/img/info.svg +3 -0
  375. package/cdp-due--customer-space-module-master/public/static/img/ipn-access-denied-img.svg +76 -0
  376. package/cdp-due--customer-space-module-master/public/static/img/logo.png +0 -0
  377. package/cdp-due--customer-space-module-master/public/static/img/loyalty-selection.jpg +0 -0
  378. package/cdp-due--customer-space-module-master/public/static/img/no_result.png +0 -0
  379. package/cdp-due--customer-space-module-master/public/static/img/picto_App_Store.png +0 -0
  380. package/cdp-due--customer-space-module-master/public/static/img/picto_Carte_Maison.png +0 -0
  381. package/cdp-due--customer-space-module-master/public/static/img/picto_Pass_Maison.png +0 -0
  382. package/cdp-due--customer-space-module-master/public/static/img/plan_sample1.jpg +0 -0
  383. package/cdp-due--customer-space-module-master/public/static/img/plan_sample2.jpg +0 -0
  384. package/cdp-due--customer-space-module-master/public/static/img/plan_sample3.jpg +0 -0
  385. package/cdp-due--customer-space-module-master/public/static/img/right.svg +3 -0
  386. package/cdp-due--customer-space-module-master/public/static/img/sent-email-confirmation-picture.svg +37 -0
  387. package/cdp-due--customer-space-module-master/public/static/img/shopping-list-empty.svg +63 -0
  388. package/cdp-due--customer-space-module-master/public/static/img/ticket.png +0 -0
  389. package/cdp-due--customer-space-module-master/public/static/img/unauthorized.svg +73 -0
  390. package/cdp-due--customer-space-module-master/public/static/img/voucher-empty.png +0 -0
  391. package/cdp-due--customer-space-module-master/public/static/img/wrong.svg +3 -0
  392. package/cdp-due--customer-space-module-master/scripts/build/build.sh +15 -0
  393. package/cdp-due--customer-space-module-master/scripts/build/kobi-post-build.js +74 -0
  394. package/cdp-due--customer-space-module-master/scripts/build/locales-minify.js +17 -0
  395. package/cdp-due--customer-space-module-master/scripts/common/app.variables.sh +26 -0
  396. package/cdp-due--customer-space-module-master/scripts/common/app.variables_common.sh +63 -0
  397. package/cdp-due--customer-space-module-master/scripts/common/app.variables_customer_space.sh +53 -0
  398. package/cdp-due--customer-space-module-master/scripts/common/app.variables_customer_space_no_layout.sh +46 -0
  399. package/cdp-due--customer-space-module-master/scripts/common/createConfig.sh +22 -0
  400. package/cdp-due--customer-space-module-master/scripts/deploy/createLocaleConfig.sh +21 -0
  401. package/cdp-due--customer-space-module-master/scripts/deploy/createNginxConfig.sh +48 -0
  402. package/cdp-due--customer-space-module-master/scripts/deploy/docker-entrypoint.sh +29 -0
  403. package/cdp-due--customer-space-module-master/scripts/deploy/kobi_registration.sh +31 -0
  404. package/cdp-due--customer-space-module-master/scripts/deploy/variables.sh +11 -0
  405. package/cdp-due--customer-space-module-master/scripts/dev/docker-local.sh +6 -0
  406. package/cdp-due--customer-space-module-master/scripts/dev/phrase.sh +10 -0
  407. package/cdp-due--customer-space-module-master/scripts/dev/prepareI18n.js +28 -0
  408. package/cdp-due--customer-space-module-master/scripts/dev/serve.sh +38 -0
  409. package/cdp-due--customer-space-module-master/scripts/lint.sh +3 -0
  410. package/cdp-due--customer-space-module-master/scripts/test.sh +8 -0
  411. package/cdp-due--customer-space-module-master/scripts/utils/locales/check-translations.js +43 -0
  412. package/cdp-due--customer-space-module-master/scripts/utils/locales/extract-translations.js +26 -0
  413. package/cdp-due--customer-space-module-master/scripts/utils/locales/find-in-translations.js +28 -0
  414. package/cdp-due--customer-space-module-master/scripts/utils/locales/locales.js +22 -0
  415. package/cdp-due--customer-space-module-master/scripts/utils/locales/locate-route-from-translations.js +57 -0
  416. package/cdp-due--customer-space-module-master/scripts/utils/version/package-version.update.sh +16 -0
  417. package/cdp-due--customer-space-module-master/scripts/utils/version/print-package-version.js +12 -0
  418. package/cdp-due--customer-space-module-master/scripts/utils/version/random-patch-package-version.js +17 -0
  419. package/cdp-due--customer-space-module-master/sonar-project.properties +9 -0
  420. package/cdp-due--customer-space-module-master/src/App.vue +21 -0
  421. package/cdp-due--customer-space-module-master/src/assets/tokens/scss/_tokens.scss +2 -0
  422. package/cdp-due--customer-space-module-master/src/authentication/IpnAuthorize.vue +24 -0
  423. package/cdp-due--customer-space-module-master/src/authentication/IpnRole.vue +22 -0
  424. package/cdp-due--customer-space-module-master/src/authentication/constants.js +59 -0
  425. package/cdp-due--customer-space-module-master/src/authentication/index.js +41 -0
  426. package/cdp-due--customer-space-module-master/src/authentication/module/actions.js +17 -0
  427. package/cdp-due--customer-space-module-master/src/authentication/module/constants.js +10 -0
  428. package/cdp-due--customer-space-module-master/src/authentication/module/getters.js +36 -0
  429. package/cdp-due--customer-space-module-master/src/authentication/module/index.js +23 -0
  430. package/cdp-due--customer-space-module-master/src/authentication/useAuthorization.js +26 -0
  431. package/cdp-due--customer-space-module-master/src/authentication/useRole.js +25 -0
  432. package/cdp-due--customer-space-module-master/src/common/clients/coOwnerInvitation.client.js +9 -0
  433. package/cdp-due--customer-space-module-master/src/common/clients/preexistence.client.js +9 -0
  434. package/cdp-due--customer-space-module-master/src/components/DownloadLoyaltyCardButton.vue +28 -0
  435. package/cdp-due--customer-space-module-master/src/components/IpnBanner.vue +118 -0
  436. package/cdp-due--customer-space-module-master/src/components/IpnContainer.vue +57 -0
  437. package/cdp-due--customer-space-module-master/src/components/IpnDashboardButton.vue +27 -0
  438. package/cdp-due--customer-space-module-master/src/components/IpnLinkBox.vue +156 -0
  439. package/cdp-due--customer-space-module-master/src/components/IpnTitle.vue +38 -0
  440. package/cdp-due--customer-space-module-master/src/components/SubTitle.vue +25 -0
  441. package/cdp-due--customer-space-module-master/src/components/Title.vue +49 -0
  442. package/cdp-due--customer-space-module-master/src/components/Tooltip.vue +124 -0
  443. package/cdp-due--customer-space-module-master/src/components/barcode-reader/BarcodeReader.vue +31 -0
  444. package/cdp-due--customer-space-module-master/src/components/barcode-reader/barcodeReader.rules.js +27 -0
  445. package/cdp-due--customer-space-module-master/src/components/barcode-reader/useBarcodeReader.js +5 -0
  446. package/cdp-due--customer-space-module-master/src/components/button-with-custom-icon/ButtonWithCustomIcon.vue +42 -0
  447. package/cdp-due--customer-space-module-master/src/components/datatable/IpnDatatable.vue +782 -0
  448. package/cdp-due--customer-space-module-master/src/components/display-more/DisplayMore.vue +54 -0
  449. package/cdp-due--customer-space-module-master/src/components/divider/McDivider.vue +42 -0
  450. package/cdp-due--customer-space-module-master/src/components/empty-page/EmptyPage.vue +106 -0
  451. package/cdp-due--customer-space-module-master/src/components/feature-flipper/FeatureFlipper.vue +17 -0
  452. package/cdp-due--customer-space-module-master/src/components/feature-flipper/__tests__/isFeatureEnabled.rules.test.js +15 -0
  453. package/cdp-due--customer-space-module-master/src/components/feature-flipper/isFeatureEnabled.rules.js +12 -0
  454. package/cdp-due--customer-space-module-master/src/components/feature-flipper/useIsFeatureEnabled.js +9 -0
  455. package/cdp-due--customer-space-module-master/src/components/grid/MlContainer.vue +39 -0
  456. package/cdp-due--customer-space-module-master/src/components/grid/MlFlexy.vue +70 -0
  457. package/cdp-due--customer-space-module-master/src/components/grid/MlFlexyCol.vue +42 -0
  458. package/cdp-due--customer-space-module-master/src/components/html-expand/HtmlExpand.vue +22 -0
  459. package/cdp-due--customer-space-module-master/src/components/html-expand/htmlExpand.composable.js +24 -0
  460. package/cdp-due--customer-space-module-master/src/components/information-box/InformationBox.vue +112 -0
  461. package/cdp-due--customer-space-module-master/src/components/information-details-box/InformationDetailsBox.vue +44 -0
  462. package/cdp-due--customer-space-module-master/src/components/ipn-bu-content/IpnBuComponent.vue +18 -0
  463. package/cdp-due--customer-space-module-master/src/components/ipn-button-with-icon/IpnButtonWithIcon.vue +36 -0
  464. package/cdp-due--customer-space-module-master/src/components/ipn-commons/LoyaltyNotification/LoyaltyNotification.composable.js +31 -0
  465. package/cdp-due--customer-space-module-master/src/components/ipn-commons/LoyaltyNotification/LoyaltyNotification.rules.js +25 -0
  466. package/cdp-due--customer-space-module-master/src/components/ipn-commons/LoyaltyNotification/LoyaltyNotification.vue +80 -0
  467. package/cdp-due--customer-space-module-master/src/components/ipn-commons/LoyaltyNotification/__tests__/LoyaltyNotification.rules.test.js +34 -0
  468. package/cdp-due--customer-space-module-master/src/components/ipn-commons/address/Address.default.vue +66 -0
  469. package/cdp-due--customer-space-module-master/src/components/ipn-commons/address/Address.eslm.vue +76 -0
  470. package/cdp-due--customer-space-module-master/src/components/ipn-commons/address/Address.frlm.vue +90 -0
  471. package/cdp-due--customer-space-module-master/src/components/ipn-commons/address/Address.itlm.vue +76 -0
  472. package/cdp-due--customer-space-module-master/src/components/ipn-commons/address/Address.vue +9 -0
  473. package/cdp-due--customer-space-module-master/src/components/ipn-commons/address/additionalInfosAddress.rules.js +16 -0
  474. package/cdp-due--customer-space-module-master/src/components/ipn-commons/address/addressConfig.common.js +86 -0
  475. package/cdp-due--customer-space-module-master/src/components/ipn-commons/address/provinceAddressConfig.js +15 -0
  476. package/cdp-due--customer-space-module-master/src/components/ipn-commons/address/useAddress.default.js +91 -0
  477. package/cdp-due--customer-space-module-master/src/components/ipn-commons/address/useAddress.eslm.js +94 -0
  478. package/cdp-due--customer-space-module-master/src/components/ipn-commons/address/useAddress.itlm.js +94 -0
  479. package/cdp-due--customer-space-module-master/src/components/ipn-commons/cards/CardWithIcon.vue +117 -0
  480. package/cdp-due--customer-space-module-master/src/components/ipn-commons/cards/CardWithLabel.vue +77 -0
  481. package/cdp-due--customer-space-module-master/src/components/ipn-commons/city/City.vue +40 -0
  482. package/cdp-due--customer-space-module-master/src/components/ipn-commons/city/cityConfig.js +31 -0
  483. package/cdp-due--customer-space-module-master/src/components/ipn-commons/city/rules.js +50 -0
  484. package/cdp-due--customer-space-module-master/src/components/ipn-commons/inputOrSelectField/InputOrSelectField.vue +34 -0
  485. package/cdp-due--customer-space-module-master/src/components/ipn-commons/inputOrSelectField/__tests__/rules.test.js +108 -0
  486. package/cdp-due--customer-space-module-master/src/components/ipn-commons/inputOrSelectField/inputOrSelectConfig.js +26 -0
  487. package/cdp-due--customer-space-module-master/src/components/ipn-commons/inputOrSelectField/rules.js +55 -0
  488. package/cdp-due--customer-space-module-master/src/components/ipn-commons/inputOrSelectField/useInputOrSelectField.js +37 -0
  489. package/cdp-due--customer-space-module-master/src/components/ipn-commons/phone/phoneConfig.js +12 -0
  490. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/Stepper.vue +180 -0
  491. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/LoyaltySelection/LoyaltySelection.events.js +6 -0
  492. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/LoyaltySelection/LoyaltySelection.vue +125 -0
  493. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/StepAdditionalInformation.vue +50 -0
  494. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/StepPersonalDataInfos/StepPersonalDataInfos.vue +116 -0
  495. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/StepPersonalDataInfos/administrativeIdentifier/AdministrativeIdentifier.eslm.vue +66 -0
  496. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/StepPersonalDataInfos/administrativeIdentifier/__tests__/administrativeIdentifier.rules.test.js +34 -0
  497. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/StepPersonalDataInfos/administrativeIdentifier/administrativeIdentifier.composable.js +31 -0
  498. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/StepPersonalDataInfos/administrativeIdentifier/administrativeIdentifier.rules.js +127 -0
  499. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/StepPersonalDataInfos/rules/__tests__/personalDataInfos.rules.test.js +151 -0
  500. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/StepPersonalDataInfos/rules/accountCreationFields.js +124 -0
  501. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/StepPersonalDataInfos/rules/generatePersonalFields.js +46 -0
  502. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/StepPersonalDataInfos/rules/personalDataInfos.rules.js +61 -0
  503. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/StepPersonalDataInfos/rules/professionalDataInfo.rules.js +77 -0
  504. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/StepPersonalDataInfos/translations.js +5 -0
  505. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/StepPersonalDataInfos/useStepPersonalDataInfos.js +71 -0
  506. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/communication/CommunicationConfig.js +72 -0
  507. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/communication/StepCommunication.default.vue +212 -0
  508. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/communication/StepCommunication.eslm.vue +14 -0
  509. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/communication/StepCommunication.frlm.vue +169 -0
  510. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/communication/StepCommunication.itlm.vue +180 -0
  511. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/communication/StepCommunication.per-channel.vue +35 -0
  512. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/communication/StepCommunication.pllm.vue +14 -0
  513. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/communication/StepCommunication.ptlm.vue +14 -0
  514. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/communication/StepCommunication.vue +12 -0
  515. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/communication/TermsOfUseValidation/TermsOfUseValidation.vue +53 -0
  516. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/communication/TermsOfUseValidation/termsOfUseValidation.composable.js +24 -0
  517. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/communication/TermsOfUseValidation/termsOfUseValidation.rules.js +6 -0
  518. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/communication/composables/useCGU.js +54 -0
  519. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/communication/constants.js +3 -0
  520. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/personal-data-address/LoyaltyMembershipAddress.vue +22 -0
  521. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/personal-data-address/StepPersonalDataAddress.vue +96 -0
  522. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/personal-data-address/__tests__/stepPersonalDataAddressConfig.frlm.test.js +37 -0
  523. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/personal-data-address/composables/useAdditionalFields.js +34 -0
  524. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/personal-data-address/loyaltyMemberShipAddress.composable.js +23 -0
  525. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/personal-data-address/personaDataAddressStep.composable.js +22 -0
  526. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/personal-data-address/personaDataAddressStep.rules.js +18 -0
  527. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/personal-data-address/stepPersonalDataAddressConfig.frlm.js +31 -0
  528. package/cdp-due--customer-space-module-master/src/components/ipn-commons/stepper/steps/stepAdditionalInformation/useAdditionalInformation.js +141 -0
  529. package/cdp-due--customer-space-module-master/src/components/ipn-commons/zipCode/ZipCode.vue +30 -0
  530. package/cdp-due--customer-space-module-master/src/components/ipn-commons/zipCode/hook.js +25 -0
  531. package/cdp-due--customer-space-module-master/src/components/ipn-commons/zipCode/rules.js +12 -0
  532. package/cdp-due--customer-space-module-master/src/components/ipn-commons/zipCode/zipCodeConfig.js +16 -0
  533. package/cdp-due--customer-space-module-master/src/components/ipn-components/HeadingTitle.vue +62 -0
  534. package/cdp-due--customer-space-module-master/src/components/ipn-focus-lock/IpnFocusLock.vue +196 -0
  535. package/cdp-due--customer-space-module-master/src/components/ipn-form/IpnControl.vue +142 -0
  536. package/cdp-due--customer-space-module-master/src/components/ipn-form/IpnDatePicker.vue +36 -0
  537. package/cdp-due--customer-space-module-master/src/components/ipn-form/IpnField.vue +142 -0
  538. package/cdp-due--customer-space-module-master/src/components/ipn-form/IpnForm.vue +107 -0
  539. package/cdp-due--customer-space-module-master/src/components/ipn-form/IpnFormSubmit.vue +39 -0
  540. package/cdp-due--customer-space-module-master/src/components/ipn-form/__tests__/validations.test.js +764 -0
  541. package/cdp-due--customer-space-module-master/src/components/ipn-form/composables/useForm.js +82 -0
  542. package/cdp-due--customer-space-module-master/src/components/ipn-form/constants.js +9 -0
  543. package/cdp-due--customer-space-module-master/src/components/ipn-form/controls/CheckboxControl.vue +56 -0
  544. package/cdp-due--customer-space-module-master/src/components/ipn-form/controls/InputPasswordControl.vue +30 -0
  545. package/cdp-due--customer-space-module-master/src/components/ipn-form/controls/InputSuggestControl.vue +48 -0
  546. package/cdp-due--customer-space-module-master/src/components/ipn-form/controls/MultiCheckboxControl.vue +69 -0
  547. package/cdp-due--customer-space-module-master/src/components/ipn-form/controls/SelectControl.vue +52 -0
  548. package/cdp-due--customer-space-module-master/src/components/ipn-form/controls/ToggleControl.vue +48 -0
  549. package/cdp-due--customer-space-module-master/src/components/ipn-form/controls/input-control/InputControl.vue +69 -0
  550. package/cdp-due--customer-space-module-master/src/components/ipn-form/controls/input-control/__tests__/inputControl.test.js +16 -0
  551. package/cdp-due--customer-space-module-master/src/components/ipn-form/controls/input-control/inputControl.composable.js +12 -0
  552. package/cdp-due--customer-space-module-master/src/components/ipn-form/controls/input-control/inputControl.events.js +10 -0
  553. package/cdp-due--customer-space-module-master/src/components/ipn-form/controls/input-control/inputControl.rules.js +8 -0
  554. package/cdp-due--customer-space-module-master/src/components/ipn-form/controls/radio-control/RadioControl.vue +129 -0
  555. package/cdp-due--customer-space-module-master/src/components/ipn-form/controls/radio-control/RadioControlButton.vue +69 -0
  556. package/cdp-due--customer-space-module-master/src/components/ipn-form/controls/radio-control/RadioControlOption.vue +74 -0
  557. package/cdp-due--customer-space-module-master/src/components/ipn-form/ipnRadioWithContent/IpnRadioWithContent.vue +76 -0
  558. package/cdp-due--customer-space-module-master/src/components/ipn-form/ipnRadioWithCustomLabel/IpnRadioWithCustomLabel.vue +51 -0
  559. package/cdp-due--customer-space-module-master/src/components/ipn-form/module/actions.js +30 -0
  560. package/cdp-due--customer-space-module-master/src/components/ipn-form/module/constants.js +20 -0
  561. package/cdp-due--customer-space-module-master/src/components/ipn-form/module/getters.js +55 -0
  562. package/cdp-due--customer-space-module-master/src/components/ipn-form/module/index.js +73 -0
  563. package/cdp-due--customer-space-module-master/src/components/ipn-form/validations/constants.js +7 -0
  564. package/cdp-due--customer-space-module-master/src/components/ipn-form/validations/getValidatePassword.js +39 -0
  565. package/cdp-due--customer-space-module-master/src/components/ipn-form/validations/validateLimitCaractersOfCardNumber.js +6 -0
  566. package/cdp-due--customer-space-module-master/src/components/ipn-form/validations/validateNumericData.js +7 -0
  567. package/cdp-due--customer-space-module-master/src/components/ipn-form/validations/validateRegExp.js +12 -0
  568. package/cdp-due--customer-space-module-master/src/components/ipn-form/validations/validateVatNumberPerCountry.js +15 -0
  569. package/cdp-due--customer-space-module-master/src/components/ipn-form/validations.js +593 -0
  570. package/cdp-due--customer-space-module-master/src/components/ipn-link/IpnLink.vue +32 -0
  571. package/cdp-due--customer-space-module-master/src/components/ipn-link/__tests__/checkIpnLink.test.js +20 -0
  572. package/cdp-due--customer-space-module-master/src/components/ipn-link/rules.js +8 -0
  573. package/cdp-due--customer-space-module-master/src/components/ipn-notification-toast/IpnNotificationToast.vue +61 -0
  574. package/cdp-due--customer-space-module-master/src/components/ipn-notification-toast/module/actions.js +11 -0
  575. package/cdp-due--customer-space-module-master/src/components/ipn-notification-toast/module/constants.js +5 -0
  576. package/cdp-due--customer-space-module-master/src/components/ipn-notification-toast/module/getters.js +7 -0
  577. package/cdp-due--customer-space-module-master/src/components/ipn-notification-toast/module/index.js +43 -0
  578. package/cdp-due--customer-space-module-master/src/components/ipn-picture/IpnPicture.vue +17 -0
  579. package/cdp-due--customer-space-module-master/src/components/ipn-search-result-card/IpnSearchResultCard.vue +331 -0
  580. package/cdp-due--customer-space-module-master/src/components/ipn-search-result-card/ipnSearchResultCard.composable.js +27 -0
  581. package/cdp-due--customer-space-module-master/src/components/ipn-search-result-card/ipnSearchResultCard.rules.js +63 -0
  582. package/cdp-due--customer-space-module-master/src/components/ipn-search-result-card/tagConfig.js +29 -0
  583. package/cdp-due--customer-space-module-master/src/components/ipn-store/IpnStore.vue +99 -0
  584. package/cdp-due--customer-space-module-master/src/components/ipn-store/composables/useOptions.js +12 -0
  585. package/cdp-due--customer-space-module-master/src/components/ipn-store/composables/useSpecificConfig.js +9 -0
  586. package/cdp-due--customer-space-module-master/src/components/ipn-store/constants.js +4 -0
  587. package/cdp-due--customer-space-module-master/src/components/ipn-store/storeConfig.js +12 -0
  588. package/cdp-due--customer-space-module-master/src/components/ipn-store/utils.js +3 -0
  589. package/cdp-due--customer-space-module-master/src/components/ipn-video/IpnVideo.vue +76 -0
  590. package/cdp-due--customer-space-module-master/src/components/ipn-video/ipnVideo.rules.js +36 -0
  591. package/cdp-due--customer-space-module-master/src/components/layout-box/LayoutBox.vue +78 -0
  592. package/cdp-due--customer-space-module-master/src/components/loading/IpnLoadingButton.vue +67 -0
  593. package/cdp-due--customer-space-module-master/src/components/loading/Loading.vue +124 -0
  594. package/cdp-due--customer-space-module-master/src/components/loading/LoadingContainer.vue +66 -0
  595. package/cdp-due--customer-space-module-master/src/components/loading/TanstackLoading.vue +121 -0
  596. package/cdp-due--customer-space-module-master/src/components/loading/TanstackLoadingContainer.vue +68 -0
  597. package/cdp-due--customer-space-module-master/src/components/loading/loaders.js +39 -0
  598. package/cdp-due--customer-space-module-master/src/components/loading/module/actions.js +17 -0
  599. package/cdp-due--customer-space-module-master/src/components/loading/module/constants.js +7 -0
  600. package/cdp-due--customer-space-module-master/src/components/loading/module/getters.js +12 -0
  601. package/cdp-due--customer-space-module-master/src/components/loading/module/index.js +23 -0
  602. package/cdp-due--customer-space-module-master/src/components/loading/useLoading.js +8 -0
  603. package/cdp-due--customer-space-module-master/src/components/mozaic/m-layer/MLayer.vue +167 -0
  604. package/cdp-due--customer-space-module-master/src/components/mozaic/m-link/MLink.vue +114 -0
  605. package/cdp-due--customer-space-module-master/src/components/mozaic/m-modal/MModal.vue +156 -0
  606. package/cdp-due--customer-space-module-master/src/components/mozaic/m-modal/NMModal.vue +175 -0
  607. package/cdp-due--customer-space-module-master/src/components/mozaic/m-notification/MNotification.vue +71 -0
  608. package/cdp-due--customer-space-module-master/src/components/mozaic/m-notification-toast/MNotificationToast.vue +126 -0
  609. package/cdp-due--customer-space-module-master/src/components/mozaic/m-notification-toast/MNotificationToastItem.vue +76 -0
  610. package/cdp-due--customer-space-module-master/src/components/mozaic/m-password/MPassword.vue +148 -0
  611. package/cdp-due--customer-space-module-master/src/components/mozaic/m-radio/MRadio.vue +70 -0
  612. package/cdp-due--customer-space-module-master/src/components/mozaic/m-select/MSelect.vue +88 -0
  613. package/cdp-due--customer-space-module-master/src/components/mozaic/m-stepper/MStepper.vue +125 -0
  614. package/cdp-due--customer-space-module-master/src/components/mozaic/m-stepper/MStepperStep.vue +76 -0
  615. package/cdp-due--customer-space-module-master/src/components/mozaic/m-tag-custom/MTagCustom.vue +131 -0
  616. package/cdp-due--customer-space-module-master/src/components/product-box/ProductBox.vue +82 -0
  617. package/cdp-due--customer-space-module-master/src/components/show-more-link/ShowMoreLink.vue +20 -0
  618. package/cdp-due--customer-space-module-master/src/components/show-more-link/__tests__/showMoreLink.rules.test.js +25 -0
  619. package/cdp-due--customer-space-module-master/src/components/show-more-link/showMoreLink.composable.js +24 -0
  620. package/cdp-due--customer-space-module-master/src/components/show-more-link/showMoreLink.rules.js +15 -0
  621. package/cdp-due--customer-space-module-master/src/components/tag-list/TagList.vue +100 -0
  622. package/cdp-due--customer-space-module-master/src/components/tag-list/tagList.rules.js +8 -0
  623. package/cdp-due--customer-space-module-master/src/components/text-expand/TextExpand.vue +31 -0
  624. package/cdp-due--customer-space-module-master/src/components/text-expand/__tests__/textExpand.rules.test.js +37 -0
  625. package/cdp-due--customer-space-module-master/src/components/text-expand/textExpand.composable.js +25 -0
  626. package/cdp-due--customer-space-module-master/src/components/text-expand/textExpand.rules.js +14 -0
  627. package/cdp-due--customer-space-module-master/src/composables/useAdminSearchCustomers.js +11 -0
  628. package/cdp-due--customer-space-module-master/src/composables/useBuComponent.js +5 -0
  629. package/cdp-due--customer-space-module-master/src/composables/useBuConfig.js +34 -0
  630. package/cdp-due--customer-space-module-master/src/composables/useCitiesOptions.js +33 -0
  631. package/cdp-due--customer-space-module-master/src/composables/useCountry.js +70 -0
  632. package/cdp-due--customer-space-module-master/src/composables/useCustomDiscounts.js +63 -0
  633. package/cdp-due--customer-space-module-master/src/composables/useCustomerConsents.js +129 -0
  634. package/cdp-due--customer-space-module-master/src/composables/useCustomerInfo.js +146 -0
  635. package/cdp-due--customer-space-module-master/src/composables/useCustomerLoyalty.js +85 -0
  636. package/cdp-due--customer-space-module-master/src/composables/useCustomerValues.js +23 -0
  637. package/cdp-due--customer-space-module-master/src/composables/useDefaultStoreCode.js +34 -0
  638. package/cdp-due--customer-space-module-master/src/composables/useDiscounts.js +97 -0
  639. package/cdp-due--customer-space-module-master/src/composables/useDisplayLoyalty.js +23 -0
  640. package/cdp-due--customer-space-module-master/src/composables/useIpnLink.js +10 -0
  641. package/cdp-due--customer-space-module-master/src/composables/useLoyaltyAdvantages.js +33 -0
  642. package/cdp-due--customer-space-module-master/src/composables/useNavigation.js +25 -0
  643. package/cdp-due--customer-space-module-master/src/composables/useStores.js +69 -0
  644. package/cdp-due--customer-space-module-master/src/composables/useUserInfo.js +15 -0
  645. package/cdp-due--customer-space-module-master/src/composables/useWindowResize.js +29 -0
  646. package/cdp-due--customer-space-module-master/src/config/account-creation/index.js +221 -0
  647. package/cdp-due--customer-space-module-master/src/config/companyTypeOptions.js +177 -0
  648. package/cdp-due--customer-space-module-master/src/config/consentMode.js +17 -0
  649. package/cdp-due--customer-space-module-master/src/config/dashboard/index.js +24 -0
  650. package/cdp-due--customer-space-module-master/src/config/fields/emailConfig.js +13 -0
  651. package/cdp-due--customer-space-module-master/src/config/fields/professionalConfig.common.js +87 -0
  652. package/cdp-due--customer-space-module-master/src/config/fields/professionalConfig.eslm.js +81 -0
  653. package/cdp-due--customer-space-module-master/src/config/fields/professionalConfig.frlm.js +259 -0
  654. package/cdp-due--customer-space-module-master/src/config/fields/professionalConfig.itlm.js +71 -0
  655. package/cdp-due--customer-space-module-master/src/config/fields/professionalConfig.pllm.js +33 -0
  656. package/cdp-due--customer-space-module-master/src/config/fields/professionalConfig.ptlm.js +68 -0
  657. package/cdp-due--customer-space-module-master/src/config/loyalty-membership/index.js +64 -0
  658. package/cdp-due--customer-space-module-master/src/config/mask.js +7 -0
  659. package/cdp-due--customer-space-module-master/src/config/personal-data/index.js +17 -0
  660. package/cdp-due--customer-space-module-master/src/config/precreation/index.js +47 -0
  661. package/cdp-due--customer-space-module-master/src/config.js +100 -0
  662. package/cdp-due--customer-space-module-master/src/constants/accountStatus.js +3 -0
  663. package/cdp-due--customer-space-module-master/src/constants/accountStep.js +11 -0
  664. package/cdp-due--customer-space-module-master/src/constants/accountType.js +9 -0
  665. package/cdp-due--customer-space-module-master/src/constants/administrativeIdentifierType.js +5 -0
  666. package/cdp-due--customer-space-module-master/src/constants/buCodes.js +8 -0
  667. package/cdp-due--customer-space-module-master/src/constants/companyType.eslm.js +70 -0
  668. package/cdp-due--customer-space-module-master/src/constants/companyType.itlm.js +40 -0
  669. package/cdp-due--customer-space-module-master/src/constants/companyType.js +55 -0
  670. package/cdp-due--customer-space-module-master/src/constants/consentModes.js +6 -0
  671. package/cdp-due--customer-space-module-master/src/constants/consentType.js +26 -0
  672. package/cdp-due--customer-space-module-master/src/constants/counterType.js +9 -0
  673. package/cdp-due--customer-space-module-master/src/constants/form/formFieldNames.js +5 -0
  674. package/cdp-due--customer-space-module-master/src/constants/form/formNames.js +14 -0
  675. package/cdp-due--customer-space-module-master/src/constants/general.js +8 -0
  676. package/cdp-due--customer-space-module-master/src/constants/houseType.js +4 -0
  677. package/cdp-due--customer-space-module-master/src/constants/httpErrors.js +1 -0
  678. package/cdp-due--customer-space-module-master/src/constants/index.js +19 -0
  679. package/cdp-due--customer-space-module-master/src/constants/inhabitantType.js +11 -0
  680. package/cdp-due--customer-space-module-master/src/constants/invoiceGenerationStatus.js +3 -0
  681. package/cdp-due--customer-space-module-master/src/constants/invoiceGenerationSteps.js +6 -0
  682. package/cdp-due--customer-space-module-master/src/constants/localStorage.js +1 -0
  683. package/cdp-due--customer-space-module-master/src/constants/loyaltyCreationState.js +3 -0
  684. package/cdp-due--customer-space-module-master/src/constants/loyaltyMembershipProcess.js +6 -0
  685. package/cdp-due--customer-space-module-master/src/constants/loyaltyMigrationStatus.js +5 -0
  686. package/cdp-due--customer-space-module-master/src/constants/loyaltyType.js +23 -0
  687. package/cdp-due--customer-space-module-master/src/constants/professionalAdministrativeIdentifierType.js +4 -0
  688. package/cdp-due--customer-space-module-master/src/constants/programTypes.js +4 -0
  689. package/cdp-due--customer-space-module-master/src/constants/provisioning.js +1 -0
  690. package/cdp-due--customer-space-module-master/src/constants/vatRegexCountryMapper.js +29 -0
  691. package/cdp-due--customer-space-module-master/src/constants/warrantyType.js +2 -0
  692. package/cdp-due--customer-space-module-master/src/contents/account/create/AccountCreationConfirm.vue +62 -0
  693. package/cdp-due--customer-space-module-master/src/contents/account/create/AccountCreationHelp.vue +124 -0
  694. package/cdp-due--customer-space-module-master/src/contents/account/create/AccountCreationStart.composable.js +9 -0
  695. package/cdp-due--customer-space-module-master/src/contents/account/create/AccountCreationStart.vue +24 -0
  696. package/cdp-due--customer-space-module-master/src/contents/account/create/AccountHavingPassPage.vue +243 -0
  697. package/cdp-due--customer-space-module-master/src/contents/account/create/accountConfig.js +73 -0
  698. package/cdp-due--customer-space-module-master/src/contents/account/create/accountCreationHelp.composable.js +9 -0
  699. package/cdp-due--customer-space-module-master/src/contents/account/create/existingCustomerPage/AccountCreationExistingCustomer.vue +135 -0
  700. package/cdp-due--customer-space-module-master/src/contents/account/create/existingCustomerPage/accountCreationExistingCustomer.composable.js +33 -0
  701. package/cdp-due--customer-space-module-master/src/contents/account/create/existingCustomerPage/accountCreationExistingCustomer.events.js +33 -0
  702. package/cdp-due--customer-space-module-master/src/contents/account/create/existingCustomerPage/accountCreationExistingCustomer.rules.js +45 -0
  703. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/AccountCreationLoyaltyAdvantages.vue +171 -0
  704. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/AccountCreationLoyaltyInfo.vue +88 -0
  705. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/AccountCreationStepperPage.vue +60 -0
  706. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/SiretLayer.vue +81 -0
  707. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/StepOptins/StepOptins.frlm.vue +163 -0
  708. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/StepOptins/StepOptins.itlm.vue +7 -0
  709. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/StepOptins.vue +112 -0
  710. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/StepOptinsConfig.js +82 -0
  711. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/Stepper.vue +78 -0
  712. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/StepperButtons.vue +32 -0
  713. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/__tests__/StepOptinsConfig.test.js +79 -0
  714. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/accountCreationLoyaltyAdvantages.composable.js +94 -0
  715. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/composables/accountCreationStepper.rules.js +94 -0
  716. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/composables/submit/handleHousing.js +15 -0
  717. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/composables/submit/onSubmit.js +9 -0
  718. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/composables/submit/onSubmit.rules.js +153 -0
  719. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/composables/useAccountCreationStepper.js +114 -0
  720. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/composables/utils/__tests__/checkIfCustomerSubscribed.test.js +28 -0
  721. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/composables/utils/__tests__/createAvailableSteps.test.js +33 -0
  722. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/composables/utils/__tests__/getStepsTests.test.js +153 -0
  723. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/composables/utils/checkIfCustomerSubscribed.js +2 -0
  724. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/composables/utils/createAvailableSteps.js +45 -0
  725. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/constants.js +16 -0
  726. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/AccountCreationAddress.vue +11 -0
  727. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/AccountCreationOptins/AccountCreationOptins.default.vue +76 -0
  728. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/AccountCreationOptins/AccountCreationOptins.eslm.vue +67 -0
  729. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/AccountCreationOptins/AccountCreationOptins.frlm.vue +80 -0
  730. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/AccountCreationOptins/AccountCreationOptins.itlm.vue +78 -0
  731. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/AccountCreationOptins/AccountCreationOptins.pllm.vue +69 -0
  732. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/AccountCreationOptins/AccountCreationOptins.ptlm.vue +71 -0
  733. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/AccountCreationOptins/AccountCreationOptins.vue +9 -0
  734. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/AccountCreationOptins/accountCreationGaEventSubmit.js +16 -0
  735. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/AccountCreationPersonalData.vue +62 -0
  736. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/accountCreationLegalTexts/AccountCreationLegalTexts.vue +136 -0
  737. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/accountCreationLoyaltyPrograms.composable.js +36 -0
  738. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/accountCreationPersonalData.composable.js +28 -0
  739. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/accountCreationPersonalData.rules.js +18 -0
  740. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/accountCreationStore/AccountCreationStore.vue +23 -0
  741. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/accountCreationStore/accountCreationStore.composable.js +64 -0
  742. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/accountCreationStore/accountCreationZipCode/AccountCreationZipCode.vue +14 -0
  743. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/accountCreationStore/accountCreationZipCode/accountCreationZipCode.composable.js +34 -0
  744. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/composables/config.js +16 -0
  745. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/composables/useInitialFormState.eslm.js +76 -0
  746. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/composables/useInitialFormState.frlm.js +66 -0
  747. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/composables/useInitialFormState.itlm.js +63 -0
  748. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/steps/AccountCreationPersonalData/composables/useInitialFormState.ptlm.js +66 -0
  749. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/termsOfUseValidation/TermsOfUseValidation.vue +91 -0
  750. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/termsOfUseValidation/termsOfUseValidation.composable.js +32 -0
  751. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/termsOfUseValidation/termsOfUseValidation.rules.js +173 -0
  752. package/cdp-due--customer-space-module-master/src/contents/account/create/stepper/useStepper.js +50 -0
  753. package/cdp-due--customer-space-module-master/src/contents/account/create/trackingEvents.js +124 -0
  754. package/cdp-due--customer-space-module-master/src/contents/account/module/actions.js +77 -0
  755. package/cdp-due--customer-space-module-master/src/contents/account/module/constants.js +32 -0
  756. package/cdp-due--customer-space-module-master/src/contents/account/module/getters.js +35 -0
  757. package/cdp-due--customer-space-module-master/src/contents/account/module/index.js +36 -0
  758. package/cdp-due--customer-space-module-master/src/contents/account/module/mutations.js +30 -0
  759. package/cdp-due--customer-space-module-master/src/contents/account/new-create/AccountCreation.vue +196 -0
  760. package/cdp-due--customer-space-module-master/src/contents/account/new-create/LoyaltyProgramSelection.vue +97 -0
  761. package/cdp-due--customer-space-module-master/src/contents/account/new-create/accountCreation.composable.js +158 -0
  762. package/cdp-due--customer-space-module-master/src/contents/account/new-create/accountCreation.constants.js +16 -0
  763. package/cdp-due--customer-space-module-master/src/contents/account/new-create/accountCreation.requests.js +33 -0
  764. package/cdp-due--customer-space-module-master/src/contents/account/new-create/accountCreation.rules.js +211 -0
  765. package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-optins/ConsentDescriptionAsTemplate.vue +22 -0
  766. package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-optins/ConsentDescriptionAsText.vue +15 -0
  767. package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-optins/ConsentsOptins.vue +22 -0
  768. package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-optins/StaticOptin.vue +43 -0
  769. package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-optins/StaticOptinRadio.vue +46 -0
  770. package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-optins/consentsOptins.composable.js +11 -0
  771. package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-optins/consentsOptins.rules.js +177 -0
  772. package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-optins/dynamic-optins/DynamicOptin.vue +90 -0
  773. package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-optins/dynamic-optins/DynamicOptins.vue +24 -0
  774. package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-optins/dynamic-optins/dynamicOptins.composable.js +21 -0
  775. package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-optins/dynamic-optins/dynamicOptins.requests.js +20 -0
  776. package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-optins/dynamic-optins/dynamicOptins.rules.js +116 -0
  777. package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-section/CguOrder.vue +5 -0
  778. package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-section/Consents.vue +87 -0
  779. package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-section/ConsentsText.vue +43 -0
  780. package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-section/cgu-block/CguBlock.vue +105 -0
  781. package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-section/cgu-block/CguField.vue +20 -0
  782. package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-section/cgu-block/CguFieldRadio.vue +19 -0
  783. package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-section/cgu-block/CguLink.vue +30 -0
  784. package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-section/cgu-block/cguBlock.composable.js +24 -0
  785. package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-section/cgu-block/cguBlock.rules.js +43 -0
  786. package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-section/consents.composable.js +24 -0
  787. package/cdp-due--customer-space-module-master/src/contents/account/new-create/consents-section/consents.rules.js +36 -0
  788. package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/DuplicatedAccount.vue +51 -0
  789. package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/duplicatedAccount.composable.js +18 -0
  790. package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/duplicatedAccount.rules.js +23 -0
  791. package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/email-confirmation/EmailConfirmation.vue +81 -0
  792. package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/email-confirmation/emailConfirmation.composable.js +10 -0
  793. package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/match-account-on-email/MatchAccountOnEmail.vue +85 -0
  794. package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/match-account-on-email/matchAccountOnEmail.composable.js +17 -0
  795. package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/match-account-on-email-and-phone/MatchAccountOnEmailAndPhone.vue +88 -0
  796. 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
  797. package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/match-account-on-phone/MatchAccountOnPhone.vue +83 -0
  798. package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/match-account-on-phone/matchAccountOnPhone.composable.js +20 -0
  799. package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/match-multiple-accounts/MatchMultipleAccounts.vue +75 -0
  800. package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/match-webaccount/MatchWebAccount.vue +97 -0
  801. package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/match-webaccount/matchWebAccount.composable.js +7 -0
  802. package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/onSubmitOrchestrator.composable.js +21 -0
  803. package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/preExistenceQueryParam.composable.js +11 -0
  804. package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/sendResetPassword.composable.js +26 -0
  805. package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/utils.js +5 -0
  806. package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/webAccountManagement.composable.js +50 -0
  807. package/cdp-due--customer-space-module-master/src/contents/account/new-create/duplicated-account/webAccountManagement.request.js +38 -0
  808. package/cdp-due--customer-space-module-master/src/contents/account/new-create/legals-section/Legals.vue +62 -0
  809. package/cdp-due--customer-space-module-master/src/contents/account/new-create/legals-section/legalsSection.composable.js +21 -0
  810. package/cdp-due--customer-space-module-master/src/contents/account/new-create/legals-section/legalsSection.config.js +57 -0
  811. package/cdp-due--customer-space-module-master/src/contents/account/new-create/legals-section/legalsSection.rules.js +24 -0
  812. package/cdp-due--customer-space-module-master/src/contents/account/new-create/module/index.js +17 -0
  813. package/cdp-due--customer-space-module-master/src/contents/account/new-create/newCreate.constants.js +4 -0
  814. package/cdp-due--customer-space-module-master/src/contents/account/new-create/personal-section/PersonalSection.vue +39 -0
  815. package/cdp-due--customer-space-module-master/src/contents/account/new-create/personal-section/password-hint/PasswordHint.vue +58 -0
  816. package/cdp-due--customer-space-module-master/src/contents/account/new-create/personal-section/password-hint/password-hint-item/PasswordHintItem.vue +69 -0
  817. package/cdp-due--customer-space-module-master/src/contents/account/new-create/personal-section/password-hint/password-hint-item/passwordHintItem.rules.js +14 -0
  818. package/cdp-due--customer-space-module-master/src/contents/account/new-create/personal-section/password-hint/passwordHint.composable.js +17 -0
  819. package/cdp-due--customer-space-module-master/src/contents/account/new-create/personal-section/personalSection.composable.js +62 -0
  820. package/cdp-due--customer-space-module-master/src/contents/account/new-create/personal-section/personalSection.constants.js +122 -0
  821. package/cdp-due--customer-space-module-master/src/contents/account/new-create/personal-section/personalSection.rules.js +62 -0
  822. package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/ProfessionalSection.vue +54 -0
  823. package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/__tests__/professionalSectionAutocomplete.test.js +29 -0
  824. package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/__tests__/professionalSectionDefault.test.js +19 -0
  825. package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-autocomplete/ClosedCompany.vue +84 -0
  826. package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-autocomplete/ProfessionalSectionAutocomplete.vue +71 -0
  827. package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-autocomplete/autocomplete-layer/AutocompleteLayer.vue +175 -0
  828. 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
  829. 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
  830. package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-autocomplete/autocomplete-layer/autocompleteLayer.composable.js +52 -0
  831. package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-autocomplete/autocomplete-layer/autocompleteLayer.requests.js +52 -0
  832. package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-autocomplete/company-details/CompanyDetails.vue +53 -0
  833. package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-autocomplete/company-details/companyDetails.composable.js +32 -0
  834. package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-autocomplete/company-details/companyDetails.requests.js +25 -0
  835. package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-autocomplete/company-details/companyDetails.rules.js +41 -0
  836. package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-autocomplete/professionalSectionAutocomplete.composable.js +48 -0
  837. package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-autocomplete/professionalSectionAutocomplete.rules.js +13 -0
  838. package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-autocomplete/search-company/SearchCompany.vue +61 -0
  839. package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-autocomplete/search-company/searchCompany.composable.js +55 -0
  840. package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-autocomplete/search-company/searchCompany.config.js +89 -0
  841. package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-autocomplete/search-company/searchCompany.events.js +3 -0
  842. package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-autocomplete/search-company/searchCompany.rules.js +41 -0
  843. package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-default/ProfessionalSectionDefault.vue +51 -0
  844. package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-default/professionalSectionDefault.composable.js +50 -0
  845. package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-default/professionalSectionDefault.config.js +226 -0
  846. package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professional-section-default/professionalSectionDefault.rules.js +37 -0
  847. package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professionalSection.composable.js +24 -0
  848. package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professionalSection.config.js +223 -0
  849. package/cdp-due--customer-space-module-master/src/contents/account/new-create/professional-section/professionalSection.rules.js +13 -0
  850. package/cdp-due--customer-space-module-master/src/contents/account/new-create/social-login/SocialLoginConnectors.vue +39 -0
  851. package/cdp-due--customer-space-module-master/src/contents/account/new-create/social-login/SocialLoginInfo.vue +43 -0
  852. package/cdp-due--customer-space-module-master/src/contents/account/new-create/social-login/socialLoginConnectors.composable.js +22 -0
  853. package/cdp-due--customer-space-module-master/src/contents/account/new-create/social-login/socialLoginConnectors.requests.js +18 -0
  854. package/cdp-due--customer-space-module-master/src/contents/account/new-create/social-login/socialLoginConnectors.rules.js +18 -0
  855. package/cdp-due--customer-space-module-master/src/contents/account/new-create/socialLoginUserInfo.composable.js +9 -0
  856. package/cdp-due--customer-space-module-master/src/contents/account/new-create/trackingEvents.js +83 -0
  857. package/cdp-due--customer-space-module-master/src/contents/account/routeConstant.js +65 -0
  858. package/cdp-due--customer-space-module-master/src/contents/account/routes.js +205 -0
  859. package/cdp-due--customer-space-module-master/src/contents/account-management/AccountManagementPage.vue +80 -0
  860. package/cdp-due--customer-space-module-master/src/contents/account-management/accountManagementLinks.eslm.js +28 -0
  861. package/cdp-due--customer-space-module-master/src/contents/account-management/accountManagementLinks.frlm.js +41 -0
  862. package/cdp-due--customer-space-module-master/src/contents/account-management/accountManagementLinks.itlm.js +29 -0
  863. package/cdp-due--customer-space-module-master/src/contents/account-management/accountManagementLinks.pllm.js +28 -0
  864. package/cdp-due--customer-space-module-master/src/contents/account-management/accountManagementLinks.ptlm.js +28 -0
  865. package/cdp-due--customer-space-module-master/src/contents/account-management/config.js +16 -0
  866. package/cdp-due--customer-space-module-master/src/contents/account-management/routes.js +36 -0
  867. package/cdp-due--customer-space-module-master/src/contents/account-management/stopPaper/StopPaper.vue +54 -0
  868. package/cdp-due--customer-space-module-master/src/contents/account-management/stopPaper/__tests__/stopPaper.rules.test.js +42 -0
  869. package/cdp-due--customer-space-module-master/src/contents/account-management/stopPaper/constants.js +6 -0
  870. package/cdp-due--customer-space-module-master/src/contents/account-management/stopPaper/stopPaper.composable.js +30 -0
  871. package/cdp-due--customer-space-module-master/src/contents/account-management/stopPaper/stopPaper.events.js +23 -0
  872. package/cdp-due--customer-space-module-master/src/contents/account-management/stopPaper/stopPaper.rules.js +79 -0
  873. package/cdp-due--customer-space-module-master/src/contents/account-management/stopPaper/trackingEvents.js +7 -0
  874. package/cdp-due--customer-space-module-master/src/contents/admin/AdminLandingPage.vue +86 -0
  875. package/cdp-due--customer-space-module-master/src/contents/admin/AdminPage.vue +9 -0
  876. package/cdp-due--customer-space-module-master/src/contents/admin/associate-to-sale/AssociateToSaleButton.vue +46 -0
  877. package/cdp-due--customer-space-module-master/src/contents/admin/associate-to-sale/AssociateToSaleModal.vue +106 -0
  878. package/cdp-due--customer-space-module-master/src/contents/admin/associate-to-sale/__tests__/associateToSale.rules.test.js +90 -0
  879. package/cdp-due--customer-space-module-master/src/contents/admin/associate-to-sale/associateToSale.rules.js +33 -0
  880. package/cdp-due--customer-space-module-master/src/contents/admin/associate-to-sale/associateToSaleButton.composable.js +43 -0
  881. package/cdp-due--customer-space-module-master/src/contents/admin/associate-to-sale/associateToSaleModal.composable.js +74 -0
  882. package/cdp-due--customer-space-module-master/src/contents/admin/associate-to-sale/associateToSaleTrackingEvents.js +30 -0
  883. package/cdp-due--customer-space-module-master/src/contents/admin/associate-to-sale/useAssociateToSale.js +36 -0
  884. package/cdp-due--customer-space-module-master/src/contents/admin/associate-to-sale/utils.js +6 -0
  885. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/AdminClientSummaryV1.page.vue +116 -0
  886. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/AdminClientSummaryV2.page.vue +138 -0
  887. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/actions/Actions.section.vue +44 -0
  888. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/actions/__tests__/rules.test.js +43 -0
  889. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/actions/actions.composable.js +23 -0
  890. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/actions/actions.rules.js +72 -0
  891. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/actions/switch-to-pro/modal/SwitchToProErrorModal.vue +113 -0
  892. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/actions/switch-to-pro/modal/SwitchToProErrorModalWrapper.vue +45 -0
  893. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/actions/switch-to-pro/modal/errorModal.composable.js +30 -0
  894. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/actions/switch-to-pro/translations.js +84 -0
  895. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/actions/translations.js +22 -0
  896. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/adminClientSummary.rules.js +27 -0
  897. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/common/ClientSummaryData.vue +67 -0
  898. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/common/ClientSummaryDataLink.vue +31 -0
  899. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/common/ClientSummaryDataV2.vue +72 -0
  900. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/common/DatatableV2.vue +150 -0
  901. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/consents/Consents.section.vue +124 -0
  902. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/consents/consentMode.vue +73 -0
  903. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/consents/consentsConfig.js +36 -0
  904. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/constants.js +18 -0
  905. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/estimates/Estimates.section.vue +29 -0
  906. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/estimates/EstimatesV2.section.vue +32 -0
  907. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/estimates/estimatesSection-v2.composable.js +40 -0
  908. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/estimates/estimatesSection.composable.js +34 -0
  909. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/estimates/estimatesSection.requests.js +18 -0
  910. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/estimates/estimatesSection.rules.js +12 -0
  911. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/estimates/translations.js +9 -0
  912. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/hook.js +5 -0
  913. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/orders/Orders.section.vue +59 -0
  914. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/orders/OrdersV2.section.vue +52 -0
  915. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/orders/orders-v2.composable.js +28 -0
  916. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/orders/orders-v2.rules.js +80 -0
  917. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/orders/orders.composable.js +21 -0
  918. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/orders/orders.request.js +12 -0
  919. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/orders/orders.rules.js +74 -0
  920. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/orders/orders.translations.js +22 -0
  921. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/Customer.vue +69 -0
  922. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/CustomerV2.vue +87 -0
  923. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/InfoBlock/InfoBlock.vue +54 -0
  924. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/InfoBlock/InfoBlockV2.vue +72 -0
  925. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/InfoBlock/constants.js +1 -0
  926. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/__tests__/customer.rules.test.js +112 -0
  927. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/constants.js +12 -0
  928. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/customer.composable.js +35 -0
  929. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/customer.rules.js +115 -0
  930. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/hook.js +106 -0
  931. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/loyalty/Loyalty.vue +67 -0
  932. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/loyalty/LoyaltyV2.vue +96 -0
  933. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/loyalty/__tests__/loyalty.rules.test.js +148 -0
  934. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/loyalty/loyalty-v2.composable.js +45 -0
  935. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/loyalty/loyalty.composable.js +37 -0
  936. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/loyalty/loyalty.rules.js +108 -0
  937. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/professional-infos/ProfessionalInfos.vue +15 -0
  938. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/professional-infos/ProfessionalInfosV2.vue +38 -0
  939. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/professional-infos/hook.js +19 -0
  940. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/professional-infos/professional-infos-v2.composable.js +26 -0
  941. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/professional-infos/rules.js +83 -0
  942. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/rewards/Rewards.vue +10 -0
  943. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/rewards/RewardsV2.vue +79 -0
  944. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/rewards/__tests__/rewards.rules.test.js +117 -0
  945. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/rewards/rewards-v2.composable.js +22 -0
  946. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/rewards/rewards.rules.js +41 -0
  947. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/rewards/useRewards.js +53 -0
  948. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/rules.js +17 -0
  949. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/useAccountCoOwner.js +33 -0
  950. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/usePersonalInfoLoyalty.js +29 -0
  951. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/personal-information/utils.js +14 -0
  952. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/receipts/LastReceipts.section.vue +30 -0
  953. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/receipts/lastReceipts.composable.js +32 -0
  954. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/receipts/lastReceipts.requests.js +29 -0
  955. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/receipts/translations.js +5 -0
  956. package/cdp-due--customer-space-module-master/src/contents/admin/client-summary/utils.js +66 -0
  957. package/cdp-due--customer-space-module-master/src/contents/admin/contextualization/ContextualizationPage.vue +19 -0
  958. package/cdp-due--customer-space-module-master/src/contents/admin/history/CustomerHistoryPage.vue +82 -0
  959. package/cdp-due--customer-space-module-master/src/contents/admin/history/CustomerHistorySubDatatable.vue +42 -0
  960. package/cdp-due--customer-space-module-master/src/contents/admin/history/__tests__/customerHistory.rules.test.js +71 -0
  961. package/cdp-due--customer-space-module-master/src/contents/admin/history/constants.js +9 -0
  962. package/cdp-due--customer-space-module-master/src/contents/admin/history/rules.js +18 -0
  963. package/cdp-due--customer-space-module-master/src/contents/admin/history/useCustomerHistoryPage.js +47 -0
  964. package/cdp-due--customer-space-module-master/src/contents/admin/loyalty/LoyaltyPage.vue +73 -0
  965. package/cdp-due--customer-space-module-master/src/contents/admin/loyalty/LoyaltyPageComponent.vue +49 -0
  966. package/cdp-due--customer-space-module-master/src/contents/admin/loyalty/loyaltyConfig.js +34 -0
  967. package/cdp-due--customer-space-module-master/src/contents/admin/module/actions.js +374 -0
  968. package/cdp-due--customer-space-module-master/src/contents/admin/module/constants.js +69 -0
  969. package/cdp-due--customer-space-module-master/src/contents/admin/module/getters.js +43 -0
  970. package/cdp-due--customer-space-module-master/src/contents/admin/module/index.js +78 -0
  971. package/cdp-due--customer-space-module-master/src/contents/admin/routes.js +148 -0
  972. package/cdp-due--customer-space-module-master/src/contents/admin/search/hooks/useRedirectRoute.js +15 -0
  973. package/cdp-due--customer-space-module-master/src/contents/admin/search/quick-access/QuickAccess.vue +55 -0
  974. package/cdp-due--customer-space-module-master/src/contents/admin/search/quick-access/__tests__/quickAccess.tests.js +24 -0
  975. package/cdp-due--customer-space-module-master/src/contents/admin/search/quick-access/quick-access-card/QuickAccessCard.vue +89 -0
  976. package/cdp-due--customer-space-module-master/src/contents/admin/search/quick-access/quick-access-config/quickAccessConfig.eslm.js +4 -0
  977. package/cdp-due--customer-space-module-master/src/contents/admin/search/quick-access/quick-access-config/quickAccessConfig.frlm.js +41 -0
  978. package/cdp-due--customer-space-module-master/src/contents/admin/search/quick-access/quick-access-config/quickAccessConfig.itlm.js +3 -0
  979. package/cdp-due--customer-space-module-master/src/contents/admin/search/quick-access/quick-access-config/quickAccessConfig.ptlm.js +9 -0
  980. package/cdp-due--customer-space-module-master/src/contents/admin/search/quick-access/quick-access-config/services/quickAccessBoomerang.js +10 -0
  981. package/cdp-due--customer-space-module-master/src/contents/admin/search/quick-access/quick-access-config/services/quickAccessDataCompliance.js +10 -0
  982. package/cdp-due--customer-space-module-master/src/contents/admin/search/quick-access/quick-access-config/services/quickAccessFloyd.js +10 -0
  983. package/cdp-due--customer-space-module-master/src/contents/admin/search/quick-access/quick-access-config/services/quickAccessTempo.js +12 -0
  984. package/cdp-due--customer-space-module-master/src/contents/admin/search/quick-access/quickAccess.rules.js +28 -0
  985. package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/HistoryOfVisitedCustomers.vue +58 -0
  986. package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/SearchPage.vue +194 -0
  987. package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/__tests__/searchPage.rules.test.js +89 -0
  988. package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/constants.js +2 -0
  989. package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/AccountPrecreateLayer.vue +66 -0
  990. package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/accountPrecreationLayer.composable.js +44 -0
  991. package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/accountPrecreationLayer.rules.js +156 -0
  992. package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/steps/address/AddressStep.vue +40 -0
  993. package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/steps/precreate-personal-data/AdditionalFields/AdditionalFields.vue +11 -0
  994. package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/steps/precreate-personal-data/AdditionalFields/ProfessionalAdministrativeIdentifier.vue +10 -0
  995. package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/steps/precreate-personal-data/AdditionalFields/additionalFields.composable.js +18 -0
  996. package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/steps/precreate-personal-data/AdditionalFields/additionalFields.rules.js +31 -0
  997. package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/steps/precreate-personal-data/ConsentsSection/ConsentsSection.legacy-fr.vue +11 -0
  998. package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/steps/precreate-personal-data/ConsentsSection/ConsentsSection.per-channel.vue +11 -0
  999. package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/steps/precreate-personal-data/ConsentsSection/ConsentsSection.vue +9 -0
  1000. package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/steps/precreate-personal-data/ConsentsSection/ConsentsSection.yes-no.vue +26 -0
  1001. package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/steps/precreate-personal-data/ConsentsSection/consentsSection.rules.js +23 -0
  1002. package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/steps/precreate-personal-data/ConsentsSection/useConsentsSection.frlm.js +39 -0
  1003. package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/steps/precreate-personal-data/PreCreatePersonalDataStep.vue +121 -0
  1004. package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/steps/precreate-personal-data/constants.js +109 -0
  1005. package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/steps/precreate-personal-data/preCreateAccount.rules.js +106 -0
  1006. package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/layer/steps/precreate-personal-data/preCreatePersonalDataStep.composable.js +103 -0
  1007. package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/searchFieldsConfig.js +161 -0
  1008. package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/searchPage.composable.js +136 -0
  1009. package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/searchPage.events.js +22 -0
  1010. package/cdp-due--customer-space-module-master/src/contents/admin/search/refacto/searchPage.rules.js +49 -0
  1011. package/cdp-due--customer-space-module-master/src/contents/admin/search/results/SearchResults.vue +325 -0
  1012. package/cdp-due--customer-space-module-master/src/contents/admin/search/results/__tests__/searchResults.rules.test.js +18 -0
  1013. package/cdp-due--customer-space-module-master/src/contents/admin/search/results/accountStatusModalConfig.js +58 -0
  1014. package/cdp-due--customer-space-module-master/src/contents/admin/search/results/deleteAccountTrackingEvents.js +63 -0
  1015. package/cdp-due--customer-space-module-master/src/contents/admin/search/results/searchResults.composable.js +125 -0
  1016. package/cdp-due--customer-space-module-master/src/contents/admin/search/results/searchResults.events.js +71 -0
  1017. package/cdp-due--customer-space-module-master/src/contents/admin/search/results/searchResults.rules.js +37 -0
  1018. package/cdp-due--customer-space-module-master/src/contents/admin/search/trackingEvents.js +62 -0
  1019. package/cdp-due--customer-space-module-master/src/contents/admin/switch-to-pro/AccountSwitchToProPage.vue +80 -0
  1020. package/cdp-due--customer-space-module-master/src/contents/admin/switch-to-pro/BlocPresenter/BlocPresenter.vue +22 -0
  1021. package/cdp-due--customer-space-module-master/src/contents/admin/switch-to-pro/Buttons/SwitchToProStepperButtons.vue +54 -0
  1022. package/cdp-due--customer-space-module-master/src/contents/admin/switch-to-pro/Form/AccountSwitchToProPageForm.vue +139 -0
  1023. package/cdp-due--customer-space-module-master/src/contents/admin/switch-to-pro/Notifications/SwitchToProNotification.vue +51 -0
  1024. package/cdp-due--customer-space-module-master/src/contents/admin/switch-to-pro/accountSwitchToPro.composable.js +175 -0
  1025. package/cdp-due--customer-space-module-master/src/contents/admin/switch-to-pro/accountSwitchToPro.rules.js +105 -0
  1026. package/cdp-due--customer-space-module-master/src/contents/admin/switch-to-pro/constants.js +11 -0
  1027. package/cdp-due--customer-space-module-master/src/contents/admin/switch-to-pro/trackingEvents.js +75 -0
  1028. package/cdp-due--customer-space-module-master/src/contents/admin/switch-to-pro/translations.js +24 -0
  1029. package/cdp-due--customer-space-module-master/src/contents/after-sales/routes.js +35 -0
  1030. package/cdp-due--customer-space-module-master/src/contents/after-sales/service-list/AfterSalesServiceList.vue +48 -0
  1031. package/cdp-due--customer-space-module-master/src/contents/after-sales/service-list/__tests__/afterSalesServiceList.rules.test.js +18 -0
  1032. package/cdp-due--customer-space-module-master/src/contents/after-sales/service-list/afterSalesServiceList.composable.js +19 -0
  1033. package/cdp-due--customer-space-module-master/src/contents/after-sales/service-list/afterSalesServiceList.requests.js +13 -0
  1034. package/cdp-due--customer-space-module-master/src/contents/after-sales/service-list/afterSalesServiceList.rules.js +11 -0
  1035. package/cdp-due--customer-space-module-master/src/contents/after-sales/service-list/empty/AfterSalesServiceEmpty.vue +12 -0
  1036. package/cdp-due--customer-space-module-master/src/contents/after-sales/service-list/item/AfterSalesItem.vue +134 -0
  1037. package/cdp-due--customer-space-module-master/src/contents/after-sales/service-list/item/afterSalesItem.composable.js +31 -0
  1038. package/cdp-due--customer-space-module-master/src/contents/after-sales/service-list/item/product/NoImage.vue +18 -0
  1039. package/cdp-due--customer-space-module-master/src/contents/after-sales/service-list/item/product/Product.vue +73 -0
  1040. package/cdp-due--customer-space-module-master/src/contents/banner/CollaboratorBanner.vue +229 -0
  1041. package/cdp-due--customer-space-module-master/src/contents/banner/CollaboratorBannerHomeLink.vue +16 -0
  1042. package/cdp-due--customer-space-module-master/src/contents/banner/IncidentInformationModal.vue +109 -0
  1043. package/cdp-due--customer-space-module-master/src/contents/communications/CommunicationsCGUPage.vue +1129 -0
  1044. package/cdp-due--customer-space-module-master/src/contents/communications/CommunicationsPage.vue +9 -0
  1045. package/cdp-due--customer-space-module-master/src/contents/communications/NewsletterCheckbox.vue +86 -0
  1046. package/cdp-due--customer-space-module-master/src/contents/communications/OptinsOfflinePage.vue +26 -0
  1047. package/cdp-due--customer-space-module-master/src/contents/communications/communication-preferences/CommunicationComponentConsent.vue +84 -0
  1048. package/cdp-due--customer-space-module-master/src/contents/communications/communication-preferences/CommunicationPreferences.default.vue +93 -0
  1049. package/cdp-due--customer-space-module-master/src/contents/communications/communication-preferences/CommunicationPreferences.eslm.vue +7 -0
  1050. package/cdp-due--customer-space-module-master/src/contents/communications/communication-preferences/CommunicationPreferences.frlm.vue +317 -0
  1051. package/cdp-due--customer-space-module-master/src/contents/communications/communication-preferences/CommunicationPreferences.itlm.vue +97 -0
  1052. package/cdp-due--customer-space-module-master/src/contents/communications/communication-preferences/CommunicationPreferences.pllm.vue +7 -0
  1053. package/cdp-due--customer-space-module-master/src/contents/communications/communication-preferences/CommunicationPreferences.ptlm.vue +7 -0
  1054. package/cdp-due--customer-space-module-master/src/contents/communications/communication-preferences/ConsentChoices.vue +120 -0
  1055. package/cdp-due--customer-space-module-master/src/contents/communications/communication-preferences/ConsentsChoicesForm.vue +38 -0
  1056. package/cdp-due--customer-space-module-master/src/contents/communications/communication-preferences/communicationPreferences.composable.js +60 -0
  1057. package/cdp-due--customer-space-module-master/src/contents/communications/communication-preferences/communicationPreferences.rules.js +133 -0
  1058. package/cdp-due--customer-space-module-master/src/contents/communications/feedbackConfig.js +20 -0
  1059. package/cdp-due--customer-space-module-master/src/contents/communications/module/actions.js +162 -0
  1060. package/cdp-due--customer-space-module-master/src/contents/communications/module/constants.js +28 -0
  1061. package/cdp-due--customer-space-module-master/src/contents/communications/module/getters.js +23 -0
  1062. package/cdp-due--customer-space-module-master/src/contents/communications/module/index.js +44 -0
  1063. package/cdp-due--customer-space-module-master/src/contents/communications/newsletterConfig.js +57 -0
  1064. package/cdp-due--customer-space-module-master/src/contents/communications/routes.js +33 -0
  1065. package/cdp-due--customer-space-module-master/src/contents/communications/trackingEvents.js +19 -0
  1066. package/cdp-due--customer-space-module-master/src/contents/communications/useCommunicationComponent.js +61 -0
  1067. package/cdp-due--customer-space-module-master/src/contents/communications/useConsent.js +18 -0
  1068. package/cdp-due--customer-space-module-master/src/contents/dashboard/DashboardBoxLink.vue +108 -0
  1069. package/cdp-due--customer-space-module-master/src/contents/dashboard/DashboardPage/DashboardPage.vue +52 -0
  1070. package/cdp-due--customer-space-module-master/src/contents/dashboard/DashboardPage/__tests__/dashboardPage.composable.test.js +46 -0
  1071. package/cdp-due--customer-space-module-master/src/contents/dashboard/DashboardPage/dashboardPage.composable.js +45 -0
  1072. package/cdp-due--customer-space-module-master/src/contents/dashboard/DashboardPage/dashboardPage.rules.js +9 -0
  1073. package/cdp-due--customer-space-module-master/src/contents/dashboard/DashboardPage/dashboardPage.translations.js +6 -0
  1074. package/cdp-due--customer-space-module-master/src/contents/dashboard/account-settings/DashboardAccountSettings.vue +126 -0
  1075. package/cdp-due--customer-space-module-master/src/contents/dashboard/account-settings/DashboardAccountSettingsModal.vue +188 -0
  1076. package/cdp-due--customer-space-module-master/src/contents/dashboard/account-settings/__tests__/rules.test.js +81 -0
  1077. package/cdp-due--customer-space-module-master/src/contents/dashboard/account-settings/accountSettingsConfig.js +180 -0
  1078. package/cdp-due--customer-space-module-master/src/contents/dashboard/account-settings/rules.js +28 -0
  1079. package/cdp-due--customer-space-module-master/src/contents/dashboard/account-settings/useDashboardAccountSettings.js +43 -0
  1080. package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-account-settings-v2/DashboardAccountSettingsV2.vue +102 -0
  1081. package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-account-settings-v2/dashboardAccountSettingsV2.composable.js +17 -0
  1082. package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-account-settings-v2/dashboardAccountSettingsV2.rules.js +232 -0
  1083. package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-actions/DashboardActions.vue +13 -0
  1084. package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-actions/dashboardActions.composable.js +39 -0
  1085. package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-actions/dashboardActions.rules.js +101 -0
  1086. package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-box/DashboardBox.vue +112 -0
  1087. package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-box/dashboardBox.composable.js +58 -0
  1088. package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty/DashboardLoyalty.vue +73 -0
  1089. package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty/DashboardLoyaltyCardBarcodeModal.vue +34 -0
  1090. package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty/DashboardLoyaltyPassMaisonBarcodeModal.vue +32 -0
  1091. package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty/__tests__/dashboardLoyalty.rules.test.js +137 -0
  1092. package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty/dashboardLoyalty.composable.js +53 -0
  1093. package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty/dashboardLoyalty.event.js +5 -0
  1094. package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty/dashboardLoyalty.request.js +31 -0
  1095. package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty/dashboardLoyalty.rules.js +78 -0
  1096. package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty-admin/DashboardLoyaltyAdmin.vue +24 -0
  1097. package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty-admin/DashboardLoyaltyAdminInvitationModal.vue +79 -0
  1098. package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty-admin/DashboardLoyaltyAdminV2.vue +24 -0
  1099. package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty-admin/__tests__/dashboardLoyaltyAdmin.rules.test.js +59 -0
  1100. package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty-admin/__tests__/dashboardLoyaltyAdminInvitationModal.rules.test.js +31 -0
  1101. package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty-admin/dashboardLoyaltyAdmin.composable.js +44 -0
  1102. package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty-admin/dashboardLoyaltyAdmin.event.js +47 -0
  1103. package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty-admin/dashboardLoyaltyAdmin.request.js +36 -0
  1104. package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty-admin/dashboardLoyaltyAdmin.rules.js +76 -0
  1105. package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty-admin/dashboardLoyaltyAdminInvitationModal.composable.js +32 -0
  1106. package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty-admin/dashboardLoyaltyAdminInvitationModal.event.js +31 -0
  1107. package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty-admin/dashboardLoyaltyAdminInvitationModal.request.js +21 -0
  1108. package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-loyalty-admin/dashboardLoyaltyAdminInvitationModal.rules.js +41 -0
  1109. package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-page-grid/DashboardPageGrid.vue +149 -0
  1110. package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-page-grid/dashboardPageGrid.composable.js +53 -0
  1111. package/cdp-due--customer-space-module-master/src/contents/dashboard/dashboard-page-grid/dashboardPageGrid.rules.js +453 -0
  1112. package/cdp-due--customer-space-module-master/src/contents/dashboard/loyalty-card/IpnLoyaltyCard.vue +54 -0
  1113. package/cdp-due--customer-space-module-master/src/contents/dashboard/loyalty-card/IpnLoyaltyCardBasic.vue +214 -0
  1114. package/cdp-due--customer-space-module-master/src/contents/dashboard/loyalty-card/IpnLoyaltyCardPassMaison.vue +156 -0
  1115. package/cdp-due--customer-space-module-master/src/contents/dashboard/loyalty-card/IpnLoyaltyCardPresentationShell.vue +40 -0
  1116. package/cdp-due--customer-space-module-master/src/contents/dashboard/loyalty-card/IpnLoyaltyCardPrograms.vue +43 -0
  1117. package/cdp-due--customer-space-module-master/src/contents/dashboard/loyalty-card/LoyaltyCard.default.vue +86 -0
  1118. package/cdp-due--customer-space-module-master/src/contents/dashboard/loyalty-card/LoyaltyCard.frlm.vue +101 -0
  1119. package/cdp-due--customer-space-module-master/src/contents/dashboard/loyalty-card/LoyaltyCard.itlm.vue +86 -0
  1120. package/cdp-due--customer-space-module-master/src/contents/dashboard/loyalty-card/LoyaltyCard.vue +7 -0
  1121. package/cdp-due--customer-space-module-master/src/contents/dashboard/loyalty-card/LoyaltyCardAdminButton.vue +31 -0
  1122. package/cdp-due--customer-space-module-master/src/contents/dashboard/loyalty-card/LoyaltyCardBasic.vue +233 -0
  1123. package/cdp-due--customer-space-module-master/src/contents/dashboard/loyalty-card/LoyaltyCardBenefit.vue +52 -0
  1124. package/cdp-due--customer-space-module-master/src/contents/dashboard/loyalty-card/LoyaltyProgramsList.vue +80 -0
  1125. package/cdp-due--customer-space-module-master/src/contents/dashboard/loyalty-card/ProgramCard.vue +109 -0
  1126. package/cdp-due--customer-space-module-master/src/contents/dashboard/loyalty-card/loyalty-card-pass-maison/LoyaltyCardPassMaison.vue +96 -0
  1127. package/cdp-due--customer-space-module-master/src/contents/dashboard/loyalty-card/loyalty-card-pass-maison/LoyaltyCardPassMaisonModal.vue +32 -0
  1128. package/cdp-due--customer-space-module-master/src/contents/dashboard/loyalty-card/trackingEvents.js +28 -0
  1129. package/cdp-due--customer-space-module-master/src/contents/dashboard/rattachCustomer/RattachCustomerLayer.vue +160 -0
  1130. package/cdp-due--customer-space-module-master/src/contents/dashboard/rattachCustomer/module/actions.js +95 -0
  1131. package/cdp-due--customer-space-module-master/src/contents/dashboard/rattachCustomer/module/constants.js +21 -0
  1132. package/cdp-due--customer-space-module-master/src/contents/dashboard/rattachCustomer/module/getters.js +7 -0
  1133. package/cdp-due--customer-space-module-master/src/contents/dashboard/rattachCustomer/module/index.js +19 -0
  1134. package/cdp-due--customer-space-module-master/src/contents/dashboard/rattachCustomer/module/mutations.js +12 -0
  1135. package/cdp-due--customer-space-module-master/src/contents/dashboard/rattachCustomer/rattachCustomerConfig.js +15 -0
  1136. package/cdp-due--customer-space-module-master/src/contents/dashboard/trackingEvents.js +63 -0
  1137. package/cdp-due--customer-space-module-master/src/contents/discounts/MyDiscountsPage.vue +45 -0
  1138. package/cdp-due--customer-space-module-master/src/contents/discounts/__tests__/myDiscountsPage.rules.test.js +17 -0
  1139. package/cdp-due--customer-space-module-master/src/contents/discounts/components/BoxContainer.vue +50 -0
  1140. package/cdp-due--customer-space-module-master/src/contents/discounts/components/DiscountElement.vue +115 -0
  1141. package/cdp-due--customer-space-module-master/src/contents/discounts/components/InformationBox/InformationBox/Container/InformationBoxContainer.vue +48 -0
  1142. package/cdp-due--customer-space-module-master/src/contents/discounts/components/InformationBox/InformationBox/Text/InformationBoxText.vue +27 -0
  1143. package/cdp-due--customer-space-module-master/src/contents/discounts/components/InformationBox/InformationBox/Title/InformationBoxTitle.vue +23 -0
  1144. package/cdp-due--customer-space-module-master/src/contents/discounts/components/InformationBox/NoCustomRewards/NoCustomRewards.vue +41 -0
  1145. package/cdp-due--customer-space-module-master/src/contents/discounts/components/InformationBox/PointsWhenNoRewards/PointsWhenNoRewards.vue +33 -0
  1146. package/cdp-due--customer-space-module-master/src/contents/discounts/components/InformationBox/PointsWhenNoRewards/pointsWhenNoRewards.composable.js +13 -0
  1147. package/cdp-due--customer-space-module-master/src/contents/discounts/components/InformationBox/PointsWhenNoRewards/pointsWhenNoRewards.rules.js +13 -0
  1148. package/cdp-due--customer-space-module-master/src/contents/discounts/components/MyDiscountsSection.vue +52 -0
  1149. package/cdp-due--customer-space-module-master/src/contents/discounts/components/TransformPointsBox.vue +70 -0
  1150. package/cdp-due--customer-space-module-master/src/contents/discounts/components/transformPointsBox.rules.js +18 -0
  1151. package/cdp-due--customer-space-module-master/src/contents/discounts/constants.js +81 -0
  1152. package/cdp-due--customer-space-module-master/src/contents/discounts/custom-discount-section/CustomDiscountSection.vue +148 -0
  1153. package/cdp-due--customer-space-module-master/src/contents/discounts/custom-discount-section/custom-discount/CustomDiscount.events.js +18 -0
  1154. package/cdp-due--customer-space-module-master/src/contents/discounts/custom-discount-section/custom-discount/CustomDiscount.vue +88 -0
  1155. package/cdp-due--customer-space-module-master/src/contents/discounts/custom-discount-section/custom-discount/CustomDiscounts.rules.js +9 -0
  1156. package/cdp-due--customer-space-module-master/src/contents/discounts/custom-discount-section/custom-discount/customDiscount.composable.js +20 -0
  1157. package/cdp-due--customer-space-module-master/src/contents/discounts/custom-discount-section/rules.js +15 -0
  1158. package/cdp-due--customer-space-module-master/src/contents/discounts/discount-layer/DiscountLayer.vue +206 -0
  1159. package/cdp-due--customer-space-module-master/src/contents/discounts/discount-layer/__tests__/discountLayer.rules.test.js +115 -0
  1160. package/cdp-due--customer-space-module-master/src/contents/discounts/discount-layer/constants.js +3 -0
  1161. package/cdp-due--customer-space-module-master/src/contents/discounts/discount-layer/discountLayer.rules.js +22 -0
  1162. package/cdp-due--customer-space-module-master/src/contents/discounts/discount-layer/useDiscountLayer.js +58 -0
  1163. package/cdp-due--customer-space-module-master/src/contents/discounts/discount-outdated-layer/DiscountOutdatedLayer.events.js +13 -0
  1164. package/cdp-due--customer-space-module-master/src/contents/discounts/discount-outdated-layer/DiscountOutdatedLayer.rules.js +15 -0
  1165. package/cdp-due--customer-space-module-master/src/contents/discounts/discount-outdated-layer/DiscountOutdatedLayer.vue +97 -0
  1166. package/cdp-due--customer-space-module-master/src/contents/discounts/discount-outdated-layer/constants.js +33 -0
  1167. package/cdp-due--customer-space-module-master/src/contents/discounts/discount-outdated-layer/useDiscountOutdatedLayer.js +41 -0
  1168. package/cdp-due--customer-space-module-master/src/contents/discounts/module/actions.js +70 -0
  1169. package/cdp-due--customer-space-module-master/src/contents/discounts/module/constants.js +27 -0
  1170. package/cdp-due--customer-space-module-master/src/contents/discounts/module/getters.js +40 -0
  1171. package/cdp-due--customer-space-module-master/src/contents/discounts/module/index.js +31 -0
  1172. package/cdp-due--customer-space-module-master/src/contents/discounts/module/mutations.js +25 -0
  1173. package/cdp-due--customer-space-module-master/src/contents/discounts/my-rewards-section/MyRewardsSection.vue +50 -0
  1174. package/cdp-due--customer-space-module-master/src/contents/discounts/my-rewards-section/__tests__/myRewardsSection.rules.test.js +20 -0
  1175. package/cdp-due--customer-space-module-master/src/contents/discounts/my-rewards-section/myRewardsSection.composable.js +17 -0
  1176. package/cdp-due--customer-space-module-master/src/contents/discounts/my-rewards-section/myRewardsSection.rules.js +15 -0
  1177. package/cdp-due--customer-space-module-master/src/contents/discounts/myDiscountsPage.composable.js +23 -0
  1178. package/cdp-due--customer-space-module-master/src/contents/discounts/myDiscountsPage.rules.js +6 -0
  1179. package/cdp-due--customer-space-module-master/src/contents/discounts/no-rewards/NoRewards.vue +80 -0
  1180. package/cdp-due--customer-space-module-master/src/contents/discounts/no-rewards/noRewards.rules.js +14 -0
  1181. package/cdp-due--customer-space-module-master/src/contents/discounts/routes.js +29 -0
  1182. package/cdp-due--customer-space-module-master/src/contents/discounts/tracking/trackingEvents.js +7 -0
  1183. package/cdp-due--customer-space-module-master/src/contents/errors/Error.vue +70 -0
  1184. package/cdp-due--customer-space-module-master/src/contents/errors/ErrorNotAuthorized.vue +14 -0
  1185. package/cdp-due--customer-space-module-master/src/contents/errors/ErrorNotFound.vue +10 -0
  1186. package/cdp-due--customer-space-module-master/src/contents/errors/ErrorUnknown.vue +10 -0
  1187. package/cdp-due--customer-space-module-master/src/contents/estimate/box/EstimateBox.vue +168 -0
  1188. package/cdp-due--customer-space-module-master/src/contents/estimate/constants.js +26 -0
  1189. package/cdp-due--customer-space-module-master/src/contents/estimate/estimateDetailPage/EstimateDetailPage.vue +180 -0
  1190. package/cdp-due--customer-space-module-master/src/contents/estimate/estimateDetailPage/estimateDetailPage.composable.js +37 -0
  1191. package/cdp-due--customer-space-module-master/src/contents/estimate/estimateDetailPage/estimateDetailPage.events.js +6 -0
  1192. package/cdp-due--customer-space-module-master/src/contents/estimate/estimateDetailPage/estimateDetailPage.requests.js +18 -0
  1193. package/cdp-due--customer-space-module-master/src/contents/estimate/estimateDetailPage/estimateDetailPage.rules.js +24 -0
  1194. package/cdp-due--customer-space-module-master/src/contents/estimate/estimatesListPage/EstimatesListPage.vue +93 -0
  1195. package/cdp-due--customer-space-module-master/src/contents/estimate/estimatesListPage/estimatesListPage.composable.js +47 -0
  1196. package/cdp-due--customer-space-module-master/src/contents/estimate/estimatesListPage/estimatesListPage.requests.js +34 -0
  1197. package/cdp-due--customer-space-module-master/src/contents/estimate/estimatesListPage/estimatesListPage.rules.js +17 -0
  1198. package/cdp-due--customer-space-module-master/src/contents/estimate/module/index.js +19 -0
  1199. package/cdp-due--customer-space-module-master/src/contents/estimate/routes.js +53 -0
  1200. package/cdp-due--customer-space-module-master/src/contents/estimate/trackingEvents.js +15 -0
  1201. package/cdp-due--customer-space-module-master/src/contents/kazaplan/KazaplanLandingPage.vue +128 -0
  1202. package/cdp-due--customer-space-module-master/src/contents/kazaplan/KazaplanLandingPageConfig.js +40 -0
  1203. package/cdp-due--customer-space-module-master/src/contents/kazaplan/KazaplanListPage.vue +201 -0
  1204. package/cdp-due--customer-space-module-master/src/contents/kazaplan/kazaplan-plan-page/KazaplanAuthentPage.vue +18 -0
  1205. package/cdp-due--customer-space-module-master/src/contents/kazaplan/kazaplan-plan-page/KazaplanPlanPage.vue +23 -0
  1206. package/cdp-due--customer-space-module-master/src/contents/kazaplan/kazaplan-plan-page/useKazaplanPlan.js +80 -0
  1207. package/cdp-due--customer-space-module-master/src/contents/kazaplan/module/actions.js +29 -0
  1208. package/cdp-due--customer-space-module-master/src/contents/kazaplan/module/constants.js +6 -0
  1209. package/cdp-due--customer-space-module-master/src/contents/kazaplan/module/getters.js +5 -0
  1210. package/cdp-due--customer-space-module-master/src/contents/kazaplan/module/index.js +16 -0
  1211. package/cdp-due--customer-space-module-master/src/contents/kazaplan/module/mutations.js +7 -0
  1212. package/cdp-due--customer-space-module-master/src/contents/kazaplan/routes.js +89 -0
  1213. package/cdp-due--customer-space-module-master/src/contents/kazaplan/trackingEvents.js +15 -0
  1214. package/cdp-due--customer-space-module-master/src/contents/layout/LayoutHeader.vue +224 -0
  1215. package/cdp-due--customer-space-module-master/src/contents/layout/LayoutPage.vue +32 -0
  1216. package/cdp-due--customer-space-module-master/src/contents/layout/banners/BannerUserInfoCollaborator.vue +43 -0
  1217. package/cdp-due--customer-space-module-master/src/contents/loyalty/LoyaltyCardDetailsPage.vue +205 -0
  1218. package/cdp-due--customer-space-module-master/src/contents/loyalty/LoyaltyPage.vue +262 -0
  1219. package/cdp-due--customer-space-module-master/src/contents/loyalty/adherent-card/LoyaltyAdherentCardPage.no-layout.vue +49 -0
  1220. package/cdp-due--customer-space-module-master/src/contents/loyalty/adherent-card/OnDisplayStepAnalyticsWrapper.vue +16 -0
  1221. package/cdp-due--customer-space-module-master/src/contents/loyalty/adherent-card/composables/utils/__tests__/defineFormValues.js +68 -0
  1222. package/cdp-due--customer-space-module-master/src/contents/loyalty/adherent-card/constants/notifications.js +25 -0
  1223. package/cdp-due--customer-space-module-master/src/contents/loyalty/adherent-card/constants/storage.js +1 -0
  1224. package/cdp-due--customer-space-module-master/src/contents/loyalty/adherent-card/constants/tracking.js +83 -0
  1225. package/cdp-due--customer-space-module-master/src/contents/loyalty/adherent-card/constants/translations.js +13 -0
  1226. package/cdp-due--customer-space-module-master/src/contents/loyalty/adherent-card/loyaltyAdherentPage.composable.js +178 -0
  1227. package/cdp-due--customer-space-module-master/src/contents/loyalty/adherent-card/loyaltyAdherentPage.rules.js +130 -0
  1228. package/cdp-due--customer-space-module-master/src/contents/loyalty/adherent-card/submit/createLoyaltyPayload.js +14 -0
  1229. package/cdp-due--customer-space-module-master/src/contents/loyalty/adherent-card/submit/handleAdditionalFields.js +6 -0
  1230. package/cdp-due--customer-space-module-master/src/contents/loyalty/adherent-card/submit/handleIGeneralInfos.js +11 -0
  1231. package/cdp-due--customer-space-module-master/src/contents/loyalty/adherent-card/submit/handleProfessionalInfos.js +16 -0
  1232. package/cdp-due--customer-space-module-master/src/contents/loyalty/adherent-card/submit/handleSubmit.js +38 -0
  1233. package/cdp-due--customer-space-module-master/src/contents/loyalty/adherent-card/submit/submit.js +60 -0
  1234. package/cdp-due--customer-space-module-master/src/contents/loyalty/coOwner-invitation/CoOwnerInvitation.vue +16 -0
  1235. package/cdp-due--customer-space-module-master/src/contents/loyalty/coOwner-invitation/CoOwnerInvitationPage.vue +10 -0
  1236. package/cdp-due--customer-space-module-master/src/contents/loyalty/coOwner-invitation/__tests__/coOwnerInvitation.rules.test.js +52 -0
  1237. package/cdp-due--customer-space-module-master/src/contents/loyalty/coOwner-invitation/coOwnerInvitation.composable.js +32 -0
  1238. package/cdp-due--customer-space-module-master/src/contents/loyalty/coOwner-invitation/coOwnerInvitation.rules.js +30 -0
  1239. package/cdp-due--customer-space-module-master/src/contents/loyalty/coOwner-invitation/coOwnerInvitationPage.composable.js +8 -0
  1240. package/cdp-due--customer-space-module-master/src/contents/loyalty/coOwner-invitation/expired/CoOwnerInvitationExpired.vue +80 -0
  1241. package/cdp-due--customer-space-module-master/src/contents/loyalty/coOwner-invitation/expired/coOwnerInvitationExpired.composable.js +20 -0
  1242. package/cdp-due--customer-space-module-master/src/contents/loyalty/coOwner-invitation/notification/CoOwnerInvitationNotification.vue +54 -0
  1243. package/cdp-due--customer-space-module-master/src/contents/loyalty/coOwner-invitation/notification/__tests__/coOwnerInvitationNotification.rules.test.js +23 -0
  1244. package/cdp-due--customer-space-module-master/src/contents/loyalty/coOwner-invitation/notification/coOwnerInvitationNotification.composable.js +37 -0
  1245. package/cdp-due--customer-space-module-master/src/contents/loyalty/coOwner-invitation/notification/coOwnerInvitationNotification.rules.js +31 -0
  1246. package/cdp-due--customer-space-module-master/src/contents/loyalty/coOwner-invitation/valid/CoOwnerInvitationValid.vue +171 -0
  1247. package/cdp-due--customer-space-module-master/src/contents/loyalty/coOwner-invitation/valid/__tests__/coOwnerInvitationValid.rules.test.js +55 -0
  1248. package/cdp-due--customer-space-module-master/src/contents/loyalty/coOwner-invitation/valid/coOwnerInvitationValid.composable.js +59 -0
  1249. package/cdp-due--customer-space-module-master/src/contents/loyalty/coOwner-invitation/valid/coOwnerInvitationValid.rules.js +26 -0
  1250. package/cdp-due--customer-space-module-master/src/contents/loyalty/coOwner-invitation/wrong-account/CoOwnerInvitationWrongAccount.vue +81 -0
  1251. package/cdp-due--customer-space-module-master/src/contents/loyalty/constants.js +21 -0
  1252. package/cdp-due--customer-space-module-master/src/contents/loyalty/history-points/HistoryPointsPage.vue +104 -0
  1253. package/cdp-due--customer-space-module-master/src/contents/loyalty/history-points/__tests__/historyPointsPage.rules.test.js +146 -0
  1254. package/cdp-due--customer-space-module-master/src/contents/loyalty/history-points/historyPointsPage.composable.js +60 -0
  1255. package/cdp-due--customer-space-module-master/src/contents/loyalty/history-points/historyPointsPage.request.js +19 -0
  1256. package/cdp-due--customer-space-module-master/src/contents/loyalty/history-points/historyPointsPage.rules.js +63 -0
  1257. package/cdp-due--customer-space-module-master/src/contents/loyalty/history-points/module/index.js +21 -0
  1258. package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-card/LoyaltyCard.vue +64 -0
  1259. package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-card/LoyaltyCardApp.vue +169 -0
  1260. package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-card/LoyaltyCardEverywhere.vue +138 -0
  1261. package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-card/LoyaltyCardFunding.default.vue +3 -0
  1262. package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-card/LoyaltyCardFunding.frlm.vue +7 -0
  1263. package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-card/LoyaltyCardFunding.vue +103 -0
  1264. package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-card/LoyaltyCardHeader.vue +49 -0
  1265. package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-card/LoyaltyCardOwned.vue +60 -0
  1266. package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-card/LoyaltyCardQuestion.vue +58 -0
  1267. package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-card/LoyaltyCardTou.vue +34 -0
  1268. package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-card/loyalty-card-advantages/LoyaltyCardAdvantages.vue +232 -0
  1269. package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-card/loyaltyCardApp.rules.js +13 -0
  1270. package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-card/loyaltyCardTou.rules.js +13 -0
  1271. package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-page-components/advantageConfig.js +31 -0
  1272. package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-page-components/loyalty-stop/LoyaltyStop.vue +80 -0
  1273. package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-page-components/loyalty-stop/LoyaltyStopModal.vue +86 -0
  1274. package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-page-components/loyalty-stop/loyaltyStop.composable.js +49 -0
  1275. package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-page-components/loyalty-stop/loyaltyStop.rules.js +20 -0
  1276. package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-page-components/my-advantages/MyAdvantages.vue +77 -0
  1277. package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-page-components/my-advantages/advantagesConfig.frlm.js +191 -0
  1278. package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-page-components/my-advantages/advantagesConfig.itlm.js +177 -0
  1279. package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-page-components/my-discount/Discount.vue +148 -0
  1280. package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-page-components/my-discount/DiscountContainer.vue +51 -0
  1281. package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-page-components/partner-platform-loyalty/PartnerPlatformLoyalty.vue +62 -0
  1282. package/cdp-due--customer-space-module-master/src/contents/loyalty/loyalty-page-components/partner-platform-loyalty/partenerPlatformLoylaty.composable.js +16 -0
  1283. package/cdp-due--customer-space-module-master/src/contents/loyalty/loyaltyCardDetailsPage.rules.js +17 -0
  1284. package/cdp-due--customer-space-module-master/src/contents/loyalty/loyaltyPageStyle.scss +114 -0
  1285. package/cdp-due--customer-space-module-master/src/contents/loyalty/module/actions.js +124 -0
  1286. package/cdp-due--customer-space-module-master/src/contents/loyalty/module/constants.js +37 -0
  1287. package/cdp-due--customer-space-module-master/src/contents/loyalty/module/getters.js +21 -0
  1288. package/cdp-due--customer-space-module-master/src/contents/loyalty/module/index.js +31 -0
  1289. package/cdp-due--customer-space-module-master/src/contents/loyalty/module/mutations.js +26 -0
  1290. package/cdp-due--customer-space-module-master/src/contents/loyalty/partnerPlatformLoyalty.rules.js +13 -0
  1291. package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/Advantage.vue +131 -0
  1292. package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/DiscoverLoyaltyBenefitsPage.vue +135 -0
  1293. package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/InformationCard.vue +36 -0
  1294. package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/Reward.vue +143 -0
  1295. package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/Rewards.vue +115 -0
  1296. package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/ShowMoreButton.vue +57 -0
  1297. package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/StoreChoice.vue +31 -0
  1298. package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/StoreChoicePage.vue +43 -0
  1299. package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/my-loyalty-page/MyLoyaltyNoLoyalty.vue +52 -0
  1300. package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/my-loyalty-page/MyLoyaltyPage.vue +188 -0
  1301. package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/my-loyalty-page/__tests__/myLoyaltyPage.rules.test.js +35 -0
  1302. package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/my-loyalty-page/co-owners/CoOwners.vue +33 -0
  1303. package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/my-loyalty-page/myLoyaltyPage.composable.js +31 -0
  1304. package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/my-loyalty-page/myLoyaltyPage.rules.js +42 -0
  1305. package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/my-loyalty-page/useLoyaltyCardComponent.js +16 -0
  1306. package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/rewards.composable.js +73 -0
  1307. package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/rewards.rules.js +32 -0
  1308. package/cdp-due--customer-space-module-master/src/contents/loyalty/refacto/useRewards.js +10 -0
  1309. package/cdp-due--customer-space-module-master/src/contents/loyalty/routes.js +207 -0
  1310. package/cdp-due--customer-space-module-master/src/contents/loyalty/trackingEvents.js +111 -0
  1311. package/cdp-due--customer-space-module-master/src/contents/loyalty/transform-points/LoyaltyTransformPointsPage.vue +189 -0
  1312. package/cdp-due--customer-space-module-master/src/contents/loyalty/transform-points/availablePointsTransformation.composable.js +29 -0
  1313. package/cdp-due--customer-space-module-master/src/contents/loyalty/transform-points/layer/CustomRewardLayer.vue +110 -0
  1314. package/cdp-due--customer-space-module-master/src/contents/loyalty/transform-points/layer/FixedRewardLayer.vue +128 -0
  1315. package/cdp-due--customer-space-module-master/src/contents/loyalty/transform-points/layer/components/LayerButton.vue +45 -0
  1316. package/cdp-due--customer-space-module-master/src/contents/loyalty/transform-points/layer/components/TextBlockDescription.vue +31 -0
  1317. package/cdp-due--customer-space-module-master/src/contents/loyalty/transform-points/layer/components/TextBlockTitle.vue +31 -0
  1318. package/cdp-due--customer-space-module-master/src/contents/loyalty/transform-points/layer/loyaltyFixedPointsTransformation.composable.js +40 -0
  1319. package/cdp-due--customer-space-module-master/src/contents/loyalty/transform-points/layer/loyaltyTransformPointsPageCustomizableLayer.composable.js +96 -0
  1320. package/cdp-due--customer-space-module-master/src/contents/loyalty/transform-points/layer/loyaltyTransformPointsPageLayer.rules.js +61 -0
  1321. package/cdp-due--customer-space-module-master/src/contents/loyalty/transform-points/loyaltyTransformPointsPage.composable.js +65 -0
  1322. package/cdp-due--customer-space-module-master/src/contents/loyalty/transform-points/loyaltyTransformPointsPage.rules.js +137 -0
  1323. package/cdp-due--customer-space-module-master/src/contents/loyalty/transform-points/points/PointsComment.vue +20 -0
  1324. package/cdp-due--customer-space-module-master/src/contents/loyalty/transform-points/points/PointsSubComment.vue +25 -0
  1325. package/cdp-due--customer-space-module-master/src/contents/loyalty/transform-points/points/PointsTitle.vue +39 -0
  1326. package/cdp-due--customer-space-module-master/src/contents/menu/CustomerHeader.vue +84 -0
  1327. package/cdp-due--customer-space-module-master/src/contents/menu/customerHeader.rules.js +11 -0
  1328. package/cdp-due--customer-space-module-master/src/contents/personal-data/PersonalDataPage.vue +21 -0
  1329. package/cdp-due--customer-space-module-master/src/contents/personal-data/module/index.js +18 -0
  1330. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/PersonalDataAccount.vue +20 -0
  1331. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/__tests__/personalDataAccountConfig.rules.test.js +44 -0
  1332. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-addresses/AccountAddressContent.default.vue +26 -0
  1333. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-addresses/AccountAddressContent.eslm.vue +28 -0
  1334. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-addresses/AccountAddressContent.itlm.vue +28 -0
  1335. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-addresses/AccountAddresses.vue +278 -0
  1336. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-addresses/LayerDeleteAddress.vue +78 -0
  1337. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-addresses/LayerMainAddresses.vue +155 -0
  1338. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-addresses/account-address-edit/AddressEditLayer.vue +257 -0
  1339. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-addresses/additionalInfoFields.rules.js +102 -0
  1340. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-addresses/address-usages/AddressUsages.vue +41 -0
  1341. 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
  1342. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-addresses/address-usages/addressUsages.composable.js +22 -0
  1343. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-addresses/address-usages/addressUsages.rules.js +19 -0
  1344. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-addresses/addressEditConfig.js +21 -0
  1345. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-addresses/addressEditMainConfig.js +7 -0
  1346. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-addresses/useAdditionalInfoFields.js +15 -0
  1347. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-company/AccountCompany.vue +38 -0
  1348. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-company/account-company-form/AccountCompanyForm.vue +59 -0
  1349. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-company/account-company-form/accountCompanyForm.composable.js +142 -0
  1350. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-company/account-company-form/accountCompanyForm.requests.js +14 -0
  1351. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-company/account-company-form/accountCompanyForm.rules.js +64 -0
  1352. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-moving-date/AccountMovingDate.vue +73 -0
  1353. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-moving-date/accountMovingDate.composable.js +68 -0
  1354. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-moving-date/accountMovingDateConfig.js +9 -0
  1355. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-password/AccountPassword.vue +167 -0
  1356. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-password/accountPasswordDetailFormConfig.js +29 -0
  1357. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-payment/AccountPayment.vue +138 -0
  1358. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-payment/AccountPaymentCardBox.vue +173 -0
  1359. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-payment/AccountPaymentDeleteModal.vue +71 -0
  1360. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-payment/AccountPaymentRenameLayer.vue +72 -0
  1361. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-payment/__tests__/payment.rules.test.js +37 -0
  1362. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-payment/payment.composable.js +135 -0
  1363. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-payment/payment.rules.js +38 -0
  1364. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-phones/AccountPhones.vue +78 -0
  1365. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-phones/account-phone/AccountPhone.vue +80 -0
  1366. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-phones/account-phone/accountPhone.rules.js +22 -0
  1367. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-phones/accountPhones.composable.js +50 -0
  1368. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-phones/accountPhones.rules.js +7 -0
  1369. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-phones/phonesEditConfig.js +9 -0
  1370. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-profile/AccountProfile.vue +130 -0
  1371. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-profile/__tests__/AccountProfile.rules.test.js +78 -0
  1372. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-profile/accountProfile.rules.js +155 -0
  1373. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-profile/form/AccountProfileForm.eslm.vue +66 -0
  1374. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-profile/form/AccountProfileForm.frlm.vue +34 -0
  1375. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-profile/form/AccountProfileForm.itlm.vue +94 -0
  1376. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-profile/form/AccountProfileForm.pllm.vue +35 -0
  1377. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-profile/form/AccountProfileForm.ptlm.vue +69 -0
  1378. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-profile/form/AccountProfileForm.vue +104 -0
  1379. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-profile/form/AccountProfilesForm.rules.js +163 -0
  1380. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-profile/form/__tests__/AccountProfileForm.rules.test.js +114 -0
  1381. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-profile/form/accountProfileForm.composable.js +72 -0
  1382. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-profile/form/accountProfileForm.translations.js +8 -0
  1383. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-profile/form/accountProfileFormConfig.js +128 -0
  1384. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-profile/useAccountProfile.js +51 -0
  1385. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-store/AccountStore.vue +69 -0
  1386. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-store/EditStoreLayer.vue +88 -0
  1387. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/account-store/storesConfig.js +11 -0
  1388. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/personalDataAccount.requests.js +66 -0
  1389. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/personalDataAccountConfig.rules.js +46 -0
  1390. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-account/trackingEvents.js +59 -0
  1391. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-community/PersonalDataCommunity.vue +31 -0
  1392. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-community/community-avatar/CommunityAvatar.vue +121 -0
  1393. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-community/community-create/CommunityCreate.vue +34 -0
  1394. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-community/community-create/CommunityCreateNickname.vue +213 -0
  1395. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-community/community-infos/CommunityInfos.vue +94 -0
  1396. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-community/community-infos/communityDetailFormConfig.js +28 -0
  1397. package/cdp-due--customer-space-module-master/src/contents/personal-data/personal-data-community/community-none/CommunityNone.vue +65 -0
  1398. package/cdp-due--customer-space-module-master/src/contents/personal-data/routes.js +78 -0
  1399. package/cdp-due--customer-space-module-master/src/contents/personal-data/translations.js +19 -0
  1400. package/cdp-due--customer-space-module-master/src/contents/projects-and-tools/projectsAndToolsConfig.js +38 -0
  1401. package/cdp-due--customer-space-module-master/src/contents/projects-and-tools/projectsAndToolsPage.vue +16 -0
  1402. package/cdp-due--customer-space-module-master/src/contents/projects-and-tools/routes.js +25 -0
  1403. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/__tests__/purchaseReceiptDetail.rules.test.js +52 -0
  1404. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/composables/chooseAddress.composable.js +186 -0
  1405. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/composables/donwloadInvoice.composable.js +33 -0
  1406. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/composables/editAddress.composable.js +103 -0
  1407. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/composables/generationInvoice.composable.js +68 -0
  1408. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/composables/invoice.requests.js +21 -0
  1409. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/composables/invoiceGenerationHandler.composable.js +40 -0
  1410. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/composables/layerGenerate.composable.js +84 -0
  1411. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/composables/receiptDetail.js +72 -0
  1412. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/composables/receiptDetailQuery.composable.js +31 -0
  1413. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/layers/ChooseAddress.vue +318 -0
  1414. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/layers/DownloadInvoiceFailed.vue +48 -0
  1415. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/layers/EditAddress.vue +190 -0
  1416. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/layers/GenerationInvoice.vue +87 -0
  1417. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/layers/GenerationInvoiceFailed.vue +53 -0
  1418. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/layers/LayerGenerate.vue +69 -0
  1419. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/layers/layerAddressesConfig.js +44 -0
  1420. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/module/index.js +37 -0
  1421. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipt-detail/DepositReceiptBoxProduct.vue +170 -0
  1422. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipt-detail/PurchaseReceiptBoxProduct.vue +220 -0
  1423. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipt-detail/PurchaseReceiptDetailPage.vue +476 -0
  1424. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipt-detail/depositReceiptBoxProduct.rules.js +7 -0
  1425. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipt-detail/purchaseReceiptDetail.composable.js +139 -0
  1426. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipt-detail/purchaseReceiptDetail.events.js +34 -0
  1427. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipt-detail/purchaseReceiptDetail.rules.js +52 -0
  1428. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipt-detail/receiptsDetail.requests.js +30 -0
  1429. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipts-list/ReceiptsListPage.vue +80 -0
  1430. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipts-list/__tests__/purchaseReceiptListPage.rules.test.js +150 -0
  1431. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipts-list/box/ReceiptsListBox.vue +181 -0
  1432. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipts-list/empty/ReceiptsListEmpty.vue +32 -0
  1433. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipts-list/receiptsListPage.composable.js +85 -0
  1434. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipts-list/receiptsListPage.requests.js +51 -0
  1435. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipts-list/receiptsListPage.rules.js +46 -0
  1436. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipts-list/search-bar/ReceiptsListSearchBar.vue +57 -0
  1437. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipts-list/search-bar/receiptsListSearchBar.composable.js +21 -0
  1438. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipts-list/search-bar/receiptsListSearchBar.rules.js +20 -0
  1439. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipts-list/tags/ReceiptsListTags.vue +100 -0
  1440. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipts-list/tags/receiptsListTags.composable.js +45 -0
  1441. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/receipts-list/tags/receiptsListTags.rules.js +12 -0
  1442. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/routes.js +51 -0
  1443. package/cdp-due--customer-space-module-master/src/contents/purchase-receipt/trackingEvents.js +26 -0
  1444. package/cdp-due--customer-space-module-master/src/domains/addresses/address-edition/AddressEditionLayer.vue +93 -0
  1445. package/cdp-due--customer-space-module-master/src/domains/addresses/address-edition/addressEditionLayer.composable.js +137 -0
  1446. package/cdp-due--customer-space-module-master/src/domains/addresses/address-edition/constants.js +163 -0
  1447. package/cdp-due--customer-space-module-master/src/domains/addresses/address-edition/steps/address/AddressStep.vue +13 -0
  1448. package/cdp-due--customer-space-module-master/src/domains/addresses/address-edition/steps/commodities/BigCheckbox.vue +49 -0
  1449. package/cdp-due--customer-space-module-master/src/domains/addresses/address-edition/steps/commodities/Commodities.vue +9 -0
  1450. package/cdp-due--customer-space-module-master/src/domains/addresses/address-edition/steps/commodities/CommoditiesControl.vue +60 -0
  1451. package/cdp-due--customer-space-module-master/src/domains/addresses/address-edition/steps/commodities/CommoditiesControlOption.vue +83 -0
  1452. package/cdp-due--customer-space-module-master/src/domains/addresses/address-edition/steps/housingCategory/HousingCategory.vue +26 -0
  1453. package/cdp-due--customer-space-module-master/src/domains/addresses/address-edition/steps/housingType/HousingType.vue +26 -0
  1454. package/cdp-due--customer-space-module-master/src/domains/addresses/address-edition/steps/inhabitantStatus/InhabitantStatus.vue +29 -0
  1455. package/cdp-due--customer-space-module-master/src/domains/addresses/address-edition/store.js +21 -0
  1456. package/cdp-due--customer-space-module-master/src/domains/addresses/address-edition/updateCustomerAddress.composable.js +27 -0
  1457. package/cdp-due--customer-space-module-master/src/domains/addresses/address-edition/updateCustomerAddress.request.js +30 -0
  1458. package/cdp-due--customer-space-module-master/src/domains/addresses/main-address-status/MainAddressStatusCheckbox.vue +15 -0
  1459. package/cdp-due--customer-space-module-master/src/domains/addresses/usages/Usages.vue +43 -0
  1460. package/cdp-due--customer-space-module-master/src/domains/addresses/usages/usages.composable.js +18 -0
  1461. package/cdp-due--customer-space-module-master/src/domains/addresses/usages/usages.rules.js +21 -0
  1462. package/cdp-due--customer-space-module-master/src/domains/administrative-identifier/administrativeIdentifier.rules.js +128 -0
  1463. package/cdp-due--customer-space-module-master/src/domains/currency/index.js +15 -0
  1464. package/cdp-due--customer-space-module-master/src/domains/fundings/DashboardFunding.vue +43 -0
  1465. package/cdp-due--customer-space-module-master/src/domains/fundings/DashboardFundingV2.vue +26 -0
  1466. package/cdp-due--customer-space-module-master/src/domains/fundings/__tests__/funding.rules.test.js +42 -0
  1467. package/cdp-due--customer-space-module-master/src/domains/fundings/dashboardFundingV2.composable.js +15 -0
  1468. package/cdp-due--customer-space-module-master/src/domains/fundings/dashboardFundingV2.rules.js +43 -0
  1469. package/cdp-due--customer-space-module-master/src/domains/fundings/funding.composable.js +17 -0
  1470. package/cdp-due--customer-space-module-master/src/domains/fundings/funding.constants.js +4 -0
  1471. package/cdp-due--customer-space-module-master/src/domains/fundings/funding.events.js +60 -0
  1472. package/cdp-due--customer-space-module-master/src/domains/fundings/funding.rules.js +29 -0
  1473. package/cdp-due--customer-space-module-master/src/domains/fundings/fundingSettingsConfig.js +29 -0
  1474. package/cdp-due--customer-space-module-master/src/domains/fundings/oney/OneyFunding.vue +28 -0
  1475. package/cdp-due--customer-space-module-master/src/domains/fundings/oney/hook.js +28 -0
  1476. package/cdp-due--customer-space-module-master/src/domains/legal-form/legalForm.rules.js +9 -0
  1477. package/cdp-due--customer-space-module-master/src/domains/loyalty/available-programs/getAvailablePrograms.composable.js +16 -0
  1478. package/cdp-due--customer-space-module-master/src/domains/loyalty/available-programs/getAvailablePrograms.request.js +14 -0
  1479. package/cdp-due--customer-space-module-master/src/domains/loyalty/invitations/__tests__/getLoyaltyInvitations.rules.test.js +40 -0
  1480. package/cdp-due--customer-space-module-master/src/domains/loyalty/invitations/getLoyaltyInvitations.composable.js +26 -0
  1481. package/cdp-due--customer-space-module-master/src/domains/loyalty/invitations/getLoyaltyInvitations.request.js +12 -0
  1482. package/cdp-due--customer-space-module-master/src/domains/loyalty/invitations/getLoyaltyInvitations.rules.js +8 -0
  1483. package/cdp-due--customer-space-module-master/src/domains/loyalty/program/__tests__/getProgram.rules.test.js +22 -0
  1484. package/cdp-due--customer-space-module-master/src/domains/loyalty/program/constants.js +3 -0
  1485. package/cdp-due--customer-space-module-master/src/domains/loyalty/program/getProgram.composable.js +24 -0
  1486. package/cdp-due--customer-space-module-master/src/domains/loyalty/program/getProgram.request.js +13 -0
  1487. package/cdp-due--customer-space-module-master/src/domains/loyalty/program/getProgram.rules.js +9 -0
  1488. package/cdp-due--customer-space-module-master/src/domains/personal-information/data.js +0 -0
  1489. package/cdp-due--customer-space-module-master/src/domains/personal-information/hook.js +0 -0
  1490. package/cdp-due--customer-space-module-master/src/domains/personal-information/rules.js +0 -0
  1491. package/cdp-due--customer-space-module-master/src/domains/personal-information/service.js +0 -0
  1492. package/cdp-due--customer-space-module-master/src/domains/personal-information/slice.js +1 -0
  1493. package/cdp-due--customer-space-module-master/src/helpers.js +43 -0
  1494. package/cdp-due--customer-space-module-master/src/i18n/index.js +5 -0
  1495. package/cdp-due--customer-space-module-master/src/main.js +53 -0
  1496. package/cdp-due--customer-space-module-master/src/module/actions.js +79 -0
  1497. package/cdp-due--customer-space-module-master/src/module/constants.js +18 -0
  1498. package/cdp-due--customer-space-module-master/src/module/general/actions.js +64 -0
  1499. package/cdp-due--customer-space-module-master/src/module/general/constants.js +23 -0
  1500. package/cdp-due--customer-space-module-master/src/module/general/getters.js +21 -0
  1501. package/cdp-due--customer-space-module-master/src/module/general/index.js +29 -0
  1502. package/cdp-due--customer-space-module-master/src/module/general/mutations.js +22 -0
  1503. package/cdp-due--customer-space-module-master/src/module/getters.js +14 -0
  1504. package/cdp-due--customer-space-module-master/src/module/index.js +69 -0
  1505. package/cdp-due--customer-space-module-master/src/queryHandler.js +61 -0
  1506. package/cdp-due--customer-space-module-master/src/router/constants.js +14 -0
  1507. package/cdp-due--customer-space-module-master/src/router/index.js +81 -0
  1508. package/cdp-due--customer-space-module-master/src/router/routes.common.js +88 -0
  1509. package/cdp-due--customer-space-module-master/src/router/routes.eslm.js +49 -0
  1510. package/cdp-due--customer-space-module-master/src/router/routes.frlm.js +51 -0
  1511. package/cdp-due--customer-space-module-master/src/router/routes.itlm.js +51 -0
  1512. package/cdp-due--customer-space-module-master/src/router/routes.js +15 -0
  1513. package/cdp-due--customer-space-module-master/src/router/routes.ptlm.js +49 -0
  1514. package/cdp-due--customer-space-module-master/src/router/utils.js +7 -0
  1515. package/cdp-due--customer-space-module-master/src/services/__mocks__/customerServiceMock.js +405 -0
  1516. package/cdp-due--customer-space-module-master/src/services/adminService/__tests__/adminService.rules.test.js +79 -0
  1517. package/cdp-due--customer-space-module-master/src/services/adminService/adminService.rules.js +34 -0
  1518. package/cdp-due--customer-space-module-master/src/services/adminService/index.js +111 -0
  1519. package/cdp-due--customer-space-module-master/src/services/afterSaleService.js +35 -0
  1520. package/cdp-due--customer-space-module-master/src/services/customerService.js +485 -0
  1521. package/cdp-due--customer-space-module-master/src/services/errorHandler.js +30 -0
  1522. package/cdp-due--customer-space-module-master/src/services/errorMessages/shoppingListErrorMessage.js +15 -0
  1523. package/cdp-due--customer-space-module-master/src/services/projectsService.js +60 -0
  1524. package/cdp-due--customer-space-module-master/src/services/queries/fetchWrapper.js +45 -0
  1525. package/cdp-due--customer-space-module-master/src/services/queries/queryBuilder.js +24 -0
  1526. package/cdp-due--customer-space-module-master/src/services/utils.js +13 -0
  1527. package/cdp-due--customer-space-module-master/src/store/edges-cases/siret/module/index.js +8 -0
  1528. package/cdp-due--customer-space-module-master/src/store/index.js +77 -0
  1529. package/cdp-due--customer-space-module-master/src/store/storeUtils.js +45 -0
  1530. package/cdp-due--customer-space-module-master/src/stylelint.config.js +1 -0
  1531. package/cdp-due--customer-space-module-master/src/theming/index.js +1 -0
  1532. package/cdp-due--customer-space-module-master/src/theming/mozaic.scss +5 -0
  1533. package/cdp-due--customer-space-module-master/src/utils/AppError.js +5 -0
  1534. package/cdp-due--customer-space-module-master/src/utils/__tests__/createStateManager.test.js +38 -0
  1535. package/cdp-due--customer-space-module-master/src/utils/__tests__/customerNumberForApiUSe.test.js +14 -0
  1536. package/cdp-due--customer-space-module-master/src/utils/__tests__/formatCitiesToOptions.test.js +45 -0
  1537. package/cdp-due--customer-space-module-master/src/utils/__tests__/getFromBuCode.test.js +29 -0
  1538. package/cdp-due--customer-space-module-master/src/utils/ab-test.js +37 -0
  1539. package/cdp-due--customer-space-module-master/src/utils/asyncDebounce.js +21 -0
  1540. package/cdp-due--customer-space-module-master/src/utils/buildPayloadPart.js +114 -0
  1541. package/cdp-due--customer-space-module-master/src/utils/checkMobile.js +33 -0
  1542. package/cdp-due--customer-space-module-master/src/utils/clearForm.js +29 -0
  1543. package/cdp-due--customer-space-module-master/src/utils/composeUrl.js +15 -0
  1544. package/cdp-due--customer-space-module-master/src/utils/config/index.js +31 -0
  1545. package/cdp-due--customer-space-module-master/src/utils/convertString.js +11 -0
  1546. package/cdp-due--customer-space-module-master/src/utils/cookieClickHandler.js +17 -0
  1547. package/cdp-due--customer-space-module-master/src/utils/createInterfacedClass.js +77 -0
  1548. package/cdp-due--customer-space-module-master/src/utils/createModule.js +36 -0
  1549. package/cdp-due--customer-space-module-master/src/utils/createSliceHandler.js +26 -0
  1550. package/cdp-due--customer-space-module-master/src/utils/createStateManager.js +149 -0
  1551. package/cdp-due--customer-space-module-master/src/utils/dispatchUserInfos.js +17 -0
  1552. package/cdp-due--customer-space-module-master/src/utils/formatCitiesToOptions.js +19 -0
  1553. package/cdp-due--customer-space-module-master/src/utils/formatter.js +51 -0
  1554. package/cdp-due--customer-space-module-master/src/utils/getBuCodeFromCountryCode.js +12 -0
  1555. package/cdp-due--customer-space-module-master/src/utils/getCustomerNumberForApiUse.js +5 -0
  1556. package/cdp-due--customer-space-module-master/src/utils/getDomElement.js +3 -0
  1557. package/cdp-due--customer-space-module-master/src/utils/getFromBuCode.js +12 -0
  1558. package/cdp-due--customer-space-module-master/src/utils/getFromBuCodeForConfig.js +17 -0
  1559. package/cdp-due--customer-space-module-master/src/utils/index.js +14 -0
  1560. package/cdp-due--customer-space-module-master/src/utils/logger.js +10 -0
  1561. package/cdp-due--customer-space-module-master/src/utils/loggz.js +4 -0
  1562. package/cdp-due--customer-space-module-master/src/utils/openPopup.js +35 -0
  1563. package/cdp-due--customer-space-module-master/src/utils/sleep.js +5 -0
  1564. package/cdp-due--customer-space-module-master/src/utils/sort.js +24 -0
  1565. package/cdp-due--customer-space-module-master/src/utils/storage.js +97 -0
  1566. package/cdp-due--customer-space-module-master/src/utils/syncUserNameOnStaticContent.js +25 -0
  1567. package/cdp-due--customer-space-module-master/src/utils/tracking/dirtyHackBase64.js +14 -0
  1568. package/cdp-due--customer-space-module-master/src/utils/tracking/fireTrackingEvent.js +10 -0
  1569. package/cdp-due--customer-space-module-master/src/utils/tracking/index.js +238 -0
  1570. package/cdp-due--customer-space-module-master/src/utils/tracking/sendTrackingEvent.js +32 -0
  1571. package/cdp-due--customer-space-module-master/src/utils/tracking/useDomTrackingEvent.js +20 -0
  1572. package/cdp-due--customer-space-module-master/templates/i18nConfig.js +12 -0
  1573. package/cdp-due--customer-space-module-master/templates/nginx.conf +77 -0
  1574. package/cdp-due--customer-space-module-master/templates/nginx.conf.local +38 -0
  1575. package/cdp-due--customer-space-module-master/vue.config.js +122 -0
  1576. package/cdp-hpn--customer-profile-backend-master/.dependabot/config.yml +12 -0
  1577. package/cdp-hpn--customer-profile-backend-master/.github/dependabot.yml +13 -0
  1578. package/cdp-hpn--customer-profile-backend-master/.github/settings.xml +54 -0
  1579. package/cdp-hpn--customer-profile-backend-master/.github/workflows/build-branch.yml +62 -0
  1580. package/cdp-hpn--customer-profile-backend-master/.github/workflows/build-release.yml +42 -0
  1581. package/cdp-hpn--customer-profile-backend-master/.github/workflows/check-pr-title.yml +19 -0
  1582. package/cdp-hpn--customer-profile-backend-master/.github/workflows/cleanup.yml +20 -0
  1583. package/cdp-hpn--customer-profile-backend-master/.github/workflows/release.yml +64 -0
  1584. package/cdp-hpn--customer-profile-backend-master/.releaserc +18 -0
  1585. package/cdp-hpn--customer-profile-backend-master/CHANGELOG.md +2300 -0
  1586. package/cdp-hpn--customer-profile-backend-master/Dockerfile +11 -0
  1587. package/cdp-hpn--customer-profile-backend-master/README.md +124 -0
  1588. package/cdp-hpn--customer-profile-backend-master/archi/level-context.dot +44 -0
  1589. package/cdp-hpn--customer-profile-backend-master/customer-profile-backend.json +24 -0
  1590. package/cdp-hpn--customer-profile-backend-master/docker/entrypoint.sh +4 -0
  1591. package/cdp-hpn--customer-profile-backend-master/pom.xml +578 -0
  1592. package/cdp-hpn--customer-profile-backend-master/product-info.json +3 -0
  1593. package/cdp-hpn--customer-profile-backend-master/sonar-project.properties +28 -0
  1594. package/cdp-hpn--customer-profile-backend-master/src/main/config/application.yaml +143 -0
  1595. package/cdp-hpn--customer-profile-backend-master/src/main/config/debug.yaml +5 -0
  1596. package/cdp-hpn--customer-profile-backend-master/src/main/config/logback-properties.xml +7 -0
  1597. package/cdp-hpn--customer-profile-backend-master/src/main/config/logback-spring.xml +141 -0
  1598. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/Application.java +27 -0
  1599. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/account/AccountController.java +55 -0
  1600. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/account/AccountService.java +17 -0
  1601. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/account/enums/AccountIdentifierType.java +6 -0
  1602. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/account/enums/ProcessType.java +6 -0
  1603. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/account/exceptions/CustomerNotFoundException.java +10 -0
  1604. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/account/exceptions/WebAccountAlreadyActivatedException.java +10 -0
  1605. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/account/exceptions/WebAccountConflictException.java +10 -0
  1606. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/account/exceptions/WebAccountNotFoundException.java +10 -0
  1607. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/account/impl/AccountServiceDefaultImpl.java +145 -0
  1608. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/account/impl/AccountServiceLmesImpl.java +48 -0
  1609. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/account/mappers/PreExistenceMapper.java +171 -0
  1610. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/account/requests/AccountIdentifierRequest.java +23 -0
  1611. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/clients/ClientConfig.java +58 -0
  1612. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/clients/exceptions/AccessDeniedData.java +32 -0
  1613. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/clients/exceptions/AccessDeniedExceptionHandler.java +68 -0
  1614. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/clients/exceptions/AddressNotFoundException.java +14 -0
  1615. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/clients/exceptions/CustomerNotFoundException.java +16 -0
  1616. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/clients/exceptions/ErrorResource.java +79 -0
  1617. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/clients/exceptions/RestExceptionHandler.java +445 -0
  1618. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/clients/exceptions/UnauthorizedException.java +12 -0
  1619. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/commons/DateFormatter.java +58 -0
  1620. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/commons/helpers/DateHelper.java +29 -0
  1621. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/commons/helpers/JwtHelper.java +16 -0
  1622. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/commons/helpers/LdapHelper.java +17 -0
  1623. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/commons/helpers/PhoneHelper.java +31 -0
  1624. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/commons/log/ActionType.java +10 -0
  1625. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/commons/log/LogHelper.java +62 -0
  1626. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/commons/log/LogService.java +37 -0
  1627. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/commons/log/LogType.java +5 -0
  1628. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/commons/oney/StoreProperties.java +15 -0
  1629. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/CacheConfig.java +19 -0
  1630. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/Constants.java +66 -0
  1631. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/CountryConfiguration.java +19 -0
  1632. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/CreationProcessConfig.java +45 -0
  1633. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/DecryptionConfiguration.java +20 -0
  1634. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/DisableClientConfig.java +15 -0
  1635. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/FeatureFlagsConfig.java +14 -0
  1636. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/LoyaltyPdfConfig.java +21 -0
  1637. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/LoyaltyProgramConfig.java +18 -0
  1638. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/LoyaltyTypesConfig.java +15 -0
  1639. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/MembershipConfig.java +22 -0
  1640. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/OneyConfig.java +28 -0
  1641. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/PersonnalDataConfig.java +21 -0
  1642. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/RoleMappingConfiguration.java +32 -0
  1643. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/SearchOrdersConfig.java +18 -0
  1644. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/StringToActionTypeConverter.java +13 -0
  1645. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/WebConfig.java +15 -0
  1646. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/cookies/CustomerSpaceCustomerCookieConfig.java +19 -0
  1647. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/config/models/CreationProcess.java +12 -0
  1648. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/consents/ConsentController.java +140 -0
  1649. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/consents/ConsentService.java +30 -0
  1650. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/consents/ConsentServiceFrImpl.java +131 -0
  1651. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/consents/ConsentServiceOthersImpl.java +83 -0
  1652. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/consents/DecryptionService.java +65 -0
  1653. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/consents/dtos/ConsentConfigurationDto.java +28 -0
  1654. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/consents/dtos/ConsentDto.java +35 -0
  1655. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/consents/helpers/ConsentFinalityTypeHelper.java +25 -0
  1656. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/consents/mappers/ConsentDtoMapper.java +29 -0
  1657. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/consents/mappers/ConsentMapper.java +19 -0
  1658. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/consents/mappers/DataComplianceMapper.java +336 -0
  1659. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/consents/requests/ConsentListRequest.java +19 -0
  1660. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/consents/requests/ConsentRequest.java +30 -0
  1661. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/cookies/CookieService.java +120 -0
  1662. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/cookies/helper/SavedLoginRequestHelper.java +42 -0
  1663. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/CheckAttributesService.java +99 -0
  1664. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/CustomerController.java +412 -0
  1665. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/CustomerService.java +438 -0
  1666. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/AdministrativeIdentifiersDto.java +25 -0
  1667. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/CustomerDto.java +52 -0
  1668. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/CustomerListDto.java +18 -0
  1669. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/LoyaltyCreationDto.java +19 -0
  1670. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/MatchCount.java +7 -0
  1671. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/MovingDateDto.java +20 -0
  1672. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/OrderDto.java +18 -0
  1673. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/PreExistenceDto.java +59 -0
  1674. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/PreExistenceWebAccountStatus.java +7 -0
  1675. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/ProfessionalOrganisationDto.java +32 -0
  1676. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/ProfileUrlDto.java +19 -0
  1677. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/QualityDto.java +22 -0
  1678. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/QualityStatus.java +8 -0
  1679. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/SearchResultDto.java +41 -0
  1680. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/SocialNetworkProfileDto.java +24 -0
  1681. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/TransformationEligibility.java +11 -0
  1682. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/UnicityPaymentAccountDto.java +15 -0
  1683. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/WebAccountStatus.java +8 -0
  1684. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/dtos/WebUserDto.java +24 -0
  1685. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/enums/ConsentDigitalDocumentsTypeEnum.java +8 -0
  1686. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/enums/CustomerTypeEnum.java +5 -0
  1687. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/enums/HouseTypeEnum.java +15 -0
  1688. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/enums/InhabitantTypeEnum.java +15 -0
  1689. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/enums/ProfessionalOrganisationLegalFormEnum.java +32 -0
  1690. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/enums/ProfileTypeEnum.java +39 -0
  1691. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/history/AccountHistory.java +19 -0
  1692. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/history/FieldHistory.java +12 -0
  1693. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/mapper/AccountHistoryMapper.java +64 -0
  1694. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/mapper/AdministrativeIdentifiersDtoMapper.java +27 -0
  1695. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/mapper/ClientPreferenceMapper.java +109 -0
  1696. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/mapper/CreateCustomerRequestMapper.java +153 -0
  1697. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/mapper/CustomerMapper.java +579 -0
  1698. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/mapper/CustomerOrderMapper.java +31 -0
  1699. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/mapper/CustomerTypeMapper.java +38 -0
  1700. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/mapper/HousingMapper.java +95 -0
  1701. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/mapper/InhabitantTranformationMapper.java +102 -0
  1702. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/mapper/ProfessionalOrganisationDtoMapper.java +62 -0
  1703. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/models/response/CreateCustomerResponse.java +22 -0
  1704. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/models/response/LoyaltyCreationState.java +7 -0
  1705. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/requests/CheckAttributesRequest.java +14 -0
  1706. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/requests/CheckPreExistenceRequest.java +22 -0
  1707. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/requests/ConsentTypeRequestEnum.java +6 -0
  1708. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/requests/CreateCustomerRequest.java +30 -0
  1709. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/requests/HouseTypeEnum.java +15 -0
  1710. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/requests/InhabitantTransformationRequest.java +25 -0
  1711. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/requests/InhabitantTypeEnum.java +16 -0
  1712. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/requests/PreCreateCustomerRequest.java +48 -0
  1713. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/requests/SearchCustomerRequest.java +30 -0
  1714. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/requests/SearchIdentityRequest.java +20 -0
  1715. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/requests/SearchProfessionalOrganisationRequest.java +19 -0
  1716. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/requests/UpdateCustomerRequest.java +37 -0
  1717. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/customer/requests/UpdateHousingRequest.java +16 -0
  1718. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/helpers/StringHelper.java +19 -0
  1719. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/helpers/UriHelper.java +61 -0
  1720. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/labels/LabelsController.java +27 -0
  1721. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/labels/LabelsService.java +20 -0
  1722. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/LoyaltyController.java +350 -0
  1723. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/LoyaltyCreationService.java +204 -0
  1724. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/LoyaltyProgramsController.java +81 -0
  1725. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/LoyaltyService.java +262 -0
  1726. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/PdfService.java +267 -0
  1727. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/ActionType.java +6 -0
  1728. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/BadgeDto.java +19 -0
  1729. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/BadgeTypeDto.java +20 -0
  1730. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/CguDto.java +16 -0
  1731. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/CoOwnerDTO.java +19 -0
  1732. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/LoyaltyCardDto.java +47 -0
  1733. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/LoyaltyCardType.java +19 -0
  1734. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/LoyaltyLabelDto.java +15 -0
  1735. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/MembershipProcess.java +8 -0
  1736. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/ProgramDto.java +36 -0
  1737. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/ProgramsDto.java +18 -0
  1738. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/RankDto.java +20 -0
  1739. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/RankTypeDto.java +16 -0
  1740. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/ReEnrollDto.java +18 -0
  1741. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/RewardAttributeDto.java +23 -0
  1742. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/RewardBurnCriteriaDto.java +22 -0
  1743. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/RewardDto.java +32 -0
  1744. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/SupportDto.java +18 -0
  1745. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/invitations/LoyaltyInvitationDto.java +35 -0
  1746. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/invitations/UserInvitationAction.java +37 -0
  1747. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/pointshistories/EventLoyaltyPointDto.java +29 -0
  1748. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/pointshistories/LoyaltyPointsHistoriesDto.java +26 -0
  1749. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/pointtransformation/PointTransformationDto.java +30 -0
  1750. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/dtos/targetedoffer/PromotionalRewardDto.java +29 -0
  1751. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/exceptions/CoOwnerInvitationNotFoundException.java +11 -0
  1752. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/helpers/BarcodeHelper.java +54 -0
  1753. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/helpers/LoyaltyCardHelper.java +152 -0
  1754. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/mappers/LoyaltyAccountMapper.java +272 -0
  1755. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/mappers/LoyaltyCreationMapper.java +32 -0
  1756. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/mappers/LoyaltyCustomerMapper.java +287 -0
  1757. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/mappers/LoyaltyInvitationsMapper.java +103 -0
  1758. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/mappers/LoyaltyProgramMapper.java +129 -0
  1759. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/mappers/MembershipRequestMapper.java +47 -0
  1760. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/mappers/PointTansformationMapper.java +94 -0
  1761. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/mappers/TargetedOfferMapper.java +42 -0
  1762. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/models/pdf/PdfOutputStream.java +15 -0
  1763. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/requests/CreateLoyaltyInvitationAttributesPreRequest.java +16 -0
  1764. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/requests/CreateLoyaltyInvitationPreRequest.java +19 -0
  1765. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/requests/CreateLoyaltyRequest.java +15 -0
  1766. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/requests/PatchTargetedOfferRequest.java +15 -0
  1767. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/loyalty/requests/PointTransformationRequest.java +16 -0
  1768. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/payments/PaymentsController.java +92 -0
  1769. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/payments/PaymentsService.java +153 -0
  1770. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/payments/mappers/OneyMapper.java +176 -0
  1771. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/payments/mappers/PaymentsPgwMapper.java +83 -0
  1772. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/payments/models/CreditCardDto.java +29 -0
  1773. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/payments/models/CreditCardRequest.java +16 -0
  1774. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/personaldata/AddressesController.java +121 -0
  1775. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/personaldata/dtos/AddressDto.java +38 -0
  1776. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/personaldata/dtos/HousingDto.java +31 -0
  1777. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/personaldata/dtos/PhoneDto.java +21 -0
  1778. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/personaldata/mappers/AddressDtoMapper.java +29 -0
  1779. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/personaldata/mappers/AddressesMapper.java +171 -0
  1780. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/personaldata/mappers/ApiCiamMapper.java +47 -0
  1781. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/personaldata/mappers/ApiMdmMapper.java +137 -0
  1782. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/personaldata/mappers/HousingDtoMapper.java +66 -0
  1783. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/personaldata/request/UpdateCompanyRequest.java +31 -0
  1784. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/personaldata/request/UpdateProfileRequest.java +44 -0
  1785. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/personaldata/services/AddressesService.java +241 -0
  1786. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/personaldata/services/PatchCustomerService.java +713 -0
  1787. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/profile/ProfileController.java +59 -0
  1788. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/profile/ProfileService.java +86 -0
  1789. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/profile/models/CommunityProfileResponse.java +17 -0
  1790. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/profile/models/ImageSize.java +14 -0
  1791. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/profile/requests/CommunityProfileRequest.java +19 -0
  1792. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/profile/requests/CommunitySocialRequest.java +14 -0
  1793. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/profile/requests/UpdateAvatarRequest.java +11 -0
  1794. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/profile/requests/UpdateCommunityProfileRequest.java +31 -0
  1795. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/profile/requests/UploadAvatarRequest.java +13 -0
  1796. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/ResourceController.java +90 -0
  1797. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/ResourceMapper.java +95 -0
  1798. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/ResourceService.java +203 -0
  1799. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/StoreDtoMapper.java +24 -0
  1800. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/StoreService.java +88 -0
  1801. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/city/CityService.java +8 -0
  1802. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/city/dtos/CityDto.java +6 -0
  1803. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/city/dtos/CityListDto.java +18 -0
  1804. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/city/dtos/FrCityDto.java +25 -0
  1805. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/city/dtos/OtherBuCityDto.java +21 -0
  1806. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/city/impl/lmfr/CityServiceFrImpl.java +24 -0
  1807. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/city/impl/others/CityServiceOthersImpl.java +29 -0
  1808. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/dtos/AddressDto.java +17 -0
  1809. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/dtos/CountryDto.java +19 -0
  1810. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/dtos/ProvinceDto.java +14 -0
  1811. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/dtos/RoleDto.java +22 -0
  1812. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/dtos/RoleListDto.java +17 -0
  1813. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/dtos/StoreDto.java +16 -0
  1814. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/resource/dtos/StoreListDto.java +18 -0
  1815. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/user/UserContextMapper.java +17 -0
  1816. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/user/UserController.java +65 -0
  1817. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/user/UserMapper.java +38 -0
  1818. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/user/UserService.java +63 -0
  1819. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/user/contextualization/ContextualizationService.java +9 -0
  1820. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/user/contextualization/impl/ContextualizationServiceDefaultImpl.java +39 -0
  1821. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/user/contextualization/impl/ContextualizationServiceFrImpl.java +49 -0
  1822. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/user/dtos/CustomerSpaceCustomerCookieDto.java +25 -0
  1823. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/user/dtos/UserDto.java +46 -0
  1824. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/user/dtos/enums/CivilityEnum.java +32 -0
  1825. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/user/exceptions/UserContextualizationException.java +14 -0
  1826. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/user/requests/UserContextRequest.java +10 -0
  1827. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/webuser/WebUserController.java +77 -0
  1828. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/webuser/WebUserService.java +124 -0
  1829. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/webuser/exceptions/CustomerAlreadyBoundToWebUserException.java +14 -0
  1830. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/webuser/exceptions/WebUserNotFoundException.java +14 -0
  1831. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/webuser/exceptions/WebUserSuspendException.java +17 -0
  1832. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/webuser/mappers/WebUserMapper.java +43 -0
  1833. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/webuser/models/BindToWebUserRequest.java +18 -0
  1834. package/cdp-hpn--customer-profile-backend-master/src/main/java/com/adeo/customerprofilebackend/webuser/models/UpdateWebUserResponse.java +19 -0
  1835. package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/housing_pass.jrxml +30 -0
  1836. package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/bullet.gif +0 -0
  1837. package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/carte-row-right.gif +0 -0
  1838. package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/carte.gif +0 -0
  1839. package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/closer.gif +0 -0
  1840. package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/closer2.gif +0 -0
  1841. package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/code_barre.gif +0 -0
  1842. package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/codebarre.gif +0 -0
  1843. package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/contents1-left.gif +0 -0
  1844. package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/contents1-right.gif +0 -0
  1845. package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/contents2-end.gif +0 -0
  1846. package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/contents2-left.gif +0 -0
  1847. package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/contents2-right.gif +0 -0
  1848. package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/contents5-left.gif +0 -0
  1849. package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/contents5-right.gif +0 -0
  1850. package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/last-left.gif +0 -0
  1851. package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/last-right.gif +0 -0
  1852. package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/logo.gif +0 -0
  1853. package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/midtitles.gif +0 -0
  1854. package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/pass_maison.jpg +0 -0
  1855. package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/subtitle1.gif +0 -0
  1856. package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/subtitle2.gif +0 -0
  1857. package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/subtitle3.gif +0 -0
  1858. package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/subtitle4.png +0 -0
  1859. package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/title.gif +0 -0
  1860. package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/title4.gif +0 -0
  1861. package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/title5-end.gif +0 -0
  1862. package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/title5.gif +0 -0
  1863. package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/images/top.gif +0 -0
  1864. package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/lm_and_me.jrxml +17 -0
  1865. package/cdp-hpn--customer-profile-backend-master/src/main/resources/templates/loyalty/loyalty_card.jrxml +303 -0
  1866. package/cdp-hpn--customer-profile-backend-master/src/test/java/com/adeo/customerprofilebackend/ApplicationTests.java +21 -0
  1867. package/cdp-hpn--customer-profile-backend-master/src/test/java/com/adeo/customerprofilebackend/customer/mapper/CustomerMapperTest.java +264 -0
  1868. package/cdp-hpn--customer-profile-backend-master/src/test/java/com/adeo/customerprofilebackend/loyalty/LoyaltyCreationServiceTest.java +349 -0
  1869. package/cdp-hpn--customer-profile-backend-master/src/test/java/com/adeo/customerprofilebackend/resource/ResourceServiceTest.java +414 -0
  1870. package/index.js +13 -0
  1871. package/package.json +15 -0
@@ -0,0 +1,1784 @@
1
+ ## [6.54.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.54.2...v6.54.3) (2024-05-27)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * CIAM-2650 Unit tests P1 ([#293](https://github.com/adeo/cdp-due--authentication-module/issues/293)) ([42424f5](https://github.com/adeo/cdp-due--authentication-module/commit/42424f5e38814c5bc848b13c8e4f29ea08358e1e))
7
+
8
+ ## [6.54.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.54.1...v6.54.2) (2024-04-26)
9
+
10
+
11
+ ### Reverts
12
+
13
+ * Revert "feat: Customer Context Cookie (#286)" ([403d540](https://github.com/adeo/cdp-due--authentication-module/commit/403d5404b8ff09ac3508399624b1b2fa4591a493)), closes [#286](https://github.com/adeo/cdp-due--authentication-module/issues/286)
14
+
15
+ ## [6.54.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.54.0...v6.54.1) (2024-04-25)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * missing social-connector param after social login for non LMFR BU ([#290](https://github.com/adeo/cdp-due--authentication-module/issues/290)) ([c23a40d](https://github.com/adeo/cdp-due--authentication-module/commit/c23a40df105e7e9bf402175d2dec3b3f84954071))
21
+
22
+ # [6.54.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.53.1...v6.54.0) (2024-04-25)
23
+
24
+
25
+ ### Features
26
+
27
+ * CIAM-2358 Authenticate users using the SSO cookie ([#289](https://github.com/adeo/cdp-due--authentication-module/issues/289)) ([89ee58d](https://github.com/adeo/cdp-due--authentication-module/commit/89ee58db342eb760434fef6939dc9034689cc88c))
28
+
29
+ ## [6.53.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.53.0...v6.53.1) (2024-04-18)
30
+
31
+
32
+ ### Bug Fixes
33
+
34
+ * CIAM-2356 AUTH-MOD - Password Strength Validation ([#265](https://github.com/adeo/cdp-due--authentication-module/issues/265)) ([f6b0c6e](https://github.com/adeo/cdp-due--authentication-module/commit/f6b0c6e6262774990462c917e19c411debfbdc6e))
35
+
36
+ # [6.53.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.52.8...v6.53.0) (2024-04-18)
37
+
38
+
39
+ ### Features
40
+
41
+ * Customer Context Cookie ([#286](https://github.com/adeo/cdp-due--authentication-module/issues/286)) ([a32bc12](https://github.com/adeo/cdp-due--authentication-module/commit/a32bc12c711e0b908d36afe99e9bfa511905d8ab))
42
+
43
+ ## [6.52.8](https://github.com/adeo/cdp-due--authentication-module/compare/v6.52.7...v6.52.8) (2024-04-04)
44
+
45
+
46
+ ### Bug Fixes
47
+
48
+ * CIAM-2482 Translation missing for "Not matching password" ([#284](https://github.com/adeo/cdp-due--authentication-module/issues/284)) ([8134130](https://github.com/adeo/cdp-due--authentication-module/commit/8134130a20ac499cbfc84c8538742568c1b7a503))
49
+
50
+ ## [6.52.7](https://github.com/adeo/cdp-due--authentication-module/compare/v6.52.6...v6.52.7) (2024-04-04)
51
+
52
+
53
+ ### Bug Fixes
54
+
55
+ * CIAM-2483 Custom contact url (vault) and phone number (phrase App) per BU ([#283](https://github.com/adeo/cdp-due--authentication-module/issues/283)) ([3d3114b](https://github.com/adeo/cdp-due--authentication-module/commit/3d3114bd64f50ce5ea7d7069861f0a3d4a951cd9))
56
+
57
+ ## [6.52.6](https://github.com/adeo/cdp-due--authentication-module/compare/v6.52.5...v6.52.6) (2024-04-04)
58
+
59
+
60
+ ### Bug Fixes
61
+
62
+ * CIAM-2346 Pre-fill email field with the correct email on forgotten pwd page ([#281](https://github.com/adeo/cdp-due--authentication-module/issues/281)) ([83de730](https://github.com/adeo/cdp-due--authentication-module/commit/83de73013420f595786d4affc88cfc645ce9e677))
63
+
64
+ ## [6.52.5](https://github.com/adeo/cdp-due--authentication-module/compare/v6.52.4...v6.52.5) (2024-04-03)
65
+
66
+
67
+ ### Bug Fixes
68
+
69
+ * CIAM-2505 CSRF security implementation => fix wrong import :D ([#285](https://github.com/adeo/cdp-due--authentication-module/issues/285)) ([d79a307](https://github.com/adeo/cdp-due--authentication-module/commit/d79a307ec487cce8105af81bc07d75f40d6642bb))
70
+
71
+ ## [6.52.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.52.3...v6.52.4) (2024-04-02)
72
+
73
+
74
+ ### Bug Fixes
75
+
76
+ * adding kazaplan pattern config ([#282](https://github.com/adeo/cdp-due--authentication-module/issues/282)) ([4d551e5](https://github.com/adeo/cdp-due--authentication-module/commit/4d551e5c8e03602100ccd9805fb6bd1057f759ee))
77
+
78
+ ## [6.52.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.52.2...v6.52.3) (2024-03-29)
79
+
80
+
81
+ ### Bug Fixes
82
+
83
+ * CIAM-2447 Secure the /services/account/check endpoint using CSRF security ([#280](https://github.com/adeo/cdp-due--authentication-module/issues/280)) ([836828d](https://github.com/adeo/cdp-due--authentication-module/commit/836828d14de557672a13f915256646759c255c6f))
84
+
85
+ ## [6.52.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.52.1...v6.52.2) (2024-03-25)
86
+
87
+
88
+ ### Bug Fixes
89
+
90
+ * CIAM-2447 Secure the /services/account/check endpoint ([#279](https://github.com/adeo/cdp-due--authentication-module/issues/279)) ([5d63668](https://github.com/adeo/cdp-due--authentication-module/commit/5d63668815e646e6d122c313e0b4bafbbccaf763))
91
+
92
+ ## [6.52.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.52.0...v6.52.1) (2024-03-20)
93
+
94
+
95
+ ### Bug Fixes
96
+
97
+ * CIAM-2447 Secure the /services/account/check endpoint ([#278](https://github.com/adeo/cdp-due--authentication-module/issues/278)) ([5295b17](https://github.com/adeo/cdp-due--authentication-module/commit/5295b17c8ea8821010a6cdc96546629ecd37dc3b))
98
+
99
+ # [6.52.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.51.0...v6.52.0) (2024-03-19)
100
+
101
+
102
+ ### Features
103
+
104
+ * **ping:** implements refresh token ([#275](https://github.com/adeo/cdp-due--authentication-module/issues/275)) ([efd46a7](https://github.com/adeo/cdp-due--authentication-module/commit/efd46a734eea6bf99e79e234ec0ed00bbf02cf2c))
105
+
106
+ # [6.51.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.50.0...v6.51.0) (2024-03-18)
107
+
108
+
109
+ ### Features
110
+
111
+ * fix dockerfile ([#277](https://github.com/adeo/cdp-due--authentication-module/issues/277)) ([5fa276f](https://github.com/adeo/cdp-due--authentication-module/commit/5fa276fee588d4d50d88225d6334be9308e3d2d1))
112
+
113
+ # [6.50.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.49.0...v6.50.0) (2024-03-18)
114
+
115
+
116
+ ### Features
117
+
118
+ * restore versions upgrades, role management update, log fixes --- Revert "fix: delete kobijwt on authorize and revert to v6.46.1 ([#268](https://github.com/adeo/cdp-due--authentication-module/issues/268))" ([#272](https://github.com/adeo/cdp-due--authentication-module/issues/272)) ([0ac5587](https://github.com/adeo/cdp-due--authentication-module/commit/0ac5587c31d0187a27d975fd23f2ea01795a2a91))
119
+
120
+ # [6.49.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.48.0...v6.49.0) (2024-03-18)
121
+
122
+
123
+ ### Features
124
+
125
+ * restor versions upgrades, role management update, log fixes --- Revert "fix: delete kobijwt on authorize and revert to v6.46.1 ([#268](https://github.com/adeo/cdp-due--authentication-module/issues/268))" ([#272](https://github.com/adeo/cdp-due--authentication-module/issues/272)) ([379fc84](https://github.com/adeo/cdp-due--authentication-module/commit/379fc849a52e42f99bf07116d0a47c9e707c4840))
126
+
127
+ # [6.48.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.47.3...v6.48.0) (2024-03-18)
128
+
129
+
130
+ ### Features
131
+
132
+ * restor versions upgrades, role management update, log fixes --- Revert "fix: delete kobijwt on authorize and revert to v6.46.1 ([#268](https://github.com/adeo/cdp-due--authentication-module/issues/268))" ([#272](https://github.com/adeo/cdp-due--authentication-module/issues/272)) ([7ba7c41](https://github.com/adeo/cdp-due--authentication-module/commit/7ba7c4110a5885a44549cb1946bd51f41969f57d))
133
+
134
+ ## [6.47.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.47.2...v6.47.3) (2024-03-13)
135
+
136
+
137
+ ### Bug Fixes
138
+
139
+ * CIAM-2262 Authent module - 500 errors account check ([#273](https://github.com/adeo/cdp-due--authentication-module/issues/273)) ([4287a95](https://github.com/adeo/cdp-due--authentication-module/commit/4287a95af19f82362c8cb98aeab44817880ce3cc))
140
+
141
+ ## [6.47.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.47.1...v6.47.2) (2024-03-12)
142
+
143
+
144
+ ### Bug Fixes
145
+
146
+ * max session in memory ([#274](https://github.com/adeo/cdp-due--authentication-module/issues/274)) ([d7426d2](https://github.com/adeo/cdp-due--authentication-module/commit/d7426d27d44fffc9c513a81e76106356e99e05e6))
147
+
148
+ ## [6.47.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.47.0...v6.47.1) (2024-03-12)
149
+
150
+
151
+ ### Reverts
152
+
153
+ * Revert "feat: CIAM-2003 Presignup email page : disable email update (#243)" ([a260337](https://github.com/adeo/cdp-due--authentication-module/commit/a26033785bd261a06779492bc3e2249e2f15c306)), closes [#243](https://github.com/adeo/cdp-due--authentication-module/issues/243)
154
+
155
+ # [6.47.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.46.7...v6.47.0) (2024-03-11)
156
+
157
+
158
+ ### Features
159
+
160
+ * CIAM-2003 Presignup email page : disable email update ([#243](https://github.com/adeo/cdp-due--authentication-module/issues/243)) ([a72ffb6](https://github.com/adeo/cdp-due--authentication-module/commit/a72ffb67caa3744dc48a73910e2151162c69d4df))
161
+
162
+ ## [6.46.7](https://github.com/adeo/cdp-due--authentication-module/compare/v6.46.6...v6.46.7) (2024-03-06)
163
+
164
+ ### Bug Fixes
165
+
166
+ * 9831a269 (fix: delete kobijwt on authorize and revert to v6.46.1 (#268))
167
+
168
+
169
+ ## [6.46.6](https://github.com/adeo/cdp-due--authentication-module/compare/v6.46.5...v6.46.6) (2024-03-04)
170
+
171
+
172
+ ### Bug Fixes
173
+
174
+ * added the matching role to the final delivered roles ([#267](https://github.com/adeo/cdp-due--authentication-module/issues/267)) ([5dadd1d](https://github.com/adeo/cdp-due--authentication-module/commit/5dadd1dfaefbbfb382f0cf620f0c7cec45eae29b))
175
+
176
+ ## [6.46.5](https://github.com/adeo/cdp-due--authentication-module/compare/v6.46.4...v6.46.5) (2024-03-04)
177
+
178
+
179
+ ### Bug Fixes
180
+
181
+ * CIAM-2338 | Role detection behavior change ([#266](https://github.com/adeo/cdp-due--authentication-module/issues/266)) ([e3f1f5b](https://github.com/adeo/cdp-due--authentication-module/commit/e3f1f5b9ed6761554daf7841b20bfa372fa74218))
182
+
183
+ ## [6.46.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.46.3...v6.46.4) (2024-02-15)
184
+
185
+
186
+ ### Bug Fixes
187
+
188
+ * CIAM-2275 | Removed or changed frequent logs ([#262](https://github.com/adeo/cdp-due--authentication-module/issues/262)) ([94f2401](https://github.com/adeo/cdp-due--authentication-module/commit/94f2401027266111dbb29b5f35a65c9052c060a4))
189
+
190
+ ## [6.46.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.46.2...v6.46.3) (2024-02-15)
191
+
192
+
193
+ ### Bug Fixes
194
+
195
+ * **dockerfile:** remove useless line causing error ([#264](https://github.com/adeo/cdp-due--authentication-module/issues/264)) ([31a8a09](https://github.com/adeo/cdp-due--authentication-module/commit/31a8a09fa15131a25c4a30f1c306ce51c90d7e40))
196
+
197
+ ## [6.46.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.46.2...v6.46.3) (2024-02-15)
198
+
199
+
200
+ ### Bug Fixes
201
+
202
+ * **dockerfile:** remove useless line causing error ([#264](https://github.com/adeo/cdp-due--authentication-module/issues/264)) ([31a8a09](https://github.com/adeo/cdp-due--authentication-module/commit/31a8a09fa15131a25c4a30f1c306ce51c90d7e40))
203
+
204
+ ## [6.46.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.46.1...v6.46.2) (2024-02-15)
205
+
206
+
207
+ ### Bug Fixes
208
+
209
+ * **presignupsms:** change encoding algorithm and jackson timezone pb wsince java upgrade([#263](https://github.com/adeo/cdp-due--authentication-module/issues/263)) ([8d9bb36](https://github.com/adeo/cdp-due--authentication-module/commit/8d9bb36fc0ee6173b90fc7c939259f7a745cb01e))
210
+
211
+ ## [6.46.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.46.0...v6.46.1) (2024-02-06)
212
+
213
+
214
+ ### Reverts
215
+
216
+ * Revert "Revert "feat: incorporated hylia roles (#254)"" ([f6fd2ca](https://github.com/adeo/cdp-due--authentication-module/commit/f6fd2cad24901b84d9c4b098dba47f5247442203)), closes [#254](https://github.com/adeo/cdp-due--authentication-module/issues/254)
217
+
218
+ # [6.46.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.45.1...v6.46.0) (2024-02-02)
219
+
220
+
221
+ ### Features
222
+
223
+ * upgrade dockerfile jdk 11.0.16 ([#261](https://github.com/adeo/cdp-due--authentication-module/issues/261)) ([f69d7d5](https://github.com/adeo/cdp-due--authentication-module/commit/f69d7d53e9073b43f859418276a94a989842784f))
224
+
225
+
226
+ ### Reverts
227
+
228
+ * Revert "feat: incorporated hylia roles (#254)" ([c12cc5e](https://github.com/adeo/cdp-due--authentication-module/commit/c12cc5e961641bf4fb83ac55a448e383109f8e61)), closes [#254](https://github.com/adeo/cdp-due--authentication-module/issues/254)
229
+
230
+ ## [6.45.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.45.0...v6.45.1) (2024-02-01)
231
+
232
+
233
+ ### Bug Fixes
234
+
235
+ * temporary Kobi.jwt must expire as UncompleteSignup.jwt ([#260](https://github.com/adeo/cdp-due--authentication-module/issues/260)) ([5e75fe8](https://github.com/adeo/cdp-due--authentication-module/commit/5e75fe8dbac0f12ca81f4130ccc920b3dc3d4e4a))
236
+
237
+ # [6.45.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.44.0...v6.45.0) (2024-02-01)
238
+
239
+
240
+ ### Features
241
+
242
+ * new cookie UncompleteSignup.jwt when missing client number on web account ([#259](https://github.com/adeo/cdp-due--authentication-module/issues/259)) ([7935d1f](https://github.com/adeo/cdp-due--authentication-module/commit/7935d1fd56d662d4453406852a45f7c4a9a6d6a7))
243
+
244
+ # [6.44.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.43.14...v6.44.0) (2024-01-29)
245
+
246
+
247
+ ### Features
248
+
249
+ * incorporated hylia roles ([#254](https://github.com/adeo/cdp-due--authentication-module/issues/254)) ([7f14320](https://github.com/adeo/cdp-due--authentication-module/commit/7f14320e5507d2c2775a0f1f0bd88ceeb19dd54e))
250
+
251
+ ## [6.43.14](https://github.com/adeo/cdp-due--authentication-module/compare/v6.43.13...v6.43.14) (2024-01-23)
252
+
253
+
254
+ ### Bug Fixes
255
+
256
+ * **cookie:** don't set storeId ccokie on Elo post authentication for specific store setted in vault ([#258](https://github.com/adeo/cdp-due--authentication-module/issues/258)) ([7f28a6d](https://github.com/adeo/cdp-due--authentication-module/commit/7f28a6d49e3733a6c0e7f87661d357f84bae65dc))
257
+
258
+ ## [6.43.13](https://github.com/adeo/cdp-due--authentication-module/compare/v6.43.12...v6.43.13) (2024-01-22)
259
+
260
+
261
+ ### Bug Fixes
262
+
263
+ * verify login state, when not valid redirect to empty state callback ([#256](https://github.com/adeo/cdp-due--authentication-module/issues/256)) ([8baf097](https://github.com/adeo/cdp-due--authentication-module/commit/8baf09706c70d8df9a22b0723740320714a49cea))
264
+
265
+ ## [6.43.12](https://github.com/adeo/cdp-due--authentication-module/compare/v6.43.11...v6.43.12) (2024-01-22)
266
+
267
+
268
+ ### Bug Fixes
269
+
270
+ * blank space on cgv text for activate account component ([#257](https://github.com/adeo/cdp-due--authentication-module/issues/257)) ([db569d7](https://github.com/adeo/cdp-due--authentication-module/commit/db569d7a16b4add530dac96ab6a35b0f7dbe20d1))
271
+
272
+ ## [6.43.11](https://github.com/adeo/cdp-due--authentication-module/compare/v6.43.10...v6.43.11) (2024-01-16)
273
+
274
+
275
+ ### Bug Fixes
276
+
277
+ * manage authentication for mobile ([#253](https://github.com/adeo/cdp-due--authentication-module/issues/253)) ([6205b57](https://github.com/adeo/cdp-due--authentication-module/commit/6205b57d2c300666dbc595115a1254192e3a130b))
278
+
279
+ ## [6.43.10](https://github.com/adeo/cdp-due--authentication-module/compare/v6.43.9...v6.43.10) (2024-01-02)
280
+
281
+
282
+ ### Bug Fixes
283
+
284
+ * to bypass reach5 bug which returns last_login_provider = null ([#252](https://github.com/adeo/cdp-due--authentication-module/issues/252)) ([d386af0](https://github.com/adeo/cdp-due--authentication-module/commit/d386af07899f3049cb96df9de1e5349b8147a092))
285
+
286
+ ## [6.43.9](https://github.com/adeo/cdp-due--authentication-module/compare/v6.43.8...v6.43.9) (2023-12-28)
287
+
288
+
289
+ ### Bug Fixes
290
+
291
+ * add new env variable to manage maxDepthPerThrowable ([#251](https://github.com/adeo/cdp-due--authentication-module/issues/251)) ([73c556d](https://github.com/adeo/cdp-due--authentication-module/commit/73c556d7352160d48018483918a2c42e84f03f2a))
292
+
293
+ ## [6.43.8](https://github.com/adeo/cdp-due--authentication-module/compare/v6.43.7...v6.43.8) (2023-12-28)
294
+
295
+
296
+ ### Bug Fixes
297
+
298
+ * access logs ([#249](https://github.com/adeo/cdp-due--authentication-module/issues/249)) ([079fa2d](https://github.com/adeo/cdp-due--authentication-module/commit/079fa2d90ae701e800a850e057a80c5d8b0d6101))
299
+
300
+ ## [6.43.7](https://github.com/adeo/cdp-due--authentication-module/compare/v6.43.6...v6.43.7) (2023-12-28)
301
+
302
+
303
+ ### Bug Fixes
304
+
305
+ * manage unknown genders sent by reachfive ([#250](https://github.com/adeo/cdp-due--authentication-module/issues/250)) ([4a188d1](https://github.com/adeo/cdp-due--authentication-module/commit/4a188d149260b1e5257420731190baf1d23fe89a))
306
+
307
+ ## [6.43.6](https://github.com/adeo/cdp-due--authentication-module/compare/v6.43.5...v6.43.6) (2023-12-27)
308
+
309
+
310
+ ### Bug Fixes
311
+
312
+ * remove legacy code developped for mobile app ([#248](https://github.com/adeo/cdp-due--authentication-module/issues/248)) ([213013b](https://github.com/adeo/cdp-due--authentication-module/commit/213013bedb4e6bc1812a889fe735017e4a2a1b67))
313
+
314
+ ## [6.43.5](https://github.com/adeo/cdp-due--authentication-module/compare/v6.43.4...v6.43.5) (2023-12-21)
315
+
316
+
317
+ ### Bug Fixes
318
+
319
+ * lmfr social login kobi.jwt duration change ([#247](https://github.com/adeo/cdp-due--authentication-module/issues/247)) ([fa8a75d](https://github.com/adeo/cdp-due--authentication-module/commit/fa8a75d681c46504b60b18672a95be101957facc))
320
+
321
+ ## [6.43.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.43.3...v6.43.4) (2023-12-19)
322
+
323
+
324
+ ### Bug Fixes
325
+
326
+ * **social:** fix condition to redirect on completion page ([#246](https://github.com/adeo/cdp-due--authentication-module/issues/246)) ([58de1d4](https://github.com/adeo/cdp-due--authentication-module/commit/58de1d4ef868b8970a7f97e1986fe15e0ed43089))
327
+
328
+ ## [6.43.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.43.2...v6.43.3) (2023-12-18)
329
+
330
+
331
+ ### Bug Fixes
332
+
333
+ * 500 error when missing collab department data ([#245](https://github.com/adeo/cdp-due--authentication-module/issues/245)) ([a355ceb](https://github.com/adeo/cdp-due--authentication-module/commit/a355ceb3f86bfe4c486d785785ef9004ea1c9b9f))
334
+
335
+ ## [6.43.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.43.1...v6.43.2) (2023-12-14)
336
+
337
+
338
+ ### Bug Fixes
339
+
340
+ * **security:** cipher encoding padding scheme ([#244](https://github.com/adeo/cdp-due--authentication-module/issues/244)) ([906943c](https://github.com/adeo/cdp-due--authentication-module/commit/906943c206b763fe3a264b3ea74b3c7168df2864))
341
+
342
+ ## [6.43.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.43.0...v6.43.1) (2023-12-12)
343
+
344
+
345
+ ### Bug Fixes
346
+
347
+ * **check:** add configuration to disable mdm pre existence check ([#242](https://github.com/adeo/cdp-due--authentication-module/issues/242)) ([e64e7f5](https://github.com/adeo/cdp-due--authentication-module/commit/e64e7f51fab790aa5e5b8f50a91297c0a5466ebb))
348
+
349
+ # [6.43.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.42.7...v6.43.0) (2023-12-11)
350
+
351
+
352
+ ### Features
353
+
354
+ * presignup sms activation ([#241](https://github.com/adeo/cdp-due--authentication-module/issues/241)) ([6a0af01](https://github.com/adeo/cdp-due--authentication-module/commit/6a0af0142b9dd2d9cba3225578e1bb55dc35741e))
355
+
356
+ ## [6.42.7](https://github.com/adeo/cdp-due--authentication-module/compare/v6.42.6...v6.42.7) (2023-11-30)
357
+
358
+
359
+ ### Bug Fixes
360
+
361
+ * Revert all sms features ([f826834](https://github.com/adeo/cdp-due--authentication-module/commit/f8268343df796b39754de4f855a966af96b22875))
362
+
363
+ ## [6.42.6](https://github.com/adeo/cdp-due--authentication-module/compare/v6.42.5...v6.42.6) (2023-11-30)
364
+
365
+
366
+ ### Bug Fixes
367
+
368
+ * revert presignup sms ([#239](https://github.com/adeo/cdp-due--authentication-module/issues/239)) ([6c75f45](https://github.com/adeo/cdp-due--authentication-module/commit/6c75f45a29b7d24e8d79cdb6221727060f0197a3)), closes [#228](https://github.com/adeo/cdp-due--authentication-module/issues/228)
369
+
370
+ ## [6.42.5](https://github.com/adeo/cdp-due--authentication-module/compare/v6.42.4...v6.42.5) (2023-11-30)
371
+
372
+
373
+ ### Bug Fixes
374
+
375
+ * set phonenumber not mandatory ([#238](https://github.com/adeo/cdp-due--authentication-module/issues/238)) ([64162b8](https://github.com/adeo/cdp-due--authentication-module/commit/64162b8ff93ce8ddc786a3324e59a0ef8262e0ed))
376
+
377
+ ## [6.42.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.42.3...v6.42.4) (2023-11-30)
378
+
379
+
380
+ ### Bug Fixes
381
+
382
+ * set verification code not mandatory ([#237](https://github.com/adeo/cdp-due--authentication-module/issues/237)) ([a3c95c8](https://github.com/adeo/cdp-due--authentication-module/commit/a3c95c8f79cd90bb3d012eabc09ba6e50c68f30f))
383
+
384
+ ## [6.42.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.42.2...v6.42.3) (2023-11-27)
385
+
386
+
387
+ ### Bug Fixes
388
+
389
+ * CIAM-2004 sonar issues ([#236](https://github.com/adeo/cdp-due--authentication-module/issues/236)) ([c6d4803](https://github.com/adeo/cdp-due--authentication-module/commit/c6d48035aa83d4faf33d3640ad75dcb5a0d23f6f))
390
+
391
+ ## [6.42.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.42.1...v6.42.2) (2023-11-20)
392
+
393
+
394
+ ### Bug Fixes
395
+
396
+ * hide phone number from user ([#233](https://github.com/adeo/cdp-due--authentication-module/issues/233)) ([b76f665](https://github.com/adeo/cdp-due--authentication-module/commit/b76f665e38f268566e572ad918e81854945c619b))
397
+
398
+ ## [6.42.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.42.0...v6.42.1) (2023-11-15)
399
+
400
+
401
+ ### Bug Fixes
402
+
403
+ * **social-login:** add tracking values for signup and login + remove worflow for ab-testing + minor fixes on signup workflow ([#225](https://github.com/adeo/cdp-due--authentication-module/issues/225)) ([3830583](https://github.com/adeo/cdp-due--authentication-module/commit/38305837cc8dcbc63f78d68ba6fd7bfb043b8150))
404
+
405
+ # [6.42.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.41.2...v6.42.0) (2023-11-15)
406
+
407
+
408
+ ### Features
409
+
410
+ * **sms:** presignup sms validation code form ([2740102](https://github.com/adeo/cdp-due--authentication-module/commit/2740102169a664a5068da0de94da623ffca2745f))
411
+
412
+ ## [6.41.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.41.1...v6.41.2) (2023-11-13)
413
+
414
+
415
+ ### Bug Fixes
416
+
417
+ * **logout:** add query param to manage custom redirect path for poland ([#229](https://github.com/adeo/cdp-due--authentication-module/issues/229)) ([433c9e2](https://github.com/adeo/cdp-due--authentication-module/commit/433c9e2bdd195c66f742874850b0d9f4b2b59916))
418
+
419
+ ## [6.41.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.41.0...v6.41.1) (2023-11-10)
420
+
421
+
422
+ ### Bug Fixes
423
+
424
+ * set docker user for security ([#201](https://github.com/adeo/cdp-due--authentication-module/issues/201)) ([dde1b1b](https://github.com/adeo/cdp-due--authentication-module/commit/dde1b1bdffea840d4784646d0651b78b1a1aa96c))
425
+
426
+ # [6.41.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.40.0...v6.41.0) (2023-11-09)
427
+
428
+
429
+ ### Features
430
+
431
+ * **CIAM-1832:** Micro-frontend activation with preexistence from presignup sms ([#228](https://github.com/adeo/cdp-due--authentication-module/issues/228)) ([a64c0de](https://github.com/adeo/cdp-due--authentication-module/commit/a64c0de0e64401e30d66319bd3515c9bb6744f20))
432
+
433
+ # [6.40.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.39.3...v6.40.0) (2023-11-09)
434
+
435
+
436
+ ### Features
437
+
438
+ * **analytics:** button click event on social connector buttons ([#230](https://github.com/adeo/cdp-due--authentication-module/issues/230)) ([1dce38b](https://github.com/adeo/cdp-due--authentication-module/commit/1dce38bee9406b18290d2c91535b4fa50621f935))
439
+
440
+ ## [6.39.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.39.2...v6.39.3) (2023-11-09)
441
+
442
+
443
+ ### Bug Fixes
444
+
445
+ * correct null exception on sms activate ([#227](https://github.com/adeo/cdp-due--authentication-module/issues/227)) ([397f6f5](https://github.com/adeo/cdp-due--authentication-module/commit/397f6f5e58bac23bd948aa0ca5d2e3f35a44ab63))
446
+
447
+ ## [6.39.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.39.1...v6.39.2) (2023-10-26)
448
+
449
+
450
+ ### Bug Fixes
451
+
452
+ * **reset-password:** encode email in query parameter ([342b94f](https://github.com/adeo/cdp-due--authentication-module/commit/342b94f9d5f49289af55aa72a2cd5d78fb6df5fc))
453
+
454
+ ## [6.39.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.39.0...v6.39.1) (2023-10-09)
455
+
456
+
457
+ ### Bug Fixes
458
+
459
+ * **socialLogin:** add webUserId attribute on kobiJwt for social login signup ([#219](https://github.com/adeo/cdp-due--authentication-module/issues/219)) ([7073770](https://github.com/adeo/cdp-due--authentication-module/commit/7073770b1d6ad73519f80a394b3e15f95bd78744))
460
+
461
+ # [6.39.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.38.4...v6.39.0) (2023-10-06)
462
+
463
+
464
+ ### Features
465
+
466
+ * **login:** enter password for accounts without client number to force reset ([#223](https://github.com/adeo/cdp-due--authentication-module/issues/223)) ([93dd3ec](https://github.com/adeo/cdp-due--authentication-module/commit/93dd3ecbc63ba5734e7f67428ba2e78497941737))
467
+
468
+ ## [6.38.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.38.3...v6.38.4) (2023-10-05)
469
+
470
+
471
+ ### Bug Fixes
472
+
473
+ * **CIAM-1900:** AUTH - 500 response on activation for already existing account ([#221](https://github.com/adeo/cdp-due--authentication-module/issues/221)) ([88b6533](https://github.com/adeo/cdp-due--authentication-module/commit/88b6533ee628df819c980f5104fdfb6d6286f315))
474
+
475
+ ## [6.38.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.38.2...v6.38.3) (2023-09-21)
476
+
477
+
478
+ ### Bug Fixes
479
+
480
+ * **CIAM-1877:** Go to account creation page. ([#220](https://github.com/adeo/cdp-due--authentication-module/issues/220)) ([e17f654](https://github.com/adeo/cdp-due--authentication-module/commit/e17f654af0607af30528ed26aa6e7f4c0bdacc27))
481
+
482
+ ## [6.38.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.38.1...v6.38.2) (2023-09-19)
483
+
484
+
485
+ ### Bug Fixes
486
+
487
+ * redirect to login page when code is null ([#217](https://github.com/adeo/cdp-due--authentication-module/issues/217)) ([1575b19](https://github.com/adeo/cdp-due--authentication-module/commit/1575b198d97850ce4a827c471a60351e6c0b186d))
488
+
489
+ ## [6.38.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.38.0...v6.38.1) (2023-09-18)
490
+
491
+
492
+ ### Bug Fixes
493
+
494
+ * **translations:** trigger release ([a0586e6](https://github.com/adeo/cdp-due--authentication-module/commit/a0586e69bf6391b89114c25e9de8e5793f0e43a8))
495
+
496
+ # [6.38.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.37.0...v6.38.0) (2023-09-15)
497
+
498
+
499
+ ### Features
500
+
501
+ * **sociallogin2:** redirection verify email if adress unverified ([68f090f](https://github.com/adeo/cdp-due--authentication-module/commit/68f090fbcac6777fd92036229ec92563e6704eb9))
502
+
503
+ # [6.37.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.36.2...v6.37.0) (2023-09-15)
504
+
505
+
506
+ ### Features
507
+
508
+ * **social_login:** force verify email if address unverified ([#213](https://github.com/adeo/cdp-due--authentication-module/issues/213)) ([096937e](https://github.com/adeo/cdp-due--authentication-module/commit/096937e41436892dd3fe768ff09ff41e93ffbb26))
509
+
510
+ ## [6.36.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.36.1...v6.36.2) (2023-09-14)
511
+
512
+
513
+ ### Bug Fixes
514
+
515
+ * **CIAM-1730:** check whether the social connection button exists in the DOM. ([#215](https://github.com/adeo/cdp-due--authentication-module/issues/215)) ([22ff55d](https://github.com/adeo/cdp-due--authentication-module/commit/22ff55dc5024295242ffdb56bdd4902dae02f8cf))
516
+
517
+ ## [6.36.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.36.0...v6.36.1) (2023-09-14)
518
+
519
+
520
+ ### Bug Fixes
521
+
522
+ * **ciam-1789:** remove additional space when password and password confirmation are not equals ([#214](https://github.com/adeo/cdp-due--authentication-module/issues/214)) ([37de81a](https://github.com/adeo/cdp-due--authentication-module/commit/37de81a98071387af713e7e5e46078eecdd09909))
523
+
524
+ # [6.36.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.35.1...v6.36.0) (2023-08-31)
525
+
526
+
527
+ ### Features
528
+
529
+ * **CIAM-1789:** password entropy helper ([#208](https://github.com/adeo/cdp-due--authentication-module/issues/208)) ([cc6a816](https://github.com/adeo/cdp-due--authentication-module/commit/cc6a816af95cdb2b91674c8fb32f5bd3c246c69d))
530
+
531
+ ## [6.35.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.35.0...v6.35.1) (2023-08-22)
532
+
533
+
534
+ ### Bug Fixes
535
+
536
+ * **authentication:** add tracking value for the new signup ([#203](https://github.com/adeo/cdp-due--authentication-module/issues/203)) ([74eddf5](https://github.com/adeo/cdp-due--authentication-module/commit/74eddf530460f90685bb350149982d88019dcbce))
537
+
538
+ # [6.35.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.34.3...v6.35.0) (2023-07-24)
539
+
540
+
541
+ ### Features
542
+
543
+ * **role:** add custom role for professional customers ([#200](https://github.com/adeo/cdp-due--authentication-module/issues/200)) ([126a171](https://github.com/adeo/cdp-due--authentication-module/commit/126a171f0857d88c7d4bf34e5eb81983d0c22d6e))
544
+
545
+ ## [6.34.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.34.2...v6.34.3) (2023-07-12)
546
+
547
+
548
+ ### Bug Fixes
549
+
550
+ * **keepAlive:** reactivate feature ([6febbb6](https://github.com/adeo/cdp-due--authentication-module/commit/6febbb6883df93c073d6aec0f19481779a46af03))
551
+
552
+ ## [6.34.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.34.1...v6.34.2) (2023-07-11)
553
+
554
+
555
+ ### Bug Fixes
556
+
557
+ * **idToken:** setIdToken from reachfive response on refreshService ([#199](https://github.com/adeo/cdp-due--authentication-module/issues/199)) ([4f53b15](https://github.com/adeo/cdp-due--authentication-module/commit/4f53b15a4803a268fc89eca0a85dad46937389f5))
558
+
559
+ ## [6.34.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.34.0...v6.34.1) (2023-07-10)
560
+
561
+
562
+ ### Bug Fixes
563
+
564
+ * **keepalive:** return keepaliveStatus enum instead of the boolean isCollab ([#196](https://github.com/adeo/cdp-due--authentication-module/issues/196)) ([ce67cb3](https://github.com/adeo/cdp-due--authentication-module/commit/ce67cb39a7eb250fe8a77e9a08853b6ceca721a1))
565
+
566
+ # [6.34.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.33.1...v6.34.0) (2023-07-03)
567
+
568
+
569
+ ### Features
570
+
571
+ * **keepalive:** Implemented keepalive ([#193](https://github.com/adeo/cdp-due--authentication-module/issues/193)) ([44ccb3c](https://github.com/adeo/cdp-due--authentication-module/commit/44ccb3c56d0c7605f9247147a5b1ecd8f2461c56))
572
+
573
+ ## [6.33.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.33.0...v6.33.1) (2023-06-21)
574
+
575
+
576
+ ### Bug Fixes
577
+
578
+ * **onboarding:** poland ([#194](https://github.com/adeo/cdp-due--authentication-module/issues/194)) ([d97308d](https://github.com/adeo/cdp-due--authentication-module/commit/d97308dcf2a7f8f8cd86be15dc5757d3e0f530c7))
579
+
580
+ # [6.33.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.32.1...v6.33.0) (2023-05-15)
581
+
582
+
583
+ ### Features
584
+
585
+ * **community:** add generation of tokywoky bep sso cookie ([000f136](https://github.com/adeo/cdp-due--authentication-module/commit/000f136dfc87a0b2a68f57c36b7bfa95bb7a4f33))
586
+
587
+ ## [6.32.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.32.0...v6.32.1) (2023-05-11)
588
+
589
+
590
+ ### Bug Fixes
591
+
592
+ * **accessibility:** added hidden field on address edit ([d67f27f](https://github.com/adeo/cdp-due--authentication-module/commit/d67f27ffb95df15384de430a26aaa0d39f2415ae))
593
+
594
+ # [6.32.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.31.1...v6.32.0) (2023-04-27)
595
+
596
+
597
+ ### Bug Fixes
598
+
599
+ * build release ([4ca5d2b](https://github.com/adeo/cdp-due--authentication-module/commit/4ca5d2bcb196da3371386b5e1d536cb0170f1dc1))
600
+
601
+
602
+ ### Features
603
+
604
+ * **token:** add a new endpoint to retrieve the accessToken expiration date ([#189](https://github.com/adeo/cdp-due--authentication-module/issues/189)) ([31f0a80](https://github.com/adeo/cdp-due--authentication-module/commit/31f0a807118ce35f39e9a98737360b77afb7ae36))
605
+
606
+ ## [6.31.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.31.0...v6.31.1) (2023-04-26)
607
+
608
+
609
+ ### Bug Fixes
610
+
611
+ * **ci:** add checkmarx scan on release build workflow ([#190](https://github.com/adeo/cdp-due--authentication-module/issues/190)) ([15f528c](https://github.com/adeo/cdp-due--authentication-module/commit/15f528ccd2cec2a2fc15a5f0f2deaed2c6423f12))
612
+
613
+ # [6.31.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.30.0...v6.31.0) (2023-04-06)
614
+
615
+
616
+ ### Features
617
+
618
+ * **callback:** add authMode queryParam on redirectUrl ([#178](https://github.com/adeo/cdp-due--authentication-module/issues/178)) ([c251121](https://github.com/adeo/cdp-due--authentication-module/commit/c25112185522c5b3dd03fd71765eff2af7226c17))
619
+
620
+ # [6.30.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.29.1...v6.30.0) (2023-04-04)
621
+
622
+
623
+ ### Features
624
+
625
+ * **account-activation:** add feature ([#181](https://github.com/adeo/cdp-due--authentication-module/issues/181)) ([d53130a](https://github.com/adeo/cdp-due--authentication-module/commit/d53130a8b66f4b5161cb916db9d42f92b9ce1839))
626
+
627
+ ## [6.29.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.29.0...v6.29.1) (2023-03-31)
628
+
629
+
630
+ ### Bug Fixes
631
+
632
+ * **kobijwt:** delete old domain synchronisation method ([#174](https://github.com/adeo/cdp-due--authentication-module/issues/174)) ([cb5deb4](https://github.com/adeo/cdp-due--authentication-module/commit/cb5deb4040d1d6266a3a41c5d1547c8478bb6194))
633
+
634
+ # [6.29.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.28.6...v6.29.0) (2023-03-30)
635
+
636
+
637
+ ### Bug Fixes
638
+
639
+ * **elo:** add elo kobi.jwt expiration configuration in vault ([#188](https://github.com/adeo/cdp-due--authentication-module/issues/188)) ([b6c638b](https://github.com/adeo/cdp-due--authentication-module/commit/b6c638ba8e9c7f9b516da13a701d4847f2167ecb))
640
+
641
+
642
+ ### Features
643
+
644
+ * make email edit accessible ([#179](https://github.com/adeo/cdp-due--authentication-module/issues/179)) ([375645d](https://github.com/adeo/cdp-due--authentication-module/commit/375645dbb9d4711e319a42cc801cc434987bd48d))
645
+
646
+ ## [6.28.6](https://github.com/adeo/cdp-due--authentication-module/compare/v6.28.5...v6.28.6) (2023-03-29)
647
+
648
+
649
+ ### Bug Fixes
650
+
651
+ * **689:** fix button color for a11y ([#182](https://github.com/adeo/cdp-due--authentication-module/issues/182)) ([c0b4370](https://github.com/adeo/cdp-due--authentication-module/commit/c0b437067311c694ac7ab99d8cdc47963b615c9e))
652
+
653
+ ## [6.28.5](https://github.com/adeo/cdp-due--authentication-module/compare/v6.28.4...v6.28.5) (2023-03-22)
654
+
655
+
656
+ ### Bug Fixes
657
+
658
+ * **elo:** Revert fix kobi expiration attribute value for ELO ([#187](https://github.com/adeo/cdp-due--authentication-module/issues/187))" ([772581d](https://github.com/adeo/cdp-due--authentication-module/commit/772581dccac87f90738b205d2b33c1fd4bd6acdc))
659
+
660
+ ## [6.28.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.28.3...v6.28.4) (2023-03-21)
661
+
662
+
663
+ ### Bug Fixes
664
+
665
+ * **elo:** fix kobi expiration attribute value for ELO ([#187](https://github.com/adeo/cdp-due--authentication-module/issues/187)) ([45d9bde](https://github.com/adeo/cdp-due--authentication-module/commit/45d9bde435e891d310c9f634310d3047ed74e378))
666
+
667
+ ## [6.28.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.28.2...v6.28.3) (2023-03-15)
668
+
669
+
670
+ ### Bug Fixes
671
+
672
+ * fix bad PUT request send at page init ([#185](https://github.com/adeo/cdp-due--authentication-module/issues/185)) ([c813c3f](https://github.com/adeo/cdp-due--authentication-module/commit/c813c3f3e14bc31d6feccf4046517a26236b7088))
673
+
674
+ ## [6.28.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.28.1...v6.28.2) (2023-03-01)
675
+
676
+
677
+ ### Bug Fixes
678
+
679
+ * add cdl_page_name on update password page ([#180](https://github.com/adeo/cdp-due--authentication-module/issues/180)) ([b2ce39f](https://github.com/adeo/cdp-due--authentication-module/commit/b2ce39f3b5eb658c114396e951a0293ebfd81de9))
680
+
681
+ ## [6.28.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.28.0...v6.28.1) (2023-02-23)
682
+
683
+
684
+ ### Bug Fixes
685
+
686
+ * **translations:** trigger build for translations ([b1c472c](https://github.com/adeo/cdp-due--authentication-module/commit/b1c472cb6a2b2942cc056d7affc597b3014056b6))
687
+
688
+ # [6.28.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.27.1...v6.28.0) (2023-02-16)
689
+
690
+
691
+ ### Features
692
+
693
+ * **elo:** add specific redirect on elo authentication ([#175](https://github.com/adeo/cdp-due--authentication-module/issues/175)) ([66a4d32](https://github.com/adeo/cdp-due--authentication-module/commit/66a4d3245c74c97a9a443b65ab0e61405a413679))
694
+
695
+ ## [6.27.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.27.0...v6.27.1) (2023-02-14)
696
+
697
+
698
+ ### Bug Fixes
699
+
700
+ * autorize space in front and back on email ([#177](https://github.com/adeo/cdp-due--authentication-module/issues/177)) ([5318cb1](https://github.com/adeo/cdp-due--authentication-module/commit/5318cb1fb6614578ce4dc125d408e78dd171114e))
701
+
702
+ # [6.27.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.26.8...v6.27.0) (2023-02-10)
703
+
704
+
705
+ ### Features
706
+
707
+ * fix tracking events ([#173](https://github.com/adeo/cdp-due--authentication-module/issues/173)) ([965c1e4](https://github.com/adeo/cdp-due--authentication-module/commit/965c1e422d175e6b4bdf8a200db06b7c4d1593a4))
708
+
709
+ ## [6.26.8](https://github.com/adeo/cdp-due--authentication-module/compare/v6.26.7...v6.26.8) (2023-01-17)
710
+
711
+
712
+ ### Bug Fixes
713
+
714
+ * **security:** set sameSite attribute for Kobi.jwt + fix state checking procces to avoid csrf vulnerability ([#171](https://github.com/adeo/cdp-due--authentication-module/issues/171)) ([79872ab](https://github.com/adeo/cdp-due--authentication-module/commit/79872ab4f94c2367db60ff95fc3f49057afb2567))
715
+
716
+ ## [6.26.7](https://github.com/adeo/cdp-due--authentication-module/compare/v6.26.6...v6.26.7) (2023-01-17)
717
+
718
+
719
+ ### Bug Fixes
720
+
721
+ * **docker:** update docker reusable workflows version ([#67](https://github.com/adeo/cdp-due--authentication-module/issues/67)) ([#170](https://github.com/adeo/cdp-due--authentication-module/issues/170)) ([c2d01a7](https://github.com/adeo/cdp-due--authentication-module/commit/c2d01a7f17900549e70966fb1e1c16dfd746dec0))
722
+
723
+ ## [6.26.6](https://github.com/adeo/cdp-due--authentication-module/compare/v6.26.5...v6.26.6) (2023-01-03)
724
+
725
+
726
+ ### Bug Fixes
727
+
728
+ * update phrase key with empty commit ([#169](https://github.com/adeo/cdp-due--authentication-module/issues/169)) ([97cd01a](https://github.com/adeo/cdp-due--authentication-module/commit/97cd01ad5baaaa9e67f5cfe4e1326d0f136f3484))
729
+
730
+ ## [6.26.5](https://github.com/adeo/cdp-due--authentication-module/compare/v6.26.4...v6.26.5) (2022-12-22)
731
+
732
+
733
+ ### Bug Fixes
734
+
735
+ * fix email msg stacking when user click multiple time on resend pwd ([#168](https://github.com/adeo/cdp-due--authentication-module/issues/168)) ([871a474](https://github.com/adeo/cdp-due--authentication-module/commit/871a474fa36349a31dbeec04ceb2fe2b8e89b6ff))
736
+
737
+ ## [6.26.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.26.3...v6.26.4) (2022-12-22)
738
+
739
+
740
+ ### Bug Fixes
741
+
742
+ * **phrase:** refacto to avoid to declare translation in project ([#167](https://github.com/adeo/cdp-due--authentication-module/issues/167)) ([db91d8a](https://github.com/adeo/cdp-due--authentication-module/commit/db91d8abce641a352e3f8840b10e15e167063d5e))
743
+
744
+ ## [6.26.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.26.2...v6.26.3) (2022-12-22)
745
+
746
+
747
+ ### Bug Fixes
748
+
749
+ * update ipn team lib ([#166](https://github.com/adeo/cdp-due--authentication-module/issues/166)) ([d8f8202](https://github.com/adeo/cdp-due--authentication-module/commit/d8f82025e78dfa4294c9fcda4bec4f98652a7009))
750
+
751
+ ## [6.26.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.26.1...v6.26.2) (2022-12-16)
752
+
753
+
754
+ ### Bug Fixes
755
+
756
+ * fix css on tips on reset pwd page ([#164](https://github.com/adeo/cdp-due--authentication-module/issues/164)) ([b42b450](https://github.com/adeo/cdp-due--authentication-module/commit/b42b450b75327451b18080c519f0e0a9ee2f6b8e))
757
+
758
+ ## [6.26.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.26.0...v6.26.1) (2022-12-06)
759
+
760
+
761
+ ### Bug Fixes
762
+
763
+ * clean unwanted notification on precreate activation ([#165](https://github.com/adeo/cdp-due--authentication-module/issues/165)) ([b98759f](https://github.com/adeo/cdp-due--authentication-module/commit/b98759fba9ef5599e08fccd4478872288c930e41))
764
+
765
+ # [6.26.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.25.4...v6.26.0) (2022-11-28)
766
+
767
+
768
+ ### Features
769
+
770
+ * **callback:** add specific italian implementation to generate community cookie on authentication callback ([#163](https://github.com/adeo/cdp-due--authentication-module/issues/163)) ([3877591](https://github.com/adeo/cdp-due--authentication-module/commit/3877591b567764b965ebdc55967e70dc0a8834c4))
771
+
772
+ ## [6.25.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.25.3...v6.25.4) (2022-11-15)
773
+
774
+
775
+ ### Bug Fixes
776
+
777
+ * **cookie:** delete customerSpace.customer cookie on ping post authentication ([#162](https://github.com/adeo/cdp-due--authentication-module/issues/162)) ([7ed7353](https://github.com/adeo/cdp-due--authentication-module/commit/7ed7353c2e2f14c97ac10e967d933e7aa130700a))
778
+
779
+ ## [6.25.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.25.2...v6.25.3) (2022-10-24)
780
+
781
+
782
+ ### Bug Fixes
783
+
784
+ * update phrase key with empty commit ([58596be](https://github.com/adeo/cdp-due--authentication-module/commit/58596be0b85d80ed3c927e28ad717589e50b8701))
785
+
786
+ ## [6.25.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.25.1...v6.25.2) (2022-10-17)
787
+
788
+
789
+ ### Bug Fixes
790
+
791
+ * **cookies:** delete ping sso cookies on logout ([#160](https://github.com/adeo/cdp-due--authentication-module/issues/160)) ([86d4c24](https://github.com/adeo/cdp-due--authentication-module/commit/86d4c24352254d07e3db31b37b69601cadc33886))
792
+
793
+ ## [6.25.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.25.0...v6.25.1) (2022-10-12)
794
+
795
+
796
+ ### Bug Fixes
797
+
798
+ * **phrase:** update phrase plugins (maven and node) ([#159](https://github.com/adeo/cdp-due--authentication-module/issues/159)) ([f8cfa48](https://github.com/adeo/cdp-due--authentication-module/commit/f8cfa483e44c3d5182493d43147d6c8708fd8062))
799
+
800
+ # [6.25.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.24.2...v6.25.0) (2022-10-11)
801
+
802
+
803
+ ### Features
804
+
805
+ * **logout:** logout collab from ping ([#158](https://github.com/adeo/cdp-due--authentication-module/issues/158)) ([7b4b940](https://github.com/adeo/cdp-due--authentication-module/commit/7b4b9405cde6c1b21df637fd0374c23bead54c26))
806
+
807
+ ## [6.24.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.24.1...v6.24.2) (2022-10-06)
808
+
809
+
810
+ ### Bug Fixes
811
+
812
+ * update translation for js file (no phrase used directly in js)) ([7700e05](https://github.com/adeo/cdp-due--authentication-module/commit/7700e05690ea507fc0ca0e58c60d8b16228f07c1))
813
+
814
+ ## [6.24.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.24.0...v6.24.1) (2022-10-06)
815
+
816
+
817
+ ### Bug Fixes
818
+
819
+ * empty commit to update lmpt translation ([8abd7ca](https://github.com/adeo/cdp-due--authentication-module/commit/8abd7ca6d7cc933f370726f412e93a87171e40e5))
820
+
821
+ # [6.24.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.23.4...v6.24.0) (2022-10-05)
822
+
823
+
824
+ ### Features
825
+
826
+ * pre-fill email on forgotten password page ([#157](https://github.com/adeo/cdp-due--authentication-module/issues/157)) ([24479c6](https://github.com/adeo/cdp-due--authentication-module/commit/24479c65c5f3aee0c90ce4ece206a96bb13e82c9))
827
+
828
+ ## [6.23.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.23.3...v6.23.4) (2022-10-04)
829
+
830
+
831
+ ### Bug Fixes
832
+
833
+ * empty commit to get translation for LMPT ([#156](https://github.com/adeo/cdp-due--authentication-module/issues/156)) ([80b6fd6](https://github.com/adeo/cdp-due--authentication-module/commit/80b6fd6be481f7c682d174b68f367c223dc8c26e))
834
+
835
+ ## [6.23.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.23.2...v6.23.3) (2022-09-29)
836
+
837
+
838
+ ### Bug Fixes
839
+
840
+ * **presignup:** defer on switch if empty ([#155](https://github.com/adeo/cdp-due--authentication-module/issues/155)) ([defb9b5](https://github.com/adeo/cdp-due--authentication-module/commit/defb9b50fe8790a26d11d7204c502a2b56350a2b))
841
+
842
+ ## [6.23.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.23.1...v6.23.2) (2022-09-26)
843
+
844
+
845
+ ### Bug Fixes
846
+
847
+ * empty commit to get translation for LMPT ([#154](https://github.com/adeo/cdp-due--authentication-module/issues/154)) ([bf8cbcb](https://github.com/adeo/cdp-due--authentication-module/commit/bf8cbcb5dc19b316ab84c67b965f00a0f79535a4))
848
+
849
+ ## [6.23.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.23.0...v6.23.1) (2022-08-30)
850
+
851
+
852
+ ### Bug Fixes
853
+
854
+ * check email before calling back ([#153](https://github.com/adeo/cdp-due--authentication-module/issues/153)) ([339047c](https://github.com/adeo/cdp-due--authentication-module/commit/339047cec01bbc325289ca56a972ee91b14a51af))
855
+
856
+ # [6.23.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.22.1...v6.23.0) (2022-08-23)
857
+
858
+
859
+ ### Features
860
+
861
+ * **webaccount:** display confirmation or error message on webaccount creation and activation process ([#149](https://github.com/adeo/cdp-due--authentication-module/issues/149)) ([c5f1521](https://github.com/adeo/cdp-due--authentication-module/commit/c5f1521179cb517f6299d52aef1bb053a143a671))
862
+
863
+ ## [6.22.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.22.0...v6.22.1) (2022-08-12)
864
+
865
+
866
+ ### Bug Fixes
867
+
868
+ * avoid JS errors and refresh tracking on auth ([#144](https://github.com/adeo/cdp-due--authentication-module/issues/144)) ([52e4bd6](https://github.com/adeo/cdp-due--authentication-module/commit/52e4bd6707448a9abe6620b9c839299c1151ab2b))
869
+
870
+ # [6.22.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.21.6...v6.22.0) (2022-08-12)
871
+
872
+
873
+ ### Features
874
+
875
+ * **cookies:** set http only from configuration for OrderId + delete customerOrder cookie on logout and ping post authent ([#148](https://github.com/adeo/cdp-due--authentication-module/issues/148)) ([1ba383b](https://github.com/adeo/cdp-due--authentication-module/commit/1ba383b5abf3acde94bfa004b7798dafc4d35800))
876
+
877
+ ## [6.21.6](https://github.com/adeo/cdp-due--authentication-module/compare/v6.21.5...v6.21.6) (2022-08-11)
878
+
879
+
880
+ ### Bug Fixes
881
+
882
+ * **login:** send back to the right auth process when state is empty ([#146](https://github.com/adeo/cdp-due--authentication-module/issues/146)) ([0aaa4a3](https://github.com/adeo/cdp-due--authentication-module/commit/0aaa4a3845b8c6b0bc1d9b65ad6851595fb541e6))
883
+
884
+ ## [6.21.5](https://github.com/adeo/cdp-due--authentication-module/compare/v6.21.4...v6.21.5) (2022-08-08)
885
+
886
+
887
+ ### Bug Fixes
888
+
889
+ * **login:** fix redirect on postauthent ([#145](https://github.com/adeo/cdp-due--authentication-module/issues/145)) ([a0ddeb7](https://github.com/adeo/cdp-due--authentication-module/commit/a0ddeb7863a55902d549879f86e2363a03697967))
890
+
891
+ ## [6.21.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.21.3...v6.21.4) (2022-08-02)
892
+
893
+
894
+ ### Bug Fixes
895
+
896
+ * **login:** redirect user after a bad login to a special URL ([#141](https://github.com/adeo/cdp-due--authentication-module/issues/141)) ([35ac077](https://github.com/adeo/cdp-due--authentication-module/commit/35ac077313336a7b7e33fc2c843e19e4ecc8c54f))
897
+
898
+ ## [6.21.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.21.2...v6.21.3) (2022-08-01)
899
+
900
+
901
+ ### Bug Fixes
902
+
903
+ * **cookie:** fix idToken cookie duration and avoid npe on cookie helper ([#143](https://github.com/adeo/cdp-due--authentication-module/issues/143)) ([5f0c563](https://github.com/adeo/cdp-due--authentication-module/commit/5f0c563e3161b2e1e44f79bcdb21b9b87a759fa1))
904
+
905
+ ## [6.21.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.21.1...v6.21.2) (2022-08-01)
906
+
907
+
908
+ ### Bug Fixes
909
+
910
+ * **cookie:** fix refresh cookie duration on post authentication component ([#142](https://github.com/adeo/cdp-due--authentication-module/issues/142)) ([f05284d](https://github.com/adeo/cdp-due--authentication-module/commit/f05284d0730a9ba3eb12463be35ea0a88af584a4))
911
+
912
+ ## [6.21.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.21.0...v6.21.1) (2022-08-01)
913
+
914
+
915
+ ### Bug Fixes
916
+
917
+ * **refresh:** fix NPE on computeCookieDuration when refreshToken is expired ([#140](https://github.com/adeo/cdp-due--authentication-module/issues/140)) ([b1b43c9](https://github.com/adeo/cdp-due--authentication-module/commit/b1b43c96505d3f5f98d07cb8b972d5c6086fc911))
918
+
919
+ # [6.21.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.20.0...v6.21.0) (2022-07-29)
920
+
921
+
922
+ ### Features
923
+
924
+ * **cookie:** adjust Kobi.jwt and idToken cookie duration ([#121](https://github.com/adeo/cdp-due--authentication-module/issues/121)) ([f3b804c](https://github.com/adeo/cdp-due--authentication-module/commit/f3b804cd3e4ab06d0f77ed3fc4adf19c5a11ef3d))
925
+
926
+ # [6.20.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.19.10...v6.20.0) (2022-07-29)
927
+
928
+
929
+ ### Features
930
+
931
+ * **cookie:** externalize cookie duration on configuration for Order.id ([#138](https://github.com/adeo/cdp-due--authentication-module/issues/138)) ([7758a8b](https://github.com/adeo/cdp-due--authentication-module/commit/7758a8b37f679ec097aa2fd6dbfcc499c67a449c))
932
+
933
+ ## [6.19.10](https://github.com/adeo/cdp-due--authentication-module/compare/v6.19.9...v6.19.10) (2022-07-28)
934
+
935
+
936
+ ### Bug Fixes
937
+
938
+ * **state:** state are not equals error ([#139](https://github.com/adeo/cdp-due--authentication-module/issues/139)) ([acdab4d](https://github.com/adeo/cdp-due--authentication-module/commit/acdab4dda9ddeb005bde9e2d20ee7827afaa27d0))
939
+
940
+ ## [6.19.9](https://github.com/adeo/cdp-due--authentication-module/compare/v6.19.8...v6.19.9) (2022-07-19)
941
+
942
+
943
+ ### Bug Fixes
944
+
945
+ * **account:** revert fix for passwordless account ([#137](https://github.com/adeo/cdp-due--authentication-module/issues/137)) ([7eee689](https://github.com/adeo/cdp-due--authentication-module/commit/7eee689c455d47a2de2a6cee9305b6e1a5e963c5))
946
+
947
+ ## [6.19.8](https://github.com/adeo/cdp-due--authentication-module/compare/v6.19.7...v6.19.8) (2022-07-19)
948
+
949
+
950
+ ### Bug Fixes
951
+
952
+ * **account:** specific behavior to check activated account in LMES ([#136](https://github.com/adeo/cdp-due--authentication-module/issues/136)) ([8304eff](https://github.com/adeo/cdp-due--authentication-module/commit/8304eff3dce5bfb150d4489768ff9f42955f96f6))
953
+
954
+ ## [6.19.7](https://github.com/adeo/cdp-due--authentication-module/compare/v6.19.6...v6.19.7) (2022-07-18)
955
+
956
+
957
+ ### Bug Fixes
958
+
959
+ * **cookie:** delete savedLoginRequest on logout and post authent ([#135](https://github.com/adeo/cdp-due--authentication-module/issues/135)) ([554706a](https://github.com/adeo/cdp-due--authentication-module/commit/554706a5fe0ec73b667149f630d7fb8352579964))
960
+
961
+ ## [6.19.6](https://github.com/adeo/cdp-due--authentication-module/compare/v6.19.5...v6.19.6) (2022-07-18)
962
+
963
+
964
+ ### Bug Fixes
965
+
966
+ * **checkAccount:** fix handling of Flux to Mono ([#134](https://github.com/adeo/cdp-due--authentication-module/issues/134)) ([f9db07c](https://github.com/adeo/cdp-due--authentication-module/commit/f9db07c6260b456baca371b47792ee9d9fb3d33d))
967
+
968
+ ## [6.19.5](https://github.com/adeo/cdp-due--authentication-module/compare/v6.19.4...v6.19.5) (2022-07-13)
969
+
970
+
971
+ ### Bug Fixes
972
+
973
+ * **cookie:** deletecustomerSpace.customer cookie on customer post authentication ([#133](https://github.com/adeo/cdp-due--authentication-module/issues/133)) ([3ef8824](https://github.com/adeo/cdp-due--authentication-module/commit/3ef882437a36c359141e8117f49647e85e556d33))
974
+
975
+ ## [6.19.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.19.3...v6.19.4) (2022-07-12)
976
+
977
+
978
+ ### Bug Fixes
979
+
980
+ * **validation:** filter error message to display relevant information ([#131](https://github.com/adeo/cdp-due--authentication-module/issues/131)) ([9f2f74c](https://github.com/adeo/cdp-due--authentication-module/commit/9f2f74cfc237fd7a39b0f30742a848bfefff2772))
981
+
982
+ ## [6.19.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.19.2...v6.19.3) (2022-07-11)
983
+
984
+
985
+ ### Bug Fixes
986
+
987
+ * **checkAccount:** fix mdm call even if ciam account is retrieved ([#130](https://github.com/adeo/cdp-due--authentication-module/issues/130)) ([7bf0cba](https://github.com/adeo/cdp-due--authentication-module/commit/7bf0cbabae53427504018266426c8ca6a58413da))
988
+
989
+ ## [6.19.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.19.1...v6.19.2) (2022-07-11)
990
+
991
+
992
+ ### Bug Fixes
993
+
994
+ * **email:** check email validity on request payload ([#128](https://github.com/adeo/cdp-due--authentication-module/issues/128)) ([183e01a](https://github.com/adeo/cdp-due--authentication-module/commit/183e01adb38583c143d7db1e0284edf8704ecd85))
995
+
996
+ # [6.19.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.18.0...v6.19.0) (2022-07-06)
997
+
998
+
999
+ ### Features
1000
+
1001
+ * **cookie:** externalize httponly in configuration for idToken cookie ([#118](https://github.com/adeo/cdp-due--authentication-module/issues/118)) ([5b3b8cd](https://github.com/adeo/cdp-due--authentication-module/commit/5b3b8cdcb6ed42682473bf7e38b85d98447e6fb0))
1002
+
1003
+ # [6.18.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.17.3...v6.18.0) (2022-07-06)
1004
+
1005
+
1006
+ ### Features
1007
+
1008
+ * **login:** check if email is verified before login a user ([#112](https://github.com/adeo/cdp-due--authentication-module/issues/112)) ([47a0d16](https://github.com/adeo/cdp-due--authentication-module/commit/47a0d163a5e6a5a083a69cbc27b2a86df94ac183))
1009
+
1010
+ ## [6.17.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.17.2...v6.17.3) (2022-07-05)
1011
+
1012
+
1013
+ ### Bug Fixes
1014
+
1015
+ * **presignup:** fix account presignup for professionnal customers ([#126](https://github.com/adeo/cdp-due--authentication-module/issues/126)) ([4b5d6c4](https://github.com/adeo/cdp-due--authentication-module/commit/4b5d6c41e0ca2657326f1e5f8e7f16822ab55bac))
1016
+
1017
+ ## [6.17.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.17.1...v6.17.2) (2022-07-05)
1018
+
1019
+
1020
+ ### Bug Fixes
1021
+
1022
+ * catch PingException and return right http status code ([#125](https://github.com/adeo/cdp-due--authentication-module/issues/125)) ([d10cf3b](https://github.com/adeo/cdp-due--authentication-module/commit/d10cf3bcdb66febafa64cdb40d9b7519bccc02c6))
1023
+
1024
+ ## [6.17.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.17.0...v6.17.1) (2022-07-04)
1025
+
1026
+
1027
+ ### Bug Fixes
1028
+
1029
+ * **checkEmail:** fix isAccountActivated on checkAccountResponse ([#122](https://github.com/adeo/cdp-due--authentication-module/issues/122)) ([a4acc34](https://github.com/adeo/cdp-due--authentication-module/commit/a4acc34d3347a4cf6accf2cf65d4291185fb39e0))
1030
+
1031
+ # [6.17.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.16.1...v6.17.0) (2022-07-04)
1032
+
1033
+
1034
+ ### Features
1035
+
1036
+ * remove legacy order id cookie on logout ([#124](https://github.com/adeo/cdp-due--authentication-module/issues/124)) ([e68fb71](https://github.com/adeo/cdp-due--authentication-module/commit/e68fb711d5a8ae1100ca87254e0c2dbebbd6036e))
1037
+
1038
+ ## [6.16.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.16.0...v6.16.1) (2022-07-04)
1039
+
1040
+
1041
+ ### Bug Fixes
1042
+
1043
+ * improve error handling ([#123](https://github.com/adeo/cdp-due--authentication-module/issues/123)) ([2e44ab9](https://github.com/adeo/cdp-due--authentication-module/commit/2e44ab9b10a12ec0c729947ef624731d32da01e1))
1044
+
1045
+ # [6.16.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.15.1...v6.16.0) (2022-06-30)
1046
+
1047
+
1048
+ ### Features
1049
+
1050
+ * **collab:** split default and elo behavior on collab auth ([#93](https://github.com/adeo/cdp-due--authentication-module/issues/93)) ([b286ed6](https://github.com/adeo/cdp-due--authentication-module/commit/b286ed66350bd3b12708c038d84de85c7d304f39))
1051
+
1052
+ ## [6.15.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.15.0...v6.15.1) (2022-06-22)
1053
+
1054
+
1055
+ ### Bug Fixes
1056
+
1057
+ * **cookie:** delete cookie on wrong domain ([#119](https://github.com/adeo/cdp-due--authentication-module/issues/119)) ([eaa8253](https://github.com/adeo/cdp-due--authentication-module/commit/eaa825325ca88b4ed7063c6474597db6952550f3))
1058
+
1059
+ # [6.15.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.14.2...v6.15.0) (2022-06-20)
1060
+
1061
+
1062
+ ### Features
1063
+
1064
+ * **cookie:** global rework ([#113](https://github.com/adeo/cdp-due--authentication-module/issues/113)) ([a4e82c6](https://github.com/adeo/cdp-due--authentication-module/commit/a4e82c699a036acf9f32238ca463f38131d80fc4))
1065
+
1066
+ ## [6.14.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.14.1...v6.14.2) (2022-06-17)
1067
+
1068
+
1069
+ ### Bug Fixes
1070
+
1071
+ * **kobi.jwt:** fix comparison between gender enums ([#117](https://github.com/adeo/cdp-due--authentication-module/issues/117)) ([ebe8896](https://github.com/adeo/cdp-due--authentication-module/commit/ebe88962a7d74fb5900415743a95b58033dd3d7f))
1072
+
1073
+ ## [6.14.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.14.0...v6.14.1) (2022-06-16)
1074
+
1075
+
1076
+ ### Bug Fixes
1077
+
1078
+ * **password:** add missing translation key ([#116](https://github.com/adeo/cdp-due--authentication-module/issues/116)) ([7ebaedf](https://github.com/adeo/cdp-due--authentication-module/commit/7ebaedfac6c02dc5135ce75f215effc32aa80208))
1079
+
1080
+ # [6.14.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.13.4...v6.14.0) (2022-06-14)
1081
+
1082
+
1083
+ ### Features
1084
+
1085
+ * **password:** internationalize reset password page ([#115](https://github.com/adeo/cdp-due--authentication-module/issues/115)) ([4b4d119](https://github.com/adeo/cdp-due--authentication-module/commit/4b4d119af315313e2d8bb09044203c84972016bb))
1086
+
1087
+ ## [6.13.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.13.3...v6.13.4) (2022-06-03)
1088
+
1089
+
1090
+ ### Bug Fixes
1091
+
1092
+ * **wording:** error message ([#111](https://github.com/adeo/cdp-due--authentication-module/issues/111)) ([d05aa83](https://github.com/adeo/cdp-due--authentication-module/commit/d05aa830ac961531745dd195d80f7a4cc2d9579f))
1093
+
1094
+ ## [6.13.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.13.2...v6.13.3) (2022-06-03)
1095
+
1096
+
1097
+ ### Bug Fixes
1098
+
1099
+ * **wording:** edit ([#110](https://github.com/adeo/cdp-due--authentication-module/issues/110)) ([efef999](https://github.com/adeo/cdp-due--authentication-module/commit/efef9995d46bb608abc48879bef8f7843cd6fbd9))
1100
+
1101
+ ## [6.13.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.13.0...v6.13.1) (2022-05-18)
1102
+
1103
+
1104
+ ### Bug Fixes
1105
+
1106
+ * avoid npe when redirectByRoles attribut vault config is not defined ([#104](https://github.com/adeo/cdp-due--authentication-module/issues/104)) ([ae3917f](https://github.com/adeo/cdp-due--authentication-module/commit/ae3917f08d7a902d35a3a22a21704f12b9661975))
1107
+
1108
+ # [6.13.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.12.0...v6.13.0) (2022-05-17)
1109
+
1110
+
1111
+ ### Features
1112
+
1113
+ * **tracking:** implemented cdl tracking ([99da9f4](https://github.com/adeo/cdp-due--authentication-module/commit/99da9f487cae878533b42a7542bc6974f209099c))
1114
+
1115
+ # [6.12.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.11.1...v6.12.0) (2022-05-09)
1116
+
1117
+
1118
+ ### Features
1119
+
1120
+ * add local js files for reset password PT and ES ([#102](https://github.com/adeo/cdp-due--authentication-module/issues/102)) ([ed4e2d2](https://github.com/adeo/cdp-due--authentication-module/commit/ed4e2d20c6da7e355eef8ce3d77cca276f7f3605))
1121
+
1122
+ ## [6.11.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.11.0...v6.11.1) (2022-05-05)
1123
+
1124
+
1125
+ ### Bug Fixes
1126
+
1127
+ * **ci:** fix build-release workflow ([7ce6fe6](https://github.com/adeo/cdp-due--authentication-module/commit/7ce6fe6409cc022ba771b63cc3e8eb3314e5ac95))
1128
+
1129
+ # [6.11.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.10.2...v6.11.0) (2022-05-05)
1130
+
1131
+
1132
+ ### Features
1133
+
1134
+ * **ci:** migrate to github actions ([#101](https://github.com/adeo/cdp-due--authentication-module/issues/101)) ([a081a7c](https://github.com/adeo/cdp-due--authentication-module/commit/a081a7c1ae3afa1e94172a9f72ac8bc77f572fb6))
1135
+
1136
+ # Changelog
1137
+
1138
+ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
1139
+
1140
+ ### [6.10.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.10.1...v6.10.2) (2022-05-05)
1141
+
1142
+
1143
+ ### Bug Fixes
1144
+
1145
+ * remove useless i18n on JS file ([#92](https://github.com/adeo/cdp-due--authentication-module/issues/92)) ([ecf330e](https://github.com/adeo/cdp-due--authentication-module/commit/ecf330e0ca3010b95a8440282a4c1ff7b704c64e))
1146
+
1147
+ ### [6.10.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.10.0...v6.10.1) (2022-05-02)
1148
+
1149
+ ## [6.10.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.9.5...v6.10.0) (2022-05-02)
1150
+
1151
+
1152
+ ### Features
1153
+
1154
+ * **community:** switch to community profiles v3 ([#97](https://github.com/adeo/cdp-due--authentication-module/issues/97)) ([f454e4c](https://github.com/adeo/cdp-due--authentication-module/commit/f454e4c09d093589b5bc8fdfe446e4d2566bdd92))
1155
+
1156
+ ### [6.9.5](https://github.com/adeo/cdp-due--authentication-module/compare/v6.9.4...v6.9.5) (2022-04-29)
1157
+
1158
+
1159
+ ### Bug Fixes
1160
+
1161
+ * **logout:** delete reachfive cookie for lmit ([#99](https://github.com/adeo/cdp-due--authentication-module/issues/99)) ([bf8308d](https://github.com/adeo/cdp-due--authentication-module/commit/bf8308d35fb8b80690d65fe7a6fe6baf44a462f1))
1162
+
1163
+ ### [6.9.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.9.3...v6.9.4) (2022-04-28)
1164
+
1165
+ ### [6.9.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.9.2...v6.9.3) (2022-04-28)
1166
+
1167
+
1168
+ ### Features
1169
+
1170
+ * **collab-authent:** switch from scim to pinguserinfo ([#96](https://github.com/adeo/cdp-due--authentication-module/issues/96)) ([e71be88](https://github.com/adeo/cdp-due--authentication-module/commit/e71be8810c42c2dfd67a4b79aed8a697b77635f9))
1171
+
1172
+ ### [6.9.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.9.1...v6.9.2) (2022-04-26)
1173
+
1174
+ ### [6.9.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.9.0...v6.9.1) (2022-04-25)
1175
+
1176
+
1177
+ ### Bug Fixes
1178
+
1179
+ * **token:** avoid multiple NPE the time the expirationTime occurs ([#94](https://github.com/adeo/cdp-due--authentication-module/issues/94)) ([d1f04b5](https://github.com/adeo/cdp-due--authentication-module/commit/d1f04b56cec53c75df0dde97fbda4b72b0ae7203))
1180
+
1181
+ ## [6.9.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.8.2...v6.9.0) (2022-04-19)
1182
+
1183
+
1184
+ ### Features
1185
+
1186
+ * **bu:** handle different implementation for BUs ([#90](https://github.com/adeo/cdp-due--authentication-module/issues/90)) ([ed46f06](https://github.com/adeo/cdp-due--authentication-module/commit/ed46f0675f9ddc83eb84ab6abdae832d15f212cd))
1187
+
1188
+ ### [6.8.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.8.1...v6.8.2) (2022-04-13)
1189
+
1190
+
1191
+ ### Bug Fixes
1192
+
1193
+ * **sso:** regenerate token on /redirect to avoid infinite redirect ([#91](https://github.com/adeo/cdp-due--authentication-module/issues/91)) ([2b8a2fd](https://github.com/adeo/cdp-due--authentication-module/commit/2b8a2fdd6e8f639da0fa0e0786497f03695d1041))
1194
+
1195
+ ### [6.8.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.8.0...v6.8.1) (2022-04-01)
1196
+
1197
+
1198
+ ### Bug Fixes
1199
+
1200
+ * **cookie:** delete kobi jwt cookie ([#89](https://github.com/adeo/cdp-due--authentication-module/issues/89)) ([9da0c5d](https://github.com/adeo/cdp-due--authentication-module/commit/9da0c5d14f29b233c42bb23109674b35808591d3))
1201
+
1202
+ ## [6.8.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.7.5...v6.8.0) (2022-03-24)
1203
+
1204
+ ### [6.7.5](https://github.com/adeo/cdp-due--authentication-module/compare/v6.7.4...v6.7.5) (2022-03-17)
1205
+
1206
+
1207
+ ### Bug Fixes
1208
+
1209
+ * **refresh:** problems on refresh token ([#86](https://github.com/adeo/cdp-due--authentication-module/issues/86)) ([abde75b](https://github.com/adeo/cdp-due--authentication-module/commit/abde75bcf4d2686fc9b0bcafedcbf94c5af499b3))
1210
+
1211
+ ### [6.7.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.7.3...v6.7.4) (2022-03-07)
1212
+
1213
+
1214
+ ### Bug Fixes
1215
+
1216
+ * **account creation:** encode email and create account for collaborators on lmpartner ([#84](https://github.com/adeo/cdp-due--authentication-module/issues/84)) ([63bc754](https://github.com/adeo/cdp-due--authentication-module/commit/63bc7540b87a6025329c13d58d935c1f2ab93357))
1217
+
1218
+ ### [6.7.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.7.2...v6.7.3) (2022-02-25)
1219
+
1220
+
1221
+ ### Features
1222
+
1223
+ * add openId parameters for partner login ([#82](https://github.com/adeo/cdp-due--authentication-module/issues/82)) ([a4ce4c3](https://github.com/adeo/cdp-due--authentication-module/commit/a4ce4c38edf950cf2a18047327b0843a58d12b2f))
1224
+
1225
+ ### [6.7.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.7.1...v6.7.2) (2022-02-17)
1226
+
1227
+
1228
+ ### Bug Fixes
1229
+
1230
+ * **gender:** fix when gender is not defined ([#81](https://github.com/adeo/cdp-due--authentication-module/issues/81)) ([1c0e2a6](https://github.com/adeo/cdp-due--authentication-module/commit/1c0e2a6b1a8634c648eb5de1a8dd1347a69d2c8a))
1231
+
1232
+ ### [6.7.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.7.0...v6.7.1) (2022-02-10)
1233
+
1234
+
1235
+ ### Features
1236
+
1237
+ * **cookieSSO:** switch to new community-profile client ([#80](https://github.com/adeo/cdp-due--authentication-module/issues/80)) ([c333c37](https://github.com/adeo/cdp-due--authentication-module/commit/c333c3721e3a14d4c824ca5e845725d9605149f4))
1238
+
1239
+ ## [6.7.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.6.6...v6.7.0) (2022-02-03)
1240
+
1241
+
1242
+ ### Bug Fixes
1243
+
1244
+ * refresh token just before it expires ([#75](https://github.com/adeo/cdp-due--authentication-module/issues/75)) ([4d2386e](https://github.com/adeo/cdp-due--authentication-module/commit/4d2386e28aae3ec78fbc187adc40e0ca1cb18b0a))
1245
+ * send nonce as part of the request ([#77](https://github.com/adeo/cdp-due--authentication-module/issues/77)) ([b438b8b](https://github.com/adeo/cdp-due--authentication-module/commit/b438b8bae0538cca52e990ddff70024052ca7ccd))
1246
+
1247
+ ### [6.6.6](https://github.com/adeo/cdp-due--authentication-module/compare/v6.6.5...v6.6.6) (2022-02-01)
1248
+
1249
+
1250
+ ### Bug Fixes
1251
+
1252
+ * **cookie:** Set cookie store_id for client ([#76](https://github.com/adeo/cdp-due--authentication-module/issues/76)) ([78e1797](https://github.com/adeo/cdp-due--authentication-module/commit/78e1797163860f6c5dcb3c61a5fa51b7238f1ec4))
1253
+
1254
+ ### [6.6.5](https://github.com/adeo/cdp-due--authentication-module/compare/v6.6.4...v6.6.5) (2022-01-17)
1255
+
1256
+
1257
+ ### Bug Fixes
1258
+
1259
+ * encode email before calling CIAM API ([#45](https://github.com/adeo/cdp-due--authentication-module/issues/45)) ([971507d](https://github.com/adeo/cdp-due--authentication-module/commit/971507d1aa797491d6834784ca11cfabb7ed3a63))
1260
+
1261
+ ### [6.6.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.6.3...v6.6.4) (2022-01-12)
1262
+
1263
+ ### [6.6.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.6.2...v6.6.3) (2022-01-06)
1264
+
1265
+ ### [6.6.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.6.1...v6.6.2) (2022-01-06)
1266
+
1267
+
1268
+ ### Features
1269
+
1270
+ * **cookies:** add multiple domains for delete customer uuid ([#71](https://github.com/adeo/cdp-due--authentication-module/issues/71)) ([5d166ab](https://github.com/adeo/cdp-due--authentication-module/commit/5d166ab67bc2b968dba68b5f861d3f4547c147c6))
1271
+
1272
+ ### [6.6.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.6.0...v6.6.1) (2021-12-31)
1273
+
1274
+ ## [6.6.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.5.4...v6.6.0) (2021-12-31)
1275
+
1276
+ ### [6.5.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.5.3...v6.5.4) (2021-12-30)
1277
+
1278
+ ### [6.5.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.5.2...v6.5.3) (2021-12-23)
1279
+
1280
+ ### [6.5.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.5.1...v6.5.2) (2021-12-23)
1281
+
1282
+ ### [6.5.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.5.0...v6.5.1) (2021-12-21)
1283
+
1284
+ ## [6.5.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.4.5...v6.5.0) (2021-12-21)
1285
+
1286
+ ### [6.4.5](https://github.com/adeo/cdp-due--authentication-module/compare/v6.4.4...v6.4.5) (2021-12-20)
1287
+
1288
+
1289
+ ### Bug Fixes
1290
+
1291
+ * update log4j version ([#62](https://github.com/adeo/cdp-due--authentication-module/issues/62)) ([d51ea83](https://github.com/adeo/cdp-due--authentication-module/commit/d51ea8305fd0475b954a29f9936b6cf578b5695e))
1292
+
1293
+ ### [6.4.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.4.3...v6.4.4) (2021-12-20)
1294
+
1295
+
1296
+ ### Features
1297
+
1298
+ * **cookies:** Delete deletion of store cookie for internal collabs ([#61](https://github.com/adeo/cdp-due--authentication-module/issues/61)) ([268e61e](https://github.com/adeo/cdp-due--authentication-module/commit/268e61e090ede51898488386e44454b4266d0187))
1299
+
1300
+ ### [6.4.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.4.2...v6.4.3) (2021-12-17)
1301
+
1302
+
1303
+ ### Bug Fixes
1304
+
1305
+ * update log4 version ([8f9e637](https://github.com/adeo/cdp-due--authentication-module/commit/8f9e637b201c7fe48049801fd87a74e677394856))
1306
+
1307
+ ### [6.4.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.4.1...v6.4.2) (2021-12-16)
1308
+
1309
+
1310
+ ### Bug Fixes
1311
+
1312
+ * **jwt cookie:** delete cookie ([#60](https://github.com/adeo/cdp-due--authentication-module/issues/60)) ([5f9e8ee](https://github.com/adeo/cdp-due--authentication-module/commit/5f9e8eed32b67d261ae778b6155e874e10d5d415))
1313
+
1314
+ ### [6.4.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.4.0...v6.4.1) (2021-12-14)
1315
+
1316
+ ## [6.4.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.3.0...v6.4.0) (2021-12-02)
1317
+
1318
+ ## [6.3.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.2.8...v6.3.0) (2021-12-02)
1319
+
1320
+ ### [6.2.8](https://github.com/adeo/cdp-due--authentication-module/compare/v6.2.7...v6.2.8) (2021-11-30)
1321
+
1322
+ ### [6.2.7](https://github.com/adeo/cdp-due--authentication-module/compare/v6.2.6...v6.2.7) (2021-11-30)
1323
+
1324
+
1325
+ ### Features
1326
+
1327
+ * add store_id cookie for collaborators ([#55](https://github.com/adeo/cdp-due--authentication-module/issues/55)) ([7dbc382](https://github.com/adeo/cdp-due--authentication-module/commit/7dbc38220e1357a2107f96db6b7559b9ebcd86f2))
1328
+
1329
+ ### [6.2.6](https://github.com/adeo/cdp-due--authentication-module/compare/v6.2.5...v6.2.6) (2021-11-29)
1330
+
1331
+
1332
+ ### Bug Fixes
1333
+
1334
+ * add new pattern to dissociate signup & login redirects ([ac678f7](https://github.com/adeo/cdp-due--authentication-module/commit/ac678f73278ca1250b140ad6b93088c83a5bbc0b))
1335
+ * add vad & basket uris to redirect on legacy signup ([5fe6031](https://github.com/adeo/cdp-due--authentication-module/commit/5fe603115245dbe32997f0164e8562881f15f496))
1336
+ * pattern vad ([2cce053](https://github.com/adeo/cdp-due--authentication-module/commit/2cce05389e8b91452d9ded930cc7291e13251283))
1337
+
1338
+ ### [6.2.5](https://github.com/adeo/cdp-due--authentication-module/compare/v6.2.4...v6.2.5) (2021-11-29)
1339
+
1340
+
1341
+ ### Bug Fixes
1342
+
1343
+ * add vad & basket uris to redirect on legacy signup ([#54](https://github.com/adeo/cdp-due--authentication-module/issues/54)) ([9c21c2e](https://github.com/adeo/cdp-due--authentication-module/commit/9c21c2ecf412f96d325c7218730e750369665ae4))
1344
+
1345
+ ### [6.2.4](https://github.com/adeo/cdp-due--authentication-module/compare/v6.2.3...v6.2.4) (2021-11-25)
1346
+
1347
+
1348
+ ### Bug Fixes
1349
+
1350
+ * redirect on legacy signup when user is coming from tempo ([9621c2c](https://github.com/adeo/cdp-due--authentication-module/commit/9621c2c674c02bcf71d75c31a152462637c6ab68))
1351
+
1352
+ ### [6.2.3](https://github.com/adeo/cdp-due--authentication-module/compare/v6.2.2...v6.2.3) (2021-11-25)
1353
+
1354
+
1355
+ ### Features
1356
+
1357
+ * **authent:** add param email in url ([#37](https://github.com/adeo/cdp-due--authentication-module/issues/37)) ([035b3f8](https://github.com/adeo/cdp-due--authentication-module/commit/035b3f809d28d5a4f53d0326f69d92557efdab41))
1358
+
1359
+ ### [6.2.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.2.1...v6.2.2) (2021-11-24)
1360
+
1361
+
1362
+ ### Bug Fixes
1363
+
1364
+ * ping redirection for collab ([e842caf](https://github.com/adeo/cdp-due--authentication-module/commit/e842cafc05e1f453d48cfb8a59cd4c71e811b4c4))
1365
+
1366
+ ### [6.2.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.2.0...v6.2.1) (2021-11-23)
1367
+
1368
+
1369
+ ### Bug Fixes
1370
+
1371
+ * authorize collabs to authenticate even if account is inactive in mdm ([#51](https://github.com/adeo/cdp-due--authentication-module/issues/51)) ([7ec2c60](https://github.com/adeo/cdp-due--authentication-module/commit/7ec2c604d7388fb53fc882d974aa1a590b5e4bf2))
1372
+
1373
+ ## [6.2.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.1.2...v6.2.0) (2021-11-22)
1374
+
1375
+ ### [6.1.2](https://github.com/adeo/cdp-due--authentication-module/compare/v6.1.1...v6.1.2) (2021-11-22)
1376
+
1377
+
1378
+ ### Features
1379
+
1380
+ * check if user is active when checking the email ([#49](https://github.com/adeo/cdp-due--authentication-module/issues/49)) ([0ebc986](https://github.com/adeo/cdp-due--authentication-module/commit/0ebc986df1da2f1de717616b7728e3a4d8e6de94))
1381
+
1382
+ ### [6.1.1](https://github.com/adeo/cdp-due--authentication-module/compare/v6.1.0...v6.1.1) (2021-11-19)
1383
+
1384
+
1385
+ ### Bug Fixes
1386
+
1387
+ * **header display:** fixed vad login ([c070910](https://github.com/adeo/cdp-due--authentication-module/commit/c0709103b1f766c7820fa064fb8bee85d2a1039f))
1388
+ * **header:** fixed css side effect ([e20ba8a](https://github.com/adeo/cdp-due--authentication-module/commit/e20ba8a8ee29f4e2d87f8af2059468e209620ea1))
1389
+
1390
+ ## [6.1.0](https://github.com/adeo/cdp-due--authentication-module/compare/v6.0.0...v6.1.0) (2021-11-16)
1391
+
1392
+ ## [6.0.0](https://github.com/adeo/cdp-due--authentication-module/compare/v5.16.4...v6.0.0) (2021-11-16)
1393
+
1394
+
1395
+ ### Features
1396
+
1397
+ * **account creation:** implemented creation process fork ([0a79380](https://github.com/adeo/cdp-due--authentication-module/commit/0a793803fa91d54d1d6abfa16a7e82e924d82c9a))
1398
+ * **split:** change jfrog registry and use variable for vault namespace ([#47](https://github.com/adeo/cdp-due--authentication-module/issues/47)) ([80b2c1d](https://github.com/adeo/cdp-due--authentication-module/commit/80b2c1def59d084a5e030c5b0df29b5a23f4bfb0))
1399
+
1400
+ ### [5.16.4](https://github.com/adeo/cdp-due--authentication-module/compare/v5.16.3...v5.16.4) (2021-11-12)
1401
+
1402
+
1403
+ ### Features
1404
+
1405
+ * **community:** redirect to profile if no community profile ([82fffb4](https://github.com/adeo/cdp-due--authentication-module/commit/82fffb4afdadd8da31c0692b7ce07cb68f8ad0f6))
1406
+
1407
+ ### [5.16.3](https://github.com/adeo/cdp-due--authentication-module/compare/v5.16.2...v5.16.3) (2021-11-09)
1408
+
1409
+ ### [5.16.2](https://github.com/adeo/cdp-due--authentication-module/compare/v5.16.1...v5.16.2) (2021-11-09)
1410
+
1411
+
1412
+ ### Bug Fixes
1413
+
1414
+ * add space in pom in order to trigger a new release with no changes ([6a493cc](https://github.com/adeo/cdp-due--authentication-module/commit/6a493cc10c6aa1ea9f8be1bb950a467f29bbd2dd))
1415
+
1416
+ ### [5.16.1](https://github.com/adeo/cdp-due--authentication-module/compare/v5.16.0...v5.16.1) (2021-11-09)
1417
+
1418
+ ## [5.16.0](https://github.com/adeo/cdp-due--authentication-module/compare/v5.15.1...v5.16.0) (2021-11-08)
1419
+
1420
+ ### [5.15.1](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.15.0...v5.15.1) (2021-10-29)
1421
+
1422
+ ## [5.15.0](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.14.6...v5.15.0) (2021-10-28)
1423
+
1424
+ ### [5.14.6](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.14.5...v5.14.6) (2021-10-26)
1425
+
1426
+
1427
+ ### Features
1428
+
1429
+ * **community:** add redirectToPage parameter ([0ff1d80](https://github.com/adeo/lmfr-web-client--authentication-module/commit/0ff1d80b4aea5621a554849fed78f2070f65780f))
1430
+
1431
+ ### [5.14.5](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.14.4...v5.14.5) (2021-10-20)
1432
+
1433
+
1434
+ ### Features
1435
+
1436
+ * **756:** add default role collab ([#38](https://github.com/adeo/lmfr-web-client--authentication-module/issues/38)) ([7aa8c64](https://github.com/adeo/lmfr-web-client--authentication-module/commit/7aa8c64bd9fd6d127414d8f845f47c6a6e6558ea))
1437
+
1438
+ ### [5.14.4](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.14.3...v5.14.4) (2021-10-18)
1439
+
1440
+ ### [5.14.3](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.14.2...v5.14.3) (2021-10-18)
1441
+
1442
+ ### [5.14.2](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.14.1...v5.14.2) (2021-10-18)
1443
+
1444
+ ### [5.14.1](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.14.0...v5.14.1) (2021-10-13)
1445
+
1446
+ ## [5.14.0](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.13.2...v5.14.0) (2021-10-12)
1447
+
1448
+
1449
+ ### Bug Fixes
1450
+
1451
+ * **account service:** add no customer number ([#34](https://github.com/adeo/lmfr-web-client--authentication-module/issues/34)) ([855e630](https://github.com/adeo/lmfr-web-client--authentication-module/commit/855e6309ade3c578e4d5a9f1633239cb6ff54931))
1452
+
1453
+ ### [5.13.2](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.13.1...v5.13.2) (2021-10-11)
1454
+
1455
+ ### [5.13.1](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.13.0...v5.13.1) (2021-10-08)
1456
+
1457
+
1458
+ ### Features
1459
+
1460
+ * handle weak collab role ([#35](https://github.com/adeo/lmfr-web-client--authentication-module/issues/35)) ([5b01223](https://github.com/adeo/lmfr-web-client--authentication-module/commit/5b01223636a88aca4d075fcff55d7e1ba1521d02))
1461
+
1462
+ ## [5.13.0](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.12.0...v5.13.0) (2021-09-30)
1463
+
1464
+
1465
+ ### Features
1466
+
1467
+ * **contextualisation:** add actions on post authent ([6b16c74](https://github.com/adeo/lmfr-web-client--authentication-module/commit/6b16c74c0cc04598eeec0b59970dd11a8bc429d7))
1468
+
1469
+ ## [5.12.0](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.11.1...v5.12.0) (2021-09-28)
1470
+
1471
+ ### [5.11.1](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.11.0...v5.11.1) (2021-09-27)
1472
+
1473
+
1474
+ ### Features
1475
+
1476
+ * **community:** generate tokywoky sso cookie ([7fef2c9](https://github.com/adeo/lmfr-web-client--authentication-module/commit/7fef2c930e6790cdd011d2f37bfc3640ecb60370))
1477
+
1478
+ ## [5.11.0](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.10.0...v5.11.0) (2021-09-23)
1479
+
1480
+ ## [5.10.0](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.9.8...v5.10.0) (2021-09-21)
1481
+
1482
+ ### [5.9.8](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.9.7...v5.9.8) (2021-09-20)
1483
+
1484
+
1485
+ ### Bug Fixes
1486
+
1487
+ * **customer in context:** removed contextualized customer on login form ([#27](https://github.com/adeo/lmfr-web-client--authentication-module/issues/27)) ([17544b2](https://github.com/adeo/lmfr-web-client--authentication-module/commit/17544b231f6428c3802e711c8eaf31f72e0988c9))
1488
+
1489
+ ### [5.9.7](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.9.6...v5.9.7) (2021-09-20)
1490
+
1491
+
1492
+ ### Bug Fixes
1493
+
1494
+ * **authentication:** Whitelist on store code ([c31d9cd](https://github.com/adeo/lmfr-web-client--authentication-module/commit/c31d9cd33448b85999a5ac7900db35d6db0fb23f))
1495
+
1496
+ ### [5.9.6](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.9.5...v5.9.6) (2021-09-20)
1497
+
1498
+
1499
+ ### Features
1500
+
1501
+ * **authentication:** Whitelist on store code ([ab832d0](https://github.com/adeo/lmfr-web-client--authentication-module/commit/ab832d0815c21463dbf7d885f230776c129f67e3))
1502
+
1503
+ ### [5.9.5](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.9.4...v5.9.5) (2021-09-17)
1504
+
1505
+
1506
+ ### Features
1507
+
1508
+ * **roles:** remove automatically given role collab ([f42781e](https://github.com/adeo/lmfr-web-client--authentication-module/commit/f42781e82681ad5d892d37b5081866c236425379))
1509
+
1510
+ ### [5.9.4](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.9.3...v5.9.4) (2021-09-01)
1511
+
1512
+ ### [5.9.3](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.9.2...v5.9.3) (2021-08-30)
1513
+
1514
+
1515
+ ### Bug Fixes
1516
+
1517
+ * **roles:** fix collab role on post authent ([#19](https://github.com/adeo/lmfr-web-client--authentication-module/issues/19)) ([1ed52e8](https://github.com/adeo/lmfr-web-client--authentication-module/commit/1ed52e83f4a06a984f8601c70349477b5d8fac61))
1518
+
1519
+ ### [5.9.2](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.9.1...v5.9.2) (2021-08-26)
1520
+
1521
+ ### [5.9.1](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.9.0...v5.9.1) (2021-08-25)
1522
+
1523
+
1524
+ ### Features
1525
+
1526
+ * **roles:** rework on get role + readd user role on ping auth + add client role on r5 auth ([#17](https://github.com/adeo/lmfr-web-client--authentication-module/issues/17)) ([7f770fc](https://github.com/adeo/lmfr-web-client--authentication-module/commit/7f770fc0a6e6364f7e8d73f355ed048747b649e8))
1527
+
1528
+ ## [5.9.0](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.8.0...v5.9.0) (2021-08-23)
1529
+
1530
+ ## [5.8.0](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.7.5...v5.8.0) (2021-08-20)
1531
+
1532
+
1533
+ ### Features
1534
+
1535
+ * **roles:** add roles to jwt kobi ([#14](https://github.com/adeo/lmfr-web-client--authentication-module/issues/14)) ([c07638b](https://github.com/adeo/lmfr-web-client--authentication-module/commit/c07638bbd707f7d06b2838d617334440a7eaf2a4))
1536
+
1537
+ ### [5.7.5](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.7.4...v5.7.5) (2021-07-23)
1538
+
1539
+ ### [5.7.4](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.7.3...v5.7.4) (2021-07-20)
1540
+
1541
+
1542
+ ### Bug Fixes
1543
+
1544
+ * reencode target uri before final redirect ([0f6c7f9](https://github.com/adeo/lmfr-web-client--authentication-module/commit/0f6c7f9cc4c1f0f985d1fdb26998c2a7770634c1))
1545
+ * try to use native redirection instead of spring one ([c4c5fa7](https://github.com/adeo/lmfr-web-client--authentication-module/commit/c4c5fa77acfebaa0e6db23a2c389204cca48bfe4))
1546
+
1547
+ ### [5.7.3](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.7.2...v5.7.3) (2021-07-19)
1548
+
1549
+
1550
+ ### Bug Fixes
1551
+
1552
+ * **ipn-111:** add parameters to account creation url ([338bb6f](https://github.com/adeo/lmfr-web-client--authentication-module/commit/338bb6f7ac9c3a80018ba0ac8255a2e79dcacc00))
1553
+
1554
+ ### [5.7.2](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.7.1...v5.7.2) (2021-07-12)
1555
+
1556
+ ### [5.7.1](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.7.0...v5.7.1) (2021-07-05)
1557
+
1558
+ ## [5.7.0](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.6.3...v5.7.0) (2021-07-01)
1559
+
1560
+ ### [5.6.3](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.6.2...v5.6.3) (2021-06-16)
1561
+
1562
+ ### [5.6.2](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.6.1...v5.6.2) (2021-05-10)
1563
+
1564
+ ### [5.6.1](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.6.0...v5.6.1) (2021-05-10)
1565
+
1566
+ ## [5.6.0](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.5.4...v5.6.0) (2021-04-29)
1567
+
1568
+
1569
+ ### Features
1570
+
1571
+ * merging baskets ([#5](https://github.com/adeo/lmfr-web-client--authentication-module/issues/5)) ([1c744a4](https://github.com/adeo/lmfr-web-client--authentication-module/commit/1c744a4d3340f258a4945385b36e9af0484007ed))
1572
+
1573
+ ### [5.5.4](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.5.3...v5.5.4) (2021-03-19)
1574
+
1575
+
1576
+ ### Bug Fixes
1577
+
1578
+ * check is user is already contextualized before setting store cookies ([7cbfb60](https://github.com/adeo/lmfr-web-client--authentication-module/commit/7cbfb600cb29904fd07150b0880ad788af286ea5))
1579
+
1580
+ ### [5.5.3](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.5.2...v5.5.3) (2021-03-11)
1581
+
1582
+
1583
+ ### Bug Fixes
1584
+
1585
+ * set root path on both store cookies ([fdef163](https://github.com/adeo/lmfr-web-client--authentication-module/commit/fdef163c142473c29673caad1f8d24a5f025efd6))
1586
+
1587
+ ### [5.5.2](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.5.1...v5.5.2) (2021-03-03)
1588
+
1589
+ ### [5.5.1](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.5.0...v5.5.1) (2021-03-03)
1590
+
1591
+ ## [5.5.0](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.4.2...v5.5.0) (2021-03-03)
1592
+
1593
+
1594
+ ### Bug Fixes
1595
+
1596
+ * change saved login request cookie domain ([2d58e09](https://github.com/adeo/lmfr-web-client--authentication-module/commit/2d58e09a661d4fb136f598a6d8ed74aa26a4fd36))
1597
+
1598
+ ### [5.4.2](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.4.1...v5.4.2) (2021-03-02)
1599
+
1600
+
1601
+ ### Bug Fixes
1602
+
1603
+ * avoid calls to reach five if refresh token is empty ([6b403f0](https://github.com/adeo/lmfr-web-client--authentication-module/commit/6b403f00e7756e594d1e93b45166855d8d714bb3))
1604
+
1605
+ ### [5.4.1](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.4.0...v5.4.1) (2021-03-02)
1606
+
1607
+ ## [5.4.0](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.3.1...v5.4.0) (2021-03-02)
1608
+
1609
+
1610
+ ### Bug Fixes
1611
+
1612
+ * add accept leway on jwt verifier to handle jwt freshly created ([4df5123](https://github.com/adeo/lmfr-web-client--authentication-module/commit/4df51237b1d9a93d3a0fda52139a7a4243ceded4))
1613
+
1614
+ ### [5.0.10](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.9...v5.0.10) (2020-12-07)
1615
+
1616
+ ### [5.0.9](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.8...v5.0.9) (2020-12-03)
1617
+
1618
+ ### [5.0.8](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.7...v5.0.8) (2020-12-03)
1619
+
1620
+
1621
+ ### Bug Fixes
1622
+
1623
+ * check contains instead of equality for mobile user agent ([ff4d3b4](https://github.com/adeo/lmfr-web-client--authentication-module/commit/ff4d3b48ec0444fbeb3f1a0f1b2e49eef7c096af))
1624
+
1625
+ ### [5.0.7](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.6...v5.0.7) (2020-12-03)
1626
+
1627
+ ### [5.0.6](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.5...v5.0.6) (2020-12-03)
1628
+
1629
+ ### [5.0.5](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.4...v5.0.5) (2020-12-02)
1630
+
1631
+ ### [5.0.4](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.3...v5.0.4) (2020-12-01)
1632
+
1633
+ ### [5.0.3](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.2...v5.0.3) (2020-11-27)
1634
+
1635
+ ### 5.0.2 (2020-11-10)
1636
+
1637
+ ### [5.3.1](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.3.0...v5.3.1) (2021-02-23)
1638
+
1639
+ ## [5.3.0](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.2.2...v5.3.0) (2021-02-22)
1640
+
1641
+ ### [5.2.2](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.2.1...v5.2.2) (2021-02-18)
1642
+
1643
+ ### [5.2.1](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.2.0...v5.2.1) (2021-02-10)
1644
+
1645
+ ## [5.2.0](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.1.5...v5.2.0) (2021-02-09)
1646
+
1647
+ ### [5.1.5](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.1.4...v5.1.5) (2021-02-05)
1648
+
1649
+ ### [5.1.4](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.1.3...v5.1.4) (2021-02-04)
1650
+
1651
+ ### [5.1.3](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.1.2...v5.1.3) (2021-02-04)
1652
+
1653
+ ### [5.1.2](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.1.1...v5.1.2) (2021-02-03)
1654
+
1655
+ ### [5.1.1](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.1.0...v5.1.1) (2021-02-03)
1656
+
1657
+ ## [5.1.0](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.29...v5.1.0) (2021-01-25)
1658
+
1659
+
1660
+ ### Features
1661
+
1662
+ * reset password ([304c164](https://github.com/adeo/lmfr-web-client--authentication-module/commit/304c16462e2d2278180fcacd1061076cb55c6bba))
1663
+ * update password ([3f0b846](https://github.com/adeo/lmfr-web-client--authentication-module/commit/3f0b846e27dcacbd2232f0d2664a2e931ea0e01c))
1664
+
1665
+ ### [5.0.29](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.28...v5.0.29) (2021-01-14)
1666
+
1667
+
1668
+ ### Bug Fixes
1669
+
1670
+ * InvalidFormatException while deserialize gender from R5 ([#3](https://github.com/adeo/lmfr-web-client--authentication-module/issues/3)) ([00afbb7](https://github.com/adeo/lmfr-web-client--authentication-module/commit/00afbb799bb10a5524725031bdcb73cd7ec6f578))
1671
+
1672
+ ### [5.0.28](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.27...v5.0.28) (2021-01-08)
1673
+
1674
+ ### [5.0.27](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.26...v5.0.27) (2021-01-08)
1675
+
1676
+ ### [5.0.26](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.25...v5.0.26) (2021-01-08)
1677
+
1678
+ ### [5.0.25](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.24...v5.0.25) (2021-01-08)
1679
+
1680
+ ### [5.0.24](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.23...v5.0.24) (2021-01-08)
1681
+
1682
+ ### [5.0.23](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.22...v5.0.23) (2021-01-08)
1683
+
1684
+ ### [5.0.22](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.21...v5.0.22) (2021-01-08)
1685
+
1686
+ ### [5.0.21](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.20...v5.0.21) (2021-01-06)
1687
+
1688
+ ### [5.0.20](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.19...v5.0.20) (2021-01-06)
1689
+
1690
+ ### [5.0.19](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.18...v5.0.19) (2021-01-06)
1691
+
1692
+ ### [5.0.18](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.17...v5.0.18) (2021-01-05)
1693
+
1694
+ ### [5.0.17](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.16...v5.0.17) (2021-01-05)
1695
+
1696
+ ### [5.0.16](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.15...v5.0.16) (2021-01-05)
1697
+
1698
+ ### [5.0.15](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.14...v5.0.15) (2021-01-05)
1699
+
1700
+ ### [5.0.14](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.13...v5.0.14) (2021-01-05)
1701
+
1702
+ ### [5.0.13](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.12...v5.0.13) (2021-01-05)
1703
+
1704
+ ### [5.0.12](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.11...v5.0.12) (2021-01-04)
1705
+
1706
+ ### [5.0.11](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.10...v5.0.11) (2020-12-11)
1707
+
1708
+
1709
+ ### Bug Fixes
1710
+
1711
+ * add accept leway on jwt verifier to handle jwt freshly created ([4df5123](https://github.com/adeo/lmfr-web-client--authentication-module/commit/4df51237b1d9a93d3a0fda52139a7a4243ceded4))
1712
+
1713
+ ### [5.0.10](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.9...v5.0.10) (2020-12-07)
1714
+
1715
+ ### [5.0.9](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.8...v5.0.9) (2020-12-03)
1716
+
1717
+ ### [5.0.8](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.7...v5.0.8) (2020-12-03)
1718
+
1719
+
1720
+ ### Bug Fixes
1721
+
1722
+ * check contains instead of equality for mobile user agent ([ff4d3b4](https://github.com/adeo/lmfr-web-client--authentication-module/commit/ff4d3b48ec0444fbeb3f1a0f1b2e49eef7c096af))
1723
+
1724
+ ### [5.0.7](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.6...v5.0.7) (2020-12-03)
1725
+
1726
+ ### [5.0.6](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.5...v5.0.6) (2020-12-03)
1727
+
1728
+ ### [5.0.5](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.4...v5.0.5) (2020-12-02)
1729
+
1730
+ ### [5.0.4](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.3...v5.0.4) (2020-12-01)
1731
+
1732
+ ### [5.0.3](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.2...v5.0.3) (2020-11-27)
1733
+
1734
+ ### [5.0.2](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.1...v5.0.2) (2020-11-10)
1735
+
1736
+
1737
+ ### Bug Fixes
1738
+
1739
+ * set default scopes when no scopes provided in state ([377ce70](https://github.com/adeo/lmfr-web-client--authentication-module/commit/377ce701b2bae86c6a1b7ab68c2ec8dd0e0a82cd))
1740
+
1741
+ ### [5.0.1](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v5.0.0...v5.0.1) (2020-11-05)
1742
+
1743
+ ## 5.0.0 (2020-10-28)
1744
+
1745
+
1746
+ ### Features
1747
+
1748
+ * add has logged cookie ([aca341e](https://github.com/adeo/lmfr-web-client--authentication-module/commit/aca341e63405d96aad0975f20eb3827b2a9ca8aa))
1749
+ * change saved login cookie properties ([eeac9e5](https://github.com/adeo/lmfr-web-client--authentication-module/commit/eeac9e5d61c8272a6e98377f0db0802b926e5dad))
1750
+
1751
+ ## [4.0.0](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v3.0.2...v4.0.0) (2020-07-06)
1752
+
1753
+ ### [3.0.2](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v3.0.1...v3.0.2) (2020-02-06)
1754
+
1755
+ ### [3.0.1](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v3.0.0...v3.0.1) (2020-02-06)
1756
+
1757
+ ## [3.0.0](https://github.com/adeo/lmfr-web-client--authentication-module/compare/v2.0.0...v3.0.0) (2019-12-04)
1758
+
1759
+ ## [2.0.0](http://gitlab-xnet.fr.corp.leroymerlin.com/fr-lm-internet-refonte/lmfr-authentication-module/compare/v1.0.8...v2.0.0) (2019-10-25)
1760
+
1761
+ ### [1.0.8](http://gitlab-xnet.fr.corp.leroymerlin.com/fr-lm-internet-refonte/lmfr-authentication-module/compare/v1.0.7...v1.0.8) (2019-10-16)
1762
+
1763
+ ### [1.0.7](http://gitlab-xnet.fr.corp.leroymerlin.com/fr-lm-internet-refonte/lmfr-authentication-module/compare/v1.0.6...v1.0.7) (2019-10-16)
1764
+
1765
+ ### [1.0.6](http://gitlab-xnet.fr.corp.leroymerlin.com/fr-lm-internet-refonte/lmfr-authentication-module/compare/v1.0.5...v1.0.6) (2019-10-16)
1766
+
1767
+ ### [1.0.5](http://gitlab-xnet.fr.corp.leroymerlin.com/fr-lm-internet-refonte/lmfr-authentication-module/compare/v1.0.4...v1.0.5) (2019-10-14)
1768
+
1769
+ ### [1.0.4](http://gitlab-xnet.fr.corp.leroymerlin.com/fr-lm-internet-refonte/lmfr-authentication-module/compare/v1.0.3...v1.0.4) (2019-10-11)
1770
+
1771
+ ### [1.0.3](http://gitlab-xnet.fr.corp.leroymerlin.com/fr-lm-internet-refonte/lmfr-authentication-module/compare/v1.0.2...v1.0.3) (2019-10-09)
1772
+
1773
+ ### [1.0.2](http://gitlab-xnet.fr.corp.leroymerlin.com/fr-lm-internet-refonte/lmfr-authentication-module/compare/v1.0.1...v1.0.2) (2019-10-09)
1774
+
1775
+ ### [1.0.1](http://gitlab-xnet.fr.corp.leroymerlin.com/fr-lm-internet-refonte/lmfr-authentication-module/compare/v1.0.0...v1.0.1) (2019-10-09)
1776
+
1777
+ ## 1.0.0 (2019-10-08)
1778
+
1779
+
1780
+ ### Features
1781
+
1782
+ * **authent:** login & callback controllers ([33e778a](http://gitlab-xnet.fr.corp.leroymerlin.com/fr-lm-internet-refonte/lmfr-authentication-module/commit/33e778a))
1783
+ * **login:** login & callback controllers ([cb17aa1](http://gitlab-xnet.fr.corp.leroymerlin.com/fr-lm-internet-refonte/lmfr-authentication-module/commit/cb17aa1))
1784
+ * **node:** remove node_modules from git ([e5ee8e2](http://gitlab-xnet.fr.corp.leroymerlin.com/fr-lm-internet-refonte/lmfr-authentication-module/commit/e5ee8e2))