@tap-payments/auth-jsconnect 2.3.99-test → 2.4.0

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 (493) hide show
  1. package/README.md +1 -1
  2. package/build/@types/app.d.ts +266 -15
  3. package/build/@types/app.js +7 -0
  4. package/build/@types/form.d.ts +31 -23
  5. package/build/@types/theme.d.ts +1 -1
  6. package/build/@types/user.d.ts +39 -3
  7. package/build/api/account.d.ts +2 -2
  8. package/build/api/auth.d.ts +12 -11
  9. package/build/api/auth.js +5 -1
  10. package/build/api/availabilityServices.d.ts +3 -3
  11. package/build/api/axios.js +1 -1
  12. package/build/api/board.d.ts +3 -3
  13. package/build/api/brand.d.ts +1 -1
  14. package/build/api/country.d.ts +2 -1
  15. package/build/api/country.js +8 -1
  16. package/build/api/data.d.ts +17 -10
  17. package/build/api/data.js +26 -2
  18. package/build/api/document.d.ts +2 -2
  19. package/build/api/entity.d.ts +13 -8
  20. package/build/api/entity.js +32 -1
  21. package/build/api/file.d.ts +1 -1
  22. package/build/api/index.d.ts +26 -5
  23. package/build/api/individual.d.ts +29 -11
  24. package/build/api/individual.js +9 -1
  25. package/build/api/init.d.ts +2 -1
  26. package/build/api/lead.d.ts +15 -10
  27. package/build/api/lead.js +58 -1
  28. package/build/api/operator.d.ts +10 -1
  29. package/build/api/operator.js +10 -2
  30. package/build/api/user.d.ts +2 -2
  31. package/build/app/rootReducer.d.ts +1 -0
  32. package/build/app/rootReducer.js +3 -1
  33. package/build/app/settings.d.ts +37 -3
  34. package/build/app/settings.js +116 -39
  35. package/build/app/store.d.ts +6 -4
  36. package/build/assets/locales/ar.json +24 -1
  37. package/build/assets/locales/en.json +24 -1
  38. package/build/components/AnimationFlow/AnimationFlow.d.ts +2 -1
  39. package/build/components/AnimationFlow/AnimationFlow.js +3 -3
  40. package/build/components/AnimationFlow/BottomSheet.js +26 -5
  41. package/build/components/AnimationFlow/Dialog.d.ts +2 -1
  42. package/build/components/AnimationFlow/Dialog.js +2 -2
  43. package/build/components/ArabicDatePicker/ArabicDatePicker.d.ts +5 -2
  44. package/build/components/ArabicDatePicker/ArabicDatePicker.js +45 -23
  45. package/build/components/ArabicDatePicker/arabicAr.d.ts +8 -0
  46. package/build/components/ArabicDatePicker/arabicAr.js +32 -0
  47. package/build/components/ArabicDatePicker/arabicEn.d.ts +8 -0
  48. package/build/components/ArabicDatePicker/arabicEn.js +32 -0
  49. package/build/components/ArabicDatePicker/style.css +45 -5
  50. package/build/components/DatePicker/DatePicker.d.ts +3 -1
  51. package/build/components/DatePicker/DatePicker.js +23 -17
  52. package/build/components/ExpandIcon/ExpandIcon.d.ts +2 -0
  53. package/build/components/SimpleList/SimpleList.d.ts +2 -1
  54. package/build/components/SimpleList/SimpleList.js +12 -9
  55. package/build/components/Slide/Slide.d.ts +1 -1
  56. package/build/constants/api.d.ts +9 -0
  57. package/build/constants/api.js +18 -1
  58. package/build/constants/app.d.ts +9 -1
  59. package/build/constants/app.js +84 -16
  60. package/build/constants/assets.d.ts +4 -0
  61. package/build/constants/assets.js +4 -0
  62. package/build/constants/dummy.d.ts +62 -0
  63. package/build/constants/dummy.js +603 -0
  64. package/build/constants/validation.d.ts +2 -2
  65. package/build/constants/validation.js +3 -3
  66. package/build/features/app/bank/bankStore.d.ts +94 -10
  67. package/build/features/app/bank/bankStore.js +110 -54
  68. package/build/features/app/board/boardStore.d.ts +66 -0
  69. package/build/features/app/board/boardStore.js +223 -0
  70. package/build/features/app/brand/brandStore.d.ts +161 -18
  71. package/build/features/app/brand/brandStore.js +295 -145
  72. package/build/features/app/business/businessStore.d.ts +171 -18
  73. package/build/features/app/business/businessStore.js +297 -198
  74. package/build/features/app/connect/connectStore.d.ts +180 -14
  75. package/build/features/app/connect/connectStore.js +342 -95
  76. package/build/features/app/connectExpress/connectExpressStore.d.ts +273 -25
  77. package/build/features/app/connectExpress/connectExpressStore.js +453 -71
  78. package/build/features/app/entity/entityStore.d.ts +98 -10
  79. package/build/features/app/entity/entityStore.js +150 -75
  80. package/build/features/app/individual/individualStore.d.ts +200 -28
  81. package/build/features/app/individual/individualStore.js +346 -222
  82. package/build/features/app/password/passwordStore.d.ts +114 -12
  83. package/build/features/app/password/passwordStore.js +113 -43
  84. package/build/features/app/signIn/signInStore.d.ts +61 -7
  85. package/build/features/app/signIn/signInStore.js +1 -1
  86. package/build/features/app/tax/taxStore.d.ts +83 -9
  87. package/build/features/app/tax/taxStore.js +97 -48
  88. package/build/features/bank/Bank.d.ts +1 -0
  89. package/build/features/bank/Bank.js +11 -6
  90. package/build/features/bank/screens/BankDetails/BankDetails.js +19 -14
  91. package/build/features/bank/screens/BankDetails/BankName.d.ts +3 -2
  92. package/build/features/bank/screens/BankDetails/BankName.js +4 -5
  93. package/build/features/bank/screens/BankDetails/BankStatement.d.ts +3 -2
  94. package/build/features/bank/screens/BankDetails/BankStatement.js +5 -4
  95. package/build/features/bank/screens/BankDetails/Beneficiary.d.ts +2 -1
  96. package/build/features/bank/screens/BankDetails/Beneficiary.js +8 -10
  97. package/build/features/bank/screens/BankDetails/ConfirmPolicy.d.ts +1 -1
  98. package/build/features/bank/screens/BankDetails/IBAN.d.ts +2 -1
  99. package/build/features/bank/screens/BankDetails/IBAN.js +4 -6
  100. package/build/features/bank/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +13 -5
  101. package/build/features/bank/screens/Verify/OTPInput.js +3 -1
  102. package/build/features/bank/screens/Verify/Verify.js +2 -2
  103. package/build/features/board/Board.d.ts +10 -0
  104. package/build/features/board/Board.js +74 -0
  105. package/build/features/board/index.d.ts +1 -0
  106. package/build/features/board/index.js +1 -0
  107. package/build/features/board/screens/ResetPasswordSuccess/ResetPasswordSuccess.d.ts +5 -0
  108. package/build/features/board/screens/ResetPasswordSuccess/ResetPasswordSuccess.js +21 -0
  109. package/build/features/board/screens/ResetPasswordSuccess/index.d.ts +3 -0
  110. package/build/features/board/screens/ResetPasswordSuccess/index.js +2 -0
  111. package/build/features/board/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.d.ts +3 -0
  112. package/build/features/board/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +35 -0
  113. package/build/features/board/screens/SuccessWithFlowButtons/index.d.ts +2 -0
  114. package/build/features/board/screens/SuccessWithFlowButtons/index.js +2 -0
  115. package/build/features/board/screens/Verify/OTPInput.d.ts +7 -0
  116. package/build/features/board/screens/Verify/OTPInput.js +51 -0
  117. package/build/features/board/screens/Verify/Verify.d.ts +5 -0
  118. package/build/features/board/screens/Verify/Verify.js +74 -0
  119. package/build/features/board/screens/Verify/index.d.ts +2 -0
  120. package/build/features/board/screens/Verify/index.js +2 -0
  121. package/build/features/board/screens/Verify/validation.d.ts +8 -0
  122. package/build/features/board/screens/Verify/validation.js +4 -0
  123. package/build/features/brand/Brand.d.ts +1 -0
  124. package/build/features/brand/Brand.js +11 -6
  125. package/build/features/brand/screens/BrandActivities/ActivitiesList.d.ts +6 -20
  126. package/build/features/brand/screens/BrandActivities/ActivitiesList.js +26 -23
  127. package/build/features/brand/screens/BrandActivities/BrandActivities.js +31 -8
  128. package/build/features/brand/screens/BrandActivities/CustomerBase.d.ts +7 -30
  129. package/build/features/brand/screens/BrandActivities/CustomerBase.js +13 -25
  130. package/build/features/brand/screens/BrandActivities/ExpectedCustomers.d.ts +2 -1
  131. package/build/features/brand/screens/BrandActivities/ExpectedCustomers.js +12 -13
  132. package/build/features/brand/screens/BrandActivities/ExpectedSalesRange.d.ts +2 -1
  133. package/build/features/brand/screens/BrandActivities/ExpectedSalesRange.js +22 -23
  134. package/build/features/brand/screens/BrandActivities/RefundPolicy.d.ts +5 -5
  135. package/build/features/brand/screens/BrandActivities/RefundPolicy.js +3 -3
  136. package/build/features/brand/screens/BrandActivities/TAC.d.ts +3 -4
  137. package/build/features/brand/screens/BrandActivities/TAC.js +3 -3
  138. package/build/features/brand/screens/BrandActivities/TransactionPolicy.d.ts +1 -1
  139. package/build/features/brand/screens/BrandActivities/TransactionPolicy.js +3 -3
  140. package/build/features/brand/screens/BrandActivities/validation.d.ts +36 -36
  141. package/build/features/brand/screens/BrandActivities/validation.js +5 -10
  142. package/build/features/brand/screens/BrandInfo/BrandInfo.js +18 -31
  143. package/build/features/brand/screens/BrandInfo/BrandLogo.d.ts +3 -3
  144. package/build/features/brand/screens/BrandInfo/BrandLogo.js +3 -14
  145. package/build/features/brand/screens/BrandInfo/BrandName.d.ts +2 -2
  146. package/build/features/brand/screens/BrandInfo/BrandName.js +4 -7
  147. package/build/features/brand/screens/BrandInfo/SalesChannels.js +17 -6
  148. package/build/features/brand/screens/BrandInfo/validation.d.ts +21 -6
  149. package/build/features/brand/screens/BrandInfo/validation.js +9 -8
  150. package/build/features/brand/screens/BrandSegmentInfo/BrandSegmentInfo.d.ts +5 -0
  151. package/build/features/brand/screens/BrandSegmentInfo/BrandSegmentInfo.js +103 -0
  152. package/build/features/brand/screens/BrandSegmentInfo/SegmentLocations.d.ts +10 -0
  153. package/build/features/brand/screens/BrandSegmentInfo/SegmentLocations.js +69 -0
  154. package/build/features/brand/screens/BrandSegmentInfo/SegmentProfits.d.ts +10 -0
  155. package/build/features/brand/screens/BrandSegmentInfo/SegmentProfits.js +69 -0
  156. package/build/features/brand/screens/BrandSegmentInfo/SegmentTechs.d.ts +10 -0
  157. package/build/features/brand/screens/BrandSegmentInfo/SegmentTechs.js +69 -0
  158. package/build/features/brand/screens/{BrandInfo → BrandSegmentInfo}/TeamSize.d.ts +2 -1
  159. package/build/features/brand/screens/{BrandInfo → BrandSegmentInfo}/TeamSize.js +18 -33
  160. package/build/features/brand/screens/BrandSegmentInfo/index.d.ts +2 -0
  161. package/build/features/brand/screens/BrandSegmentInfo/index.js +2 -0
  162. package/build/features/brand/screens/BrandSegmentInfo/validation.d.ts +17 -0
  163. package/build/features/brand/screens/BrandSegmentInfo/validation.js +9 -0
  164. package/build/features/brand/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +13 -5
  165. package/build/features/brand/screens/Verify/OTPInput.js +3 -1
  166. package/build/features/brand/screens/Verify/Verify.js +2 -2
  167. package/build/features/business/Business.js +4 -1
  168. package/build/features/business/screens/Activities/Activities.js +2 -1
  169. package/build/features/business/screens/Activities/ActivitiesList.d.ts +13 -61
  170. package/build/features/business/screens/Activities/ActivitiesList.js +226 -103
  171. package/build/features/business/screens/Activities/OperationStartDate.d.ts +1 -1
  172. package/build/features/business/screens/Activities/OperationStartDate.js +2 -2
  173. package/build/features/business/screens/Activities/validation.d.ts +165 -30
  174. package/build/features/business/screens/Activities/validation.js +5 -2
  175. package/build/features/business/screens/BrandDetails/SalesChannel.d.ts +1 -1
  176. package/build/features/business/screens/BusinessType/Article.d.ts +1 -1
  177. package/build/features/business/screens/BusinessType/BusinessType.js +14 -6
  178. package/build/features/business/screens/BusinessType/EntityLicenseList.js +3 -6
  179. package/build/features/business/screens/BusinessType/EntityName.js +4 -5
  180. package/build/features/business/screens/BusinessType/LicenseList.js +6 -9
  181. package/build/features/business/screens/BusinessType/LicenseNumber.js +10 -9
  182. package/build/features/business/screens/BusinessType/LicenseType.d.ts +3 -3
  183. package/build/features/business/screens/BusinessType/validation.d.ts +10 -0
  184. package/build/features/business/screens/BusinessType/validation.js +18 -2
  185. package/build/features/business/screens/CivilID/CivilID.js +2 -1
  186. package/build/features/business/screens/CivilID/IDNumber.js +2 -3
  187. package/build/features/business/screens/Customers/CustomerLocations.d.ts +41 -29
  188. package/build/features/business/screens/Customers/CustomerLocations.js +35 -19
  189. package/build/features/business/screens/Customers/Customers.js +29 -17
  190. package/build/features/business/screens/Customers/ExpectedCustomers.js +8 -10
  191. package/build/features/business/screens/Customers/ExpectedSalesRange.js +13 -15
  192. package/build/features/business/screens/Customers/RefundPolicy.d.ts +4 -4
  193. package/build/features/business/screens/Customers/RefundPolicy.js +15 -4
  194. package/build/features/business/screens/Customers/TransactionPolicy.js +19 -9
  195. package/build/features/business/screens/IDBOD/DOB.js +2 -2
  196. package/build/features/business/screens/IDBOD/ID.js +7 -4
  197. package/build/features/business/screens/IDBOD/IDBOD.js +9 -17
  198. package/build/features/business/screens/IDBOD/validation.d.ts +10 -0
  199. package/build/features/business/screens/IDBOD/validation.js +4 -0
  200. package/build/features/business/screens/OTP/OTP.js +2 -2
  201. package/build/features/business/screens/OTP/OTPInput.js +5 -2
  202. package/build/features/business/screens/Verify/OTPInput.js +3 -1
  203. package/build/features/business/screens/Verify/Verify.js +2 -2
  204. package/build/features/connect/Connect.d.ts +2 -0
  205. package/build/features/connect/Connect.js +95 -13
  206. package/build/features/connect/screens/BrandSegment/BrandSegment.d.ts +5 -0
  207. package/build/features/connect/screens/BrandSegment/BrandSegment.js +84 -0
  208. package/build/features/connect/screens/BrandSegment/SegmentLocations.d.ts +8 -0
  209. package/build/features/{brand/screens/BrandInfo/Segments.js → connect/screens/BrandSegment/SegmentLocations.js} +19 -37
  210. package/build/features/connect/screens/BrandSegment/SegmentProfits.d.ts +8 -0
  211. package/build/features/connect/screens/{Merchant/Segments.js → BrandSegment/SegmentProfits.js} +17 -30
  212. package/build/features/connect/screens/BrandSegment/SegmentTechs.d.ts +8 -0
  213. package/build/features/connect/screens/BrandSegment/SegmentTechs.js +66 -0
  214. package/build/features/connect/screens/{Merchant → BrandSegment}/TeamSize.js +12 -25
  215. package/build/features/connect/screens/BrandSegment/index.d.ts +3 -0
  216. package/build/features/connect/screens/BrandSegment/index.js +2 -0
  217. package/build/features/connect/screens/BrandSegment/validation.d.ts +17 -0
  218. package/build/features/connect/screens/BrandSegment/validation.js +9 -0
  219. package/build/features/connect/screens/BusinessCountry/BusinessCountry.d.ts +5 -0
  220. package/build/features/connect/screens/BusinessCountry/BusinessCountry.js +103 -0
  221. package/build/features/connect/screens/BusinessCountry/index.d.ts +3 -0
  222. package/build/features/connect/screens/BusinessCountry/index.js +2 -0
  223. package/build/features/connect/screens/CivilID/CivilID.js +12 -16
  224. package/build/features/connect/screens/CivilID/IDNumber.js +5 -6
  225. package/build/features/connect/screens/Individual/Email.js +9 -11
  226. package/build/features/connect/screens/Individual/Individual.js +9 -2
  227. package/build/features/connect/screens/Individual/MobileNumber.js +6 -9
  228. package/build/features/connect/screens/Individual/Name.js +11 -15
  229. package/build/features/connect/screens/Merchant/BrandList.js +4 -22
  230. package/build/features/connect/screens/Merchant/BrandName.js +3 -5
  231. package/build/features/connect/screens/Merchant/Merchant.js +13 -16
  232. package/build/features/connect/screens/Merchant/SalesChannels.js +6 -6
  233. package/build/features/connect/screens/Merchant/validation.d.ts +0 -6
  234. package/build/features/connect/screens/Merchant/validation.js +8 -12
  235. package/build/features/connect/screens/Mobile/Mobile.js +23 -22
  236. package/build/features/connect/screens/Mobile/MobileNumber.js +22 -15
  237. package/build/features/connect/screens/NID/DOB.js +3 -3
  238. package/build/features/connect/screens/NID/IDNumber.js +6 -7
  239. package/build/features/connect/screens/NID/NID.js +17 -4
  240. package/build/features/connect/screens/OTP/OTP.js +14 -16
  241. package/build/features/connect/screens/OTP/OTPInput.js +14 -2
  242. package/build/features/connect/screens/ThankYou/ThankYou.js +17 -2
  243. package/build/features/connectExpress/ConnectExpress.d.ts +1 -1
  244. package/build/features/connectExpress/ConnectExpress.js +87 -17
  245. package/build/features/connectExpress/screens/AuthenticationList/AuthenticationList.d.ts +5 -0
  246. package/build/features/connectExpress/screens/AuthenticationList/AuthenticationList.js +93 -0
  247. package/build/features/connectExpress/screens/AuthenticationList/BrandList.d.ts +10 -0
  248. package/build/features/connectExpress/screens/AuthenticationList/BrandList.js +81 -0
  249. package/build/features/connectExpress/screens/AuthenticationList/EntityList.d.ts +11 -0
  250. package/build/features/connectExpress/screens/AuthenticationList/EntityList.js +96 -0
  251. package/build/features/connectExpress/screens/AuthenticationList/MerchantList.d.ts +10 -0
  252. package/build/features/connectExpress/screens/AuthenticationList/MerchantList.js +107 -0
  253. package/build/features/connectExpress/screens/AuthenticationList/index.d.ts +3 -0
  254. package/build/features/connectExpress/screens/AuthenticationList/index.js +2 -0
  255. package/build/features/connectExpress/screens/AuthenticationList/validation.d.ts +14 -0
  256. package/build/features/connectExpress/screens/AuthenticationList/validation.js +8 -0
  257. package/build/features/connectExpress/screens/BusinessCountry/BusinessCountry.d.ts +5 -0
  258. package/build/features/connectExpress/screens/BusinessCountry/BusinessCountry.js +105 -0
  259. package/build/features/connectExpress/screens/BusinessCountry/index.d.ts +3 -0
  260. package/build/features/connectExpress/screens/BusinessCountry/index.js +2 -0
  261. package/build/features/connectExpress/screens/CivilID/CivilID.js +11 -4
  262. package/build/features/connectExpress/screens/CivilID/IDNumber.js +12 -8
  263. package/build/features/connectExpress/screens/CivilIDMissed/CivilID.js +2 -1
  264. package/build/features/connectExpress/screens/CivilIDMissed/IDNumber.js +6 -7
  265. package/build/features/connectExpress/screens/CollectBusinessInfo/BrandName.js +4 -6
  266. package/build/features/connectExpress/screens/CollectBusinessInfo/CollectBusinessInfo.js +13 -5
  267. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseList.js +10 -12
  268. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseNumber.js +9 -8
  269. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseType.d.ts +3 -3
  270. package/build/features/connectExpress/screens/CollectBusinessInfo/TAC.d.ts +2 -2
  271. package/build/features/connectExpress/screens/CollectBusinessInfo/validation.d.ts +13 -0
  272. package/build/features/connectExpress/screens/CollectBusinessInfo/validation.js +71 -4
  273. package/build/features/connectExpress/screens/CollectIndividualInfo/CollectIndividualInfo.js +6 -2
  274. package/build/features/connectExpress/screens/CollectIndividualInfo/Email.js +3 -5
  275. package/build/features/connectExpress/screens/CollectIndividualInfo/Name.js +2 -3
  276. package/build/features/connectExpress/screens/IdentityOTP/OTP.js +4 -4
  277. package/build/features/connectExpress/screens/IdentityOTP/OTPInput.js +5 -3
  278. package/build/features/connectExpress/screens/Mobile/Mobile.js +9 -5
  279. package/build/features/connectExpress/screens/Mobile/MobileNumber.js +9 -6
  280. package/build/features/connectExpress/screens/Mobile/TAC.js +1 -1
  281. package/build/features/connectExpress/screens/NID/DOB.js +2 -2
  282. package/build/features/connectExpress/screens/NID/IDNumber.js +2 -3
  283. package/build/features/connectExpress/screens/NID/NID.js +7 -3
  284. package/build/features/connectExpress/screens/NID/TAC.d.ts +2 -2
  285. package/build/features/connectExpress/screens/NIDMissed/DOB.js +2 -2
  286. package/build/features/connectExpress/screens/NIDMissed/IDNumber.js +7 -4
  287. package/build/features/connectExpress/screens/NIDMissed/NID.js +7 -4
  288. package/build/features/connectExpress/screens/NIDMissed/validation.d.ts +10 -0
  289. package/build/features/connectExpress/screens/NIDMissed/validation.js +4 -0
  290. package/build/features/connectExpress/screens/OTP/OTP.js +3 -3
  291. package/build/features/connectExpress/screens/OTP/OTPInput.js +4 -2
  292. package/build/features/connectExpress/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +15 -6
  293. package/build/features/entity/Entity.d.ts +1 -0
  294. package/build/features/entity/Entity.js +11 -6
  295. package/build/features/entity/screens/EntityCapital/ActivityList.d.ts +3 -16
  296. package/build/features/entity/screens/EntityCapital/ActivityList.js +53 -35
  297. package/build/features/entity/screens/EntityCapital/CapitalPaid.d.ts +2 -1
  298. package/build/features/entity/screens/EntityCapital/CapitalPaid.js +8 -15
  299. package/build/features/entity/screens/EntityCapital/CapitalShareCount.d.ts +2 -1
  300. package/build/features/entity/screens/EntityCapital/CapitalShareCount.js +7 -12
  301. package/build/features/entity/screens/EntityCapital/CapitalShareValue.d.ts +2 -1
  302. package/build/features/entity/screens/EntityCapital/CapitalShareValue.js +9 -16
  303. package/build/features/entity/screens/EntityCapital/EntityCapital.js +14 -6
  304. package/build/features/entity/screens/EntityCapital/validation.d.ts +90 -90
  305. package/build/features/entity/screens/EntityCapital/validation.js +2 -2
  306. package/build/features/entity/screens/EntityName/Article.d.ts +3 -2
  307. package/build/features/entity/screens/EntityName/Article.js +3 -2
  308. package/build/features/entity/screens/EntityName/EntityName.js +45 -16
  309. package/build/features/entity/screens/EntityName/EntityTypeList.d.ts +8 -20
  310. package/build/features/entity/screens/EntityName/EntityTypeList.js +16 -24
  311. package/build/features/entity/screens/EntityName/ExpiryDate.d.ts +3 -2
  312. package/build/features/entity/screens/EntityName/ExpiryDate.js +4 -5
  313. package/build/features/entity/screens/EntityName/IssuingDate.d.ts +3 -2
  314. package/build/features/entity/screens/EntityName/IssuingDate.js +4 -5
  315. package/build/features/entity/screens/EntityName/LegalName.d.ts +2 -1
  316. package/build/features/entity/screens/EntityName/LegalName.js +3 -4
  317. package/build/features/entity/screens/EntityName/LicenseCertificate.js +8 -2
  318. package/build/features/entity/screens/EntityName/LicenseNumber.d.ts +2 -1
  319. package/build/features/entity/screens/EntityName/LicenseNumber.js +10 -10
  320. package/build/features/entity/screens/EntityName/UnifiedNumber.d.ts +2 -1
  321. package/build/features/entity/screens/EntityName/UnifiedNumber.js +3 -4
  322. package/build/features/entity/screens/EntityName/validation.d.ts +28 -0
  323. package/build/features/entity/screens/EntityName/validation.js +40 -2
  324. package/build/features/entity/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +13 -5
  325. package/build/features/entity/screens/Verify/OTPInput.js +3 -1
  326. package/build/features/entity/screens/Verify/Verify.js +2 -2
  327. package/build/features/featuresScreens.d.ts +1 -0
  328. package/build/features/featuresScreens.js +42 -0
  329. package/build/features/individual/Individual.d.ts +1 -0
  330. package/build/features/individual/Individual.js +11 -6
  331. package/build/features/individual/screens/AdditionalIndividualInfo/AdditionalIndividualInfo.d.ts +1 -1
  332. package/build/features/individual/screens/AdditionalIndividualInfo/AdditionalIndividualInfo.js +36 -25
  333. package/build/features/individual/screens/AdditionalIndividualInfo/CivilIDFile.d.ts +1 -1
  334. package/build/features/individual/screens/AdditionalIndividualInfo/CivilIDFile.js +10 -4
  335. package/build/features/individual/screens/AdditionalIndividualInfo/InfluencerSwitch.d.ts +2 -1
  336. package/build/features/individual/screens/AdditionalIndividualInfo/InfluencerSwitch.js +13 -10
  337. package/build/features/individual/screens/AdditionalIndividualInfo/MonthlyIncome.js +19 -30
  338. package/build/features/individual/screens/AdditionalIndividualInfo/Occupation.d.ts +1 -2
  339. package/build/features/individual/screens/AdditionalIndividualInfo/Occupation.js +87 -48
  340. package/build/features/individual/screens/AdditionalIndividualInfo/PEPSwitch.d.ts +4 -3
  341. package/build/features/individual/screens/AdditionalIndividualInfo/PEPSwitch.js +12 -9
  342. package/build/features/individual/screens/AdditionalIndividualInfo/ShareCount.js +2 -1
  343. package/build/features/individual/screens/AdditionalIndividualInfo/ShareValue.js +6 -7
  344. package/build/features/individual/screens/AdditionalIndividualInfo/SignatureFile.js +9 -3
  345. package/build/features/individual/screens/AdditionalIndividualInfo/SourceOfIncome.js +17 -27
  346. package/build/features/individual/screens/AdditionalIndividualInfo/validation.d.ts +7 -7
  347. package/build/features/individual/screens/AdditionalIndividualInfo/validation.js +8 -7
  348. package/build/features/individual/screens/IndividualList/Email.js +1 -1
  349. package/build/features/individual/screens/IndividualList/IndividualList.d.ts +2 -2
  350. package/build/features/individual/screens/IndividualList/UserList.js +10 -6
  351. package/build/features/individual/screens/IndividualPersonalInfo/BirthCity.d.ts +1 -0
  352. package/build/features/individual/screens/IndividualPersonalInfo/BirthCity.js +6 -22
  353. package/build/features/individual/screens/IndividualPersonalInfo/BirthCountry.d.ts +1 -0
  354. package/build/features/individual/screens/IndividualPersonalInfo/BirthCountry.js +6 -22
  355. package/build/features/individual/screens/IndividualPersonalInfo/DOB.d.ts +2 -1
  356. package/build/features/individual/screens/IndividualPersonalInfo/DOB.js +3 -3
  357. package/build/features/individual/screens/IndividualPersonalInfo/Email.d.ts +2 -1
  358. package/build/features/individual/screens/IndividualPersonalInfo/Email.js +3 -8
  359. package/build/features/individual/screens/IndividualPersonalInfo/ExpiryDate.d.ts +2 -1
  360. package/build/features/individual/screens/IndividualPersonalInfo/ExpiryDate.js +3 -4
  361. package/build/features/individual/screens/IndividualPersonalInfo/Gender.d.ts +5 -4
  362. package/build/features/individual/screens/IndividualPersonalInfo/Gender.js +3 -2
  363. package/build/features/individual/screens/IndividualPersonalInfo/ID.d.ts +2 -1
  364. package/build/features/individual/screens/IndividualPersonalInfo/ID.js +8 -6
  365. package/build/features/individual/screens/IndividualPersonalInfo/IndividualPersonalInfo.d.ts +1 -1
  366. package/build/features/individual/screens/IndividualPersonalInfo/IndividualPersonalInfo.js +56 -37
  367. package/build/features/individual/screens/IndividualPersonalInfo/IssuedCountry.d.ts +1 -0
  368. package/build/features/individual/screens/IndividualPersonalInfo/IssuedCountry.js +7 -24
  369. package/build/features/individual/screens/IndividualPersonalInfo/MobileNumber.d.ts +1 -0
  370. package/build/features/individual/screens/IndividualPersonalInfo/MobileNumber.js +5 -8
  371. package/build/features/individual/screens/IndividualPersonalInfo/Name.d.ts +2 -1
  372. package/build/features/individual/screens/IndividualPersonalInfo/Name.js +3 -10
  373. package/build/features/individual/screens/IndividualPersonalInfo/Nationality.d.ts +1 -0
  374. package/build/features/individual/screens/IndividualPersonalInfo/Nationality.js +7 -24
  375. package/build/features/individual/screens/IndividualPersonalInfo/validation.d.ts +1 -1
  376. package/build/features/individual/screens/IndividualPersonalInfo/validation.js +67 -63
  377. package/build/features/individual/screens/IndividualPhoneInfo/PhoneInfo.js +2 -1
  378. package/build/features/individual/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +13 -5
  379. package/build/features/individual/screens/Verify/OTPInput.js +3 -1
  380. package/build/features/individual/screens/Verify/Verify.js +2 -2
  381. package/build/features/password/Password.d.ts +1 -0
  382. package/build/features/password/Password.js +20 -5
  383. package/build/features/password/screens/CreatePassword/CreatePassword.js +3 -2
  384. package/build/features/password/screens/OTP/OTP.js +2 -2
  385. package/build/features/password/screens/OTP/OTPInput.js +5 -2
  386. package/build/features/password/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +13 -5
  387. package/build/features/password/screens/Verify/OTPInput.js +3 -1
  388. package/build/features/password/screens/Verify/Verify.js +2 -2
  389. package/build/features/shared/Address/CountryList.d.ts +6 -6
  390. package/build/features/shared/Address/InputSelect.d.ts +6 -6
  391. package/build/features/shared/Address/InputSelect.js +1 -1
  392. package/build/features/shared/BusinessCountry/BusinessCountry.d.ts +15 -0
  393. package/build/features/shared/BusinessCountry/BusinessCountry.js +179 -0
  394. package/build/features/shared/BusinessCountry/index.d.ts +2 -0
  395. package/build/features/shared/BusinessCountry/index.js +2 -0
  396. package/build/features/shared/Button/EmailProvidersButtons.d.ts +1 -1
  397. package/build/features/shared/Button/EmailProvidersButtons.js +9 -2
  398. package/build/features/shared/Button/FlowsButtons.d.ts +4 -2
  399. package/build/features/shared/Button/FlowsButtons.js +17 -13
  400. package/build/features/shared/Button/IndividualActionButtons.d.ts +4 -2
  401. package/build/features/shared/Button/IndividualActionButtons.js +26 -2
  402. package/build/features/shared/Calender/Calender.d.ts +13 -0
  403. package/build/features/shared/Calender/Calender.js +56 -0
  404. package/build/features/shared/Calender/index.d.ts +2 -0
  405. package/build/features/shared/Calender/index.js +2 -0
  406. package/build/features/shared/CheckIcon/CheckIcon.d.ts +7 -1
  407. package/build/features/shared/CheckIcon/CheckIcon.js +7 -6
  408. package/build/features/shared/Containers/FeatureContainer.d.ts +1 -1
  409. package/build/features/shared/Containers/ScreenContainer.d.ts +1 -1
  410. package/build/features/shared/Dot/Dot.d.ts +8 -0
  411. package/build/features/shared/Dot/Dot.js +29 -0
  412. package/build/features/shared/Dot/index.d.ts +2 -0
  413. package/build/features/shared/Dot/index.js +2 -0
  414. package/build/features/shared/EndAdornment/EndAdornment.d.ts +10 -0
  415. package/build/features/shared/EndAdornment/EndAdornment.js +17 -0
  416. package/build/features/shared/EndAdornment/EndAdornmentExpanded.d.ts +7 -0
  417. package/build/features/shared/EndAdornment/EndAdornmentExpanded.js +13 -0
  418. package/build/features/shared/EndAdornment/index.d.ts +3 -0
  419. package/build/features/shared/EndAdornment/index.js +3 -0
  420. package/build/features/shared/Footer/Footer.js +10 -1
  421. package/build/features/shared/Footer/PoweredByFooter.d.ts +1 -1
  422. package/build/features/shared/Input/Input.d.ts +4 -5
  423. package/build/features/shared/Input/index.d.ts +2 -1
  424. package/build/features/shared/InputSelect/InputSelect.d.ts +4 -0
  425. package/build/features/shared/InputSelect/InputSelect.js +33 -0
  426. package/build/features/shared/InputSelect/index.d.ts +2 -0
  427. package/build/features/shared/InputSelect/index.js +2 -0
  428. package/build/features/shared/SalesChannels/SaleChannelIconsInput.d.ts +2 -1
  429. package/build/features/shared/SalesChannels/SaleChannelIconsInput.js +4 -3
  430. package/build/features/shared/SalesChannels/SalesChannel.d.ts +2 -1
  431. package/build/features/shared/SalesChannels/SalesChannel.js +6 -2
  432. package/build/features/shared/SuccessFlowButtons/SuccessFlowButtons.d.ts +3 -1
  433. package/build/features/shared/SuccessFlowButtons/SuccessFlowButtons.js +20 -9
  434. package/build/features/shared/SuccessScreen/SuccessScreen.js +1 -1
  435. package/build/features/shared/UploadFile/FileUpload.d.ts +5 -4
  436. package/build/features/shared/UploadFile/FileUpload.js +4 -4
  437. package/build/features/shared/UploadFile/UploadFile.d.ts +2 -2
  438. package/build/features/shared/UploadFile/UploadWrapper.d.ts +4 -3
  439. package/build/features/shared/UploadFile/UploadWrapper.js +3 -3
  440. package/build/features/shared/UploadMultipleFile/UploadFile.d.ts +5 -4
  441. package/build/features/shared/UploadMultipleFile/UploadFile.js +4 -4
  442. package/build/features/shared/UploadMultipleFile/UploadMultipleFile.d.ts +4 -3
  443. package/build/features/shared/UploadMultipleFile/UploadMultipleFile.js +2 -2
  444. package/build/features/signIn/screens/Email/Email.js +2 -1
  445. package/build/features/signIn/screens/Mobile/Mobile.js +2 -1
  446. package/build/features/signIn/screens/OTP/OTP.js +2 -2
  447. package/build/features/signIn/screens/OTP/OTPInput.js +4 -2
  448. package/build/features/signIn/screens/Password/Password.js +2 -1
  449. package/build/features/tax/Tax.d.ts +1 -0
  450. package/build/features/tax/Tax.js +11 -6
  451. package/build/features/tax/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +13 -5
  452. package/build/features/tax/screens/TaxDetails/ConfirmPolicy.d.ts +1 -1
  453. package/build/features/tax/screens/TaxDetails/TaxDetails.js +10 -7
  454. package/build/features/tax/screens/TaxDetails/TaxDocument.js +8 -2
  455. package/build/features/tax/screens/TaxDetails/VATId.d.ts +3 -2
  456. package/build/features/tax/screens/TaxDetails/VATId.js +3 -5
  457. package/build/features/tax/screens/Verify/OTPInput.js +3 -1
  458. package/build/features/tax/screens/Verify/Verify.js +2 -2
  459. package/build/hooks/index.d.ts +1 -0
  460. package/build/hooks/index.js +1 -0
  461. package/build/hooks/useAppConfig.d.ts +4 -2
  462. package/build/hooks/useAppConfig.js +18 -18
  463. package/build/hooks/useAppDispatch.d.ts +1 -0
  464. package/build/hooks/useCountry.d.ts +1 -0
  465. package/build/hooks/useCountry.js +4 -3
  466. package/build/hooks/useDataVerified.d.ts +6 -0
  467. package/build/hooks/useDataVerified.js +19 -0
  468. package/build/hooks/useErrorListener.d.ts +2 -1
  469. package/build/hooks/useErrorListener.js +16 -1
  470. package/build/hooks/useExcludeReadOnlyFelids.d.ts +1 -1
  471. package/build/hooks/useFormErrorAndUpdateReadOnly.d.ts +1 -1
  472. package/build/hooks/useFormReadOnly.d.ts +1 -1
  473. package/build/hooks/useVerifyToken.js +1 -1
  474. package/build/index.d.ts +3 -2
  475. package/build/index.js +4 -2
  476. package/build/utils/array.d.ts +13 -2
  477. package/build/utils/array.js +115 -2
  478. package/build/utils/common.d.ts +1 -0
  479. package/build/utils/common.js +10 -0
  480. package/build/utils/date.d.ts +1 -0
  481. package/build/utils/date.js +6 -0
  482. package/build/utils/gtm.d.ts +6 -0
  483. package/build/utils/gtm.js +29 -0
  484. package/build/utils/index.d.ts +1 -0
  485. package/build/utils/index.js +1 -0
  486. package/build/utils/object.d.ts +1 -0
  487. package/build/utils/object.js +14 -0
  488. package/build/utils/string.d.ts +1 -0
  489. package/build/utils/string.js +3 -0
  490. package/package.json +4 -2
  491. package/build/features/brand/screens/BrandInfo/Segments.d.ts +0 -9
  492. package/build/features/connect/screens/Merchant/Segments.d.ts +0 -8
  493. /package/build/features/connect/screens/{Merchant → BrandSegment}/TeamSize.d.ts +0 -0
