@tap-payments/auth-jsconnect 2.6.2-test → 2.6.3

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 (638) hide show
  1. package/README.md +1 -1
  2. package/build/@types/app.d.ts +150 -12
  3. package/build/@types/app.js +18 -1
  4. package/build/@types/config.d.ts +45 -0
  5. package/build/@types/config.js +1 -0
  6. package/build/@types/form.d.ts +19 -2
  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 +5 -0
  13. package/build/api/account.js +16 -2
  14. package/build/api/auth.d.ts +25 -1
  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 +30 -2
  22. package/build/api/entity.js +49 -5
  23. package/build/api/firebase.js +68 -8
  24. package/build/api/index.d.ts +21 -25
  25. package/build/api/lead.d.ts +25 -3
  26. package/build/api/lead.js +47 -1
  27. package/build/api/operator.d.ts +10 -0
  28. package/build/api/operator.js +9 -1
  29. package/build/app/rootReducer.d.ts +2 -0
  30. package/build/app/rootReducer.js +5 -1
  31. package/build/app/settings.d.ts +14 -3
  32. package/build/app/settings.js +127 -41
  33. package/build/app/store.d.ts +4 -0
  34. package/build/assets/locales/ar.json +333 -131
  35. package/build/assets/locales/en.json +330 -131
  36. package/build/components/AnimationFlow/AnimationFlow.d.ts +14 -3
  37. package/build/components/AnimationFlow/AnimationFlow.js +16 -5
  38. package/build/components/AnimationFlow/BottomSheet.d.ts +7 -2
  39. package/build/components/AnimationFlow/BottomSheet.js +37 -12
  40. package/build/components/AnimationFlow/Dialog.d.ts +11 -2
  41. package/build/components/AnimationFlow/Dialog.js +7 -11
  42. package/build/components/AnimationFlow/Loader.d.ts +6 -1
  43. package/build/components/AnimationFlow/Loader.js +17 -5
  44. package/build/components/ArabicDatePicker/ArabicDatePicker.d.ts +1 -1
  45. package/build/components/ArabicDatePicker/ArabicDatePicker.js +2 -2
  46. package/build/components/DatePicker/DatePicker.d.ts +1 -1
  47. package/build/components/DatePicker/DatePicker.js +2 -2
  48. package/build/components/ExpandIcon/ExpandIcon.d.ts +2 -0
  49. package/build/components/Footer/Footer.js +2 -1
  50. package/build/components/Providers/ThemeProvider.js +3 -3
  51. package/build/components/SimpleList/SimpleList.js +1 -1
  52. package/build/components/Slide/Slide.d.ts +1 -1
  53. package/build/components/Tooltip/Tooltip.js +1 -1
  54. package/build/constants/api.d.ts +11 -7
  55. package/build/constants/api.js +22 -14
  56. package/build/constants/app.d.ts +47 -0
  57. package/build/constants/app.js +393 -22
  58. package/build/constants/assets.d.ts +4 -0
  59. package/build/constants/assets.js +5 -1
  60. package/build/constants/dummy.d.ts +43 -196
  61. package/build/constants/dummy.js +614 -6141
  62. package/build/constants/validation.d.ts +5 -0
  63. package/build/constants/validation.js +6 -1
  64. package/build/features/app/auth/authStore.d.ts +103 -0
  65. package/build/features/app/auth/authStore.js +1179 -0
  66. package/build/features/app/bank/bankStore.d.ts +14 -18
  67. package/build/features/app/bank/bankStore.js +218 -158
  68. package/build/features/app/board/boardStore.d.ts +33 -0
  69. package/build/features/app/board/boardStore.js +269 -0
  70. package/build/features/app/brand/brandStore.d.ts +18 -31
  71. package/build/features/app/brand/brandStore.js +296 -263
  72. package/build/features/app/business/businessStore.d.ts +28 -10
  73. package/build/features/app/business/businessStore.js +361 -215
  74. package/build/features/app/connect/connectStore.d.ts +39 -15
  75. package/build/features/app/connect/connectStore.js +308 -207
  76. package/build/features/app/connectExpress/connectExpressStore.d.ts +71 -26
  77. package/build/features/app/connectExpress/connectExpressStore.js +897 -302
  78. package/build/features/app/entity/entityStore.d.ts +21 -34
  79. package/build/features/app/entity/entityStore.js +248 -246
  80. package/build/features/app/individual/individualStore.d.ts +24 -33
  81. package/build/features/app/individual/individualStore.js +336 -274
  82. package/build/features/app/password/passwordStore.d.ts +34 -18
  83. package/build/features/app/password/passwordStore.js +286 -219
  84. package/build/features/app/tax/taxStore.d.ts +14 -7
  85. package/build/features/app/tax/taxStore.js +202 -141
  86. package/build/features/auth/Auth.d.ts +14 -0
  87. package/build/features/auth/Auth.js +168 -0
  88. package/build/features/auth/index.d.ts +1 -0
  89. package/build/features/auth/index.js +1 -0
  90. package/build/features/auth/screens/AccountCreatedLoader/AccountCreatedLoader.d.ts +5 -0
  91. package/build/features/auth/screens/AccountCreatedLoader/AccountCreatedLoader.js +36 -0
  92. package/build/features/auth/screens/AccountCreatedLoader/index.d.ts +2 -0
  93. package/build/features/auth/screens/AccountCreatedLoader/index.js +2 -0
  94. package/build/features/auth/screens/AccountNotFound/AccountNotFound.d.ts +5 -0
  95. package/build/features/auth/screens/AccountNotFound/AccountNotFound.js +71 -0
  96. package/build/features/auth/screens/AccountNotFound/index.d.ts +2 -0
  97. package/build/features/auth/screens/AccountNotFound/index.js +2 -0
  98. package/build/features/auth/screens/AuthMerchant/AuthMerchant.d.ts +5 -0
  99. package/build/features/auth/screens/AuthMerchant/AuthMerchant.js +73 -0
  100. package/build/features/auth/screens/AuthMerchant/MerchantList.d.ts +11 -0
  101. package/build/features/auth/screens/AuthMerchant/MerchantList.js +64 -0
  102. package/build/features/auth/screens/AuthMerchant/index.d.ts +2 -0
  103. package/build/features/auth/screens/AuthMerchant/index.js +2 -0
  104. package/build/features/auth/screens/AuthMerchant/validation.d.ts +8 -0
  105. package/build/features/auth/screens/AuthMerchant/validation.js +4 -0
  106. package/build/features/auth/screens/AuthSwitch/AuthSwitch.d.ts +5 -0
  107. package/build/features/auth/screens/AuthSwitch/AuthSwitch.js +58 -0
  108. package/build/features/auth/screens/AuthSwitch/index.d.ts +3 -0
  109. package/build/features/auth/screens/AuthSwitch/index.js +2 -0
  110. package/build/features/auth/screens/AuthenticationList/AuthenticationList.d.ts +5 -0
  111. package/build/features/auth/screens/AuthenticationList/AuthenticationList.js +96 -0
  112. package/build/features/auth/screens/AuthenticationList/BrandList.d.ts +10 -0
  113. package/build/features/auth/screens/AuthenticationList/BrandList.js +81 -0
  114. package/build/features/auth/screens/AuthenticationList/EntityLegalName.d.ts +3 -0
  115. package/build/features/auth/screens/AuthenticationList/EntityLegalName.js +48 -0
  116. package/build/features/auth/screens/AuthenticationList/EntityLicenseType.d.ts +31 -0
  117. package/build/features/auth/screens/AuthenticationList/EntityLicenseType.js +90 -0
  118. package/build/features/auth/screens/AuthenticationList/EntityList.d.ts +11 -0
  119. package/build/features/auth/screens/AuthenticationList/EntityList.js +138 -0
  120. package/build/features/auth/screens/AuthenticationList/LicenseNumber.d.ts +3 -0
  121. package/build/features/auth/screens/AuthenticationList/LicenseNumber.js +36 -0
  122. package/build/features/auth/screens/AuthenticationList/index.d.ts +3 -0
  123. package/build/features/auth/screens/AuthenticationList/index.js +2 -0
  124. package/build/features/auth/screens/AuthenticationList/validation.d.ts +20 -0
  125. package/build/features/auth/screens/AuthenticationList/validation.js +68 -0
  126. package/build/features/auth/screens/BusinessCountry/BusinessCountry.d.ts +5 -0
  127. package/build/features/auth/screens/BusinessCountry/BusinessCountry.js +111 -0
  128. package/build/features/auth/screens/BusinessCountry/index.d.ts +3 -0
  129. package/build/features/auth/screens/BusinessCountry/index.js +2 -0
  130. package/build/features/auth/screens/CivilID/CivilID.d.ts +5 -0
  131. package/build/features/auth/screens/CivilID/CivilID.js +57 -0
  132. package/build/features/auth/screens/CivilID/IDNumber.d.ts +8 -0
  133. package/build/features/auth/screens/CivilID/IDNumber.js +54 -0
  134. package/build/features/auth/screens/CivilID/index.d.ts +3 -0
  135. package/build/features/auth/screens/CivilID/index.js +2 -0
  136. package/build/features/auth/screens/CivilID/validation.d.ts +8 -0
  137. package/build/features/auth/screens/CivilID/validation.js +4 -0
  138. package/build/features/auth/screens/DOB/DOB.js +47 -0
  139. package/build/features/auth/screens/DOB/DOBForm.d.ts +5 -0
  140. package/build/features/auth/screens/DOB/DOBForm.js +59 -0
  141. package/build/features/auth/screens/DOB/index.d.ts +3 -0
  142. package/build/features/auth/screens/DOB/index.js +2 -0
  143. package/build/features/auth/screens/DOB/validation.d.ts +8 -0
  144. package/build/features/auth/screens/DOB/validation.js +4 -0
  145. package/build/features/auth/screens/Email/Email.d.ts +5 -0
  146. package/build/features/auth/screens/Email/Email.js +57 -0
  147. package/build/features/auth/screens/Email/EmailField.d.ts +8 -0
  148. package/build/features/auth/screens/Email/EmailField.js +52 -0
  149. package/build/features/auth/screens/Email/index.d.ts +3 -0
  150. package/build/features/auth/screens/Email/index.js +2 -0
  151. package/build/features/auth/screens/Email/validation.d.ts +8 -0
  152. package/build/features/auth/screens/Email/validation.js +4 -0
  153. package/build/features/auth/screens/EmailSent/EmailSent.d.ts +5 -0
  154. package/build/features/auth/screens/EmailSent/EmailSent.js +79 -0
  155. package/build/features/auth/screens/EmailSent/index.d.ts +2 -0
  156. package/build/features/auth/screens/EmailSent/index.js +2 -0
  157. package/build/features/auth/screens/MigratingData/MigratingData.d.ts +5 -0
  158. package/build/features/auth/screens/MigratingData/MigratingData.js +44 -0
  159. package/build/features/auth/screens/MigratingData/index.d.ts +2 -0
  160. package/build/features/auth/screens/MigratingData/index.js +2 -0
  161. package/build/features/auth/screens/Mobile/Mobile.d.ts +5 -0
  162. package/build/features/auth/screens/Mobile/Mobile.js +82 -0
  163. package/build/features/auth/screens/Mobile/MobileNumber.d.ts +13 -0
  164. package/build/features/auth/screens/Mobile/MobileNumber.js +158 -0
  165. package/build/features/auth/screens/Mobile/index.d.ts +3 -0
  166. package/build/features/auth/screens/Mobile/index.js +2 -0
  167. package/build/features/auth/screens/Mobile/validation.d.ts +8 -0
  168. package/build/features/auth/screens/Mobile/validation.js +35 -0
  169. package/build/features/auth/screens/NID/IDNumber.d.ts +7 -0
  170. package/build/features/auth/screens/NID/IDNumber.js +55 -0
  171. package/build/features/auth/screens/NID/NID.d.ts +5 -0
  172. package/build/features/auth/screens/NID/NID.js +56 -0
  173. package/build/features/auth/screens/NID/index.d.ts +3 -0
  174. package/build/features/auth/screens/NID/index.js +2 -0
  175. package/build/features/auth/screens/NID/validation.d.ts +8 -0
  176. package/build/features/auth/screens/NID/validation.js +10 -0
  177. package/build/features/auth/screens/OTP/OTP.js +118 -0
  178. package/build/features/{connectExpress/screens/IdentityOTP → auth/screens/OTP}/OTPInput.js +27 -7
  179. package/build/features/auth/screens/OperatorError/OperatorError.d.ts +5 -0
  180. package/build/features/auth/screens/OperatorError/OperatorError.js +9 -0
  181. package/build/features/auth/screens/OperatorError/index.d.ts +3 -0
  182. package/build/features/auth/screens/OperatorError/index.js +2 -0
  183. package/build/features/auth/screens/Password/Password.d.ts +5 -0
  184. package/build/features/auth/screens/Password/Password.js +61 -0
  185. package/build/features/auth/screens/Password/PasswordField.d.ts +5 -0
  186. package/build/features/auth/screens/Password/PasswordField.js +28 -0
  187. package/build/features/auth/screens/Password/index.d.ts +3 -0
  188. package/build/features/auth/screens/Password/index.js +2 -0
  189. package/build/features/auth/screens/Password/validation.d.ts +8 -0
  190. package/build/features/auth/screens/Password/validation.js +4 -0
  191. package/build/features/auth/screens/PreparingData/PreparingData.d.ts +5 -0
  192. package/build/features/auth/screens/PreparingData/PreparingData.js +44 -0
  193. package/build/features/auth/screens/PreparingData/index.d.ts +2 -0
  194. package/build/features/auth/screens/PreparingData/index.js +2 -0
  195. package/build/features/auth/screens/ResetPasswordMessage/ResetPasswordMessage.d.ts +5 -0
  196. package/build/features/auth/screens/ResetPasswordMessage/ResetPasswordMessage.js +21 -0
  197. package/build/features/auth/screens/ResetPasswordMessage/index.d.ts +3 -0
  198. package/build/features/auth/screens/ResetPasswordMessage/index.js +2 -0
  199. package/build/features/auth/screens/VerifyNafath/VerifyNafath.d.ts +5 -0
  200. package/build/features/auth/screens/VerifyNafath/VerifyNafath.js +35 -0
  201. package/build/features/auth/screens/VerifyNafath/index.d.ts +3 -0
  202. package/build/features/auth/screens/VerifyNafath/index.js +2 -0
  203. package/build/features/auth/screens/VerifyPACI/VerifyPACI.d.ts +5 -0
  204. package/build/features/auth/screens/VerifyPACI/VerifyPACI.js +34 -0
  205. package/build/features/auth/screens/VerifyPACI/index.d.ts +3 -0
  206. package/build/features/auth/screens/VerifyPACI/index.js +2 -0
  207. package/build/features/bank/Bank.d.ts +2 -0
  208. package/build/features/bank/Bank.js +15 -9
  209. package/build/features/bank/screens/BankDetails/BankDetails.js +21 -7
  210. package/build/features/bank/screens/OperatorError/OperatorError.d.ts +5 -0
  211. package/build/features/bank/screens/OperatorError/OperatorError.js +9 -0
  212. package/build/features/bank/screens/OperatorError/index.d.ts +3 -0
  213. package/build/features/bank/screens/OperatorError/index.js +2 -0
  214. package/build/features/bank/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +13 -5
  215. package/build/features/bank/screens/Verify/Verify.js +8 -7
  216. package/build/features/board/Board.d.ts +13 -0
  217. package/build/features/board/Board.js +87 -0
  218. package/build/features/board/index.d.ts +1 -0
  219. package/build/features/board/index.js +1 -0
  220. package/build/features/board/screens/OperatorError/OperatorError.d.ts +5 -0
  221. package/build/features/board/screens/OperatorError/OperatorError.js +9 -0
  222. package/build/features/board/screens/OperatorError/index.d.ts +3 -0
  223. package/build/features/board/screens/OperatorError/index.js +2 -0
  224. package/build/features/board/screens/PrepareDataLoading/PrepareDataLoading.d.ts +4 -0
  225. package/build/features/board/screens/PrepareDataLoading/PrepareDataLoading.js +10 -0
  226. package/build/features/board/screens/PrepareDataLoading/index.d.ts +2 -0
  227. package/build/features/board/screens/PrepareDataLoading/index.js +2 -0
  228. package/build/features/board/screens/ResetPasswordSuccess/ResetPasswordSuccess.d.ts +5 -0
  229. package/build/features/board/screens/ResetPasswordSuccess/ResetPasswordSuccess.js +21 -0
  230. package/build/features/board/screens/ResetPasswordSuccess/index.d.ts +3 -0
  231. package/build/features/board/screens/ResetPasswordSuccess/index.js +2 -0
  232. package/build/features/board/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.d.ts +3 -0
  233. package/build/features/board/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +44 -0
  234. package/build/features/board/screens/SuccessWithFlowButtons/index.d.ts +2 -0
  235. package/build/features/board/screens/SuccessWithFlowButtons/index.js +2 -0
  236. package/build/features/board/screens/Verify/OTPInput.d.ts +7 -0
  237. package/build/features/{business/screens/OTP → board/screens/Verify}/OTPInput.js +9 -7
  238. package/build/features/{connectExpress/screens/IdentityOTP/OTP.js → board/screens/Verify/Verify.js} +25 -37
  239. package/build/features/board/screens/Verify/index.d.ts +2 -0
  240. package/build/features/board/screens/Verify/index.js +2 -0
  241. package/build/features/brand/Brand.d.ts +2 -0
  242. package/build/features/brand/Brand.js +15 -9
  243. package/build/features/brand/screens/BrandActivities/ActivitiesList.d.ts +9 -9
  244. package/build/features/brand/screens/BrandActivities/BrandActivities.js +49 -12
  245. package/build/features/brand/screens/BrandActivities/CustomerBase.d.ts +6 -6
  246. package/build/features/brand/screens/BrandActivities/CustomerBase.js +1 -1
  247. package/build/features/brand/screens/BrandActivities/ExpectedSalesRange.js +5 -2
  248. package/build/features/brand/screens/BrandActivities/RefundPolicy.d.ts +4 -4
  249. package/build/features/brand/screens/BrandActivities/RefundPolicy.js +1 -1
  250. package/build/features/brand/screens/BrandActivities/TAC.d.ts +1 -1
  251. package/build/features/brand/screens/BrandActivities/TAC.js +1 -1
  252. package/build/features/brand/screens/BrandActivities/TransactionPolicy.js +1 -1
  253. package/build/features/brand/screens/BrandInfo/BrandInfo.js +27 -7
  254. package/build/features/brand/screens/BrandInfo/BrandName.js +5 -2
  255. package/build/features/brand/screens/BrandInfo/validation.js +2 -2
  256. package/build/features/brand/screens/BrandSegmentInfo/BrandSegmentInfo.js +23 -7
  257. package/build/features/brand/screens/OperatorError/OperatorError.d.ts +5 -0
  258. package/build/features/brand/screens/OperatorError/OperatorError.js +9 -0
  259. package/build/features/brand/screens/OperatorError/index.d.ts +3 -0
  260. package/build/features/brand/screens/OperatorError/index.js +2 -0
  261. package/build/features/brand/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +13 -5
  262. package/build/features/brand/screens/Verify/Verify.js +4 -3
  263. package/build/features/business/Business.js +20 -12
  264. package/build/features/business/screens/Activities/Activities.js +27 -10
  265. package/build/features/business/screens/Activities/ActivitiesList.d.ts +4 -4
  266. package/build/features/business/screens/Activities/ActivitiesList.js +1 -1
  267. package/build/features/business/screens/Activities/OperationStartDate.d.ts +5 -3
  268. package/build/features/business/screens/Activities/OperationStartDate.js +2 -2
  269. package/build/features/business/screens/BrandDetails/SalesChannel.d.ts +2 -2
  270. package/build/features/business/screens/BusinessType/BusinessType.js +24 -8
  271. package/build/features/business/screens/BusinessType/EntityName.js +3 -3
  272. package/build/features/business/screens/BusinessType/LicenseList.js +3 -3
  273. package/build/features/business/screens/BusinessType/LicenseNumber.js +10 -9
  274. package/build/features/business/screens/BusinessType/LicenseType.d.ts +4 -4
  275. package/build/features/business/screens/BusinessType/validation.d.ts +10 -0
  276. package/build/features/business/screens/BusinessType/validation.js +16 -0
  277. package/build/features/business/screens/CivilID/CivilID.js +1 -1
  278. package/build/features/business/screens/Customers/CustomerLocations.d.ts +14 -12
  279. package/build/features/business/screens/Customers/CustomerLocations.js +5 -3
  280. package/build/features/business/screens/Customers/Customers.js +51 -11
  281. package/build/features/business/screens/Customers/ExpectedCustomers.d.ts +3 -1
  282. package/build/features/business/screens/Customers/ExpectedCustomers.js +5 -3
  283. package/build/features/business/screens/Customers/ExpectedSalesRange.d.ts +3 -1
  284. package/build/features/business/screens/Customers/ExpectedSalesRange.js +10 -4
  285. package/build/features/business/screens/Customers/RefundPolicy.d.ts +12 -5
  286. package/build/features/business/screens/Customers/RefundPolicy.js +13 -13
  287. package/build/features/business/screens/Customers/TransactionPolicy.d.ts +4 -1
  288. package/build/features/business/screens/Customers/TransactionPolicy.js +8 -5
  289. package/build/features/business/screens/Customers/validation.d.ts +6 -6
  290. package/build/features/business/screens/Customers/validation.js +3 -8
  291. package/build/features/business/screens/DOB/DOB.d.ts +6 -0
  292. package/build/features/business/screens/DOB/DOB.js +45 -0
  293. package/build/features/business/screens/DOB/DOBForm.d.ts +5 -0
  294. package/build/features/business/screens/DOB/DOBForm.js +72 -0
  295. package/build/features/business/screens/DOB/index.d.ts +3 -0
  296. package/build/features/business/screens/DOB/index.js +2 -0
  297. package/build/features/business/screens/DOB/validation.d.ts +8 -0
  298. package/build/features/business/screens/DOB/validation.js +4 -0
  299. package/build/features/business/screens/IDBOD/ID.js +6 -2
  300. package/build/features/business/screens/IDBOD/IDBOD.js +18 -19
  301. package/build/features/business/screens/IDBOD/validation.d.ts +7 -0
  302. package/build/features/business/screens/IDBOD/validation.js +4 -1
  303. package/build/features/business/screens/OperatorError/OperatorError.d.ts +5 -0
  304. package/build/features/business/screens/OperatorError/OperatorError.js +9 -0
  305. package/build/features/business/screens/OperatorError/index.d.ts +3 -0
  306. package/build/features/business/screens/OperatorError/index.js +2 -0
  307. package/build/features/business/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +14 -3
  308. package/build/features/business/screens/Verify/Verify.js +16 -5
  309. package/build/features/business/screens/VerifyNafath/VerifyNafath.d.ts +5 -0
  310. package/build/features/business/screens/VerifyNafath/VerifyNafath.js +35 -0
  311. package/build/features/business/screens/VerifyNafath/index.d.ts +3 -0
  312. package/build/features/business/screens/VerifyNafath/index.js +2 -0
  313. package/build/features/connect/Connect.d.ts +5 -1
  314. package/build/features/connect/Connect.js +48 -31
  315. package/build/features/connect/screens/BrandSegment/BrandSegment.js +4 -26
  316. package/build/features/connect/screens/BrandSegment/TeamSize.js +1 -1
  317. package/build/features/connect/screens/BrandSegment/validation.d.ts +0 -9
  318. package/build/features/connect/screens/BrandSegment/validation.js +0 -3
  319. package/build/features/connect/screens/BusinessCountry/BusinessCountry.d.ts +5 -0
  320. package/build/features/connect/screens/BusinessCountry/BusinessCountry.js +113 -0
  321. package/build/features/connect/screens/BusinessCountry/index.d.ts +3 -0
  322. package/build/features/connect/screens/BusinessCountry/index.js +2 -0
  323. package/build/features/connect/screens/CivilID/CivilID.js +12 -4
  324. package/build/features/{connectExpress/screens/NID → connect/screens/DOB}/DOB.d.ts +1 -2
  325. package/build/features/connect/screens/{NID → DOB}/DOB.js +2 -2
  326. package/build/features/connect/screens/DOB/DOBForm.d.ts +5 -0
  327. package/build/features/connect/screens/DOB/DOBForm.js +59 -0
  328. package/build/features/connect/screens/DOB/index.d.ts +3 -0
  329. package/build/features/connect/screens/DOB/index.js +2 -0
  330. package/build/features/connect/screens/DOB/validation.d.ts +8 -0
  331. package/build/features/connect/screens/DOB/validation.js +4 -0
  332. package/build/features/connect/screens/Individual/Individual.js +12 -6
  333. package/build/features/connect/screens/Individual/MobileNumber.js +6 -3
  334. package/build/features/connect/screens/Individual/validation.js +8 -3
  335. package/build/features/connect/screens/Merchant/BrandList.js +3 -3
  336. package/build/features/connect/screens/Merchant/BrandName.js +5 -2
  337. package/build/features/connect/screens/Merchant/Merchant.js +1 -1
  338. package/build/features/connect/screens/Merchant/SalesChannels.js +1 -1
  339. package/build/features/connect/screens/Merchant/validation.js +2 -2
  340. package/build/features/connect/screens/Mobile/Mobile.js +14 -7
  341. package/build/features/connect/screens/Mobile/MobileNumber.js +14 -8
  342. package/build/features/connect/screens/Mobile/validation.js +8 -3
  343. package/build/features/connect/screens/NID/IDNumber.d.ts +1 -0
  344. package/build/features/connect/screens/NID/IDNumber.js +2 -2
  345. package/build/features/connect/screens/NID/NID.js +10 -13
  346. package/build/features/connect/screens/NID/validation.d.ts +0 -3
  347. package/build/features/connect/screens/NID/validation.js +0 -1
  348. package/build/features/connect/screens/OTP/OTP.js +7 -7
  349. package/build/features/connect/screens/OTP/OTPInput.js +3 -11
  350. package/build/features/connect/screens/OperatorError/OperatorError.d.ts +5 -0
  351. package/build/features/connect/screens/OperatorError/OperatorError.js +9 -0
  352. package/build/features/connect/screens/OperatorError/index.d.ts +3 -0
  353. package/build/features/connect/screens/OperatorError/index.js +2 -0
  354. package/build/features/connect/screens/VerifyNafath/VerifyNafath.d.ts +5 -0
  355. package/build/features/connect/screens/VerifyNafath/VerifyNafath.js +35 -0
  356. package/build/features/connect/screens/VerifyNafath/index.d.ts +3 -0
  357. package/build/features/connect/screens/VerifyNafath/index.js +2 -0
  358. package/build/features/connectExpress/ConnectExpress.d.ts +5 -3
  359. package/build/features/connectExpress/ConnectExpress.js +70 -40
  360. package/build/features/connectExpress/screens/AccountAlreadyCreated/AccountAlreadyCreated.js +14 -2
  361. package/build/features/connectExpress/screens/AccountCreatedLoader/AccountCreatedLoader.d.ts +5 -0
  362. package/build/features/connectExpress/screens/AccountCreatedLoader/AccountCreatedLoader.js +36 -0
  363. package/build/features/connectExpress/screens/AccountCreatedLoader/index.d.ts +2 -0
  364. package/build/features/connectExpress/screens/AccountCreatedLoader/index.js +2 -0
  365. package/build/features/connectExpress/screens/AuthMerchant/AuthMerchant.d.ts +5 -0
  366. package/build/features/connectExpress/screens/AuthMerchant/AuthMerchant.js +74 -0
  367. package/build/features/connectExpress/screens/AuthMerchant/MerchantList.d.ts +11 -0
  368. package/build/features/connectExpress/screens/AuthMerchant/MerchantList.js +64 -0
  369. package/build/features/connectExpress/screens/AuthMerchant/index.d.ts +2 -0
  370. package/build/features/connectExpress/screens/AuthMerchant/index.js +2 -0
  371. package/build/features/connectExpress/screens/AuthMerchant/validation.d.ts +8 -0
  372. package/build/features/connectExpress/screens/AuthMerchant/validation.js +4 -0
  373. package/build/features/connectExpress/screens/AuthenticationList/AuthenticationList.d.ts +5 -0
  374. package/build/features/connectExpress/screens/AuthenticationList/AuthenticationList.js +104 -0
  375. package/build/features/connectExpress/screens/AuthenticationList/BrandList.d.ts +10 -0
  376. package/build/features/connectExpress/screens/AuthenticationList/BrandList.js +81 -0
  377. package/build/features/connectExpress/screens/AuthenticationList/EntityLegalName.d.ts +3 -0
  378. package/build/features/connectExpress/screens/AuthenticationList/EntityLegalName.js +48 -0
  379. package/build/features/connectExpress/screens/AuthenticationList/EntityLicenseType.d.ts +31 -0
  380. package/build/features/connectExpress/screens/AuthenticationList/EntityLicenseType.js +90 -0
  381. package/build/features/connectExpress/screens/AuthenticationList/EntityList.d.ts +11 -0
  382. package/build/features/connectExpress/screens/AuthenticationList/EntityList.js +138 -0
  383. package/build/features/connectExpress/screens/AuthenticationList/LicenseNumber.d.ts +3 -0
  384. package/build/features/connectExpress/screens/AuthenticationList/LicenseNumber.js +36 -0
  385. package/build/features/connectExpress/screens/AuthenticationList/index.d.ts +3 -0
  386. package/build/features/connectExpress/screens/AuthenticationList/index.js +2 -0
  387. package/build/features/connectExpress/screens/AuthenticationList/validation.d.ts +20 -0
  388. package/build/features/connectExpress/screens/AuthenticationList/validation.js +68 -0
  389. package/build/features/connectExpress/screens/BusinessCountry/BusinessCountry.d.ts +5 -0
  390. package/build/features/connectExpress/screens/BusinessCountry/BusinessCountry.js +111 -0
  391. package/build/features/connectExpress/screens/BusinessCountry/index.d.ts +3 -0
  392. package/build/features/connectExpress/screens/BusinessCountry/index.js +2 -0
  393. package/build/features/connectExpress/screens/CivilID/CivilID.js +16 -5
  394. package/build/features/connectExpress/screens/CivilID/IDNumber.js +7 -2
  395. package/build/features/connectExpress/screens/CivilIDMissed/CivilID.js +2 -2
  396. package/build/features/connectExpress/screens/CollectBusinessInfo/BrandName.js +5 -2
  397. package/build/features/connectExpress/screens/CollectBusinessInfo/CollectBusinessInfo.js +20 -5
  398. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseList.js +6 -5
  399. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseNumber.js +9 -8
  400. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseType.d.ts +4 -4
  401. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseType.js +1 -1
  402. package/build/features/connectExpress/screens/CollectBusinessInfo/TAC.d.ts +1 -1
  403. package/build/features/connectExpress/screens/CollectBusinessInfo/validation.d.ts +13 -0
  404. package/build/features/connectExpress/screens/CollectBusinessInfo/validation.js +68 -1
  405. package/build/features/connectExpress/screens/CollectIndividualInfo/CollectIndividualInfo.js +34 -7
  406. package/build/features/connectExpress/screens/CollectIndividualInfo/MobileNumber.js +7 -4
  407. package/build/features/connectExpress/screens/CollectIndividualInfo/validation.js +8 -3
  408. package/build/features/connectExpress/screens/CreateAccountLoader/CreateAccountLoader.js +14 -24
  409. package/build/features/connectExpress/screens/DOB/DOB.d.ts +6 -0
  410. package/build/features/connectExpress/screens/{NID → DOB}/DOB.js +3 -3
  411. package/build/features/connectExpress/screens/DOB/DOBForm.d.ts +5 -0
  412. package/build/features/connectExpress/screens/DOB/DOBForm.js +63 -0
  413. package/build/features/connectExpress/screens/DOB/index.d.ts +3 -0
  414. package/build/features/connectExpress/screens/DOB/index.js +2 -0
  415. package/build/features/connectExpress/screens/DOB/validation.d.ts +8 -0
  416. package/build/features/connectExpress/screens/DOB/validation.js +4 -0
  417. package/build/features/connectExpress/screens/IdentityVerifyNafath/IdentityVerifyNafath.d.ts +5 -0
  418. package/build/features/connectExpress/screens/IdentityVerifyNafath/IdentityVerifyNafath.js +35 -0
  419. package/build/features/connectExpress/screens/IdentityVerifyNafath/index.d.ts +3 -0
  420. package/build/features/connectExpress/screens/IdentityVerifyNafath/index.js +2 -0
  421. package/build/features/connectExpress/screens/IdentityVerifyPACI/VerifyPACI.js +2 -2
  422. package/build/features/connectExpress/screens/Mobile/Mobile.js +17 -7
  423. package/build/features/connectExpress/screens/Mobile/MobileNumber.js +17 -11
  424. package/build/features/connectExpress/screens/Mobile/TAC.js +1 -1
  425. package/build/features/connectExpress/screens/Mobile/validation.js +16 -6
  426. package/build/features/connectExpress/screens/NID/IDNumber.d.ts +1 -0
  427. package/build/features/connectExpress/screens/NID/IDNumber.js +2 -2
  428. package/build/features/connectExpress/screens/NID/NID.js +15 -12
  429. package/build/features/connectExpress/screens/NID/TAC.d.ts +1 -1
  430. package/build/features/connectExpress/screens/NID/TAC.js +2 -2
  431. package/build/features/connectExpress/screens/NID/validation.d.ts +0 -3
  432. package/build/features/connectExpress/screens/NID/validation.js +0 -2
  433. package/build/features/connectExpress/screens/NIDMissed/IDNumber.js +6 -2
  434. package/build/features/connectExpress/screens/NIDMissed/NID.js +10 -8
  435. package/build/features/connectExpress/screens/NIDMissed/validation.d.ts +7 -0
  436. package/build/features/connectExpress/screens/NIDMissed/validation.js +4 -1
  437. package/build/features/connectExpress/screens/OTP/OTP.js +14 -16
  438. package/build/features/connectExpress/screens/OTP/OTPInput.js +12 -10
  439. package/build/features/connectExpress/screens/OperatorError/OperatorError.d.ts +5 -0
  440. package/build/features/connectExpress/screens/OperatorError/OperatorError.js +9 -0
  441. package/build/features/connectExpress/screens/OperatorError/index.d.ts +3 -0
  442. package/build/features/connectExpress/screens/OperatorError/index.js +2 -0
  443. package/build/features/connectExpress/screens/PrepareDataLoading/PrepareDataLoading.d.ts +5 -0
  444. package/build/features/connectExpress/screens/PrepareDataLoading/PrepareDataLoading.js +34 -0
  445. package/build/features/connectExpress/screens/PrepareDataLoading/index.d.ts +2 -0
  446. package/build/features/connectExpress/screens/PrepareDataLoading/index.js +2 -0
  447. package/build/features/connectExpress/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +15 -7
  448. package/build/features/connectExpress/screens/VerifyNafath/VerifyNafath.d.ts +5 -0
  449. package/build/features/connectExpress/screens/VerifyNafath/VerifyNafath.js +35 -0
  450. package/build/features/connectExpress/screens/VerifyNafath/index.d.ts +3 -0
  451. package/build/features/connectExpress/screens/VerifyNafath/index.js +2 -0
  452. package/build/features/entity/Entity.d.ts +2 -0
  453. package/build/features/entity/Entity.js +15 -9
  454. package/build/features/entity/screens/EntityCapital/ActivityList.d.ts +4 -4
  455. package/build/features/entity/screens/EntityCapital/CapitalPaid.js +5 -3
  456. package/build/features/entity/screens/EntityCapital/CapitalShareValue.js +6 -4
  457. package/build/features/entity/screens/EntityCapital/EntityCapital.js +34 -10
  458. package/build/features/entity/screens/EntityName/EntityName.js +44 -19
  459. package/build/features/entity/screens/EntityName/EntityTypeList.d.ts +9 -9
  460. package/build/features/entity/screens/EntityName/EntityTypeList.js +2 -3
  461. package/build/features/entity/screens/EntityName/ExpiryDate.d.ts +2 -2
  462. package/build/features/entity/screens/EntityName/ExpiryDate.js +5 -7
  463. package/build/features/entity/screens/EntityName/IssuingDate.d.ts +2 -2
  464. package/build/features/entity/screens/EntityName/IssuingDate.js +5 -7
  465. package/build/features/entity/screens/EntityName/LegalName.js +1 -13
  466. package/build/features/entity/screens/EntityName/LicenseNumber.js +10 -11
  467. package/build/features/entity/screens/EntityName/UnifiedNumber.js +4 -6
  468. package/build/features/entity/screens/EntityName/validation.d.ts +31 -3
  469. package/build/features/entity/screens/EntityName/validation.js +38 -9
  470. package/build/features/entity/screens/OperatorError/OperatorError.d.ts +5 -0
  471. package/build/features/entity/screens/OperatorError/OperatorError.js +9 -0
  472. package/build/features/entity/screens/OperatorError/index.d.ts +3 -0
  473. package/build/features/entity/screens/OperatorError/index.js +2 -0
  474. package/build/features/entity/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +13 -5
  475. package/build/features/entity/screens/Verify/Verify.js +4 -3
  476. package/build/features/featuresScreens.d.ts +2 -0
  477. package/build/features/featuresScreens.js +254 -15
  478. package/build/features/individual/Individual.d.ts +2 -0
  479. package/build/features/individual/Individual.js +15 -9
  480. package/build/features/individual/screens/AdditionalIndividualInfo/AdditionalIndividualInfo.d.ts +2 -2
  481. package/build/features/individual/screens/AdditionalIndividualInfo/AdditionalIndividualInfo.js +55 -15
  482. package/build/features/individual/screens/AdditionalIndividualInfo/IsAuthorizedSwitch.d.ts +36 -0
  483. package/build/features/individual/screens/AdditionalIndividualInfo/IsAuthorizedSwitch.js +76 -0
  484. package/build/features/individual/screens/AdditionalIndividualInfo/MonthlyIncome.js +5 -2
  485. package/build/features/individual/screens/AdditionalIndividualInfo/PEPSwitch.d.ts +4 -4
  486. package/build/features/individual/screens/AdditionalIndividualInfo/ShareValue.js +7 -4
  487. package/build/features/individual/screens/AdditionalIndividualInfo/validation.d.ts +4 -1
  488. package/build/features/individual/screens/AdditionalIndividualInfo/validation.js +4 -3
  489. package/build/features/individual/screens/IndividualList/IndividualList.d.ts +4 -4
  490. package/build/features/individual/screens/IndividualList/IndividualList.js +21 -6
  491. package/build/features/individual/screens/IndividualList/MobileNumber.js +6 -3
  492. package/build/features/individual/screens/IndividualList/UserList.js +13 -9
  493. package/build/features/individual/screens/IndividualList/validation.js +8 -3
  494. package/build/features/individual/screens/IndividualPersonalInfo/Gender.d.ts +4 -4
  495. package/build/features/individual/screens/IndividualPersonalInfo/ID.js +6 -2
  496. package/build/features/individual/screens/IndividualPersonalInfo/IndividualPersonalInfo.d.ts +2 -2
  497. package/build/features/individual/screens/IndividualPersonalInfo/IndividualPersonalInfo.js +79 -21
  498. package/build/features/individual/screens/IndividualPersonalInfo/MobileNumber.js +6 -3
  499. package/build/features/individual/screens/IndividualPersonalInfo/validation.d.ts +1 -1
  500. package/build/features/individual/screens/IndividualPersonalInfo/validation.js +72 -63
  501. package/build/features/individual/screens/IndividualPhoneInfo/MobileNumber.js +7 -4
  502. package/build/features/individual/screens/IndividualPhoneInfo/PhoneInfo.js +1 -1
  503. package/build/features/individual/screens/IndividualPhoneInfo/validation.js +8 -3
  504. package/build/features/individual/screens/OperatorError/OperatorError.d.ts +5 -0
  505. package/build/features/individual/screens/OperatorError/OperatorError.js +9 -0
  506. package/build/features/individual/screens/OperatorError/index.d.ts +3 -0
  507. package/build/features/individual/screens/OperatorError/index.js +2 -0
  508. package/build/features/individual/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +13 -5
  509. package/build/features/individual/screens/Verify/Verify.js +4 -3
  510. package/build/features/password/Password.d.ts +2 -0
  511. package/build/features/password/Password.js +94 -32
  512. package/build/features/password/screens/CreatePassword/CreatePassword.js +10 -4
  513. package/build/features/password/screens/OTP/OTP.js +4 -4
  514. package/build/features/password/screens/OperatorError/OperatorError.d.ts +5 -0
  515. package/build/features/password/screens/OperatorError/OperatorError.js +9 -0
  516. package/build/features/password/screens/OperatorError/index.d.ts +3 -0
  517. package/build/features/password/screens/OperatorError/index.js +2 -0
  518. package/build/features/password/screens/PrepareDataLoading/PrepareDataLoading.d.ts +4 -0
  519. package/build/features/password/screens/PrepareDataLoading/PrepareDataLoading.js +10 -0
  520. package/build/features/password/screens/PrepareDataLoading/index.d.ts +2 -0
  521. package/build/features/password/screens/PrepareDataLoading/index.js +2 -0
  522. package/build/features/password/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +13 -5
  523. package/build/features/password/screens/Verify/Verify.js +8 -7
  524. package/build/features/shared/Address/CountryList.d.ts +7 -7
  525. package/build/features/shared/Address/InputSelect.d.ts +7 -7
  526. package/build/features/shared/Background/Background.d.ts +3 -1
  527. package/build/features/shared/Background/Background.js +9 -11
  528. package/build/features/shared/BusinessCountry/BusinessCountry.d.ts +15 -0
  529. package/build/features/shared/BusinessCountry/BusinessCountry.js +179 -0
  530. package/build/features/shared/BusinessCountry/index.d.ts +2 -0
  531. package/build/features/shared/BusinessCountry/index.js +2 -0
  532. package/build/features/shared/Button/Button.js +11 -5
  533. package/build/features/shared/Button/EmailProvidersButtons.js +2 -0
  534. package/build/features/shared/Button/FlowsButtons.d.ts +3 -1
  535. package/build/features/shared/Button/FlowsButtons.js +29 -14
  536. package/build/features/shared/Button/NafathButton.d.ts +8 -0
  537. package/build/features/shared/Button/{AbsherButton.js → NafathButton.js} +12 -3
  538. package/build/features/shared/Button/index.d.ts +2 -2
  539. package/build/features/shared/Button/index.js +2 -2
  540. package/build/features/shared/Calender/Calender.d.ts +2 -1
  541. package/build/features/shared/Calender/Calender.js +3 -3
  542. package/build/features/shared/Containers/FeatureContainer.d.ts +2 -1
  543. package/build/features/shared/Containers/FeatureContainer.js +3 -3
  544. package/build/features/shared/Containers/ScreenContainer.d.ts +1 -1
  545. package/build/features/shared/DataLoading/DataLoading.d.ts +4 -1
  546. package/build/features/shared/DataLoading/DataLoading.js +2 -2
  547. package/build/features/shared/Footer/Footer.js +2 -1
  548. package/build/features/shared/Input/Input.d.ts +2 -2
  549. package/build/features/shared/NafathVerification/NafathVerification.d.ts +14 -0
  550. package/build/features/shared/NafathVerification/NafathVerification.js +92 -0
  551. package/build/features/shared/NafathVerification/VerifyNafathLoading.d.ts +8 -0
  552. package/build/features/shared/NafathVerification/VerifyNafathLoading.js +53 -0
  553. package/build/features/shared/NafathVerification/VerifyNafathSuccess.d.ts +5 -0
  554. package/build/features/shared/NafathVerification/VerifyNafathSuccess.js +8 -0
  555. package/build/features/shared/NafathVerification/index.d.ts +2 -0
  556. package/build/features/shared/NafathVerification/index.js +2 -0
  557. package/build/features/shared/SuccessFlowButtons/SuccessFlowButtons.d.ts +8 -1
  558. package/build/features/shared/SuccessFlowButtons/SuccessFlowButtons.js +11 -14
  559. package/build/features/shared/SuccessScreen/SuccessScreen.js +1 -1
  560. package/build/features/shared/UploadFile/FileUpload.d.ts +1 -1
  561. package/build/features/shared/UploadFile/UploadFile.d.ts +1 -1
  562. package/build/features/shared/UploadFile/UploadWrapper.d.ts +1 -1
  563. package/build/features/shared/UploadMultipleFile/UploadFile.d.ts +1 -1
  564. package/build/features/shared/UploadMultipleFile/UploadMultipleFile.d.ts +1 -1
  565. package/build/features/signIn/SignIn.js +18 -7
  566. package/build/features/signIn/screens/Mobile/MobileNumber.js +6 -3
  567. package/build/features/signIn/screens/Mobile/validation.js +8 -3
  568. package/build/features/signIn/screens/OTP/OTP.js +5 -4
  569. package/build/features/signIn/screens/OperatorError/OperatorError.d.ts +5 -0
  570. package/build/features/signIn/screens/OperatorError/OperatorError.js +9 -0
  571. package/build/features/signIn/screens/OperatorError/index.d.ts +3 -0
  572. package/build/features/signIn/screens/OperatorError/index.js +2 -0
  573. package/build/features/tax/Tax.d.ts +2 -0
  574. package/build/features/tax/Tax.js +15 -9
  575. package/build/features/tax/screens/OperatorError/OperatorError.d.ts +5 -0
  576. package/build/features/tax/screens/OperatorError/OperatorError.js +9 -0
  577. package/build/features/tax/screens/OperatorError/index.d.ts +3 -0
  578. package/build/features/tax/screens/OperatorError/index.js +2 -0
  579. package/build/features/tax/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +13 -5
  580. package/build/features/tax/screens/TaxDetails/TaxDetails.js +9 -3
  581. package/build/features/tax/screens/Verify/Verify.js +8 -7
  582. package/build/hooks/index.d.ts +3 -0
  583. package/build/hooks/index.js +3 -0
  584. package/build/hooks/useAppConfig.d.ts +3 -3
  585. package/build/hooks/useAppConfig.js +9 -6
  586. package/build/hooks/useAppDispatch.d.ts +2 -0
  587. package/build/hooks/useAppTheme.js +4 -3
  588. package/build/hooks/useCountDown.d.ts +10 -0
  589. package/build/hooks/useCountDown.js +17 -0
  590. package/build/hooks/useCountry.d.ts +1 -0
  591. package/build/hooks/useCountry.js +4 -3
  592. package/build/hooks/useFormDirtyCheck.d.ts +10 -0
  593. package/build/hooks/useFormDirtyCheck.js +66 -0
  594. package/build/hooks/useSanitizedTranslation.d.ts +1 -0
  595. package/build/hooks/useSanitizedTranslation.js +15 -0
  596. package/build/hooks/useVerifyToken.d.ts +5 -2
  597. package/build/hooks/useVerifyToken.js +10 -5
  598. package/build/index.css +360 -120
  599. package/build/index.d.ts +4 -2
  600. package/build/index.js +6 -2
  601. package/build/theme/components.js +7 -0
  602. package/build/theme/palette.js +4 -2
  603. package/build/theme/theme.d.ts +1 -1
  604. package/build/theme/theme.js +2 -2
  605. package/build/utils/array.js +2 -2
  606. package/build/utils/common.d.ts +3 -0
  607. package/build/utils/common.js +38 -2
  608. package/build/utils/device.d.ts +2 -0
  609. package/build/utils/device.js +6 -0
  610. package/build/utils/locale.js +2 -1
  611. package/build/utils/object.d.ts +1 -0
  612. package/build/utils/object.js +4 -1
  613. package/build/utils/string.d.ts +5 -2
  614. package/build/utils/string.js +24 -5
  615. package/build/utils/validation.d.ts +5 -0
  616. package/build/utils/validation.js +16 -0
  617. package/package.json +2 -2
  618. package/build/features/business/screens/OTP/OTP.d.ts +0 -8
  619. package/build/features/business/screens/OTP/OTP.js +0 -90
  620. package/build/features/connect/screens/BrandSegment/SegmentLocations.d.ts +0 -8
  621. package/build/features/connect/screens/BrandSegment/SegmentLocations.js +0 -66
  622. package/build/features/connect/screens/BrandSegment/SegmentProfits.d.ts +0 -8
  623. package/build/features/connect/screens/BrandSegment/SegmentProfits.js +0 -66
  624. package/build/features/connect/screens/BrandSegment/SegmentTechs.d.ts +0 -8
  625. package/build/features/connect/screens/BrandSegment/SegmentTechs.js +0 -66
  626. package/build/features/connectExpress/screens/IdentityOTP/index.d.ts +0 -3
  627. package/build/features/connectExpress/screens/IdentityOTP/index.js +0 -2
  628. package/build/features/shared/Button/AbsherButton.d.ts +0 -8
  629. /package/build/features/{connect/screens/NID → auth/screens/DOB}/DOB.d.ts +0 -0
  630. /package/build/features/{connectExpress/screens/IdentityOTP → auth/screens/OTP}/OTP.d.ts +0 -0
  631. /package/build/features/{business → auth}/screens/OTP/OTPInput.d.ts +0 -0
  632. /package/build/features/{business → auth}/screens/OTP/index.d.ts +0 -0
  633. /package/build/features/{business → auth}/screens/OTP/index.js +0 -0
  634. /package/build/features/{business → auth}/screens/OTP/validation.d.ts +0 -0
  635. /package/build/features/{business → auth}/screens/OTP/validation.js +0 -0
  636. /package/build/features/{connectExpress/screens/IdentityOTP/OTPInput.d.ts → board/screens/Verify/Verify.d.ts} +0 -0
  637. /package/build/features/{connectExpress/screens/IdentityOTP → board/screens/Verify}/validation.d.ts +0 -0
  638. /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, brandData, data_1, brandRes, _c, message, error, list, documentData, entityData, 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,20 +590,29 @@ 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') {
