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

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 (644) 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 +14 -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 +8 -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 +119 -77
  35. package/build/app/store.d.ts +4 -0
  36. package/build/assets/locales/ar.json +346 -143
  37. package/build/assets/locales/en.json +343 -143
  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 +56 -0
  60. package/build/constants/app.js +446 -21
  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 +28 -10
  80. package/build/features/app/business/businessStore.js +363 -216
  81. package/build/features/app/connect/connectStore.d.ts +39 -15
  82. package/build/features/app/connect/connectStore.js +321 -216
  83. package/build/features/app/connectExpress/connectExpressStore.d.ts +63 -29
  84. package/build/features/app/connectExpress/connectExpressStore.js +744 -382
  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/OperatorError/OperatorError.d.ts +5 -0
  312. package/build/features/business/screens/OperatorError/OperatorError.js +9 -0
  313. package/build/features/business/screens/OperatorError/index.d.ts +3 -0
  314. package/build/features/business/screens/OperatorError/index.js +2 -0
  315. package/build/features/business/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +14 -3
  316. package/build/features/business/screens/Verify/Verify.js +16 -5
  317. package/build/features/business/screens/VerifyNafath/VerifyNafath.d.ts +5 -0
  318. package/build/features/business/screens/VerifyNafath/VerifyNafath.js +35 -0
  319. package/build/features/business/screens/VerifyNafath/index.d.ts +3 -0
  320. package/build/features/business/screens/VerifyNafath/index.js +2 -0
  321. package/build/features/connect/Connect.d.ts +5 -1
  322. package/build/features/connect/Connect.js +48 -31
  323. package/build/features/connect/screens/BrandSegment/BrandSegment.js +4 -26
  324. package/build/features/connect/screens/BrandSegment/TeamSize.js +1 -1
  325. package/build/features/connect/screens/BrandSegment/validation.d.ts +0 -9
  326. package/build/features/connect/screens/BrandSegment/validation.js +0 -3
  327. package/build/features/connect/screens/BusinessCountry/BusinessCountry.d.ts +5 -0
  328. package/build/features/connect/screens/BusinessCountry/BusinessCountry.js +113 -0
  329. package/build/features/connect/screens/BusinessCountry/index.d.ts +3 -0
  330. package/build/features/connect/screens/BusinessCountry/index.js +2 -0
  331. package/build/features/connect/screens/CivilID/CivilID.js +12 -4
  332. package/build/features/{connectExpress/screens/NID → connect/screens/DOB}/DOB.d.ts +1 -2
  333. package/build/features/connect/screens/{NID → DOB}/DOB.js +2 -2
  334. package/build/features/connect/screens/DOB/DOBForm.d.ts +5 -0
  335. package/build/features/connect/screens/DOB/DOBForm.js +59 -0
  336. package/build/features/connect/screens/DOB/index.d.ts +3 -0
  337. package/build/features/connect/screens/DOB/index.js +2 -0
  338. package/build/features/connect/screens/DOB/validation.d.ts +8 -0
  339. package/build/features/connect/screens/DOB/validation.js +4 -0
  340. package/build/features/connect/screens/Individual/Individual.js +12 -6
  341. package/build/features/connect/screens/Individual/MobileNumber.js +8 -7
  342. package/build/features/connect/screens/Individual/validation.js +11 -3
  343. package/build/features/connect/screens/Merchant/BrandList.js +3 -3
  344. package/build/features/connect/screens/Merchant/BrandName.js +5 -2
  345. package/build/features/connect/screens/Merchant/Merchant.js +1 -1
  346. package/build/features/connect/screens/Merchant/SalesChannels.js +1 -1
  347. package/build/features/connect/screens/Merchant/validation.js +2 -2
  348. package/build/features/connect/screens/Mobile/Mobile.js +14 -7
  349. package/build/features/connect/screens/Mobile/MobileNumber.js +15 -11
  350. package/build/features/connect/screens/Mobile/validation.js +11 -3
  351. package/build/features/connect/screens/NID/IDNumber.d.ts +1 -0
  352. package/build/features/connect/screens/NID/IDNumber.js +2 -2
  353. package/build/features/connect/screens/NID/NID.js +10 -13
  354. package/build/features/connect/screens/NID/validation.d.ts +0 -3
  355. package/build/features/connect/screens/NID/validation.js +0 -1
  356. package/build/features/connect/screens/OTP/OTP.js +7 -7
  357. package/build/features/connect/screens/OTP/OTPInput.js +3 -11
  358. package/build/features/connect/screens/OperatorError/OperatorError.d.ts +5 -0
  359. package/build/features/connect/screens/OperatorError/OperatorError.js +9 -0
  360. package/build/features/connect/screens/OperatorError/index.d.ts +3 -0
  361. package/build/features/connect/screens/OperatorError/index.js +2 -0
  362. package/build/features/connect/screens/VerifyNafath/VerifyNafath.d.ts +5 -0
  363. package/build/features/connect/screens/VerifyNafath/VerifyNafath.js +35 -0
  364. package/build/features/connect/screens/VerifyNafath/index.d.ts +3 -0
  365. package/build/features/connect/screens/VerifyNafath/index.js +2 -0
  366. package/build/features/connectExpress/ConnectExpress.d.ts +5 -2
  367. package/build/features/connectExpress/ConnectExpress.js +69 -36
  368. package/build/features/connectExpress/screens/AccountAlreadyCreated/AccountAlreadyCreated.js +14 -2
  369. package/build/features/connectExpress/screens/AccountCreatedLoader/AccountCreatedLoader.d.ts +5 -0
  370. package/build/features/connectExpress/screens/AccountCreatedLoader/AccountCreatedLoader.js +36 -0
  371. package/build/features/connectExpress/screens/AccountCreatedLoader/index.d.ts +2 -0
  372. package/build/features/connectExpress/screens/AccountCreatedLoader/index.js +2 -0
  373. package/build/features/connectExpress/screens/AuthMerchant/AuthMerchant.d.ts +5 -0
  374. package/build/features/connectExpress/screens/AuthMerchant/AuthMerchant.js +74 -0
  375. package/build/features/connectExpress/screens/{AuthenticationList/TerminalList.d.ts → AuthMerchant/MerchantList.d.ts} +4 -3
  376. package/build/features/connectExpress/screens/AuthMerchant/MerchantList.js +64 -0
  377. package/build/features/connectExpress/screens/AuthMerchant/index.d.ts +2 -0
  378. package/build/features/connectExpress/screens/AuthMerchant/index.js +2 -0
  379. package/build/features/connectExpress/screens/AuthMerchant/validation.d.ts +8 -0
  380. package/build/features/connectExpress/screens/AuthMerchant/validation.js +4 -0
  381. package/build/features/connectExpress/screens/AuthenticationList/AuthenticationList.js +28 -17
  382. package/build/features/connectExpress/screens/AuthenticationList/EntityLegalName.d.ts +3 -0
  383. package/build/features/connectExpress/screens/AuthenticationList/EntityLegalName.js +48 -0
  384. package/build/features/connectExpress/screens/AuthenticationList/EntityLicenseType.d.ts +31 -0
  385. package/build/features/connectExpress/screens/AuthenticationList/EntityLicenseType.js +90 -0
  386. package/build/features/connectExpress/screens/AuthenticationList/EntityList.d.ts +3 -3
  387. package/build/features/connectExpress/screens/AuthenticationList/EntityList.js +52 -10
  388. package/build/features/connectExpress/screens/AuthenticationList/LicenseNumber.d.ts +3 -0
  389. package/build/features/connectExpress/screens/AuthenticationList/LicenseNumber.js +36 -0
  390. package/build/features/connectExpress/screens/AuthenticationList/validation.d.ts +13 -10
  391. package/build/features/connectExpress/screens/AuthenticationList/validation.js +66 -7
  392. package/build/features/connectExpress/screens/BusinessCountry/BusinessCountry.d.ts +5 -0
  393. package/build/features/connectExpress/screens/BusinessCountry/BusinessCountry.js +111 -0
  394. package/build/features/connectExpress/screens/BusinessCountry/index.d.ts +3 -0
  395. package/build/features/connectExpress/screens/BusinessCountry/index.js +2 -0
  396. package/build/features/connectExpress/screens/CivilID/CivilID.js +16 -5
  397. package/build/features/connectExpress/screens/CivilID/IDNumber.js +7 -2
  398. package/build/features/connectExpress/screens/CivilIDMissed/CivilID.js +2 -2
  399. package/build/features/connectExpress/screens/CollectBusinessInfo/BrandName.js +5 -2
  400. package/build/features/connectExpress/screens/CollectBusinessInfo/CollectBusinessInfo.js +20 -5
  401. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseList.js +6 -5
  402. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseNumber.js +9 -8
  403. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseType.d.ts +4 -4
  404. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseType.js +1 -1
  405. package/build/features/connectExpress/screens/CollectBusinessInfo/TAC.d.ts +1 -1
  406. package/build/features/connectExpress/screens/CollectBusinessInfo/validation.d.ts +13 -0
  407. package/build/features/connectExpress/screens/CollectBusinessInfo/validation.js +68 -1
  408. package/build/features/connectExpress/screens/CollectIndividualInfo/CollectIndividualInfo.js +34 -7
  409. package/build/features/connectExpress/screens/CollectIndividualInfo/MobileNumber.js +9 -8
  410. package/build/features/connectExpress/screens/CollectIndividualInfo/validation.js +11 -3
  411. package/build/features/connectExpress/screens/CreateAccountLoader/CreateAccountLoader.js +14 -24
  412. package/build/features/connectExpress/screens/DOB/DOB.d.ts +6 -0
  413. package/build/features/connectExpress/screens/{NID → DOB}/DOB.js +3 -3
  414. package/build/features/connectExpress/screens/DOB/DOBForm.d.ts +5 -0
  415. package/build/features/connectExpress/screens/DOB/DOBForm.js +63 -0
  416. package/build/features/connectExpress/screens/DOB/index.d.ts +3 -0
  417. package/build/features/connectExpress/screens/DOB/index.js +2 -0
  418. package/build/features/connectExpress/screens/DOB/validation.d.ts +8 -0
  419. package/build/features/connectExpress/screens/DOB/validation.js +4 -0
  420. package/build/features/connectExpress/screens/IdentityVerifyNafath/IdentityVerifyNafath.d.ts +5 -0
  421. package/build/features/connectExpress/screens/IdentityVerifyNafath/IdentityVerifyNafath.js +35 -0
  422. package/build/features/connectExpress/screens/IdentityVerifyNafath/index.d.ts +3 -0
  423. package/build/features/connectExpress/screens/IdentityVerifyNafath/index.js +2 -0
  424. package/build/features/connectExpress/screens/IdentityVerifyPACI/VerifyPACI.js +2 -2
  425. package/build/features/connectExpress/screens/Mobile/Mobile.js +17 -7
  426. package/build/features/connectExpress/screens/Mobile/MobileNumber.js +18 -14
  427. package/build/features/connectExpress/screens/Mobile/TAC.js +1 -1
  428. package/build/features/connectExpress/screens/Mobile/validation.js +21 -6
  429. package/build/features/connectExpress/screens/NID/IDNumber.d.ts +1 -0
  430. package/build/features/connectExpress/screens/NID/IDNumber.js +2 -2
  431. package/build/features/connectExpress/screens/NID/NID.js +15 -12
  432. package/build/features/connectExpress/screens/NID/TAC.d.ts +1 -1
  433. package/build/features/connectExpress/screens/NID/TAC.js +2 -2
  434. package/build/features/connectExpress/screens/NID/validation.d.ts +0 -3
  435. package/build/features/connectExpress/screens/NID/validation.js +0 -2
  436. package/build/features/connectExpress/screens/NIDMissed/IDNumber.js +6 -2
  437. package/build/features/connectExpress/screens/NIDMissed/NID.js +10 -8
  438. package/build/features/connectExpress/screens/NIDMissed/validation.d.ts +7 -0
  439. package/build/features/connectExpress/screens/NIDMissed/validation.js +4 -1
  440. package/build/features/connectExpress/screens/OTP/OTP.js +14 -16
  441. package/build/features/connectExpress/screens/OTP/OTPInput.js +12 -10
  442. package/build/features/connectExpress/screens/OperatorError/OperatorError.d.ts +5 -0
  443. package/build/features/connectExpress/screens/OperatorError/OperatorError.js +9 -0
  444. package/build/features/connectExpress/screens/OperatorError/index.d.ts +3 -0
  445. package/build/features/connectExpress/screens/OperatorError/index.js +2 -0
  446. package/build/features/connectExpress/screens/PrepareDataLoading/PrepareDataLoading.d.ts +5 -0
  447. package/build/features/connectExpress/screens/PrepareDataLoading/PrepareDataLoading.js +34 -0
  448. package/build/features/connectExpress/screens/PrepareDataLoading/index.d.ts +2 -0
  449. package/build/features/connectExpress/screens/PrepareDataLoading/index.js +2 -0
  450. package/build/features/connectExpress/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +3 -4
  451. package/build/features/connectExpress/screens/VerifyNafath/VerifyNafath.d.ts +5 -0
  452. package/build/features/connectExpress/screens/VerifyNafath/VerifyNafath.js +35 -0
  453. package/build/features/connectExpress/screens/VerifyNafath/index.d.ts +3 -0
  454. package/build/features/connectExpress/screens/VerifyNafath/index.js +2 -0
  455. package/build/features/entity/Entity.d.ts +5 -1
  456. package/build/features/entity/Entity.js +26 -12
  457. package/build/features/entity/screens/EntityCapital/ActivityList.d.ts +4 -4
  458. package/build/features/entity/screens/EntityCapital/CapitalPaid.js +5 -3
  459. package/build/features/entity/screens/EntityCapital/CapitalShareValue.js +6 -4
  460. package/build/features/entity/screens/EntityCapital/EntityCapital.js +34 -10
  461. package/build/features/entity/screens/EntityName/EntityName.js +44 -19
  462. package/build/features/entity/screens/EntityName/EntityTypeList.d.ts +9 -9
  463. package/build/features/entity/screens/EntityName/EntityTypeList.js +2 -3
  464. package/build/features/entity/screens/EntityName/ExpiryDate.d.ts +2 -2
  465. package/build/features/entity/screens/EntityName/ExpiryDate.js +13 -8
  466. package/build/features/entity/screens/EntityName/IssuingDate.d.ts +2 -2
  467. package/build/features/entity/screens/EntityName/IssuingDate.js +15 -8
  468. package/build/features/entity/screens/EntityName/LegalName.js +1 -13
  469. package/build/features/entity/screens/EntityName/LicenseNumber.js +10 -11
  470. package/build/features/entity/screens/EntityName/UnifiedNumber.js +4 -6
  471. package/build/features/entity/screens/EntityName/validation.d.ts +31 -3
  472. package/build/features/entity/screens/EntityName/validation.js +38 -9
  473. package/build/features/entity/screens/OperatorError/OperatorError.d.ts +5 -0
  474. package/build/features/entity/screens/OperatorError/OperatorError.js +9 -0
  475. package/build/features/entity/screens/OperatorError/index.d.ts +3 -0
  476. package/build/features/entity/screens/OperatorError/index.js +2 -0
  477. package/build/features/entity/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +2 -3
  478. package/build/features/entity/screens/Verify/Verify.js +4 -3
  479. package/build/features/featuresScreens.d.ts +2 -0
  480. package/build/features/featuresScreens.js +250 -16
  481. package/build/features/individual/Individual.d.ts +5 -1
  482. package/build/features/individual/Individual.js +26 -12
  483. package/build/features/individual/screens/AdditionalIndividualInfo/AdditionalIndividualInfo.d.ts +2 -2
  484. package/build/features/individual/screens/AdditionalIndividualInfo/AdditionalIndividualInfo.js +55 -15
  485. package/build/features/individual/screens/AdditionalIndividualInfo/IsAuthorizedSwitch.d.ts +36 -0
  486. package/build/features/individual/screens/AdditionalIndividualInfo/IsAuthorizedSwitch.js +76 -0
  487. package/build/features/individual/screens/AdditionalIndividualInfo/MonthlyIncome.js +5 -2
  488. package/build/features/individual/screens/AdditionalIndividualInfo/PEPSwitch.d.ts +4 -4
  489. package/build/features/individual/screens/AdditionalIndividualInfo/ShareValue.js +7 -4
  490. package/build/features/individual/screens/AdditionalIndividualInfo/validation.d.ts +4 -1
  491. package/build/features/individual/screens/AdditionalIndividualInfo/validation.js +4 -3
  492. package/build/features/individual/screens/IndividualList/IndividualList.d.ts +4 -4
  493. package/build/features/individual/screens/IndividualList/IndividualList.js +21 -6
  494. package/build/features/individual/screens/IndividualList/MobileNumber.js +8 -10
  495. package/build/features/individual/screens/IndividualList/UserList.js +13 -9
  496. package/build/features/individual/screens/IndividualList/validation.js +11 -4
  497. package/build/features/individual/screens/IndividualPersonalInfo/Gender.d.ts +4 -4
  498. package/build/features/individual/screens/IndividualPersonalInfo/ID.js +6 -2
  499. package/build/features/individual/screens/IndividualPersonalInfo/IndividualPersonalInfo.d.ts +2 -2
  500. package/build/features/individual/screens/IndividualPersonalInfo/IndividualPersonalInfo.js +79 -21
  501. package/build/features/individual/screens/IndividualPersonalInfo/MobileNumber.js +6 -5
  502. package/build/features/individual/screens/IndividualPersonalInfo/validation.d.ts +1 -1
  503. package/build/features/individual/screens/IndividualPersonalInfo/validation.js +75 -63
  504. package/build/features/individual/screens/IndividualPhoneInfo/MobileNumber.js +9 -11
  505. package/build/features/individual/screens/IndividualPhoneInfo/PhoneInfo.js +1 -1
  506. package/build/features/individual/screens/IndividualPhoneInfo/validation.js +11 -3
  507. package/build/features/individual/screens/OperatorError/OperatorError.d.ts +5 -0
  508. package/build/features/individual/screens/OperatorError/OperatorError.js +9 -0
  509. package/build/features/individual/screens/OperatorError/index.d.ts +3 -0
  510. package/build/features/individual/screens/OperatorError/index.js +2 -0
  511. package/build/features/individual/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +2 -3
  512. package/build/features/individual/screens/Verify/Verify.js +4 -3
  513. package/build/features/password/Password.d.ts +5 -1
  514. package/build/features/password/Password.js +90 -33
  515. package/build/features/password/screens/CreatePassword/CreatePassword.js +10 -4
  516. package/build/features/password/screens/OTP/OTP.js +4 -4
  517. package/build/features/password/screens/OperatorError/OperatorError.d.ts +5 -0
  518. package/build/features/password/screens/OperatorError/OperatorError.js +9 -0
  519. package/build/features/password/screens/OperatorError/index.d.ts +3 -0
  520. package/build/features/password/screens/OperatorError/index.js +2 -0
  521. package/build/features/password/screens/PrepareDataLoading/PrepareDataLoading.d.ts +4 -0
  522. package/build/features/password/screens/PrepareDataLoading/PrepareDataLoading.js +10 -0
  523. package/build/features/password/screens/PrepareDataLoading/index.d.ts +2 -0
  524. package/build/features/password/screens/PrepareDataLoading/index.js +2 -0
  525. package/build/features/password/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +2 -3
  526. package/build/features/password/screens/Verify/Verify.js +8 -7
  527. package/build/features/shared/Address/CountryList.d.ts +7 -7
  528. package/build/features/shared/Address/InputSelect.d.ts +7 -7
  529. package/build/features/shared/Background/Background.d.ts +3 -1
  530. package/build/features/shared/Background/Background.js +9 -11
  531. package/build/features/shared/BusinessCountry/BusinessCountry.d.ts +15 -0
  532. package/build/features/shared/BusinessCountry/BusinessCountry.js +179 -0
  533. package/build/features/shared/BusinessCountry/index.d.ts +2 -0
  534. package/build/features/shared/BusinessCountry/index.js +2 -0
  535. package/build/features/shared/Button/Button.js +11 -5
  536. package/build/features/shared/Button/EmailProvidersButtons.js +2 -0
  537. package/build/features/shared/Button/FlowsButtons.js +19 -4
  538. package/build/features/shared/Button/NafathButton.d.ts +8 -0
  539. package/build/features/shared/Button/{AbsherButton.js → NafathButton.js} +12 -3
  540. package/build/features/shared/Button/index.d.ts +2 -2
  541. package/build/features/shared/Button/index.js +2 -2
  542. package/build/features/shared/Calender/Calender.d.ts +2 -1
  543. package/build/features/shared/Calender/Calender.js +3 -3
  544. package/build/features/shared/Containers/FeatureContainer.d.ts +3 -1
  545. package/build/features/shared/Containers/FeatureContainer.js +5 -3
  546. package/build/features/shared/Containers/ScreenContainer.d.ts +1 -1
  547. package/build/features/shared/DataLoading/DataLoading.d.ts +4 -1
  548. package/build/features/shared/DataLoading/DataLoading.js +2 -2
  549. package/build/features/shared/Dialog/DialogContainer.js +2 -1
  550. package/build/features/shared/Footer/Footer.js +2 -1
  551. package/build/features/shared/Input/Input.d.ts +2 -2
  552. package/build/features/shared/NafathVerification/NafathVerification.d.ts +14 -0
  553. package/build/features/shared/NafathVerification/NafathVerification.js +92 -0
  554. package/build/features/shared/NafathVerification/VerifyNafathLoading.d.ts +8 -0
  555. package/build/features/shared/NafathVerification/VerifyNafathLoading.js +53 -0
  556. package/build/features/shared/NafathVerification/VerifyNafathSuccess.d.ts +5 -0
  557. package/build/features/shared/NafathVerification/VerifyNafathSuccess.js +8 -0
  558. package/build/features/shared/NafathVerification/index.d.ts +2 -0
  559. package/build/features/shared/NafathVerification/index.js +2 -0
  560. package/build/features/shared/SuccessFlowButtons/SuccessFlowButtons.d.ts +6 -1
  561. package/build/features/shared/SuccessFlowButtons/SuccessFlowButtons.js +10 -13
  562. package/build/features/shared/SuccessScreen/SuccessScreen.js +2 -2
  563. package/build/features/shared/UploadFile/FileUpload.d.ts +1 -1
  564. package/build/features/shared/UploadFile/UploadFile.d.ts +1 -1
  565. package/build/features/shared/UploadFile/UploadWrapper.d.ts +1 -1
  566. package/build/features/shared/UploadMultipleFile/UploadFile.d.ts +1 -1
  567. package/build/features/shared/UploadMultipleFile/UploadMultipleFile.d.ts +1 -1
  568. package/build/features/signIn/SignIn.js +18 -7
  569. package/build/features/signIn/screens/Mobile/MobileNumber.js +8 -7
  570. package/build/features/signIn/screens/Mobile/validation.js +11 -3
  571. package/build/features/signIn/screens/OTP/OTP.js +5 -4
  572. package/build/features/signIn/screens/OperatorError/OperatorError.d.ts +5 -0
  573. package/build/features/signIn/screens/OperatorError/OperatorError.js +9 -0
  574. package/build/features/signIn/screens/OperatorError/index.d.ts +3 -0
  575. package/build/features/signIn/screens/OperatorError/index.js +2 -0
  576. package/build/features/tax/Tax.d.ts +5 -1
  577. package/build/features/tax/Tax.js +26 -12
  578. package/build/features/tax/screens/OperatorError/OperatorError.d.ts +5 -0
  579. package/build/features/tax/screens/OperatorError/OperatorError.js +9 -0
  580. package/build/features/tax/screens/OperatorError/index.d.ts +3 -0
  581. package/build/features/tax/screens/OperatorError/index.js +2 -0
  582. package/build/features/tax/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +2 -3
  583. package/build/features/tax/screens/TaxDetails/TaxDetails.js +9 -3
  584. package/build/features/tax/screens/Verify/Verify.js +8 -7
  585. package/build/hooks/index.d.ts +3 -0
  586. package/build/hooks/index.js +3 -0
  587. package/build/hooks/useAppConfig.d.ts +3 -3
  588. package/build/hooks/useAppConfig.js +10 -8
  589. package/build/hooks/useAppDispatch.d.ts +2 -0
  590. package/build/hooks/useAppTheme.js +4 -3
  591. package/build/hooks/useCountDown.d.ts +10 -0
  592. package/build/hooks/useCountDown.js +17 -0
  593. package/build/hooks/useCountry.d.ts +1 -0
  594. package/build/hooks/useCountry.js +4 -3
  595. package/build/hooks/useFormDirtyCheck.d.ts +10 -0
  596. package/build/hooks/useFormDirtyCheck.js +66 -0
  597. package/build/hooks/useSanitizedTranslation.d.ts +2 -0
  598. package/build/hooks/useSanitizedTranslation.js +15 -0
  599. package/build/hooks/useVerifyToken.d.ts +5 -2
  600. package/build/hooks/useVerifyToken.js +10 -5
  601. package/build/index.css +360 -120
  602. package/build/index.d.ts +4 -2
  603. package/build/index.js +6 -2
  604. package/build/theme/components.js +7 -0
  605. package/build/theme/palette.js +4 -2
  606. package/build/theme/shadows.js +1 -1
  607. package/build/theme/theme.d.ts +1 -1
  608. package/build/theme/theme.js +2 -2
  609. package/build/utils/array.js +2 -2
  610. package/build/utils/common.d.ts +3 -0
  611. package/build/utils/common.js +38 -2
  612. package/build/utils/device.d.ts +2 -0
  613. package/build/utils/device.js +6 -0
  614. package/build/utils/locale.js +2 -1
  615. package/build/utils/object.d.ts +1 -0
  616. package/build/utils/object.js +4 -1
  617. package/build/utils/string.d.ts +7 -2
  618. package/build/utils/string.js +32 -5
  619. package/build/utils/validation.d.ts +5 -0
  620. package/build/utils/validation.js +16 -0
  621. package/package.json +2 -2
  622. package/build/features/business/screens/OTP/OTP.d.ts +0 -8
  623. package/build/features/business/screens/OTP/OTP.js +0 -90
  624. package/build/features/connect/screens/BrandSegment/SegmentLocations.d.ts +0 -8
  625. package/build/features/connect/screens/BrandSegment/SegmentLocations.js +0 -66
  626. package/build/features/connect/screens/BrandSegment/SegmentProfits.d.ts +0 -8
  627. package/build/features/connect/screens/BrandSegment/SegmentProfits.js +0 -66
  628. package/build/features/connect/screens/BrandSegment/SegmentTechs.d.ts +0 -8
  629. package/build/features/connect/screens/BrandSegment/SegmentTechs.js +0 -66
  630. package/build/features/connectExpress/screens/AuthenticationList/MerchantList.js +0 -100
  631. package/build/features/connectExpress/screens/AuthenticationList/TerminalList.js +0 -101
  632. package/build/features/connectExpress/screens/IdentityOTP/index.d.ts +0 -3
  633. package/build/features/connectExpress/screens/IdentityOTP/index.js +0 -2
  634. package/build/features/shared/Button/AbsherButton.d.ts +0 -8
  635. /package/build/features/{connect/screens/NID → auth/screens/DOB}/DOB.d.ts +0 -0
  636. /package/build/features/{connectExpress/screens/IdentityOTP → auth/screens/OTP}/OTP.d.ts +0 -0
  637. /package/build/features/{business → auth}/screens/OTP/OTPInput.d.ts +0 -0
  638. /package/build/features/{business → auth}/screens/OTP/index.d.ts +0 -0
  639. /package/build/features/{business → auth}/screens/OTP/index.js +0 -0
  640. /package/build/features/{business → auth}/screens/OTP/validation.d.ts +0 -0
  641. /package/build/features/{business → auth}/screens/OTP/validation.js +0 -0
  642. /package/build/features/{connectExpress/screens/IdentityOTP/OTPInput.d.ts → board/screens/Verify/Verify.d.ts} +0 -0
  643. /package/build/features/{connectExpress/screens/IdentityOTP → board/screens/Verify}/validation.d.ts +0 -0
  644. /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 } from '../../../constants';
