@tap-payments/auth-jsconnect 2.6.8-test → 2.6.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (668) hide show
  1. package/README.md +1 -1
  2. package/build/@types/app.d.ts +73 -18
  3. package/build/@types/app.js +19 -1
  4. package/build/@types/config.d.ts +49 -0
  5. package/build/@types/config.js +1 -0
  6. package/build/@types/form.d.ts +18 -3
  7. package/build/@types/index.d.ts +1 -0
  8. package/build/@types/index.js +1 -0
  9. package/build/@types/redux.d.ts +1 -0
  10. package/build/@types/theme.d.ts +4 -0
  11. package/build/@types/theme.js +5 -0
  12. package/build/api/account.d.ts +6 -0
  13. package/build/api/account.js +16 -2
  14. package/build/api/auth.d.ts +44 -2
  15. package/build/api/auth.js +18 -1
  16. package/build/api/availabilityServices.d.ts +1 -0
  17. package/build/api/country.d.ts +1 -0
  18. package/build/api/country.js +8 -1
  19. package/build/api/data.d.ts +4 -17
  20. package/build/api/data.js +5 -45
  21. package/build/api/entity.d.ts +28 -3
  22. package/build/api/entity.js +23 -10
  23. package/build/api/firebase.js +68 -8
  24. package/build/api/index.d.ts +24 -29
  25. package/build/api/lead.d.ts +27 -3
  26. package/build/api/lead.js +63 -1
  27. package/build/api/operator.d.ts +6 -3
  28. package/build/api/operator.js +4 -16
  29. package/build/api/user.d.ts +7 -0
  30. package/build/api/user.js +9 -1
  31. package/build/app/rootReducer.d.ts +2 -0
  32. package/build/app/rootReducer.js +5 -1
  33. package/build/app/settings.d.ts +13 -6
  34. package/build/app/settings.js +118 -78
  35. package/build/app/store.d.ts +4 -0
  36. package/build/assets/locales/ar.json +351 -143
  37. package/build/assets/locales/en.json +347 -142
  38. package/build/components/AnimationFlow/AnimationFlow.d.ts +14 -3
  39. package/build/components/AnimationFlow/AnimationFlow.js +16 -5
  40. package/build/components/AnimationFlow/BottomSheet.d.ts +7 -2
  41. package/build/components/AnimationFlow/BottomSheet.js +44 -15
  42. package/build/components/AnimationFlow/Dialog.d.ts +11 -2
  43. package/build/components/AnimationFlow/Dialog.js +10 -12
  44. package/build/components/AnimationFlow/Loader.d.ts +6 -1
  45. package/build/components/AnimationFlow/Loader.js +17 -5
  46. package/build/components/ArabicDatePicker/ArabicDatePicker.d.ts +1 -1
  47. package/build/components/ArabicDatePicker/ArabicDatePicker.js +2 -2
  48. package/build/components/ArabicDatePicker/style.css +32 -3
  49. package/build/components/DatePicker/DatePicker.d.ts +1 -1
  50. package/build/components/DatePicker/DatePicker.js +2 -2
  51. package/build/components/ExpandIcon/ExpandIcon.d.ts +2 -0
  52. package/build/components/Footer/Footer.js +2 -1
  53. package/build/components/Input/Input.js +1 -1
  54. package/build/components/Providers/ThemeProvider.js +3 -3
  55. package/build/components/Slide/Slide.d.ts +1 -1
  56. package/build/components/Tooltip/Tooltip.js +1 -1
  57. package/build/constants/api.d.ts +9 -7
  58. package/build/constants/api.js +19 -15
  59. package/build/constants/app.d.ts +62 -0
  60. package/build/constants/app.js +480 -25
  61. package/build/constants/assets.d.ts +4 -0
  62. package/build/constants/assets.js +5 -1
  63. package/build/constants/dummy.d.ts +43 -196
  64. package/build/constants/dummy.js +614 -6141
  65. package/build/constants/flows.d.ts +24 -0
  66. package/build/constants/flows.js +25 -0
  67. package/build/constants/index.d.ts +1 -0
  68. package/build/constants/index.js +1 -0
  69. package/build/constants/validation.d.ts +5 -0
  70. package/build/constants/validation.js +6 -1
  71. package/build/features/app/auth/authStore.d.ts +103 -0
  72. package/build/features/app/auth/authStore.js +1184 -0
  73. package/build/features/app/bank/bankStore.d.ts +13 -18
  74. package/build/features/app/bank/bankStore.js +194 -161
  75. package/build/features/app/board/boardStore.d.ts +33 -0
  76. package/build/features/app/board/boardStore.js +269 -0
  77. package/build/features/app/brand/brandStore.d.ts +17 -31
  78. package/build/features/app/brand/brandStore.js +272 -266
  79. package/build/features/app/business/businessStore.d.ts +37 -10
  80. package/build/features/app/business/businessStore.js +469 -218
  81. package/build/features/app/connect/connectStore.d.ts +46 -15
  82. package/build/features/app/connect/connectStore.js +419 -217
  83. package/build/features/app/connectExpress/connectExpressStore.d.ts +70 -29
  84. package/build/features/app/connectExpress/connectExpressStore.js +876 -383
  85. package/build/features/app/entity/entityStore.d.ts +20 -34
  86. package/build/features/app/entity/entityStore.js +224 -249
  87. package/build/features/app/individual/individualStore.d.ts +22 -32
  88. package/build/features/app/individual/individualStore.js +331 -290
  89. package/build/features/app/password/passwordStore.d.ts +33 -18
  90. package/build/features/app/password/passwordStore.js +263 -223
  91. package/build/features/app/signIn/signInStore.js +19 -15
  92. package/build/features/app/tax/taxStore.d.ts +13 -7
  93. package/build/features/app/tax/taxStore.js +178 -144
  94. package/build/features/auth/Auth.d.ts +14 -0
  95. package/build/features/auth/Auth.js +168 -0
  96. package/build/features/auth/index.d.ts +1 -0
  97. package/build/features/auth/index.js +1 -0
  98. package/build/features/auth/screens/AccountCreatedLoader/AccountCreatedLoader.d.ts +5 -0
  99. package/build/features/auth/screens/AccountCreatedLoader/AccountCreatedLoader.js +36 -0
  100. package/build/features/auth/screens/AccountCreatedLoader/index.d.ts +2 -0
  101. package/build/features/auth/screens/AccountCreatedLoader/index.js +2 -0
  102. package/build/features/auth/screens/AccountNotFound/AccountNotFound.d.ts +5 -0
  103. package/build/features/auth/screens/AccountNotFound/AccountNotFound.js +71 -0
  104. package/build/features/auth/screens/AccountNotFound/index.d.ts +2 -0
  105. package/build/features/auth/screens/AccountNotFound/index.js +2 -0
  106. package/build/features/auth/screens/AuthMerchant/AuthMerchant.d.ts +5 -0
  107. package/build/features/auth/screens/AuthMerchant/AuthMerchant.js +73 -0
  108. package/build/features/{connectExpress/screens/AuthenticationList → auth/screens/AuthMerchant}/MerchantList.d.ts +2 -1
  109. package/build/features/auth/screens/AuthMerchant/MerchantList.js +64 -0
  110. package/build/features/auth/screens/AuthMerchant/index.d.ts +2 -0
  111. package/build/features/auth/screens/AuthMerchant/index.js +2 -0
  112. package/build/features/auth/screens/AuthMerchant/validation.d.ts +8 -0
  113. package/build/features/auth/screens/AuthMerchant/validation.js +4 -0
  114. package/build/features/auth/screens/AuthSwitch/AuthSwitch.d.ts +5 -0
  115. package/build/features/auth/screens/AuthSwitch/AuthSwitch.js +58 -0
  116. package/build/features/auth/screens/AuthSwitch/index.d.ts +3 -0
  117. package/build/features/auth/screens/AuthSwitch/index.js +2 -0
  118. package/build/features/auth/screens/AuthenticationList/AuthenticationList.d.ts +5 -0
  119. package/build/features/auth/screens/AuthenticationList/AuthenticationList.js +96 -0
  120. package/build/features/auth/screens/AuthenticationList/BrandList.d.ts +10 -0
  121. package/build/features/auth/screens/AuthenticationList/BrandList.js +81 -0
  122. package/build/features/auth/screens/AuthenticationList/EntityLegalName.d.ts +3 -0
  123. package/build/features/auth/screens/AuthenticationList/EntityLegalName.js +48 -0
  124. package/build/features/auth/screens/AuthenticationList/EntityLicenseType.d.ts +31 -0
  125. package/build/features/auth/screens/AuthenticationList/EntityLicenseType.js +90 -0
  126. package/build/features/auth/screens/AuthenticationList/EntityList.d.ts +11 -0
  127. package/build/features/auth/screens/AuthenticationList/EntityList.js +138 -0
  128. package/build/features/auth/screens/AuthenticationList/LicenseNumber.d.ts +3 -0
  129. package/build/features/auth/screens/AuthenticationList/LicenseNumber.js +36 -0
  130. package/build/features/auth/screens/AuthenticationList/index.d.ts +3 -0
  131. package/build/features/auth/screens/AuthenticationList/index.js +2 -0
  132. package/build/features/auth/screens/AuthenticationList/validation.d.ts +20 -0
  133. package/build/features/auth/screens/AuthenticationList/validation.js +68 -0
  134. package/build/features/auth/screens/BusinessCountry/BusinessCountry.d.ts +5 -0
  135. package/build/features/auth/screens/BusinessCountry/BusinessCountry.js +111 -0
  136. package/build/features/auth/screens/BusinessCountry/index.d.ts +3 -0
  137. package/build/features/auth/screens/BusinessCountry/index.js +2 -0
  138. package/build/features/auth/screens/CivilID/CivilID.d.ts +5 -0
  139. package/build/features/auth/screens/CivilID/CivilID.js +57 -0
  140. package/build/features/auth/screens/CivilID/IDNumber.d.ts +8 -0
  141. package/build/features/auth/screens/CivilID/IDNumber.js +54 -0
  142. package/build/features/auth/screens/CivilID/index.d.ts +3 -0
  143. package/build/features/auth/screens/CivilID/index.js +2 -0
  144. package/build/features/auth/screens/CivilID/validation.d.ts +8 -0
  145. package/build/features/auth/screens/CivilID/validation.js +4 -0
  146. package/build/features/auth/screens/DOB/DOB.js +47 -0
  147. package/build/features/auth/screens/DOB/DOBForm.d.ts +5 -0
  148. package/build/features/auth/screens/DOB/DOBForm.js +59 -0
  149. package/build/features/auth/screens/DOB/index.d.ts +3 -0
  150. package/build/features/auth/screens/DOB/index.js +2 -0
  151. package/build/features/auth/screens/DOB/validation.d.ts +8 -0
  152. package/build/features/auth/screens/DOB/validation.js +4 -0
  153. package/build/features/auth/screens/Email/Email.d.ts +5 -0
  154. package/build/features/auth/screens/Email/Email.js +57 -0
  155. package/build/features/auth/screens/Email/EmailField.d.ts +8 -0
  156. package/build/features/auth/screens/Email/EmailField.js +52 -0
  157. package/build/features/auth/screens/Email/index.d.ts +3 -0
  158. package/build/features/auth/screens/Email/index.js +2 -0
  159. package/build/features/auth/screens/Email/validation.d.ts +8 -0
  160. package/build/features/auth/screens/Email/validation.js +4 -0
  161. package/build/features/auth/screens/EmailSent/EmailSent.d.ts +5 -0
  162. package/build/features/auth/screens/EmailSent/EmailSent.js +79 -0
  163. package/build/features/auth/screens/EmailSent/index.d.ts +2 -0
  164. package/build/features/auth/screens/EmailSent/index.js +2 -0
  165. package/build/features/auth/screens/MigratingData/MigratingData.d.ts +5 -0
  166. package/build/features/auth/screens/MigratingData/MigratingData.js +44 -0
  167. package/build/features/auth/screens/MigratingData/index.d.ts +2 -0
  168. package/build/features/auth/screens/MigratingData/index.js +2 -0
  169. package/build/features/auth/screens/Mobile/Mobile.d.ts +5 -0
  170. package/build/features/auth/screens/Mobile/Mobile.js +82 -0
  171. package/build/features/auth/screens/Mobile/MobileNumber.d.ts +13 -0
  172. package/build/features/auth/screens/Mobile/MobileNumber.js +156 -0
  173. package/build/features/auth/screens/Mobile/index.d.ts +3 -0
  174. package/build/features/auth/screens/Mobile/index.js +2 -0
  175. package/build/features/auth/screens/Mobile/validation.d.ts +8 -0
  176. package/build/features/auth/screens/Mobile/validation.js +38 -0
  177. package/build/features/auth/screens/NID/IDNumber.d.ts +7 -0
  178. package/build/features/auth/screens/NID/IDNumber.js +55 -0
  179. package/build/features/auth/screens/NID/NID.d.ts +5 -0
  180. package/build/features/auth/screens/NID/NID.js +56 -0
  181. package/build/features/auth/screens/NID/index.d.ts +3 -0
  182. package/build/features/auth/screens/NID/index.js +2 -0
  183. package/build/features/auth/screens/NID/validation.d.ts +8 -0
  184. package/build/features/auth/screens/NID/validation.js +10 -0
  185. package/build/features/auth/screens/OTP/OTP.js +118 -0
  186. package/build/features/{connectExpress/screens/IdentityOTP → auth/screens/OTP}/OTPInput.js +27 -7
  187. package/build/features/auth/screens/OperatorError/OperatorError.d.ts +5 -0
  188. package/build/features/auth/screens/OperatorError/OperatorError.js +9 -0
  189. package/build/features/auth/screens/OperatorError/index.d.ts +3 -0
  190. package/build/features/auth/screens/OperatorError/index.js +2 -0
  191. package/build/features/auth/screens/Password/Password.d.ts +5 -0
  192. package/build/features/auth/screens/Password/Password.js +61 -0
  193. package/build/features/auth/screens/Password/PasswordField.d.ts +5 -0
  194. package/build/features/auth/screens/Password/PasswordField.js +28 -0
  195. package/build/features/auth/screens/Password/index.d.ts +3 -0
  196. package/build/features/auth/screens/Password/index.js +2 -0
  197. package/build/features/auth/screens/Password/validation.d.ts +8 -0
  198. package/build/features/auth/screens/Password/validation.js +4 -0
  199. package/build/features/auth/screens/PreparingData/PreparingData.d.ts +5 -0
  200. package/build/features/auth/screens/PreparingData/PreparingData.js +44 -0
  201. package/build/features/auth/screens/PreparingData/index.d.ts +2 -0
  202. package/build/features/auth/screens/PreparingData/index.js +2 -0
  203. package/build/features/auth/screens/ResetPasswordMessage/ResetPasswordMessage.d.ts +5 -0
  204. package/build/features/auth/screens/ResetPasswordMessage/ResetPasswordMessage.js +21 -0
  205. package/build/features/auth/screens/ResetPasswordMessage/index.d.ts +3 -0
  206. package/build/features/auth/screens/ResetPasswordMessage/index.js +2 -0
  207. package/build/features/auth/screens/VerifyNafath/VerifyNafath.d.ts +5 -0
  208. package/build/features/auth/screens/VerifyNafath/VerifyNafath.js +35 -0
  209. package/build/features/auth/screens/VerifyNafath/index.d.ts +3 -0
  210. package/build/features/auth/screens/VerifyNafath/index.js +2 -0
  211. package/build/features/auth/screens/VerifyPACI/VerifyPACI.d.ts +5 -0
  212. package/build/features/auth/screens/VerifyPACI/VerifyPACI.js +34 -0
  213. package/build/features/auth/screens/VerifyPACI/index.d.ts +3 -0
  214. package/build/features/auth/screens/VerifyPACI/index.js +2 -0
  215. package/build/features/bank/Bank.d.ts +6 -1
  216. package/build/features/bank/Bank.js +26 -12
  217. package/build/features/bank/screens/BankDetails/BankDetails.js +21 -7
  218. package/build/features/bank/screens/OperatorError/OperatorError.d.ts +5 -0
  219. package/build/features/bank/screens/OperatorError/OperatorError.js +9 -0
  220. package/build/features/bank/screens/OperatorError/index.d.ts +3 -0
  221. package/build/features/bank/screens/OperatorError/index.js +2 -0
  222. package/build/features/bank/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +2 -3
  223. package/build/features/bank/screens/Verify/Verify.js +8 -7
  224. package/build/features/board/Board.d.ts +13 -0
  225. package/build/features/board/Board.js +87 -0
  226. package/build/features/board/index.d.ts +1 -0
  227. package/build/features/board/index.js +1 -0
  228. package/build/features/board/screens/OperatorError/OperatorError.d.ts +5 -0
  229. package/build/features/board/screens/OperatorError/OperatorError.js +9 -0
  230. package/build/features/board/screens/OperatorError/index.d.ts +3 -0
  231. package/build/features/board/screens/OperatorError/index.js +2 -0
  232. package/build/features/board/screens/PrepareDataLoading/PrepareDataLoading.d.ts +4 -0
  233. package/build/features/board/screens/PrepareDataLoading/PrepareDataLoading.js +10 -0
  234. package/build/features/board/screens/PrepareDataLoading/index.d.ts +2 -0
  235. package/build/features/board/screens/PrepareDataLoading/index.js +2 -0
  236. package/build/features/board/screens/ResetPasswordSuccess/ResetPasswordSuccess.d.ts +5 -0
  237. package/build/features/board/screens/ResetPasswordSuccess/ResetPasswordSuccess.js +21 -0
  238. package/build/features/board/screens/ResetPasswordSuccess/index.d.ts +3 -0
  239. package/build/features/board/screens/ResetPasswordSuccess/index.js +2 -0
  240. package/build/features/board/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.d.ts +3 -0
  241. package/build/features/board/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +44 -0
  242. package/build/features/board/screens/SuccessWithFlowButtons/index.d.ts +2 -0
  243. package/build/features/board/screens/SuccessWithFlowButtons/index.js +2 -0
  244. package/build/features/board/screens/Verify/OTPInput.d.ts +7 -0
  245. package/build/features/{business/screens/OTP → board/screens/Verify}/OTPInput.js +9 -7
  246. package/build/features/{connectExpress/screens/IdentityOTP/OTP.js → board/screens/Verify/Verify.js} +25 -37
  247. package/build/features/board/screens/Verify/index.d.ts +2 -0
  248. package/build/features/board/screens/Verify/index.js +2 -0
  249. package/build/features/brand/Brand.d.ts +6 -1
  250. package/build/features/brand/Brand.js +26 -12
  251. package/build/features/brand/screens/BrandActivities/ActivitiesList.d.ts +9 -9
  252. package/build/features/brand/screens/BrandActivities/BrandActivities.js +49 -12
  253. package/build/features/brand/screens/BrandActivities/CustomerBase.d.ts +6 -6
  254. package/build/features/brand/screens/BrandActivities/CustomerBase.js +1 -1
  255. package/build/features/brand/screens/BrandActivities/ExpectedSalesRange.js +5 -2
  256. package/build/features/brand/screens/BrandActivities/RefundPolicy.d.ts +4 -4
  257. package/build/features/brand/screens/BrandActivities/RefundPolicy.js +1 -1
  258. package/build/features/brand/screens/BrandActivities/TAC.d.ts +1 -1
  259. package/build/features/brand/screens/BrandActivities/TAC.js +1 -1
  260. package/build/features/brand/screens/BrandActivities/TransactionPolicy.js +1 -1
  261. package/build/features/brand/screens/BrandInfo/BrandInfo.js +27 -7
  262. package/build/features/brand/screens/BrandInfo/BrandName.js +5 -2
  263. package/build/features/brand/screens/BrandInfo/validation.js +2 -2
  264. package/build/features/brand/screens/BrandSegmentInfo/BrandSegmentInfo.js +23 -7
  265. package/build/features/brand/screens/OperatorError/OperatorError.d.ts +5 -0
  266. package/build/features/brand/screens/OperatorError/OperatorError.js +9 -0
  267. package/build/features/brand/screens/OperatorError/index.d.ts +3 -0
  268. package/build/features/brand/screens/OperatorError/index.js +2 -0
  269. package/build/features/brand/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +2 -3
  270. package/build/features/brand/screens/Verify/Verify.js +4 -3
  271. package/build/features/business/Business.js +20 -12
  272. package/build/features/business/screens/Activities/Activities.js +27 -10
  273. package/build/features/business/screens/Activities/ActivitiesList.d.ts +4 -4
  274. package/build/features/business/screens/Activities/ActivitiesList.js +1 -1
  275. package/build/features/business/screens/Activities/OperationStartDate.d.ts +5 -3
  276. package/build/features/business/screens/Activities/OperationStartDate.js +2 -2
  277. package/build/features/business/screens/BrandDetails/SalesChannel.d.ts +2 -2
  278. package/build/features/business/screens/BusinessType/BusinessType.js +24 -8
  279. package/build/features/business/screens/BusinessType/EntityName.js +3 -3
  280. package/build/features/business/screens/BusinessType/LicenseList.js +3 -3
  281. package/build/features/business/screens/BusinessType/LicenseNumber.js +10 -9
  282. package/build/features/business/screens/BusinessType/LicenseType.d.ts +4 -4
  283. package/build/features/business/screens/BusinessType/validation.d.ts +10 -0
  284. package/build/features/business/screens/BusinessType/validation.js +16 -0
  285. package/build/features/business/screens/CivilID/CivilID.js +1 -1
  286. package/build/features/business/screens/Customers/CustomerLocations.d.ts +14 -12
  287. package/build/features/business/screens/Customers/CustomerLocations.js +5 -3
  288. package/build/features/business/screens/Customers/Customers.js +51 -11
  289. package/build/features/business/screens/Customers/ExpectedCustomers.d.ts +3 -1
  290. package/build/features/business/screens/Customers/ExpectedCustomers.js +5 -3
  291. package/build/features/business/screens/Customers/ExpectedSalesRange.d.ts +3 -1
  292. package/build/features/business/screens/Customers/ExpectedSalesRange.js +10 -4
  293. package/build/features/business/screens/Customers/RefundPolicy.d.ts +12 -5
  294. package/build/features/business/screens/Customers/RefundPolicy.js +13 -13
  295. package/build/features/business/screens/Customers/TransactionPolicy.d.ts +4 -1
  296. package/build/features/business/screens/Customers/TransactionPolicy.js +8 -5
  297. package/build/features/business/screens/Customers/validation.d.ts +6 -6
  298. package/build/features/business/screens/Customers/validation.js +3 -8
  299. package/build/features/business/screens/DOB/DOB.d.ts +6 -0
  300. package/build/features/business/screens/DOB/DOB.js +45 -0
  301. package/build/features/business/screens/DOB/DOBForm.d.ts +5 -0
  302. package/build/features/business/screens/DOB/DOBForm.js +72 -0
  303. package/build/features/business/screens/DOB/index.d.ts +3 -0
  304. package/build/features/business/screens/DOB/index.js +2 -0
  305. package/build/features/business/screens/DOB/validation.d.ts +8 -0
  306. package/build/features/business/screens/DOB/validation.js +4 -0
  307. package/build/features/business/screens/IDBOD/ID.js +6 -2
  308. package/build/features/business/screens/IDBOD/IDBOD.js +18 -19
  309. package/build/features/business/screens/IDBOD/validation.d.ts +7 -0
  310. package/build/features/business/screens/IDBOD/validation.js +4 -1
  311. package/build/features/business/screens/MobileOwnership/CollectMobileOwnership.d.ts +3 -0
  312. package/build/features/business/screens/MobileOwnership/CollectMobileOwnership.js +105 -0
  313. package/build/features/business/screens/MobileOwnership/MobileNumber.d.ts +3 -0
  314. package/build/features/business/screens/MobileOwnership/MobileNumber.js +72 -0
  315. package/build/features/business/screens/MobileOwnership/index.d.ts +2 -0
  316. package/build/features/business/screens/MobileOwnership/index.js +2 -0
  317. package/build/features/business/screens/MobileOwnership/validation.d.ts +8 -0
  318. package/build/features/business/screens/MobileOwnership/validation.js +38 -0
  319. package/build/features/business/screens/OperatorError/OperatorError.d.ts +5 -0
  320. package/build/features/business/screens/OperatorError/OperatorError.js +9 -0
  321. package/build/features/business/screens/OperatorError/index.d.ts +3 -0
  322. package/build/features/business/screens/OperatorError/index.js +2 -0
  323. package/build/features/business/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +14 -3
  324. package/build/features/business/screens/Verify/Verify.js +16 -5
  325. package/build/features/business/screens/VerifyNafath/VerifyNafath.d.ts +5 -0
  326. package/build/features/business/screens/VerifyNafath/VerifyNafath.js +35 -0
  327. package/build/features/business/screens/VerifyNafath/index.d.ts +3 -0
  328. package/build/features/business/screens/VerifyNafath/index.js +2 -0
  329. package/build/features/connect/Connect.d.ts +5 -1
  330. package/build/features/connect/Connect.js +48 -31
  331. package/build/features/connect/screens/BrandSegment/BrandSegment.js +4 -26
  332. package/build/features/connect/screens/BrandSegment/TeamSize.js +1 -1
  333. package/build/features/connect/screens/BrandSegment/validation.d.ts +0 -9
  334. package/build/features/connect/screens/BrandSegment/validation.js +0 -3
  335. package/build/features/connect/screens/BusinessCountry/BusinessCountry.d.ts +5 -0
  336. package/build/features/connect/screens/BusinessCountry/BusinessCountry.js +113 -0
  337. package/build/features/connect/screens/BusinessCountry/index.d.ts +3 -0
  338. package/build/features/connect/screens/BusinessCountry/index.js +2 -0
  339. package/build/features/connect/screens/CivilID/CivilID.js +12 -4
  340. package/build/features/{connectExpress/screens/NID → connect/screens/DOB}/DOB.d.ts +1 -2
  341. package/build/features/connect/screens/{NID → DOB}/DOB.js +2 -2
  342. package/build/features/connect/screens/DOB/DOBForm.d.ts +5 -0
  343. package/build/features/connect/screens/DOB/DOBForm.js +59 -0
  344. package/build/features/connect/screens/DOB/index.d.ts +3 -0
  345. package/build/features/connect/screens/DOB/index.js +2 -0
  346. package/build/features/connect/screens/DOB/validation.d.ts +8 -0
  347. package/build/features/connect/screens/DOB/validation.js +4 -0
  348. package/build/features/connect/screens/Individual/Individual.js +12 -6
  349. package/build/features/connect/screens/Individual/MobileNumber.js +8 -7
  350. package/build/features/connect/screens/Individual/validation.js +11 -3
  351. package/build/features/connect/screens/Merchant/BrandList.js +3 -3
  352. package/build/features/connect/screens/Merchant/BrandName.js +5 -2
  353. package/build/features/connect/screens/Merchant/Merchant.js +1 -1
  354. package/build/features/connect/screens/Merchant/SalesChannels.js +1 -1
  355. package/build/features/connect/screens/Merchant/validation.js +2 -2
  356. package/build/features/connect/screens/Mobile/Mobile.js +14 -7
  357. package/build/features/connect/screens/Mobile/MobileNumber.js +15 -11
  358. package/build/features/connect/screens/Mobile/validation.js +11 -3
  359. package/build/features/connect/screens/MobileOwnership/CollectMobileOwnership.d.ts +3 -0
  360. package/build/features/connect/screens/MobileOwnership/CollectMobileOwnership.js +106 -0
  361. package/build/features/connect/screens/MobileOwnership/MobileNumber.d.ts +3 -0
  362. package/build/features/connect/screens/MobileOwnership/MobileNumber.js +72 -0
  363. package/build/features/connect/screens/MobileOwnership/index.d.ts +2 -0
  364. package/build/features/connect/screens/MobileOwnership/index.js +2 -0
  365. package/build/features/connect/screens/MobileOwnership/validation.d.ts +8 -0
  366. package/build/features/connect/screens/MobileOwnership/validation.js +38 -0
  367. package/build/features/connect/screens/NID/IDNumber.d.ts +1 -0
  368. package/build/features/connect/screens/NID/IDNumber.js +2 -2
  369. package/build/features/connect/screens/NID/NID.js +10 -13
  370. package/build/features/connect/screens/NID/validation.d.ts +0 -3
  371. package/build/features/connect/screens/NID/validation.js +0 -1
  372. package/build/features/connect/screens/OTP/OTP.js +7 -7
  373. package/build/features/connect/screens/OTP/OTPInput.js +3 -11
  374. package/build/features/connect/screens/OperatorError/OperatorError.d.ts +5 -0
  375. package/build/features/connect/screens/OperatorError/OperatorError.js +9 -0
  376. package/build/features/connect/screens/OperatorError/index.d.ts +3 -0
  377. package/build/features/connect/screens/OperatorError/index.js +2 -0
  378. package/build/features/connect/screens/VerifyNafath/VerifyNafath.d.ts +5 -0
  379. package/build/features/connect/screens/VerifyNafath/VerifyNafath.js +35 -0
  380. package/build/features/connect/screens/VerifyNafath/index.d.ts +3 -0
  381. package/build/features/connect/screens/VerifyNafath/index.js +2 -0
  382. package/build/features/connectExpress/ConnectExpress.d.ts +5 -2
  383. package/build/features/connectExpress/ConnectExpress.js +69 -36
  384. package/build/features/connectExpress/screens/AccountAlreadyCreated/AccountAlreadyCreated.js +14 -2
  385. package/build/features/connectExpress/screens/AccountCreatedLoader/AccountCreatedLoader.d.ts +5 -0
  386. package/build/features/connectExpress/screens/AccountCreatedLoader/AccountCreatedLoader.js +36 -0
  387. package/build/features/connectExpress/screens/AccountCreatedLoader/index.d.ts +2 -0
  388. package/build/features/connectExpress/screens/AccountCreatedLoader/index.js +2 -0
  389. package/build/features/connectExpress/screens/AuthMerchant/AuthMerchant.d.ts +5 -0
  390. package/build/features/connectExpress/screens/AuthMerchant/AuthMerchant.js +74 -0
  391. package/build/features/connectExpress/screens/{AuthenticationList/TerminalList.d.ts → AuthMerchant/MerchantList.d.ts} +4 -3
  392. package/build/features/connectExpress/screens/AuthMerchant/MerchantList.js +64 -0
  393. package/build/features/connectExpress/screens/AuthMerchant/index.d.ts +2 -0
  394. package/build/features/connectExpress/screens/AuthMerchant/index.js +2 -0
  395. package/build/features/connectExpress/screens/AuthMerchant/validation.d.ts +8 -0
  396. package/build/features/connectExpress/screens/AuthMerchant/validation.js +4 -0
  397. package/build/features/connectExpress/screens/AuthenticationList/AuthenticationList.js +28 -17
  398. package/build/features/connectExpress/screens/AuthenticationList/EntityLegalName.d.ts +3 -0
  399. package/build/features/connectExpress/screens/AuthenticationList/EntityLegalName.js +48 -0
  400. package/build/features/connectExpress/screens/AuthenticationList/EntityLicenseType.d.ts +31 -0
  401. package/build/features/connectExpress/screens/AuthenticationList/EntityLicenseType.js +90 -0
  402. package/build/features/connectExpress/screens/AuthenticationList/EntityList.d.ts +3 -3
  403. package/build/features/connectExpress/screens/AuthenticationList/EntityList.js +52 -10
  404. package/build/features/connectExpress/screens/AuthenticationList/LicenseNumber.d.ts +3 -0
  405. package/build/features/connectExpress/screens/AuthenticationList/LicenseNumber.js +36 -0
  406. package/build/features/connectExpress/screens/AuthenticationList/validation.d.ts +13 -10
  407. package/build/features/connectExpress/screens/AuthenticationList/validation.js +66 -7
  408. package/build/features/connectExpress/screens/BusinessCountry/BusinessCountry.d.ts +5 -0
  409. package/build/features/connectExpress/screens/BusinessCountry/BusinessCountry.js +111 -0
  410. package/build/features/connectExpress/screens/BusinessCountry/index.d.ts +3 -0
  411. package/build/features/connectExpress/screens/BusinessCountry/index.js +2 -0
  412. package/build/features/connectExpress/screens/CivilID/CivilID.js +16 -5
  413. package/build/features/connectExpress/screens/CivilID/IDNumber.js +7 -2
  414. package/build/features/connectExpress/screens/CivilIDMissed/CivilID.js +2 -2
  415. package/build/features/connectExpress/screens/CollectBusinessInfo/BrandName.js +5 -2
  416. package/build/features/connectExpress/screens/CollectBusinessInfo/CollectBusinessInfo.js +20 -5
  417. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseList.js +6 -5
  418. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseNumber.js +9 -8
  419. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseType.d.ts +4 -4
  420. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseType.js +1 -1
  421. package/build/features/connectExpress/screens/CollectBusinessInfo/TAC.d.ts +1 -1
  422. package/build/features/connectExpress/screens/CollectBusinessInfo/validation.d.ts +13 -0
  423. package/build/features/connectExpress/screens/CollectBusinessInfo/validation.js +68 -1
  424. package/build/features/connectExpress/screens/CollectIndividualInfo/CollectIndividualInfo.js +34 -7
  425. package/build/features/connectExpress/screens/CollectIndividualInfo/MobileNumber.js +9 -8
  426. package/build/features/connectExpress/screens/CollectIndividualInfo/validation.js +11 -3
  427. package/build/features/connectExpress/screens/CreateAccountLoader/CreateAccountLoader.js +14 -24
  428. package/build/features/connectExpress/screens/DOB/DOB.d.ts +6 -0
  429. package/build/features/connectExpress/screens/{NID → DOB}/DOB.js +3 -3
  430. package/build/features/connectExpress/screens/DOB/DOBForm.d.ts +5 -0
  431. package/build/features/connectExpress/screens/DOB/DOBForm.js +63 -0
  432. package/build/features/connectExpress/screens/DOB/index.d.ts +3 -0
  433. package/build/features/connectExpress/screens/DOB/index.js +2 -0
  434. package/build/features/connectExpress/screens/DOB/validation.d.ts +8 -0
  435. package/build/features/connectExpress/screens/DOB/validation.js +4 -0
  436. package/build/features/connectExpress/screens/IdentityVerifyNafath/IdentityVerifyNafath.d.ts +5 -0
  437. package/build/features/connectExpress/screens/IdentityVerifyNafath/IdentityVerifyNafath.js +35 -0
  438. package/build/features/connectExpress/screens/IdentityVerifyNafath/index.d.ts +3 -0
  439. package/build/features/connectExpress/screens/IdentityVerifyNafath/index.js +2 -0
  440. package/build/features/connectExpress/screens/IdentityVerifyPACI/VerifyPACI.js +2 -2
  441. package/build/features/connectExpress/screens/Mobile/Mobile.js +17 -7
  442. package/build/features/connectExpress/screens/Mobile/MobileNumber.js +18 -14
  443. package/build/features/connectExpress/screens/Mobile/TAC.js +1 -1
  444. package/build/features/connectExpress/screens/Mobile/validation.js +21 -6
  445. package/build/features/connectExpress/screens/MobileOwnership/CollectMobileOwnership.d.ts +3 -0
  446. package/build/features/connectExpress/screens/MobileOwnership/CollectMobileOwnership.js +108 -0
  447. package/build/features/connectExpress/screens/MobileOwnership/MobileNumber.d.ts +3 -0
  448. package/build/features/connectExpress/screens/MobileOwnership/MobileNumber.js +72 -0
  449. package/build/features/connectExpress/screens/MobileOwnership/index.d.ts +2 -0
  450. package/build/features/connectExpress/screens/MobileOwnership/index.js +2 -0
  451. package/build/features/connectExpress/screens/MobileOwnership/validation.d.ts +8 -0
  452. package/build/features/connectExpress/screens/MobileOwnership/validation.js +38 -0
  453. package/build/features/connectExpress/screens/NID/IDNumber.d.ts +1 -0
  454. package/build/features/connectExpress/screens/NID/IDNumber.js +2 -2
  455. package/build/features/connectExpress/screens/NID/NID.js +15 -12
  456. package/build/features/connectExpress/screens/NID/TAC.d.ts +1 -1
  457. package/build/features/connectExpress/screens/NID/TAC.js +2 -2
  458. package/build/features/connectExpress/screens/NID/validation.d.ts +0 -3
  459. package/build/features/connectExpress/screens/NID/validation.js +0 -2
  460. package/build/features/connectExpress/screens/NIDMissed/IDNumber.js +6 -2
  461. package/build/features/connectExpress/screens/NIDMissed/NID.js +10 -8
  462. package/build/features/connectExpress/screens/NIDMissed/validation.d.ts +7 -0
  463. package/build/features/connectExpress/screens/NIDMissed/validation.js +4 -1
  464. package/build/features/connectExpress/screens/OTP/OTP.js +14 -16
  465. package/build/features/connectExpress/screens/OTP/OTPInput.js +12 -10
  466. package/build/features/connectExpress/screens/OperatorError/OperatorError.d.ts +5 -0
  467. package/build/features/connectExpress/screens/OperatorError/OperatorError.js +9 -0
  468. package/build/features/connectExpress/screens/OperatorError/index.d.ts +3 -0
  469. package/build/features/connectExpress/screens/OperatorError/index.js +2 -0
  470. package/build/features/connectExpress/screens/PrepareDataLoading/PrepareDataLoading.d.ts +5 -0
  471. package/build/features/connectExpress/screens/PrepareDataLoading/PrepareDataLoading.js +34 -0
  472. package/build/features/connectExpress/screens/PrepareDataLoading/index.d.ts +2 -0
  473. package/build/features/connectExpress/screens/PrepareDataLoading/index.js +2 -0
  474. package/build/features/connectExpress/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +3 -4
  475. package/build/features/connectExpress/screens/VerifyNafath/VerifyNafath.d.ts +5 -0
  476. package/build/features/connectExpress/screens/VerifyNafath/VerifyNafath.js +35 -0
  477. package/build/features/connectExpress/screens/VerifyNafath/index.d.ts +3 -0
  478. package/build/features/connectExpress/screens/VerifyNafath/index.js +2 -0
  479. package/build/features/entity/Entity.d.ts +5 -1
  480. package/build/features/entity/Entity.js +26 -12
  481. package/build/features/entity/screens/EntityCapital/ActivityList.d.ts +4 -4
  482. package/build/features/entity/screens/EntityCapital/CapitalPaid.js +5 -3
  483. package/build/features/entity/screens/EntityCapital/CapitalShareValue.js +6 -4
  484. package/build/features/entity/screens/EntityCapital/EntityCapital.js +34 -10
  485. package/build/features/entity/screens/EntityName/EntityName.js +44 -19
  486. package/build/features/entity/screens/EntityName/EntityTypeList.d.ts +9 -9
  487. package/build/features/entity/screens/EntityName/EntityTypeList.js +2 -3
  488. package/build/features/entity/screens/EntityName/ExpiryDate.d.ts +2 -2
  489. package/build/features/entity/screens/EntityName/ExpiryDate.js +13 -8
  490. package/build/features/entity/screens/EntityName/IssuingDate.d.ts +2 -2
  491. package/build/features/entity/screens/EntityName/IssuingDate.js +15 -8
  492. package/build/features/entity/screens/EntityName/LegalName.js +1 -13
  493. package/build/features/entity/screens/EntityName/LicenseNumber.js +10 -11
  494. package/build/features/entity/screens/EntityName/UnifiedNumber.js +4 -6
  495. package/build/features/entity/screens/EntityName/validation.d.ts +31 -3
  496. package/build/features/entity/screens/EntityName/validation.js +38 -9
  497. package/build/features/entity/screens/OperatorError/OperatorError.d.ts +5 -0
  498. package/build/features/entity/screens/OperatorError/OperatorError.js +9 -0
  499. package/build/features/entity/screens/OperatorError/index.d.ts +3 -0
  500. package/build/features/entity/screens/OperatorError/index.js +2 -0
  501. package/build/features/entity/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +2 -3
  502. package/build/features/entity/screens/Verify/Verify.js +4 -3
  503. package/build/features/featuresScreens.d.ts +2 -0
  504. package/build/features/featuresScreens.js +265 -16
  505. package/build/features/individual/Individual.d.ts +5 -1
  506. package/build/features/individual/Individual.js +26 -12
  507. package/build/features/individual/screens/AdditionalIndividualInfo/AdditionalIndividualInfo.d.ts +2 -2
  508. package/build/features/individual/screens/AdditionalIndividualInfo/AdditionalIndividualInfo.js +55 -15
  509. package/build/features/individual/screens/AdditionalIndividualInfo/IsAuthorizedSwitch.d.ts +36 -0
  510. package/build/features/individual/screens/AdditionalIndividualInfo/IsAuthorizedSwitch.js +76 -0
  511. package/build/features/individual/screens/AdditionalIndividualInfo/MonthlyIncome.js +5 -2
  512. package/build/features/individual/screens/AdditionalIndividualInfo/PEPSwitch.d.ts +4 -4
  513. package/build/features/individual/screens/AdditionalIndividualInfo/ShareValue.js +7 -4
  514. package/build/features/individual/screens/AdditionalIndividualInfo/validation.d.ts +4 -1
  515. package/build/features/individual/screens/AdditionalIndividualInfo/validation.js +4 -3
  516. package/build/features/individual/screens/IndividualList/IndividualList.d.ts +4 -4
  517. package/build/features/individual/screens/IndividualList/IndividualList.js +21 -6
  518. package/build/features/individual/screens/IndividualList/MobileNumber.js +8 -10
  519. package/build/features/individual/screens/IndividualList/UserList.js +13 -9
  520. package/build/features/individual/screens/IndividualList/validation.js +11 -4
  521. package/build/features/individual/screens/IndividualPersonalInfo/Gender.d.ts +4 -4
  522. package/build/features/individual/screens/IndividualPersonalInfo/ID.js +6 -2
  523. package/build/features/individual/screens/IndividualPersonalInfo/IndividualPersonalInfo.d.ts +2 -2
  524. package/build/features/individual/screens/IndividualPersonalInfo/IndividualPersonalInfo.js +79 -21
  525. package/build/features/individual/screens/IndividualPersonalInfo/MobileNumber.js +6 -5
  526. package/build/features/individual/screens/IndividualPersonalInfo/validation.d.ts +1 -1
  527. package/build/features/individual/screens/IndividualPersonalInfo/validation.js +75 -63
  528. package/build/features/individual/screens/IndividualPhoneInfo/MobileNumber.js +9 -11
  529. package/build/features/individual/screens/IndividualPhoneInfo/PhoneInfo.js +1 -1
  530. package/build/features/individual/screens/IndividualPhoneInfo/validation.js +11 -3
  531. package/build/features/individual/screens/OperatorError/OperatorError.d.ts +5 -0
  532. package/build/features/individual/screens/OperatorError/OperatorError.js +9 -0
  533. package/build/features/individual/screens/OperatorError/index.d.ts +3 -0
  534. package/build/features/individual/screens/OperatorError/index.js +2 -0
  535. package/build/features/individual/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +2 -3
  536. package/build/features/individual/screens/Verify/Verify.js +4 -3
  537. package/build/features/password/Password.d.ts +5 -1
  538. package/build/features/password/Password.js +90 -33
  539. package/build/features/password/screens/CreatePassword/CreatePassword.js +10 -4
  540. package/build/features/password/screens/OTP/OTP.js +4 -4
  541. package/build/features/password/screens/OperatorError/OperatorError.d.ts +5 -0
  542. package/build/features/password/screens/OperatorError/OperatorError.js +9 -0
  543. package/build/features/password/screens/OperatorError/index.d.ts +3 -0
  544. package/build/features/password/screens/OperatorError/index.js +2 -0
  545. package/build/features/password/screens/PrepareDataLoading/PrepareDataLoading.d.ts +4 -0
  546. package/build/features/password/screens/PrepareDataLoading/PrepareDataLoading.js +10 -0
  547. package/build/features/password/screens/PrepareDataLoading/index.d.ts +2 -0
  548. package/build/features/password/screens/PrepareDataLoading/index.js +2 -0
  549. package/build/features/password/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +2 -3
  550. package/build/features/password/screens/Verify/Verify.js +8 -7
  551. package/build/features/shared/Address/CountryList.d.ts +7 -7
  552. package/build/features/shared/Address/InputSelect.d.ts +7 -7
  553. package/build/features/shared/Background/Background.d.ts +3 -1
  554. package/build/features/shared/Background/Background.js +9 -11
  555. package/build/features/shared/BusinessCountry/BusinessCountry.d.ts +15 -0
  556. package/build/features/shared/BusinessCountry/BusinessCountry.js +179 -0
  557. package/build/features/shared/BusinessCountry/index.d.ts +2 -0
  558. package/build/features/shared/BusinessCountry/index.js +2 -0
  559. package/build/features/shared/Button/Button.js +11 -5
  560. package/build/features/shared/Button/EmailProvidersButtons.js +2 -0
  561. package/build/features/shared/Button/FlowsButtons.js +20 -5
  562. package/build/features/shared/Button/NafathButton.d.ts +8 -0
  563. package/build/features/shared/Button/{AbsherButton.js → NafathButton.js} +12 -3
  564. package/build/features/shared/Button/index.d.ts +2 -2
  565. package/build/features/shared/Button/index.js +2 -2
  566. package/build/features/shared/Calender/Calender.d.ts +2 -1
  567. package/build/features/shared/Calender/Calender.js +3 -3
  568. package/build/features/shared/Containers/FeatureContainer.d.ts +3 -1
  569. package/build/features/shared/Containers/FeatureContainer.js +5 -3
  570. package/build/features/shared/Containers/ScreenContainer.d.ts +1 -1
  571. package/build/features/shared/DataLoading/DataLoading.d.ts +4 -1
  572. package/build/features/shared/DataLoading/DataLoading.js +2 -2
  573. package/build/features/shared/Dialog/DialogContainer.js +5 -4
  574. package/build/features/shared/Footer/Footer.js +2 -1
  575. package/build/features/shared/Input/Input.d.ts +2 -2
  576. package/build/features/shared/NafathVerification/NafathVerification.d.ts +14 -0
  577. package/build/features/shared/NafathVerification/NafathVerification.js +92 -0
  578. package/build/features/shared/NafathVerification/VerifyNafathLoading.d.ts +8 -0
  579. package/build/features/shared/NafathVerification/VerifyNafathLoading.js +53 -0
  580. package/build/features/shared/NafathVerification/VerifyNafathSuccess.d.ts +5 -0
  581. package/build/features/shared/NafathVerification/VerifyNafathSuccess.js +8 -0
  582. package/build/features/shared/NafathVerification/index.d.ts +2 -0
  583. package/build/features/shared/NafathVerification/index.js +2 -0
  584. package/build/features/shared/SuccessFlowButtons/SuccessFlowButtons.d.ts +6 -1
  585. package/build/features/shared/SuccessFlowButtons/SuccessFlowButtons.js +10 -13
  586. package/build/features/shared/SuccessScreen/SuccessScreen.js +2 -2
  587. package/build/features/shared/UploadFile/FileUpload.d.ts +1 -1
  588. package/build/features/shared/UploadFile/UploadFile.d.ts +1 -1
  589. package/build/features/shared/UploadFile/UploadWrapper.d.ts +1 -1
  590. package/build/features/shared/UploadMultipleFile/UploadFile.d.ts +1 -1
  591. package/build/features/shared/UploadMultipleFile/UploadMultipleFile.d.ts +1 -1
  592. package/build/features/signIn/SignIn.js +18 -7
  593. package/build/features/signIn/screens/Mobile/MobileNumber.js +8 -7
  594. package/build/features/signIn/screens/Mobile/validation.js +11 -3
  595. package/build/features/signIn/screens/OTP/OTP.js +5 -4
  596. package/build/features/signIn/screens/OperatorError/OperatorError.d.ts +5 -0
  597. package/build/features/signIn/screens/OperatorError/OperatorError.js +9 -0
  598. package/build/features/signIn/screens/OperatorError/index.d.ts +3 -0
  599. package/build/features/signIn/screens/OperatorError/index.js +2 -0
  600. package/build/features/tax/Tax.d.ts +5 -1
  601. package/build/features/tax/Tax.js +26 -12
  602. package/build/features/tax/screens/OperatorError/OperatorError.d.ts +5 -0
  603. package/build/features/tax/screens/OperatorError/OperatorError.js +9 -0
  604. package/build/features/tax/screens/OperatorError/index.d.ts +3 -0
  605. package/build/features/tax/screens/OperatorError/index.js +2 -0
  606. package/build/features/tax/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +2 -3
  607. package/build/features/tax/screens/TaxDetails/TaxDetails.js +9 -3
  608. package/build/features/tax/screens/Verify/Verify.js +8 -7
  609. package/build/hooks/index.d.ts +3 -0
  610. package/build/hooks/index.js +3 -0
  611. package/build/hooks/useAppConfig.d.ts +3 -3
  612. package/build/hooks/useAppConfig.js +10 -8
  613. package/build/hooks/useAppDispatch.d.ts +2 -0
  614. package/build/hooks/useAppTheme.js +4 -3
  615. package/build/hooks/useCountDown.d.ts +10 -0
  616. package/build/hooks/useCountDown.js +17 -0
  617. package/build/hooks/useCountry.d.ts +1 -0
  618. package/build/hooks/useCountry.js +4 -3
  619. package/build/hooks/useFormDirtyCheck.d.ts +10 -0
  620. package/build/hooks/useFormDirtyCheck.js +66 -0
  621. package/build/hooks/useSanitizedTranslation.d.ts +2 -0
  622. package/build/hooks/useSanitizedTranslation.js +15 -0
  623. package/build/hooks/useVerifyToken.d.ts +5 -2
  624. package/build/hooks/useVerifyToken.js +10 -5
  625. package/build/index.css +360 -120
  626. package/build/index.d.ts +4 -2
  627. package/build/index.js +6 -2
  628. package/build/theme/components.js +7 -0
  629. package/build/theme/palette.js +4 -2
  630. package/build/theme/shadows.js +1 -1
  631. package/build/theme/theme.d.ts +1 -1
  632. package/build/theme/theme.js +2 -2
  633. package/build/utils/array.js +2 -2
  634. package/build/utils/common.d.ts +3 -0
  635. package/build/utils/common.js +38 -2
  636. package/build/utils/device.d.ts +2 -0
  637. package/build/utils/device.js +6 -0
  638. package/build/utils/locale.js +2 -1
  639. package/build/utils/object.d.ts +1 -0
  640. package/build/utils/object.js +4 -1
  641. package/build/utils/string.d.ts +7 -2
  642. package/build/utils/string.js +32 -5
  643. package/build/utils/validation.d.ts +5 -0
  644. package/build/utils/validation.js +16 -0
  645. package/package.json +2 -2
  646. package/build/features/business/screens/OTP/OTP.d.ts +0 -8
  647. package/build/features/business/screens/OTP/OTP.js +0 -90
  648. package/build/features/connect/screens/BrandSegment/SegmentLocations.d.ts +0 -8
  649. package/build/features/connect/screens/BrandSegment/SegmentLocations.js +0 -66
  650. package/build/features/connect/screens/BrandSegment/SegmentProfits.d.ts +0 -8
  651. package/build/features/connect/screens/BrandSegment/SegmentProfits.js +0 -66
  652. package/build/features/connect/screens/BrandSegment/SegmentTechs.d.ts +0 -8
  653. package/build/features/connect/screens/BrandSegment/SegmentTechs.js +0 -66
  654. package/build/features/connectExpress/screens/AuthenticationList/MerchantList.js +0 -100
  655. package/build/features/connectExpress/screens/AuthenticationList/TerminalList.js +0 -101
  656. package/build/features/connectExpress/screens/IdentityOTP/index.d.ts +0 -3
  657. package/build/features/connectExpress/screens/IdentityOTP/index.js +0 -2
  658. package/build/features/shared/Button/AbsherButton.d.ts +0 -8
  659. /package/build/features/{connect/screens/NID → auth/screens/DOB}/DOB.d.ts +0 -0
  660. /package/build/features/{connectExpress/screens/IdentityOTP → auth/screens/OTP}/OTP.d.ts +0 -0
  661. /package/build/features/{business → auth}/screens/OTP/OTPInput.d.ts +0 -0
  662. /package/build/features/{business → auth}/screens/OTP/index.d.ts +0 -0
  663. /package/build/features/{business → auth}/screens/OTP/index.js +0 -0
  664. /package/build/features/{business → auth}/screens/OTP/validation.d.ts +0 -0
  665. /package/build/features/{business → auth}/screens/OTP/validation.js +0 -0
  666. /package/build/features/{connectExpress/screens/IdentityOTP/OTPInput.d.ts → board/screens/Verify/Verify.d.ts} +0 -0
  667. /package/build/features/{connectExpress/screens/IdentityOTP → board/screens/Verify}/validation.d.ts +0 -0
  668. /package/build/features/{connectExpress/screens/IdentityOTP → board/screens/Verify}/validation.js +0 -0