@@ -531,13 +620,13 @@ export var updateLeadBusinessType = createAsyncThunk('updateLeadBusinessType', f
531
620
  }
532
621
  else
533
622
  throw new Error(error);
534
- return [3, 6];
535
- case 6: return [4, API.dataService.getActivitiesIsIc()];
536
- case 7:
537
- list = (_f.sent()).list;
623
+ return [3, 8];
624
+ case 8: return [4, API.dataService.getActivitiesIsIc()];
625
+ case 9:
626
+ list = (_g.sent()).list;
538
627
  entityData = undefined;
539
628
  entityId = accountData === null || accountData === void 0 ? void 0 : accountData.entity_id;
540
- if (!((certificateId || []).length > 0)) return [3, 9];
629
+ if (!((certificateId || []).length > 0)) return [3, 11];
541
630
  documentBody = {
542
631
  entity_id: entityId || '',
543
632
  documents: [
@@ -548,145 +637,161 @@ export var updateLeadBusinessType = createAsyncThunk('updateLeadBusinessType', f
548
637
  ]
549
638
  };
550
639
  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];
640
+ case 10:
641
+ documentData = _g.sent();
642
+ _g.label = 11;
643
+ case 11:
644
+ if (!(articleId && entityId)) return [3, 13];
556
645
  payload_1 = {
557
646
  id: (accountData === null || accountData === void 0 ? void 0 : accountData.entity_id) || '',
558
647
  AOA_file_id: articleId
559
648
  };