@@ -24,7 +24,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
24
24
  function verb(n) { return function (v) { return step([n, v]); }; }
25
25
  function step(op) {
26
26
  if (f) throw new TypeError("Generator is already executing.");
27
- while (_) try {
27
+ while (g && (g = 0, op[0] && (_ = 0)), _) try {
28
28
  if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
29
29
  if (y = 0, t) op = [op[0] & 2, t.value];
30
30
  switch (op[0]) {
@@ -68,17 +68,17 @@ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
68
68
  var _a;
69
69
  import { createAsyncThunk, createSlice } from '@reduxjs/toolkit';
70
70
  import API from '../../../api';
71
- import { FlowsTypes, IndividualGender, IndividualType, DocumentPurpose } from '../../../@types';
72
- import { handleNextScreenStep, handlePrevScreenStep, handleSetCountryByIso2 } from '../../../app/settings';
73
- import { defaultCountry, IDENTIFICATION_TYPE, INDIVIDUAl_STEP_NAMES } from '../../../constants';
74
- import { convertNumbers2English, dateFormat, findCountryByIddPrefix, findCountryByIso2, hasNoneEditableValue, getUserNameObject, getUserName, sleep, isValidEmail, getRecentDocumentBasedOnPurpose, formatNumberAsCurrency } from '../../../utils';
71
+ import { FlowsTypes, IndividualGender, DocumentPurpose } from '../../../@types';
72
+ import { handleNextScreenStep, handlePrevScreenStep, handlePublicKey, handleSetCountryByIso2, onCloseComplete } from '../../../app/settings';
73
+ import { defaultCountry, IDENTIFICATION_TYPE, INDIVIDUAl_STEP_NAMES, MONTHLY_INCOME_LIST } from '../../../constants';
74
+ import { convertNumbers2English, dateFormat, findCountryByIddPrefix, findCountryByIso2, hasNoneEditableValue, getUserNameObject, getUserName, sleep, isValidEmail, getRecentDocumentBasedOnPurpose, formatNumberAsCurrency, removeAllCharsFromNumber, mapUserList, sortUserList, getIndividualType, isOtherThanKWOrSA } from '../../../utils';
75
75
  export var verifyToken = createAsyncThunk('individual/verifyToken', function (_a, thunkApi) {
76
76
  var token = _a.token, isInternally = _a.isInternally, isUpdatePhoneInfo = _a.isUpdatePhoneInfo;
77
77
  return __awaiter(void 0, void 0, void 0, function () {
78
- var payload, settings, data, boardData, individualData, countryCode, boardInfoData, boardInfoStatus, countries, board_id, board_info_id, notification, _b, id, type, data_1, birthCountry;
79
- var _c, _d, _e, _f, _g, _h, _j;
80
- return __generator(this, function (_k) {
81
- switch (_k.label) {
78
+ var payload, settings, data, boardData, individualData, countryCode, boardInfoData, boardInfoStatus, countries, publicKey, board_id, board_info_id, notification, _b, id, type, data_1, birthCountry, individuals, _c, is_authorized, data_state;
79
+ var _d, _e, _f, _g, _h, _j, _k, _l;
80
+ return __generator(this, function (_m) {
81
+ switch (_m.label) {
82
82
  case 0:
83
83
  payload = {
84
84
  service_name: 'tap_email',
@@ -87,10 +87,10 @@ export var verifyToken = createAsyncThunk('individual/verifyToken', function (_a
87
87
  settings = thunkApi.getState().settings;
88
88
  return [4, API.leadService.verifyLeadToken(payload)];
89
89
  case 1:
90
- data = (_k.sent()).data;
90
+ data = (_m.sent()).data;
91
91
  boardInfoStatus = undefined;
92
92
  countries = settings.data.countries;
93
- if (((_c = data.errors) === null || _c === void 0 ? void 0 : _c.length) || (data === null || data === void 0 ? void 0 : data.mw_error))
93
+ if (((_d = data.errors) === null || _d === void 0 ? void 0 : _d.length) || (data === null || data === void 0 ? void 0 : data.mw_error))
94
94
  throw new Error(data.errors[0].description || (data === null || data === void 0 ? void 0 : data.mw_error));
95
95
  if (isInternally)
96
96
  data.step_name = INDIVIDUAl_STEP_NAMES.INDIVIDUAl_INFO;
@@ -98,6 +98,10 @@ export var verifyToken = createAsyncThunk('individual/verifyToken', function (_a
98
98
  countryCode = data === null || data === void 0 ? void 0 : data.country_code;
99
99
  thunkApi.dispatch(handleSetCountryByIso2(countryCode));
100
100
  }
101
+ publicKey = (_e = data === null || data === void 0 ? void 0 : data.config) === null || _e === void 0 ? void 0 : _e.public_key;
102
+ if (publicKey) {
103
+ thunkApi.dispatch(handlePublicKey(publicKey));
104
+ }
101
105
  if (!(data.step_name === INDIVIDUAl_STEP_NAMES.PHONE_INFO)) return [3, 2];
102
106
  thunkApi.dispatch(handleNextScreenStep('INDIVIDUAL_PHONE_INFO_STEP'));
103
107
  return [3, 16];
@@ -108,73 +112,76 @@ export var verifyToken = createAsyncThunk('individual/verifyToken', function (_a
108
112
  if (!(board_id && board_info_id)) return [3, 5];
109
113
  return [4, API.boardService.retrieveBoardInfo({ id: board_id, infoId: board_info_id })];
110
114
  case 3:
111
- boardInfoData = _k.sent();
115
+ boardInfoData = _m.sent();
112
116
  notification = (boardInfoData || {}).notification;
113
117
  _b = (notification === null || notification === void 0 ? void 0 : notification.recipient) || {}, id = _b.id, type = _b.type;
114
118
  if (!(id && type)) return [3, 5];
115
119
  return [4, thunkApi.dispatch(retrieveIndividualInfo({ id: id, type: type, countryCode: countryCode })).unwrap()];
116
120
  case 4:
117
- data_1 = (_k.sent()).data;
121
+ data_1 = (_m.sent()).data;
118
122
  individualData = data_1 || {};
119
- _k.label = 5;
123
+ _m.label = 5;
120
124
  case 5:
121
125
  if (!board_id) return [3, 7];
122
126
  return [4, API.boardService.retrieveBoardDetails(board_id)];
123
127
  case 6:
124
- boardData = _k.sent();
125
- _k.label = 7;
128
+ boardData = _m.sent();
129
+ _m.label = 7;
126
130
  case 7:
127
131
  if (!countryCode) {
128
- countryCode = (_d = boardData === null || boardData === void 0 ? void 0 : boardData.entity) === null || _d === void 0 ? void 0 : _d.country;
132
+ countryCode = (_f = boardData === null || boardData === void 0 ? void 0 : boardData.entity) === null || _f === void 0 ? void 0 : _f.country;
129
133
  if (countryCode)
130
134
  thunkApi.dispatch(handleSetCountryByIso2(countryCode));
131
135
  }
132
136
  if (!(individualData === null || individualData === void 0 ? void 0 : individualData.is_authorized)) return [3, 11];
133
- if (!((_e = boardData === null || boardData === void 0 ? void 0 : boardData.business) === null || _e === void 0 ? void 0 : _e.id)) return [3, 9];
134
- return [4, thunkApi.dispatch(getIndividualList((_f = boardData === null || boardData === void 0 ? void 0 : boardData.business) === null || _f === void 0 ? void 0 : _f.id))];
137
+ if (!((_g = boardData === null || boardData === void 0 ? void 0 : boardData.business) === null || _g === void 0 ? void 0 : _g.id)) return [3, 9];
138
+ return [4, thunkApi.dispatch(getIndividualList((_h = boardData === null || boardData === void 0 ? void 0 : boardData.business) === null || _h === void 0 ? void 0 : _h.id))];
135
139
  case 8:
136
- _k.sent();
137
- _k.label = 9;
140
+ _m.sent();
141
+ _m.label = 9;
138
142
  case 9: return [4, API.boardService.retrieveBoardInfoStatus(board_id)];
139
143
  case 10:
140
- boardInfoStatus = _k.sent();
144
+ boardInfoStatus = _m.sent();
141
145
  thunkApi.dispatch(handleNextScreenStep('INDIVIDUAL_LIST_STEP'));
142
146
  return [3, 14];
143
147
  case 11:
144
- birthCountry = ((_g = individualData === null || individualData === void 0 ? void 0 : individualData.birth) === null || _g === void 0 ? void 0 : _g.country) || countryCode;
148
+ birthCountry = ((_j = individualData === null || individualData === void 0 ? void 0 : individualData.birth) === null || _j === void 0 ? void 0 : _j.country) || countryCode;
145
149
  if (!birthCountry) return [3, 13];
146
150
  return [4, thunkApi.dispatch(getCityList(birthCountry))];
147
151
  case 12:
148
- _k.sent();
149
- _k.label = 13;
152
+ _m.sent();
153
+ _m.label = 13;
150
154
  case 13:
151
- sleep(100).then(function () { return thunkApi.dispatch(handleNextScreenStep('INDIVIDUAL_PERSONAL_INDIVIDUAL_INFO_STEP')); });
152
- _k.label = 14;
155
+ thunkApi.dispatch(handleNextScreenStep('INDIVIDUAL_PERSONAL_INDIVIDUAL_INFO_STEP'));
156
+ _m.label = 14;
153
157
  case 14: return [3, 16];
154
158
  case 15:
155
159
  if (isUpdatePhoneInfo) {
156
160
  thunkApi.dispatch(handleNextScreenStep('INDIVIDUAL_VERIFY_STEP'));
157
161
  }
158
- _k.label = 16;
159
- case 16: return [2, {
160
- data: data,
161
- boardResponse: {
162
- brand: boardData === null || boardData === void 0 ? void 0 : boardData.brand,
163
- bank_account: boardData === null || boardData === void 0 ? void 0 : boardData.bank_account,
164
- entity: boardData === null || boardData === void 0 ? void 0 : boardData.entity,
165
- merchant: boardData === null || boardData === void 0 ? void 0 : boardData.merchant,
166
- merchant_id: boardInfoData === null || boardInfoData === void 0 ? void 0 : boardInfoData.merchant_id,
167
- name: (_h = boardData === null || boardData === void 0 ? void 0 : boardData.user) === null || _h === void 0 ? void 0 : _h.names,
168
- contact: (_j = boardData === null || boardData === void 0 ? void 0 : boardData.user) === null || _j === void 0 ? void 0 : _j.contact,
169
- individuals: boardData === null || boardData === void 0 ? void 0 : boardData.individuals,
170
- countries: countries,
171
- countryCode: countryCode,
172
- notification: boardInfoData === null || boardInfoData === void 0 ? void 0 : boardInfoData.notification,
173
- business: boardData === null || boardData === void 0 ? void 0 : boardData.business,
174
- flows: (boardInfoStatus === null || boardInfoStatus === void 0 ? void 0 : boardInfoStatus.info) || []
175
- },
176
- token: token
177
- }];
162
+ _m.label = 16;
163
+ case 16:
164
+ individuals = (boardData || {}).individuals;
165
+ _c = individualData || {}, is_authorized = _c.is_authorized, data_state = _c.data_state;
166
+ return [2, {
167
+ data: data,
168
+ boardResponse: {
169
+ brand: boardData === null || boardData === void 0 ? void 0 : boardData.brand,
170
+ bank_account: boardData === null || boardData === void 0 ? void 0 : boardData.bank_account,
171
+ entity: boardData === null || boardData === void 0 ? void 0 : boardData.entity,
172
+ merchant: boardData === null || boardData === void 0 ? void 0 : boardData.merchant,
173
+ merchant_id: boardInfoData === null || boardInfoData === void 0 ? void 0 : boardInfoData.merchant_id,
174
+ name: (_k = boardData === null || boardData === void 0 ? void 0 : boardData.user) === null || _k === void 0 ? void 0 : _k.names,
175
+ contact: (_l = boardData === null || boardData === void 0 ? void 0 : boardData.user) === null || _l === void 0 ? void 0 : _l.contact,
176
+ individuals: is_authorized ? individuals : __assign(__assign({}, individuals), (!!data_state && { data_state: data_state })),
177
+ countries: countries,
178
+ countryCode: countryCode,
179
+ notification: boardInfoData === null || boardInfoData === void 0 ? void 0 : boardInfoData.notification,
180
+ business: boardData === null || boardData === void 0 ? void 0 : boardData.business,
181
+ flows: (boardInfoStatus === null || boardInfoStatus === void 0 ? void 0 : boardInfoStatus.info) || []
182
+ },
183
+ token: token
184
+ }];
178
185
  }
179
186
  });
180
187
  });
@@ -215,29 +222,27 @@ export var resendOTP = createAsyncThunk('resendOTPIndividual', function (params,
215
222
  });
216
223
  }); });
217
224
  export var addDetailsAsync = createAsyncThunk('individual/addDetailsAsync', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
218
- var settings, user, userList, id, type, birth, countryCode;
225
+ var settings, user, userList, birth, individual_id, countryCode;
219
226
  return __generator(this, function (_a) {
220
227
  switch (_a.label) {
221
228
  case 0:
222
229
  settings = thunkApi.getState().settings;
223
230
  user = params.user, userList = params.userList;
224
- id = user.id, type = user.type, birth = user.birth;
231
+ birth = user.birth, individual_id = user.individual_id;
225
232
  countryCode = (birth === null || birth === void 0 ? void 0 : birth.country) || settings.data.businessCountry.iso2;
226
233
  if (!countryCode) return [3, 2];
227
234
  return [4, thunkApi.dispatch(getCityList(countryCode))];
228
235
  case 1:
229
236
  _a.sent();
230
237
  _a.label = 2;
231
- case 2: return [4, thunkApi.dispatch(retrieveIndividualInfo({ id: id, type: type }))];
232
- case 3:
233
- _a.sent();
238
+ case 2:
234
239
  sleep(100).then(function () { return thunkApi.dispatch(handleNextScreenStep('INDIVIDUAL_PERSONAL_INDIVIDUAL_INFO_STEP')); });
235
- return [2, { userList: userList }];
240
+ return [2, { userList: userList, individualId: individual_id, countryCode: settings.data.businessCountry.iso2, countries: settings.data.countries }];
236
241
  }
237
242
  });
238
243
  }); });
239
244
  export var requestDetailsByEmail = createAsyncThunk('individual/requestDetailsByEmail', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
240
- var individual, _a, merchant_id, board_id, user, collectInfo, id, type, _b, resEmail, resPhone, isPhoneAndEmailAvailable, email, mobile, countryCode, hasContact, individualData, hasPhone, requestBody, data_2, payload, data;
245
+ var individual, _a, merchant_id, board_id, user, collectInfo, id, objects, ids, _b, resEmail, resPhone, isPhoneAndEmailAvailable, email, mobile, countryCode, hasContact, individualData, hasPhone, requestBody, data_2, user_1, payload, data;
241
246
  var _c;
242
247
  return __generator(this, function (_d) {
243
248
  switch (_d.label) {
@@ -245,7 +250,7 @@ export var requestDetailsByEmail = createAsyncThunk('individual/requestDetailsBy
245
250
  individual = thunkApi.getState().individual;
246
251
  _a = individual.data.verify.responseBody || {}, merchant_id = _a.merchant_id, board_id = _a.board_id;
247
252
  user = params.user, collectInfo = params.collectInfo;
248
- id = user.id, type = user.type;
253
+ id = user.id, objects = user.objects, ids = user.ids;
249
254
  _b = (user === null || user === void 0 ? void 0 : user.contact) || {}, resEmail = _b.email, resPhone = _b.phone;
250
255
  isPhoneAndEmailAvailable = isValidEmail(resEmail) && (resPhone === null || resPhone === void 0 ? void 0 : resPhone.country_code) && (resPhone === null || resPhone === void 0 ? void 0 : resPhone.number);
251
256
  email = collectInfo.email, mobile = collectInfo.mobile, countryCode = collectInfo.countryCode;
@@ -254,8 +259,7 @@ export var requestDetailsByEmail = createAsyncThunk('individual/requestDetailsBy
254
259
  if (!(!isPhoneAndEmailAvailable && hasContact)) return [3, 2];
255
260
  hasPhone = mobile && (countryCode === null || countryCode === void 0 ? void 0 : countryCode.idd_prefix);
256
261
  requestBody = {
257
- id: id,
258
- type: type,
262
+ ids: (ids === null || ids === void 0 ? void 0 : ids.length) ? ids : [id],
259
263
  contact: {
260
264
  email: email,
261
265
  phone: hasPhone
@@ -266,18 +270,11 @@ export var requestDetailsByEmail = createAsyncThunk('individual/requestDetailsBy
266
270
  : undefined
267
271
  }
268
272
  };
269
- return [4, API.individualService.updateIndividual(requestBody)];
273
+ return [4, API.individualService.updateMultipleIndividual(requestBody)];
270
274
  case 1:
271
275
  data_2 = _d.sent();
272
- individualData = data_2 === null || data_2 === void 0 ? void 0 : data_2.user;
273
- if (type === IndividualType.SHARE_HOLDER)
274
- individualData = data_2 === null || data_2 === void 0 ? void 0 : data_2.shareholder;
275
- else if (type === IndividualType.BOARD_MEMBER)
276
- individualData = data_2 === null || data_2 === void 0 ? void 0 : data_2.board_member;
277
- else if (type === IndividualType.BUYER)
278
- individualData = data_2 === null || data_2 === void 0 ? void 0 : data_2.buyer;
279
- else if (type === IndividualType.CUSTOMER)
280
- individualData = data_2 === null || data_2 === void 0 ? void 0 : data_2.customer;
276
+ user_1 = (sortUserList(mapUserList(data_2 === null || data_2 === void 0 ? void 0 : data_2.individuals)) || [])[0];
277
+ individualData = user_1;
281
278
  _d.label = 2;
282
279
  case 2:
283
280
  payload = {
@@ -291,7 +288,7 @@ export var requestDetailsByEmail = createAsyncThunk('individual/requestDetailsBy
291
288
  notification: {
292
289
  recipient: {
293
290
  id: id,
294
- type: type
291
+ type: (objects === null || objects === void 0 ? void 0 : objects[0]) || ''
295
292
  },
296
293
  channel: ['email']
297
294
  }
@@ -299,14 +296,14 @@ export var requestDetailsByEmail = createAsyncThunk('individual/requestDetailsBy
299
296
  return [4, API.boardService.requestDetailsByEmail(payload)];
300
297
  case 3:
301
298
  data = _d.sent();
302
- return [2, { data: data, userData: __assign(__assign({}, individualData), { type: type }) }];
299
+ return [2, { data: data, individualData: individualData }];
303
300
  }
304
301
  });
305
302
  }); });
306
303
  export var getIndividualList = createAsyncThunk('individual/getIndividualList', function (businessId) { return __awaiter(void 0, void 0, void 0, function () {
307
- var payload, _a, users, shareholders, board_members, userList, shareHolderList, boardMemberList, individualList;
308
- return __generator(this, function (_b) {
309
- switch (_b.label) {
304
+ var payload, individuals, list;
305
+ return __generator(this, function (_a) {
306
+ switch (_a.label) {
310
307
  case 0:
311
308
  payload = {
312
309
  page: 1,
@@ -315,12 +312,9 @@ export var getIndividualList = createAsyncThunk('individual/getIndividualList',
315
312
  };
316
313
  return [4, API.individualService.getIndividualList(payload)];
317
314
  case 1:
318
- _a = _b.sent(), users = _a.users, shareholders = _a.shareholders, board_members = _a.board_members;
319
- userList = (users || []).map(function (user) { return (__assign(__assign({}, user), { type: IndividualType.USER })); });
320
- shareHolderList = (shareholders || []).map(function (shareholder) { return (__assign(__assign({}, shareholder), { type: IndividualType.SHARE_HOLDER })); });
321
- boardMemberList = (board_members || []).map(function (board_member) { return (__assign(__assign({}, board_member), { type: IndividualType.BOARD_MEMBER })); });
322
- individualList = __spreadArray(__spreadArray(__spreadArray([], userList, true), shareHolderList, true), boardMemberList, true);
323
- return [2, individualList];
315
+ individuals = (_a.sent()).individuals;
316
+ list = sortUserList(mapUserList(individuals)) || [];
317
+ return [2, __spreadArray([], list, true)];
324
318
  }
325
319
  });
326
320
  }); });
@@ -340,30 +334,35 @@ export var getCityList = createAsyncThunk('individual/getCityList', function (co
340
334
  });
341
335
  }); });
342
336
  export var retrieveIndividualInfo = createAsyncThunk('individual/retrieveIndividualInfo', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
343
- var id, type, countryCode, settings, data, individualData;
344
- return __generator(this, function (_a) {
345
- switch (_a.label) {
337
+ var id, type, countryCode, settings, data, _a, isShareholder, isBoardMember, isBuyer, isCustomer, individualData;
338
+ return __generator(this, function (_b) {
339
+ switch (_b.label) {
346
340
  case 0:
347
341
  id = params.id, type = params.type, countryCode = params.countryCode;
348
342
  settings = thunkApi.getState().settings;
349
343
  return [4, API.individualService.retrieveIndividual(id, type)];
350
344
  case 1:
351
- data = _a.sent();
345
+ data = _b.sent();
346
+ _a = getIndividualType([type]), isShareholder = _a.isShareholder, isBoardMember = _a.isBoardMember, isBuyer = _a.isBuyer, isCustomer = _a.isCustomer;
352
347
  individualData = data === null || data === void 0 ? void 0 : data.user;
353
- if (type === IndividualType.SHARE_HOLDER)
348
+ if (isShareholder)
354
349
  individualData = data === null || data === void 0 ? void 0 : data.shareholder;
355
- else if (type === IndividualType.BOARD_MEMBER)
350
+ else if (isBoardMember)
356
351
  individualData = data === null || data === void 0 ? void 0 : data.board_member;
357
- else if (type === IndividualType.BUYER)
352
+ else if (isBuyer)
358
353
  individualData = data === null || data === void 0 ? void 0 : data.buyer;
359
- else if (type === IndividualType.CUSTOMER)
354
+ else if (isCustomer)
360
355
  individualData = data === null || data === void 0 ? void 0 : data.customer;
361
- return [2, { data: __assign(__assign({}, (individualData || {})), { type: type }), countryCode: countryCode, countries: settings.data.countries }];
356
+ return [2, {
357
+ data: __assign(__assign({}, (individualData || {})), { objects: [type], individual_data_state: individualData === null || individualData === void 0 ? void 0 : individualData.data_state, object: type }),
358
+ countryCode: countryCode,
359
+ countries: settings.data.countries
360
+ }];
362
361
  }
363
362
  });
364
363
  }); });
365
364
  export var retrieveDataList = createAsyncThunk('individualRetrieveDataList', function (countryCode) { return __awaiter(void 0, void 0, void 0, function () {
366
- var monthlyIncomeBody, dataBody, _a, sourceIncome, monthlyIncome, occupation;
365
+ var monthlyIncomeBody, dataBody, _a, sourceIncome, monthlyIncome, occupationData, occupation, mappedOccupation;
367
366
  return __generator(this, function (_b) {
368
367
  switch (_b.label) {
369
368
  case 0:
@@ -380,11 +379,16 @@ export var retrieveDataList = createAsyncThunk('individualRetrieveDataList', fun
380
379
  API.dataService.getOccupation(dataBody)
381
380
  ])];
382
381
  case 1:
383
- _a = _b.sent(), sourceIncome = _a[0], monthlyIncome = _a[1], occupation = _a[2];
382
+ _a = _b.sent(), sourceIncome = _a[0], monthlyIncome = _a[1], occupationData = _a[2];
383
+ occupation = (occupationData === null || occupationData === void 0 ? void 0 : occupationData.occupation) || {};
384
+ mappedOccupation = (occupation.section || []).map(function (section) {
385
+ var sub = (occupation.chapter || []).filter(function (chapter) { return chapter.section_code === section.code; });
386
+ return __assign(__assign({}, section), { sub: sub });
387
+ });
384
388
  return [2, {
385
389
  sourceIncome: sourceIncome,
386
390
  monthlyIncome: monthlyIncome,
387
- occupation: occupation
391
+ occupation: { list: mappedOccupation || [] }
388
392
  }];
389
393
  }
390
394
  });
@@ -419,10 +423,10 @@ export var retrieveBoardDetails = createAsyncThunk('retrieveIndividualBoardDetai
419
423
  });
420
424
  }); });
421
425
  export var verifyLeadOTP = createAsyncThunk('verifyIndividualLeadOTP', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
422
- var _a, individual, settings, responseBody, _b, board_id, board_info_id, countries, payload, data, boardInfoData, individualData, boardData, boardInfoStatus, countryCode, notification, _c, id, type, data_3, birthCountry;
423
- var _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
424
- return __generator(this, function (_p) {
425
- switch (_p.label) {
426
+ var _a, individual, settings, responseBody, _b, board_id, board_info_id, countries, payload, data, boardInfoData, individualData, boardData, boardInfoStatus, publicKey, countryCode, notification, _c, id, type, data_3, birthCountry, individuals, _d, is_authorized, data_state;
427
+ var _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
428
+ return __generator(this, function (_r) {
429
+ switch (_r.label) {
426
430
  case 0:
427
431
  _a = thunkApi.getState(), individual = _a.individual, settings = _a.settings;
428
432
  responseBody = individual.data.verify.responseBody;
@@ -430,62 +434,68 @@ export var verifyLeadOTP = createAsyncThunk('verifyIndividualLeadOTP', function
430
434
  countries = settings.data.countries;
431
435
  payload = {
432
436
  data: params.otp,
433
- service_name: (_d = responseBody === null || responseBody === void 0 ? void 0 : responseBody.verification_by) === null || _d === void 0 ? void 0 : _d.service_name,
437
+ service_name: (_e = responseBody === null || responseBody === void 0 ? void 0 : responseBody.verification_by) === null || _e === void 0 ? void 0 : _e.service_name,
434
438
  verify_token: responseBody === null || responseBody === void 0 ? void 0 : responseBody.verify_token,
435
439
  step_name: INDIVIDUAl_STEP_NAMES.PHONE_AUTH,
436
440
  encryption_contract: ['data']
437
441
  };
438
442
  return [4, API.leadService.verifyLeadOTP(payload)];
439
443
  case 1:
440
- data = (_p.sent()).data;
444
+ data = (_r.sent()).data;
441
445
  boardInfoStatus = undefined;
442
- if ((_e = data.errors) === null || _e === void 0 ? void 0 : _e.length)
446
+ if ((_f = data.errors) === null || _f === void 0 ? void 0 : _f.length)
443
447
  throw new Error(data.errors[0].description);
448
+ publicKey = (_g = data === null || data === void 0 ? void 0 : data.config) === null || _g === void 0 ? void 0 : _g.public_key;
449
+ if (publicKey) {
450
+ thunkApi.dispatch(handlePublicKey(publicKey));
451
+ }
444
452
  if (!board_id) return [3, 3];
445
453
  return [4, API.boardService.retrieveBoardDetails(board_id)];
446
454
  case 2:
447
- boardData = _p.sent();
448
- _p.label = 3;
455
+ boardData = _r.sent();
456
+ _r.label = 3;
449
457
  case 3:
450
- countryCode = (_f = boardData === null || boardData === void 0 ? void 0 : boardData.entity) === null || _f === void 0 ? void 0 : _f.country;
458
+ countryCode = (_h = boardData === null || boardData === void 0 ? void 0 : boardData.entity) === null || _h === void 0 ? void 0 : _h.country;
451
459
  if (!(board_id && board_info_id)) return [3, 6];
452
460
  return [4, API.boardService.retrieveBoardInfo({ id: board_id, infoId: board_info_id })];
453
461
  case 4:
454
- boardInfoData = _p.sent();
462
+ boardInfoData = _r.sent();
455
463
  notification = (boardInfoData || {}).notification;
456
464
  _c = (notification === null || notification === void 0 ? void 0 : notification.recipient) || {}, id = _c.id, type = _c.type;
457
465
  if (!(id && type)) return [3, 6];
458
466
  return [4, thunkApi.dispatch(retrieveIndividualInfo({ id: id, type: type, countryCode: countryCode })).unwrap()];
459
467
  case 5:
460
- data_3 = (_p.sent()).data;
468
+ data_3 = (_r.sent()).data;
461
469
  individualData = data_3 || {};
462
- _p.label = 6;
470
+ _r.label = 6;
463
471
  case 6:
464
472
  if (countryCode)
465
473
  thunkApi.dispatch(handleSetCountryByIso2(countryCode));
466
474
  if (!(individualData === null || individualData === void 0 ? void 0 : individualData.is_authorized)) return [3, 10];
467
- if (!((_g = boardData === null || boardData === void 0 ? void 0 : boardData.business) === null || _g === void 0 ? void 0 : _g.id)) return [3, 8];
468
- return [4, thunkApi.dispatch(getIndividualList((_h = boardData === null || boardData === void 0 ? void 0 : boardData.business) === null || _h === void 0 ? void 0 : _h.id))];
475
+ if (!((_j = boardData === null || boardData === void 0 ? void 0 : boardData.business) === null || _j === void 0 ? void 0 : _j.id)) return [3, 8];
476
+ return [4, thunkApi.dispatch(getIndividualList((_k = boardData === null || boardData === void 0 ? void 0 : boardData.business) === null || _k === void 0 ? void 0 : _k.id))];
469
477
  case 7:
470
- _p.sent();
471
- _p.label = 8;
478
+ _r.sent();
479
+ _r.label = 8;
472
480
  case 8: return [4, API.boardService.retrieveBoardInfoStatus(board_id)];
473
481
  case 9:
474
- boardInfoStatus = _p.sent();
482
+ boardInfoStatus = _r.sent();
475
483
  thunkApi.dispatch(handleNextScreenStep('INDIVIDUAL_LIST_STEP'));
476
484
  return [3, 13];
477
485
  case 10:
478
- birthCountry = ((_j = individualData === null || individualData === void 0 ? void 0 : individualData.birth) === null || _j === void 0 ? void 0 : _j.country) || countryCode;
486
+ birthCountry = ((_l = individualData === null || individualData === void 0 ? void 0 : individualData.birth) === null || _l === void 0 ? void 0 : _l.country) || countryCode;
479
487
  if (!birthCountry) return [3, 12];
480
488
  return [4, thunkApi.dispatch(getCityList(birthCountry))];
481
489
  case 11:
482
- _p.sent();
483
- _p.label = 12;
490
+ _r.sent();
491
+ _r.label = 12;
484
492
  case 12:
485
493
  sleep(100).then(function () { return thunkApi.dispatch(handleNextScreenStep('INDIVIDUAL_PERSONAL_INDIVIDUAL_INFO_STEP')); });
486
- _p.label = 13;
494
+ _r.label = 13;
487
495
  case 13:
488
- (_l = (_k = settings.data.appConfig).onStepCompleted) === null || _l === void 0 ? void 0 : _l.call(_k, settings.data.activeScreen.name, { otp: params.otp });
496
+ (_o = (_m = settings.data.appConfig).onStepCompleted) === null || _o === void 0 ? void 0 : _o.call(_m, settings.data.activeScreen.name, { otp: params.otp });
497
+ individuals = (boardData || {}).individuals;
498
+ _d = individualData || {}, is_authorized = _d.is_authorized, data_state = _d.data_state;
489
499
  return [2, {
490
500
  data: data,
491
501
  boardResponse: {
@@ -494,9 +504,9 @@ export var verifyLeadOTP = createAsyncThunk('verifyIndividualLeadOTP', function
494
504
  entity: boardData === null || boardData === void 0 ? void 0 : boardData.entity,
495
505
  merchant: boardData === null || boardData === void 0 ? void 0 : boardData.merchant,
496
506
  merchant_id: boardInfoData === null || boardInfoData === void 0 ? void 0 : boardInfoData.merchant_id,
497
- name: (_m = boardData === null || boardData === void 0 ? void 0 : boardData.user) === null || _m === void 0 ? void 0 : _m.names,
498
- contact: (_o = boardData === null || boardData === void 0 ? void 0 : boardData.user) === null || _o === void 0 ? void 0 : _o.contact,
499
- individuals: boardData === null || boardData === void 0 ? void 0 : boardData.individuals,
507
+ name: (_p = boardData === null || boardData === void 0 ? void 0 : boardData.user) === null || _p === void 0 ? void 0 : _p.names,
508
+ contact: (_q = boardData === null || boardData === void 0 ? void 0 : boardData.user) === null || _q === void 0 ? void 0 : _q.contact,
509
+ individuals: is_authorized ? individuals : __assign(__assign({}, individuals), (!!data_state && { data_state: data_state })),
500
510
  countries: countries,
501
511
  countryCode: countryCode,
502
512
  notification: boardInfoData === null || boardInfoData === void 0 ? void 0 : boardInfoData.notification,
@@ -511,31 +521,30 @@ export var verifyLeadOTP = createAsyncThunk('verifyIndividualLeadOTP', function
511
521
  export var updatePhoneInfo = createAsyncThunk('individual/updatePhoneInfo', function (_a, thunkApi) {
512
522
  var formData = _a.formData, originalFormData = _a.originalFormData;
513
523
  return __awaiter(void 0, void 0, void 0, function () {
514
- var individual, _b, token, responseBody, _c, id, type, mobile, countryCode, requestBody, data;
515
- var _d;
516
- return __generator(this, function (_e) {
517
- switch (_e.label) {
524
+ var individual, _b, token, responseBody, id, mobile, countryCode, requestBody, data;
525
+ var _c;
526
+ return __generator(this, function (_d) {
527
+ switch (_d.label) {
518
528
  case 0:
519
529
  individual = thunkApi.getState().individual;
520
530
  _b = individual.data.verify, token = _b.token, responseBody = _b.responseBody;
521
- _c = (responseBody === null || responseBody === void 0 ? void 0 : responseBody.source) || {}, id = _c.id, type = _c.type;
531
+ id = ((responseBody === null || responseBody === void 0 ? void 0 : responseBody.source) || {}).id;
522
532
  mobile = formData.mobile, countryCode = formData.countryCode;
523
533
  requestBody = {
524
- id: id,
525
- type: type,
534
+ ids: [id],
526
535
  contact: {
527
536
  phone: {
528
- country_code: (_d = countryCode === null || countryCode === void 0 ? void 0 : countryCode.idd_prefix) === null || _d === void 0 ? void 0 : _d.toString(),
537
+ country_code: (_c = countryCode === null || countryCode === void 0 ? void 0 : countryCode.idd_prefix) === null || _c === void 0 ? void 0 : _c.toString(),
529
538
  number: mobile || ''
530
539
  }
531
540
  }
532
541
  };
533
- return [4, API.individualService.updateIndividual(requestBody)];
542
+ return [4, API.individualService.updateMultipleIndividual(requestBody)];
534
543
  case 1:
535
- data = _e.sent();
544
+ data = _d.sent();
536
545
  return [4, thunkApi.dispatch(verifyToken({ token: token, isUpdatePhoneInfo: true }))];
537
546
  case 2:
538
- _e.sent();
547
+ _d.sent();
539
548
  return [2, { data: data, formData: originalFormData }];
540
549
  }
541
550
  });
@@ -544,23 +553,30 @@ export var updatePhoneInfo = createAsyncThunk('individual/updatePhoneInfo', func
544
553
  export var updateIndividualPersonalInfo = createAsyncThunk('individual/updateIndividualPersonalInfo', function (_a, thunkApi) {
545
554
  var formData = _a.formData, originalFormData = _a.originalFormData;
546
555
  return __awaiter(void 0, void 0, void 0, function () {
547
- var _b, settings, individual, _c, notification, user, entity, _d, id, type, name, email, mobile, countryCode, gender, nid, issuedCountry, expiryDate, dob, placeOfBirthCountry, placeOfBirthCity, nationality, code, data_status, userName, identification_id_type, isNameNonEditable, isEmailNonEditable, isMobileNumberNonEditable, isMobileCountryNonEditable, isNidNonEditable, isIssuedCountryNonEditable, isExpiryNonEditable, isIdTypeNonEditable, isNationalityNonEditable, isDOBNonEditable, isBirthCityNonEditable, isBirthCountryNonEditable, hasContact, hasPhone, hasIdentification, hasBirth, contact, requestBody, data;
548
- var _e, _f, _g, _h, _j;
549
- return __generator(this, function (_k) {
550
- switch (_k.label) {
556
+ var _b, settings, individual, _c, notification, user, entity, id, _d, objects, ids, countryCode, name, email, mobile, gender, nid, issuedCountry, expiryDate, dob, placeOfBirthCountry, placeOfBirthCity, nationality, code, data_status, userName, identification_id_type, isGenderNonEditable, isNameENNonEditable, isNameARNonEditable, isEmailNonEditable, isMobileNumberNonEditable, isMobileCountryNonEditable, isNidNonEditable, isIssuedCountryNonEditable, isExpiryNonEditable, isIdTypeNonEditable, isNationalityNonEditable, isDOBNonEditable, isBirthCityNonEditable, isBirthCountryNonEditable, hasContact, hasPhone, hasIdentification, hasBirth, nameIsEditable, contact, requestBody, data, currencyData, _e, isUser, isBuyer, isUserORBuyerType;
557
+ var _f, _g, _h, _j, _k;
558
+ return __generator(this, function (_l) {
559
+ switch (_l.label) {
551
560
  case 0:
552
561
  _b = thunkApi.getState(), settings = _b.settings, individual = _b.individual;
553
562
  _c = individual.data.verify.responseBody || {}, notification = _c.notification, user = _c.user, entity = _c.entity;
554
- _d = ((user === null || user === void 0 ? void 0 : user.is_authorized) ? user : notification === null || notification === void 0 ? void 0 : notification.recipient) || {}, id = _d.id, type = _d.type;
555
- name = formData.name, email = formData.email, mobile = formData.mobile, countryCode = formData.countryCode, gender = formData.gender, nid = formData.nid, issuedCountry = formData.issuedCountry, expiryDate = formData.expiryDate, dob = formData.dob, placeOfBirthCountry = formData.placeOfBirthCountry, placeOfBirthCity = formData.placeOfBirthCity, nationality = formData.nationality;
563
+ id = (((user === null || user === void 0 ? void 0 : user.is_authorized) ? user : notification === null || notification === void 0 ? void 0 : notification.recipient) || {}).id;
564
+ _d = user || {}, objects = _d.objects, ids = _d.ids;
565
+ countryCode = (originalFormData || {}).countryCode;
566
+ name = formData.name, email = formData.email, mobile = formData.mobile, gender = formData.gender, nid = formData.nid, issuedCountry = formData.issuedCountry, expiryDate = formData.expiryDate, dob = formData.dob, placeOfBirthCountry = formData.placeOfBirthCountry, placeOfBirthCity = formData.placeOfBirthCity, nationality = formData.nationality;
556
567
  code = entity === null || entity === void 0 ? void 0 : entity.country;
557
568
  data_status = (user || {}).data_status;
558
569
  userName = getUserNameObject(name);
559
570
  identification_id_type = nid ? (nid.startsWith('1') ? IDENTIFICATION_TYPE.NID : IDENTIFICATION_TYPE.IQAMA) : undefined;
560
- isNameNonEditable = hasNoneEditableValue(data_status, 'name');
571
+ if (isOtherThanKWOrSA(settings.data.businessCountry.iso2)) {
572
+ identification_id_type = IDENTIFICATION_TYPE.NID;
573
+ }
574
+ isGenderNonEditable = hasNoneEditableValue(data_status, 'gender');
575
+ isNameENNonEditable = hasNoneEditableValue(data_status, 'name.en');
576
+ isNameARNonEditable = hasNoneEditableValue(data_status, 'name.ar');
561
577
  isEmailNonEditable = hasNoneEditableValue(data_status === null || data_status === void 0 ? void 0 : data_status.contact, 'email');
562
- isMobileNumberNonEditable = hasNoneEditableValue((_e = data_status === null || data_status === void 0 ? void 0 : data_status.contact) === null || _e === void 0 ? void 0 : _e.phone, 'number');
563
- isMobileCountryNonEditable = hasNoneEditableValue((_f = data_status === null || data_status === void 0 ? void 0 : data_status.contact) === null || _f === void 0 ? void 0 : _f.phone, 'country_code');
578
+ isMobileNumberNonEditable = hasNoneEditableValue((_f = data_status === null || data_status === void 0 ? void 0 : data_status.contact) === null || _f === void 0 ? void 0 : _f.phone, 'number');
579
+ isMobileCountryNonEditable = hasNoneEditableValue((_g = data_status === null || data_status === void 0 ? void 0 : data_status.contact) === null || _g === void 0 ? void 0 : _g.phone, 'country_code');
564
580
  isNidNonEditable = hasNoneEditableValue(data_status === null || data_status === void 0 ? void 0 : data_status.identification, 'id');
565
581
  isIssuedCountryNonEditable = hasNoneEditableValue(data_status === null || data_status === void 0 ? void 0 : data_status.identification, 'issuer_country');
566
582
  isExpiryNonEditable = hasNoneEditableValue(data_status === null || data_status === void 0 ? void 0 : data_status.identification, 'expiry');
@@ -569,21 +585,23 @@ export var updateIndividualPersonalInfo = createAsyncThunk('individual/updateInd
569
585
  isDOBNonEditable = hasNoneEditableValue(data_status, 'birth.date');
570
586
  isBirthCityNonEditable = hasNoneEditableValue(data_status, 'birth.city');
571
587
  isBirthCountryNonEditable = hasNoneEditableValue(data_status, 'birth.country');
572
- hasContact = email || mobile || countryCode;
588
+ hasContact = email || mobile;
573
589
  hasPhone = mobile && (countryCode === null || countryCode === void 0 ? void 0 : countryCode.idd_prefix);
574
- hasIdentification = nid || issuedCountry || identification_id_type || expiryDate;
590
+ hasIdentification = nid && (issuedCountry || identification_id_type || expiryDate);
575
591
  hasBirth = placeOfBirthCity || placeOfBirthCountry;
592
+ nameIsEditable = userName.first && !(isNameENNonEditable && isNameARNonEditable);
576
593
  contact = hasContact && !(isEmailNonEditable && isMobileCountryNonEditable && isMobileNumberNonEditable)
577
- ? __assign({ email: isEmailNonEditable ? undefined : email }, (!((isMobileCountryNonEditable && isMobileNumberNonEditable) || !hasPhone) && {
594
+ ? __assign({ email: isEmailNonEditable ? undefined : email }, (!(isMobileCountryNonEditable && isMobileNumberNonEditable) &&
595
+ hasPhone && {
578
596
  phone: {
579
- country_code: isMobileCountryNonEditable ? undefined : (_g = countryCode === null || countryCode === void 0 ? void 0 : countryCode.idd_prefix) === null || _g === void 0 ? void 0 : _g.toString(),
597
+ country_code: isMobileCountryNonEditable ? undefined : (_h = countryCode === null || countryCode === void 0 ? void 0 : countryCode.idd_prefix) === null || _h === void 0 ? void 0 : _h.toString(),
580
598
  number: isMobileNumberNonEditable || !mobile ? undefined : mobile
581
599
  }
582
600
  })) : undefined;
583
- requestBody = __assign(__assign(__assign(__assign(__assign(__assign(__assign({ id: id, type: type, gender: gender || undefined }, (!(isNameNonEditable || !userName.first) && {
601
+ requestBody = __assign(__assign(__assign(__assign(__assign(__assign(__assign({ ids: (ids === null || ids === void 0 ? void 0 : ids.length) ? ids : [id], gender: isGenderNonEditable || !gender ? undefined : gender }, (nameIsEditable && {
584
602
  names: {
585
- en: userName,
586
- ar: userName
603
+ en: isNameENNonEditable ? undefined : userName,
604
+ ar: isNameARNonEditable ? undefined : userName
587
605
  }
588
606
  })), { contact: contact }), (hasIdentification &&
589
607
  !(isNidNonEditable && isIssuedCountryNonEditable && isExpiryNonEditable && isIdTypeNonEditable) && {
@@ -616,18 +634,23 @@ export var updateIndividualPersonalInfo = createAsyncThunk('individual/updateInd
616
634
  'date_of_birth',
617
635
  'nationality'
618
636
  ], step_name: INDIVIDUAl_STEP_NAMES.INDIVIDUAl_PERSONAL_INFO });
619
- return [4, API.individualService.updateIndividual(requestBody)];
637
+ return [4, API.individualService.updateMultipleIndividual(requestBody)];
620
638
  case 1:
621
- data = _k.sent();
622
- if (!(type === IndividualType.USER || type === IndividualType.BUYER)) return [3, 3];
623
- return [4, thunkApi.dispatch(retrieveDataList(code))];
639
+ data = _l.sent();
640
+ return [4, API.countryService.getCurrency(settings.data.businessCountry.iso2)];
624
641
  case 2:
625
- _k.sent();
626
- _k.label = 3;
642
+ currencyData = _l.sent();
643
+ _e = getIndividualType(objects), isUser = _e.isUser, isBuyer = _e.isBuyer;
644
+ isUserORBuyerType = isUser || isBuyer;
645
+ if (!isUserORBuyerType) return [3, 4];
646
+ return [4, thunkApi.dispatch(retrieveDataList(code))];
627
647
  case 3:
648
+ _l.sent();
649
+ _l.label = 4;
650
+ case 4:
628
651
  sleep(100).then(function () { return thunkApi.dispatch(handleNextScreenStep()); });
629
- (_j = (_h = settings.data.appConfig).onStepCompleted) === null || _j === void 0 ? void 0 : _j.call(_h, settings.data.activeScreen.name, requestBody);
630
- return [2, { data: data, formData: originalFormData }];
652
+ (_k = (_j = settings.data.appConfig).onStepCompleted) === null || _k === void 0 ? void 0 : _k.call(_j, settings.data.activeScreen.name, requestBody);
653
+ return [2, { data: data, formData: originalFormData, currencyData: currencyData }];
631
654
  }
632
655
  });
633
656
  });
@@ -635,14 +658,15 @@ export var updateIndividualPersonalInfo = createAsyncThunk('individual/updateInd
635
658
  export var updateIndividualInfo = createAsyncThunk('updateIndividualInfo', function (_a, thunkApi) {
636
659
  var formData = _a.formData, originalFormData = _a.originalFormData;
637
660
  return __awaiter(void 0, void 0, void 0, function () {
638
- var _b, settings, individual, _c, notification, user, _d, id, type, occupation, sourceIncome, monthlyIncome, isPEP, isInfluencer, shareCount, shareValue, civilID, signatureFileId, isOccupationNonEditable, isSourceIncomeNonEditable, isPEPNonEditable, isInfluencerNonEditable, isMonthlyIncomeNonEditable, isSharesAvailable, pepInfo, influencerInfo, occupationInfo, sourceIncomeInfo, monthlyIncomeInfo, userPayload, shareHolderPayload, boardMemberPayload, buyerMemberPayload, payload, requestBody, data, businessCountry, hasCivilIdDocument, hasSignatureDocument, isSendSignatureFile, civilIdDocument, signatureDocument, documentBody, documentBody, documentsList, documentBody;
639
- var _e, _f;
640
- return __generator(this, function (_g) {
641
- switch (_g.label) {
661
+ var _b, settings, individual, _c, notification, user, id, _d, objects, ids, occupation, sourceIncome, monthlyIncome, isPEP, isInfluencer, shareCount, shareValue, civilID, signatureFileId, isOccupationNonEditable, isSourceIncomeNonEditable, isPEPNonEditable, isInfluencerNonEditable, isMonthlyIncomeNonEditable, isSharesAvailable, pepInfo, influencerInfo, occupationInfo, sourceIncomeInfo, monthlyIncomeInfo, userPayload, shareHolderPayload, boardMemberPayload, buyerMemberPayload, _e, isUser, isShareholder, isBoardMember, isBuyer, isCustomer, isUserORBuyerType, payload, requestBody, data, businessCountry, hasCivilIdDocument, hasSignatureDocument, isSendSignatureFile, civilIdDocument, signatureDocument, documentBody, documentBody, documentsList, documentBody, individualData;
662
+ var _f, _g;
663
+ return __generator(this, function (_h) {
664
+ switch (_h.label) {
642
665
  case 0:
643
666
  _b = thunkApi.getState(), settings = _b.settings, individual = _b.individual;
644
667
  _c = individual.data.verify.responseBody || {}, notification = _c.notification, user = _c.user;
645
- _d = ((user === null || user === void 0 ? void 0 : user.is_authorized) ? user : notification === null || notification === void 0 ? void 0 : notification.recipient) || {}, id = _d.id, type = _d.type;
668
+ id = (((user === null || user === void 0 ? void 0 : user.is_authorized) ? user : notification === null || notification === void 0 ? void 0 : notification.recipient) || {}).id;
669
+ _d = user || {}, objects = _d.objects, ids = _d.ids;
646
670
  occupation = formData.occupation, sourceIncome = formData.sourceIncome, monthlyIncome = formData.monthlyIncome, isPEP = formData.isPEP, isInfluencer = formData.isInfluencer, shareCount = formData.shareCount, shareValue = formData.shareValue, civilID = formData.civilID, signatureFileId = formData.signatureFileId;
647
671
  isOccupationNonEditable = hasNoneEditableValue(user === null || user === void 0 ? void 0 : user.data_status, 'occupation');
648
672
  isSourceIncomeNonEditable = hasNoneEditableValue(user === null || user === void 0 ? void 0 : user.data_status, 'source_of_income');
@@ -652,7 +676,7 @@ export var updateIndividualInfo = createAsyncThunk('updateIndividualInfo', funct
652
676
  isSharesAvailable = shareCount || shareValue;
653
677
  pepInfo = isPEPNonEditable ? undefined : isPEP;
654
678
  influencerInfo = isInfluencerNonEditable ? undefined : isInfluencer;
655
- occupationInfo = isOccupationNonEditable || !(occupation === null || occupation === void 0 ? void 0 : occupation.id) ? undefined : { id: occupation.id };
679
+ occupationInfo = isOccupationNonEditable || !(occupation === null || occupation === void 0 ? void 0 : occupation.id) ? undefined : { chapter: { id: occupation.id } };
656
680
  sourceIncomeInfo = isSourceIncomeNonEditable || !(sourceIncome === null || sourceIncome === void 0 ? void 0 : sourceIncome.id) ? undefined : [{ id: sourceIncome.id }];
657
681
  monthlyIncomeInfo = isMonthlyIncomeNonEditable || !(monthlyIncome === null || monthlyIncome === void 0 ? void 0 : monthlyIncome.id) ? undefined : { id: monthlyIncome.id };
658
682
  userPayload = {
@@ -666,7 +690,7 @@ export var updateIndividualInfo = createAsyncThunk('updateIndividualInfo', funct
666
690
  shares: isSharesAvailable
667
691
  ? {
668
692
  count: shareCount && Number(shareCount),
669
- value: shareValue && Number(shareValue)
693
+ value: shareValue && Number(removeAllCharsFromNumber(shareValue))
670
694
  }
671
695
  : undefined
672
696
  };
@@ -679,23 +703,20 @@ export var updateIndividualInfo = createAsyncThunk('updateIndividualInfo', funct
679
703
  source_income: sourceIncomeInfo,
680
704
  monthly_income: monthlyIncomeInfo
681
705
  };
706
+ _e = getIndividualType(objects), isUser = _e.isUser, isShareholder = _e.isShareholder, isBoardMember = _e.isBoardMember, isBuyer = _e.isBuyer, isCustomer = _e.isCustomer;
707
+ isUserORBuyerType = isUser || isBuyer;
682
708
  payload = userPayload;
683
- if (type === IndividualType.SHARE_HOLDER)
684
- payload = shareHolderPayload;
685
- if (type === IndividualType.BOARD_MEMBER)
686
- payload = boardMemberPayload;
687
- if (type === IndividualType.BUYER)
688
- payload = buyerMemberPayload;
689
- if (type === IndividualType.CUSTOMER)
690
- payload = {};
691
- requestBody = __assign(__assign({ id: id, type: type }, payload), { encryption_contract: [], step_name: INDIVIDUAl_STEP_NAMES.INDIVIDUAl_INFO });
692
- return [4, API.individualService.updateIndividual(requestBody)];
709
+ if (objects === null || objects === void 0 ? void 0 : objects.length) {
710
+ payload = __assign(__assign(__assign(__assign(__assign({}, (isUser && payload)), (isShareholder && shareHolderPayload)), (isBoardMember && boardMemberPayload)), (isBuyer && buyerMemberPayload)), (isCustomer && {}));
711
+ }
712
+ requestBody = __assign(__assign({ ids: (ids === null || ids === void 0 ? void 0 : ids.length) ? ids : [id] }, payload), { encryption_contract: [], step_name: INDIVIDUAl_STEP_NAMES.INDIVIDUAl_INFO });
713
+ return [4, API.individualService.updateMultipleIndividual(requestBody)];
693
714
  case 1:
694
- data = _g.sent();
715
+ data = _h.sent();
695
716
  businessCountry = settings.data.businessCountry;
696
717
  hasCivilIdDocument = (civilID || []).length > 0;
697
718
  hasSignatureDocument = (signatureFileId || []).length > 0;
698
- isSendSignatureFile = (user === null || user === void 0 ? void 0 : user.is_authorized) && (type === IndividualType.USER || type === IndividualType.BUYER);
719
+ isSendSignatureFile = (user === null || user === void 0 ? void 0 : user.is_authorized) && isUserORBuyerType;
699
720
  civilIdDocument = getRecentDocumentBasedOnPurpose(user === null || user === void 0 ? void 0 : user.documents, DocumentPurpose.IDENTITY_DOCUMENT);
700
721
  signatureDocument = getRecentDocumentBasedOnPurpose(user === null || user === void 0 ? void 0 : user.documents, DocumentPurpose.CUSTOMER_SIGNATURE);
701
722
  if (!((civilIdDocument === null || civilIdDocument === void 0 ? void 0 : civilIdDocument.id) && hasCivilIdDocument)) return [3, 3];
@@ -705,8 +726,8 @@ export var updateIndividualInfo = createAsyncThunk('updateIndividualInfo', funct
705
726
  };
706
727
  return [4, API.documentService.addFilesToExistingDocument(documentBody)];
707
728
  case 2:
708
- _g.sent();
709
- _g.label = 3;
729
+ _h.sent();
730
+ _h.label = 3;
710
731
  case 3:
711
732
  if (!((signatureDocument === null || signatureDocument === void 0 ? void 0 : signatureDocument.id) && hasSignatureDocument && isSendSignatureFile)) return [3, 5];
712
733
  documentBody = {
@@ -715,8 +736,8 @@ export var updateIndividualInfo = createAsyncThunk('updateIndividualInfo', funct
715
736
  };
716
737
  return [4, API.documentService.addFilesToExistingDocument(documentBody)];
717
738
  case 4:
718
- _g.sent();
719
- _g.label = 5;
739
+ _h.sent();
740
+ _h.label = 5;
720
741
  case 5:
721
742
  documentsList = [];
722
743
  if (hasCivilIdDocument && !(civilIdDocument === null || civilIdDocument === void 0 ? void 0 : civilIdDocument.id))
@@ -725,18 +746,19 @@ export var updateIndividualInfo = createAsyncThunk('updateIndividualInfo', funct
725
746
  documentsList.push({ type: DocumentPurpose.CUSTOMER_SIGNATURE, images: signatureFileId });
726
747
  if (!(documentsList.length > 0)) return [3, 7];
727
748
  documentBody = {
728
- individual_type_id: id || '',
749
+ individual_type_id: ((ids === null || ids === void 0 ? void 0 : ids.length) ? ids.find(function (i) { return i.includes('usr_'); }) : id) || '',
729
750
  country: businessCountry.iso2,
730
751
  documents: documentsList
731
752
  };
732
753
  return [4, API.documentService.updateDocumentInfo(documentBody)];
733
754
  case 6:
734
- _g.sent();
735
- _g.label = 7;
755
+ _h.sent();
756
+ _h.label = 7;
736
757
  case 7:
758
+ individualData = (sortUserList(mapUserList(data === null || data === void 0 ? void 0 : data.individuals)) || [])[0];
737
759
  thunkApi.dispatch(handleNextScreenStep());
738
- (_f = (_e = settings.data.appConfig).onStepCompleted) === null || _f === void 0 ? void 0 : _f.call(_e, settings.data.activeScreen.name, requestBody);
739
- return [2, { data: data, formData: originalFormData }];
760
+ (_g = (_f = settings.data.appConfig).onStepCompleted) === null || _g === void 0 ? void 0 : _g.call(_f, settings.data.activeScreen.name, requestBody);
761
+ return [2, { data: data, formData: originalFormData, individualData: individualData }];
740
762
  }
741
763
  });
742
764
  });
@@ -764,13 +786,13 @@ export var checkEmailAvailability = createAsyncThunk('checkEmailAvailability', f
764
786
  });
765
787
  });
766
788
  export var updateBoardSuccess = createAsyncThunk('individualUpdateBoardSuccess', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
767
- var _a, settings, individual, _b, id, infoId, payload, data, boardInfoStatus;
768
- var _c, _d, _e, _f;
769
- return __generator(this, function (_g) {
770
- switch (_g.label) {
789
+ var _a, settings, individual, _b, id, infoId, primaryUser, payload, data, boardInfoStatus, individualDataRes, _c, is_authorized, userId, type;
790
+ var _d, _e, _f, _g;
791
+ return __generator(this, function (_h) {
792
+ switch (_h.label) {
771
793
  case 0:
772
794
  _a = thunkApi.getState(), settings = _a.settings, individual = _a.individual;
773
- _b = individual.data.verify.responseBody || {}, id = _b.board_id, infoId = _b.board_info_id;
795
+ _b = individual.data.verify.responseBody || {}, id = _b.board_id, infoId = _b.board_info_id, primaryUser = _b.primaryUser;
774
796
  if (!id)
775
797
  return [2];
776
798
  payload = {
@@ -780,17 +802,41 @@ export var updateBoardSuccess = createAsyncThunk('individualUpdateBoardSuccess',
780
802
  };
781
803
  return [4, API.boardService.updateBoardInfo(__assign({ id: id, infoId: infoId }, payload))];
782
804
  case 1:
783
- data = _g.sent();
805
+ data = _h.sent();
784
806
  return [4, API.boardService.retrieveBoardInfoStatus(id)];
785
807
  case 2:
786
- boardInfoStatus = _g.sent();
808
+ boardInfoStatus = _h.sent();
787
809
  return [4, thunkApi.dispatch(retrieveBoardDetails(id))];
788
810
  case 3:
789
- _g.sent();
790
- (_d = (_c = settings.data.appConfig).onStepCompleted) === null || _d === void 0 ? void 0 : _d.call(_c, settings.data.activeScreen.name, {});
791
- (_f = (_e = settings.data.appConfig).onFlowCompleted) === null || _f === void 0 ? void 0 : _f.call(_e, { data: data });
811
+ _h.sent();
812
+ individualDataRes = undefined;
813
+ _c = primaryUser || {}, is_authorized = _c.is_authorized, userId = _c.id, type = _c.object;
814
+ if (!!is_authorized) return [3, 5];
815
+ return [4, thunkApi
816
+ .dispatch(retrieveIndividualInfo({ id: userId, type: type, countryCode: settings.data.businessCountry.iso2 }))
817
+ .unwrap()];
818
+ case 4:
819
+ individualDataRes = _h.sent();
820
+ _h.label = 5;
821
+ case 5:
822
+ (_e = (_d = settings.data.appConfig).onStepCompleted) === null || _e === void 0 ? void 0 : _e.call(_d, settings.data.activeScreen.name, {});
823
+ (_g = (_f = settings.data.appConfig).onFlowCompleted) === null || _g === void 0 ? void 0 : _g.call(_f, { data: data });
792
824
  thunkApi.dispatch(handleNextScreenStep());
793
- return [2, { response: __assign(__assign({}, data), { flows: (boardInfoStatus === null || boardInfoStatus === void 0 ? void 0 : boardInfoStatus.info) || [] }), formData: params }];
825
+ return [2, { response: __assign(__assign({}, data), { flows: (boardInfoStatus === null || boardInfoStatus === void 0 ? void 0 : boardInfoStatus.info) || [] }), formData: params, individualData: individualDataRes === null || individualDataRes === void 0 ? void 0 : individualDataRes.data }];
826
+ }
827
+ });
828
+ }); });
829
+ export var onCloseCompleteIndividual = createAsyncThunk('individual/onCloseCompleteIndividual', function (_, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
830
+ var individual, _a, merchant, brand, entity;
831
+ return __generator(this, function (_b) {
832
+ switch (_b.label) {
833
+ case 0:
834
+ individual = thunkApi.getState().individual;
835
+ _a = individual.data.verify.responseBody || {}, merchant = _a.merchant, brand = _a.brand, entity = _a.entity;
836
+ return [4, thunkApi.dispatch(onCloseComplete({ merchantId: merchant === null || merchant === void 0 ? void 0 : merchant.id, brandId: brand === null || brand === void 0 ? void 0 : brand.id, entityId: entity === null || entity === void 0 ? void 0 : entity.id }))];
837
+ case 1:
838
+ _b.sent();
839
+ return [2];
794
840
  }
795
841
  });
796
842
  }); });
@@ -800,6 +846,7 @@ var initialState = {
800
846
  cityLoading: false,
801
847
  data: {
802
848
  flowName: FlowsTypes.INDIVIDUAL,
849
+ currency: '',
803
850
  verify: {
804
851
  token: ''
805
852
  },
@@ -834,7 +881,6 @@ var initialState = {
834
881
  sourceIncome: undefined,
835
882
  monthlyIncome: undefined,
836
883
  employerName: '',
837
- employerLocation: undefined,
838
884
  isPEP: null,
839
885
  isInfluencer: null,
840
886
  shareCount: '',
@@ -936,10 +982,72 @@ export var individualSlice = createSlice({
936
982
  state.error = null;
937
983
  })
938
984
  .addCase(addDetailsAsync.fulfilled, function (state, action) {
985
+ var _a, _b, _c, _d;
939
986
  state.loading = false;
940
987
  state.error = null;
941
- var userList = action.payload.userList;
988
+ var _e = action.payload, userList = _e.userList, individualId = _e.individualId, countries = _e.countries;
989
+ var primaryUser = (state.data.verify.responseBody || {}).user;
990
+ var user = (userList || []).find(function (user) { return user.individual_id === individualId; });
942
991
  state.data.verify.responseBody = __assign(__assign({}, state.data.verify.responseBody), { userList: userList });
992
+ state.data.verify.responseBody = __assign(__assign({}, state.data.verify.responseBody), { userList: userList, user: __assign(__assign({}, user), { is_authorized: (user === null || user === void 0 ? void 0 : user.is_authorized) !== undefined ? user === null || user === void 0 ? void 0 : user.is_authorized : primaryUser === null || primaryUser === void 0 ? void 0 : primaryUser.is_authorized }) });
993
+ var _f = user || {}, source_income = _f.source_income, monthly_income = _f.monthly_income, occupation = _f.occupation, is_relative_PEP = _f.is_relative_PEP, is_influencer = _f.is_influencer, birth = _f.birth, contact = _f.contact, identification = _f.identification, nationality = _f.nationality, gender = _f.gender, shares = _f.shares;
994
+ var _g = state.data.individualData.responseBody || {}, sourceIncomeList = _g.sourceIncomeList, monthlyIncomeList = _g.monthlyIncomeList;
995
+ var cityList = (state.data.verify.responseBody || {}).cityList;
996
+ if (user)
997
+ state.data.individualPersonalData.name = getUserName(user, false);
998
+ if (contact === null || contact === void 0 ? void 0 : contact.email)
999
+ state.data.individualPersonalData.email = contact === null || contact === void 0 ? void 0 : contact.email;
1000
+ if ((_a = contact === null || contact === void 0 ? void 0 : contact.phone) === null || _a === void 0 ? void 0 : _a.number)
1001
+ state.data.individualPersonalData.mobile = (_b = contact === null || contact === void 0 ? void 0 : contact.phone) === null || _b === void 0 ? void 0 : _b.number;
1002
+ if ((_c = contact === null || contact === void 0 ? void 0 : contact.phone) === null || _c === void 0 ? void 0 : _c.country_code) {
1003
+ state.data.individualPersonalData.countryCode = findCountryByIddPrefix(countries, (_d = contact === null || contact === void 0 ? void 0 : contact.phone) === null || _d === void 0 ? void 0 : _d.country_code) || defaultCountry;
1004
+ }
1005
+ if (gender)
1006
+ state.data.individualPersonalData.gender = gender.toLowerCase();
1007
+ if (identification === null || identification === void 0 ? void 0 : identification.id)
1008
+ state.data.individualPersonalData.nid = identification === null || identification === void 0 ? void 0 : identification.id;
1009
+ if (identification === null || identification === void 0 ? void 0 : identification.issued_country_code) {
1010
+ state.data.individualPersonalData.issuedCountry = findCountryByIso2(countries, identification === null || identification === void 0 ? void 0 : identification.issued_country_code);
1011
+ }
1012
+ var expiryDate = new Date((identification === null || identification === void 0 ? void 0 : identification.expiry) || new Date().getTime());
1013
+ state.data.individualPersonalData.expiryDate = convertNumbers2English(dateFormat(expiryDate));
1014
+ if (birth === null || birth === void 0 ? void 0 : birth.date)
1015
+ state.data.individualPersonalData.dob = convertNumbers2English(dateFormat(new Date(birth === null || birth === void 0 ? void 0 : birth.date)));
1016
+ if (birth === null || birth === void 0 ? void 0 : birth.country) {
1017
+ state.data.individualPersonalData.placeOfBirthCountry = findCountryByIso2(countries, birth === null || birth === void 0 ? void 0 : birth.country);
1018
+ }
1019
+ if (birth === null || birth === void 0 ? void 0 : birth.city) {
1020
+ var selectedCity = cityList === null || cityList === void 0 ? void 0 : cityList.find(function (city) {
1021
+ var _a;
1022
+ return city.id === ((_a = birth === null || birth === void 0 ? void 0 : birth.city) === null || _a === void 0 ? void 0 : _a.cityId);
1023
+ });
1024
+ state.data.individualPersonalData.placeOfBirthCity = selectedCity;
1025
+ }
1026
+ if (nationality) {
1027
+ state.data.individualPersonalData.nationality = findCountryByIso2(countries, nationality);
1028
+ }
1029
+ var _h = shares || {}, count = _h.count, value = _h.value;
1030
+ var shareCount = count === null || count === void 0 ? void 0 : count.toString();
1031
+ var shareValue = value === null || value === void 0 ? void 0 : value.toString();
1032
+ if (shareCount) {
1033
+ state.data.individualData.shareCount = shareCount;
1034
+ }
1035
+ if (shareValue) {
1036
+ state.data.individualData.shareValue = formatNumberAsCurrency(shareValue);
1037
+ }
1038
+ var selectedSourceIncome = (sourceIncomeList === null || sourceIncomeList === void 0 ? void 0 : sourceIncomeList.find(function (source) { var _a; return (source === null || source === void 0 ? void 0 : source.id) === ((_a = source_income === null || source_income === void 0 ? void 0 : source_income[0]) === null || _a === void 0 ? void 0 : _a.id); })) || (sourceIncomeList === null || sourceIncomeList === void 0 ? void 0 : sourceIncomeList[0]);
1039
+ if (!!selectedSourceIncome)
1040
+ state.data.individualData.sourceIncome = selectedSourceIncome;
1041
+ var selectedMonthlyIncome = monthlyIncomeList === null || monthlyIncomeList === void 0 ? void 0 : monthlyIncomeList.find(function (income) {
1042
+ return income.id === (monthly_income === null || monthly_income === void 0 ? void 0 : monthly_income.id);
1043
+ });
1044
+ var selectedOccupation = (occupation === null || occupation === void 0 ? void 0 : occupation.chapter) || (occupation === null || occupation === void 0 ? void 0 : occupation.section);
1045
+ state.data.individualData.monthlyIncome = selectedMonthlyIncome;
1046
+ state.data.individualData.occupation = selectedOccupation;
1047
+ if (is_relative_PEP !== undefined)
1048
+ state.data.individualData.isPEP = is_relative_PEP;
1049
+ if (is_influencer !== undefined)
1050
+ state.data.individualData.isInfluencer = is_influencer;
943
1051
  })
944
1052
  .addCase(addDetailsAsync.rejected, function (state, action) {
945
1053
  state.loading = false;
@@ -952,12 +1060,12 @@ export var individualSlice = createSlice({
952
1060
  .addCase(requestDetailsByEmail.fulfilled, function (state, action) {
953
1061
  state.loading = false;
954
1062
  state.error = null;
955
- var _a = action.payload, data = _a.data, userData = _a.userData;
1063
+ var _a = action.payload, data = _a.data, individualData = _a.individualData;
956
1064
  var userList = (state.data.verify.responseBody || {}).userList;
957
1065
  var list = userList || [];
958
1066
  list = list.map(function (user) {
959
1067
  var _a, _b;
960
- var userInfo = user.id === (userData === null || userData === void 0 ? void 0 : userData.id) ? userData : user;
1068
+ var userInfo = user.id === (individualData === null || individualData === void 0 ? void 0 : individualData.id) ? individualData : user;
961
1069
  return user.id === ((_b = (_a = data === null || data === void 0 ? void 0 : data.notification) === null || _a === void 0 ? void 0 : _a.recipient) === null || _b === void 0 ? void 0 : _b.id) ? __assign(__assign({}, userInfo), { isRequestedEmail: true }) : userInfo;
962
1070
  });
963
1071
  state.data.verify.responseBody = __assign(__assign({}, state.data.verify.responseBody), { requestEmailData: data, userList: list });
@@ -972,11 +1080,11 @@ export var individualSlice = createSlice({
972
1080
  .addCase(retrieveIndividualInfo.fulfilled, function (state, action) {
973
1081
  var _a, _b, _c, _d;
974
1082
  state.error = null;
975
- var _e = action.payload, data = _e.data, countries = _e.countries, countryCode = _e.countryCode;
1083
+ var _e = action.payload, data = _e.data, countries = _e.countries;
976
1084
  var user = (state.data.verify.responseBody || {}).user;
977
- state.data.verify.responseBody = __assign(__assign({}, state.data.verify.responseBody), { user: __assign(__assign({}, data), { is_authorized: data.is_authorized !== undefined ? data.is_authorized : user === null || user === void 0 ? void 0 : user.is_authorized }) });
978
- var _f = data || {}, source_income = _f.source_income, monthly_income = _f.monthly_income, occupation = _f.occupation, is_relative_PEP = _f.is_relative_PEP, is_influencer = _f.is_influencer, birth = _f.birth, contact = _f.contact, identification = _f.identification, nationality = _f.nationality, gender = _f.gender, employer_country = _f.employer_country, shares = _f.shares;
979
- var _g = state.data.individualData.responseBody || {}, sourceIncomeList = _g.sourceIncomeList, monthlyIncomeList = _g.monthlyIncomeList, occupationList = _g.occupationList;
1085
+ state.data.verify.responseBody = __assign(__assign({}, state.data.verify.responseBody), { primaryUser: data, user: __assign(__assign({}, data), { is_authorized: data.is_authorized !== undefined ? data.is_authorized : user === null || user === void 0 ? void 0 : user.is_authorized }) });
1086
+ var _f = data || {}, source_income = _f.source_income, monthly_income = _f.monthly_income, occupation = _f.occupation, is_relative_PEP = _f.is_relative_PEP, is_influencer = _f.is_influencer, birth = _f.birth, contact = _f.contact, identification = _f.identification, nationality = _f.nationality, gender = _f.gender, shares = _f.shares;
1087
+ var _g = state.data.individualData.responseBody || {}, sourceIncomeList = _g.sourceIncomeList, monthlyIncomeList = _g.monthlyIncomeList;
980
1088
  var cityList = (state.data.verify.responseBody || {}).cityList;
981
1089
  if (data)
982
1090
  state.data.individualPersonalData.name = getUserName(data, false);
@@ -991,7 +1099,6 @@ export var individualSlice = createSlice({
991
1099
  state.data.individualPersonalData.gender = gender.toLowerCase();
992
1100
  if (identification === null || identification === void 0 ? void 0 : identification.id)
993
1101
  state.data.individualPersonalData.nid = identification === null || identification === void 0 ? void 0 : identification.id;
994
- state.data.individualPersonalData.issuedCountry = identification === null || identification === void 0 ? void 0 : identification.issued_country_code;
995
1102
  if (identification === null || identification === void 0 ? void 0 : identification.issued_country_code) {
996
1103
  state.data.individualPersonalData.issuedCountry = findCountryByIso2(countries, identification === null || identification === void 0 ? void 0 : identification.issued_country_code);
997
1104
  }
@@ -1024,17 +1131,10 @@ export var individualSlice = createSlice({
1024
1131
  var selectedSourceIncome = (sourceIncomeList === null || sourceIncomeList === void 0 ? void 0 : sourceIncomeList.find(function (source) { var _a; return (source === null || source === void 0 ? void 0 : source.id) === ((_a = source_income === null || source_income === void 0 ? void 0 : source_income[0]) === null || _a === void 0 ? void 0 : _a.id); })) || (sourceIncomeList === null || sourceIncomeList === void 0 ? void 0 : sourceIncomeList[0]);
1025
1132
  if (!!selectedSourceIncome)
1026
1133
  state.data.individualData.sourceIncome = selectedSourceIncome;
1027
- var code = employer_country || countryCode;
1028
- if (!!code) {
1029
- var employerLocation = (countries || []).find(function (country) { return country.iso2 === code; });
1030
- state.data.individualData.employerLocation = employerLocation;
1031
- }
1032
1134
  var selectedMonthlyIncome = monthlyIncomeList === null || monthlyIncomeList === void 0 ? void 0 : monthlyIncomeList.find(function (income) {
1033
1135
  return income.id === (monthly_income === null || monthly_income === void 0 ? void 0 : monthly_income.id);
1034
1136
  });
1035
- var selectedOccupation = occupationList === null || occupationList === void 0 ? void 0 : occupationList.find(function (occup) {
1036
- return occup.id === (occupation === null || occupation === void 0 ? void 0 : occupation.id);
1037
- });
1137
+ var selectedOccupation = (occupation === null || occupation === void 0 ? void 0 : occupation.chapter) || (occupation === null || occupation === void 0 ? void 0 : occupation.section);
1038
1138
  state.data.individualData.monthlyIncome = selectedMonthlyIncome;
1039
1139
  state.data.individualData.occupation = selectedOccupation;
1040
1140
  state.data.individualData.isPEP = is_relative_PEP;
@@ -1061,25 +1161,23 @@ export var individualSlice = createSlice({
1061
1161
  state.error = null;
1062
1162
  })
1063
1163
  .addCase(retrieveDataList.fulfilled, function (state, action) {
1064
- var _a;
1164
+ var _a, _b;
1065
1165
  state.loading = false;
1066
1166
  state.error = null;
1067
- var _b = action.payload, sourceIncome = _b.sourceIncome, monthlyIncome = _b.monthlyIncome, occupationData = _b.occupation;
1167
+ var _c = action.payload, sourceIncome = _c.sourceIncome, monthlyIncome = _c.monthlyIncome, occupationData = _c.occupation;
1068
1168
  var data = state.data.individualData.responseBody;
1069
1169
  var sourceIncomeList = (sourceIncome === null || sourceIncome === void 0 ? void 0 : sourceIncome.list) || [];
1070
- var monthlyIncomeList = (monthlyIncome === null || monthlyIncome === void 0 ? void 0 : monthlyIncome.list) || [];
1170
+ var monthlyIncomeList = ((_a = monthlyIncome === null || monthlyIncome === void 0 ? void 0 : monthlyIncome.list) === null || _a === void 0 ? void 0 : _a.length) ? monthlyIncome === null || monthlyIncome === void 0 ? void 0 : monthlyIncome.list : MONTHLY_INCOME_LIST;
1071
1171
  var occupationList = (occupationData === null || occupationData === void 0 ? void 0 : occupationData.list) || [];
1072
1172
  state.data.individualData.responseBody = __assign(__assign({}, data), { sourceIncomeList: sourceIncomeList, monthlyIncomeList: monthlyIncomeList, occupationList: occupationList });
1073
- var _c = ((_a = state.data.verify.responseBody) === null || _a === void 0 ? void 0 : _a.user) || {}, source_income = _c.source_income, monthly_income = _c.monthly_income, occupation = _c.occupation;
1173
+ var _d = ((_b = state.data.verify.responseBody) === null || _b === void 0 ? void 0 : _b.user) || {}, source_income = _d.source_income, monthly_income = _d.monthly_income, occupation = _d.occupation;
1074
1174
  var selectedSourceIncome = (sourceIncomeList === null || sourceIncomeList === void 0 ? void 0 : sourceIncomeList.find(function (source) { var _a; return (source === null || source === void 0 ? void 0 : source.id) === ((_a = source_income === null || source_income === void 0 ? void 0 : source_income[0]) === null || _a === void 0 ? void 0 : _a.id); })) || (sourceIncomeList === null || sourceIncomeList === void 0 ? void 0 : sourceIncomeList[0]);
1075
1175
  if (!!selectedSourceIncome)
1076
1176
  state.data.individualData.sourceIncome = selectedSourceIncome;
1077
1177
  var selectedMonthlyIncome = monthlyIncomeList === null || monthlyIncomeList === void 0 ? void 0 : monthlyIncomeList.find(function (income) {
1078
1178
  return income.id === (monthly_income === null || monthly_income === void 0 ? void 0 : monthly_income.id);
1079
1179
  });
1080
- var selectedOccupation = occupationList === null || occupationList === void 0 ? void 0 : occupationList.find(function (occup) {
1081
- return occup.id === (occupation === null || occupation === void 0 ? void 0 : occupation.id);
1082
- });
1180
+ var selectedOccupation = (occupation === null || occupation === void 0 ? void 0 : occupation.chapter) || (occupation === null || occupation === void 0 ? void 0 : occupation.section);
1083
1181
  state.data.individualData.monthlyIncome = selectedMonthlyIncome;
1084
1182
  state.data.individualData.occupation = selectedOccupation;
1085
1183
  })
@@ -1099,10 +1197,10 @@ export var individualSlice = createSlice({
1099
1197
  var cityList = action.payload;
1100
1198
  state.data.verify.responseBody = __assign(__assign({}, data), { cityList: cityList });
1101
1199
  var birth = (((_a = state.data.verify.responseBody) === null || _a === void 0 ? void 0 : _a.user) || {}).birth;
1102
- var city = (birth || {}).city;
1103
- if (city) {
1104
- var selectedCity = cityList === null || cityList === void 0 ? void 0 : cityList.find(function (c) {
1105
- return c.name.en === city;
1200
+ if (birth === null || birth === void 0 ? void 0 : birth.city) {
1201
+ var selectedCity = cityList === null || cityList === void 0 ? void 0 : cityList.find(function (city) {
1202
+ var _a;
1203
+ return city.id === ((_a = birth === null || birth === void 0 ? void 0 : birth.city) === null || _a === void 0 ? void 0 : _a.cityId);
1106
1204
  });
1107
1205
  state.data.individualPersonalData.placeOfBirthCity = selectedCity;
1108
1206
  }
@@ -1131,11 +1229,14 @@ export var individualSlice = createSlice({
1131
1229
  state.error = null;
1132
1230
  })
1133
1231
  .addCase(updateIndividualPersonalInfo.fulfilled, function (state, action) {
1232
+ var _a;
1134
1233
  state.loading = false;
1135
1234
  state.error = null;
1136
- var _a = action.payload, data = _a.data, formData = _a.formData;
1235
+ var _b = action.payload, data = _b.data, formData = _b.formData, currencyData = _b.currencyData;
1137
1236
  state.data.individualPersonalData = formData;
1138
1237
  state.data.individualPersonalData.responseBody = data;
1238
+ if ((_a = currencyData === null || currencyData === void 0 ? void 0 : currencyData.code) === null || _a === void 0 ? void 0 : _a.english)
1239
+ state.data.currency = currencyData.code.english;
1139
1240
  })
1140
1241
  .addCase(updateIndividualPersonalInfo.rejected, function (state, action) {
1141
1242
  state.loading = false;
@@ -1148,9 +1249,16 @@ export var individualSlice = createSlice({
1148
1249
  .addCase(updateIndividualInfo.fulfilled, function (state, action) {
1149
1250
  state.loading = false;
1150
1251
  state.error = null;
1151
- var _a = action.payload, data = _a.data, formData = _a.formData;
1252
+ var _a = action.payload, data = _a.data, formData = _a.formData, individualData = _a.individualData;
1152
1253
  state.data.individualData = formData;
1153
1254
  state.data.individualData.responseBody = data;
1255
+ var userList = (state.data.verify.responseBody || {}).userList;
1256
+ var list = userList || [];
1257
+ list = list.map(function (user) {
1258
+ var userInfo = user.id === (individualData === null || individualData === void 0 ? void 0 : individualData.id) ? individualData : user;
1259
+ return userInfo;
1260
+ });
1261
+ state.data.verify.responseBody = __assign(__assign({}, state.data.verify.responseBody), { userList: list });
1154
1262
  })
1155
1263
  .addCase(updateIndividualInfo.rejected, function (state, action) {
1156
1264
  state.loading = false;
@@ -1202,14 +1310,18 @@ export var individualSlice = createSlice({
1202
1310
  var _a;
1203
1311
  state.loading = false;
1204
1312
  state.error = null;
1205
- var response = (action.payload || {}).response;
1313
+ var _b = action.payload || {}, response = _b.response, individualData = _b.individualData;
1206
1314
  var description = (((_a = response === null || response === void 0 ? void 0 : response.errors) === null || _a === void 0 ? void 0 : _a[0]) || {}).description;
1207
1315
  if (description) {
1208
1316
  state.error = description;
1209
1317
  return;
1210
1318
  }
1211
1319
  var flows = response.flows;
1212
- state.data.verify.responseBody = __assign(__assign({}, state.data.verify.responseBody), { flows: flows });
1320
+ var individuals = (state.data.verify.responseBody || {}).individuals;
1321
+ var data_state = (((individualData === null || individualData === void 0 ? void 0 : individualData.is_authorized) ? individuals : individualData) || {}).data_state;
1322
+ state.data.verify.responseBody = __assign(__assign(__assign({}, state.data.verify.responseBody), { flows: flows }), (data_state && {
1323
+ individuals: __assign(__assign({}, individuals), { data_state: data_state })
1324
+ }));
1213
1325
  })
1214
1326
  .addCase(updateBoardSuccess.pending, function (state) {
1215
1327
  state.loading = true;
@@ -1218,6 +1330,18 @@ export var individualSlice = createSlice({
1218
1330
  .addCase(updateBoardSuccess.rejected, function (state, action) {
1219
1331
  state.loading = false;
1220
1332
  state.error = action.error.message;
1333
+ })
1334
+ .addCase(onCloseCompleteIndividual.pending, function (state) {
1335
+ state.loading = true;
1336
+ state.error = null;
1337
+ })
1338
+ .addCase(onCloseCompleteIndividual.fulfilled, function (state) {
1339
+ state.loading = false;
1340
+ state.error = null;
1341
+ })
1342
+ .addCase(onCloseCompleteIndividual.rejected, function (state, action) {
1343
+ state.loading = false;
1344
+ state.error = action.error.message;
1221
1345
  });
1222
1346
  }
1223
1347
  });