@@ -58,8 +58,8 @@ var _a;
58
58
  import { createAsyncThunk, createSlice } from '@reduxjs/toolkit';
59
59
  import API from '../../../api';
60
60
  import { BusinessType, FlowsTypes, DocumentPurpose, LicenseType } from '../../../@types';
61
- import { BUSINESS_STEP_NAMES, IDENTIFICATION_TYPE, OTHER_CR_LICENSE, OTHER_ENTITY_LICENSE, OTHER_FL_LICENSE } from '../../../constants';
62
- import { convertNumbers2English, hasKey, sleep, isKW, isSA, dateFormat, isOtherLicense } from '../../../utils';
61
+ import { BUSINESS_STEP_NAMES, COLLECT_DOB_INFO_NAFATH, EXPECTED_SALES_LIST, IDENTIFICATION_TYPE, NAFATH_VERIFICATION_FAILED, OTHER_CR_LICENSE, OTHER_ENTITY_LICENSE, OTHER_FL_LICENSE, defaultCountry } from '../../../constants';
62
+ import { convertNumbers2English, hasKey, sleep, isKW, isSA, dateFormat, isOtherLicense, isOtherThanKWOrSA, hasNoneEditableValue, sendCustomEventToGTM, findCountryByIddPrefix } from '../../../utils';
63
63
  import { handleNextScreenStep, handlePublicKey, handleSetCountryByIso2 } from '../../../app/settings';