62
+ import { convertNumbers2English, hasKey, sleep, isKW, isSA, dateFormat, isOtherLicense, isOtherThanKWOrSA, hasNoneEditableValue, sendCustomEventToGTM } 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,100 @@ 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, 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
+ screen_1 = isNextScreenDob ? 'BUSINESS_DOB_STEP' : 'BUSINESS_BUSINESS_TYPE_STEP';
356
+ thunkApi.dispatch(handleNextScreenStep(screen_1));
357
+ return [2, { response: data, isNextScreenDob: isNextScreenDob }];
358
+ case 5: return [4, sleep(interval * 1000)];
359
+ case 6:
360
+ _h.sent();
361
+ _h.label = 7;
362
+ case 7:
363
+ count++;
364
+ return [3, 1];
365
+ case 8: throw new Error(NAFATH_VERIFICATION_FAILED);
307
366
  }
308
367
  });
309
368
  }); });
@@ -381,59 +440,80 @@ export var createCivilIdAuth = createAsyncThunk('createCivilIdAuth', function (p
381
440
  });
382
441
  }); });
383
442
  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;
443
+ var _a, settings, business, identification_id_type, stepName, lead_id, countryIso2, dob, requestBody, data, business_id, entity, screen;
385
444
  var _b, _c;
386
445
  return __generator(this, function (_d) {
387
446
  switch (_d.label) {
388
447
  case 0:
389
448
  _a = thunkApi.getState(), settings = _a.settings, business = _a.business;
390
- identification_id_type = params.nid.startsWith('1') ? IDENTIFICATION_TYPE.NID : IDENTIFICATION_TYPE.IQAMA;
449
+ identification_id_type = IDENTIFICATION_TYPE.NAFATH;
391
450
  stepName = BUSINESS_STEP_NAMES.IDENTITY_AUTH;
392
451
  lead_id = (business.data.verify.responseBody || {}).lead_id;
452
+ countryIso2 = settings.data.businessCountry.iso2;
453
+ if (isOtherThanKWOrSA(countryIso2)) {
454
+ identification_id_type = IDENTIFICATION_TYPE.NID;
455
+ }
456
+ dob = identification_id_type === IDENTIFICATION_TYPE.NAFATH ? undefined : dateFormat(new Date(params.dob));
393
457
  requestBody = {
394
458
  id: lead_id || '',
395
459
  identification: {
396
460
  id: params.nid,
397
- issued_country_code: settings.data.businessCountry.iso2,
461
+ issued_country_code: countryIso2,
398
462
  type: identification_id_type
399
463
  },
400
- date_of_birth: params.dob,
464
+ date_of_birth: dob,
401
465
  step_name: stepName,
402
466
  encryption_contract: ['identification.issued_country_code', 'identification.id', 'identification.type', 'date_of_birth']
403
467
  };
404
468
  return [4, API.leadService.updateLead(requestBody)];
405
469
  case 1:
406
470
  data = _d.sent();
407
- thunkApi.dispatch(handleNextScreenStep());
471
+ business_id = data.business_id, entity = data.entity;
472
+ screen = 'BUSINESS_VERIFY_NAFATH_STEP';
473
+ if (!isOtherThanKWOrSA(countryIso2)) return [3, 3];
474
+ screen = 'BUSINESS_BUSINESS_TYPE_STEP';
475
+ return [4, thunkApi.dispatch(retrieveAllEntityList({ businessId: business_id, entityId: entity === null || entity === void 0 ? void 0 : entity.id }))];
476
+ case 2:
477
+ _d.sent();
478
+ _d.label = 3;
479
+ case 3:
480
+ thunkApi.dispatch(handleNextScreenStep(screen));
408
481
  (_c = (_b = settings.data.appConfig).onStepCompleted) === null || _c === void 0 ? void 0 : _c.call(_b, settings.data.activeScreen.name, requestBody);
409
482
  return [2, { data: data, formData: __assign(__assign({}, params), { type: identification_id_type }) }];
410
483
  }
411
484
  });