560
649
  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);
650
+ case 12:
651
+ entityData = _g.sent();
652
+ _g.label = 13;
653
+ case 13:
654
+ sleep(50).then(function () { return thunkApi.dispatch(handleNextScreenStep(stepName)); });
655
+ (_f = (_e = settings.data.appConfig).onStepCompleted) === null || _f === void 0 ? void 0 : _f.call(_e, settings.data.activeScreen.name, params);
567
656
  return [2, { data: __assign(__assign({}, data), { brand: brandData }), formData: params, accountData: accountData, documentData: documentData, entityData: entityData, isicActivityList: list || [] }];
568
657
  }
569
658
  });
570
659
  }); });
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
- }
660
+ export var updateActivitiesInfo = createAsyncThunk('updateActivitiesInfo', function (_a, thunkApi) {
661
+ var formData = _a.formData, originalFormData = _a.originalFormData;
662
+ return __awaiter(void 0, void 0, void 0, function () {
663
+ 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;
664
+ var _e, _f;
665
+ return __generator(this, function (_g) {
666
+ switch (_g.label) {
667
+ case 0:
668
+ _b = thunkApi.getState(), settings = _b.settings, business = _b.business;
669
+ _c = business.data.verify.responseBody || {}, brand = _c.brand, entity_activities = _c.entity_activities, entity = _c.entity;
670
+ _d = brand || {}, brandActivities = _d.activities, brandId = _d.id, data_status = _d.data_status;
671
+ activities = formData.activities, operationStartDate = formData.operationStartDate;
672
+ isActivitiesNonEditable = hasNoneEditableValue(data_status, 'activities');
673
+ isOperationStartDateNonEditable = hasNoneEditableValue(data_status === null || data_status === void 0 ? void 0 : data_status.operations, 'business_start_date');
674
+ stepName = BUSINESS_STEP_NAMES.BUSINESS_CR_ACTIVITIES;
675
+ id = brandId;
676
+ removedActivities = (brandActivities || []).filter(function (brandActivity) { return !(activities || []).some(function (activity) { return activity.id === brandActivity.id; }); });
677
+ if (!(!isActivitiesNonEditable && (removedActivities === null || removedActivities === void 0 ? void 0 : removedActivities.length))) return [3, 2];
678
+ payload = {
679
+ id: id,
680
+ activities: removedActivities.map(function (_a) {
681
+ var id = _a.id;
682
+ return ({ id: id });
683
+ })
684
+ };
685
+ return [4, API.brandService.removeBrandActivity(payload)];
686
+ case 1:
687
+ _g.sent();
688
+ _g.label = 2;
689
+ case 2:
690
+ newBrandActivities = activities === null || activities === void 0 ? void 0 : activities.filter(function (act) { return !(brandActivities || []).some(function (brandActivity) { return act.id === brandActivity.id; }); });
691
+ newEntityActivities = activities === null || activities === void 0 ? void 0 : activities.filter(function (act) { return !(entity_activities || []).some(function (entityActivity) { return act.id === entityActivity.id; }); });
692
+ if (!(!isActivitiesNonEditable && (newEntityActivities === null || newEntityActivities === void 0 ? void 0 : newEntityActivities.length))) return [3, 4];
693
+ activityPayload = {
694
+ id: entity === null || entity === void 0 ? void 0 : entity.id,
695
+ activities: newEntityActivities.map(function (_a) {
696
+ var id = _a.id;
697
+ return ({ id: id });
698
+ })
699
+ };
700
+ return [4, API.entityService.updateEntityActivity(activityPayload)];
701
+ case 3:
702
+ _g.sent();
703
+ _g.label = 4;
704
+ case 4:
705
+ requestBody = __assign(__assign(__assign({ id: id }, ((newBrandActivities === null || newBrandActivities === void 0 ? void 0 : newBrandActivities.length) && !isActivitiesNonEditable && { activities: newBrandActivities.map(function (_a) {
706
+ var id = _a.id;
707
+ return ({ id: id });
708
+ }) })), (!isOperationStartDateNonEditable && {
709
+ operations: {
710
+ start_date: operationStartDate
711
+ }
712
+ })), { step_name: stepName, encryption_contract: ['operations.start_date'] });
713
+ return [4, API.brandService.updateBrandInfo(requestBody)];
714
+ case 5:
715
+ data = _g.sent();
716
+ return [4, thunkApi.dispatch(retrieveDataList())];
717
+ case 6:
718
+ _g.sent();
719
+ thunkApi.dispatch(updateStepName(stepName));
720
+ thunkApi.dispatch(handleNextScreenStep());
721
+ (_f = (_e = settings.data.appConfig).onStepCompleted) === null || _f === void 0 ? void 0 : _f.call(_e, settings.data.activeScreen.name, requestBody);
722
+ return [2, { data: data === null || data === void 0 ? void 0 : data.brand, formData: originalFormData }];
723
+ }
724
+ });
624
725
  });
625
- }); });
726
+ });
626
727
  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) {
728
+ var settings, countryISO2, dataBody, _a, customer_base, sales, expected_customers;
729
+ var _b;
730
+ return __generator(this, function (_c) {
731
+ switch (_c.label) {
630
732
  case 0:
631
733
  settings = thunkApi.getState().settings;
632
734
  countryISO2 = settings.data.businessCountry.iso2;
633
735
  dataBody = {
634
- page: 0
635
- };
636
- salesDataBody = {
637
736
  page: 0,
638
737
  country_code: [countryISO2]
639
738
  };
640
- return [4, Promise.all([
641
- API.dataService.getCustomerBases(dataBody),
642
- API.dataService.getExpectedSales(salesDataBody),
643
- API.dataService.getExpectedCustomerSales(dataBody)
644
- ])];
739
+ return [4, API.dataService.getBrandOperations(dataBody)];
645
740
  case 1:
646
- _a = _b.sent(), customerBases = _a[0].list, expectedSales = _a[1].list, expectedCustomerSales = _a[2].list;
741
+ _a = _c.sent(), customer_base = _a.customer_base, sales = _a.sales, expected_customers = _a.expected_customers;
647
742
  return [2, {
648
- customerBases: customerBases,
649
- expectedSales: expectedSales,
650
- expectedCustomerSales: expectedCustomerSales,
743
+ customerBases: (customer_base === null || customer_base === void 0 ? void 0 : customer_base.list) || [],
744
+ expectedSales: ((_b = sales === null || sales === void 0 ? void 0 : sales.list) === null || _b === void 0 ? void 0 : _b.length) ? sales.list : EXPECTED_SALES_LIST,
745
+ expectedCustomerSales: (expected_customers === null || expected_customers === void 0 ? void 0 : expected_customers.list) || [],
651
746
  countryISO2: countryISO2
652
747
  }];
653
748
  }
654
749
  });
655
750
  }); });
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
- }
751
+ export var updateCustomersInfo = createAsyncThunk('updateCustomersInfo', function (_a, thunkApi) {
752
+ var formData = _a.formData, originalFormData = _a.originalFormData;
753
+ return __awaiter(void 0, void 0, void 0, function () {
754
+ var _b, settings, business, _c, data_status, id, isCustomerBaseLocationNonEditable, isCustomerBaseNonEditable, isTermsNonEditable, isSalesRangeNonEditable, customerLocations, expectedCustomer, expectedSale, stepName, requestBody, customerLocation, customerBaseId, salesId, customerBase, data;
755
+ var _d, _e, _f;
756
+ return __generator(this, function (_g) {
757
+ switch (_g.label) {
758
+ case 0:
759
+ _b = thunkApi.getState(), settings = _b.settings, business = _b.business;
760
+ _c = ((_d = business.data.verify.responseBody) === null || _d === void 0 ? void 0 : _d.brand) || {}, data_status = _c.data_status, id = _c.id;
761
+ isCustomerBaseLocationNonEditable = hasNoneEditableValue(data_status === null || data_status === void 0 ? void 0 : data_status.operations, 'customer_base_location');
762
+ isCustomerBaseNonEditable = hasNoneEditableValue(data_status === null || data_status === void 0 ? void 0 : data_status.operations, 'customer_base');
763
+ isTermsNonEditable = hasNoneEditableValue(data_status, 'terms');
764
+ isSalesRangeNonEditable = hasNoneEditableValue(data_status === null || data_status === void 0 ? void 0 : data_status.operations, 'sales_range');
765
+ customerLocations = formData.customerLocations, expectedCustomer = formData.expectedCustomer, expectedSale = formData.expectedSale;
766
+ stepName = BUSINESS_STEP_NAMES.BUSINESS_CUSTOMERS;
767
+ requestBody = {
768
+ term: !isTermsNonEditable ? ['refund', 'chargeback'] : undefined,
769
+ id: id,
770
+ step_name: stepName,
771
+ encryption_contract: []
772
+ };
773
+ customerLocation = (customerLocations || []).map(function (location) { return ({
774
+ id: location.id
775
+ }); });
776
+ customerBaseId = (expectedCustomer === null || expectedCustomer === void 0 ? void 0 : expectedCustomer.id) && { id: expectedCustomer.id, period: 'monthly' };
777
+ salesId = (expectedSale === null || expectedSale === void 0 ? void 0 : expectedSale.id) && { id: expectedSale.id, period: 'monthly' };
778
+ customerBase = (customerBaseId || customerLocation.length) && __assign(__assign({}, (customerBaseId && !isCustomerBaseNonEditable && { id: expectedCustomer.id, period: 'monthly' })), (customerLocation.length && !isCustomerBaseLocationNonEditable && { locations: customerLocation }));
779
+ if (customerBase && !(isCustomerBaseNonEditable && isCustomerBaseLocationNonEditable))
780
+ requestBody = __assign(__assign({}, requestBody), { operations: __assign(__assign({}, requestBody.operations), { customer_base: customerBase }) });
781
+ if (salesId && !isSalesRangeNonEditable) {
782
+ requestBody = __assign(__assign({}, requestBody), { operations: __assign(__assign({}, requestBody.operations), { sales: salesId }) });
783
+ }
784
+ return [4, API.brandService.updateBrandInfo(requestBody)];
785
+ case 1:
786
+ data = _g.sent();
787
+ thunkApi.dispatch(updateStepName(stepName));
788
+ thunkApi.dispatch(handleNextScreenStep());
789
+ (_f = (_e = settings.data.appConfig).onStepCompleted) === null || _f === void 0 ? void 0 : _f.call(_e, settings.data.activeScreen.name, requestBody);
790
+ return [2, { data: data === null || data === void 0 ? void 0 : data.brand, formData: originalFormData }];
791
+ }
792
+ });
688
793
  });
689
- }); });
794
+ });
690
795
  export var updateLeadSuccess = createAsyncThunk('businessUpdateLeadSuccess', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
691
796
  var _a, settings, business, _b, steps, lead_id, flowCompleted, boardResponse, payload, data, board_id;
692
797
  var _c, _d, _e, _f;
@@ -695,7 +800,8 @@ export var updateLeadSuccess = createAsyncThunk('businessUpdateLeadSuccess', fun
695
800
  case 0:
696
801
  _a = thunkApi.getState(), settings = _a.settings, business = _a.business;
697
802
  _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; });