64
64
  export var verifyLeadToken = createAsyncThunk('businessVerifyLeadToken', function (token, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
65
65
  var payload, data, publicKey, countryIso2, boardData, brandData, isicActivityList, leadData, _a, steps, brand, board_id, business_id, entity, brandID, hasBusinessCompleted, hasBusinessCRInfoCompleted, hasBusinessCRActivitiesCompleted, hasBusinessCustomersCompleted, list, list;
@@ -97,9 +97,12 @@ export var verifyLeadToken = createAsyncThunk('businessVerifyLeadToken', functio
97
97
  if (data.step_name === BUSINESS_STEP_NAMES.IDENTITY_AUTH && isKW(countryIso2)) {
98
98
  thunkApi.dispatch(handleNextScreenStep('BUSINESS_CIVIL_ID_STEP'));
99
99
  }
100
- if (data.step_name === BUSINESS_STEP_NAMES.IDENTITY_AUTH && !isKW(countryIso2)) {
100
+ if (data.step_name === BUSINESS_STEP_NAMES.IDENTITY_AUTH && (isSA(countryIso2) || isOtherThanKWOrSA(countryIso2))) {
101
101
  thunkApi.dispatch(handleNextScreenStep('BUSINESS_IDBOD_STEP'));
102
102
  }
103
+ if (data.step_name === COLLECT_DOB_INFO_NAFATH) {
104
+ thunkApi.dispatch(handleNextScreenStep('BUSINESS_DOB_STEP'));
105
+ }
103
106
  if (!(data.step_name === BUSINESS_STEP_NAMES.BUSINESS_INFO)) return [3, 19];
104
107
  _a = leadData || {}, steps = _a.steps, brand = _a.brand, board_id = _a.board_id, business_id = _a.business_id, entity = _a.entity;
105
108
  brandID = brand === null || brand === void 0 ? void 0 : brand.id;
@@ -165,13 +168,14 @@ export var verifyLeadToken = createAsyncThunk('businessVerifyLeadToken', functio
165
168
  _d.label = 19;
166
169
  case 19: return [2, {
167
170
  data: data,
171
+ verifyNextStepName: data.step_name,
168
172
  isicActivityList: isicActivityList,
169
173
  leadData: __assign(__assign({}, leadData), { flows: (boardData === null || boardData === void 0 ? void 0 : boardData.info) || [] }),
170
174
  token: token,
171
175
  brandData: brandData === null || brandData === void 0 ? void 0 : brandData.brand,
172
176
  boardId: leadData === null || leadData === void 0 ? void 0 : leadData.board_id
173
177
  }];
174
- case 20: return [2, { data: data, isRequireOTP: true, token: token }];
178
+ case 20: return [2, { data: data, isRequireOTP: true, token: token, verifyNextStepName: data.step_name }];
175
179
  }
176
180
  });
177
181
  }); });