412
485
  }); });
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) {
486
+ export var updateLeadDOB = createAsyncThunk('business/updateLeadDOB', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
487
+ var _a, settings, business, stepName, _b, lead_id, verifyNextStepName, requestBody, data;
488
+ var _c, _d, _e, _f;
489
+ return __generator(this, function (_g) {
490
+ switch (_g.label) {
417
491
  case 0:
418
492
  _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;
493
+ stepName = BUSINESS_STEP_NAMES.BUSINESS_DOB_INFO;
494
+ _b = business.data.verify.responseBody || {}, lead_id = _b.lead_id, verifyNextStepName = _b.verifyNextStepName;
422
495
  requestBody = {
423
496
  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,
497
+ date_of_birth: params.dob,
430
498
  step_name: stepName,
431
- encryption_contract: ['identification.issued_country_code', 'identification.id', 'identification.type', 'date_of_birth']
499
+ encryption_contract: ['date_of_birth']
432
500
  };
433
501
  return [4, API.leadService.updateLead(requestBody)];
434
502
  case 1:
435
- data = _c.sent();
436
- return [2, data];
503
+ data = _g.sent();
504
+ if (!(verifyNextStepName === COLLECT_DOB_INFO_NAFATH)) return [3, 4];
505
+ return [4, thunkApi.dispatch(retrieveAllEntityList({ businessId: data.business_id, entityId: (_c = data.entity) === null || _c === void 0 ? void 0 : _c.id }))];
506
+ case 2:
507
+ _g.sent();
508
+ if (!isSA((_d = settings.data.businessCountry) === null || _d === void 0 ? void 0 : _d.iso2)) return [3, 4];
509
+ return [4, thunkApi.dispatch(retrieveEntityList({ leadId: data === null || data === void 0 ? void 0 : data.id }))];
510
+ case 3:
511
+ _g.sent();
512
+ _g.label = 4;
513
+ case 4:
514
+ thunkApi.dispatch(handleNextScreenStep());
515
+ (_f = (_e = settings.data.appConfig).onStepCompleted) === null || _f === void 0 ? void 0 : _f.call(_e, settings.data.activeScreen.name, requestBody);
516
+ return [2, { data: data, formData: params }];
437
517
  }
438
518
  });
439
519
  }); });