803
+ flowCompleted = hasKey(steps, BUSINESS_STEP_NAMES.BUSINESS_SUCCESS);
804
+ console.info('stop success call', flowCompleted || !lead_id);
699
805
  if (flowCompleted || !lead_id)
700
806
  return [2];
701
807
  boardResponse = undefined;
@@ -708,6 +814,12 @@ export var updateLeadSuccess = createAsyncThunk('businessUpdateLeadSuccess', fun
708
814
  return [4, API.leadService.updateLead(payload)];
709
815
  case 1:
710
816
  data = _g.sent();
817
+ sendCustomEventToGTM({
818
+ event: 'Send Event',
819
+ event_category: 'Account Creation Flow',
820
+ event_action: 'Account Creation Success',
821
+ event_label: settings.data.businessCountry.iso2
822
+ });
711
823
  board_id = data === null || data === void 0 ? void 0 : data.board_id;
712
824
  if (!board_id) return [3, 4];
713
825
  return [4, API.boardService.retrieveBoardInfoStatus(board_id)];
@@ -770,9 +882,13 @@ var initialState = {
770
882
  dob: '',
771
883
  type: ''
772
884
  },
885
+ dobData: {
886
+ dob: ''
887
+ },
773
888
  businessTypeData: {
774
889
  licenseNumber: '',
775
- entityLegalName: ''
890
+ entityLegalName: '',
891
+ isPrevDob: false
776
892
  },
777
893
  activitiesData: {
778
894
  activities: [],
@@ -818,24 +934,31 @@ export var businessSlice = createSlice({
818
934
  state.customLoading = true;
819
935
  })
820
936
  .addCase(verifyLeadToken.fulfilled, function (state, action) {
821
- var _a, _b;
937
+ var _a, _b, _c, _d, _e;
822
938
  state.error = null;
823
939
  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;
940
+ 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
941
  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 }));
942
+ 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 }));
943
+ var _g = leadData || {}, identification = _g.identification, date_of_birth = _g.date_of_birth;
944
+ if (identification === null || identification === void 0 ? void 0 : identification.id)
945
+ state.data.nidData.nid = identification.id;
946
+ if (date_of_birth)
947
+ state.data.nidData.dob = dateFormat(date_of_birth);
948
+ if (identification === null || identification === void 0 ? void 0 : identification.type)
949
+ state.data.nidData.type = identification.type;
827
950
  if (token)