@@ -188,7 +192,7 @@ export var resendOTP = createAsyncThunk('resendOTPBusiness', function (params, t
188
192
  return [4, API.leadService.verifyLeadToken(payload)];
189
193
  case 1:
190
194
  data = (_a.sent()).data;
191
- return [2, { data: data }];
195
+ return [2, { data: data, verifyNextStepName: data.step_name }];
192
196
  }
193
197
  });
194
198
  }); });
@@ -248,11 +252,11 @@ export var verifyLeadOTP = createAsyncThunk('verifyLeadOTP', function (params, t
248
252
  case 6:
249
253
  if (!isNID) return [3, 7];
250
254
  thunkApi.dispatch(handleNextScreenStep());
251
- return [3, 22];
255
+ return [3, 23];
252
256
  case 7:
253
257
  if (!(isIdentityAuthStep && isKW(countryIso2))) return [3, 8];
254
258
  thunkApi.dispatch(handleNextScreenStep('BUSINESS_CIVIL_ID_STEP'));
255
- return [3, 22];
259
+ return [3, 23];
256
260
  case 8:
257
261
  if (!hasBusinessCompleted) return [3, 12];
258
262
  if (!board_id) return [3, 11];
@@ -265,45 +269,163 @@ export var verifyLeadOTP = createAsyncThunk('verifyLeadOTP', function (params, t
265
269
  _k.sent();
266
270
  _k.label = 11;
267
271
  case 11:
268
- thunkApi.dispatch(handleNextScreenStep('BUSINESS_SUCCESS_FOUR_FLOWS_BUTTONS_STEP'));
269
- return [3, 22];
272
+ sleep(50).then(function () { return thunkApi.dispatch(handleNextScreenStep('BUSINESS_SUCCESS_FOUR_FLOWS_BUTTONS_STEP')); });
273
+ return [3, 23];
270
274
  case 12:
271
275
  if (!(data.step_name === BUSINESS_STEP_NAMES.IDENTITY_AUTH)) return [3, 13];
272
- thunkApi.dispatch(handleNextScreenStep('BUSINESS_IDBOD_STEP'));
273
- return [3, 22];
276
+ sleep(50).then(function () { return thunkApi.dispatch(handleNextScreenStep('BUSINESS_IDBOD_STEP')); });
277
+ return [3, 23];
274
278
  case 13:
275
- if (!hasBusinessCustomersCompleted) return [3, 14];
276
- thunkApi.dispatch(handleNextScreenStep('BUSINESS_SUCCESS_STEP'));
277
- return [3, 22];
279
+ if (!(data.step_name === COLLECT_DOB_INFO_NAFATH)) return [3, 14];
280
+ sleep(50).then(function () { return thunkApi.dispatch(handleNextScreenStep('BUSINESS_DOB_STEP')); });
281
+ return [3, 23];
278
282
  case 14:
279
- if (!hasBusinessCRActivitiesCompleted) return [3, 18];
280
- return [4, API.dataService.getActivitiesIsIc()];
283
+ if (!hasBusinessCustomersCompleted) return [3, 15];
284
+ sleep(50).then(function () { return thunkApi.dispatch(handleNextScreenStep('BUSINESS_SUCCESS_STEP')); });
285
+ return [3, 23];
281
286
  case 15:
287
+ if (!hasBusinessCRActivitiesCompleted) return [3, 19];
288
+ return [4, API.dataService.getActivitiesIsIc()];
289
+ case 16:
282
290
  list = (_k.sent()).list;
283
291
  isicActivityList = list || [];
284
292
  return [4, thunkApi.dispatch(retrieveDataList())];
285
- case 16:
293
+ case 17:
286
294
  _k.sent();
287
295
  return [4, API.brandService.retrieveBrand(brandID)];
288
- case 17:
289
- brandData = _k.sent();
290
- thunkApi.dispatch(handleNextScreenStep('BUSINESS_CUSTOMERS_STEP'));
291
- return [3, 22];
292
296
  case 18:
293
- if (!hasBusinessCRInfoCompleted) return [3, 21];
294
- return [4, API.dataService.getActivitiesIsIc()];
297
+ brandData = _k.sent();
298
+ sleep(50).then(function () { return thunkApi.dispatch(handleNextScreenStep('BUSINESS_CUSTOMERS_STEP')); });
299
+ return [3, 23];
295
300
  case 19:
301
+ if (!hasBusinessCRInfoCompleted) return [3, 22];
302
+ return [4, API.dataService.getActivitiesIsIc()];
303
+ case 20:
296
304
  list = (_k.sent()).list;
297
305
  isicActivityList = list || [];
298
306
  return [4, API.brandService.retrieveBrand(brandID)];
299
- case 20:
300
- brandData = _k.sent();
301
- thunkApi.dispatch(handleNextScreenStep('BUSINESS_ACTIVITIES_STEP'));
302
- return [3, 22];
303
307
  case 21:
304
- thunkApi.dispatch(handleNextScreenStep('BUSINESS_BUSINESS_TYPE_STEP'));
305
- _k.label = 22;
306
- case 22: return [2, { data: data, isicActivityList: isicActivityList, formData: __assign(__assign({}, params), { isNID: isNID }), brand: brandData === null || brandData === void 0 ? void 0 : brandData.brand, leadData: leadData }];
308
+ brandData = _k.sent();
309
+ sleep(50).then(function () { return thunkApi.dispatch(handleNextScreenStep('BUSINESS_ACTIVITIES_STEP')); });
310
+ return [3, 23];
311
+ case 22:
312
+ sleep(50).then(function () { return thunkApi.dispatch(handleNextScreenStep('BUSINESS_BUSINESS_TYPE_STEP')); });
313
+ _k.label = 23;
314
+ case 23: return [2, { data: data, verifyNextStepName: data.step_name, isicActivityList: isicActivityList, formData: __assign(__assign({}, params), { isNID: isNID }), brand: brandData === null || brandData === void 0 ? void 0 : brandData.brand, leadData: leadData }];
315
+ }
316
+ });
317
+ }); });
318
+ export var verifyNafath = createAsyncThunk('business/verifyNafathParams', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
319
+ var _a, settings, business, responseBody, expiry, interval, maxCalls, count, data, isSuccess, isFailed, isNextScreenDob, isNextScreenCollectMobileOwnership, screen_1;
320
+ var _b, _c, _d, _e, _f, _g;
321
+ return __generator(this, function (_h) {
322
+ switch (_h.label) {
323
+ case 0:
324
+ _a = thunkApi.getState(), settings = _a.settings, business = _a.business;
325
+ responseBody = business.data.nidData.responseBody;
326
+ expiry = (responseBody === null || responseBody === void 0 ? void 0 : responseBody.expiry) || 120;
327
+ interval = 5;
328
+ maxCalls = Math.floor(expiry / interval);
329
+ if (thunkApi.signal.aborted) {
330
+ return [2, { response: null }];
331
+ }
332
+ count = 1;
333
+ _h.label = 1;
334
+ case 1:
335
+ if (!(count <= maxCalls)) return [3, 8];
336
+ return [4, API.authService.getTokenVerify(responseBody === null || responseBody === void 0 ? void 0 : responseBody.verify_token)];
337
+ case 2:
338
+ data = _h.sent();
339
+ isSuccess = ((_b = data.status) === null || _b === void 0 ? void 0 : _b.toLowerCase()) === 'success';
340
+ isFailed = ((_c = data.status) === null || _c === void 0 ? void 0 : _c.toLowerCase()) === 'failed';
341
+ if (isFailed) {
342
+ (_d = params.onFailure) === null || _d === void 0 ? void 0 : _d.call(params);
343
+ return [2, { response: data }];
344
+ }
345
+ if (!isSuccess) return [3, 5];
346
+ return [4, thunkApi.dispatch(retrieveEntityList({ leadId: responseBody === null || responseBody === void 0 ? void 0 : responseBody.id }))];
347
+ case 3:
348
+ _h.sent();
349
+ (_f = (_e = settings.data.appConfig).onStepCompleted) === null || _f === void 0 ? void 0 : _f.call(_e, settings.data.activeScreen.name, {});
350
+ (_g = params === null || params === void 0 ? void 0 : params.onSuccess) === null || _g === void 0 ? void 0 : _g.call(params);
351
+ return [4, sleep(3000)];
352
+ case 4:
353
+ _h.sent();
354
+ isNextScreenDob = data.step_name === COLLECT_DOB_INFO_NAFATH;
355
+ isNextScreenCollectMobileOwnership = data.step_name === BUSINESS_STEP_NAMES.BUSINESS_MOBILE_OWNERSHIP;
356
+ if (isNextScreenCollectMobileOwnership) {
357
+ thunkApi.dispatch(handleNextScreenStep('BUSINESS_MOBILE_OWNERSHIP'));
358
+ }
359
+ else {
360
+ screen_1 = isNextScreenDob ? 'BUSINESS_DOB_STEP' : 'BUSINESS_BUSINESS_TYPE_STEP';
361
+ thunkApi.dispatch(handleNextScreenStep(screen_1));
362
+ }
363
+ return [2, { response: data, isNextScreenDob: isNextScreenDob }];
364
+ case 5: return [4, sleep(interval * 1000)];
365
+ case 6:
366
+ _h.sent();
367
+ _h.label = 7;
368
+ case 7:
369
+ count++;
370
+ return [3, 1];
371
+ case 8: throw new Error(NAFATH_VERIFICATION_FAILED);
372
+ }
373
+ });
374
+ }); });
375
+ export var updateLeadMobile = createAsyncThunk('connect/updateLeadMobile', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
376
+ var _a, settings, business, lead_id, payload, leadResponse, isNextScreenDob, screen;
377
+ var _b, _c;
378
+ return __generator(this, function (_d) {
379
+ switch (_d.label) {
380
+ case 0:
381
+ _a = thunkApi.getState(), settings = _a.settings, business = _a.business;
382
+ lead_id = (business.data.verify.responseBody || {}).lead_id;
383
+ payload = {
384
+ id: lead_id || '',
385
+ contact: {
386
+ phone: {
387
+ country_code: params.countryCode.idd_prefix.toString(),
388
+ number: params.mobile
389
+ }
390
+ },
391
+ step_name: BUSINESS_STEP_NAMES.BUSINESS_MOBILE_OWNERSHIP,
392
+ encryption_contract: ['contact.phone.country_code', 'contact.phone.number']
393
+ };
394
+ return [4, API.leadService.updateLead(payload)];
395
+ case 1:
396
+ leadResponse = _d.sent();
397
+ if (leadResponse.step_name === BUSINESS_STEP_NAMES.BUSINESS_MOBILE_OWNERSHIP) {
398
+ throw new Error("The new mobile number doesn't match the national ID, please update the mobile to the correct one");
399
+ }
400
+ (_c = (_b = settings.data.appConfig).onStepCompleted) === null || _c === void 0 ? void 0 : _c.call(_b, settings.data.activeScreen.name, params);
401
+ isNextScreenDob = leadResponse.step_name === COLLECT_DOB_INFO_NAFATH;
402
+ screen = isNextScreenDob ? 'BUSINESS_DOB_STEP' : 'BUSINESS_BUSINESS_TYPE_STEP';
403
+ thunkApi.dispatch(handleNextScreenStep(screen));
404
+ return [2, { leadResponse: leadResponse, formData: params }];
405
+ }
406
+ });
407
+ }); });
408
+ export var skipUpdateLeadMobile = createAsyncThunk('connect/skipUpdateLeadMobile', function (_, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
409
+ var _a, settings, business, lead_id, payload, leadResponse, isNextScreenDob, screen;
410
+ var _b, _c;
411
+ return __generator(this, function (_d) {
412
+ switch (_d.label) {
413
+ case 0:
414
+ _a = thunkApi.getState(), settings = _a.settings, business = _a.business;
415
+ lead_id = (business.data.verify.responseBody || {}).lead_id;
416
+ payload = {
417
+ id: lead_id || '',
418
+ step_name: BUSINESS_STEP_NAMES.BUSINESS_MOBILE_OWNERSHIP_SKIPPED,
419
+ encryption_contract: []
420
+ };
421
+ return [4, API.leadService.updateLead(payload)];
422
+ case 1:
423
+ leadResponse = _d.sent();
424
+ (_c = (_b = settings.data.appConfig).onStepCompleted) === null || _c === void 0 ? void 0 : _c.call(_b, settings.data.activeScreen.name, {});
425
+ isNextScreenDob = leadResponse.step_name === COLLECT_DOB_INFO_NAFATH;
426
+ screen = isNextScreenDob ? 'BUSINESS_DOB_STEP' : 'BUSINESS_BUSINESS_TYPE_STEP';
427
+ thunkApi.dispatch(handleNextScreenStep(screen));
428
+ return [2, { leadResponse: leadResponse }];
307
429
  }
308
430
  });
309
431
  }); });