@@ -470,35 +550,35 @@ export var retrieveBoardDetails = createAsyncThunk('retrieveBoardDetails', funct
470
550
  case 1:
471
551
  data = _c.sent();
472
552
  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 })
553
+ 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
554
  }];
475
555
  }
476
556
  });
477
557
  }); });
478
558
  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) {
559
+ 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;
560
+ var _d, _e, _f;
561
+ return __generator(this, function (_g) {
562
+ switch (_g.label) {
483
563
  case 0:
484
564
  _a = thunkApi.getState(), settings = _a.settings, business = _a.business;
485
- isNonSA = !isSA(settings.data.businessCountry.iso2);
565
+ isKWCountry = isKW(settings.data.businessCountry.iso2);
486
566
  selectedLicense = params.selectedLicense, licenseNumber = params.licenseNumber, entityLegalName = params.entityLegalName, certificateId = params.certificateId, articleId = params.articleId, selectedEntityLicense = params.selectedEntityLicense;
487
567
  isFL = (selectedLicense === null || selectedLicense === void 0 ? void 0 : selectedLicense.type) === BusinessType.FL;
488
568
  _b = business.data.verify.responseBody || {}, lead_id = _b.lead_id, brand = _b.brand;
489
569
  stepName = 'BUSINESS_ACTIVITIES_STEP';
490
570
  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 : ''
571
+ id: (selectedEntityLicense === null || selectedEntityLicense === void 0 ? void 0 : selectedEntityLicense.id) && (isKWCountry ? !isFL : true) ? selectedEntityLicense === null || selectedEntityLicense === void 0 ? void 0 : selectedEntityLicense.id : ''
492
572
  } }, (!(selectedEntityLicense === null || selectedEntityLicense === void 0 ? void 0 : selectedEntityLicense.id) && {
493
- license_number: isNonSA && isFL ? '' : licenseNumber,
573
+ license_number: isKWCountry && isFL ? '' : licenseNumber,
494
574
  license_type: isFL ? LicenseType.FL : LicenseType.CR,
495
575
  business_type: selectedLicense === null || selectedLicense === void 0 ? void 0 : selectedLicense.type
496
- })), { step_name: BUSINESS_STEP_NAMES.BUSINESS_CR_INFO }), (isNonSA && {
576
+ })), { step_name: BUSINESS_STEP_NAMES.BUSINESS_CR_INFO }), (isKWCountry && {
497
577
  business_name: isFL ? undefined : { ar: entityLegalName, en: entityLegalName }
498
578
  })), { encryption_contract: ['license_number', 'business_type', 'license_type'] });