828
951
  state.data.verify.token = token;
829
952
  state.data.otpData.isNID = false;
830
953
  if (isRequireOTP)
831
954
  return;
832
- var _d = state.data.verify.responseBody || {}, entity = _d.entity, entity_activities = _d.entity_activities, business_name = _d.business_name;
955
+ var _h = state.data.verify.responseBody || {}, entity = _h.entity, entity_activities = _h.entity_activities, business_name = _h.business_name;
833
956
  if (business_name === null || business_name === void 0 ? void 0 : business_name.en)
834
957
  state.data.businessTypeData.entityLegalName = business_name === null || business_name === void 0 ? void 0 : business_name.en;
835
958
  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
959
  if (issuingDate)
837
960
  state.data.activitiesData.operationStartDate = convertNumbers2English(dateFormat(issuingDate));
838
- var _e = brandData || {}, terms = _e.terms, activities = _e.activities;
961
+ var _j = brandData || {}, terms = _j.terms, activities = _j.activities;
839
962
  var entityActivities = (entity_activities === null || entity_activities === void 0 ? void 0 : entity_activities.filter(function (activity) {
840
963
  return !(activities === null || activities === void 0 ? void 0 : activities.some(function (value) { return value.id === activity.id; }));
841
964
  })) || [];
@@ -847,7 +970,8 @@ export var businessSlice = createSlice({
847
970
  }
848
971
  });