@@ -381,59 +503,88 @@ export var createCivilIdAuth = createAsyncThunk('createCivilIdAuth', function (p
381
503
  });
382
504
  }); });
383
505
  export var updateLeadIdentity = createAsyncThunk('updateLeadIdentity', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
384
- var _a, settings, business, identification_id_type, stepName, lead_id, requestBody, data;
506
+ var _a, settings, business, identification_id_type, stepName, lead_id, countryIso2, dob, requestBody, data, business_id, entity, screen, countryCode;
385
507
  var _b, _c;
386
508
  return __generator(this, function (_d) {
387
509
  switch (_d.label) {
388
510
  case 0:
389
511
  _a = thunkApi.getState(), settings = _a.settings, business = _a.business;
390
- identification_id_type = params.nid.startsWith('1') ? IDENTIFICATION_TYPE.NID : IDENTIFICATION_TYPE.IQAMA;
512
+ identification_id_type = IDENTIFICATION_TYPE.NAFATH;
391
513
  stepName = BUSINESS_STEP_NAMES.IDENTITY_AUTH;
392
514
  lead_id = (business.data.verify.responseBody || {}).lead_id;
515
+ countryIso2 = settings.data.businessCountry.iso2;
516
+ if (isOtherThanKWOrSA(countryIso2)) {
517
+ identification_id_type = IDENTIFICATION_TYPE.NID;
518
+ }
519
+ dob = identification_id_type === IDENTIFICATION_TYPE.NAFATH ? undefined : dateFormat(new Date(params.dob));
393
520
  requestBody = {
394
521
  id: lead_id || '',
395
522
  identification: {
396
523
  id: params.nid,
397
- issued_country_code: settings.data.businessCountry.iso2,
524
+ issued_country_code: countryIso2,
398
525
  type: identification_id_type
399
526
  },
400
- date_of_birth: params.dob,
527
+ date_of_birth: dob,
401
528
  step_name: stepName,
402
529
  encryption_contract: ['identification.issued_country_code', 'identification.id', 'identification.type', 'date_of_birth']
403
530
  };
404
531
  return [4, API.leadService.updateLead(requestBody)];
405
532
  case 1:
406
533
  data = _d.sent();
407
- thunkApi.dispatch(handleNextScreenStep());
534
+ business_id = data.business_id, entity = data.entity;
535
+ screen = 'BUSINESS_VERIFY_NAFATH_STEP';
536
+ if (!isOtherThanKWOrSA(countryIso2)) return [3, 3];
537
+ screen = 'BUSINESS_BUSINESS_TYPE_STEP';
538
+ return [4, thunkApi.dispatch(retrieveAllEntityList({ businessId: business_id, entityId: entity === null || entity === void 0 ? void 0 : entity.id }))];
539
+ case 2:
540
+ _d.sent();
541
+ _d.label = 3;
542
+ case 3:
543
+ thunkApi.dispatch(handleNextScreenStep(screen));
408
544
  (_c = (_b = settings.data.appConfig).onStepCompleted) === null || _c === void 0 ? void 0 : _c.call(_b, settings.data.activeScreen.name, requestBody);
409
- return [2, { data: data, formData: __assign(__assign({}, params), { type: identification_id_type }) }];
545
+ countryCode = settings.data.businessCountry;
546
+ if (data.contact.phone.country_code)
547
+ countryCode = findCountryByIddPrefix(settings.data.countries, data.contact.phone.country_code);
548
+ return [2, { data: data, formData: __assign(__assign({}, params), { type: identification_id_type }), countryCode: countryCode }];
410
549
  }
411
550
  });
412
551
  }); });