499
579
  return [4, API.leadService.updateLead(payload)];
500
580
  case 1:
501
- data = _f.sent();
581
+ data = _g.sent();
502
582
  accountBody = {
503
583
  lead_id: lead_id,
504
584
  notify: {
@@ -510,34 +590,44 @@ export var updateLeadBusinessType = createAsyncThunk('updateLeadBusinessType', f
510
590
  step_name: BUSINESS_STEP_NAMES.BUSINESS_INFO_CONFIRM
511
591
  };
512
592
  brandData = undefined;
513
- _f.label = 2;
593
+ _g.label = 2;
514
594
  case 2:
515
- _f.trys.push([2, 5, , 6]);
595
+ _g.trys.push([2, 7, , 8]);
516
596
  return [4, API.accountService.createAccount(accountBody)];
517
597
  case 3:
518
- accountData = _f.sent();
598
+ accountData = _g.sent();
599
+ if (!!(accountData === null || accountData === void 0 ? void 0 : accountData.entity_id)) return [3, 5];
600
+ return [4, API.leadService.retrieveLead(lead_id)];
601
+ case 4:
602
+ data_1 = (_g.sent()).data;
603
+ if (!((_d = data_1 === null || data_1 === void 0 ? void 0 : data_1.entity) === null || _d === void 0 ? void 0 : _d.id))
604
+ throw new Error('Internal server error');
605
+ accountData = __assign(__assign({}, accountData), { entity_id: data_1.entity.id });
606
+ _g.label = 5;
607
+ case 5:
519
608
  thunkApi.dispatch(updateStepName(BUSINESS_STEP_NAMES.BUSINESS_INFO_CONFIRM));
520
609
  return [4, API.brandService.retrieveBrand(brand === null || brand === void 0 ? void 0 : brand.id)];
521
- case 4:
522
- brandRes = (_f.sent()).brand;
610
+ case 6:
611
+ brandRes = (_g.sent()).brand;
523
612
  brandData = brandRes;
524
- return [3, 6];
525
- case 5:
526
- _c = _f.sent();
613
+ return [3, 8];
614
+ case 7:
615
+ _c = _g.sent();
527
616
  message = _c.message;
528
617
  error = message;
529
618
  if ((error === null || error === void 0 ? void 0 : error.toLowerCase()) === 'entity with license already exist') {
530
619
  stepName = 'BUSINESS_VERIFY_BRAND_INFO';
620
+ sleep(50).then(function () { return thunkApi.dispatch(handleNextScreenStep(stepName)); });
621
+ return [2, { data: data, formData: params, accountData: accountData, documentData: documentData, entityData: entityData, isicActivityList: [] }];
531
622
  }
532
623
  else
533
624
  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;
625
+ return [3, 8];
626
+ case 8: return [4, API.dataService.getActivitiesIsIc()];
627
+ case 9:
628
+ list = (_g.sent()).list;
539
629
  entityId = accountData === null || accountData === void 0 ? void 0 : accountData.entity_id;
540
- if (!((certificateId || []).length > 0)) return [3, 9];
630
+ if (!((certificateId || []).length > 0)) return [3, 11];
541
631
  documentBody = {
542
632
  entity_id: entityId || '',
543
633
  documents: [
@@ -548,145 +638,161 @@ export var updateLeadBusinessType = createAsyncThunk('updateLeadBusinessType', f
548
638
  ]
549
639
  };
550
640
  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];
641
+ case 10:
642
+ documentData = _g.sent();
643
+ _g.label = 11;
644
+ case 11:
645
+ if (!(articleId && entityId)) return [3, 13];
556
646
  payload_1 = {
557
647
  id: (accountData === null || accountData === void 0 ? void 0 : accountData.entity_id) || '',
558
648
  AOA_file_id: articleId
559
649
  };
560
650
  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);
651
+ case 12:
652
+ entityData = _g.sent();
653
+ _g.label = 13;
654
+ case 13:
655
+ sleep(50).then(function () { return thunkApi.dispatch(handleNextScreenStep(stepName)); });
656
+ (_f = (_e = settings.data.appConfig).onStepCompleted) === null || _f === void 0 ? void 0 : _f.call(_e, settings.data.activeScreen.name, params);
567
657
  return [2, { data: __assign(__assign({}, data), { brand: brandData }), formData: params, accountData: accountData, documentData: documentData, entityData: entityData, isicActivityList: list || [] }];
568
658
  }