849
972
  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 });
973
+ var licenseList = [OTHER_CR_LICENSE, OTHER_FL_LICENSE];
974
+ 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
975
  })
852
976
  .addCase(verifyLeadToken.rejected, function (state, action) {
853
977
  state.error = action.error.message;
@@ -859,13 +983,13 @@ export var businessSlice = createSlice({
859
983
  .addCase(resendOTP.fulfilled, function (state, action) {
860
984
  var _a;
861
985
  state.error = null;
862
- var data = action.payload.data;
986
+ var _b = action.payload, data = _b.data, verifyNextStepName = _b.verifyNextStepName;
863
987
  var description = (((_a = data === null || data === void 0 ? void 0 : data.errors) === null || _a === void 0 ? void 0 : _a[0]) || {}).description;
864
988
  if (description) {
865
989
  state.error = description;
866
990
  return;
867
991
  }
868
- state.data.verify.responseBody = __assign(__assign({}, state.data.verify.responseBody), data);
992
+ state.data.verify.responseBody = __assign(__assign(__assign({}, state.data.verify.responseBody), data), { verifyNextStepName: verifyNextStepName });
869
993
  })
870
994
  .addCase(resendOTP.rejected, function (state, action) {
871
995
  state.error = action.error.message;
@@ -875,20 +999,27 @@ export var businessSlice = createSlice({
875
999
  state.error = null;
876
1000
  })
877
1001
  .addCase(verifyLeadOTP.fulfilled, function (state, action) {
878
- var _a, _b;
1002
+ var _a, _b, _c, _d, _e;
879
1003
  state.loading = false;
880
1004
  state.error = null;
881
- var _c = action.payload, data = _c.data, formData = _c.formData, brand = _c.brand, leadData = _c.leadData, isicActivityList = _c.isicActivityList;
1005
+ var _f = action.payload, data = _f.data, formData = _f.formData, brand = _f.brand, leadData = _f.leadData, isicActivityList = _f.isicActivityList, verifyNextStepName = _f.verifyNextStepName;
882
1006
  state.data.otpData = formData;
883
1007
  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;
1008
+ 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) || [] });
1009
+ var _g = leadData || {}, identification = _g.identification, date_of_birth = _g.date_of_birth;
1010
+ if (identification === null || identification === void 0 ? void 0 : identification.id)
1011
+ state.data.nidData.nid = identification.id;
1012
+ if (date_of_birth)
1013
+ state.data.nidData.dob = dateFormat(date_of_birth);
1014
+ if (identification === null || identification === void 0 ? void 0 : identification.type)
1015
+ state.data.nidData.type = identification.type;
1016
+ var _h = leadData || {}, entity = _h.entity, entity_activities = _h.entity_activities, business_name = _h.business_name;
886
1017
  if (business_name === null || business_name === void 0 ? void 0 : business_name.en)
887
1018
  state.data.businessTypeData.entityLegalName = business_name === null || business_name === void 0 ? void 0 : business_name.en;
888
1019
  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
1020
  if (issuingDate)
890
1021
  state.data.activitiesData.operationStartDate = convertNumbers2English(dateFormat(issuingDate));
891
- var _e = brand || {}, terms = _e.terms, activities = _e.activities;
1022
+ var _j = brand || {}, terms = _j.terms, activities = _j.activities;
892
1023
  var entityActivities = (entity_activities === null || entity_activities === void 0 ? void 0 : entity_activities.filter(function (activity) {
893
1024
  return !(activities === null || activities === void 0 ? void 0 : activities.some(function (value) { return value.id === activity.id; }));
894
1025
  })) || [];
@@ -900,7 +1031,8 @@ export var businessSlice = createSlice({
900
1031
  }
901
1032
  });
902
1033
  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 });
1034
+ var licenseList = [OTHER_CR_LICENSE, OTHER_FL_LICENSE];
1035
+ 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
1036
  })