413
- export var resendOTPLeadIdentity = createAsyncThunk('resendOTPLeadIdentity', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
414
- var _a, settings, business, _b, nid, dob, type, stepName, lead_id, requestBody, data;
415
- return __generator(this, function (_c) {
416
- switch (_c.label) {
552
+ export var updateLeadDOB = createAsyncThunk('business/updateLeadDOB', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
553
+ var _a, settings, business, stepName, _b, lead_id, verifyNextStepName, requestBody, data;
554
+ var _c, _d, _e, _f;
555
+ return __generator(this, function (_g) {
556
+ switch (_g.label) {
417
557
  case 0:
418
558
  _a = thunkApi.getState(), settings = _a.settings, business = _a.business;
419
- _b = business.data.nidData, nid = _b.nid, dob = _b.dob, type = _b.type;
420
- stepName = BUSINESS_STEP_NAMES.IDENTITY_AUTH;
421
- lead_id = (business.data.verify.responseBody || {}).lead_id;
559
+ stepName = BUSINESS_STEP_NAMES.BUSINESS_DOB_INFO;
560
+ _b = business.data.verify.responseBody || {}, lead_id = _b.lead_id, verifyNextStepName = _b.verifyNextStepName;
422
561
  requestBody = {
423
562
  id: lead_id || '',
424
- identification: {
425
- id: nid,
426
- issued_country_code: settings.data.businessCountry.iso2,
427
- type: type
428
- },
429
- date_of_birth: dob,
563
+ date_of_birth: params.dob,
430
564
  step_name: stepName,
431
- encryption_contract: ['identification.issued_country_code', 'identification.id', 'identification.type', 'date_of_birth']
565
+ encryption_contract: ['date_of_birth']
432
566
  };
433
567
  return [4, API.leadService.updateLead(requestBody)];
434
568
  case 1:
435
- data = _c.sent();
436
- return [2, data];
569
+ data = _g.sent();
570
+ if (!(verifyNextStepName === COLLECT_DOB_INFO_NAFATH)) return [3, 4];
571
+ return [4, thunkApi.dispatch(retrieveAllEntityList({ businessId: data.business_id, entityId: (_c = data.entity) === null || _c === void 0 ? void 0 : _c.id }))];
572
+ case 2:
573
+ _g.sent();
574
+ if (!isSA((_d = settings.data.businessCountry) === null || _d === void 0 ? void 0 : _d.iso2)) return [3, 4];
575
+ return [4, thunkApi.dispatch(retrieveEntityList({ leadId: data === null || data === void 0 ? void 0 : data.id }))];
576
+ case 3:
577
+ _g.sent();
578
+ _g.label = 4;
579
+ case 4:
580
+ if (data.step_name === BUSINESS_STEP_NAMES.BUSINESS_MOBILE_OWNERSHIP) {
581
+ thunkApi.dispatch(handleNextScreenStep('BUSINESS_MOBILE_OWNERSHIP'));
582
+ }
583
+ else {
584
+ thunkApi.dispatch(handleNextScreenStep('BUSINESS_BUSINESS_TYPE_STEP'));
585
+ }
586
+ (_f = (_e = settings.data.appConfig).onStepCompleted) === null || _f === void 0 ? void 0 : _f.call(_e, settings.data.activeScreen.name, requestBody);
587
+ return [2, { data: data, formData: params }];
437
588
  }
438
589
  });
439
590
  }); });
@@ -470,35 +621,35 @@ export var retrieveBoardDetails = createAsyncThunk('retrieveBoardDetails', funct
470
621
  case 1:
471
622
  data = _c.sent();
472
623
  return [2, {
473
- data: __assign(__assign({}, data), { user: data === null || data === void 0 ? void 0 : data.user, brand: data === null || data === void 0 ? void 0 : data.brand, bank_account: data === null || data === void 0 ? void 0 : data.bank_account, entity: data === null || data === void 0 ? void 0 : data.entity, merchant: data === null || data === void 0 ? void 0 : data.merchant, name: (_a = data === null || data === void 0 ? void 0 : data.user) === null || _a === void 0 ? void 0 : _a.names, contact: (_b = data === null || data === void 0 ? void 0 : data.user) === null || _b === void 0 ? void 0 : _b.contact, individuals: data === null || data === void 0 ? void 0 : data.individuals, board_id: data === null || data === void 0 ? void 0 : data.id })
624
+ data: __assign(__assign({}, data), { user: data === null || data === void 0 ? void 0 : data.user, brand: data === null || data === void 0 ? void 0 : data.brand, bank_account: data === null || data === void 0 ? void 0 : data.bank_account, entity: data === null || data === void 0 ? void 0 : data.entity, merchant: data === null || data === void 0 ? void 0 : data.merchant, name: (_a = data === null || data === void 0 ? void 0 : data.user) === null || _a === void 0 ? void 0 : _a.names, contact: (_b = data === null || data === void 0 ? void 0 : data.user) === null || _b === void 0 ? void 0 : _b.contact, individuals: data === null || data === void 0 ? void 0 : data.individuals, board_id: data === null || data === void 0 ? void 0 : data.id, board_status: data === null || data === void 0 ? void 0 : data.status })
474
625
  }];
475
626
  }
476
627
  });
477
628
  }); });
478
629
  export var updateLeadBusinessType = createAsyncThunk('updateLeadBusinessType', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
479
- var _a, settings, business, isNonSA, selectedLicense, licenseNumber, entityLegalName, certificateId, articleId, selectedEntityLicense, isFL, _b, lead_id, brand, stepName, payload, data, accountBody, accountData, brandData, brandRes, _c, message, error, list, documentData, entityData, entityId, documentBody, payload_1;
480
- var _d, _e;
481
- return __generator(this, function (_f) {
482
- switch (_f.label) {
630
+ var _a, settings, business, isKWCountry, selectedLicense, licenseNumber, entityLegalName, certificateId, articleId, selectedEntityLicense, isFL, _b, lead_id, brand, stepName, payload, data, accountBody, accountData, documentData, entityData, brandData, data_1, brandRes, _c, message, error, list, entityId, documentBody, payload_1;
631
+ var _d, _e, _f;
632
+ return __generator(this, function (_g) {
633
+ switch (_g.label) {
483
634
  case 0:
484
635
  _a = thunkApi.getState(), settings = _a.settings, business = _a.business;
485
- isNonSA = !isSA(settings.data.businessCountry.iso2);
636
+ isKWCountry = isKW(settings.data.businessCountry.iso2);
486
637
  selectedLicense = params.selectedLicense, licenseNumber = params.licenseNumber, entityLegalName = params.entityLegalName, certificateId = params.certificateId, articleId = params.articleId, selectedEntityLicense = params.selectedEntityLicense;
487
638
  isFL = (selectedLicense === null || selectedLicense === void 0 ? void 0 : selectedLicense.type) === BusinessType.FL;
488
639
  _b = business.data.verify.responseBody || {}, lead_id = _b.lead_id, brand = _b.brand;
489
640
  stepName = 'BUSINESS_ACTIVITIES_STEP';
490
641
  payload = __assign(__assign(__assign(__assign({ id: lead_id || '', entity: {
491
- id: (selectedEntityLicense === null || selectedEntityLicense === void 0 ? void 0 : selectedEntityLicense.id) && (isNonSA ? !isFL : true) ? selectedEntityLicense === null || selectedEntityLicense === void 0 ? void 0 : selectedEntityLicense.id : ''
642
+ id: (selectedEntityLicense === null || selectedEntityLicense === void 0 ? void 0 : selectedEntityLicense.id) && (isKWCountry ? !isFL : true) ? selectedEntityLicense === null || selectedEntityLicense === void 0 ? void 0 : selectedEntityLicense.id : ''
492
643
  } }, (!(selectedEntityLicense === null || selectedEntityLicense === void 0 ? void 0 : selectedEntityLicense.id) && {
493
- license_number: isNonSA && isFL ? '' : licenseNumber,
644
+ license_number: isKWCountry && isFL ? '' : licenseNumber,
494
645
  license_type: isFL ? LicenseType.FL : LicenseType.CR,
495
646
  business_type: selectedLicense === null || selectedLicense === void 0 ? void 0 : selectedLicense.type
496
- })), { step_name: BUSINESS_STEP_NAMES.BUSINESS_CR_INFO }), (isNonSA && {
647
+ })), { step_name: BUSINESS_STEP_NAMES.BUSINESS_CR_INFO }), (isKWCountry && {
497
648
  business_name: isFL ? undefined : { ar: entityLegalName, en: entityLegalName }
498
649
  })), { encryption_contract: ['license_number', 'business_type', 'license_type'] });
499
650
  return [4, API.leadService.updateLead(payload)];
500
651
  case 1:
501
- data = _f.sent();
652
+ data = _g.sent();
502
653
  accountBody = {
503
654
  lead_id: lead_id,
504
655
  notify: {
@@ -510,34 +661,44 @@ export var updateLeadBusinessType = createAsyncThunk('updateLeadBusinessType', f
510
661
  step_name: BUSINESS_STEP_NAMES.BUSINESS_INFO_CONFIRM
511
662
  };
512
663
  brandData = undefined;
513
- _f.label = 2;
664
+ _g.label = 2;
514
665
  case 2:
515
- _f.trys.push([2, 5, , 6]);
666
+ _g.trys.push([2, 7, , 8]);
516
667
  return [4, API.accountService.createAccount(accountBody)];
517
668
  case 3:
518
- accountData = _f.sent();
669
+ accountData = _g.sent();
670
+ if (!!(accountData === null || accountData === void 0 ? void 0 : accountData.entity_id)) return [3, 5];
671
+ return [4, API.leadService.retrieveLead(lead_id)];
672
+ case 4:
673
+ data_1 = (_g.sent()).data;
674
+ if (!((_d = data_1 === null || data_1 === void 0 ? void 0 : data_1.entity) === null || _d === void 0 ? void 0 : _d.id))
675
+ throw new Error('Internal server error');
676
+ accountData = __assign(__assign({}, accountData), { entity_id: data_1.entity.id });
677
+ _g.label = 5;
678
+ case 5:
519
679
  thunkApi.dispatch(updateStepName(BUSINESS_STEP_NAMES.BUSINESS_INFO_CONFIRM));
520
680
  return [4, API.brandService.retrieveBrand(brand === null || brand === void 0 ? void 0 : brand.id)];
521
- case 4:
522
- brandRes = (_f.sent()).brand;
681
+ case 6:
682
+ brandRes = (_g.sent()).brand;
523
683
  brandData = brandRes;
524
- return [3, 6];
525
- case 5:
526
- _c = _f.sent();
684
+ return [3, 8];
685
+ case 7:
686
+ _c = _g.sent();
527
687
  message = _c.message;
528
688
  error = message;
529
689
  if ((error === null || error === void 0 ? void 0 : error.toLowerCase()) === 'entity with license already exist') {
530
690
  stepName = 'BUSINESS_VERIFY_BRAND_INFO';
691
+ sleep(50).then(function () { return thunkApi.dispatch(handleNextScreenStep(stepName)); });
692
+ return [2, { data: data, formData: params, accountData: accountData, documentData: documentData, entityData: entityData, isicActivityList: [] }];
531
693
  }
532
694
  else
533
695
  throw new Error(error);
534
- return [3, 6];
535
- case 6: return [4, API.dataService.getActivitiesIsIc()];
536
- case 7:
537
- list = (_f.sent()).list;
538
- entityData = undefined;
696
+ return [3, 8];
697
+ case 8: return [4, API.dataService.getActivitiesIsIc()];
698
+ case 9:
699
+ list = (_g.sent()).list;
539
700
  entityId = accountData === null || accountData === void 0 ? void 0 : accountData.entity_id;
540
- if (!((certificateId || []).length > 0)) return [3, 9];
701
+ if (!((certificateId || []).length > 0)) return [3, 11];
541
702
  documentBody = {
542
703
  entity_id: entityId || '',
543
704
  documents: [
@@ -548,145 +709,161 @@ export var updateLeadBusinessType = createAsyncThunk('updateLeadBusinessType', f
548
709
  ]
549
710
  };
550
711
  return [4, API.documentService.updateDocumentInfo(documentBody)];
551
- case 8:
552
- documentData = _f.sent();
553
- _f.label = 9;
554
- case 9:
555
- if (!(articleId && entityId)) return [3, 11];
712
+ case 10:
713
+ documentData = _g.sent();
714
+ _g.label = 11;
715
+ case 11:
716
+ if (!(articleId && entityId)) return [3, 13];
556
717
  payload_1 = {
557
718
  id: (accountData === null || accountData === void 0 ? void 0 : accountData.entity_id) || '',
558
719
  AOA_file_id: articleId
559
720
  };
560
721
  return [4, API.entityService.updateEntity(payload_1)];
561
- case 10:
562
- entityData = _f.sent();
563
- _f.label = 11;
564
- case 11:
565
- thunkApi.dispatch(handleNextScreenStep(stepName));
566
- (_e = (_d = settings.data.appConfig).onStepCompleted) === null || _e === void 0 ? void 0 : _e.call(_d, settings.data.activeScreen.name, params);
722
+ case 12:
723
+ entityData = _g.sent();
724
+ _g.label = 13;
725
+ case 13:
726
+ sleep(50).then(function () { return thunkApi.dispatch(handleNextScreenStep(stepName)); });
727
+ (_f = (_e = settings.data.appConfig).onStepCompleted) === null || _f === void 0 ? void 0 : _f.call(_e, settings.data.activeScreen.name, params);
567
728
  return [2, { data: __assign(__assign({}, data), { brand: brandData }), formData: params, accountData: accountData, documentData: documentData, entityData: entityData, isicActivityList: list || [] }];
568
729
  }
569
730
  });
570
731
  }); });
571
- export var updateActivitiesInfo = createAsyncThunk('updateActivitiesInfo', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
572
- var _a, settings, business, _b, brand, entity_activities, entity, _c, brandActivities, brandId, activities, operationStartDate, stepName, id, removedActivities, payload, newBrandActivities, newEntityActivities, activityPayload, requestBody, data;
573
- var _d, _e;
574
- return __generator(this, function (_f) {
575
- switch (_f.label) {
576
- case 0:
577
- _a = thunkApi.getState(), settings = _a.settings, business = _a.business;
578
- _b = business.data.verify.responseBody || {}, brand = _b.brand, entity_activities = _b.entity_activities, entity = _b.entity;
579
- _c = brand || {}, brandActivities = _c.activities, brandId = _c.id;
580
- activities = params.activities, operationStartDate = params.operationStartDate;
581
- stepName = BUSINESS_STEP_NAMES.BUSINESS_CR_ACTIVITIES;
582
- id = brandId;
583
- removedActivities = (brandActivities || []).filter(function (brandActivity) { return !(activities || []).some(function (activity) { return activity.id === brandActivity.id; }); });
584
- if (!(removedActivities === null || removedActivities === void 0 ? void 0 : removedActivities.length)) return [3, 2];
585
- payload = {
586
- id: id,
587
- activities: removedActivities
588
- };
589
- return [4, API.brandService.removeBrandActivity(payload)];
590
- case 1:
591
- _f.sent();
592
- _f.label = 2;
593
- case 2:
594
- newBrandActivities = activities === null || activities === void 0 ? void 0 : activities.filter(function (act) { return !(brandActivities || []).some(function (brandActivity) { return act.id === brandActivity.id; }); });
595
- newEntityActivities = activities === null || activities === void 0 ? void 0 : activities.filter(function (act) { return !(entity_activities || []).some(function (entityActivity) { return act.id === entityActivity.id; }); });
596
- if (!(newEntityActivities === null || newEntityActivities === void 0 ? void 0 : newEntityActivities.length)) return [3, 4];
597
- activityPayload = {
598
- id: entity === null || entity === void 0 ? void 0 : entity.id,
599
- activities: newEntityActivities.map(function (_a) {
600
- var id = _a.id;
601
- return ({ id: id });
602
- })
603
- };
604
- return [4, API.entityService.updateEntityActivity(activityPayload)];
605
- case 3:
606
- _f.sent();
607
- _f.label = 4;
608
- case 4:
609
- requestBody = __assign(__assign({ id: id }, ((newBrandActivities === null || newBrandActivities === void 0 ? void 0 : newBrandActivities.length) && { activities: newBrandActivities.map(function (_a) {
610
- var id = _a.id;
611
- return ({ id: id });
612
- }) })), { operations: {
613
- start_date: operationStartDate
614
- }, step_name: stepName, encryption_contract: ['operations.start_date'] });
615
- return [4, API.brandService.updateBrandInfo(requestBody)];
616
- case 5:
617
- data = _f.sent();
618
- thunkApi.dispatch(retrieveDataList());
619
- thunkApi.dispatch(updateStepName(stepName));
620
- thunkApi.dispatch(handleNextScreenStep());
621
- (_e = (_d = settings.data.appConfig).onStepCompleted) === null || _e === void 0 ? void 0 : _e.call(_d, settings.data.activeScreen.name, requestBody);
622
- return [2, { data: data === null || data === void 0 ? void 0 : data.brand, formData: __assign({}, params) }];
623
- }
732
+ export var updateActivitiesInfo = createAsyncThunk('updateActivitiesInfo', function (_a, thunkApi) {
733
+ var formData = _a.formData, originalFormData = _a.originalFormData;
734
+ return __awaiter(void 0, void 0, void 0, function () {
735
+ var _b, settings, business, _c, brand, entity_activities, entity, _d, brandActivities, brandId, data_status, activities, operationStartDate, isActivitiesNonEditable, isOperationStartDateNonEditable, stepName, id, removedActivities, payload, newBrandActivities, newEntityActivities, activityPayload, requestBody, data;
736
+ var _e, _f;
737
+ return __generator(this, function (_g) {
738
+ switch (_g.label) {
739
+ case 0:
740
+ _b = thunkApi.getState(), settings = _b.settings, business = _b.business;
741
+ _c = business.data.verify.responseBody || {}, brand = _c.brand, entity_activities = _c.entity_activities, entity = _c.entity;
742
+ _d = brand || {}, brandActivities = _d.activities, brandId = _d.id, data_status = _d.data_status;
743
+ activities = formData.activities, operationStartDate = formData.operationStartDate;
744
+ isActivitiesNonEditable = hasNoneEditableValue(data_status, 'activities');
745
+ isOperationStartDateNonEditable = hasNoneEditableValue(data_status === null || data_status === void 0 ? void 0 : data_status.operations, 'business_start_date');
746
+ stepName = BUSINESS_STEP_NAMES.BUSINESS_CR_ACTIVITIES;
747
+ id = brandId;
748
+ removedActivities = (brandActivities || []).filter(function (brandActivity) { return !(activities || []).some(function (activity) { return activity.id === brandActivity.id; }); });
749
+ if (!(!isActivitiesNonEditable && (removedActivities === null || removedActivities === void 0 ? void 0 : removedActivities.length))) return [3, 2];
750
+ payload = {
751
+ id: id,
752
+ activities: removedActivities.map(function (_a) {
753
+ var id = _a.id;
754
+ return ({ id: id });
755
+ })
756
+ };
757
+ return [4, API.brandService.removeBrandActivity(payload)];
758
+ case 1:
759
+ _g.sent();
760
+ _g.label = 2;
761
+ case 2:
762
+ newBrandActivities = activities === null || activities === void 0 ? void 0 : activities.filter(function (act) { return !(brandActivities || []).some(function (brandActivity) { return act.id === brandActivity.id; }); });
763
+ newEntityActivities = activities === null || activities === void 0 ? void 0 : activities.filter(function (act) { return !(entity_activities || []).some(function (entityActivity) { return act.id === entityActivity.id; }); });
764
+ if (!(!isActivitiesNonEditable && (newEntityActivities === null || newEntityActivities === void 0 ? void 0 : newEntityActivities.length))) return [3, 4];
765
+ activityPayload = {
766
+ id: entity === null || entity === void 0 ? void 0 : entity.id,
767
+ activities: newEntityActivities.map(function (_a) {
768
+ var id = _a.id;
769
+ return ({ id: id });
770
+ })
771
+ };
772
+ return [4, API.entityService.updateEntityActivity(activityPayload)];
773
+ case 3:
774
+ _g.sent();
775
+ _g.label = 4;
776
+ case 4:
777
+ requestBody = __assign(__assign(__assign({ id: id }, ((newBrandActivities === null || newBrandActivities === void 0 ? void 0 : newBrandActivities.length) && !isActivitiesNonEditable && { activities: newBrandActivities.map(function (_a) {
778
+ var id = _a.id;
779
+ return ({ id: id });
780
+ }) })), (!isOperationStartDateNonEditable && {
781
+ operations: {
782
+ start_date: operationStartDate
783
+ }
784
+ })), { step_name: stepName, encryption_contract: ['operations.start_date'] });
785
+ return [4, API.brandService.updateBrandInfo(requestBody)];
786
+ case 5:
787
+ data = _g.sent();
788
+ return [4, thunkApi.dispatch(retrieveDataList())];
789
+ case 6:
790
+ _g.sent();
791
+ thunkApi.dispatch(updateStepName(stepName));
792
+ thunkApi.dispatch(handleNextScreenStep());
793
+ (_f = (_e = settings.data.appConfig).onStepCompleted) === null || _f === void 0 ? void 0 : _f.call(_e, settings.data.activeScreen.name, requestBody);
794
+ return [2, { data: data === null || data === void 0 ? void 0 : data.brand, formData: originalFormData }];
795
+ }
796
+ });
624
797
  });
625
- }); });
798
+ });
626
799
  export var retrieveDataList = createAsyncThunk('businessRetrieveDataList', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
627
- var settings, countryISO2, dataBody, salesDataBody, _a, customerBases, expectedSales, expectedCustomerSales;
628
- return __generator(this, function (_b) {
629
- switch (_b.label) {
800
+ var settings, countryISO2, dataBody, _a, customer_base, sales, expected_customers;
801
+ var _b;
802
+ return __generator(this, function (_c) {
803
+ switch (_c.label) {
630
804
  case 0:
631
805
  settings = thunkApi.getState().settings;
632
806
  countryISO2 = settings.data.businessCountry.iso2;
633
807
  dataBody = {
634
- page: 0
635
- };
636
- salesDataBody = {
637
808
  page: 0,
638
809
  country_code: [countryISO2]
639
810
  };
640
- return [4, Promise.all([
641
- API.dataService.getCustomerBases(dataBody),
642
- API.dataService.getExpectedSales(salesDataBody),
643
- API.dataService.getExpectedCustomerSales(dataBody)
644
- ])];
811
+ return [4, API.dataService.getBrandOperations(dataBody)];
645
812
  case 1:
646
- _a = _b.sent(), customerBases = _a[0].list, expectedSales = _a[1].list, expectedCustomerSales = _a[2].list;
813
+ _a = _c.sent(), customer_base = _a.customer_base, sales = _a.sales, expected_customers = _a.expected_customers;
647
814
  return [2, {
648
- customerBases: customerBases,
649
- expectedSales: expectedSales,
650
- expectedCustomerSales: expectedCustomerSales,
815
+ customerBases: (customer_base === null || customer_base === void 0 ? void 0 : customer_base.list) || [],
816
+ expectedSales: ((_b = sales === null || sales === void 0 ? void 0 : sales.list) === null || _b === void 0 ? void 0 : _b.length) ? sales.list : EXPECTED_SALES_LIST,
817
+ expectedCustomerSales: (expected_customers === null || expected_customers === void 0 ? void 0 : expected_customers.list) || [],
651
818
  countryISO2: countryISO2
652
819
  }];
653
820
  }
654
821
  });
655
822
  }); });