569
659
  });
570
660
  }); });
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
- }
661
+ export var updateActivitiesInfo = createAsyncThunk('updateActivitiesInfo', function (_a, thunkApi) {
662
+ var formData = _a.formData, originalFormData = _a.originalFormData;
663
+ return __awaiter(void 0, void 0, void 0, function () {
664
+ 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;
665
+ var _e, _f;
666
+ return __generator(this, function (_g) {
667
+ switch (_g.label) {
668
+ case 0:
669
+ _b = thunkApi.getState(), settings = _b.settings, business = _b.business;
670
+ _c = business.data.verify.responseBody || {}, brand = _c.brand, entity_activities = _c.entity_activities, entity = _c.entity;
671
+ _d = brand || {}, brandActivities = _d.activities, brandId = _d.id, data_status = _d.data_status;
672
+ activities = formData.activities, operationStartDate = formData.operationStartDate;
673
+ isActivitiesNonEditable = hasNoneEditableValue(data_status, 'activities');
674
+ isOperationStartDateNonEditable = hasNoneEditableValue(data_status === null || data_status === void 0 ? void 0 : data_status.operations, 'business_start_date');
675
+ stepName = BUSINESS_STEP_NAMES.BUSINESS_CR_ACTIVITIES;
676
+ id = brandId;
677
+ removedActivities = (brandActivities || []).filter(function (brandActivity) { return !(activities || []).some(function (activity) { return activity.id === brandActivity.id; }); });
678
+ if (!(!isActivitiesNonEditable && (removedActivities === null || removedActivities === void 0 ? void 0 : removedActivities.length))) return [3, 2];
679
+ payload = {
680
+ id: id,
681
+ activities: removedActivities.map(function (_a) {
682
+ var id = _a.id;
683
+ return ({ id: id });
684
+ })
685
+ };
686
+ return [4, API.brandService.removeBrandActivity(payload)];
687
+ case 1:
688
+ _g.sent();
689
+ _g.label = 2;
690
+ case 2:
691
+ newBrandActivities = activities === null || activities === void 0 ? void 0 : activities.filter(function (act) { return !(brandActivities || []).some(function (brandActivity) { return act.id === brandActivity.id; }); });
692
+ newEntityActivities = activities === null || activities === void 0 ? void 0 : activities.filter(function (act) { return !(entity_activities || []).some(function (entityActivity) { return act.id === entityActivity.id; }); });
693
+ if (!(!isActivitiesNonEditable && (newEntityActivities === null || newEntityActivities === void 0 ? void 0 : newEntityActivities.length))) return [3, 4];
694
+ activityPayload = {
695
+ id: entity === null || entity === void 0 ? void 0 : entity.id,
696
+ activities: newEntityActivities.map(function (_a) {
697
+ var id = _a.id;
698
+ return ({ id: id });
699
+ })
700
+ };
701
+ return [4, API.entityService.updateEntityActivity(activityPayload)];
702
+ case 3:
703
+ _g.sent();
704
+ _g.label = 4;
705
+ case 4:
706
+ requestBody = __assign(__assign(__assign({ id: id }, ((newBrandActivities === null || newBrandActivities === void 0 ? void 0 : newBrandActivities.length) && !isActivitiesNonEditable && { activities: newBrandActivities.map(function (_a) {
707
+ var id = _a.id;
708
+ return ({ id: id });
709
+ }) })), (!isOperationStartDateNonEditable && {
710
+ operations: {
711
+ start_date: operationStartDate
712
+ }
713
+ })), { step_name: stepName, encryption_contract: ['operations.start_date'] });
714
+ return [4, API.brandService.updateBrandInfo(requestBody)];
715
+ case 5:
716
+ data = _g.sent();
717
+ return [4, thunkApi.dispatch(retrieveDataList())];
718
+ case 6:
719
+ _g.sent();
720
+ thunkApi.dispatch(updateStepName(stepName));
721
+ thunkApi.dispatch(handleNextScreenStep());
722
+ (_f = (_e = settings.data.appConfig).onStepCompleted) === null || _f === void 0 ? void 0 : _f.call(_e, settings.data.activeScreen.name, requestBody);
723
+ return [2, { data: data === null || data === void 0 ? void 0 : data.brand, formData: originalFormData }];
724
+ }
725
+ });
624
726
  });
625
- }); });
727
+ });
626
728
  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) {
729
+ var settings, countryISO2, dataBody, _a, customer_base, sales, expected_customers;
730
+ var _b;
731
+ return __generator(this, function (_c) {
732
+ switch (_c.label) {
630
733
  case 0:
631
734
  settings = thunkApi.getState().settings;
632
735
  countryISO2 = settings.data.businessCountry.iso2;
633
736
  dataBody = {
634
- page: 0
635
- };
636
- salesDataBody = {
637
737
  page: 0,
638
738
  country_code: [countryISO2]
639
739
  };
640
- return [4, Promise.all([
641
- API.dataService.getCustomerBases(dataBody),
642
- API.dataService.getExpectedSales(salesDataBody),
643
- API.dataService.getExpectedCustomerSales(dataBody)
644
- ])];
740
+ return [4, API.dataService.getBrandOperations(dataBody)];
645
741
  case 1:
646
- _a = _b.sent(), customerBases = _a[0].list, expectedSales = _a[1].list, expectedCustomerSales = _a[2].list;
742
+ _a = _c.sent(), customer_base = _a.customer_base, sales = _a.sales, expected_customers = _a.expected_customers;
647
743
  return [2, {
648
- customerBases: customerBases,
649
- expectedSales: expectedSales,
650
- expectedCustomerSales: expectedCustomerSales,
744
+ customerBases: (customer_base === null || customer_base === void 0 ? void 0 : customer_base.list) || [],
745
+ expectedSales: ((_b = sales === null || sales === void 0 ? void 0 : sales.list) === null || _b === void 0 ? void 0 : _b.length) ? sales.list : EXPECTED_SALES_LIST,
746
+ expectedCustomerSales: (expected_customers === null || expected_customers === void 0 ? void 0 : expected_customers.list) || [],
651
747
  countryISO2: countryISO2
652
748
  }];
653
749
  }
654
750
  });
655
751
  }); });
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
- }
752
+ export var updateCustomersInfo = createAsyncThunk('updateCustomersInfo', function (_a, thunkApi) {
753
+ var formData = _a.formData, originalFormData = _a.originalFormData;
754
+ return __awaiter(void 0, void 0, void 0, function () {
755
+ var _b, settings, business, _c, data_status, id, isCustomerBaseLocationNonEditable, isCustomerBaseNonEditable, isTermsNonEditable, isSalesRangeNonEditable, customerLocations, expectedCustomer, expectedSale, stepName, requestBody, customerLocation, customerBaseId, salesId, customerBase, data;
756
+ var _d, _e, _f;
757
+ return __generator(this, function (_g) {
758
+ switch (_g.label) {
759
+ case 0:
760
+ _b = thunkApi.getState(), settings = _b.settings, business = _b.business;
761
+ _c = ((_d = business.data.verify.responseBody) === null || _d === void 0 ? void 0 : _d.brand) || {}, data_status = _c.data_status, id = _c.id;
762
+ isCustomerBaseLocationNonEditable = hasNoneEditableValue(data_status === null || data_status === void 0 ? void 0 : data_status.operations, 'customer_base_location');
763
+ isCustomerBaseNonEditable = hasNoneEditableValue(data_status === null || data_status === void 0 ? void 0 : data_status.operations, 'customer_base');
764
+ isTermsNonEditable = hasNoneEditableValue(data_status, 'terms');
765
+ isSalesRangeNonEditable = hasNoneEditableValue(data_status === null || data_status === void 0 ? void 0 : data_status.operations, 'sales_range');
766
+ customerLocations = formData.customerLocations, expectedCustomer = formData.expectedCustomer, expectedSale = formData.expectedSale;
767
+ stepName = BUSINESS_STEP_NAMES.BUSINESS_CUSTOMERS;
768
+ requestBody = {
769
+ term: !isTermsNonEditable ? ['refund', 'chargeback'] : undefined,
770
+ id: id,
771
+ step_name: stepName,
772
+ encryption_contract: []
773
+ };
774
+ customerLocation = (customerLocations || []).map(function (location) { return ({
775
+ id: location.id
776
+ }); });
777
+ customerBaseId = (expectedCustomer === null || expectedCustomer === void 0 ? void 0 : expectedCustomer.id) && { id: expectedCustomer.id, period: 'monthly' };
778
+ salesId = (expectedSale === null || expectedSale === void 0 ? void 0 : expectedSale.id) && { id: expectedSale.id, period: 'monthly' };
779
+ customerBase = (customerBaseId || customerLocation.length) && __assign(__assign({}, (customerBaseId && !isCustomerBaseNonEditable && { id: expectedCustomer.id, period: 'monthly' })), (customerLocation.length && !isCustomerBaseLocationNonEditable && { locations: customerLocation }));
780
+ if (customerBase && !(isCustomerBaseNonEditable && isCustomerBaseLocationNonEditable))
781
+ requestBody = __assign(__assign({}, requestBody), { operations: __assign(__assign({}, requestBody.operations), { customer_base: customerBase }) });
782
+ if (salesId && !isSalesRangeNonEditable) {
783
+ requestBody = __assign(__assign({}, requestBody), { operations: __assign(__assign({}, requestBody.operations), { sales: salesId }) });
784
+ }
785
+ return [4, API.brandService.updateBrandInfo(requestBody)];
786
+ case 1:
787
+ data = _g.sent();
788
+ thunkApi.dispatch(updateStepName(stepName));
789
+ thunkApi.dispatch(handleNextScreenStep());
790
+ (_f = (_e = settings.data.appConfig).onStepCompleted) === null || _f === void 0 ? void 0 : _f.call(_e, settings.data.activeScreen.name, requestBody);
791
+ return [2, { data: data === null || data === void 0 ? void 0 : data.brand, formData: originalFormData }];
792
+ }
793
+ });
688
794
  });
689
- }); });
795
+ });
690
796
  export var updateLeadSuccess = createAsyncThunk('businessUpdateLeadSuccess', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
691
797
  var _a, settings, business, _b, steps, lead_id, flowCompleted, boardResponse, payload, data, board_id;
692
798
  var _c, _d, _e, _f;
@@ -695,7 +801,8 @@ export var updateLeadSuccess = createAsyncThunk('businessUpdateLeadSuccess', fun
695
801
  case 0:
696
802
  _a = thunkApi.getState(), settings = _a.settings, business = _a.business;
697
803
  _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; });