905
1037
  .addCase(verifyLeadOTP.rejected, function (state, action) {
906
1038
  state.loading = false;
@@ -965,23 +1097,37 @@ export var businessSlice = createSlice({
965
1097
  state.loading = false;
966
1098
  state.error = action.error.message;
967
1099
  })
968
- .addCase(resendOTPLeadIdentity.pending, function (state) {
1100
+ .addCase(verifyNafath.pending, function (state) {
1101
+ state.loading = true;
969
1102
  state.error = null;
970
1103
  })
971
- .addCase(resendOTPLeadIdentity.fulfilled, function (state, action) {
972
- var _a;
1104
+ .addCase(verifyNafath.fulfilled, function (state, action) {
1105
+ state.loading = false;
973
1106
  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;
1107
+ var _a = action.payload, response = _a.response, isNextScreenDob = _a.isNextScreenDob;
1108
+ state.data.businessTypeData.isPrevDob = isNextScreenDob || false;
1109
+ state.data.otpData.responseBody = response;
1110
+ })
1111
+ .addCase(verifyNafath.rejected, function (state, action) {
1112
+ state.loading = false;
1113
+ var error = action.error.message;
1114
+ if (error !== 'Aborted') {
1115
+ state.error = error;
979
1116
  }
980
- state.data.nidData.responseBody = data;
981
- state.data.otpData.otp = '';
982
- state.data.otpData.isNID = true;
983
1117
  })
984
- .addCase(resendOTPLeadIdentity.rejected, function (state, action) {
1118
+ .addCase(updateLeadDOB.pending, function (state) {
1119
+ state.loading = true;
1120
+ state.error = null;
1121
+ })
1122
+ .addCase(updateLeadDOB.fulfilled, function (state, action) {
1123
+ state.loading = false;
1124
+ state.error = null;
1125
+ var _a = action.payload, data = _a.data, formData = _a.formData;
1126
+ state.data.dobData = formData;
1127
+ state.data.dobData.responseBody = data;
1128
+ })
1129
+ .addCase(updateLeadDOB.rejected, function (state, action) {
1130
+ state.loading = false;
985
1131
  state.error = action.error.message;
986
1132
  })
987
1133
  .addCase(retrieveEntityList.pending, function (state) {