656
- export var updateCustomersInfo = createAsyncThunk('updateCustomersInfo', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
657
- var _a, settings, business, id, customerLocation, customerBase, sales, stepName, requestBody, data;
658
- var _b, _c, _d, _e, _f, _g;
659
- return __generator(this, function (_h) {
660
- switch (_h.label) {
661
- case 0:
662
- _a = thunkApi.getState(), settings = _a.settings, business = _a.business;
663
- id = (_c = (_b = business.data.verify.responseBody) === null || _b === void 0 ? void 0 : _b.brand) === null || _c === void 0 ? void 0 : _c.id;
664
- customerLocation = params.customerLocations.map(function (location) { return ({
665
- id: location === null || location === void 0 ? void 0 : location.id
666
- }); });
667
- customerBase = { id: ((_d = params.expectedCustomer) === null || _d === void 0 ? void 0 : _d.id) || '', period: 'monthly', locations: customerLocation };
668
- sales = { id: ((_e = params.expectedSale) === null || _e === void 0 ? void 0 : _e.id) || '', period: 'monthly' };
669
- stepName = BUSINESS_STEP_NAMES.BUSINESS_CUSTOMERS;
670
- requestBody = {
671
- operations: {
672
- customer_base: customerBase,
673
- sales: sales
674
- },
675
- term: ['refund', 'chargeback'],
676
- id: id,
677
- step_name: stepName,
678
- encryption_contract: []
679
- };
680
- return [4, API.brandService.updateBrandInfo(requestBody)];
681
- case 1:
682
- data = _h.sent();
683
- thunkApi.dispatch(updateStepName(stepName));
684
- thunkApi.dispatch(handleNextScreenStep());
685
- (_g = (_f = settings.data.appConfig).onStepCompleted) === null || _g === void 0 ? void 0 : _g.call(_f, settings.data.activeScreen.name, requestBody);
686
- return [2, { data: data === null || data === void 0 ? void 0 : data.brand, formData: params }];
687
- }
823
+ export var updateCustomersInfo = createAsyncThunk('updateCustomersInfo', function (_a, thunkApi) {
824
+ var formData = _a.formData, originalFormData = _a.originalFormData;
825
+ return __awaiter(void 0, void 0, void 0, function () {
826
+ var _b, settings, business, _c, data_status, id, isCustomerBaseLocationNonEditable, isCustomerBaseNonEditable, isTermsNonEditable, isSalesRangeNonEditable, customerLocations, expectedCustomer, expectedSale, stepName, requestBody, customerLocation, customerBaseId, salesId, customerBase, data;
827
+ var _d, _e, _f;
828
+ return __generator(this, function (_g) {
829
+ switch (_g.label) {
830
+ case 0:
831
+ _b = thunkApi.getState(), settings = _b.settings, business = _b.business;
832
+ _c = ((_d = business.data.verify.responseBody) === null || _d === void 0 ? void 0 : _d.brand) || {}, data_status = _c.data_status, id = _c.id;
833
+ isCustomerBaseLocationNonEditable = hasNoneEditableValue(data_status === null || data_status === void 0 ? void 0 : data_status.operations, 'customer_base_location');
834
+ isCustomerBaseNonEditable = hasNoneEditableValue(data_status === null || data_status === void 0 ? void 0 : data_status.operations, 'customer_base');
835
+ isTermsNonEditable = hasNoneEditableValue(data_status, 'terms');
836
+ isSalesRangeNonEditable = hasNoneEditableValue(data_status === null || data_status === void 0 ? void 0 : data_status.operations, 'sales_range');
837
+ customerLocations = formData.customerLocations, expectedCustomer = formData.expectedCustomer, expectedSale = formData.expectedSale;
838
+ stepName = BUSINESS_STEP_NAMES.BUSINESS_CUSTOMERS;
839
+ requestBody = {
840
+ term: !isTermsNonEditable ? ['refund', 'chargeback'] : undefined,
841
+ id: id,
842
+ step_name: stepName,
843
+ encryption_contract: []
844
+ };
845
+ customerLocation = (customerLocations || []).map(function (location) { return ({
846
+ id: location.id
847
+ }); });
848
+ customerBaseId = (expectedCustomer === null || expectedCustomer === void 0 ? void 0 : expectedCustomer.id) && { id: expectedCustomer.id, period: 'monthly' };
849
+ salesId = (expectedSale === null || expectedSale === void 0 ? void 0 : expectedSale.id) && { id: expectedSale.id, period: 'monthly' };
850
+ customerBase = (customerBaseId || customerLocation.length) && __assign(__assign({}, (customerBaseId && !isCustomerBaseNonEditable && { id: expectedCustomer.id, period: 'monthly' })), (customerLocation.length && !isCustomerBaseLocationNonEditable && { locations: customerLocation }));
851
+ if (customerBase && !(isCustomerBaseNonEditable && isCustomerBaseLocationNonEditable))
852
+ requestBody = __assign(__assign({}, requestBody), { operations: __assign(__assign({}, requestBody.operations), { customer_base: customerBase }) });
853
+ if (salesId && !isSalesRangeNonEditable) {
854
+ requestBody = __assign(__assign({}, requestBody), { operations: __assign(__assign({}, requestBody.operations), { sales: salesId }) });
855
+ }
856
+ return [4, API.brandService.updateBrandInfo(requestBody)];
857
+ case 1:
858
+ data = _g.sent();
859
+ thunkApi.dispatch(updateStepName(stepName));
860
+ thunkApi.dispatch(handleNextScreenStep());
861
+ (_f = (_e = settings.data.appConfig).onStepCompleted) === null || _f === void 0 ? void 0 : _f.call(_e, settings.data.activeScreen.name, requestBody);
862
+ return [2, { data: data === null || data === void 0 ? void 0 : data.brand, formData: originalFormData }];
863
+ }
864
+ });
688
865
  });
689
- }); });
866
+ });
690
867
  export var updateLeadSuccess = createAsyncThunk('businessUpdateLeadSuccess', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
691
868
  var _a, settings, business, _b, steps, lead_id, flowCompleted, boardResponse, payload, data, board_id;
692
869
  var _c, _d, _e, _f;
@@ -695,7 +872,8 @@ export var updateLeadSuccess = createAsyncThunk('businessUpdateLeadSuccess', fun
695
872
  case 0:
696
873
  _a = thunkApi.getState(), settings = _a.settings, business = _a.business;
697
874
  _b = business.data.verify.responseBody || {}, steps = _b.steps, lead_id = _b.lead_id;
698
- flowCompleted = Object.keys(steps).find(function (key) { return key === BUSINESS_STEP_NAMES.BUSINESS_SUCCESS; });
875
+ flowCompleted = hasKey(steps, BUSINESS_STEP_NAMES.BUSINESS_SUCCESS);
876
+ console.info('stop success call', flowCompleted || !lead_id);
699
877
  if (flowCompleted || !lead_id)
700
878
  return [2];
701
879
  boardResponse = undefined;
@@ -708,6 +886,12 @@ export var updateLeadSuccess = createAsyncThunk('businessUpdateLeadSuccess', fun
708
886
  return [4, API.leadService.updateLead(payload)];
709
887
  case 1:
710
888
  data = _g.sent();
889
+ sendCustomEventToGTM({
890
+ event: 'Send Event',
891
+ event_category: 'Account Creation Flow',
892
+ event_action: 'Account Creation Success',
893
+ event_label: settings.data.businessCountry.iso2
894
+ });
711
895
  board_id = data === null || data === void 0 ? void 0 : data.board_id;
712
896
  if (!board_id) return [3, 4];
713
897
  return [4, API.boardService.retrieveBoardInfoStatus(board_id)];
@@ -758,6 +942,10 @@ var initialState = {
758
942
  verify: {
759
943
  token: ''
760
944
  },
945
+ mobileData: {
946
+ countryCode: defaultCountry,
947
+ mobile: ''
948
+ },
761
949
  otpData: {
762
950
  otp: '',
763
951
  isNID: false
@@ -770,9 +958,13 @@ var initialState = {
770
958
  dob: '',
771
959
  type: ''
772
960
  },
961
+ dobData: {
962
+ dob: ''
963
+ },
773
964
  businessTypeData: {
774
965
  licenseNumber: '',
775
- entityLegalName: ''
966
+ entityLegalName: '',
967
+ isPrevDob: false
776
968
  },
777
969
  activitiesData: {
778
970
  activities: [],
@@ -818,24 +1010,31 @@ export var businessSlice = createSlice({
818
1010
  state.customLoading = true;
819
1011
  })
820
1012
  .addCase(verifyLeadToken.fulfilled, function (state, action) {
821
- var _a, _b;
1013
+ var _a, _b, _c, _d, _e;
822
1014
  state.error = null;
823
1015
  state.customLoading = false;
824
- var _c = action.payload, data = _c.data, boardId = _c.boardId, brandData = _c.brandData, leadData = _c.leadData, token = _c.token, isRequireOTP = _c.isRequireOTP, isicActivityList = _c.isicActivityList;
1016
+ var _f = action.payload, data = _f.data, boardId = _f.boardId, brandData = _f.brandData, leadData = _f.leadData, token = _f.token, isRequireOTP = _f.isRequireOTP, isicActivityList = _f.isicActivityList, verifyNextStepName = _f.verifyNextStepName;
825
1017
  var responseBody = state.data.verify.responseBody;
826
- state.data.verify.responseBody = __assign(__assign(__assign(__assign(__assign({}, data), leadData), responseBody), { board_id: boardId, lead_id: data === null || data === void 0 ? void 0 : data.id }), (brandData && { brand: brandData }));
1018
+ state.data.verify.responseBody = __assign(__assign(__assign(__assign(__assign({}, data), leadData), responseBody), { board_id: boardId, lead_id: data === null || data === void 0 ? void 0 : data.id, verifyNextStepName: verifyNextStepName }), (brandData && { brand: brandData }));
1019
+ var _g = leadData || {}, identification = _g.identification, date_of_birth = _g.date_of_birth;
1020
+ if (identification === null || identification === void 0 ? void 0 : identification.id)
1021
+ state.data.nidData.nid = identification.id;
1022
+ if (date_of_birth)
1023
+ state.data.nidData.dob = dateFormat(date_of_birth);
1024
+ if (identification === null || identification === void 0 ? void 0 : identification.type)
1025
+ state.data.nidData.type = identification.type;
827
1026
  if (token)
828
1027
  state.data.verify.token = token;
829
1028
  state.data.otpData.isNID = false;
830
1029
  if (isRequireOTP)
831
1030
  return;
832
- var _d = state.data.verify.responseBody || {}, entity = _d.entity, entity_activities = _d.entity_activities, business_name = _d.business_name;
1031
+ var _h = state.data.verify.responseBody || {}, entity = _h.entity, entity_activities = _h.entity_activities, business_name = _h.business_name;
833
1032
  if (business_name === null || business_name === void 0 ? void 0 : business_name.en)
834
1033
  state.data.businessTypeData.entityLegalName = business_name === null || business_name === void 0 ? void 0 : business_name.en;
835
1034
  var issuingDate = ((_a = brandData === null || brandData === void 0 ? void 0 : brandData.operations) === null || _a === void 0 ? void 0 : _a.start_date) || ((_b = entity === null || entity === void 0 ? void 0 : entity.license) === null || _b === void 0 ? void 0 : _b.issuing_date);
836
1035
  if (issuingDate)
837
1036
  state.data.activitiesData.operationStartDate = convertNumbers2English(dateFormat(issuingDate));
838
- var _e = brandData || {}, terms = _e.terms, activities = _e.activities;
1037
+ var _j = brandData || {}, terms = _j.terms, activities = _j.activities;
839
1038
  var entityActivities = (entity_activities === null || entity_activities === void 0 ? void 0 : entity_activities.filter(function (activity) {
840
1039
  return !(activities === null || activities === void 0 ? void 0 : activities.some(function (value) { return value.id === activity.id; }));
841
1040
  })) || [];
@@ -847,7 +1046,8 @@ export var businessSlice = createSlice({
847
1046
  }
848
1047
  });
849
1048
  state.data.activitiesData.activities = selectedActivity;
850
- state.data.businessTypeData.responseBody = __assign(__assign({}, state.data.businessTypeData.responseBody), { entity_id: entity === null || entity === void 0 ? void 0 : entity.id, activityList: isicActivityList });
1049
+ var licenseList = [OTHER_CR_LICENSE, OTHER_FL_LICENSE];
1050
+ state.data.businessTypeData.responseBody = __assign(__assign(__assign({}, state.data.businessTypeData.responseBody), { entity_id: entity === null || entity === void 0 ? void 0 : entity.id, activityList: isicActivityList }), (!((_e = (_d = (_c = state.data.businessTypeData) === null || _c === void 0 ? void 0 : _c.responseBody) === null || _d === void 0 ? void 0 : _d.licenseList) === null || _e === void 0 ? void 0 : _e.length) && { licenseList: licenseList }));
851
1051
  })
852
1052
  .addCase(verifyLeadToken.rejected, function (state, action) {
853
1053
  state.error = action.error.message;
@@ -859,13 +1059,13 @@ export var businessSlice = createSlice({
859
1059
  .addCase(resendOTP.fulfilled, function (state, action) {
860
1060
  var _a;
861
1061
  state.error = null;
862
- var data = action.payload.data;
1062
+ var _b = action.payload, data = _b.data, verifyNextStepName = _b.verifyNextStepName;
863
1063
  var description = (((_a = data === null || data === void 0 ? void 0 : data.errors) === null || _a === void 0 ? void 0 : _a[0]) || {}).description;
864
1064
  if (description) {
865
1065
  state.error = description;
866
1066
  return;
867
1067
  }
868
- state.data.verify.responseBody = __assign(__assign({}, state.data.verify.responseBody), data);
1068
+ state.data.verify.responseBody = __assign(__assign(__assign({}, state.data.verify.responseBody), data), { verifyNextStepName: verifyNextStepName });
869
1069
  })
870
1070
  .addCase(resendOTP.rejected, function (state, action) {
871
1071
  state.error = action.error.message;
@@ -875,20 +1075,27 @@ export var businessSlice = createSlice({
875
1075
  state.error = null;
876
1076
  })
877
1077
  .addCase(verifyLeadOTP.fulfilled, function (state, action) {
878
- var _a, _b;
1078
+ var _a, _b, _c, _d, _e;
879
1079
  state.loading = false;
880
1080
  state.error = null;
881
- var _c = action.payload, data = _c.data, formData = _c.formData, brand = _c.brand, leadData = _c.leadData, isicActivityList = _c.isicActivityList;
1081
+ var _f = action.payload, data = _f.data, formData = _f.formData, brand = _f.brand, leadData = _f.leadData, isicActivityList = _f.isicActivityList, verifyNextStepName = _f.verifyNextStepName;
882
1082
  state.data.otpData = formData;
883
1083
  state.data.otpData.responseBody = data;
884
- state.data.verify.responseBody = __assign(__assign(__assign(__assign({}, leadData), state.data.verify.responseBody), (brand && { brand: brand })), { flows: (leadData === null || leadData === void 0 ? void 0 : leadData.flows) || [] });
885
- var _d = leadData || {}, entity = _d.entity, entity_activities = _d.entity_activities, business_name = _d.business_name;
1084
+ state.data.verify.responseBody = __assign(__assign(__assign(__assign(__assign({}, leadData), state.data.verify.responseBody), { verifyNextStepName: verifyNextStepName }), (brand && { brand: brand })), { flows: (leadData === null || leadData === void 0 ? void 0 : leadData.flows) || [] });
1085
+ var _g = leadData || {}, identification = _g.identification, date_of_birth = _g.date_of_birth;
1086
+ if (identification === null || identification === void 0 ? void 0 : identification.id)
1087
+ state.data.nidData.nid = identification.id;
1088
+ if (date_of_birth)
1089
+ state.data.nidData.dob = dateFormat(date_of_birth);
1090
+ if (identification === null || identification === void 0 ? void 0 : identification.type)
1091
+ state.data.nidData.type = identification.type;
1092
+ var _h = leadData || {}, entity = _h.entity, entity_activities = _h.entity_activities, business_name = _h.business_name;
886
1093
  if (business_name === null || business_name === void 0 ? void 0 : business_name.en)
887
1094
  state.data.businessTypeData.entityLegalName = business_name === null || business_name === void 0 ? void 0 : business_name.en;
888
1095
  var issuingDate = ((_a = brand === null || brand === void 0 ? void 0 : brand.operations) === null || _a === void 0 ? void 0 : _a.start_date) || ((_b = entity === null || entity === void 0 ? void 0 : entity.license) === null || _b === void 0 ? void 0 : _b.issuing_date);
889
1096
  if (issuingDate)
890
1097
  state.data.activitiesData.operationStartDate = convertNumbers2English(dateFormat(issuingDate));
891
- var _e = brand || {}, terms = _e.terms, activities = _e.activities;
1098
+ var _j = brand || {}, terms = _j.terms, activities = _j.activities;
892
1099
  var entityActivities = (entity_activities === null || entity_activities === void 0 ? void 0 : entity_activities.filter(function (activity) {
893
1100
  return !(activities === null || activities === void 0 ? void 0 : activities.some(function (value) { return value.id === activity.id; }));
894
1101
  })) || [];
@@ -900,7 +1107,8 @@ export var businessSlice = createSlice({
900
1107
  }
901
1108
  });
902
1109
  state.data.activitiesData.activities = selectedActivity;
903
- state.data.businessTypeData.responseBody = __assign(__assign({}, state.data.businessTypeData.responseBody), { entity_id: entity === null || entity === void 0 ? void 0 : entity.id, activityList: isicActivityList });
1110
+ var licenseList = [OTHER_CR_LICENSE, OTHER_FL_LICENSE];
1111
+ state.data.businessTypeData.responseBody = __assign(__assign(__assign({}, state.data.businessTypeData.responseBody), { entity_id: entity === null || entity === void 0 ? void 0 : entity.id, activityList: isicActivityList }), (!((_e = (_d = (_c = state.data.businessTypeData) === null || _c === void 0 ? void 0 : _c.responseBody) === null || _d === void 0 ? void 0 : _d.licenseList) === null || _e === void 0 ? void 0 : _e.length) && { licenseList: licenseList }));
904
1112
  })
905
1113
  .addCase(verifyLeadOTP.rejected, function (state, action) {
906
1114
  state.loading = false;
@@ -950,7 +1158,7 @@ export var businessSlice = createSlice({
950
1158
  var _a;
951
1159
  state.loading = false;
952
1160
  state.error = null;
953
- var _b = action.payload, data = _b.data, formData = _b.formData;
1161
+ var _b = action.payload, data = _b.data, formData = _b.formData, countryCode = _b.countryCode;
954
1162
  var description = (((_a = data === null || data === void 0 ? void 0 : data.errors) === null || _a === void 0 ? void 0 : _a[0]) || {}).description;
955
1163
  if (description) {
956
1164
  state.error = description;
@@ -960,28 +1168,71 @@ export var businessSlice = createSlice({
960
1168
  state.data.nidData.responseBody = data;
961
1169
  state.data.otpData.otp = '';
962
1170
  state.data.otpData.isNID = true;
1171
+ state.data.mobileData.countryCode = countryCode;
1172
+ state.data.mobileData.mobile = data.contact.phone.number;
963
1173
  })
964
1174
  .addCase(updateLeadIdentity.rejected, function (state, action) {
965
1175
  state.loading = false;
966
1176
  state.error = action.error.message;
967
1177
  })
968
- .addCase(resendOTPLeadIdentity.pending, function (state) {
1178
+ .addCase(updateLeadMobile.pending, function (state) {
1179
+ state.loading = true;
969
1180
  state.error = null;
970
1181
  })
971
- .addCase(resendOTPLeadIdentity.fulfilled, function (state, action) {
972
- var _a;
1182
+ .addCase(updateLeadMobile.fulfilled, function (state, action) {
1183
+ state.loading = false;
973
1184
  state.error = null;
974
- var data = action.payload;
975
- var description = (((_a = data === null || data === void 0 ? void 0 : data.errors) === null || _a === void 0 ? void 0 : _a[0]) || {}).description;
976
- if (description) {
977
- state.error = description;
978
- return;
1185
+ state.data.mobileData.mobile = action.payload.leadResponse.contact.phone.number;
1186
+ state.data.verify.responseBody = __assign(__assign({}, state.data.verify.responseBody), action.payload.leadResponse);
1187
+ })
1188
+ .addCase(updateLeadMobile.rejected, function (state, action) {
1189
+ state.loading = false;
1190
+ state.error = action.error.message;
1191
+ })
1192
+ .addCase(skipUpdateLeadMobile.pending, function (state) {
1193
+ state.loading = true;
1194
+ state.error = null;
1195
+ })
1196
+ .addCase(skipUpdateLeadMobile.fulfilled, function (state, action) {
1197
+ state.loading = false;
1198
+ state.error = null;
1199
+ state.data.verify.responseBody = __assign(__assign({}, state.data.verify.responseBody), action.payload.leadResponse);
1200
+ })
1201
+ .addCase(skipUpdateLeadMobile.rejected, function (state, action) {
1202
+ state.loading = false;
1203
+ state.error = action.error.message;
1204
+ })
1205
+ .addCase(verifyNafath.pending, function (state) {
1206
+ state.loading = true;
1207
+ state.error = null;
1208
+ })
1209
+ .addCase(verifyNafath.fulfilled, function (state, action) {
1210
+ state.loading = false;
1211
+ state.error = null;
1212
+ var _a = action.payload, response = _a.response, isNextScreenDob = _a.isNextScreenDob;
1213
+ state.data.businessTypeData.isPrevDob = isNextScreenDob || false;
1214
+ state.data.otpData.responseBody = response;
1215
+ })
1216
+ .addCase(verifyNafath.rejected, function (state, action) {
1217
+ state.loading = false;
1218
+ var error = action.error.message;
1219
+ if (error !== 'Aborted') {
1220
+ state.error = error;
979
1221
  }
980
- state.data.nidData.responseBody = data;
981
- state.data.otpData.otp = '';
982
- state.data.otpData.isNID = true;
983
1222
  })
984
- .addCase(resendOTPLeadIdentity.rejected, function (state, action) {
1223
+ .addCase(updateLeadDOB.pending, function (state) {
1224
+ state.loading = true;
1225
+ state.error = null;
1226
+ })
1227
+ .addCase(updateLeadDOB.fulfilled, function (state, action) {
1228
+ state.loading = false;
1229
+ state.error = null;
1230
+ var _a = action.payload, data = _a.data, formData = _a.formData;
1231
+ state.data.dobData = formData;
1232
+ state.data.dobData.responseBody = data;
1233
+ })
1234
+ .addCase(updateLeadDOB.rejected, function (state, action) {
1235
+ state.loading = false;
985
1236
  state.error = action.error.message;
986
1237
  })
987
1238
  .addCase(retrieveEntityList.pending, function (state) {