804
+ flowCompleted = hasKey(steps, BUSINESS_STEP_NAMES.BUSINESS_SUCCESS);
805
+ console.info('stop success call', flowCompleted || !lead_id);
699
806
  if (flowCompleted || !lead_id)
700
807
  return [2];
701
808
  boardResponse = undefined;
@@ -708,6 +815,12 @@ export var updateLeadSuccess = createAsyncThunk('businessUpdateLeadSuccess', fun
708
815
  return [4, API.leadService.updateLead(payload)];
709
816
  case 1:
710
817
  data = _g.sent();
818
+ sendCustomEventToGTM({
819
+ event: 'Send Event',
820
+ event_category: 'Account Creation Flow',
821
+ event_action: 'Account Creation Success',
822
+ event_label: settings.data.businessCountry.iso2
823
+ });
711
824
  board_id = data === null || data === void 0 ? void 0 : data.board_id;
712
825
  if (!board_id) return [3, 4];
713
826
  return [4, API.boardService.retrieveBoardInfoStatus(board_id)];
@@ -770,9 +883,13 @@ var initialState = {
770
883
  dob: '',
771
884
  type: ''
772
885
  },
886
+ dobData: {
887
+ dob: ''
888
+ },
773
889
  businessTypeData: {
774
890
  licenseNumber: '',
775
- entityLegalName: ''
891
+ entityLegalName: '',
892
+ isPrevDob: false
776
893
  },
777
894
  activitiesData: {
778
895
  activities: [],
@@ -818,24 +935,31 @@ export var businessSlice = createSlice({
818
935
  state.customLoading = true;
819
936
  })
820
937
  .addCase(verifyLeadToken.fulfilled, function (state, action) {
821
- var _a, _b;
938
+ var _a, _b, _c, _d, _e;
822
939
  state.error = null;
823
940
  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;
941
+ 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
942
  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 }));
943
+ 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 }));
944
+ var _g = leadData || {}, identification = _g.identification, date_of_birth = _g.date_of_birth;
945
+ if (identification === null || identification === void 0 ? void 0 : identification.id)
946
+ state.data.nidData.nid = identification.id;
947
+ if (date_of_birth)
948
+ state.data.nidData.dob = dateFormat(date_of_birth);
949
+ if (identification === null || identification === void 0 ? void 0 : identification.type)
950
+ state.data.nidData.type = identification.type;
827
951
  if (token)
