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,1744 @@
1
+ {
2
+ "account-creation-confirm_content--text": "Para finalizar el proceso de registro confirma tu cuenta a través del email que te hemos enviado.",
3
+ "account-creation-confirm_subtitle--text": "Confirma tu cuenta",
4
+ "account-creation-existing-customer_activation--label": "Receive the activation link by email",
5
+ "account-creation-existing-customer_activation--text": "It looks like you already have an inactive account associated with the email address: ",
6
+ "account-creation-existing-customer_contact-service--text": "You already have a customer account. In order to retrieve your purchasing and advantages history, please contact customer service by sending an email to xxxx.xxxx{'@'}test.com",
7
+ "account-creation-existing-customer_notification--text": "To complete your registration, simply click on the link in the email.",
8
+ "account-creation-existing-customer_notification-resend-email--text": "The email has been sent",
9
+ "account-creation-existing-customer_notification-title--text": "An email has been sent to you at ",
10
+ "account-creation-existing-customer_presignup--label": "Receive an email",
11
+ "account-creation-existing-customer_presignup--text": "It looks like you already have an account associated with the email address: ",
12
+ "account-creation-existing-customer_resend-email-link--text": "Resend email",
13
+ "account-creation-existing-customer_reset-password--label": "Resend a new password",
14
+ "account-creation-existing-customer_reset-password--text": "It looks like you already have an active account associated with the email address: ",
15
+ "account-creation-existing-customer_submit-button--label": "Send",
16
+ "account-creation-existing-customer_subtitle--text": "We already know you!",
17
+ "account-creation-existing-customer_title--text": "Complete my registration",
18
+ "admin-landing-page_button-title_continue": "Continue",
19
+ "admin-landing-page_button-title_see-video": "See the information video",
20
+ "admin-landing-page_elo-alt": "Elo",
21
+ "admin-landing-page_helper": "To simplify the login, you can now connect from your phone and computer by clicking on the Elo icon:",
22
+ "admin-landing-page_title": "The login to the customer / employee area is changing",
23
+ "admin-landing-page_video-link": "https://www.youtube.com/embed/No-BBMbl1Fg",
24
+ "admin-landing-page_warning": "As of April 30, access through leroymerlin.fr will be permanently closed. To log in, simply click on the Elo icon.",
25
+ "admin-space_search-page_advanced-search_city-input--label": "City",
26
+ "admin-space_search-page_advanced-search_firstname-input--label": "First name",
27
+ "admin-space_search-page_advanced-search_form--button": "Search",
28
+ "admin-space_search-page_advanced-search_lastname-input--label": "Name or company name",
29
+ "admin-space_search-page_advanced-search_zipcode-input--exemple": "exemple: 59200 or 59",
30
+ "admin-space_search-page_advanced-search_zipcode-input--label": "Postcode or Department",
31
+ "admin-space_search-page_main-section_advanced-search-page--title": "Admin - Advanced search",
32
+ "admin-space_search-page_main-section_advanced-search-tab--title": "Advanced search",
33
+ "admin-space_search-page_main-section_pre-creation-page--title": "Admin - Pre-create an account",
34
+ "admin-space_search-page_main-section_pre-creation-tab--title": "Create the customer area",
35
+ "admin-space_search-page_main-section_quick-search-page--title": "Admin - Quick search",
36
+ "admin-space_search-page_main-section_quick-search-tab--title": "Quick search",
37
+ "admin-space_search-page_main-section--title": "Search for a customer",
38
+ "admin-space_search-page_pre-creation_email-input--label": "Communication email",
39
+ "admin-space_search-page_pre-creation_firstname-input--label": "First name",
40
+ "admin-space_search-page_pre-creation_form--button": "Confirm",
41
+ "admin-space_search-page_pre-creation_form-email-error--text": "This email already has an account",
42
+ "admin-space_search-page_pre-creation_form-error--text": "Invalid format",
43
+ "admin-space_search-page_pre-creation_lastname-input--label": "Name",
44
+ "admin-space_search-page_pre-creation_login-input--label": "Login email",
45
+ "admin-space_search-page_pre-creation_optin-marketing-offers-mail--label": "Would you like to be informed of our future commercial offers by email?",
46
+ "admin-space_search-page_pre-creation_optin-marketing-offers-no--option": "No",
47
+ "admin-space_search-page_pre-creation_optin-marketing-offers-sms--label": "Would you like to be informed of our future commercial offers by SMS?",
48
+ "admin-space_search-page_pre-creation_optin-marketing-offers-yes--option": "Yes",
49
+ "admin-space_search-page_pre-creation_phonenumber-input--label": "Telephone",
50
+ "admin-space_search-page_quick-access_customer-management--description": "To view and edit information for all customers.",
51
+ "admin-space_search-page_quick-access_customer-management--title": "Customer Management",
52
+ "admin-space_search-page_quick-access_floyd--description": "Front Loyalty Desk",
53
+ "admin-space_search-page_quick-access_floyd--title": "FLOYD",
54
+ "admin-space_search-page_quick-access_oseo--description": "To manage voice of the customer comments.",
55
+ "admin-space_search-page_quick-access_oseo--title": "OSEO",
56
+ "admin-space_search-page_quick-access_pmr--description": "Shop relationship platform.",
57
+ "admin-space_search-page_quick-access_pmr--title": "PRM",
58
+ "admin-space_search-page_quick-access_sales--description": "See today’s sales",
59
+ "admin-space_search-page_quick-access_sales--title": "Sale",
60
+ "admin-space_search-page_quick-access_tempo_pickup--description": "To manage the welcome for customers coming to collect goods",
61
+ "admin-space_search-page_quick-access_tempo_pickup--title": "Tempo pickup",
62
+ "admin-space_search-page_quick-access_unicity--description": "To manage account customers.",
63
+ "admin-space_search-page_quick-access_unicity--title": "Unicity",
64
+ "admin-space_search-page_quick-access_vdc-express--description": "To enter a new voice of the customer comment.",
65
+ "admin-space_search-page_quick-access_vdc-express--title": "VDC Express",
66
+ "admin-space_search-page_quick-access--title": "Quick access",
67
+ "admin-space_search-page_quick-data-compliance--description": "Complete my registration",
68
+ "admin-space_search-page_quick-data-compliance--title": "Complete my registration",
69
+ "admin-space_search-page_quick-search_form--button": "Search",
70
+ "admin-space_search-page_quick-search_input--label": "Email, telephone, Carte Maison number, Pass Maison number, customer number ",
71
+ "admin-space_search-page_quick-search_onlymaster-input--label": "Show only main accounts",
72
+ "admin-space_search-page_quick-search--button": "Search",
73
+ "admin-space_search-page_scan-card--button": "Scan a Carte Maison",
74
+ "admin-space_search-page_search-results_associate-to-sale-modal_cancel--button": "Undo",
75
+ "admin-space_search-page_search-results_associate-to-sale-modal_submit--button": "Connect to the customer",
76
+ "admin-space_search-page_search-results_associate-to-sale-modal--subtitle": "You are about to connect to the following client:",
77
+ "admin-space_search-page_search-results_associate-to-sale-modal--title": "Customer connection",
78
+ "admin-space_search-page_search-results_cancel-delete-account--button": "Cancel deletion",
79
+ "admin-space_search-page_search-results_delete-account--button": "Delete the account",
80
+ "admin-space_search-page_search-results_desactivate-account-modal_cancel--button": "Cancel",
81
+ "admin-space_search-page_search-results_desactivate-account-modal_submit--button": "Yes, delete account",
82
+ "admin-space_search-page_search-results_desactivate-account-modal--subtitle": "Delete the customer details?",
83
+ "admin-space_search-page_search-results_desactivate-account-modal--text": "Are you sure you want to delete these customer details? You will have 7 days to reconsider this choice, after which this action is irreversible.",
84
+ "admin-space_search-page_search-results_desactivate-account-modal--title": "Delete customer details",
85
+ "admin-space_search-page_search-results_desactivate-customer-account-modal--subtitle": "Are you sure you want to delete this customer account?",
86
+ "admin-space_search-page_search-results_desactivate-customer-account-modal--text": "this will result in the deletion of all the customer's data.",
87
+ "admin-space_search-page_search-results_desactivate-professionnal-account-modal--subtitle": "Are you sure you want to delete this professionnal customer account?",
88
+ "admin-space_search-page_search-results_desactivate-professionnal-account-modal-part1--text": "This action will delete the customer space and the company associated:",
89
+ "admin-space_search-page_search-results_desactivate-professionnal-account-modal-part2--text": "The deletion of the legal entity",
90
+ "admin-space_search-page_search-results_desactivate-professionnal-account-modal-part3--text": "The deletion of the business name",
91
+ "admin-space_search-page_search-results_desactivate-professionnal-account-modal-part4--text": "If there are other contact attached to this company they will be deleted as well",
92
+ "admin-space_search-page_search-results_filter--button": "Filter results",
93
+ "admin-space_search-page_search-results_no-result--label": "Create the customer area",
94
+ "admin-space_search-page_search-results_no-result--text": "For a better result, try an advanced search or create the customer area by clicking on the following link:",
95
+ "admin-space_search-page_search-results_no-result--title": "This search returned no results.",
96
+ "admin-space_search-page_search-results_reactivate-account-modal_cancel--button": "Keep deletion",
97
+ "admin-space_search-page_search-results_reactivate-account-modal_submit--button": "Cancel deletion",
98
+ "admin-space_search-page_search-results_reactivate-account-modal--subtitle": "Cancel the deletion of the customer details?",
99
+ "admin-space_search-page_search-results_reactivate-account-modal--text": "This action will allow you to undo the deletion of the customer and keep all of the customer's information.",
100
+ "admin-space_search-page_search-results_reactivate-account-modal--title": "Cancel the deletion of the customer details",
101
+ "admin-space_search-page_search-results_result--label": "result for this search",
102
+ "admin-space_search-page_search-results_results--label": "results for this search",
103
+ "admin-space_search-page_search-results-card_accordion--label": "View more information",
104
+ "admin-space_search-page_search-results-card_account--label": "Account",
105
+ "admin-space_search-page_search-results-card_actif-account": "Active web account",
106
+ "admin-space_search-page_search-results-card_active-loyalty": "Active loyalty",
107
+ "admin-space_search-page_search-results-card_creation-date--label": "Creation date",
108
+ "admin-space_search-page_search-results-card_customer-number": "Customer no.:",
109
+ "admin-space_search-page_search-results-card_discount--label": "Discounts",
110
+ "admin-space_search-page_search-results-card_expiration-date--label": "Expires on",
111
+ "admin-space_search-page_search-results-card_go-to-account--button": "Go to the customer area",
112
+ "admin-space_search-page_search-results-card_loyalty--label": "Loyalty",
113
+ "admin-space_search-page_search-results-card_master": "Master",
114
+ "admin-space_search-page_search-results-card_no-account": "No account",
115
+ "admin-space_search-page_search-results-card_no-loyalty": "No loyalty",
116
+ "admin-space_search-page_search-results-card_not_master": "Duplicate",
117
+ "admin-space_search-page_search-results-card_pending-order": "order in progress",
118
+ "admin-space_search-page_search-results-card_pending-orders": "orders in progress",
119
+ "admin-space_search-page_search-results-card_points--label": "points",
120
+ "admin-space_search-page_search-results-card_pre-created-account": "Pre-created web account",
121
+ "admin-space_search-page_search-results-card_pre-creation--button": "Complete the profile",
122
+ "admin-space_search-page_search-results-card_pre-creation-date--label": "Pre-creation date",
123
+ "admin-space_search-page_search-results-card_pro-customer--icon": "PRO",
124
+ "admin-space_search-page_search-results-card_resend-activation-mail--button": "Resend the activation email",
125
+ "admin-space_search-page_search-results-card_secondary--button": "Secondary button",
126
+ "admin-space_search-page_search-results-card_unicity-account": "Customer account",
127
+ "common_item-list_macro--filters-to-find-more": "Find out more",
128
+ "coowner-invitation-error-page--subtitle": "Sorry, an error occurred",
129
+ "coowner-invitation-expired-page--subtitle": "Your invitation has expired",
130
+ "coowner-invitation-expired-page--text": "You can ask {firstName} {lastName}, who invited you to send another one",
131
+ "coowner-invitation-page_back--link": "Back to Leroymerlin.en",
132
+ "coowner-invitation-page_content_accept-button--text": "Join the program",
133
+ "coowner-invitation-page_content_benefits_item1--text": "My funding",
134
+ "coowner-invitation-page_content_benefits_item2--text": "My funding",
135
+ "coowner-invitation-page_content_benefits_item3--text": "Priority technical support",
136
+ "coowner-invitation-page_content_benefits_item4--text": "My funding",
137
+ "coowner-invitation-page_content_part1--text": "It will allow you to accumulate points and rewards and enjoy the same benefits\nfor example :",
138
+ "coowner-invitation-page_content_part2--text": "If you agree, accept the invitation and loyalty Leroy Merlin\nterms and conditions of the program.",
139
+ "coowner-invitation-page_content_refuse-button--text": "Refuse invitation",
140
+ "coowner-invitation-page_content_terms-of-use--link": "My funding",
141
+ "coowner-invitation-page_content_terms-of-use--text": "My funding",
142
+ "coowner-invitation-page--subtitle": "{firstName} {lastName} invites you to participate\nits Leroy Melrin loyalty program",
143
+ "coowner-invitation-page--title": "Co-owner invitation",
144
+ "coowner-invitation-wrong-user-page_disconnect--label": "Disconnect",
145
+ "coowner-invitation-wrong-user-page_link--text": "Contact customer service",
146
+ "coowner-invitation-wrong-user-page--subtitle": "Oops! It seems the invitation wasn't meant for you",
147
+ "coowner-invitation-wrong-user-page--text": "You may be logged in to the wrong account. Please check your invitation and try this\nSign in with the email address the invitation was sent to",
148
+ "custom-space_create-account-stepper_having-pass-page--label": "Back to the page: search for a loyalty card",
149
+ "custom-space-create-account_have-loyalty-card--description": "Save time and find all your advantages by creating an account with your loyalty card.",
150
+ "custom-space-create-account_have-loyalty-card--subtitle": "Do you have a loyalty card?",
151
+ "custom-space-create-account_second-step--item--text": "Your loyalty advantages",
152
+ "custom-space-create-account_stepper--description": "Step {currentIndex} of {totalSteps}: {currentStepLabel}",
153
+ "custom-space-create-account_update-email--link": "Change address",
154
+ "custom-space-create-account--description": "Save time and find all your advantages by creating an account with your Carte Maison.",
155
+ "custom-space-create-account--subtitle": "Do you have a Carte Maison?",
156
+ "custom-space-create-account--title": "Create an account",
157
+ "custom-space-create-account-first-step--item--text": "Your personal information",
158
+ "custom-space-create-account-last-step--item--text": "We would like to contact you",
159
+ "custom-space-create-account-second-step--item--text": "The Carte Maison gives you 1 year of advantages",
160
+ "custom-space-create-account-third-step--item--text": "Your home",
161
+ "custom-space-create-community_stepper--description": "Step {currentIndex} of {totalSteps}: {currentStepLabel}",
162
+ "customer-admin_client-summary_personal-information_no-loyalty--text": "No loyalty",
163
+ "customer-factory_country_options_italy--label": "ITALY",
164
+ "customer-factory_country_options_spain--label": "SPAIN",
165
+ "customer-factory_loyalty_type_selection--label": "Type of loyalty",
166
+ "customer-space_account-addresses_delete-button--label": "Delete address",
167
+ "customer-space_account-addresses_delete-secondary-address-button--label": "Delete secondary address",
168
+ "customer-space_account-addresses_secondary-address-update-button--label": "Update secondary address",
169
+ "customer-space_account-addresses_update-button--label": "Update address",
170
+ "customer-space_account-civility_man--label": "Mr",
171
+ "customer-space_account-civility_man-abbreviation--label": "Mr.",
172
+ "customer-space_account-civility_woman--label": "Ms",
173
+ "customer-space_account-civility_woman-abbreviation--label": "Ms.",
174
+ "customer-space_account-co-owner_co-owner_card-number--label": "Card number",
175
+ "customer-space_account-co-owner_co-owner_customer-id--label": "Customer number",
176
+ "customer-space_account-co-owner_co-owner_firstname--label": "First name",
177
+ "customer-space_account-co-owner_co-owner_name--label": "Surname",
178
+ "customer-space_account-co-owner_co-owner_none--content": "This customer does not have a joint holder.",
179
+ "customer-space_account-co-owner--title": "Joint holder",
180
+ "customer-space_account-create_cgu_checkbox--label": "I accept the {conditions} of the LeroyMerlin account",
181
+ "customer-space_account-create_cgu-cm_checkbox--label": "I accept the {conditions} of the Carte Maison",
182
+ "customer-space_account-create_cgu-l&m_checkbox--label": "I accept the {conditions} of the Leroy&moi card",
183
+ "customer-space_account-create_cgu-l&m-pro_checkbox--label": "I accept the {conditions} of the Leroy&moi Pro card",
184
+ "customer-space_account-create_loyalty-advantages_skip-button--label": "Skip this step",
185
+ "customer-space_account-create_loyalty-advantages_submit-button--label": "Continue",
186
+ "customer-space_account-create_loyalty-advantages--subtitle": "Pay with your next purchase to activate it",
187
+ "customer-space_account-create_loyalty-advantages-enroll--button": "Subscribe to the programme",
188
+ "customer-space_account-create_loyalty-info_skip-button--label": "Skip this step",
189
+ "customer-space_account-create_loyalty-info_submit-button--label": "Continue",
190
+ "customer-space_account-create_loyalty-selection-page--text": "Congratulations ! Your user account has been successfully created.",
191
+ "customer-space_account-create_loyalty-selection-page--title": "Choose your loyalty program",
192
+ "customer-space_account-create_optins_submit-button--label": "Confirm",
193
+ "customer-space_account-create_personal-data_siret-on-loyalty_submit-button--label": "Confirm",
194
+ "customer-space_account-create_personal-data_siret-on-loyalty_title--label": "The SIRET is required for subscription to {programName}",
195
+ "customer-space_account-create_personal-data_submit-button--label": "Continue",
196
+ "customer-space_account-creation_all-fields-mandatory--text": "All fields are mandatory",
197
+ "customer-space_account-creation_already-have-account--link-label": "Log in",
198
+ "customer-space_account-creation_already-have-account--title": "Already an account?",
199
+ "customer-space_account-creation_back-link--aria-label": "back",
200
+ "customer-space_account-creation_background-picture--alt": "Living room",
201
+ "customer-space_account-creation_cgu_checkbox--label": "J’accepte les conditions générales d’utilisation du compte Leroy Merlin",
202
+ "customer-space_account-creation_cgu-link--label": "Voir les conditions générales d’utilisation de Leroy Merlin",
203
+ "customer-space_account-creation_data--link-label": "Information sur le traitement de vos données",
204
+ "customer-space_account-creation_form_codice-destinario--help-text": "Il codice destinatario è obbligatorio per futuri acquisti on line. Ti suggeriamo di inserirlo ora.",
205
+ "customer-space_account-creation_form_fiscal-code--help-text": " Il codice fiscale è obbligatorio per futuri acquisti on line . Ti suggeriamo di inserirlo ora.",
206
+ "customer-space_account-creation_form_pec--help-text": "La PEC è obbligatoria per futuri acquisti on line. Ti suggeriamo di inserirlo ora.",
207
+ "customer-space_account-creation_is-pro--label": "I am a professional",
208
+ "customer-space_account-creation_logo-picture--alt": "Leroy Merlin",
209
+ "customer-space_account-creation_offers_checkbox--label": "J’accepte de recevoir les offres et bon plans de Leroy Merlin.",
210
+ "customer-space_account-creation_offers-option--text": "Changez d’avis à tout moment en vous rendez dans votre espace client / Gestion",
211
+ "customer-space_account-creation_password-hint_right--alt": "Right",
212
+ "customer-space_account-creation_paswword-hint_bad--alt": "Bad",
213
+ "customer-space_account-creation_personal-section_eight-caracters--validation-text": "At least 8 characters",
214
+ "customer-space_account-creation_personal-section_firstname_field--label": "Name",
215
+ "customer-space_account-creation_personal-section_lastname_field--label": "Surname",
216
+ "customer-space_account-creation_personal-section_login_field--label": "E-mail",
217
+ "customer-space_account-creation_personal-section_login_field-professional--label": "E-mail",
218
+ "customer-space_account-creation_personal-section_lowercase--validation-text": "1 lower-case",
219
+ "customer-space_account-creation_personal-section_number--validation-text": "Number",
220
+ "customer-space_account-creation_personal-section_password_field--label": "Password",
221
+ "customer-space_account-creation_personal-section_phone_field--help": "To help track your order",
222
+ "customer-space_account-creation_personal-section_phone_field--label": "Phone number",
223
+ "customer-space_account-creation_personal-section_phone_field-professional--help": "To help track your order",
224
+ "customer-space_account-creation_personal-section_phone_field-professional--label": "Phone number",
225
+ "customer-space_account-creation_personal-section_store_field--label": "Your store",
226
+ "customer-space_account-creation_personal-section_store_field--placeholder": "-- Choose your store --",
227
+ "customer-space_account-creation_personal-section_uppercase--validation-text": "1 capital",
228
+ "customer-space_account-creation_pro-section_company-name_field--label": "Company name",
229
+ "customer-space_account-creation_pro-section_country_field--label": "Country of domicile",
230
+ "customer-space_account-creation_pro-section_legal-form_field--label": "Legal entity",
231
+ "customer-space_account-creation_pro-section_name-postalcode_field--label": "Name and postal code",
232
+ "customer-space_account-creation_pro-section_postalcode-error--text": "This field does not follow the expected format",
233
+ "customer-space_account-creation_pro-section_search_submit--label": "Search",
234
+ "customer-space_account-creation_pro-section_siret_field--label": "SIRET number",
235
+ "customer-space_account-creation_social-connectors_apple--label": "Sign up in with Apple",
236
+ "customer-space_account-creation_social-connectors_facebook--label": "Sign up in with Facebook",
237
+ "customer-space_account-creation_social-connectors_google--label": "Sign up in with Google",
238
+ "customer-space_account-creation_social-login_connectors--label": "You can sign up with your account from one of these social plateform",
239
+ "customer-space_account-creation_social-login_connectors-2--label": "Or complete the form. All fields are mandatory",
240
+ "customer-space_account-creation_social-login_info--alt": "circled i",
241
+ "customer-space_account-creation_social-login_warning--subtext": "You will be asked only once for this action. During your next login using a social connector, you will directly access your customer space.",
242
+ "customer-space_account-creation_social-login_warning--text": "To finalize your account creation, please verify your personal informations.",
243
+ "customer-space_account-creation_submit-button--label": "Sign up",
244
+ "customer-space_account-creation_title": "Create an account",
245
+ "customer-space_account-creation-help--next": "Continue",
246
+ "customer-space_account-creation-help--next-link-title": "Continue to account creation",
247
+ "customer-space_account-creation-help--page-title": "Subscribe to loyalty",
248
+ "customer-space_account-creation-help--step1": "Create your account",
249
+ "customer-space_account-creation-help--step2": "Sign up for the programme",
250
+ "customer-space_account-creation-help--step3": "Start enjoying your advantages",
251
+ "customer-space_account-creation-help--subtitle": "How <span>does it work?</span>",
252
+ "customer-space_account-creation-help--title": "Loyalty sign-up",
253
+ "customer-space_account-management_cookie-management--label": "Cookie management",
254
+ "customer-space_account-management_newsletters--label": "Newsletter and communication",
255
+ "customer-space_account-management_password--label": "Change password",
256
+ "customer-space_account-management_personal-information--label": "My personal information",
257
+ "customer-space_account-management_personal-information-and-password--label": "My personal information and password",
258
+ "customer-space_account-management_stop-paper--label": "Paperless",
259
+ "customer-space_account-management--title": "Account management",
260
+ "customer-space_account-password_field_confirm-new-password--label": "Confirmation of password",
261
+ "customer-space_account-password_field_new-password--label": "New password",
262
+ "customer-space_account-password_field_old-password--label": "Old password",
263
+ "customer-space_account-password_footer_cancel-button--label": "Cancel",
264
+ "customer-space_account-password_footer_valid-button--label": "Change my password",
265
+ "customer-space_account-password_modal_body--title": "Change my account password?",
266
+ "customer-space_account-password_modal_header--title": "Password change",
267
+ "customer-space_account-payment_card-date-text": "Exp:",
268
+ "customer-space_account-payment_layer-rename_cancel--btn": "Cancel",
269
+ "customer-space_account-payment_layer-rename_field--label": "Card name",
270
+ "customer-space_account-payment_layer-rename_validate--btn": "Rename my card",
271
+ "customer-space_account-payment_layer-rename--title": "Change my payment card",
272
+ "customer-space_account-payment_notification--text": "You have not yet registered a payment card.",
273
+ "customer-space_account-payment_notification-delete--text": "Your payment card has been successfully deleted.",
274
+ "customer-space_account-payment_notification-update--text": "Your payment method has been updated",
275
+ "customer-space_account-payment--button": "Choose my default card",
276
+ "customer-space_account-payment--title": "My payment methods",
277
+ "customer-space_account-profile_administrative-identifier-type--placeholder": "not relevant in french ",
278
+ "customer-space_account-profile_form_activity-sector--label": "Sector of activity",
279
+ "customer-space_account-profile_form_activity-sector--placeholder": "Sector of activity",
280
+ "customer-space_account-profile_form_administrative-identifier--label": "Administrative ID",
281
+ "customer-space_account-profile_form_administrative-identifier-cif--label": "NIF",
282
+ "customer-space_account-profile_form_administrative-identifier-dni--label": "DNI",
283
+ "customer-space_account-profile_form_administrative-identifier-nie--label": "NIE",
284
+ "customer-space_account-profile_form_administrative-identifier-nif--label": "NIF",
285
+ "customer-space_account-profile_form_administrative-identifier-passport--label": "Passport",
286
+ "customer-space_account-profile_form_administrative-identifier-type_dni-option--label": "DNI",
287
+ "customer-space_account-profile_form_administrative-identifier-type_nie-option--label": "NIE",
288
+ "customer-space_account-profile_form_administrative-identifier-type_passport-option--label": "Passport",
289
+ "customer-space_account-profile_form_administrative-identifier-type--label": "ID type",
290
+ "customer-space_account-profile_form_administrative-identifier-type--placeholder": "customer-space-module",
291
+ "customer-space_account-profile_form_age--error": "You must be at least 16 years old.",
292
+ "customer-space_account-profile_form_birthday--error": "Date of birth format is incorrect (DD-MM-YYYY)",
293
+ "customer-space_account-profile_form_birthday--label": "Date of birth",
294
+ "customer-space_account-profile_form_birthday--placeholder": "DD-MM-YYYY",
295
+ "customer-space_account-profile_form_cae-number--label": "CAE",
296
+ "customer-space_account-profile_form_certified-email--label": "Indirizzo di posta certifica (PEC)",
297
+ "customer-space_account-profile_form_checkbox_login-for-communication_error--text": "Please tick the box.",
298
+ "customer-space_account-profile_form_checkbox_login-for-communication--label": "Use my login email to receive communications from Leroy Merlin.",
299
+ "customer-space_account-profile_form_cif-number--label": "CIF",
300
+ "customer-space_account-profile_form_electronic-invoicing-code--error": "The format of the electronic billing code is incorrect.",
301
+ "customer-space_account-profile_form_electronic-invoicing-code--label": "Codice destinatario (C.D.)",
302
+ "customer-space_account-profile_form_email_alone--label": "Email",
303
+ "customer-space_account-profile_form_fiscal-code--error": "The format of the tax code is incorrect.",
304
+ "customer-space_account-profile_form_fiscal-code--label": "Tax code",
305
+ "customer-space_account-profile_form_marital-status--label": "Marital status",
306
+ "customer-space_account-profile_form_nb-of-children--label": "Number of children",
307
+ "customer-space_account-profile_form_nb-of-family-members--label": "Number of people in the family",
308
+ "customer-space_account-profile_form_nb-of-family-members--placeholder": "Number of people",
309
+ "customer-space_account-profile_form_nif--label": "NIF",
310
+ "customer-space_account-profile_form_nif-number--label": "Company NIF",
311
+ "customer-space_account-profile_form_profession--label": "Occupation",
312
+ "customer-space_account-profile_form_profession--placeholder": "Choose an occupation",
313
+ "customer-space_account-profile_form_vat-number--error": "The VAT number is incorrect.",
314
+ "customer-space_account-profile_form_vat-number--label": "P.IVA",
315
+ "customer-space_account-profile_information_button_to-add-phone--label": "Edit/Add a phone",
316
+ "customer-space_account-profile_information_button_update--label": "Edit",
317
+ "customer-space_account-profile_information_civility--label": "Salutation",
318
+ "customer-space_account-profile_information_communication-email--label": "Communication email",
319
+ "customer-space_account-profile_information_firstname--label": "First name",
320
+ "customer-space_account-profile_information_lastname--label": "Surname",
321
+ "customer-space_account-profile_information_login--label": "Login email",
322
+ "customer-space_account-profile_information_phone--label": "Telephone",
323
+ "customer-space_account-settings__stop-paper__toggle--label": "Till receipts and credit card receipts",
324
+ "customer-space_account-settings__stop-paper--description": "To reduce our ecological footprint, we offer you the option of receiving your paper documents in digital format",
325
+ "customer-space_account-settings__stop-paper--submit": "Register",
326
+ "customer-space_account-settings__stop-paper--subtitle": "Our commitment",
327
+ "customer-space_account-settings__stop-paper--title": "Paperless",
328
+ "customer-space_account-switch-to-pro_block-names-address--text": "Address",
329
+ "customer-space_account-switch-to-pro_block-names-consent--text": "Consent",
330
+ "customer-space_account-switch-to-pro_block-names-member--text": "Member",
331
+ "customer-space_account-switch-to-pro_block-names-professional-infos--text": "Your Company",
332
+ "customer-space_account-switch-to-pro_steps-company--text": "Company",
333
+ "customer-space_account-switch-to-pro_steps-member--text": "Member",
334
+ "customer-space_account-switch-to-pro_store-help-text--text": "Take advantage of the offers available in your store",
335
+ "customer-space_account-switch-to-pro_store-label--text": "Linked store",
336
+ "customer-space_account-switch-to-pro_success-notification-title--text": "The switch from a personal account to a business account has been successfully completed",
337
+ "customer-space_account-switch-to-pro_warning-notification--text": "Please note that the process of switching to a professional account is irreversible",
338
+ "customer-space_account-type_civility_men--label": "Mr",
339
+ "customer-space_account-type_civility_women--label": "Ms",
340
+ "customer-space_add-to-cart_error-message_creation-need-valid-offer--title": "This product cannot be added to the basket",
341
+ "customer-space_add-to-cart_error-message_customer-order-not-found--title": "Your basket has expired. Please try again",
342
+ "customer-space_add-to-cart_error-message_inconsistent-customer-user--title": "Your basket has expired. Please try again",
343
+ "customer-space_add-to-cart_error-message_invalid-customer--title": "Your basket has expired. Please try again",
344
+ "customer-space_add-to-cart_error-message_invalid-quantity--title": "This quantity cannot be added to the basket; please change the quantity",
345
+ "customer-space_add-to-cart_error-message_no-product-to-add--title": "No products in the list could be added to the basket.",
346
+ "customer-space_add-to-cart_error-message_sample-quantity-exceeded--title": "This sample is already in your basket; you can only add one sample of this product",
347
+ "customer-space_add-to-cart_error-message_stage-not-allowed--title": "Your basket has expired. Please try again",
348
+ "customer-space_add-to-cart_error-message_too-many-lines--title": "Too many products in the basket",
349
+ "customer-space_address-config_select-city--placeholder": "Select a city",
350
+ "customer-space_address-config_select-country--placeholder": "Select a country",
351
+ "customer-space_administrative-identifier_dni--error": "The format of the NDI is incorrect.",
352
+ "customer-space_administrative-identifier_dni--label": "DNI",
353
+ "customer-space_administrative-identifier_dni--placeholder": "DNI",
354
+ "customer-space_administrative-identifier_dni-existence--error": "The DNI is already associated with another account",
355
+ "customer-space_administrative-identifier_nie--error": "The format of the NIE is incorrect.",
356
+ "customer-space_administrative-identifier_nie--label": "NIE",
357
+ "customer-space_administrative-identifier_nie--placeholder": "NIE",
358
+ "customer-space_administrative-identifier_nie-existence--error": "The NIE is already associated with another account",
359
+ "customer-space_administrative-identifier_passport--error": "The passport format entered is incorrect.",
360
+ "customer-space_administrative-identifier_passport--label": "Passport",
361
+ "customer-space_administrative-identifier_passport--placeholder": "Passport",
362
+ "customer-space_administrative-identifier_passport-existence--error": "The passport is already associated with another account",
363
+ "customer-space_after-sales_document--title": "My after-sales follow-up",
364
+ "customer-space_after-sales_empty-page--content": "A product is made to last. That’s why you’re welcome to visit your Leroy Merlin store’s after-sales service area for all maintenance and repair work on your products.",
365
+ "customer-space_after-sales_empty-page--title": "You do not have any registered after-sales service follow-up.",
366
+ "customer-space_after-sales_list_page--store-name": "{storeName} store",
367
+ "customer-space_after-sales_list_page--web-store-name": "Web Store",
368
+ "customer-space_after-sales_list_page--website-store-name": "On leroymerlin.co.uk",
369
+ "customer-space_after-sales_list-page_under-waranty": "Under warranty",
370
+ "customer-space_after-sales_list-page_under-warranty": "Under warranty",
371
+ "customer-space_after-sales_list-page--euros": "€{amount}",
372
+ "customer-space_after-sales_list-page--reference": "Ref.: ",
373
+ "customer-space_after-sales_list-page--sav-id": "After-sales n°{id}",
374
+ "customer-space_after-sales_list-page--updated": "Updated on {date}",
375
+ "customer-space_after-sales_list-page--warning-link": "See contact details",
376
+ "customer-space_after-sales_list-page--warning-message": "Confirm your quote by phone or in store",
377
+ "customer-space_after-sales_new-empty-page--title": "You do not have any ongoing after-sales service.",
378
+ "customer-space_after-sales_page--title": "My after-sales follow-up:",
379
+ "customer-space_after-sales_route--url": "my-aftersales",
380
+ "customer-space_after-sales-list-empty": "empty after-sales follow-up list",
381
+ "customer-space_after-sales-page--title": "After-sales follow-up",
382
+ "customer-space_cae_validation-error--text": "Invalid CAE",
383
+ "customer-space_choose-address_notification_invalid-address--description": "Your postal address is incomplete or contains an error.",
384
+ "customer-space_client-main-address--label": "Main address",
385
+ "customer-space_client-summary_access-loyalty-after-sales--button": "Go to loyalty after-sales service",
386
+ "customer-space_client-summary_email_main-phone--label": "Main telephone",
387
+ "customer-space_client-summary_email--label": "Communication email",
388
+ "customer-space_client-summary_estimates--title": "Latest quotes",
389
+ "customer-space_client-summary_estimates-see-more--text": "See quotes",
390
+ "customer-space_client-summary_full-name--label": "First and last name",
391
+ "customer-space_client-summary_loyalty_join-button--label": "Join loyalty program",
392
+ "customer-space_client-summary_loyalty_see-details-button--label": "See loyalty details",
393
+ "customer-space_client-summary_loyalty--title": "Loyalty",
394
+ "customer-space_client-summary_loyalty-program--title": "Loyalty program",
395
+ "customer-space_client-summary_more-address--link": " No other | + 1 other | + {n} others",
396
+ "customer-space_client-summary_more-phones--link": " No other | + 1 other | + {n} others ",
397
+ "customer-space_client-summary_more-rewards--link": " No other discount | + 1 other discount | + {n} other discounts",
398
+ "customer-space_client-summary_orders--title": "Latest orders",
399
+ "customer-space_client-summary_orders-no-data--text": "No orders",
400
+ "customer-space_client-summary_orders-see-more--text": "See orders",
401
+ "customer-space_client-summary_other-rewards--text": "No other | +1 other discount available | +{n} other discounts available",
402
+ "customer-space_client-summary_personal-info_button_update--label": "Update",
403
+ "customer-space_client-summary_professional-info_button_update--label": "Update",
404
+ "customer-space_client-summary_professional-info-title--text": "Company informations",
405
+ "customer-space_client-summary_profile-id--label": "Customer ID",
406
+ "customer-space_client-summary_purchases--title": "Latest purchases",
407
+ "customer-space_client-summary_purchases-see-more--text": "See purchases",
408
+ "customer-space_client-summary_rewards_expiration-date--text": "Expiration date",
409
+ "customer-space_client-summary_rewards_label--text": "Discounts available",
410
+ "customer-space_client-summary_rewards_see-all-button--label": "See all discounts",
411
+ "customer-space_client-summary_rewards--title": "Discounts",
412
+ "customer-space_client-summary_switch-to-pro_error-modal--title": "Business account switchover",
413
+ "customer-space_client-summary_switch-to-pro_error-modal-client-in-cluster--comment": "The system traced the existence of several accounts in the same name. \n*Give a solution*The system traced the existence of several accounts in the same name. \n*Give a solution*",
414
+ "customer-space_client-summary_switch-to-pro_error-modal-client-in-cluster--message": "We are sorry, switching to a business account is not possible",
415
+ "customer-space_client-summary_switch-to-pro_error-modal-client-in-cluster--mobile-link": "Continue to Leroy&moi",
416
+ "customer-space_client-summary_switch-to-pro_error-modal-close-button--text": "Close",
417
+ "customer-space_client-summary_switch-to-pro_error-modal-co-owner_has-co-owner-step--title": "Step {stepNumber}",
418
+ "customer-space_client-summary_switch-to-pro_error-modal-co-owner_has-co-owner-step1--text": "Delete the joint holder by going to loyalty program after-sales. Please note that it cannot be relinked after the switchover.",
419
+ "customer-space_client-summary_switch-to-pro_error-modal-co-owner_has-co-owner-step2--text": "Restart the process by going to Customer Overview / Switch button",
420
+ "customer-space_client-summary_switch-to-pro_error-modal-co-owner_is-co-owner--comment": "The customer is a joint holder of the loyalty account.",
421
+ "customer-space_client-summary_switch-to-pro_error-modal-co-owner_is-co-owner--message": "We are sorry, switching the customer to a business account is not possible",
422
+ "customer-space_client-summary_switch-to-pro_error-modal-co-owner_is-co-owner--warning": "Please note that only the account holder can be switched at the moment.",
423
+ "customer-space_client-summary_switch-to-pro_error-modal-co-owner--comment": "A joint holder is linked to this loyalty account. Co-holder switching is not currently available. To switch the customer, follow these steps.",
424
+ "customer-space_client-summary_switch-to-pro_error-modal-co-owner--message": "We are sorry, switching to a business account is not possible in this case",
425
+ "customer-space_client-summary_switch-to-pro_error-modal-co-owner--mobile-link": "My Loyalty section",
426
+ "customer-space_client-summary_switch-to-pro_error-modal-co-worker--comment": "The customer's loyalty programme is not compatible with this switchover.",
427
+ "customer-space_client-summary_switch-to-pro_error-modal-co-worker--message": "Sorry, the customer is not eligible to switch to a business account",
428
+ "customer-space_client-summary_switch-to-pro_error-modal-unicity--comment": "Switching is not allowed for customers with a Unicity account.",
429
+ "customer-space_client-summary_switch-to-pro--button": "Switch to a pro account",
430
+ "customer-space_client-summary_update-customer--button": "Edit the customer",
431
+ "customer-space_client-summary_web-account-precreation_already-binded-notification-error--text": "A web account with this email already exists. Please open an incident in servicenow.",
432
+ "customer-space_client-summary_web-account-precreation_button--label": "Pre-create the web account",
433
+ "customer-space_client-summary_web-account-precreation_button--title": "The web account cannot be created because the email has not been filled in",
434
+ "customer-space_client-summary_web-account-precreation_notification--text": "The web account has been successfully pre-created!",
435
+ "customer-space_client-summary_web-account-precreation_notification--title": "Pre-created web account",
436
+ "customer-space_client-summary_web-account-precreation_notification-error--text": "A technical error occurred during the pre-creation of the web account",
437
+ "customer-space_client-summary-co-owners--text": "Co-owners",
438
+ "customer-space_client-summary-expiration-date--text": "Expires on",
439
+ "customer-space_client-summary-loyalty_no-loyalty---text": "You can suggest to join loyalty program to enjoy exclusive benefits.",
440
+ "customer-space_client-summary-loyalty_no-loyalty--title": "The customer does not have a loyalty program.",
441
+ "customer-space_client-summary-loyalty-number--text": "Loyalty number",
442
+ "customer-space_client-summary-loyalty-type--text": "Type of loyalty",
443
+ "customer-space_client-summary-more-co-owners--text": "No other | +1 other | +{n} others",
444
+ "customer-space_client-summary-points--text": "Points",
445
+ "customer-space_client-summary-rank--text": "Status",
446
+ "customer-space_client-summary-until--text": "until {date}",
447
+ "customer-space_collaborator_landing--title": "ELO redirection\nELO redirection\nELO redirection\nELO redirection\nELO redirection\nELO redirection\nELO redirection\nELO redirection\nELO redirection\n",
448
+ "customer-space_communication-settings_feedback_sub-title": "After a purchase, would you like to be contacted by email to give your feedback?",
449
+ "customer-space_communication-settings_routes--title": "Communication preferences",
450
+ "customer-space_communication-settings_sub-title": "How would you like to receive our promotional and personalised offers?",
451
+ "customer-space_communication-settings_sub-title--legend": "Several possible options",
452
+ "customer-space_communication-settings_title": "Newsletter and communications",
453
+ "customer-space_communication-stettings-page_communication-settings_sub--title": "I would like to receive promotional and personalised offers from Leroy Merlin by:",
454
+ "customer-space_communication-stettings-page_communication-settings--legend": "Please select the means of communication by which you wish to be contacted.",
455
+ "customer-space_communication-stettings-page_communication-settings--subtitle": "Rimani in contatto con noi.",
456
+ "customer-space_communication-stettings-page_communication-settings--title": "Communication preferences",
457
+ "customer-space_communication-stettings-page_notification_success--title": "Thank you, your communication preferences have been changed.",
458
+ "customer-space_communication-stettings-page_submit-button--label": "Confirm",
459
+ "customer-space_communication-stettings-page_submit-button--title": "Confirm my Newsletter and communications preferences",
460
+ "customer-space_communication-stettings-page_survey_sub--title": "I agree to be contacted by email about opinions, surveys and polls:",
461
+ "customer-space_communication-stettings-page_survey--legend": "As a Leroy Merlin customer, you may be asked to give your opinion on the site, on the products or services you have purchased.",
462
+ "customer-space_communication-stettings-page_unsubscribed-checkbox--label": "I wish to unsubscribe from all Leroy Merlin communications.",
463
+ "customer-space_consents_cgus--label": "General terms and conditions of use",
464
+ "customer-space_country-code_belgium--label": "Belgium",
465
+ "customer-space_country-code_france--label": "France",
466
+ "customer-space_country-code_italy-label": "Italy",
467
+ "customer-space_country-code_spain--label": "Spain",
468
+ "customer-space_create-account": "/account-creation",
469
+ "customer-space_create-account_confirm-route--text": "/exito",
470
+ "customer-space_create-account_existing-customer-route--text": "/end",
471
+ "customer-space_create-account_form_birth-date-field--label": "Date of birth",
472
+ "customer-space_create-account_form_login-field--label": "Email",
473
+ "customer-space_create-account_form_nif-field--label": "NIF",
474
+ "customer-space_create-account_form_professional-cae-field--label": "CAE",
475
+ "customer-space_create-account_form_professional-nif-field--label": "NIF",
476
+ "customer-space_create-account_l&m-loyalty-notification_success--title": "Thank you for joining the Leroy&moi loyalty programme. Collect points and get all your advantages now.",
477
+ "customer-space_create-account_loyalty-info-route--text": "/loyalty/information",
478
+ "customer-space_create-account_loyalty-notification_success--text": "Thank you for signing up for the 1-year Carte Maison. To activate your card, you will be asked to pay €9 when you next visit the store. In the meantime, you can now collect loyalty points with every order.",
479
+ "customer-space_create-account_loyalty-notification_success--title": "Your account has been successfully created",
480
+ "customer-space_create-account_loyalty-notification_warning--text": "You can now order and use our tools from your personal space.\nHowever, an error occurred when you signed up for the Carte Maison; you can renew your application below. You can now order and use our tools from your personal space.\nHowever, an error occurred when you signed up for the Carte Maison; you can renew your application below. You can now order and use our tools from your personal space.\nHowever, an error occurred when you signed up for the Carte Maison; you can renew your application below. You can now order and use our tools from your personal space.\nHowever, an error occurred when you signed up for the Carte Maison; you can renew your application below. You can now order and use our tools from your personal space.\nHowever, an error occurred when you signed up for the Carte Maison; you can renew your application below. You can now order and use our tools from your personal space.\nHowever, an error occurred when you signed up for the Carte Maison; you can renew your application below. You can now order and use our tools from your personal space.\nHowever, an error occurred when you signed up for the Carte Maison; you can renew your application below. ",
481
+ "customer-space_create-account_loyalty-notification_warning--title": "Welcome to your home {firstName}",
482
+ "customer-space_create-account_loyalty-notification_warning-first_part--text": "You can now order and use our tools from your personal space.\nHowever, an error occurred when you signed up for the Carte Maison. This is happening You can now order and use our tools from your personal space.\nHowever, an error occurred when you signed up for the Carte Maison. This is happening You can now order and use our tools from your personal space.\nHowever, an error occurred when you signed up for the Carte Maison. This is happening You can now order and use our tools from your personal space.\nHowever, an error occurred when you signed up for the Carte Maison. This is happening You can now order and use our tools from your personal space.\nHowever, an error occurred when you signed up for the Carte Maison. This is happening You can now order and use our tools from your personal space.\nHowever, an error occurred when you signed up for the Carte Maison. This is happening You can now order and use our tools from your personal space.\nHowever, an error occurred when you signed up for the Carte Maison. This is happening ",
483
+ "customer-space_create-account_loyalty-notification_warning-link_content--text": "I wish to sign up for the Carte Maison programme",
484
+ "customer-space_create-account_loyalty-notification_warning-second_part--text": " to renew your request.",
485
+ "customer-space_create-account_loyalty-route--text": "/loyalty",
486
+ "customer-space_create-account_loyalty-selection-route--text": "/fidelity-program",
487
+ "customer-space_create-account_no-loyalty-notification_success--text": "Welcome to your space {firstName}! Your account has been activated, and a confirmation email has been sent to you. You can now order and benefit from our tools from your personal space.",
488
+ "customer-space_create-account_optins-route--text": "/consent",
489
+ "customer-space_create-account_personal-data-route--text": "/my-information",
490
+ "customer-space_create-account_route--text": "/account-creation",
491
+ "customer-space_create-account_routes_check-loyalty--title": "Create my account",
492
+ "customer-space_create-account_routes_customer-info--title": "My information",
493
+ "customer-space_create-account_routes_existing-customer--title": "Complete my registration",
494
+ "customer-space_create-account_routes_loyalty-choice--title": "The loyalty card",
495
+ "customer-space_create-account_routes_loyalty-info--title": "My loyalty information",
496
+ "customer-space_create-account_routes_optins--title": "My communication options",
497
+ "customer-space_create-account_search-route--text": "/search",
498
+ "customer-space_create-account_steps": "/steps",
499
+ "customer-space_create-account-route--text": "/search",
500
+ "customer-space_create-account-sms-confirmation-route--text": "/verification-sms.html",
501
+ "customer-space_customer-header_customer-information_customer-id--label": "Customer no.: {customerId}",
502
+ "customer-space_customer-header_customer-information_customer-type--private": "Individual",
503
+ "customer-space_customer-header_customer-information_customer-type--professional": "Business",
504
+ "customer-space_customer-history_after--label": "After",
505
+ "customer-space_customer-history_application--label": "Application",
506
+ "customer-space_customer-history_before--label": "Before",
507
+ "customer-space_customer-history_champ--label": "Field",
508
+ "customer-space_customer-history_customer-info-title--text": "Customer information",
509
+ "customer-space_customer-history_modification-date--label": "Modification date",
510
+ "customer-space_customer-history_operation-type--label": "Operation type",
511
+ "customer-space_customer-history_operator-id--label": "LDAP",
512
+ "customer-space_customer-history_operator-name--label": "Operation name",
513
+ "customer-space_customer-history_pagination_page-on--text": "of",
514
+ "customer-space_customer-history_pagination_show-for--text": "View by",
515
+ "customer-space_customer-history_subdatatable_none--text": "No data has been changed",
516
+ "customer-space_customer-history_update-fields-count--label": "No. of changes",
517
+ "customer-space_customer-service-contact_route--text": "/contact/",
518
+ "customer-space_dashboard_loyalty_barcode-alt--text": "Bar-code",
519
+ "customer-space_dashboard_loyalty_card--label": "Carte Maison",
520
+ "customer-space_dashboard_loyalty_card--text": "Card",
521
+ "customer-space_dashboard_loyalty_conversion--text": "(€1.5 = 1 point)",
522
+ "customer-space_dashboard_loyalty_discount--text": "Still {points} more pts until you can benefit.",
523
+ "customer-space_dashboard_loyalty_discount--title": "Loyalty discount",
524
+ "customer-space_dashboard_loyalty_discount-item_progress-bar--text": "{points} before your next discount",
525
+ "customer-space_dashboard_loyalty_discount-item_validity--title": "Validity {duration}",
526
+ "customer-space_dashboard_loyalty_discount-item_validity-duration--text": "Valid until {duration}",
527
+ "customer-space_dashboard_loyalty_discount-item_validity-illimited--text": "Unlimited",
528
+ "customer-space_dashboard_loyalty_discount-item--title": "Discount {label}",
529
+ "customer-space_dashboard_loyalty_discounts--label": "See my discounts",
530
+ "customer-space_dashboard_loyalty_display-barcode--label": "Display the barcode",
531
+ "customer-space_dashboard_loyalty_download--label": "Download my card",
532
+ "customer-space_dashboard_loyalty_house-card_download--buton": "Download my card",
533
+ "customer-space_dashboard_loyalty_house-card--badge": "Badge {label}",
534
+ "customer-space_dashboard_loyalty_house-card-expiration--label": "Exp:",
535
+ "customer-space_dashboard_loyalty_house-card-points--label": "points:",
536
+ "customer-space_dashboard_loyalty_house-pass_download--buton": "Download my Pass'Maison",
537
+ "customer-space_dashboard_loyalty_house-pass--text": "When paying in-store, present your Pass'Maison ID to update your purchase history and get a 12-month receipt-free goods return.",
538
+ "customer-space_dashboard_loyalty_house-pass--title": "Pass'Maison",
539
+ "customer-space_dashboard_loyalty_loyalty-free--button": "Sign up for the programme",
540
+ "customer-space_dashboard_loyalty_loyalty-free--label": "Free of charge",
541
+ "customer-space_dashboard_loyalty_more-advantages--title": "More advantages with…",
542
+ "customer-space_dashboard_loyalty_my-loyalty--title": "My loyalty",
543
+ "customer-space_dashboard_loyalty_points--text": "{points} pts",
544
+ "customer-space_dashboard_loyalty--title": " {duration}",
545
+ "customer-space_dashboard_loyalty-adhesion-date--text": "Since: ",
546
+ "customer-space_dashboard_loyalty-advantage-card-additional-discounts-description": "Additional discounts for your projects and house moves.",
547
+ "customer-space_dashboard_loyalty-advantage-card-additional-discounts-title": "Home Pack",
548
+ "customer-space_dashboard_loyalty-advantage-card-craftsman-description": "A craftsman will come to you free of charge to check the feasibility of the project",
549
+ "customer-space_dashboard_loyalty-advantage-card-craftsman-title": "Free Technical Surveys",
550
+ "customer-space_dashboard_loyalty-advantage-card-for-free-with-your-partner-description": "Enjoy it for free with your partner",
551
+ "customer-space_dashboard_loyalty-advantage-card-for-free-with-your-partner-title": "In-store DIY courses",
552
+ "customer-space_dashboard_loyalty-advantage-card-leroy-merlin-products-description": "Enjoy exclusive prices on 200 Leroy Merlin products!",
553
+ "customer-space_dashboard_loyalty-advantage-card-leroy-merlin-products-title": "200 products at preferential prices",
554
+ "customer-space_dashboard_loyalty-advantage-card-subtitle": "Get discounts and advantages for all our employees",
555
+ "customer-space_dashboard_loyalty-advantage-card-ten-percent-discount-description": " An additional 10% discount on eligible products.",
556
+ "customer-space_dashboard_loyalty-advantage-card-ten-percent-discount-title": "Emergency Pack",
557
+ "customer-space_dashboard_loyalty-advantage-card-title": "… And that's not all",
558
+ "customer-space_dashboard_loyalty-card-1-year": "1 year",
559
+ "customer-space_dashboard_loyalty-card-3-years": "3 years",
560
+ "customer-space_dashboard_loyalty-card-collaborator": "Employee",
561
+ "customer-space_dashboard_loyalty-card-funding-collaborator": "Financing Employee",
562
+ "customer-space_dashboard_loyalty-card-funding-collaborator-1-year": "Financing Employee 1 year",
563
+ "customer-space_dashboard_loyalty-card-funding-collaborator-3-years": "Financing Employee 3 years",
564
+ "customer-space_dashboard_loyalty-card-modal_download-link--label": "Download my Carte Maison",
565
+ "customer-space_dashboard_loyalty-card-modal--title": "My Carte Maison",
566
+ "customer-space_dashboard_loyalty-card-passion": "passion",
567
+ "customer-space_dashboard_loyalty-collaborator-expiration-date--text": "Employee",
568
+ "customer-space_dashboard_loyalty-employee-advantages": "Find all your employee advantages on LM & Me",
569
+ "customer-space_dashboard_loyalty-employee-advantages-label-link": "My employee benefits! >",
570
+ "customer-space_dashboard_loyalty-enroll--button": "Sign up for the Carte Maison",
571
+ "customer-space_dashboard_loyalty-expiration-date--text": "Exp: ",
572
+ "customer-space_dashboard_loyalty-lam--button": "Loyalty program after-sales",
573
+ "customer-space_dashboard_loyalty-notification_expired--text": "Your advantages are blocked. If you sign up again before {readhesionDate}, you will be able to continue to benefit.",
574
+ "customer-space_dashboard_loyalty-notification_expired--title": "Your Carte Maison has expired",
575
+ "customer-space_dashboard_loyalty-notification_link--label": "Join again",
576
+ "customer-space_dashboard_loyalty-notification_readherable--text": "Re-register by {readhesionDate} to keep your discounts and advantages.",
577
+ "customer-space_dashboard_loyalty-notification_readherable--title": "Your Carte Maison expires soon",
578
+ "customer-space_dashboard_loyalty-pass-maison_download-link--label": "Download my Pass'Maison",
579
+ "customer-space_dashboard_loyalty-pass-maison_exchange-benefit--text": "When paying in store, present your Pass'Maison ID to update your purchase history and {strong}",
580
+ "customer-space_dashboard_loyalty-pass-maison_exchange-benefit-period--text": "take advantage of a 12-month receipt-free goods return.",
581
+ "customer-space_dashboard_loyalty-pass-maison-modal_download-link--label": "Register my Pass'Maison",
582
+ "customer-space_dashboard_loyalty-pass-maison-modal--title": "My Pass'Maison",
583
+ "customer-space_dashboard_loyalty-re-enroll--button": "Sign up again for the Carte Maison",
584
+ "customer-space_dashboard_no-loyalty_benefit-exchange--text": "Goods return {strong}",
585
+ "customer-space_dashboard_no-loyalty_benefit-exchange-strong--text": "12 months receipt-free",
586
+ "customer-space_dashboard_no-loyalty_benefit-fidelity--text": "A loyalty discount of {strong} (€1.5 = 1 point)",
587
+ "customer-space_dashboard_no-loyalty_benefit-fidelity-strong--text": "10% for every 1000 points",
588
+ "customer-space_dashboard_no-loyalty_benefit-welcome--text": "A discount of {strong}",
589
+ "customer-space_dashboard_no-loyalty_benefit-welcome-strong--text": "5% welcome bonus",
590
+ "customer-space_dashboard_no-loyalty_button--label": "Sign up for the Carte Maison",
591
+ "customer-space_dashboard_no-loyalty_card--text": "Card",
592
+ "customer-space_dashboard_no-loyalty_card-pass-maison--text": "Pass Maison",
593
+ "customer-space_dashboard_no-loyalty--title": "The Maison {card}",
594
+ "customer-space_dashboard_route--title": "My Account Home",
595
+ "customer-space_dashboard-actions--title": "Toolbox",
596
+ "customer-space_dashboard-after-sales-funding--title": "After-sales service",
597
+ "customer-space_dashboard-box_community_access-community--button": "Go to the community",
598
+ "customer-space_dashboard-box_community_community--title": "Community",
599
+ "customer-space_dashboard-box_community_my-profile": "My Community profile",
600
+ "customer-space_dashboard-box_community_publish": "Publish on the community",
601
+ "customer-space_dashboard-box_community_settings": "Community settings",
602
+ "customer-space_dashboard-box_faq__faq--button": "Go to the FAQ",
603
+ "customer-space_dashboard-box_faq__faq--description": "Any questions? Check out our FAQs now to find your answer.",
604
+ "customer-space_dashboard-box_faq__faq--title": "Any questions? We have the answer.",
605
+ "customer-space_dashboard-box_transform-points--button": "Redeem my points",
606
+ "customer-space_dashboard-box_transform-points--description": "Use your points to get loyalty discounts on your purchases",
607
+ "customer-space_dashboard-box_transform-points--text": "{points} points",
608
+ "customer-space_dashboard-box_transform-points--text (Copy)": "{points} points",
609
+ "customer-space_dashboard-funding--title": "Oney",
610
+ "customer-space_dashboard-header_client-number--text": "Customer no.: {number}",
611
+ "customer-space_dashboard-header_logout--label": "Log out",
612
+ "customer-space_dashboard-header_logout--text": "Log me out",
613
+ "customer-space_dashboard-header_logout-aria-label--text": "Log me out of the customer area and return to the home page",
614
+ "customer-space_dashboard-header_welcome--text": "Hello {firstName}",
615
+ "customer-space_dashboard-links_account-management--label": "Account management",
616
+ "customer-space_dashboard-links_account-settings_attach-customer--label": "Link the account",
617
+ "customer-space_dashboard-links_account-settings_block-account--label": "Block the account",
618
+ "customer-space_dashboard-links_account-settings_block-account-modal_confirm--button": "Yes, block the space",
619
+ "customer-space_dashboard-links_account-settings_block-account-modal--description": "You are about to block the customer space {index}, are you sure?",
620
+ "customer-space_dashboard-links_account-settings_block-account-modal-sub--title": "Block the customer area?",
621
+ "customer-space_dashboard-links_account-settings_customer-information--label": "Technical information",
622
+ "customer-space_dashboard-links_account-settings_customer-information-modal_cancel--button": "Close",
623
+ "customer-space_dashboard-links_account-settings_customer-information-modal-sub--title": "Technical information for the space",
624
+ "customer-space_dashboard-links_account-settings_delete-account--label": "Delete the account",
625
+ "customer-space_dashboard-links_account-settings_delete-account-modal_confirm--button": "Delete",
626
+ "customer-space_dashboard-links_account-settings_delete-account-modal--bold-sub--description": "Good to know: ",
627
+ "customer-space_dashboard-links_account-settings_delete-account-modal--description": "Are you sure you want to delete the following web account?",
628
+ "customer-space_dashboard-links_account-settings_delete-account-modal-sub--description": "The customer in customer management still exists.",
629
+ "customer-space_dashboard-links_account-settings_delete-account-modal-sub--title": "Delete the account",
630
+ "customer-space_dashboard-links_account-settings_resend-activation-mail--label": "Resend activation email",
631
+ "customer-space_dashboard-links_account-settings_resend-activation-mail-modal_cancel--button": "No, cancel",
632
+ "customer-space_dashboard-links_account-settings_resend-activation-mail-modal_cancel-v2--button": "Cancel",
633
+ "customer-space_dashboard-links_account-settings_resend-activation-mail-modal_confirm--button": "Yes, send the email",
634
+ "customer-space_dashboard-links_account-settings_resend-activation-mail-modal--description": "Would you like to send the activation email?",
635
+ "customer-space_dashboard-links_account-settings_resend-activation-mail-modal--title": "Customer area settings",
636
+ "customer-space_dashboard-links_account-settings_resend-activation-mail-modal-sub--title": "Send activation email",
637
+ "customer-space_dashboard-links_account-settings_reset-password--index": "resetPassword",
638
+ "customer-space_dashboard-links_account-settings_reset-password--label": "Reset password",
639
+ "customer-space_dashboard-links_account-settings_reset-password-modal--description": "Are you sure you want to reset the password?",
640
+ "customer-space_dashboard-links_account-settings_reset-password-modal-sub--description": "A reset email will be sent to",
641
+ "customer-space_dashboard-links_account-settings_reset-password-modal-sub--title": "Reset password?",
642
+ "customer-space_dashboard-links_account-settings_reset-password-modal-submit--button": "Reset password",
643
+ "customer-space_dashboard-links_account-settings_unblock-account--label": "Unlock the account",
644
+ "customer-space_dashboard-links_account-settings_unblock-account-modal_confirm--button": "Yes, unlock the space",
645
+ "customer-space_dashboard-links_account-settings_unblock-account-modal--description": "You are about to unlock the customer space {index}; are you sure?",
646
+ "customer-space_dashboard-links_account-settings_unblock-account-modal-sub--title": "Unlock the customer area?",
647
+ "customer-space_dashboard-links_account-settings--title": "Web account",
648
+ "customer-space_dashboard-links_addresses--label": "Addresses",
649
+ "customer-space_dashboard-links_after-sales--label": "After-sales follow-up",
650
+ "customer-space_dashboard-links_build-follow--label": "Installation follow-up",
651
+ "customer-space_dashboard-links_communication--label": "Communication preferences",
652
+ "customer-space_dashboard-links_community": "Community",
653
+ "customer-space_dashboard-links_community_communiy-profile--label": "Il mio profilo Community",
654
+ "customer-space_dashboard-links_community_make-request--label": "Ask a question",
655
+ "customer-space_dashboard-links_community_mission--label": "Complete the mission",
656
+ "customer-space_dashboard-links_community_profile--label": "My Community profile",
657
+ "customer-space_dashboard-links_community_share-picture--label": "Share a photo",
658
+ "customer-space_dashboard-links_community--create-community-profile": "Create your community profile for:",
659
+ "customer-space_dashboard-links_community--label": "Go to the community",
660
+ "customer-space_dashboard-links_community--title": "My community",
661
+ "customer-space_dashboard-links_community-ask-question": "Ask your questions",
662
+ "customer-space_dashboard-links_community-interact": "Interact with the community",
663
+ "customer-space_dashboard-links_community-leave-comment": "Leave product reviews",
664
+ "customer-space_dashboard-links_community-missions": "Carry out missions",
665
+ "customer-space_dashboard-links_coupon--label": "My discounts",
666
+ "customer-space_dashboard-links_estimates--label": "Quote",
667
+ "customer-space_dashboard-links_follow--title": "Follow-up",
668
+ "customer-space_dashboard-links_kazaplan--label": "Kazaplan",
669
+ "customer-space_dashboard-links_loyalty--label": "Loyalty",
670
+ "customer-space_dashboard-links_loyalty--title": "My loyalty",
671
+ "customer-space_dashboard-links_missions--label": "Go to my missions",
672
+ "customer-space_dashboard-links_most-viewed_navigation--title": "My purchases menu",
673
+ "customer-space_dashboard-links_most-viewed--title": "My purchases",
674
+ "customer-space_dashboard-links_order-details--label": "Order tracking",
675
+ "customer-space_dashboard-links_payment--label": "Bank cards",
676
+ "customer-space_dashboard-links_preferences--label": "My preferences",
677
+ "customer-space_dashboard-links_profile--label": "Personal information",
678
+ "customer-space_dashboard-links_profile--title": "My profile",
679
+ "customer-space_dashboard-links_profile-settings--label": "My profile settings",
680
+ "customer-space_dashboard-links_project--title": "Project",
681
+ "customer-space_dashboard-links_projects--label": "Projects",
682
+ "customer-space_dashboard-links_publish--label": "Publish a project",
683
+ "customer-space_dashboard-links_publish-gallery--label": "Publish in the gallery",
684
+ "customer-space_dashboard-links_purchase-history--label": "Purchasing history",
685
+ "customer-space_dashboard-links_question--label": "Ask a question",
686
+ "customer-space_dashboard-links_receipts--label": "Purchasing history",
687
+ "customer-space_dashboard-links_shopping-lists--label": "Shopping lists",
688
+ "customer-space_dashboard-links_simulations--label": "Simulations and costing",
689
+ "customer-space_dashboard-links_targeted-offers--label": "My targeted offers",
690
+ "customer-space_dashboard-links--title": "Main categories",
691
+ "customer-space_dashboard-loyalty-config__loyalty-enroll-button": "Sign up for the loyalty programme",
692
+ "customer-space_dashboard-loyalty-config__newly-moved-discount": "Recent mover advantages",
693
+ "customer-space_dashboard-loyalty-config__priority-technical-assistance": "Priority technical support",
694
+ "customer-space_dashboard-loyalty-config__return-12-months-without-ticket": "12-month receipt-free return",
695
+ "customer-space_dashboard-loyalty-config__whole-year-discount": "Discounts all year round",
696
+ "customer-space_dashboard-loyalty-config--title": "No loyalty card yet?",
697
+ "customer-space_dashboard-loyalty-config--whole-year-discount": "Discounts all year round",
698
+ "customer-space_dashboard-oney-funding--button": "Finance a project with Oney",
699
+ "customer-space_dashboard-oney-funding--title": "My funding",
700
+ "customer-space_dashboard-page_a11y_h1--text": "Welcome {firstName} {lastName}",
701
+ "customer-space_dashboard-subscribe-credit-card-funding--title": "Card opening",
702
+ "customer-space_dashboard-subscribe-credit-funding--title": "Credit opening",
703
+ "customer-space_discount-list_route--title": "My discounts",
704
+ "customer-space_display-more_button--label": "View more",
705
+ "customer-space_display-more_on--description": "of",
706
+ "customer-space_edit-address_notification_invalid-address--description": "Your postal address is incomplete or contains an error. Once generated, your invoice can no longer be modified.",
707
+ "customer-space_error_invalid-email--text": "\"{email}\" is not a valid email address, please check your input. Expected format: john.smith{'@'}mail.com",
708
+ "customer-space_estimate-detail_created-date--label": "Created on {creationDate}",
709
+ "customer-space_estimate-detail_estimate--title": "Quote No. {number}",
710
+ "customer-space_estimate-detail_notification_expired--description": "Your quote is still valid but the amount is no longer guaranteed. Ask your store advisor for an update.",
711
+ "customer-space_estimate-detail_notification_expired-not-in-progress--description": "Your quote has expired.",
712
+ "customer-space_estimate-detail_notification_expired-soon--description": "Your quote expires in {daysBeforeExpiration} days, after which time the amount is no longer guaranteed.",
713
+ "customer-space_estimate-detail_products-number--label": "No items | 1 item | {n} items",
714
+ "customer-space_estimate-detail_products-part_products-number--label": "Details of your products ({productsNumber})",
715
+ "customer-space_estimate-detail_to-complete-project_button--label": "I’m on my way",
716
+ "customer-space_estimate-detail_to-complete-project--description": "Visit your local Leroy Merlin store.",
717
+ "customer-space_estimate-detail_to-complete-project--title": "Complete your project!",
718
+ "customer-space_estimate-detail_validity-date--label": "Valid until {validityDate}",
719
+ "customer-space_estimate-list_route--title": "My quotes",
720
+ "customer-space_estimates_tags-list_accepted--label": "Accepted",
721
+ "customer-space_estimates_tags-list_all--label": "All",
722
+ "customer-space_estimates_tags-list_archived--label": "Archived",
723
+ "customer-space_estimates_tags-list_validity-in-progess--label": "Valid",
724
+ "customer-space_estimates-list_display-more_on_prefix--description": "quote",
725
+ "customer-space_estimates-list_estimate-card_date--text": "Created on {estimateDate}",
726
+ "customer-space_estimates-list_estimate-card_link--text": "Quote number {estimateNumber} dated {estimateDate}",
727
+ "customer-space_estimates-list_estimate-card_store-prefix--label": "{storeName} store",
728
+ "customer-space_estimates-list_estimate-card_validity-date--text": "Valid until {estimateValidityDate}",
729
+ "customer-space_estimates-list_estimate-card--title": "Quote no. {estimateNumber}",
730
+ "customer-space_estimates-list_none-estimate_button--label": "Visit the store",
731
+ "customer-space_estimates-list_none-estimate--description": "Find your valid, accepted and archived quotes",
732
+ "customer-space_estimates-list_none-estimate--title": "You do not have any saved quotes.",
733
+ "customer-space_estimates-list_notification_validity-information": "Find your in-store quotes; they are valid for 1 month, so don't delay!",
734
+ "customer-space_estimates-list_status_notification_archived_expired--description": "Your quote has expired.",
735
+ "customer-space_estimates-list_status_notification_archived_not-expired--description": "Your quote expires in {daysBeforeExpiration} days.",
736
+ "customer-space_estimates-list_status_notification_in-progress_expired--description": "Your quote is still valid but the amount is no longer guaranteed.",
737
+ "customer-space_estimates-list_status_notification_in-progress_not_expired--description": "Your quote expires in {daysBeforeExpiration} days, after which time the amount is no longer guaranteed.",
738
+ "customer-space_estimates-list_table-date--label": "Creation Date",
739
+ "customer-space_estimates-list_table-number--label": "Estimate Number",
740
+ "customer-space_estimates-list_table-price--label": "Price",
741
+ "customer-space_estimates-list--title": "My quotes",
742
+ "customer-space_feedback_option_no--label": "No thanks",
743
+ "customer-space_feedback_option_yes--label": "Yes, with pleasure",
744
+ "customer-space_form-field--optional": "optional",
745
+ "customer-space_generate-invoice_toaster--text": "Your invoice will be available in a few moments in your customer area.",
746
+ "customer-space_generate-invoice_toaster--title": "Generate invoice",
747
+ "customer-space_has-account_notification_success--title": "Your account has been found",
748
+ "customer-space_has-account_validation_already-exists--title": "This customer account already exists: please login with your login email",
749
+ "customer-space_has-account_validation_not-exists--title": "The account you are looking for does not exist.",
750
+ "customer-space_heading-title_previous-step_prefix--label": "Back to step",
751
+ "customer-space_history-points-page_no-result--text": "No history",
752
+ "customer-space_history-points-page_table-header-action--label": "Action",
753
+ "customer-space_history-points-page_table-header-date--label": "Date",
754
+ "customer-space_history-points-page_table-header-hour--label": "Hour",
755
+ "customer-space_history-points-page_table-header-points--label": "Points",
756
+ "customer-space_history-points-page_table-header-store--label": "Store",
757
+ "customer-space_history-points-page_table-paging-label-items--text": "Rows per page",
758
+ "customer-space_history-points-page_table-paging-text-link--text": "of",
759
+ "customer-space_history-points-page--route": "points-history",
760
+ "customer-space_history-points-page--title": "Loyalty points history",
761
+ "customer-space_history-visited-customers--title": "Last customers viewed",
762
+ "customer-space_incident-information_collaborator--firstname": "First name",
763
+ "customer-space_incident-information_collaborator--label": "Support information",
764
+ "customer-space_incident-information_collaborator--lastname": "Surname",
765
+ "customer-space_incident-information_collaborator--ldap": "LDAP",
766
+ "customer-space_incident-information_collaborator--login": "Login",
767
+ "customer-space_incident-information_collaborator--page-url": "Page path",
768
+ "customer-space_incident-information_collaborator--roles": "Roles",
769
+ "customer-space_incident-information_collaborator--title": "Support information",
770
+ "customer-space_incident-information_collaborator-close--button": "Close",
771
+ "customer-space_incident-information_collaborator-modal--title": "Incident report information",
772
+ "customer-space_information-box_show-detail_link--label": "See details",
773
+ "customer-space_ipn-container_back-button--aria-label": "Back to the previous page",
774
+ "customer-space_ipn-container_back-button--label": "Return",
775
+ "customer-space_kazaplan_aria-label--text": "Delete the plan",
776
+ "customer-space_kazaplan_description--text": "Find your 2D/3D plans made with Kazaplan below. Design your future projects with our tools:",
777
+ "customer-space_kazaplan_header_button-create--title": "Create a 2D/3D plan",
778
+ "customer-space_kazaplan_layer_delete_btn-cancel--text": "Cancel",
779
+ "customer-space_kazaplan_layer_delete_btn-valid--text": "Confirm",
780
+ "customer-space_kazaplan_layer_delete_button-cancel--text": "Cancel",
781
+ "customer-space_kazaplan_layer_delete_button-valid--text": "Confirm",
782
+ "customer-space_kazaplan_layer_delete_description--text": "Do you really want to delete this plan?",
783
+ "customer-space_kazaplan_new-plan--btn": "Create a new 2D/3D plan",
784
+ "customer-space_kazaplan_routes_authentication--title": "Kazaplan authentication",
785
+ "customer-space_kazaplan_routes_landing--title": "Kazaplan Home",
786
+ "customer-space_kazaplan_routes_list--title": "My Kazaplan plans",
787
+ "customer-space_kazaplan_routes_plan--title": "My Kazaplan plan",
788
+ "customer-space_kazaplan--header": "Design and retrieve your 2D/3D plans to facilitate your projects and help you plan for the future.",
789
+ "customer-space_kazaplan--header--button--title": "Create a 2D/3D plan",
790
+ "customer-space_kazaplan--label": "Kazaplan",
791
+ "customer-space_kazaplan--title": "Kazaplan (2D/3D plans)",
792
+ "customer-space_kazaplan-empty_description--text": "Create your house in 2D/3D and design your future projects with the Kazaplan tool.",
793
+ "customer-space_kazaplan-empty_img--text": "empty list",
794
+ "customer-space_kazaplan-empty_new-plan--btn": "Create a 2D/3D plan",
795
+ "customer-space_kazaplan-empty_sub-description--text": "You do not have any 2D/3D plans saved at the moment.",
796
+ "customer-space_kazaplan-landing_build-description": "Draw a 2D plan of your house. Place and move your walls and partitions. Add your floors, doors and windows. Then explore the 3-dimensional rendering of your house.",
797
+ "customer-space_kazaplan-landing_build-title": "Build your home",
798
+ "customer-space_kazaplan-landing_decorate-description": "Paint, fabrics, parquet, metals, etc. A wide range of textures to give free rein to your imagination and personalise each room: floors, walls, furniture, objects.",
799
+ "customer-space_kazaplan-landing_decorate-title": "Decorate your home",
800
+ "customer-space_kazaplan-landing_description--text": "Create your virtual home in 3D and design your future projects",
801
+ "customer-space_kazaplan-landing_furnish-description": "Choose your furniture from a wide range of furniture and accessories.",
802
+ "customer-space_kazaplan-landing_furnish-title": "Furnish your home",
803
+ "customer-space_kazaplan-landing_new-plan--btn": "Start my 3D plan",
804
+ "customer-space_kazaplan-landing_open--link": "Open a saved 3D plan",
805
+ "customer-space_kazaplan-landing_sample1--text": "A timber frame house",
806
+ "customer-space_kazaplan-landing_sample2--text": "A 3m² bathroom",
807
+ "customer-space_kazaplan-landing_sample3--text": "A 3-room flat",
808
+ "customer-space_kazaplan-landing_sub-description--text": "Get inspired by exploring the 3D plans of other inhabitants",
809
+ "customer-space_kazaplan-landing--subtitle": "Gallery",
810
+ "customer-space_kazaplan-landing--title": "Kazaplan 3D house plan",
811
+ "customer-space_layer_close-button--title": "Close",
812
+ "customer-space_layer-addresses_address-part--title": "Address",
813
+ "customer-space_layer-addresses_complementary-information-part_optional-part--title": "- Optional",
814
+ "customer-space_layer-addresses_complementary-information-part--title": "Further information",
815
+ "customer-space_layout_banner_collaborator_linkHome--text": "Customer portal",
816
+ "customer-space_layout_banner_collaborator_linkLogout--text": "Log me out ( {ldap} ) ",
817
+ "customer-space_layout_banner_go-to-previous-page--label": "Return",
818
+ "customer-space_layout_banner_userInfo--label": "You are logged in as a contributor to the following account:",
819
+ "customer-space_layout-header_customer-number--text": "My customer no.: {id}",
820
+ "customer-space_layout-header_log-out-link--label": "Log me out",
821
+ "customer-space_layout-header_search-link--label": "Back to search",
822
+ "customer-space_layout-header_welcome--text": "Hello {firstName} {lastName}",
823
+ "customer-space_loyalty_benefits--route": "loyalty/advantages",
824
+ "customer-space_loyalty_benefits-store--route": "loyalty/advantages/store",
825
+ "customer-space_loyalty_coowner-invitation--route": "discounts-invitation",
826
+ "customer-space_loyalty_discover-benefits_go-back--title": "Return",
827
+ "customer-space_loyalty_discover-benefits_go-to-login--label": "Log me in",
828
+ "customer-space_loyalty_discover-benefits_go-to-store-choice--label": "Choose my store",
829
+ "customer-space_loyalty_discover-benefits_or--label": "or",
830
+ "customer-space_loyalty_discover-benefits--title": "Explore your personalised loyalty advantages",
831
+ "customer-space_loyalty_enroll--route": "loyalty/membership",
832
+ "customer-space_loyalty_my-loyalty--route": "my-loyalty",
833
+ "customer-space_loyalty_my-loyalty-card--route": "my-carte-maison",
834
+ "customer-space_loyalty_my-program--route": "my-programme",
835
+ "customer-space_loyalty_points-conversion--text": "{amount} pts",
836
+ "customer-space_loyalty_routes_adhesion--title": "Sign up for the Carte Maison",
837
+ "customer-space_loyalty_routes_coowner-invitation--title": "My funding",
838
+ "customer-space_loyalty_routes_discover--title": "Explore your advantages",
839
+ "customer-space_loyalty_routes_loyalty-card--title": "The Carte Maison",
840
+ "customer-space_loyalty_routes_loyalty-information--title": "My loyalty",
841
+ "customer-space_loyalty_routes_store-choice--title": "Choose your store",
842
+ "customer-space_loyalty_transform-points__customizable-layer--reward-description--information": "To be valid at the time of online payment, your discount must not exceed the amount of your purchases.",
843
+ "customer-space_loyalty_transform-points__customizable-layer--reward-description--select-label": "Select the number of points to be redeemed",
844
+ "customer-space_loyalty_transform-points__customizable-layer--reward-description--select-placeholder": "Choose an option",
845
+ "customer-space_loyalty_transform-points__customizable-layer--reward-description--title": "My personal discount",
846
+ "customer-space_loyalty_transform-points__layer--reward-description--text": "Get €{amount} off for a minimum purchase of €{amount}. ",
847
+ "customer-space_loyalty_transform-points__layer--reward-description--title": "My loyalty discount",
848
+ "customer-space_loyalty_transform-points__layer--submit-button--title": "Activate my €{amount} discount",
849
+ "customer-space_loyalty_transform-points__layer--terms-of-use--activation-text": "After activation, your discount will be valid until {date}",
850
+ "customer-space_loyalty_transform-points__layer--terms-of-use--balance-points-text": "{points} points",
851
+ "customer-space_loyalty_transform-points__layer--terms-of-use--balance-text": "Points balance after activation:",
852
+ "customer-space_loyalty_transform-points__layer--terms-of-use--text": "Your discount will be valid for 1 month after activation. You can add it to your shopping basket at checkout.",
853
+ "customer-space_loyalty_transform-points__layer--terms-of-use--title": "Terms and conditions of use",
854
+ "customer-space_loyalty_transform-points__layer--title": "Redeem my points",
855
+ "customer-space_loyalty_transform-points--comment": "Treat yourself",
856
+ "customer-space_loyalty_transform-points--custom-reward--button": "Personalise my discount",
857
+ "customer-space_loyalty_transform-points--custom-reward--title": "Personalised discount",
858
+ "customer-space_loyalty_transform-points--fixed-reward--button": "Activate my discount",
859
+ "customer-space_loyalty_transform-points--fixed-reward--description": "loyalty discount",
860
+ "customer-space_loyalty_transform-points--rewards-sub-comment": "Redeem your loyalty points and get discounts on your online or in-store purchases.",
861
+ "customer-space_loyalty_transform-points--route": "loyalty/redeem-points",
862
+ "customer-space_loyalty_transform-points--sub-comment": "Personalise your discount or select the discounts you wish to activate.",
863
+ "customer-space_loyalty_transform-points--title": "Redeem my points for discounts and gifts",
864
+ "customer-space_loyalty_transform-points-customizable__layer--terms-of-use--activation-text": "After activation, your discount of {amount} will be valid until {date}",
865
+ "customer-space_loyalty-adherent-card-page_notification_adherent-error--text": "We have not been able to finalise your sign-up for the programme. Please try again later or contact customer service.",
866
+ "customer-space_loyalty-adherent-card-page_notification_adherent-error--title": "There was a problem with your sign-up!",
867
+ "customer-space_loyalty-adherent-card-page_notification_adherent-success--text": "Collect points and get all your advantages now.",
868
+ "customer-space_loyalty-adherent-card-page_notification_adherent-success--title": "Thank you for signing up for the loyalty programme!",
869
+ "customer-space_loyalty-card-advantages_card--title": "My {card} Maison {duration}",
870
+ "customer-space_loyalty-card-advantages_card-advantage-1500-discount": "10% discount for every €1,500",
871
+ "customer-space_loyalty-card-advantages_card-advantage-assistance": "Priority Technical Assistance",
872
+ "customer-space_loyalty-card-advantages_card-advantage-new-move-in": "Recent Mover advantages",
873
+ "customer-space_loyalty-card-advantages_card-advantage-no-engagement": "No commitment",
874
+ "customer-space_loyalty-card-advantages_card-advantage-return": "12-month receipt-free returns",
875
+ "customer-space_loyalty-card-advantages_card-advantage-welcome-discount": "5% welcome discount*",
876
+ "customer-space_loyalty-card-advantages_card-duration--title": "1 year",
877
+ "customer-space_loyalty-card-advantages_card-enroll--button": "Sign up for the Carte Maison",
878
+ "customer-space_loyalty-card-advantages_card-first-black-word--title": "The",
879
+ "customer-space_loyalty-card-advantages_card-green-word--title": "Card",
880
+ "customer-space_loyalty-card-advantages_card-link": "See details of advantages",
881
+ "customer-space_loyalty-card-advantages_card-my-card--button": "My Carte Maison",
882
+ "customer-space_loyalty-card-advantages_card-price": "€9",
883
+ "customer-space_loyalty-card-advantages_card-price-description": "Pay with your next purchase to activate it",
884
+ "customer-space_loyalty-card-advantages_card-reenroll--button": "Sign up again for the Carte Maison",
885
+ "customer-space_loyalty-card-advantages_card-second-black-word--title": "Maison",
886
+ "customer-space_loyalty-card-advantages--title": "Claim 1 year of advantages",
887
+ "customer-space_loyalty-card-app_advantage-loyalty-points": "Managing your Carte Maison points",
888
+ "customer-space_loyalty-card-app_advantage-orders": "Tracking your orders in the store and on the web",
889
+ "customer-space_loyalty-card-app_advantage-tickets": "Your loyalty discounts, your receipts, your invoices",
890
+ "customer-space_loyalty-card-app_global_advantage-loyalty-points": "Managing your points",
891
+ "customer-space_loyalty-card-app_global--discription": "Access your loyalty card and your advantages everywhere, all the time!",
892
+ "customer-space_loyalty-card-app_global--title": "Your loyalty card on the Mobile Application",
893
+ "customer-space_loyalty-card-app_image-alt": "Mobile app",
894
+ "customer-space_loyalty-card-app--discription": "Find your Carte Maison and your advantages everywhere, all the time!",
895
+ "customer-space_loyalty-card-app--link": "Explore the application",
896
+ "customer-space_loyalty-card-app--title": "Your Carte Maison on the Mobile Application",
897
+ "customer-space_loyalty-card-everywhere_global_store-description": "To combine your advantages, present your loyalty card at each purchase. You can find it in your account, under the “my loyalty” heading.",
898
+ "customer-space_loyalty-card-everywhere_global--title": "My loyalty card everywhere, all the time!",
899
+ "customer-space_loyalty-card-everywhere_internet-description": "Log in when you shop at leroymerlin.co.uk to benefit from your discounts and continue to accumulate points.",
900
+ "customer-space_loyalty-card-everywhere_internet-subtitle": "On the Internet and the mobile application",
901
+ "customer-space_loyalty-card-everywhere_store-description": "To combine your advantages, present your Carte Maison at every purchase. You can find it in your account, under the “My Carte Maison” heading.",
902
+ "customer-space_loyalty-card-everywhere_store-subtitle": "In store",
903
+ "customer-space_loyalty-card-everywhere--title": "My Carte Maison everywhere, all the time!",
904
+ "customer-space_loyalty-card-funding_global--title": "Explore the financing card",
905
+ "customer-space_loyalty-card-funding--description": "I can buy the product that suits my needs.",
906
+ "customer-space_loyalty-card-funding--title": "Find out more about the finance Carte Maison",
907
+ "customer-space_loyalty-card-header_first-black-word--title": "My",
908
+ "customer-space_loyalty-card-header_green-word--title": "Pass’",
909
+ "customer-space_loyalty-card-header_second-black-word--title": "Maison",
910
+ "customer-space_loyalty-card-header--button": "Download my Pass'Maison",
911
+ "customer-space_loyalty-card-header--description": "Present your Pass'Maison ID when making a purchase in store to update your purchase history and benefit from a 12-month receipt-free goods return.",
912
+ "customer-space_loyalty-card-owned--description": "Contact customer service to ask for a link.",
913
+ "customer-space_loyalty-card-owned--title": "I already have a Carte Maison",
914
+ "customer-space_loyalty-card-page_card-owned--title": "I am already a loyalty programme member",
915
+ "customer-space_loyalty-card-page--description": "Do you have any projects? Explore the advantages of loyalty.",
916
+ "customer-space_loyalty-card-page--title": "Explore the advantages of the Carte Maison",
917
+ "customer-space_loyalty-card-page-l&m--title": "Explore the advantages of the Leroy&moi programme",
918
+ "customer-space_loyalty-card-precision": "*Only on first membership",
919
+ "customer-space_loyalty-card-question_link": "View the FAQ",
920
+ "customer-space_loyalty-card-question--description": "Lots of solutions! Check out our FAQs now to find your answer.",
921
+ "customer-space_loyalty-card-question--title": "Any questions?",
922
+ "customer-space_loyalty-card-tou": "For more information, see the Carte Maison {conditions}",
923
+ "customer-space_loyalty-card-tou_link": " General Terms and Conditions of Use ",
924
+ "customer-space_loyalty-card-tou_sentence-end": " of the Carte Maison",
925
+ "customer-space_loyalty-card-tou_sentence-start": "For more information, see the ",
926
+ "customer-space_loyalty-cgu--label": "General terms and conditions of sale",
927
+ "customer-space_loyalty-enroll-page--title": "Sign up for the loyalty programme",
928
+ "customer-space_loyalty-page_complementaries-history-points--title": "Points history",
929
+ "customer-space_loyalty-page_complementaries-information_adherent-date--label": "Sign-up date",
930
+ "customer-space_loyalty-page_complementaries-information_co-owner--label": "Joint holder",
931
+ "customer-space_loyalty-page_complementaries-information_owner--label": "Cardholder",
932
+ "customer-space_loyalty-page_complementaries-information--title": "Further information",
933
+ "customer-space_loyalty-page_download-card--button": "Download my Carte Maison",
934
+ "customer-space_loyalty-page_loyalty-stop_confirm--text": "You have left the loyalty programme. A confirmation email has been sent to you.",
935
+ "customer-space_loyalty-page_loyalty-stop_confirm--title": "We have processed your request",
936
+ "customer-space_loyalty-page_loyalty-stop_error--text": "An error occurred when you cancelled your loyalty programme: please contact your store",
937
+ "customer-space_loyalty-page_loyalty-stop_error--title": "An error has occurred.",
938
+ "customer-space_loyalty-page_loyalty-stop--text": "This action will result in the loss of your loyalty points, advantages and discounts.",
939
+ "customer-space_loyalty-page_loyalty-stop--title": "Leave the loyalty programme",
940
+ "customer-space_loyalty-page_loyalty-stop-button--label": "Leave the programme",
941
+ "customer-space_loyalty-page_loyalty-stop-faq--label": "View the FAQ",
942
+ "customer-space_loyalty-page_loyalty-stop-faq--text": "Joint holder? Any questions?",
943
+ "customer-space_loyalty-page_loyalty-stop-modal--title": "Loyalty programme",
944
+ "customer-space_loyalty-page_loyalty-stop-modal-cancel--label": "Cancel",
945
+ "customer-space_loyalty-page_loyalty-stop-modal-confirm--label": "Yes, leave the loyalty programme and lose my points and advantages.",
946
+ "customer-space_loyalty-page_loyalty-stop-modal-housing-pass-confirm--label": "Yes, leave the loyalty programme.",
947
+ "customer-space_loyalty-page_loyalty-stop-modal-info--text": "When you leave the loyalty programme, you keep your Leroy Merlin account and your purchase history.",
948
+ "customer-space_loyalty-page_loyalty-stop-modal-subtitle--text": "Do you wish to leave the loyalty programme: {loyalty}?",
949
+ "customer-space_loyalty-page_loyalty-stop-modal-validate--label": "Confirm my choice",
950
+ "customer-space_loyalty-page_move-in_pdf--label": "Download my coupon",
951
+ "customer-space_loyalty-page_my-advantages__new--title": "Advantages",
952
+ "customer-space_loyalty-page_my-advantages_advantage-assistance--description": "Get priority access to technical support experts.",
953
+ "customer-space_loyalty-page_my-advantages_advantage-assistance--title": "Priority technical support",
954
+ "customer-space_loyalty-page_my-advantages_advantage-return--description": "We take back and refund your products up to 12 months after purchase, even without proof of purchase!",
955
+ "customer-space_loyalty-page_my-advantages_advantage-return--title": "12-month receipt-free returns",
956
+ "customer-space_loyalty-page_my-advantages_tou-link": " General Terms and Conditions of Use ",
957
+ "customer-space_loyalty-page_my-advantages_tou-sentence-end": "of the Carte Maison.",
958
+ "customer-space_loyalty-page_my-advantages_tou-sentence-start": "For more information, see the",
959
+ "customer-space_loyalty-page_my-advantages--title": "My advantages",
960
+ "customer-space_loyalty-page_my-discount__10%-collab-discount--label": "Permanent Employee discount",
961
+ "customer-space_loyalty-page_my-discount__10%-discount--label": "Carte Maison discount",
962
+ "customer-space_loyalty-page_my-discount__10%-move-in-offer--label": "Recent Mover",
963
+ "customer-space_loyalty-page_my-discount__10%-passion-discount--label": "Carte Maison Passion discount",
964
+ "customer-space_loyalty-page_my-discount__15%-collab-discount--label": "Carte Maison Employee discount",
965
+ "customer-space_loyalty-page_my-discount__collaborator-expired-date--text": "Validity: Unlimited",
966
+ "customer-space_loyalty-page_my-discount__expired-date--text": "End of validity on: ",
967
+ "customer-space_loyalty-page_my-discount__new--title": "Discounts",
968
+ "customer-space_loyalty-page_my-discount__welcome-discount--label": "Welcome discount",
969
+ "customer-space_loyalty-page_my-discount_show-less--button": "See fewer discounts",
970
+ "customer-space_loyalty-page_my-discount_show-more--button": "See all my discounts",
971
+ "customer-space_loyalty-page_my-discount_subtitle": "Loyalty discount",
972
+ "customer-space_loyalty-page_my-discount--description": "Still {missingPoints} more pts until you can benefit.",
973
+ "customer-space_loyalty-page_my-discount--legend": "1 pt = €1.5 spent",
974
+ "customer-space_loyalty-page_my-discount--title": "My discounts",
975
+ "customer-space_loyalty-page_new--title": "Loyalty",
976
+ "customer-space_loyalty-page_program--subtitle": "Explore the advantages of loyalty",
977
+ "customer-space_loyalty-page_reenroll--button": "Sign up again for the Carte Maison",
978
+ "customer-space_loyalty-page--title": "My loyalty",
979
+ "customer-space_loyalty-page-notification_link": "Sign up again for the Carte Maison",
980
+ "customer-space_loyalty-page-notification--description": "Your Carte Maison expires on {endDate}. Sign up again below to continue enjoying your advantages.",
981
+ "customer-space_loyalty-page-notification--title": "Your card will expire",
982
+ "customer-space_loyalty-page-notification-expired_link": "Sign up again for the Carte Maison",
983
+ "customer-space_loyalty-page-notification-expired--description": "If you sign up again before {endDate}, you can continue to benefit.",
984
+ "customer-space_loyalty-page-notification-expired--title": "Your Carte Maison has expired. Your advantages are blocked.",
985
+ "customer-space_loyalty-type_one-year-dematerialized--label": "1-year Carte Maison",
986
+ "customer-space_menu_account_account-management--label": "Account management",
987
+ "customer-space_menu_account_logout--label": "Log me out",
988
+ "customer-space_menu_account_loyalty--label": "My loyalty",
989
+ "customer-space_menu_category_account--label": "Account",
990
+ "customer-space_menu_category_follow--label": "Follow-up",
991
+ "customer-space_menu_category_purchase--label": "Purchasing",
992
+ "customer-space_menu_client-summary--label": "Customer Overview",
993
+ "customer-space_menu_consents--label": "My consents",
994
+ "customer-space_menu_coupons--label": "My discounts",
995
+ "customer-space_menu_courses--label": "My courses",
996
+ "customer-space_menu_customer-history--label": "Customer history",
997
+ "customer-space_menu_dashboard-link--label": "Dashboard",
998
+ "customer-space_menu_follow_estimates--label": "Quote",
999
+ "customer-space_menu_follow_projects-and-tools--label": "Projects and tools",
1000
+ "customer-space_menu_follow_sav--label": "After-sales service",
1001
+ "customer-space_menu_home--label": "Account home",
1002
+ "customer-space_menu_nav_aria-label--text": "Browsing on the customer portal",
1003
+ "customer-space_menu_preference--label": "My preferences",
1004
+ "customer-space_menu_profile_communication-link--label": "Communication preferences",
1005
+ "customer-space_menu_profile_cookies-link--label": "Cookie management",
1006
+ "customer-space_menu_profile_log-out-link--title": "Log out",
1007
+ "customer-space_menu_profile_loyalty-link--label": "Loyalty",
1008
+ "customer-space_menu_profile_personal-details_addresses-link--title": "Addresses",
1009
+ "customer-space_menu_profile_personal-details_contact-detail-link--title": "Contact details",
1010
+ "customer-space_menu_profile_personal-details--title": "Personal information",
1011
+ "customer-space_menu_profile--title": "My profile",
1012
+ "customer-space_menu_projects_conception_kazaplan-link--title": "Kazaplan",
1013
+ "customer-space_menu_projects_conception_simulation-link--title": "Simulations & costing",
1014
+ "customer-space_menu_projects_conception--title": "2D/3D designs",
1015
+ "customer-space_menu_projects_coupon--label": "My courses",
1016
+ "customer-space_menu_projects_projects-link--label": "My Projects",
1017
+ "customer-space_menu_projects_quotation-link--label": "Quote",
1018
+ "customer-space_menu_projects_shopping-list-link--title": "Shopping lists",
1019
+ "customer-space_menu_projects--title": "My projects",
1020
+ "customer-space_menu_purchase_after-sales-link--label": "After-sales follow-up",
1021
+ "customer-space_menu_purchase_build-follow-link--label": "Installation follow-up",
1022
+ "customer-space_menu_purchase_my-rewards--label": "My discounts",
1023
+ "customer-space_menu_purchase_orders-and-returns--label": "Orders and returns",
1024
+ "customer-space_menu_purchase_orders-link--label": "Order tracking",
1025
+ "customer-space_menu_purchase_purchase-list--label": "Shopping lists",
1026
+ "customer-space_menu_purchase_receipt--label": "Cash till receipts",
1027
+ "customer-space_menu_purchase_receipt-link--label": "Purchasing history",
1028
+ "customer-space_menu_purchase_tracking_return_orders-link--label": "Order tracking / Returns",
1029
+ "customer-space_menu_purchase--title": "My purchases",
1030
+ "customer-space_menu_route_collaborator--text": "/employee",
1031
+ "customer-space_menu_route_home--text": "/home",
1032
+ "customer-space_menu_shopping-list-link--title": "Shopping lists",
1033
+ "customer-space_menu_stop-paper-link--label": "Paperless",
1034
+ "customer-space_menu_technical-history--label": "Technical history",
1035
+ "customer-space_my-discount-layer_custom-discount_content-online--description": "When paying on leroymerlin.co.uk or on the app, add the following promo code:",
1036
+ "customer-space_my-discount-layer_custom-discount_content-store--description": "Identify yourself and present the following barcode at checkout",
1037
+ "customer-space_my-discount-layer_custom-discount_layer--title": "My personal discount",
1038
+ "customer-space_my-discount-layer_custom-discount_term-of-use": "Personalised discount offer, valid in Leroy Merlin stores in mainland France for the bathroom department only. Offer cannot be combined with other personalised discounts.",
1039
+ "customer-space_my-discount-layer_custom-discount--title": "How do I take advantage of my discount?",
1040
+ "customer-space_my-discount-layer_invalid-custom-discount_layer_select_checkout-error--option": "Payment error",
1041
+ "customer-space_my-discount-layer_invalid-custom-discount_layer_select_comercial-reason--option": "Business reason",
1042
+ "customer-space_my-discount-layer_invalid-custom-discount_layer_select_on-going-project--option": "Project in progress",
1043
+ "customer-space_my-discount-layer_invalid-custom-discount_layer_select_product-return--option": "Back to product",
1044
+ "customer-space_my-discount-layer_invalid-custom-discount_layer_select_technical-error--option": "Technical problem",
1045
+ "customer-space_my-discount-layer_invalid-custom-discount_layer_select--placeholder": "-- Choose an option --",
1046
+ "customer-space_my-discount-layer_invalid-custom-discount_layer--description": " This action will be irreversible. Are you sure you want to reactivate the discount?",
1047
+ "customer-space_my-discount-layer_invalid-custom-discount_layer--title": "My personal discount",
1048
+ "customer-space_my-discount-layer_invalid-custom-discount_select--label": "Select the reason",
1049
+ "customer-space_my-discount-layer_invalid-custom-discount--title": "Reactivate the discount",
1050
+ "customer-space_my-discount-layer_loyalty-discount_close-button--label": "Close",
1051
+ "customer-space_my-discount-layer_loyalty-discount_content-online--description": "When paying on leroymerlin.co.uk or on the app, select the discount you wish to use.",
1052
+ "customer-space_my-discount-layer_loyalty-discount_content-store--description": "Present your loyalty card at the checkout.",
1053
+ "customer-space_my-discount-layer_loyalty-discount_in-store--title": "In store",
1054
+ "customer-space_my-discount-layer_loyalty-discount_layer--title": "My loyalty discount",
1055
+ "customer-space_my-discount-layer_loyalty-discount_online--title": "On the Internet and the application",
1056
+ "customer-space_my-discount-layer_loyalty-discount_term-of-use--description": "Offer of 5% instant discount at the checkout, valid in Leroy Merlin stores in mainland France and on the leroymerlin.fr website. Offer cannot be combined with any other loyalty discount.",
1057
+ "customer-space_my-discount-layer_loyalty-discount_term-of-use--title": "Terms and conditions of use:",
1058
+ "customer-space_my-discount-layer_loyalty-discount--title": "How do I activate my discount?",
1059
+ "customer-space_my-discounts-page_custom-discount_button-label": "Take advantage of my discount",
1060
+ "customer-space_my-discounts-page_custom-discount_invalid-status_button-label": "Invalid",
1061
+ "customer-space_my-discounts-page_custom-discount_valid-status_button-label": "Available",
1062
+ "customer-space_my-discounts-page_custom-discount_validity-date--text": "until {endDate}",
1063
+ "customer-space_my-discounts-page_custom-discount_validity-store--text": "Only valid in store,",
1064
+ "customer-space_my-discounts-page_custom-discount-section_has-discount--description": "To make your projects happen without breaking the bank, get personalised discounts.",
1065
+ "customer-space_my-discounts-page_custom-discount-section_has-no-discount--description": "You don't have any personalised discounts yet… but be patient, it won’t be long!",
1066
+ "customer-space_my-discounts-page_custom-discount-section_no-discounts--text": "You don't have any personalised discounts yet… but be patient, it won’t be long!",
1067
+ "customer-space_my-discounts-page_custom-discount-section_no-outdated-discounts--text": "You have no invalid discounts",
1068
+ "customer-space_my-discounts-page_custom-discount-section_subtitle": "My personalised discounts",
1069
+ "customer-space_my-discounts-page_invalid-custom-discount_button-label": "Reactivate",
1070
+ "customer-space_my-discounts-page_my-rewards-section_description": "To earn more discounts, collect loyalty points with your purchases.",
1071
+ "customer-space_my-discounts-page_my-rewards-section_link-label": "See my loyalty program",
1072
+ "customer-space_my-discounts-page_my-rewards-section_subtitle": "My loyalty discounts",
1073
+ "customer-space_my-discounts-page_no-discounts_communication-button--label": "Change my communication preferences",
1074
+ "customer-space_my-discounts-page_no-discounts_loyalty-button--label": "See my loyalty program",
1075
+ "customer-space_my-discounts-page_no-discounts--text": "Get alerts on current promotional offers and take advantage of loyalty discounts as part of your programme",
1076
+ "customer-space_my-discounts-page_no-discounts--title": "You do not have any discounts yet",
1077
+ "customer-space_my-discounts-page_no-discounts-section_loyalty-no-rewards_description": "To earn more discounts, collect loyalty points with your purchases.",
1078
+ "customer-space_my-discounts-page_no-discounts-section_loyalty-no-rewards_link-label": "Check my loyalty points balance",
1079
+ "customer-space_my-discounts-page_no-discounts-section_loyalty-no-rewards_subtitle": "My loyalty discounts",
1080
+ "customer-space_my-discounts-page_no-discounts-section_no-loyalty-no-rewards_description": "Join the loyalty programme! Earn points with every purchase and get exclusive discounts and advantages.",
1081
+ "customer-space_my-discounts-page_no-discounts-section_no-loyalty-no-rewards_link-label": "Explore the loyalty programme",
1082
+ "customer-space_my-discounts-page_no-discounts-section_no-loyalty-no-rewards_subtitle": "Want more discounts?",
1083
+ "customer-space_my-discounts-page--title": "My discounts",
1084
+ "customer-space_my-loyalty_my-advantages_accordion_assistance--label": "Assistance",
1085
+ "customer-space_my-loyalty_my-advantages_accordion_back-product-warrantly--label": "Returns and guarantees",
1086
+ "customer-space_my-loyalty_my-advantages_accordion_collaborator--label": "Employee",
1087
+ "customer-space_my-loyalty_my-advantages_assistance--description": "Get priority access to technical support experts.",
1088
+ "customer-space_my-loyalty_my-advantages_assistance--title": "Priority technical support",
1089
+ "customer-space_my-loyalty_my-advantages_back-product--description": "We take back and refund your products up to 12 months after purchase, even without proof!",
1090
+ "customer-space_my-loyalty_my-advantages_back-product--title": "12-month receipt-free returns",
1091
+ "customer-space_my-loyalty_my-advantages_break-warrantly--description": "Your broken product will be replaced with an identical one.",
1092
+ "customer-space_my-loyalty_my-advantages_break-warrantly--title": "Breakage guarantee",
1093
+ "customer-space_my-loyalty_my-advantages_break-warrantly-l&m--description": "If you break your product during transport, storage or use, you can claim on breakage insurance.",
1094
+ "customer-space_my-loyalty_my-advantages_break-warrantly-leroy-and-me--description": "If you break your product during transport, storage or use, you can claim on breakage insurance",
1095
+ "customer-space_my-loyalty_my-advantages_break-warrantly-leroy-and-me--title": "Breakage guarantee",
1096
+ "customer-space_my-loyalty_my-advantages_custom-offer--description": "Depending on your projects, you can benefit from discounts and personalised support on products and services.",
1097
+ "customer-space_my-loyalty_my-advantages_custom-offer--title": "Personalised offers",
1098
+ "customer-space_my-loyalty_my-advantages_declare-sinister--label": "Report a claim",
1099
+ "customer-space_my-loyalty_my-advantages_dematerialized-loyalty-card--description": "Available at any time on your smartphone.",
1100
+ "customer-space_my-loyalty_my-advantages_dematerialized-loyalty-card--title": "Virtual card",
1101
+ "customer-space_my-loyalty_my-advantages_diy-courses--description": "Take advantage of this option free of charge to check the feasibility of the project.",
1102
+ "customer-space_my-loyalty_my-advantages_diy-courses--title": "In-store DIY courses",
1103
+ "customer-space_my-loyalty_my-advantages_double-points--description": "Your points will be doubled when you choose to repair, rent equipment or purchase certain products.",
1104
+ "customer-space_my-loyalty_my-advantages_double-points--title": "Double points",
1105
+ "customer-space_my-loyalty_my-advantages_emergency-pack--description": "An additional 10% discount on eligible products.",
1106
+ "customer-space_my-loyalty_my-advantages_emergency-pack--title": "Emergency pack",
1107
+ "customer-space_my-loyalty_my-advantages_end-works-assistance--description": "If you have problems finishing your work, the insurance helps you to complete the project.",
1108
+ "customer-space_my-loyalty_my-advantages_end-works-assistance--title": "End-of-project assistance",
1109
+ "customer-space_my-loyalty_my-advantages_free-technical-report--description": "A craftsman will visit you free of charge to check the feasibility of the project.",
1110
+ "customer-space_my-loyalty_my-advantages_free-technical-report--title": "Free technical surveys",
1111
+ "customer-space_my-loyalty_my-advantages_inhabitant-pack--description": "Additional discounts for your projects and house moves.",
1112
+ "customer-space_my-loyalty_my-advantages_inhabitant-pack--title": "Home pack",
1113
+ "customer-space_my-loyalty_my-advantages_move-in-warrantly--description": "If a fixed appliance breaks down, there are no nasty surprises; the insurance company will take care of the repair.",
1114
+ "customer-space_my-loyalty_my-advantages_move-in-warrantly--title": "Recent mover guarantee",
1115
+ "customer-space_my-loyalty_my-advantages_preferential-product-price--description": "Get exclusive prices on 200 Leroy Merlin products.",
1116
+ "customer-space_my-loyalty_my-advantages_preferential-product-price--title": "200 products at preferential prices",
1117
+ "customer-space_my-loyalty_reward_expiration-date--label": "Until {expiration}",
1118
+ "customer-space_my-loyalty-card--subtitle": "Explore the advantages of loyalty",
1119
+ "customer-space_newsletter-checkbox_promotional_email--label": "By email",
1120
+ "customer-space_newsletter-checkbox_promotional_email--legend": "Receive occasional communications with our decorating advice, tutorials and top tips.",
1121
+ "customer-space_newsletter-checkbox_promotional_none--label": "Receive nothing",
1122
+ "customer-space_newsletter-checkbox_promotional_none--legend": "Receive only our emails related to your account and your purchases.",
1123
+ "customer-space_newsletter-checkbox_promotional_postal--label": "By post",
1124
+ "customer-space_newsletter-checkbox_promotional_postal--legend": "Receive occasional paper-based communications.",
1125
+ "customer-space_newsletter-checkbox_promotional_sms--label": "By SMS",
1126
+ "customer-space_newsletter-checkbox_promotional_sms--legend": "Be alerted to our special offers before anyone else (or almost anyone else).",
1127
+ "customer-space_nif_validation-error--text": "NIF format invalid",
1128
+ "customer-space_no-address-found-error--text": "No address found, please add one before continuing",
1129
+ "customer-space_not-found-page-description": "The requested page was not found or no longer exists.",
1130
+ "customer-space_not-found-page-title": "Page not found.",
1131
+ "customer-space_optin-stettings-page_notification_success--title": "Thank you, your preferences have been modified",
1132
+ "customer-space_orders_route--label": "/personal-space/order-follow-up/",
1133
+ "customer-space_overlay-layer--label": "Grey panel background",
1134
+ "customer-space_page-default-title--text": "Using your Leroy Merlin account",
1135
+ "customer-space_payment-layer-delete_cancel--btn": "Cancel",
1136
+ "customer-space_payment-layer-delete_validate--btn": "Delete my card",
1137
+ "customer-space_payment-layer-delete--subTitle": "Do you really want to delete this payment card?",
1138
+ "customer-space_payment-layer-delete--title": "Delete my payment card",
1139
+ "customer-space_personal-data__account-tab--label": "Account",
1140
+ "customer-space_personal-data__community-tab--label": "Community",
1141
+ "customer-space_personal-data_account--route": "account",
1142
+ "customer-space_personal-data_account-addresses_box_main--title": "Main address",
1143
+ "customer-space_personal-data_account-addresses_box_show-details--button": "See more information",
1144
+ "customer-space_personal-data_account-addresses_box--title": "Secondary address",
1145
+ "customer-space_personal-data_account-addresses_button_add--label": "Add an address",
1146
+ "customer-space_personal-data_account-addresses_button_main--label": "Choose the main address",
1147
+ "customer-space_personal-data_account-addresses_edit--aria-label": "edit address",
1148
+ "customer-space_personal-data_account-addresses_info-modal_balcony--label": "Balcony",
1149
+ "customer-space_personal-data_account-addresses_info-modal_cancel--button": "Return",
1150
+ "customer-space_personal-data_account-addresses_info-modal_garden--label": "Garden",
1151
+ "customer-space_personal-data_account-addresses_info-modal_housetype--label": "Home type",
1152
+ "customer-space_personal-data_account-addresses_info-modal_housingcategory--label": "Home category",
1153
+ "customer-space_personal-data_account-addresses_info-modal_inhabitanttype--label": "Status",
1154
+ "customer-space_personal-data_account-addresses_info-modal_main-address--label": "Main address",
1155
+ "customer-space_personal-data_account-addresses_info-modal_modify--button": "Edit",
1156
+ "customer-space_personal-data_account-addresses_info-modal_movingindate--label": "Moving date",
1157
+ "customer-space_personal-data_account-addresses_info-modal_patio--label": "Terrace",
1158
+ "customer-space_personal-data_account-addresses_info-modal_usagetype--label": "Usage type",
1159
+ "customer-space_personal-data_account-addresses_info-modal--title": "Address details",
1160
+ "customer-space_personal-data_account-addresses_layer_delete_btn-cancel--text": "Cancel",
1161
+ "customer-space_personal-data_account-addresses_layer_delete_btn-validate--text": "Confirm",
1162
+ "customer-space_personal-data_account-addresses_layer_delete--text": "Would you like to delete this address?",
1163
+ "customer-space_personal-data_account-addresses_layer_delete--title": "Delete an address",
1164
+ "customer-space_personal-data_account-addresses_layer_edit_btn-cancel--text": "Cancel",
1165
+ "customer-space_personal-data_account-addresses_layer_edit_btn-validate--text": "Confirm",
1166
+ "customer-space_personal-data_account-addresses_layer_edit_btn-validate--title": "Confirm my main address",
1167
+ "customer-space_personal-data_account-addresses_layer_main_btn-cancel--text": "Cancel",
1168
+ "customer-space_personal-data_account-addresses_layer_main_btn-validate--text": "Confirm",
1169
+ "customer-space_personal-data_account-addresses_layer_main--title": "Choose my main address",
1170
+ "customer-space_personal-data_account-addresses_layer-add--title": "Add an address",
1171
+ "customer-space_personal-data_account-addresses_layer-additional-infos--label": "Additional information",
1172
+ "customer-space_personal-data_account-addresses_layer-additional-infos--placeholder": "Exemple: Mr Jean Dupond",
1173
+ "customer-space_personal-data_account-addresses_layer-building--label": "Building, staircase, floor, etc",
1174
+ "customer-space_personal-data_account-addresses_layer-building--placeholder": "E.g.: 3rd floor",
1175
+ "customer-space_personal-data_account-addresses_layer-building-error--text": "This field does not comply with the expected format: 50 characters maximum",
1176
+ "customer-space_personal-data_account-addresses_layer-city--label": "City",
1177
+ "customer-space_personal-data_account-addresses_layer-city--placeholder": "E.g.: Lille",
1178
+ "customer-space_personal-data_account-addresses_layer-city-error--text": "This field does not comply with the expected format: 50 characters maximum. E.g.: Lille",
1179
+ "customer-space_personal-data_account-addresses_layer-country--label": "Country",
1180
+ "customer-space_personal-data_account-addresses_layer-edit_accordion--label": "Further information",
1181
+ "customer-space_personal-data_account-addresses_layer-edit_main-field--label": "Set as main address",
1182
+ "customer-space_personal-data_account-addresses_layer-edit--title": "Change my address",
1183
+ "customer-space_personal-data_account-addresses_layer-main--label": "Set this address as my main address.",
1184
+ "customer-space_personal-data_account-addresses_layer-number&Street-error--text": "Invalid format, expected format: 8 rue de Chanzy",
1185
+ "customer-space_personal-data_account-addresses_layer-numberAndStreet--label": "Address",
1186
+ "customer-space_personal-data_account-addresses_layer-numberAndStreet--placeholder": "E.g.: 8 rue de Chanzy",
1187
+ "customer-space_personal-data_account-addresses_layer-numberAndStreet-error--text": "One or more characters are not allowed, or you have exceeded the maximum limit (50)",
1188
+ "customer-space_personal-data_account-addresses_layer-postBox--label": "Place name, post office box, etc.",
1189
+ "customer-space_personal-data_account-addresses_layer-postBox--placeholder": "E.g.: Quartier des Marguerites ",
1190
+ "customer-space_personal-data_account-addresses_layer-postBox-error--text": "This field does not comply with the expected format: 50 characters maximum",
1191
+ "customer-space_personal-data_account-addresses_layer-province--label": "Province",
1192
+ "customer-space_personal-data_account-addresses_layer-province--placeholder": "Province",
1193
+ "customer-space_personal-data_account-addresses_layer-zipCode--label": "Post code",
1194
+ "customer-space_personal-data_account-addresses_layer-zipCode--placeholder": "E.g.: 59800",
1195
+ "customer-space_personal-data_account-addresses_layer-zipCode-error--text": "This field does not comply with the expected format: 5 numeric characters. E.g.: 59800",
1196
+ "customer-space_personal-data_account-addresses--title": "My addresses",
1197
+ "customer-space_personal-data_account-addresses-config_balcony--label": "Balcony",
1198
+ "customer-space_personal-data_account-addresses-config_booleans-no--text": "No",
1199
+ "customer-space_personal-data_account-addresses-config_booleans-yes--text": "Yes",
1200
+ "customer-space_personal-data_account-addresses-config_garden--label": "Garden",
1201
+ "customer-space_personal-data_account-addresses-config_housetype--label": "Home type",
1202
+ "customer-space_personal-data_account-addresses-config_housetype-appartment--text": "Flat",
1203
+ "customer-space_personal-data_account-addresses-config_housetype-donotknow--text": "Don't know",
1204
+ "customer-space_personal-data_account-addresses-config_housetype-house--text": "House",
1205
+ "customer-space_personal-data_account-addresses-config_housetype-null--text": "Not known",
1206
+ "customer-space_personal-data_account-addresses-config_housetype-other--text": "Other type of home",
1207
+ "customer-space_personal-data_account-addresses-config_housingcategory--label": "Home category",
1208
+ "customer-space_personal-data_account-addresses-config_housingcategory-current--text": "Current",
1209
+ "customer-space_personal-data_account-addresses-config_housingcategory-future--text": "Future",
1210
+ "customer-space_personal-data_account-addresses-config_housingcategory-secondary--text": "Secondary",
1211
+ "customer-space_personal-data_account-addresses-config_inhabitanttype--label": "Status",
1212
+ "customer-space_personal-data_account-addresses-config_inhabitanttype-donotknow--text": "Don't know",
1213
+ "customer-space_personal-data_account-addresses-config_inhabitanttype-freeoccupant--text": "Free occupant",
1214
+ "customer-space_personal-data_account-addresses-config_inhabitanttype-null--text": "Not known",
1215
+ "customer-space_personal-data_account-addresses-config_inhabitanttype-other--text": "Other",
1216
+ "customer-space_personal-data_account-addresses-config_inhabitanttype-owner--text": "Owner",
1217
+ "customer-space_personal-data_account-addresses-config_inhabitanttype-tenant--text": "Tenant",
1218
+ "customer-space_personal-data_account-addresses-config_movingindate--label": "Moving date",
1219
+ "customer-space_personal-data_account-addresses-config_patio--label": "Terrace",
1220
+ "customer-space_personal-data_account-addresses-config_usage--label": "Usage type",
1221
+ "customer-space_personal-data_account-addresses-config_usages--label": "Usage type",
1222
+ "customer-space_personal-data_account-addresses-config_usagestype-construction--text": "On-site-installation",
1223
+ "customer-space_personal-data_account-addresses-config_usagestype-delivery--text": "Delivery",
1224
+ "customer-space_personal-data_account-addresses-config_usagestype-housing--text": "Home",
1225
+ "customer-space_personal-data_account-addresses-config_usagestype-invoice--text": "Invoicing",
1226
+ "customer-space_personal-data_account-addresses-config_usagestype-null--text": "Not known",
1227
+ "customer-space_personal-data_account-company_admin--label": "Admin",
1228
+ "customer-space_personal-data_account-company_asal--label": "ASAL",
1229
+ "customer-space_personal-data_account-company_association--label": "Association",
1230
+ "customer-space_personal-data_account-company_btn-save--text": "Save changes",
1231
+ "customer-space_personal-data_account-company_cb--label": "CB",
1232
+ "customer-space_personal-data_account-company_corporate--label": "Company",
1233
+ "customer-space_personal-data_account-company_ei--label": "EI",
1234
+ "customer-space_personal-data_account-company_eirl--label": "EIRL",
1235
+ "customer-space_personal-data_account-company_eurl--label": "EURL",
1236
+ "customer-space_personal-data_account-company_legal-form--label": "Legal entity",
1237
+ "customer-space_personal-data_account-company_name--label": "Company name",
1238
+ "customer-space_personal-data_account-company_other--label": "Other",
1239
+ "customer-space_personal-data_account-company_s-coop-label": "S COOP",
1240
+ "customer-space_personal-data_account-company_sa--label": "SA",
1241
+ "customer-space_personal-data_account-company_sapa--label": "SAPA",
1242
+ "customer-space_personal-data_account-company_sarl--label": "SARL",
1243
+ "customer-space_personal-data_account-company_sas--label": "SAS",
1244
+ "customer-space_personal-data_account-company_scaie--label": "SCAIE",
1245
+ "customer-space_personal-data_account-company_sci--label": "SCI",
1246
+ "customer-space_personal-data_account-company_scol--label": "SCOL",
1247
+ "customer-space_personal-data_account-company_scom--label": "SCOM",
1248
+ "customer-space_personal-data_account-company_sl--label": "SL",
1249
+ "customer-space_personal-data_account-company_slab--label": "SLAB",
1250
+ "customer-space_personal-data_account-company_slnc--label": "SLNC",
1251
+ "customer-space_personal-data_account-company_slu--label": "SLU",
1252
+ "customer-space_personal-data_account-company_snc--label": "SNC",
1253
+ "customer-space_personal-data_account-company_spa--label": "SPA",
1254
+ "customer-space_personal-data_account-company_srl--label": "SRL",
1255
+ "customer-space_personal-data_account-company_ss--label": "SS",
1256
+ "customer-space_personal-data_account-company--title": "My company",
1257
+ "customer-space_personal-data_account-company-cae_form-cae-numbers-error--text": "The CAE can only contain numbers.",
1258
+ "customer-space_personal-data_account-company-cif_form-cif-existence-error--text": "The CIF number is already associated with an account",
1259
+ "customer-space_personal-data_account-company-cif_form-cif-format-error--text": "The CIF is not in the right format.",
1260
+ "customer-space_personal-data_account-company-cif_form-cif-length-error--text": "The NIF is 9 characters long ",
1261
+ "customer-space_personal-data_account-company-nif_form-nif-existence-error--text": "The NIF is not currently recognised",
1262
+ "customer-space_personal-data_account-company-nif_form-nif-format-error--text": "The NIF is in the wrong format.",
1263
+ "customer-space_personal-data_account-company-nif_form-nif-length-error--text": "The NIF is a 9-digit number",
1264
+ "customer-space_personal-data_account-company-nif_form-nif-numbers-error--text": "The NIF can only contain numbers.",
1265
+ "customer-space_personal-data_account-company-siret_form-siret-existence-error--text": "This number is not listed. Remember to check the validity of your SIRET.",
1266
+ "customer-space_personal-data_account-company-siret_form-siret-format-error--text": "The SIRET is not in the right format.",
1267
+ "customer-space_personal-data_account-company-siret_form-siret-length-error--text": "The Siret is a 14-digit number",
1268
+ "customer-space_personal-data_account-company-siret_form-siret-numbers-error--text": "The SIRET can only contain numbers.",
1269
+ "customer-space_personal-data_account-company-siret--label": "Siret",
1270
+ "customer-space_personal-data_account-moving-date_button_update--label": "Update",
1271
+ "customer-space_personal-data_account-moving-date_update_success--text": "Your moving date has been updated",
1272
+ "customer-space_personal-data_account-moving-date--title": "My moving date",
1273
+ "customer-space_personal-data_account-password_button--text": "Change my password",
1274
+ "customer-space_personal-data_account-password_description--text": "You can change your password at any time by clicking the button below.",
1275
+ "customer-space_personal-data_account-password_layer_btn-new--label": "New password",
1276
+ "customer-space_personal-data_account-password_layer_btn-old--label": "Old password",
1277
+ "customer-space_personal-data_account-password_layer_button-cancel--text": "Cancel",
1278
+ "customer-space_personal-data_account-password_layer_button-validate--text": "Confirm",
1279
+ "customer-space_personal-data_account-password_layer--error-matching-password": "The new password must be different from the old one",
1280
+ "customer-space_personal-data_account-password_layer--error-password": "the password must have at least 8 characters, including at least one lower-case letter, one upper-case letter and one number",
1281
+ "customer-space_personal-data_account-password_layer--title": "Change my password",
1282
+ "customer-space_personal-data_account-password--title": "Password",
1283
+ "customer-space_personal-data_account-password-layer_confirm-new-password--label": "Confirmation of new password",
1284
+ "customer-space_personal-data_account-password-layer_current-password--label": "Current password",
1285
+ "customer-space_personal-data_account-password-layer_new-password--label": "New password",
1286
+ "customer-space_personal-data_account-phone_btn-save--text": "Save changes",
1287
+ "customer-space_personal-data_account-phone_button_add--label": "Add a phone no.",
1288
+ "customer-space_personal-data_account-phone_form_number1--label": "Main telephone",
1289
+ "customer-space_personal-data_account-phone_form_number2--label": "Telephone 2",
1290
+ "customer-space_personal-data_account-phone_form_number3--label": "Telephone 3",
1291
+ "customer-space_personal-data_account-phone_form-phone-error--text": "Invalid format, expected format: 0102030405",
1292
+ "customer-space_personal-data_account-phone_form-phone-error-fr--text": "Invalid format, expected format: 0102030405",
1293
+ "customer-space_personal-data_account-phone--title": "My phone numbers",
1294
+ "customer-space_personal-data_account-phone-number_deletet--aria-label": "delete the phone number",
1295
+ "customer-space_personal-data_account-profile_btn-save--text": "Save changes",
1296
+ "customer-space_personal-data_account-profile_form-email-error--text": "Invalid format",
1297
+ "customer-space_personal-data_account-profile_form-error--text": "Invalid format",
1298
+ "customer-space_personal-data_account-profile_form-phone-error--text": "Invalid format",
1299
+ "customer-space_personal-data_account-profile--title": "My contact details",
1300
+ "customer-space_personal-data_account-province_error--text": "This field does not follow the expected format: 50 characters maximum",
1301
+ "customer-space_personal-data_account-store_description--text": "My store",
1302
+ "customer-space_personal-data_account-store_layer_cancel--btn": "Cancel",
1303
+ "customer-space_personal-data_account-store_layer_validate--btn": "Confirm",
1304
+ "customer-space_personal-data_account-store_layer--text": "Enter a postcode to refine your search and select your preferred store",
1305
+ "customer-space_personal-data_account-store_layer--title": "Change my store",
1306
+ "customer-space_personal-data_account-store_notification": "Your linked store is now the store in: ",
1307
+ "customer-space_personal-data_account-store_select--label": "My store",
1308
+ "customer-space_personal-data_account-store_zipcode--label": "Postcode",
1309
+ "customer-space_personal-data_account-store--btn": "Edit",
1310
+ "customer-space_personal-data_account-store--title": "My store",
1311
+ "customer-space_personal-data_communications--route": "customer-preferences",
1312
+ "customer-space_personal-data_community__websites-layer__cancel--button": "Cancel",
1313
+ "customer-space_personal-data_community__websites-layer__skip--button": "Move on to the next step",
1314
+ "customer-space_personal-data_community__websites-layer__submit--button": "Confirm",
1315
+ "customer-space_personal-data_community_button--text": "Save changes",
1316
+ "customer-space_personal-data_community_button-validate--text": "Activate my community profile",
1317
+ "customer-space_personal-data_community--error-url": "Invalid url",
1318
+ "customer-space_personal-data_community--route": "community",
1319
+ "customer-space_personal-data_community--title": "About me",
1320
+ "customer-space_personal-data_community-avatar__avatar-alt": "Avatar",
1321
+ "customer-space_personal-data_community-avatar__layer__cancel--button": "Cancel",
1322
+ "customer-space_personal-data_community-avatar__layer__separator-line--label": "OR",
1323
+ "customer-space_personal-data_community-avatar__layer__submit--button": "Confirm",
1324
+ "customer-space_personal-data_community-avatar__layer_button-validate--text": "Confirm",
1325
+ "customer-space_personal-data_community-avatar__layer_import-image--text": "Import an image from my device:",
1326
+ "customer-space_personal-data_community-avatar__layer_list-avatar--text": "Choose an avatar from the list:",
1327
+ "customer-space_personal-data_community-avatar__layer_upload-button--text": "Import an image",
1328
+ "customer-space_personal-data_community-avatar__layer--title": "Change my profile photo",
1329
+ "customer-space_personal-data_community-avatar__layer-image-upload-error--text": "The file must be an image",
1330
+ "customer-space_personal-data_community-avatar__layer-oversized-upload-error--text": "File too large",
1331
+ "customer-space_personal-data_community-avatar__profile-pic-alt": "Profile photo",
1332
+ "customer-space_personal-data_community-avatar_button--text": "Change my information",
1333
+ "customer-space_personal-data_community-avatar_description--text": "Your profile photo is visible to users when you leave a review or ask a question about a product on the site or in the LEROY MERLIN community.",
1334
+ "customer-space_personal-data_community-avatar_layer_button-validate--text": "Confirm",
1335
+ "customer-space_personal-data_community-avatar_layer_separator-line--label": "OR",
1336
+ "customer-space_personal-data_community-avatar_layer_subtitle1--text": "Import an image from my device:",
1337
+ "customer-space_personal-data_community-avatar_layer_subtitle2--text": "Choose an avatar from the list:",
1338
+ "customer-space_personal-data_community-avatar_layer_upload-button--text": "Import an image",
1339
+ "customer-space_personal-data_community-avatar_layer--title": "Change my profile photo",
1340
+ "customer-space_personal-data_community-avatar_layer-upload-error--text": "The file must be an image",
1341
+ "customer-space_personal-data_community-avatar--title": "Profile photo",
1342
+ "customer-space_personal-data_community-creation-layer_my-profile--text": "My Facebook profile",
1343
+ "customer-space_personal-data_community-creation-layer_my-website--text": "My website",
1344
+ "customer-space_personal-data_community-creation-layer_success-notification--text": "Your community account is complete.",
1345
+ "customer-space_personal-data_community-creation-layer_success-notification--title": "Community account complete",
1346
+ "customer-space_personal-data_community-info_facebook--label": "My Facebook profile",
1347
+ "customer-space_personal-data_community-info_username--label": "My nickname",
1348
+ "customer-space_personal-data_community-info_website--label": "My website",
1349
+ "customer-space_personal-data_community-profile__unavailable-username--error": "The nickname is already taken",
1350
+ "customer-space_personal-data_community-profile_create-account_layer-websites_validation--button": "Confirm",
1351
+ "customer-space_personal-data_community-profile_create-account_suggestions--title": "Suggestions:",
1352
+ "customer-space_personal-data_community-profile_create-account--button": "Create my profile",
1353
+ "customer-space_personal-data_community-profile_create-account-layer_step-avatar--label": "My avatar",
1354
+ "customer-space_personal-data_community-profile_create-account-layer_step-nickname--label": "My community nickname",
1355
+ "customer-space_personal-data_community-profile_create-account-layer_step-websites--label": "About me",
1356
+ "customer-space_personal-data_community-profile_create-nickname-layer--title": "Create my profile",
1357
+ "customer-space_personal-data_community-profile_no-account_information-message": "You have not yet activated your community account.",
1358
+ "customer-space_personal-data_community-profile_no-account_instruction-message": "Creating one now will allow users in the community to get to know you better, and will also identify you when leaving a review on a product.",
1359
+ "customer-space_personal-data_community-profile_username-availability--error": "The nickname is already in use",
1360
+ "customer-space_personal-data_community-profile_username-creation--error": "The nickname must be between 5 and 25 alphanumeric characters or -_.{'@'} ",
1361
+ "customer-space_personal-data_community-profile_username-creation--label": "My nickname",
1362
+ "customer-space_personal-data_community-profile_username-creation--placeholder": "E.g.: Bricoleur59",
1363
+ "customer-space_personal-data_create-avatar-layer_next-button--label": "Continue",
1364
+ "customer-space_personal-data_create-avatar-layer_validate-button--label": "Confirm",
1365
+ "customer-space_personal-data_current-password-incorrect-error": "The current password is incorrect",
1366
+ "customer-space_personal-data_info-updated--title": "Updated information",
1367
+ "customer-space_personal-data--route": "my-information",
1368
+ "customer-space_personal-data--title": "My personal information",
1369
+ "customer-space_personal-data-account_route--title": "My personal information",
1370
+ "customer-space_personal-data-community_route--title": "My Community Space",
1371
+ "customer-space_precreate-account_email-warning--content": "By entering the customer's email address, they can create a web customer area to access their order tracking, loyalty advantages and till receipts.",
1372
+ "customer-space_precreate-account_form_login-field--label": "Email",
1373
+ "customer-space_precreate-account_individual-distinction--label": "Private customer",
1374
+ "customer-space_precreate-account_professional-distinction--label": "Business customer",
1375
+ "customer-space_product-box_quantity": "Quantity: {quantity}",
1376
+ "customer-space_product-box_reference": "Ref: {reference}",
1377
+ "customer-space_profile_contact-detail_identity-update--label": "Change my identity",
1378
+ "customer-space_profile_contact-detail_identity-update--title": "Change my identity",
1379
+ "customer-space_profile_contact-detail_phone-update--label": "Change my phone numbers",
1380
+ "customer-space_profile_contact-detail--title": "Contact details",
1381
+ "customer-space_profile--title": "My profile",
1382
+ "customer-space_projects-and-tools_build-follow--description": "Plan and monitor the execution of your projects.",
1383
+ "customer-space_projects-and-tools_build-follow--title": "Installation follow-up",
1384
+ "customer-space_projects-and-tools_kazaplan--description": "Design your plans in 2D/3D with the Kazaplan tool",
1385
+ "customer-space_projects-and-tools_kazaplan--title": "Kazaplan",
1386
+ "customer-space_projects-and-tools_project--description": "Estimate your budget, follow the steps and centrally store your photos.",
1387
+ "customer-space_projects-and-tools_project--title": "Projects",
1388
+ "customer-space_projects-and-tools_route--title": "Projects and tools",
1389
+ "customer-space_projects-and-tools_tools--description": "Add tools for estimating, costing or designing your future projects.",
1390
+ "customer-space_projects-and-tools_tools--title": "Design tools",
1391
+ "customer-space_projects-and-tools-page--title": "Projects and tools",
1392
+ "customer-space_purchase-receipt_add-address-layer--title": "Add an address",
1393
+ "customer-space_purchase-receipt_change-my-contact-information--title": "Change my contact details",
1394
+ "customer-space_purchase-receipt_detail__invoice-info--text": "INVOICING AND PAYMENT DETAILS",
1395
+ "customer-space_purchase-receipt_detail_address-modification-button--label": "Edit",
1396
+ "customer-space_purchase-receipt_detail_array--title": "Details of my order",
1397
+ "customer-space_purchase-receipt_detail_array-discount--text": "instead of",
1398
+ "customer-space_purchase-receipt_detail_array-qty--text": "Qty",
1399
+ "customer-space_purchase-receipt_detail_array-ref--text": "Ref",
1400
+ "customer-space_purchase-receipt_detail_array-review--text": "Give feedback",
1401
+ "customer-space_purchase-receipt_detail_close-invoice-generation-error-modal--button": "Ok",
1402
+ "customer-space_purchase-receipt_detail_customer-service-contact_route--label": "/contact/",
1403
+ "customer-space_purchase-receipt_detail_deposit--text": "ADVANCE PAYMENT",
1404
+ "customer-space_purchase-receipt_detail_discount--text": "Discount",
1405
+ "customer-space_purchase-receipt_detail_fund--text": "Till number",
1406
+ "customer-space_purchase-receipt_detail_generate-for-a-third-party-invoice-button--label": "Generate for a third party",
1407
+ "customer-space_purchase-receipt_detail_generate-invoice_customer-service-contact--link": "customer service",
1408
+ "customer-space_purchase-receipt_detail_generate-invoice--info": "Unfortunately the invoice is not available for this receipt\nno. {id}.\nPlease contact {contact} or go directly to the store where you made the purchase to collect your invoice.\nUnfortunately the invoice is not available for this receipt\nno. {id}.\nPlease contact {contact} or go directly to the store where you made the purchase to collect your invoice.\nUnfortunately the invoice is not available for this receipt\nno. {id}.\nPlease contact {contact} or go directly to the store where you made the purchase to collect your invoice.\nUnfortunately the invoice is not available for this receipt\nno. {id}.\nPlease contact {contact} or go directly to the store where you made the purchase to collect your invoice.\nUnfortunately the invoice is not available for this receipt\nno. {id}.\nPlease contact {contact} or go directly to the store where you made the purchase to collect your invoice.\nUnfortunately the invoice is not available for this receipt\nno. {id}.\nPlease contact {contact} or go directly to the store where you made the purchase to collect your invoice.\nUnfortunately the invoice is not available for this receipt\nno. {id}.\nPlease contact {contact} or go directly to the store where you made the purchase to collect your invoice.\nUnfortunately the invoice is not available for this receipt\nno. {id}.\nPlease contact {contact} or go directly to the store where you made the purchase to collect your invoice.\nUnfortunately the invoice is not available for this receipt\nno. {id}.\nPlease contact {contact} or go directly to the store where you made the purchase to collect your invoice.\nUnfortunately the invoice is not available for this receipt\nno. {id}.\nPlease contact {contact} or go directly to the store where you made the purchase to collect your invoice.\nUnfortunately the invoice is not available for this receipt\nno. {id}.\nPlease contact {contact} or go directly to the store where you made the purchase to collect your invoice.\nUnfortunately the invoice is not available for this receipt\nno. {id}.\nPlease contact {contact} or go directly to the store where you made the purchase to collect your invoice.\nUnfortunately the invoice is not available for this receipt\nno. {id}.\nPlease contact {contact} or go directly to the store where you made the purchase to collect your invoice.\nUnfortunately the invoice is not available for this receipt\nno. {id}.\nPlease contact {contact} or go directly to the store where you made the purchase to collect your invoice.\nUnfortunately the invoice is not available for this receipt\nno. {id}.\nPlease contact {contact} or go directly to the store where you made the purchase to collect your invoice.\nUnfortunately the invoice is not available for this receipt\nno. {id}.\nPlease contact {contact} or go directly to the store where you made the purchase to collect your invoice.\nUnfortunately the invoice is not available for this receipt\nno. {id}.\nPlease contact {contact} or go directly to the store where you made the purchase to collect your invoice.\nUnfortunately the invoice is not available for this receipt\nno. {id}.\nPlease contact {contact} or go directly to the store where you made the purchase to collect your invoice.\nUnfortunately the invoice is not available for this receipt\nno. {id}.\nPlease contact {contact} or go directly to the store where you made the purchase to collect your invoice.\n",
1409
+ "customer-space_purchase-receipt_detail_generate-invoice--label": "Generate an invoice",
1410
+ "customer-space_purchase-receipt_detail_generate-invoice-button--label": "Generate my invoice",
1411
+ "customer-space_purchase-receipt_detail_generate-new-invoice-button--label": "Generate again",
1412
+ "customer-space_purchase-receipt_detail_go-to-account-management-page--button": "Add address",
1413
+ "customer-space_purchase-receipt_detail_id--label": "{id}",
1414
+ "customer-space_purchase-receipt_detail_invoice-and-payment--title": "Invoicing and payment",
1415
+ "customer-space_purchase-receipt_detail_invoice-generation-error-modal--text": "Invoice generation is not currently available for advance payment tickets. Please contact customer service to obtain your invoice.",
1416
+ "customer-space_purchase-receipt_detail_invoice-generation-error-modal--title": "Problem with generating your invoice",
1417
+ "customer-space_purchase-receipt_detail_modifiction-explication": "The changes you make will not be saved in your customer area.",
1418
+ "customer-space_purchase-receipt_detail_modify-invoice--label": "edit",
1419
+ "customer-space_purchase-receipt_detail_my-deposits--title": "My Advance Payments",
1420
+ "customer-space_purchase-receipt_detail_my-purchases--title": "My articles",
1421
+ "customer-space_purchase-receipt_detail_no-addresss--text": "It is necessary to have at least one address defined to be able to generate an invoice.\nPlease enter an address in your \"account management\" area by clicking on the button below.",
1422
+ "customer-space_purchase-receipt_detail_number--text": "article",
1423
+ "customer-space_purchase-receipt_detail_numbers--text": "articles",
1424
+ "customer-space_purchase-receipt_detail_payment-type-AdeoCustomerAccount_18--text": "VOUCHER",
1425
+ "customer-space_purchase-receipt_detail_payment-type-AdeoInvoiceAccount_24--text": "VOUCHER",
1426
+ "customer-space_purchase-receipt_detail_payment-type-AdeoManagementAccount_43--text": "VOUCHER",
1427
+ "customer-space_purchase-receipt_detail_payment-type-AdeoManagementAccount_54--text": "VOUCHER",
1428
+ "customer-space_purchase-receipt_detail_payment-type-OnlinePayment_30--text": "VOUCHER",
1429
+ "customer-space_purchase-receipt_detail_payment-type-Voucher_25--text": "VOUCHER",
1430
+ "customer-space_purchase-receipt_detail_payment-type-Voucher_26--text": "VOUCHER",
1431
+ "customer-space_purchase-receipt_detail_payment-type-Voucher_58--text": "VOUCHER",
1432
+ "customer-space_purchase-receipt_detail_purchase-settled--text": "Paid by",
1433
+ "customer-space_purchase-receipt_detail_questions--button": "Contact us",
1434
+ "customer-space_purchase-receipt_detail_questions--title": "Any questions?",
1435
+ "customer-space_purchase-receipt_detail_questions-description": "Whether you need help, advice or clarification, you’ll find it here.",
1436
+ "customer-space_purchase-receipt_detail_subTotal-purchase--text": "Subtotal",
1437
+ "customer-space_purchase-receipt_detail_ticket--text": "Receipt no.",
1438
+ "customer-space_purchase-receipt_detail_total-purchase--text": "Purchase total",
1439
+ "customer-space_purchase-receipt_detail_VAT--text": "VAT",
1440
+ "customer-space_purchase-receipt_detail--title": "Purchase dated",
1441
+ "customer-space_purchase-receipt_display-more_on_prefix--description": "purchases",
1442
+ "customer-space_purchase-receipt_display-more--button": "View more",
1443
+ "customer-space_purchase-receipt_fill-information-before-generating-invoice--description": "Fill in your information before generating your invoice. Once generated, your invoice can no longer be modified.",
1444
+ "customer-space_purchase-receipt_generate-for-professional--label": "Generate an invoice for a business customer",
1445
+ "customer-space_purchase-receipt_generate-invoice-failed-layer_cancel--button": "Cancel",
1446
+ "customer-space_purchase-receipt_generate-invoice-failed-layer_regenerate--button": "Generate again",
1447
+ "customer-space_purchase-receipt_generate-invoice-failed-layer--text": "A problem occurred when generating your invoice. Try to generate it again.",
1448
+ "customer-space_purchase-receipt_generate-invoice-failed-layer--title": "Failed invoice generation",
1449
+ "customer-space_purchase-receipt_generate-invoice-layer_download--text": "You can now download your invoice by clicking the button below:",
1450
+ "customer-space_purchase-receipt_generate-invoice-layer_generation--text": "Please wait a few seconds, your invoice is being generated",
1451
+ "customer-space_purchase-receipt_generate-invoice-layer_generation-failed--text": "An error occurred while generating your invoice. Please contact customer service for more information. Please excuse us.",
1452
+ "customer-space_purchase-receipt_generate-invoice-layer_generation-failed--title": "Problem with invoice generation",
1453
+ "customer-space_purchase-receipt_list__link--text": "See the details of the purchase of {date}",
1454
+ "customer-space_purchase-receipt_list_date--text": "Your purchase of",
1455
+ "customer-space_purchase-receipt_list_store--text": "{store} store",
1456
+ "customer-space_purchase-receipt_list_store-name--text": "Web store",
1457
+ "customer-space_purchase-receipt_list_store-no-longer-exist--text": "Store no longer exists",
1458
+ "customer-space_purchase-receipt_list--title": "My purchase history",
1459
+ "customer-space_purchase-receipt_purchase-detail-unkown--text": "The list does not exist or no longer exists",
1460
+ "customer-space_purchase-receipt_purchases_first-tag--text": "Last 12 months",
1461
+ "customer-space_purchase-receipt_purchases-list-empty": "empty purchase history list",
1462
+ "customer-space_purchase-receipt_purchases-list-empty--paragraph": "Present your Carte Maison at each checkout to find your purchase history here",
1463
+ "customer-space_purchase-receipt_purchases-list-empty--title": "Don’t forget!",
1464
+ "customer-space_purchase-receipt_purchases-notification": "Present your loyalty card at each checkout to find your purchase history.",
1465
+ "customer-space_purchase-receipt_purchases-notification_no-result--text": "We did not find any results for your search.",
1466
+ "customer-space_purchase-receipt_purchases-notification_no-result--title": "No results",
1467
+ "customer-space_purchase-receipt_purchases-on--description": "purchases on",
1468
+ "customer-space_purchase-receipt_return-detail--title": "Return dated",
1469
+ "customer-space_purchase-receipt_route--url": "my-purchases/history",
1470
+ "customer-space_purchase-receipt_search-bar_contribution-filter--button": "See receipts with contribution",
1471
+ "customer-space_purchase-receipt_search-bar_form--button": "Search",
1472
+ "customer-space_purchase-receipt_search-bar_validation_error--text": "Invalid format",
1473
+ "customer-space_purchase-receipt_search-bar--label": "Search for a product reference or an order number",
1474
+ "customer-space_purchase-receipt--download--title": "Download my invoice",
1475
+ "customer-space_purchase-receipt--download-generation--desc": "Please wait a few seconds, your invoice is being generated.",
1476
+ "customer-space_purchase-receipt--download-to-link--desc": "You can now download your invoice by clicking the button below:",
1477
+ "customer-space_purchase-receipt--error-download--desc": "A problem occurred when generating your invoice. Try to generate it again.",
1478
+ "customer-space_purchase-receipt--error-download--title": "Invoice generation failed",
1479
+ "customer-space_purchase-receipt-close--button": "Close",
1480
+ "customer-space_purchase-receipt-detail-page_notification_expired-delay--description": "Unfortunately, the {expiredDelay}-day period for generating an invoice has expired.",
1481
+ "customer-space_purchase-receipt-details_route--url": "my-purchases/history",
1482
+ "customer-space_purchase-receipt-page__download-ticket--button": "Download my receipt",
1483
+ "customer-space_purchase-receipt-page__sav--button": "Declare after-sales service",
1484
+ "customer-space_purchase-receipt-page_list-empty--title": "Oops, you haven't bought anything yet!",
1485
+ "customer-space_purchase-receipt-page-list-empty--paragraph": "Present your loyalty card at each checkout to find your purchase history.",
1486
+ "customer-space_purchase-receipt-page-not-implemented--text": "This element is currently being implemented",
1487
+ "customer-space_purchase-receipt-ticket_list--title": "Cash till receipts",
1488
+ "customer-space_purchase-receipt-ticket_search-bar--label": "Search for a reference ",
1489
+ "customer-space_rattach-customer-form_customer-attach_success--text": "Customer {firstName} {lastName} has been linked to this web account",
1490
+ "customer-space_rattach-customer-form_customer-attach_success--title": "Successful link.",
1491
+ "customer-space_rattach-customer-form_customer-search_button--label": "Search",
1492
+ "customer-space_rattach-customer-form_customer-search_error-already-attach--text": "This target customer already has a web account (login email, account number). If you wish to link this web account to this customer, please delete the target customer's web account.",
1493
+ "customer-space_rattach-customer-form_customer-search_error-not-exist--text": "This customer ID does not exist.",
1494
+ "customer-space_rattach-customer-layer_cancel-button--text": "Cancel",
1495
+ "customer-space_rattach-customer-layer_header-title--text": "Web account settings",
1496
+ "customer-space_rattach-customer-layer_placeholder--text": "E.g.: 12878623",
1497
+ "customer-space_rattach-customer-layer_sub-title--text": "Enter the customer number you wish to link to this web account.",
1498
+ "customer-space_rattach-customer-layer_title--text": "Link the web customer area to another customer",
1499
+ "customer-space_rattach-customer-layer_validate-button--text": "Link this customer",
1500
+ "customer-space_receipts_routes_detail--title": "Details of my purchase",
1501
+ "customer-space_receipts_routes_list--title": "My purchase history",
1502
+ "customer-space_rewards_no-custom-rewards--description": "All year round, Leroy Merlin offers you exclusive discounts on your purchases.",
1503
+ "customer-space_rewards_no-custom-rewards--other-link": "Change your communication preferences",
1504
+ "customer-space_rewards_no-custom-rewards--other-text": "{link} to be alerted of new discounts available in your customer area. ",
1505
+ "customer-space_rewards_no-custom-rewards--title": "Don't miss any of our offers!",
1506
+ "customer-space_rewards_points-no-reward--description": "Earn points with every purchase and get exclusive discounts and advantages.",
1507
+ "customer-space_rewards_points-no-reward--link": "See my loyalty program",
1508
+ "customer-space_rewards_points-no-reward--title": "You have {points} points",
1509
+ "customer-space_rewards-dashboard-box---button": "See my discounts",
1510
+ "customer-space_rewards-dashboard-box---title": "{count} discounts",
1511
+ "customer-space_rewards-dashboard-box--description": "of which {count} to be used before {date}",
1512
+ "customer-space_route_account-management_route--title": "Account management",
1513
+ "customer-space_route_error_access-denied--text": "/access-refused",
1514
+ "customer-space_route_error_unknown--text": "/technical error",
1515
+ "customer-space_route_estimate": "/my-quotes",
1516
+ "customer-space_route_optins--text": "/customer-preferences",
1517
+ "customer-space_route_projects-and-tools": "/projects-and-tools",
1518
+ "customer-space_routes_account-management": "/account-management",
1519
+ "customer-space_routes_account-settings": "/account-settings",
1520
+ "customer-space_routes_account-settings_stop-paper": "/paperless",
1521
+ "customer-space_routes_advanced-search": "/advanced-search",
1522
+ "customer-space_routes_collaborator": "/employee",
1523
+ "customer-space_routes_collaborator_client-summary": "/customer-details",
1524
+ "customer-space_routes_collaborator_customer-history": "/customer-history",
1525
+ "customer-space_routes_collaborator_landing-infos": "/elo-redirection",
1526
+ "customer-space_routes_my-discounts-page": "my-discounts",
1527
+ "customer-space_routes_personal-data_account": "/account",
1528
+ "customer-space_routes_personal-data_community": "/community",
1529
+ "customer-space_routes_personal-data_my-information": "/my-information",
1530
+ "customer-space_routes_precreate": "/creation",
1531
+ "customer-space_routes_quick-search": "/quick-search",
1532
+ "customer-space_routes_quick-search_loyalty": "loyalty",
1533
+ "customer-space_routes_search-page": "/search",
1534
+ "customer-space_search-page_address-step_submit-button--label": "Create and link to the sale",
1535
+ "customer-space_search-page_address-step--label": "Mailing address",
1536
+ "customer-space_search-page_create-account-layer_cancel-button--label": "Cancel",
1537
+ "customer-space_search-page_create-account-layer_go-back--title": "back",
1538
+ "customer-space_search-page_create-account-layer--title": "Create the customer area",
1539
+ "customer-space_search-page_create-button--label": "Create the customer area",
1540
+ "customer-space_search-page_personal-data-step_submit-button--label": "Next",
1541
+ "customer-space_search-page_personal-data-step--label": "Personal information",
1542
+ "customer-space_search-page_precreate_submit-button--label": "Create and access",
1543
+ "customer-space_search-page_search-warning--content": "The advanced search cannot be combined with the quick search",
1544
+ "customer-space_search-page_skip-button--label": "Ignore this step",
1545
+ "customer-space_search-results_associate-to-sale--label": "Link to the sale",
1546
+ "customer-space_shopping-detail_add--btn": "Add my list to the basket",
1547
+ "customer-space_shopping-detail_add-notification-addtocart--text": "Your shopping list has been added to your basket",
1548
+ "customer-space_shopping-detail_add-notification-delete--text": "Your shopping list has been deleted",
1549
+ "customer-space_shopping-detail_add-notification-rename--text": "Your shopping list has been renamed",
1550
+ "customer-space_shopping-detail_column-price--title": "Price per unit",
1551
+ "customer-space_shopping-detail_column-product--text": "Product | Products",
1552
+ "customer-space_shopping-detail_column-product--title": "Product",
1553
+ "customer-space_shopping-detail_column-qty--title": "Quantity",
1554
+ "customer-space_shopping-detail_column-total--title": "Total",
1555
+ "customer-space_shopping-detail_delete--btn": "Delete my list",
1556
+ "customer-space_shopping-detail_export-csv--btn": "CSV export",
1557
+ "customer-space_shopping-detail_loyalty_CM--btn": "Download my Carte Maison",
1558
+ "customer-space_shopping-detail_loyalty_CM--title": "My Carte Maison",
1559
+ "customer-space_shopping-detail_loyalty_description_CM--text": "When paying in store, present your Carte Maison to update your purchase history and enjoy a 12-month receipt-free goods return",
1560
+ "customer-space_shopping-detail_loyalty_description_PM--text": "When paying in store, present your Pass'Maison to update your purchase history and benefit from a 12-month receipt-free goods return",
1561
+ "customer-space_shopping-detail_loyalty_PM--btn": "Download my Maison",
1562
+ "customer-space_shopping-detail_loyalty_PM--title": "My Pass' Maison",
1563
+ "customer-space_shopping-detail_notification--text": "Your list does not yet contain any products",
1564
+ "customer-space_shopping-detail_print--btn": "Print",
1565
+ "customer-space_shopping-detail_product_delete--btn": "Delete",
1566
+ "customer-space_shopping-detail_product-price-unit--text": "/ unit",
1567
+ "customer-space_shopping-detail_product-ref--label": "ref: {productId}",
1568
+ "customer-space_shopping-detail_product-ref--text": "Ref",
1569
+ "customer-space_shopping-detail_product-total--text": "Total for my list",
1570
+ "customer-space_shopping-detail_rename--btn": "Rename",
1571
+ "customer-space_shopping-detail_subtitle--title": "My list",
1572
+ "customer-space_shopping-detail--title": "My shopping list",
1573
+ "customer-space_shopping-details_route--url": "details",
1574
+ "customer-space_shopping-list_create--btn": "Create a shopping list",
1575
+ "customer-space_shopping-list_create-description--text": "Create a shopping list and find your favourite items to simplify your next purchases.",
1576
+ "customer-space_shopping-list_date--text": "Created on",
1577
+ "customer-space_shopping-list_delete--btn": "Delete",
1578
+ "customer-space_shopping-list_number--text": "article",
1579
+ "customer-space_shopping-list_numbers--text": "articles",
1580
+ "customer-space_shopping-list_rename--btn": "Rename",
1581
+ "customer-space_shopping-list_route--url": "shopping-lists",
1582
+ "customer-space_shopping-list--link": "See the list",
1583
+ "customer-space_shopping-list--title": "My shopping lists",
1584
+ "customer-space_shopping-list-empty--btn": "Create my first list",
1585
+ "customer-space_shopping-list-empty--paragraph": "Find your favourite product lists and add them to your shopping basket in one click.",
1586
+ "customer-space_shopping-list-empty--title": "You do not have a saved shopping list",
1587
+ "customer-space_shopping-list-layer-create_cancel--btn": "Cancel",
1588
+ "customer-space_shopping-list-layer-create_field--label": "Name of your shopping list",
1589
+ "customer-space_shopping-list-layer-create_validate--btn": "Create my list",
1590
+ "customer-space_shopping-list-layer-create--title": "Create a shopping list",
1591
+ "customer-space_shopping-list-layer-delete_cancel--btn": "Cancel",
1592
+ "customer-space_shopping-list-layer-delete_info-part1--text": "This list contains",
1593
+ "customer-space_shopping-list-layer-delete_info-part2--text": "product",
1594
+ "customer-space_shopping-list-layer-delete_infos-part2--text": "products",
1595
+ "customer-space_shopping-list-layer-delete_validate--btn": "Delete my list",
1596
+ "customer-space_shopping-list-layer-delete--subTitle": "Do you really want to delete your list:",
1597
+ "customer-space_shopping-list-layer-delete--title": "Delete the list",
1598
+ "customer-space_shopping-list-layer-rename_cancel--btn": "Cancel",
1599
+ "customer-space_shopping-list-layer-rename_field--label": "List name",
1600
+ "customer-space_shopping-list-layer-rename_validate--btn": "Rename the list",
1601
+ "customer-space_shopping-list-layer-rename--title": "Rename the list",
1602
+ "customer-space_show-details--link": "See more information",
1603
+ "customer-space_stepper_step--label": "Step",
1604
+ "customer-space_switch-to-pro_step-1-route--text": "/switch-to-pro-account",
1605
+ "customer-space_switch-to-pro-error-notification-title--text": "An error occurred when the account was switched.",
1606
+ "customer-space_technical-info_customer_last-login--text": "Date of last login",
1607
+ "customer-space_technical-info_customer_logins-count--text": "Number of logins",
1608
+ "customer-space_technical-info_customer--account-status": "Account status",
1609
+ "customer-space_technical-info_customer--account-status-actif": "Active",
1610
+ "customer-space_technical-info_customer--forum-id": "Forum login",
1611
+ "customer-space_technical-info_customer-number--account-number": "Account number",
1612
+ "customer-space_technical-info_customer-number--createdAt": "Creation date",
1613
+ "customer-space_technical-info_customer-number--label": "Customer number",
1614
+ "customer-space_technical-info_customer-number--login": "Customer login",
1615
+ "customer-space_text-expand_show-less--label": "Show less",
1616
+ "customer-space_text-expand_show-more--label": "Show more",
1617
+ "customer-space_unauthorized-page_access-denied--title": "Access denied…",
1618
+ "customer-space_unauthorized-page-access-denied--description": "You do not have sufficient rights to access this page. To request access to this page, you can contact support on 8001.",
1619
+ "customer-space_unauthorized-page-button": "Back to a safe place",
1620
+ "customer-space_unauthorized-page-description": "You do not have the rights to access the requested page.",
1621
+ "customer-space_unauthorized-page-title": "You do not have access to the requested page",
1622
+ "customer-space_unknown-error-page-button": "Back to home page",
1623
+ "customer-space_unknown-error-page-description": "The page you requested has encountered an error. Please try again later.",
1624
+ "customer-space_unknown-error-page-title": "An error has occurred.",
1625
+ "customer-space_video-player_hide--label": "Stop displaying",
1626
+ "customer-space_video-player--text": "Access the employee customer area more quickly with ELO! Find out how it works on video.",
1627
+ "customer-space_video-player--title": "The customer area is changing!",
1628
+ "customer-space_watch-video-of-meaning--text": "Tutorial",
1629
+ "customer-space_zip-code-field_invalid-error--text": "This postcode does not exist.",
1630
+ "customer-space--form_btn-validate--text": "Confirm",
1631
+ "customer-space-account-civility_men--text": "Mr",
1632
+ "customer-space-account-civility_women---text": "Ms",
1633
+ "customer-space-account-civility--text": "Salutation",
1634
+ "customer-space-account-distinction_individual--text": "Individual",
1635
+ "customer-space-account-distinction_professional_business_name--label": "Company name",
1636
+ "customer-space-account-distinction_professional_legal_entity--label": "Legal entity",
1637
+ "customer-space-account-distinction_professional--text": "Business",
1638
+ "customer-space-account-distinction_professional--text (Copy)": "Business",
1639
+ "customer-space-account-not-found": "We have not found an account linked to this email address:",
1640
+ "customer-space-addresses_layer-select_store--label": "Select a store",
1641
+ "customer-space-addresses_layer-street_number--label": "Street number, street name",
1642
+ "customer-space-adherent-card-information_success-toast--text": "The information has been successfully updated",
1643
+ "customer-space-adherent-card-information_success-toast--title": "Update personal information",
1644
+ "customer-space-adherent-card-information_warning-toast--title": "Error updating personal information",
1645
+ "customer-space-adherent-card-subscription_danger-toast--text": "Signup for your Carte Maison failed, please try again later",
1646
+ "customer-space-adherent-card-subscription_danger-toast--title": "An error has occurred, please try again",
1647
+ "customer-space-adherent-card-subscription_success-toast--text": "To activate your card, you will be asked to pay €9 when you next visit the store",
1648
+ "customer-space-adherent-card-subscription_success-toast--title": "Thank you for signing up!",
1649
+ "customer-space-adherent-card-subscription-l&m_danger-toast--text": "Program {program} membership failed; please try again later",
1650
+ "customer-space-adherent-card-subscription-l&m_success-toast--text": "Thank you for joining the {program} loyalty programme. Collect points and get all your advantages now.",
1651
+ "customer-space-adherent-communication-accept-commercial-offers--subtitle": "I would like to receive information and commercial offers from Leroy Merlin:",
1652
+ "customer-space-adherent-communication-accept-commercial-offers--title": "Offers and good deals",
1653
+ "customer-space-adherent-communication-accept-terms-of-use": "general terms and conditions of use",
1654
+ "customer-space-adherent-communication-accept-terms-of-use--label": "I accept the {terms and conditions} of the Carte Maison",
1655
+ "customer-space-adherent-communication-accept-terms-of-use--text": "Dichiaro di accettare {link} di adesione al Programma {label}, la community e il Sito*",
1656
+ "customer-space-adherent-communication-accept-terms-of-use-cm": "general terms and conditions of use",
1657
+ "customer-space-adherent-communication-accept-terms-of-use-l&m--label": "I accept the {conditions} of the Leroy&moi card",
1658
+ "customer-space-adherent-communication-accept-terms-of-use-l&m--label (Copy)": "I accept the {conditions} of the Leroy&moi card",
1659
+ "customer-space-adherent-communication-accept-terms-of-use-l&m-pro--label": "I accept the {conditions} of the Leroy&moi Pro card",
1660
+ "customer-space-adherent-communication-accept-terms-of-use-link--label": "informativa sul trattamento dei dati",
1661
+ "customer-space-adherent-communication-gdpr--text": "In accordance with the French Data Protection Act of January 6, 1978, you have the right to access, modify, rectify and delete data concerning you. Please address such requests to: Leroy Merlin, service Commerce E",
1662
+ "customer-space-adherent-communication-rgpd_privacy-policy-link--label": "sulla Protezione dei Dati (EU) 2016/679",
1663
+ "customer-space-adherent-communication-rgpd_privacy-policy-link-pdf--label": "della Privacy Policy del Marketplace",
1664
+ "customer-space-adherent-communication-rgpd-link--label": "sulla Protezione dei Dati (EU) 2016/679*",
1665
+ "customer-space-adherent-personnal-data_address--title": "Address",
1666
+ "customer-space-adherent-personnal-data_company--title": "Company",
1667
+ "customer-space-adherent-personnal-data-phone_description--text": "Telephone number needed to use your advantages if you forget your card at the checkout.",
1668
+ "customer-space-adherent-rental-resident_dwelling-apartment_option---text": "Flat",
1669
+ "customer-space-adherent-rental-resident_dwelling-house_option---text": "House",
1670
+ "customer-space-adherent-rental-resident_dwelling-label--text": "What type of home do you live in?",
1671
+ "customer-space-adherent-rental-resident_garder-label--text": "Do you have a garden?",
1672
+ "customer-space-adherent-rental-resident_rental-label--text": "You are…",
1673
+ "customer-space-adherent-rental-resident_rental-owner_option---text": "Owner",
1674
+ "customer-space-adherent-rental-resident_rental-tenant_option---text": "Tenant",
1675
+ "customer-space-adherent-stepper-choose-loyalty-step--item--text": "Choice of loyalty programme",
1676
+ "customer-space-adherent-stepper-first-step--item--text": "My personal information",
1677
+ "customer-space-adherent-stepper-last-step--item--text": "We would like to contact you",
1678
+ "customer-space-adherent-stepper-second-step--item--text": "Your home",
1679
+ "customer-space-admin_block-account_success--text": "The {index} customer area has been successfully blocked.",
1680
+ "customer-space-admin_block-account_success--title": "Blocked web account",
1681
+ "customer-space-admin_dashboard-header_search--label": "New search",
1682
+ "customer-space-admin_delete-web-account_success--text": "The {index} web account has been successfully deleted.",
1683
+ "customer-space-admin_delete-web-account_success--title": "Customer area deleted",
1684
+ "customer-space-admin_loyalty-page--title": "Loyalty",
1685
+ "customer-space-admin_resend-activation-mail_success--text": "The activation email has been successfully sent.",
1686
+ "customer-space-admin_resend-activation-mail_success--title": "Activation email sent",
1687
+ "customer-space-admin_reset-password_success--text": "The password for the {index} web account has been successfully reset.",
1688
+ "customer-space-admin_reset-password_success--title": "Reset password",
1689
+ "customer-space-admin_search-page_pre-creation_success--title": "The account has been pre-created.",
1690
+ "customer-space-admin_unblock-account_success--text": "The {index} customer area has been successfully unlocked.",
1691
+ "customer-space-admin_unblock-account_success--title": "Customer area unlocked",
1692
+ "customer-space-confirm-password--label": "Confirm password",
1693
+ "customer-space-create-account__form-error-matching-password": "Passwords must be identical",
1694
+ "customer-space-create-account_customerNumber_form-error_caracters-limit--text": "The character limit was exceeded.",
1695
+ "customer-space-create-account_customerNumber_form-error_numeric-only--text": "This field does not comply with the expected format: numeric characters only.",
1696
+ "customer-space-create-account_customerNumber-input--label": "Customer number / Carte Maison number",
1697
+ "customer-space-create-account_name_form-error--text": "One or more characters do not comply with the requested format",
1698
+ "customer-space-display": "View",
1699
+ "customer-space-email-account-not-found": "We have not found an account linked to the email address {mail}",
1700
+ "customer-space-form_btn-continue--text": "Continue",
1701
+ "customer-space-form_btn-get_past_this_stage--text": "Skip this step",
1702
+ "customer-space-hide": "Hide",
1703
+ "customer-space-item-no": "no",
1704
+ "customer-space-item-stepper_step": "Step",
1705
+ "customer-space-item-yes": "yes",
1706
+ "customer-space-password_rules--text": "At least 8 characters, 1 upper-case, 1 lower-case, 1 number",
1707
+ "customer-space-password--label": "Password",
1708
+ "customer-space-personal-data_account-company-legal-form--placeholder": "Choose your legal entity",
1709
+ "customer-space-phone_description--text": "To track your order and facilitate delivery",
1710
+ "customer-space-step-communication-radio-control-newsletter-email--label": "Email",
1711
+ "customer-space-step-communication-radio-control-newsletter-postal-mail--label": "Mail",
1712
+ "customer-space-step-communication-radio-control-newsletter-sms--label": "SMS",
1713
+ "customer-space-store--label": "Store",
1714
+ "loyalty-coowner-invitation-notification--description": "My funding",
1715
+ "loyalty-coowner-invitation-notification--link": "See the invitation",
1716
+ "loyalty-coowner-invitation-notification--title": "{firstName} {lastName} invites you to participate\nits Leroy Melrin loyalty program",
1717
+ "common_button_macro--ATC-text": "Add to basket",
1718
+ "common_form_macro--criterion-to-validate": "Criterion to be confirmed",
1719
+ "common_form_macro--default-mismatch-message": "This field does not comply with the expected format: ",
1720
+ "common_form_macro--default-missing-message": "This field is mandatory",
1721
+ "common_form_macro--error-email": "the field must contain {'@'} and an extension such as .fr or .com",
1722
+ "common_form_macro--error-password": "the password must have at least 6 characters, including at least one letter and one number",
1723
+ "common_form_macro--file-delete": "Delete the attached file",
1724
+ "common_form_macro--file-upload": "Please choose a file to upload",
1725
+ "common_form_macro--mandatory": "mandatory",
1726
+ "common_form_macro--rating-star-opinion": "No review given",
1727
+ "common_form_macro--text-area-placeholder": "Your text here…",
1728
+ "common_layer_macro--close": "Close",
1729
+ "common_modal_macro--close": "Close",
1730
+ "common_pagination_macro--navigation-tag-aria-label": "pagination",
1731
+ "common_pagination_macro--next-button": "Next page",
1732
+ "common_pagination_macro--page-number-word": "of",
1733
+ "common_pagination_macro--prev-button": "Previous page",
1734
+ "common_quantity-selector_macro--Minus-arialabel": "Decrement",
1735
+ "common_quantity-selector_macro--Plus-arialabel": "Increment",
1736
+ "common_ratingstars_macro--global-score": "Overall score:",
1737
+ "common_ratingstars_macro--score-number-word": " stars out of",
1738
+ "common_stepper_macro--step": "Step",
1739
+ "common_tag_macro--remove-btn-aria-label": "delete",
1740
+ "common-tooltip_aria-label--text": "Further information",
1741
+ "customer-space_consents__phone--label":"Phone",
1742
+ "customer-space_consents__mail--label": "E-mail",
1743
+ "customer-space_consents__postalMail--label": "Address"
1744
+ }