828
952
  state.data.verify.token = token;
829
953
  state.data.otpData.isNID = false;
830
954
  if (isRequireOTP)
831
955
  return;
832
- var _d = state.data.verify.responseBody || {}, entity = _d.entity, entity_activities = _d.entity_activities, business_name = _d.business_name;
956
+ var _h = state.data.verify.responseBody || {}, entity = _h.entity, entity_activities = _h.entity_activities, business_name = _h.business_name;
833
957
  if (business_name === null || business_name === void 0 ? void 0 : business_name.en)
834
958
  state.data.businessTypeData.entityLegalName = business_name === null || business_name === void 0 ? void 0 : business_name.en;
835
959
  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
960
  if (issuingDate)
837
961
  state.data.activitiesData.operationStartDate = convertNumbers2English(dateFormat(issuingDate));
838
- var _e = brandData || {}, terms = _e.terms, activities = _e.activities;
962
+ var _j = brandData || {}, terms = _j.terms, activities = _j.activities;
839
963
  var entityActivities = (entity_activities === null || entity_activities === void 0 ? void 0 : entity_activities.filter(function (activity) {
840
964
  return !(activities === null || activities === void 0 ? void 0 : activities.some(function (value) { return value.id === activity.id; }));
841
965
  })) || [];
@@ -847,7 +971,8 @@ export var businessSlice = createSlice({
847
971
  }
848
972
  });
849
973
  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 });
974
+ var licenseList = [OTHER_CR_LICENSE, OTHER_FL_LICENSE];
975
+ 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
976
  })
852
977
  .addCase(verifyLeadToken.rejected, function (state, action) {
853
978
  state.error = action.error.message;
@@ -859,13 +984,13 @@ export var businessSlice = createSlice({
859
984
  .addCase(resendOTP.fulfilled, function (state, action) {
860
985
  var _a;
861
986
  state.error = null;
862
- var data = action.payload.data;
987
+ var _b = action.payload, data = _b.data, verifyNextStepName = _b.verifyNextStepName;
863
988
  var description = (((_a = data === null || data === void 0 ? void 0 : data.errors) === null || _a === void 0 ? void 0 : _a[0]) || {}).description;
864
989
  if (description) {
865
990
  state.error = description;
866
991
  return;
867
992
  }
868
- state.data.verify.responseBody = __assign(__assign({}, state.data.verify.responseBody), data);
993
+ state.data.verify.responseBody = __assign(__assign(__assign({}, state.data.verify.responseBody), data), { verifyNextStepName: verifyNextStepName });
869
994
  })
870
995
  .addCase(resendOTP.rejected, function (state, action) {
871
996
  state.error = action.error.message;
@@ -875,20 +1000,27 @@ export var businessSlice = createSlice({
875
1000
  state.error = null;
876
1001
  })
877
1002
  .addCase(verifyLeadOTP.fulfilled, function (state, action) {
878
- var _a, _b;
1003
+ var _a, _b, _c, _d, _e;
879
1004
  state.loading = false;
880
1005
  state.error = null;
881
- var _c = action.payload, data = _c.data, formData = _c.formData, brand = _c.brand, leadData = _c.leadData, isicActivityList = _c.isicActivityList;
1006
+ var _f = action.payload, data = _f.data, formData = _f.formData, brand = _f.brand, leadData = _f.leadData, isicActivityList = _f.isicActivityList, verifyNextStepName = _f.verifyNextStepName;
882
1007
  state.data.otpData = formData;
883
1008
  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;
1009
+ 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) || [] });
1010
+ var _g = leadData || {}, identification = _g.identification, date_of_birth = _g.date_of_birth;
1011
+ if (identification === null || identification === void 0 ? void 0 : identification.id)
1012
+ state.data.nidData.nid = identification.id;
1013
+ if (date_of_birth)
1014
+ state.data.nidData.dob = dateFormat(date_of_birth);
1015
+ if (identification === null || identification === void 0 ? void 0 : identification.type)
1016
+ state.data.nidData.type = identification.type;
1017
+ var _h = leadData || {}, entity = _h.entity, entity_activities = _h.entity_activities, business_name = _h.business_name;
886
1018
  if (business_name === null || business_name === void 0 ? void 0 : business_name.en)
887
1019
  state.data.businessTypeData.entityLegalName = business_name === null || business_name === void 0 ? void 0 : business_name.en;
888
1020
  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
1021
  if (issuingDate)
890
1022
  state.data.activitiesData.operationStartDate = convertNumbers2English(dateFormat(issuingDate));
891
- var _e = brand || {}, terms = _e.terms, activities = _e.activities;
1023
+ var _j = brand || {}, terms = _j.terms, activities = _j.activities;
892
1024
  var entityActivities = (entity_activities === null || entity_activities === void 0 ? void 0 : entity_activities.filter(function (activity) {
893
1025
  return !(activities === null || activities === void 0 ? void 0 : activities.some(function (value) { return value.id === activity.id; }));
894
1026
  })) || [];
@@ -900,7 +1032,8 @@ export var businessSlice = createSlice({
900
1032
  }
901
1033
  });
902
1034
  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 });
1035
+ var licenseList = [OTHER_CR_LICENSE, OTHER_FL_LICENSE];
1036
+ 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
1037
  })
905
1038
  .addCase(verifyLeadOTP.rejected, function (state, action) {
906
1039
  state.loading = false;
@@ -965,23 +1098,37 @@ export var businessSlice = createSlice({
965
1098
  state.loading = false;
966
1099
  state.error = action.error.message;
967
1100
  })
968
- .addCase(resendOTPLeadIdentity.pending, function (state) {
1101
+ .addCase(verifyNafath.pending, function (state) {
1102
+ state.loading = true;
969
1103
  state.error = null;
970
1104
  })
971
- .addCase(resendOTPLeadIdentity.fulfilled, function (state, action) {
972
- var _a;
1105
+ .addCase(verifyNafath.fulfilled, function (state, action) {
1106
+ state.loading = false;
973
1107
  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;
1108
+ var _a = action.payload, response = _a.response, isNextScreenDob = _a.isNextScreenDob;
1109
+ state.data.businessTypeData.isPrevDob = isNextScreenDob || false;
1110
+ state.data.otpData.responseBody = response;
1111
+ })
1112
+ .addCase(verifyNafath.rejected, function (state, action) {
1113
+ state.loading = false;
1114
+ var error = action.error.message;
1115
+ if (error !== 'Aborted') {
1116
+ state.error = error;
979
1117
  }
980
- state.data.nidData.responseBody = data;
981
- state.data.otpData.otp = '';
982
- state.data.otpData.isNID = true;
983
1118
  })
984
- .addCase(resendOTPLeadIdentity.rejected, function (state, action) {
1119
+ .addCase(updateLeadDOB.pending, function (state) {
1120
+ state.loading = true;
1121
+ state.error = null;
1122
+ })
1123
+ .addCase(updateLeadDOB.fulfilled, function (state, action) {
1124
+ state.loading = false;
1125
+ state.error = null;
1126
+ var _a = action.payload, data = _a.data, formData = _a.formData;
1127
+ state.data.dobData = formData;
1128
+ state.data.dobData.responseBody = data;
1129
+ })
1130
+ .addCase(updateLeadDOB.rejected, function (state, action) {
1131
+ state.loading = false;
985
1132
  state.error = action.error.message;
986
1133
  })
987
1134
  .addCase(retrieveEntityList.pending, function (state) {