@tap-payments/auth-jsconnect 2.3.5-test → 2.3.6

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 (471) hide show
  1. package/build/@types/app.d.ts +303 -1
  2. package/build/@types/app.js +17 -0
  3. package/build/@types/form.d.ts +10 -7
  4. package/build/@types/redux.d.ts +4 -0
  5. package/build/@types/user.d.ts +39 -3
  6. package/build/api/brand.d.ts +7 -0
  7. package/build/api/brand.js +10 -1
  8. package/build/api/data.d.ts +8 -0
  9. package/build/api/data.js +34 -2
  10. package/build/api/entity.d.ts +20 -5
  11. package/build/api/entity.js +26 -1
  12. package/build/api/index.d.ts +29 -5
  13. package/build/api/index.js +3 -1
  14. package/build/api/individual.d.ts +24 -6
  15. package/build/api/individual.js +9 -1
  16. package/build/api/init.d.ts +17 -0
  17. package/build/api/init.js +13 -0
  18. package/build/api/lead.d.ts +8 -1
  19. package/build/api/lead.js +9 -1
  20. package/build/app/settings.d.ts +12 -9
  21. package/build/app/settings.js +77 -34
  22. package/build/assets/locales/ar.json +28 -1
  23. package/build/assets/locales/en.json +28 -1
  24. package/build/components/AnimationFlow/AnimationFlow.d.ts +4 -2
  25. package/build/components/AnimationFlow/AnimationFlow.js +4 -4
  26. package/build/components/AnimationFlow/BottomSheet.d.ts +4 -1
  27. package/build/components/AnimationFlow/BottomSheet.js +43 -19
  28. package/build/components/AnimationFlow/Dialog.d.ts +4 -2
  29. package/build/components/AnimationFlow/Dialog.js +30 -7
  30. package/build/components/ArabicDatePicker/ArabicDatePicker.d.ts +5 -2
  31. package/build/components/ArabicDatePicker/ArabicDatePicker.js +45 -23
  32. package/build/components/ArabicDatePicker/arabicAr.d.ts +8 -0
  33. package/build/components/ArabicDatePicker/arabicAr.js +32 -0
  34. package/build/components/ArabicDatePicker/arabicEn.d.ts +8 -0
  35. package/build/components/ArabicDatePicker/arabicEn.js +32 -0
  36. package/build/components/ArabicDatePicker/style.css +45 -5
  37. package/build/components/DatePicker/DatePicker.d.ts +4 -1
  38. package/build/components/DatePicker/DatePicker.js +27 -17
  39. package/build/components/LogoBadge/LogoBadge.js +3 -0
  40. package/build/components/RadioGroup/RadioGroup.d.ts +5 -2
  41. package/build/components/RadioGroup/RadioGroup.js +5 -9
  42. package/build/components/RadioGroup/index.d.ts +1 -1
  43. package/build/components/SimpleList/SimpleList.d.ts +5 -2
  44. package/build/components/SimpleList/SimpleList.js +31 -11
  45. package/build/components/Slide/Slide.d.ts +1 -1
  46. package/build/constants/api.d.ts +7 -0
  47. package/build/constants/api.js +14 -1
  48. package/build/constants/app.d.ts +45 -0
  49. package/build/constants/app.js +101 -52
  50. package/build/constants/assets.d.ts +9 -0
  51. package/build/constants/assets.js +9 -0
  52. package/build/constants/validation.d.ts +3 -2
  53. package/build/constants/validation.js +3 -2
  54. package/build/features/app/bank/bankStore.d.ts +7 -3
  55. package/build/features/app/bank/bankStore.js +155 -115
  56. package/build/features/app/brand/brandStore.d.ts +32 -12
  57. package/build/features/app/brand/brandStore.js +384 -203
  58. package/build/features/app/business/businessStore.d.ts +16 -13
  59. package/build/features/app/business/businessStore.js +364 -295
  60. package/build/features/app/connect/connectStore.d.ts +15 -1
  61. package/build/features/app/connect/connectStore.js +292 -95
  62. package/build/features/app/connectExpress/connectExpressStore.d.ts +17 -3
  63. package/build/features/app/connectExpress/connectExpressStore.js +232 -100
  64. package/build/features/app/entity/entityStore.d.ts +15 -17
  65. package/build/features/app/entity/entityStore.js +279 -248
  66. package/build/features/app/individual/individualStore.d.ts +22 -10
  67. package/build/features/app/individual/individualStore.js +531 -418
  68. package/build/features/app/password/passwordStore.d.ts +4 -0
  69. package/build/features/app/password/passwordStore.js +99 -43
  70. package/build/features/app/tax/taxStore.d.ts +6 -2
  71. package/build/features/app/tax/taxStore.js +143 -101
  72. package/build/features/bank/Bank.js +10 -6
  73. package/build/features/bank/screens/BankDetails/BankDetails.js +43 -17
  74. package/build/features/bank/screens/BankDetails/BankName.d.ts +5 -1
  75. package/build/features/bank/screens/BankDetails/BankName.js +9 -9
  76. package/build/features/bank/screens/BankDetails/BankStatement.d.ts +5 -1
  77. package/build/features/bank/screens/BankDetails/BankStatement.js +7 -10
  78. package/build/features/bank/screens/BankDetails/Beneficiary.d.ts +3 -1
  79. package/build/features/bank/screens/BankDetails/Beneficiary.js +6 -7
  80. package/build/features/bank/screens/BankDetails/ConfirmPolicy.d.ts +4 -1
  81. package/build/features/bank/screens/BankDetails/ConfirmPolicy.js +12 -13
  82. package/build/features/bank/screens/BankDetails/IBAN.d.ts +3 -1
  83. package/build/features/bank/screens/BankDetails/IBAN.js +3 -5
  84. package/build/features/bank/screens/BankDetails/validation.d.ts +8 -8
  85. package/build/features/bank/screens/BankDetails/validation.js +6 -17
  86. package/build/features/bank/screens/ResetPasswordSuccess/ResetPasswordSuccess.js +9 -4
  87. package/build/features/bank/screens/Verify/OTPInput.js +5 -3
  88. package/build/features/bank/screens/Verify/Verify.js +1 -5
  89. package/build/features/brand/Brand.js +10 -6
  90. package/build/features/brand/screens/BrandActivities/ActivitiesList.d.ts +10 -27
  91. package/build/features/brand/screens/BrandActivities/ActivitiesList.js +45 -28
  92. package/build/features/brand/screens/BrandActivities/BrandActivities.js +41 -9
  93. package/build/features/brand/screens/BrandActivities/CustomerBase.d.ts +11 -38
  94. package/build/features/brand/screens/BrandActivities/CustomerBase.js +22 -31
  95. package/build/features/brand/screens/BrandActivities/ExpectedCustomers.d.ts +3 -1
  96. package/build/features/brand/screens/BrandActivities/ExpectedCustomers.js +24 -20
  97. package/build/features/brand/screens/BrandActivities/ExpectedSalesRange.d.ts +3 -1
  98. package/build/features/brand/screens/BrandActivities/ExpectedSalesRange.js +31 -19
  99. package/build/features/brand/screens/BrandActivities/RefundPolicy.d.ts +13 -6
  100. package/build/features/brand/screens/BrandActivities/RefundPolicy.js +23 -12
  101. package/build/features/brand/screens/BrandActivities/TAC.d.ts +14 -2
  102. package/build/features/brand/screens/BrandActivities/TAC.js +21 -12
  103. package/build/features/brand/screens/BrandActivities/TransactionPolicy.d.ts +4 -1
  104. package/build/features/brand/screens/BrandActivities/TransactionPolicy.js +18 -4
  105. package/build/features/brand/screens/BrandActivities/validation.d.ts +43 -43
  106. package/build/features/brand/screens/BrandActivities/validation.js +11 -25
  107. package/build/features/brand/screens/BrandInfo/BrandInfo.js +40 -33
  108. package/build/features/brand/screens/BrandInfo/BrandLogo.d.ts +9 -0
  109. package/build/features/brand/screens/BrandInfo/BrandLogo.js +41 -0
  110. package/build/features/brand/screens/BrandInfo/BrandName.d.ts +3 -2
  111. package/build/features/brand/screens/BrandInfo/BrandName.js +4 -7
  112. package/build/features/brand/screens/BrandInfo/SalesChannels.d.ts +2 -1
  113. package/build/features/brand/screens/BrandInfo/SalesChannels.js +19 -25
  114. package/build/features/brand/screens/BrandInfo/validation.d.ts +7 -13
  115. package/build/features/brand/screens/BrandInfo/validation.js +43 -53
  116. package/build/features/brand/screens/BrandSegmentInfo/BrandSegmentInfo.d.ts +5 -0
  117. package/build/features/brand/screens/BrandSegmentInfo/BrandSegmentInfo.js +102 -0
  118. package/build/features/brand/screens/BrandSegmentInfo/SegmentLocations.d.ts +10 -0
  119. package/build/features/brand/screens/BrandSegmentInfo/SegmentLocations.js +69 -0
  120. package/build/features/brand/screens/BrandSegmentInfo/SegmentProfits.d.ts +10 -0
  121. package/build/features/brand/screens/BrandSegmentInfo/SegmentProfits.js +69 -0
  122. package/build/features/brand/screens/BrandSegmentInfo/SegmentTechs.d.ts +10 -0
  123. package/build/features/brand/screens/BrandSegmentInfo/SegmentTechs.js +69 -0
  124. package/build/features/{connect/screens/Merchant → brand/screens/BrandSegmentInfo}/TeamSize.d.ts +3 -1
  125. package/build/features/brand/screens/{BrandInfo → BrandSegmentInfo}/TeamSize.js +20 -25
  126. package/build/features/brand/screens/BrandSegmentInfo/index.d.ts +2 -0
  127. package/build/features/brand/screens/BrandSegmentInfo/index.js +2 -0
  128. package/build/features/brand/screens/BrandSegmentInfo/validation.d.ts +17 -0
  129. package/build/features/brand/screens/BrandSegmentInfo/validation.js +9 -0
  130. package/build/features/brand/screens/ResetPasswordSuccess/ResetPasswordSuccess.js +9 -4
  131. package/build/features/brand/screens/Verify/OTPInput.js +5 -3
  132. package/build/features/brand/screens/Verify/Verify.js +7 -20
  133. package/build/features/business/Business.js +7 -5
  134. package/build/features/business/screens/Activities/ActivitiesList.d.ts +15 -68
  135. package/build/features/business/screens/Activities/ActivitiesList.js +226 -98
  136. package/build/features/business/screens/Activities/OperationStartDate.d.ts +2 -2
  137. package/build/features/business/screens/Activities/OperationStartDate.js +3 -3
  138. package/build/features/business/screens/Activities/validation.d.ts +165 -30
  139. package/build/features/business/screens/Activities/validation.js +5 -2
  140. package/build/features/business/screens/BrandDetails/BrandDetails.d.ts +5 -0
  141. package/build/features/business/screens/BrandDetails/BrandDetails.js +39 -0
  142. package/build/features/business/screens/BrandDetails/BrandName.d.ts +5 -0
  143. package/build/features/business/screens/BrandDetails/BrandName.js +36 -0
  144. package/build/features/business/screens/BrandDetails/Header.d.ts +5 -0
  145. package/build/features/business/screens/BrandDetails/Header.js +49 -0
  146. package/build/features/business/screens/BrandDetails/LicenseInfo.d.ts +5 -0
  147. package/build/features/business/screens/BrandDetails/LicenseInfo.js +38 -0
  148. package/build/features/{brand/screens/BrandActivities/OperationStartDate.d.ts → business/screens/BrandDetails/SalesChannel.d.ts} +5 -7
  149. package/build/features/business/screens/BrandDetails/SalesChannel.js +48 -0
  150. package/build/features/business/screens/BrandDetails/index.d.ts +3 -0
  151. package/build/features/business/screens/BrandDetails/index.js +2 -0
  152. package/build/features/business/screens/BusinessType/Article.d.ts +3 -1
  153. package/build/features/business/screens/BusinessType/Article.js +19 -54
  154. package/build/features/business/screens/BusinessType/BusinessType.js +35 -11
  155. package/build/features/business/screens/BusinessType/EntityLicenseList.d.ts +9 -0
  156. package/build/features/business/screens/BusinessType/EntityLicenseList.js +129 -0
  157. package/build/features/business/screens/BusinessType/EntityName.js +6 -7
  158. package/build/features/business/screens/BusinessType/LicenseCertificate.js +2 -1
  159. package/build/features/business/screens/BusinessType/LicenseList.d.ts +1 -0
  160. package/build/features/business/screens/BusinessType/LicenseList.js +7 -22
  161. package/build/features/business/screens/BusinessType/LicenseNumber.d.ts +1 -2
  162. package/build/features/business/screens/BusinessType/LicenseNumber.js +7 -5
  163. package/build/features/business/screens/BusinessType/LicenseType.d.ts +2 -2
  164. package/build/features/business/screens/BusinessType/validation.js +2 -2
  165. package/build/features/business/screens/CivilID/IDNumber.js +2 -3
  166. package/build/features/business/screens/Customers/CustomerLocations.d.ts +44 -37
  167. package/build/features/business/screens/Customers/CustomerLocations.js +35 -19
  168. package/build/features/business/screens/Customers/Customers.js +27 -16
  169. package/build/features/business/screens/Customers/ExpectedCustomers.js +12 -4
  170. package/build/features/business/screens/Customers/ExpectedSalesRange.js +14 -6
  171. package/build/features/business/screens/Customers/RefundPolicy.d.ts +5 -5
  172. package/build/features/business/screens/Customers/RefundPolicy.js +15 -4
  173. package/build/features/business/screens/Customers/TransactionPolicy.js +19 -9
  174. package/build/features/business/screens/IDBOD/DOB.js +3 -3
  175. package/build/features/business/screens/IDBOD/ID.js +2 -3
  176. package/build/features/business/screens/ResetPasswordSuccess/ResetPasswordSuccess.js +8 -3
  177. package/build/features/business/screens/Verify/OTPInput.js +5 -3
  178. package/build/features/connect/Connect.d.ts +2 -0
  179. package/build/features/connect/Connect.js +86 -11
  180. package/build/features/connect/screens/BrandSegment/BrandSegment.d.ts +5 -0
  181. package/build/features/connect/screens/BrandSegment/BrandSegment.js +84 -0
  182. package/build/features/connect/screens/BrandSegment/SegmentLocations.d.ts +8 -0
  183. package/build/features/connect/screens/{Merchant/Segments.js → BrandSegment/SegmentLocations.js} +17 -25
  184. package/build/features/connect/screens/BrandSegment/SegmentProfits.d.ts +8 -0
  185. package/build/features/{brand/screens/BrandInfo/Segments.js → connect/screens/BrandSegment/SegmentProfits.js} +18 -26
  186. package/build/features/connect/screens/BrandSegment/SegmentTechs.d.ts +8 -0
  187. package/build/features/connect/screens/BrandSegment/SegmentTechs.js +66 -0
  188. package/build/features/connect/screens/{Merchant → BrandSegment}/TeamSize.js +12 -20
  189. package/build/features/connect/screens/BrandSegment/index.d.ts +3 -0
  190. package/build/features/connect/screens/BrandSegment/index.js +2 -0
  191. package/build/features/connect/screens/BrandSegment/validation.d.ts +17 -0
  192. package/build/features/connect/screens/BrandSegment/validation.js +9 -0
  193. package/build/features/connect/screens/CivilID/CivilID.js +5 -13
  194. package/build/features/connect/screens/CivilID/IDNumber.js +5 -6
  195. package/build/features/connect/screens/Individual/Email.js +17 -27
  196. package/build/features/connect/screens/Individual/Individual.js +8 -1
  197. package/build/features/connect/screens/Individual/MobileNumber.js +16 -15
  198. package/build/features/connect/screens/Individual/Name.js +11 -15
  199. package/build/features/connect/screens/Merchant/BrandList.js +4 -22
  200. package/build/features/connect/screens/Merchant/BrandName.js +4 -7
  201. package/build/features/connect/screens/Merchant/Merchant.js +13 -15
  202. package/build/features/connect/screens/Merchant/SalesChannels.js +6 -6
  203. package/build/features/connect/screens/Merchant/validation.d.ts +3 -6
  204. package/build/features/connect/screens/Merchant/validation.js +14 -17
  205. package/build/features/connect/screens/Mobile/Mobile.js +13 -16
  206. package/build/features/connect/screens/Mobile/MobileNumber.js +14 -10
  207. package/build/features/connect/screens/NID/DOB.js +3 -3
  208. package/build/features/connect/screens/NID/IDNumber.js +6 -7
  209. package/build/features/connect/screens/NID/NID.js +6 -0
  210. package/build/features/connect/screens/OTP/OTP.js +13 -15
  211. package/build/features/connect/screens/OTP/OTPInput.js +10 -0
  212. package/build/features/connect/screens/ThankYou/ThankYou.js +17 -2
  213. package/build/features/connectExpress/ConnectExpress.d.ts +1 -0
  214. package/build/features/connectExpress/ConnectExpress.js +72 -12
  215. package/build/features/connectExpress/screens/Brand/Brand.js +1 -1
  216. package/build/features/connectExpress/screens/CivilID/IDNumber.js +6 -7
  217. package/build/features/connectExpress/screens/CivilIDMissed/IDNumber.js +6 -7
  218. package/build/features/connectExpress/screens/CollectBusinessInfo/BrandName.d.ts +2 -1
  219. package/build/features/connectExpress/screens/CollectBusinessInfo/BrandName.js +5 -7
  220. package/build/features/connectExpress/screens/CollectBusinessInfo/CollectBusinessInfo.js +7 -4
  221. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseList.d.ts +2 -1
  222. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseList.js +9 -14
  223. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseNumber.d.ts +1 -1
  224. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseNumber.js +4 -4
  225. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseType.d.ts +4 -3
  226. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseType.js +4 -2
  227. package/build/features/connectExpress/screens/CollectBusinessInfo/TAC.d.ts +14 -1
  228. package/build/features/connectExpress/screens/CollectBusinessInfo/TAC.js +9 -10
  229. package/build/features/connectExpress/screens/CollectBusinessInfo/validation.js +4 -4
  230. package/build/features/connectExpress/screens/CollectIndividualInfo/CollectIndividualInfo.js +11 -6
  231. package/build/features/connectExpress/screens/CollectIndividualInfo/Email.d.ts +2 -1
  232. package/build/features/connectExpress/screens/CollectIndividualInfo/Email.js +6 -14
  233. package/build/features/connectExpress/screens/CollectIndividualInfo/MobileNumber.d.ts +1 -0
  234. package/build/features/connectExpress/screens/CollectIndividualInfo/MobileNumber.js +6 -2
  235. package/build/features/connectExpress/screens/CollectIndividualInfo/Name.d.ts +2 -1
  236. package/build/features/connectExpress/screens/CollectIndividualInfo/Name.js +3 -4
  237. package/build/features/connectExpress/screens/IdentityOTP/OTPInput.js +2 -2
  238. package/build/features/connectExpress/screens/Mobile/Mobile.js +4 -3
  239. package/build/features/connectExpress/screens/Mobile/MobileNumber.d.ts +1 -0
  240. package/build/features/connectExpress/screens/Mobile/MobileNumber.js +6 -2
  241. package/build/features/connectExpress/screens/Mobile/TAC.d.ts +2 -1
  242. package/build/features/connectExpress/screens/Mobile/TAC.js +3 -1
  243. package/build/features/connectExpress/screens/NID/DOB.d.ts +2 -1
  244. package/build/features/connectExpress/screens/NID/DOB.js +3 -3
  245. package/build/features/connectExpress/screens/NID/IDNumber.d.ts +1 -0
  246. package/build/features/connectExpress/screens/NID/IDNumber.js +3 -4
  247. package/build/features/connectExpress/screens/NID/NID.js +4 -2
  248. package/build/features/connectExpress/screens/NID/TAC.d.ts +14 -1
  249. package/build/features/connectExpress/screens/NID/TAC.js +9 -10
  250. package/build/features/connectExpress/screens/NIDMissed/DOB.js +2 -2
  251. package/build/features/connectExpress/screens/NIDMissed/IDNumber.js +2 -3
  252. package/build/features/connectExpress/screens/OTP/OTPInput.js +3 -3
  253. package/build/features/connectExpress/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +2 -1
  254. package/build/features/entity/Entity.js +10 -6
  255. package/build/features/entity/screens/EntityCapital/ActivityList.d.ts +16 -68
  256. package/build/features/entity/screens/EntityCapital/ActivityList.js +221 -106
  257. package/build/features/entity/screens/EntityCapital/CapitalPaid.d.ts +3 -1
  258. package/build/features/entity/screens/EntityCapital/CapitalPaid.js +14 -15
  259. package/build/features/entity/screens/EntityCapital/CapitalShareCount.d.ts +3 -1
  260. package/build/features/entity/screens/EntityCapital/CapitalShareCount.js +10 -11
  261. package/build/features/entity/screens/EntityCapital/CapitalShareValue.d.ts +3 -1
  262. package/build/features/entity/screens/EntityCapital/CapitalShareValue.js +15 -16
  263. package/build/features/entity/screens/EntityCapital/EntityCapital.js +31 -20
  264. package/build/features/entity/screens/EntityCapital/validation.d.ts +175 -40
  265. package/build/features/entity/screens/EntityCapital/validation.js +9 -12
  266. package/build/features/entity/screens/EntityName/Article.d.ts +5 -1
  267. package/build/features/entity/screens/EntityName/Article.js +20 -54
  268. package/build/features/entity/screens/EntityName/EntityName.js +60 -16
  269. package/build/features/entity/screens/EntityName/EntityTypeList.d.ts +11 -27
  270. package/build/features/entity/screens/EntityName/EntityTypeList.js +32 -43
  271. package/build/features/entity/screens/EntityName/ExpiryDate.d.ts +5 -3
  272. package/build/features/entity/screens/EntityName/ExpiryDate.js +5 -5
  273. package/build/features/entity/screens/EntityName/IssuingDate.d.ts +5 -3
  274. package/build/features/entity/screens/EntityName/IssuingDate.js +4 -5
  275. package/build/features/entity/screens/EntityName/LegalName.d.ts +3 -1
  276. package/build/features/entity/screens/EntityName/LegalName.js +9 -6
  277. package/build/features/entity/screens/EntityName/LicenseCertificate.d.ts +4 -1
  278. package/build/features/entity/screens/EntityName/LicenseCertificate.js +13 -7
  279. package/build/features/entity/screens/EntityName/LicenseNumber.d.ts +3 -1
  280. package/build/features/entity/screens/EntityName/LicenseNumber.js +13 -11
  281. package/build/features/entity/screens/EntityName/UnifiedNumber.d.ts +3 -1
  282. package/build/features/entity/screens/EntityName/UnifiedNumber.js +9 -7
  283. package/build/features/entity/screens/EntityName/validation.d.ts +35 -35
  284. package/build/features/entity/screens/EntityName/validation.js +68 -93
  285. package/build/features/entity/screens/ResetPasswordSuccess/ResetPasswordSuccess.js +9 -4
  286. package/build/features/entity/screens/Verify/OTPInput.js +5 -3
  287. package/build/features/entity/screens/Verify/Verify.js +7 -20
  288. package/build/features/featuresScreens.js +13 -1
  289. package/build/features/individual/Individual.js +10 -6
  290. package/build/features/individual/screens/AdditionalIndividualInfo/AdditionalIndividualInfo.d.ts +2 -2
  291. package/build/features/individual/screens/AdditionalIndividualInfo/AdditionalIndividualInfo.js +54 -23
  292. package/build/features/individual/screens/AdditionalIndividualInfo/CivilIDFile.d.ts +7 -1
  293. package/build/features/individual/screens/AdditionalIndividualInfo/CivilIDFile.js +29 -10
  294. package/build/features/individual/screens/AdditionalIndividualInfo/InfluencerSwitch.d.ts +3 -1
  295. package/build/features/individual/screens/AdditionalIndividualInfo/InfluencerSwitch.js +17 -12
  296. package/build/features/individual/screens/AdditionalIndividualInfo/MonthlyIncome.d.ts +2 -1
  297. package/build/features/individual/screens/AdditionalIndividualInfo/MonthlyIncome.js +30 -41
  298. package/build/features/individual/screens/AdditionalIndividualInfo/Occupation.d.ts +3 -3
  299. package/build/features/individual/screens/AdditionalIndividualInfo/Occupation.js +94 -55
  300. package/build/features/individual/screens/AdditionalIndividualInfo/PEPSwitch.d.ts +5 -3
  301. package/build/features/individual/screens/AdditionalIndividualInfo/PEPSwitch.js +17 -12
  302. package/build/features/individual/screens/AdditionalIndividualInfo/ShareCount.d.ts +2 -1
  303. package/build/features/individual/screens/AdditionalIndividualInfo/ShareCount.js +9 -2
  304. package/build/features/individual/screens/AdditionalIndividualInfo/ShareValue.d.ts +2 -1
  305. package/build/features/individual/screens/AdditionalIndividualInfo/ShareValue.js +13 -7
  306. package/build/features/individual/screens/AdditionalIndividualInfo/SignatureFile.d.ts +4 -1
  307. package/build/features/individual/screens/AdditionalIndividualInfo/SignatureFile.js +14 -8
  308. package/build/features/individual/screens/AdditionalIndividualInfo/SourceOfIncome.d.ts +2 -1
  309. package/build/features/individual/screens/AdditionalIndividualInfo/SourceOfIncome.js +32 -42
  310. package/build/features/individual/screens/AdditionalIndividualInfo/validation.d.ts +8 -8
  311. package/build/features/individual/screens/AdditionalIndividualInfo/validation.js +8 -12
  312. package/build/features/individual/screens/IndividualList/IndividualList.d.ts +4 -4
  313. package/build/features/individual/screens/IndividualList/MobileNumber.js +0 -1
  314. package/build/features/individual/screens/IndividualList/UserList.js +10 -6
  315. package/build/features/individual/screens/IndividualPersonalInfo/BirthCity.d.ts +2 -0
  316. package/build/features/individual/screens/IndividualPersonalInfo/BirthCity.js +14 -20
  317. package/build/features/individual/screens/IndividualPersonalInfo/BirthCountry.d.ts +2 -0
  318. package/build/features/individual/screens/IndividualPersonalInfo/BirthCountry.js +8 -14
  319. package/build/features/individual/screens/IndividualPersonalInfo/DOB.d.ts +3 -1
  320. package/build/features/individual/screens/IndividualPersonalInfo/DOB.js +4 -4
  321. package/build/features/individual/screens/IndividualPersonalInfo/Email.d.ts +3 -1
  322. package/build/features/individual/screens/IndividualPersonalInfo/Email.js +3 -10
  323. package/build/features/individual/screens/IndividualPersonalInfo/ExpiryDate.d.ts +3 -1
  324. package/build/features/individual/screens/IndividualPersonalInfo/ExpiryDate.js +5 -7
  325. package/build/features/individual/screens/IndividualPersonalInfo/Gender.d.ts +5 -3
  326. package/build/features/individual/screens/IndividualPersonalInfo/Gender.js +5 -2
  327. package/build/features/individual/screens/IndividualPersonalInfo/ID.d.ts +3 -1
  328. package/build/features/individual/screens/IndividualPersonalInfo/ID.js +3 -10
  329. package/build/features/individual/screens/IndividualPersonalInfo/IndividualPersonalInfo.d.ts +2 -2
  330. package/build/features/individual/screens/IndividualPersonalInfo/IndividualPersonalInfo.js +79 -36
  331. package/build/features/individual/screens/IndividualPersonalInfo/IssuedCountry.d.ts +2 -0
  332. package/build/features/individual/screens/IndividualPersonalInfo/IssuedCountry.js +10 -21
  333. package/build/features/individual/screens/IndividualPersonalInfo/MobileNumber.d.ts +2 -0
  334. package/build/features/individual/screens/IndividualPersonalInfo/MobileNumber.js +14 -16
  335. package/build/features/individual/screens/IndividualPersonalInfo/Name.d.ts +3 -1
  336. package/build/features/individual/screens/IndividualPersonalInfo/Name.js +3 -10
  337. package/build/features/individual/screens/IndividualPersonalInfo/Nationality.d.ts +2 -0
  338. package/build/features/individual/screens/IndividualPersonalInfo/Nationality.js +10 -21
  339. package/build/features/individual/screens/IndividualPhoneInfo/MobileNumber.d.ts +1 -0
  340. package/build/features/individual/screens/IndividualPhoneInfo/MobileNumber.js +6 -3
  341. package/build/features/individual/screens/IndividualPhoneInfo/PhoneInfo.js +6 -3
  342. package/build/features/individual/screens/ResetPasswordSuccess/ResetPasswordSuccess.js +8 -3
  343. package/build/features/individual/screens/Verify/OTPInput.js +5 -3
  344. package/build/features/individual/screens/Verify/Verify.js +1 -5
  345. package/build/features/password/Password.js +7 -5
  346. package/build/features/password/screens/CreatePassword/CreatePassword.js +9 -16
  347. package/build/features/password/screens/ResetPasswordSuccess/ResetPasswordSuccess.js +8 -3
  348. package/build/features/password/screens/Verify/OTPInput.js +5 -3
  349. package/build/features/password/screens/Verify/Verify.js +7 -20
  350. package/build/features/shared/Address/CountryList.d.ts +7 -7
  351. package/build/features/shared/Address/CountryList.js +1 -1
  352. package/build/features/shared/Address/InputSelect.d.ts +7 -7
  353. package/build/features/shared/Address/InputSelect.js +1 -1
  354. package/build/features/shared/Button/Button.d.ts +3 -1
  355. package/build/features/shared/Button/Button.js +2 -2
  356. package/build/features/shared/Button/EmailProvidersButtons.js +9 -2
  357. package/build/features/shared/Button/FlowsButtons.js +22 -20
  358. package/build/features/shared/Button/IndividualActionButtons.d.ts +3 -1
  359. package/build/features/shared/Button/IndividualActionButtons.js +28 -4
  360. package/build/features/shared/Calender/Calender.d.ts +13 -0
  361. package/build/features/shared/Calender/Calender.js +56 -0
  362. package/build/features/shared/Calender/index.d.ts +2 -0
  363. package/build/features/shared/Calender/index.js +2 -0
  364. package/build/features/shared/CheckIcon/CheckIcon.d.ts +7 -1
  365. package/build/features/shared/CheckIcon/CheckIcon.js +7 -6
  366. package/build/features/shared/Chip/Chip.d.ts +3 -0
  367. package/build/features/shared/Chip/Chip.js +21 -0
  368. package/build/features/shared/Chip/index.d.ts +2 -0
  369. package/build/features/shared/Chip/index.js +2 -0
  370. package/build/features/shared/Containers/FeatureContainer.d.ts +4 -1
  371. package/build/features/shared/Containers/FeatureContainer.js +5 -4
  372. package/build/features/shared/Containers/ScreenContainer.d.ts +1 -1
  373. package/build/features/shared/Dot/Dot.d.ts +8 -0
  374. package/build/features/shared/Dot/Dot.js +29 -0
  375. package/build/features/shared/Dot/index.d.ts +2 -0
  376. package/build/features/shared/Dot/index.js +2 -0
  377. package/build/features/shared/EndAdornment/EndAdornment.d.ts +10 -0
  378. package/build/features/shared/EndAdornment/EndAdornment.js +17 -0
  379. package/build/features/shared/EndAdornment/EndAdornmentExpanded.d.ts +7 -0
  380. package/build/features/shared/EndAdornment/EndAdornmentExpanded.js +13 -0
  381. package/build/features/shared/EndAdornment/index.d.ts +3 -0
  382. package/build/features/shared/EndAdornment/index.js +3 -0
  383. package/build/features/shared/Footer/Footer.js +8 -0
  384. package/build/features/shared/Footer/PoweredByFooter.d.ts +9 -0
  385. package/build/features/shared/Footer/PoweredByFooter.js +36 -0
  386. package/build/features/shared/Footer/index.d.ts +3 -2
  387. package/build/features/shared/Footer/index.js +3 -2
  388. package/build/features/shared/GenericError/GenericError.js +1 -1
  389. package/build/features/shared/Input/Input.d.ts +5 -6
  390. package/build/features/shared/Input/Input.js +2 -3
  391. package/build/features/shared/Input/index.d.ts +2 -1
  392. package/build/features/shared/InputSelect/InputSelect.d.ts +4 -0
  393. package/build/features/shared/InputSelect/InputSelect.js +33 -0
  394. package/build/features/shared/InputSelect/index.d.ts +2 -0
  395. package/build/features/shared/InputSelect/index.js +2 -0
  396. package/build/features/shared/OTP/OTP.d.ts +2 -1
  397. package/build/features/shared/OTP/OTP.js +2 -2
  398. package/build/features/shared/SalesChannels/SaleChannelIconsInput.d.ts +3 -1
  399. package/build/features/shared/SalesChannels/SaleChannelIconsInput.js +8 -6
  400. package/build/features/shared/SalesChannels/SalesChannel.d.ts +3 -1
  401. package/build/features/shared/SalesChannels/SalesChannel.js +9 -4
  402. package/build/features/shared/Search/Search.d.ts +2 -1
  403. package/build/features/shared/Search/Search.js +2 -2
  404. package/build/features/shared/SuccessFlowButtons/SuccessFlowButtons.js +19 -8
  405. package/build/features/shared/SuccessScreen/SuccessScreen.d.ts +3 -1
  406. package/build/features/shared/SuccessScreen/SuccessScreen.js +3 -2
  407. package/build/features/shared/UploadFile/FileUpload.d.ts +32 -0
  408. package/build/features/shared/UploadFile/FileUpload.js +267 -0
  409. package/build/features/shared/UploadFile/UploadFile.d.ts +1 -1
  410. package/build/features/shared/UploadFile/UploadFile.js +7 -7
  411. package/build/features/shared/UploadFile/UploadWrapper.d.ts +36 -0
  412. package/build/features/shared/UploadFile/UploadWrapper.js +115 -0
  413. package/build/features/shared/UploadFile/index.d.ts +2 -1
  414. package/build/features/shared/UploadFile/index.js +2 -1
  415. package/build/features/shared/UploadMultipleFile/UploadFile.d.ts +8 -27
  416. package/build/features/shared/UploadMultipleFile/UploadFile.js +70 -56
  417. package/build/features/shared/UploadMultipleFile/UploadMultipleFile.d.ts +7 -3
  418. package/build/features/shared/UploadMultipleFile/UploadMultipleFile.js +11 -17
  419. package/build/features/signIn/SignIn.js +3 -4
  420. package/build/features/tax/Tax.js +10 -6
  421. package/build/features/tax/screens/ResetPasswordSuccess/ResetPasswordSuccess.js +9 -4
  422. package/build/features/tax/screens/TaxDetails/ConfirmPolicy.d.ts +4 -1
  423. package/build/features/tax/screens/TaxDetails/ConfirmPolicy.js +12 -12
  424. package/build/features/tax/screens/TaxDetails/TaxDetails.js +23 -10
  425. package/build/features/tax/screens/TaxDetails/TaxDocument.d.ts +4 -1
  426. package/build/features/tax/screens/TaxDetails/TaxDocument.js +7 -5
  427. package/build/features/tax/screens/TaxDetails/VATId.d.ts +5 -1
  428. package/build/features/tax/screens/TaxDetails/VATId.js +6 -10
  429. package/build/features/tax/screens/TaxDetails/validation.d.ts +4 -4
  430. package/build/features/tax/screens/TaxDetails/validation.js +2 -5
  431. package/build/features/tax/screens/Verify/OTPInput.js +5 -3
  432. package/build/features/tax/screens/Verify/Verify.js +6 -22
  433. package/build/hooks/index.d.ts +5 -0
  434. package/build/hooks/index.js +5 -0
  435. package/build/hooks/useAppConfig.d.ts +4 -2
  436. package/build/hooks/useAppConfig.js +18 -16
  437. package/build/hooks/useDataNoneEditable.d.ts +2 -0
  438. package/build/hooks/useDataNoneEditable.js +19 -0
  439. package/build/hooks/useDataVerified.d.ts +6 -0
  440. package/build/hooks/useDataVerified.js +19 -0
  441. package/build/hooks/useErrorListener.d.ts +2 -1
  442. package/build/hooks/useErrorListener.js +16 -1
  443. package/build/hooks/useExcludeReadOnlyFelids.d.ts +11 -0
  444. package/build/hooks/useExcludeReadOnlyFelids.js +33 -0
  445. package/build/hooks/useFormErrorAndUpdateReadOnly.d.ts +6 -0
  446. package/build/hooks/useFormErrorAndUpdateReadOnly.js +48 -0
  447. package/build/hooks/useFormReadOnly.d.ts +6 -0
  448. package/build/hooks/useFormReadOnly.js +40 -0
  449. package/build/hooks/useVerifyToken.js +1 -1
  450. package/build/theme/shadows.js +1 -1
  451. package/build/utils/array.d.ts +14 -2
  452. package/build/utils/array.js +196 -4
  453. package/build/utils/common.d.ts +1 -0
  454. package/build/utils/common.js +10 -0
  455. package/build/utils/date.d.ts +1 -0
  456. package/build/utils/date.js +6 -0
  457. package/build/utils/error.d.ts +1 -0
  458. package/build/utils/error.js +3 -0
  459. package/build/utils/gtm.d.ts +6 -0
  460. package/build/utils/gtm.js +29 -0
  461. package/build/utils/index.d.ts +1 -0
  462. package/build/utils/index.js +1 -0
  463. package/build/utils/object.d.ts +4 -0
  464. package/build/utils/object.js +17 -0
  465. package/build/utils/string.d.ts +5 -2
  466. package/build/utils/string.js +28 -7
  467. package/package.json +4 -2
  468. package/build/features/brand/screens/BrandActivities/OperationStartDate.js +0 -45
  469. package/build/features/brand/screens/BrandInfo/Segments.d.ts +0 -8
  470. package/build/features/connect/screens/Merchant/Segments.d.ts +0 -8
  471. /package/build/features/{brand/screens/BrandInfo → connect/screens/BrandSegment}/TeamSize.d.ts +0 -0
@@ -0,0 +1,11 @@
1
+ import { FieldValues, UseFormReturn } from 'react-hook-form';
2
+ declare type ReadOnly<TF, V> = {
3
+ [key in keyof TF]: V;
4
+ };
5
+ export declare const useExcludeReadOnlyFelids: <TF extends FieldValues = FieldValues>({ formState }: UseFormReturn<TF, any>, readOnly: ReadOnly<TF, boolean>) => {
6
+ getFelids: <T extends TF = TF>(data: T) => {
7
+ originalFormData: T;
8
+ formData: T;
9
+ };
10
+ };
11
+ export {};
@@ -0,0 +1,33 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import { settingsSelector } from '../app/settings';
13
+ import { useAppSelector } from './useAppSelector';
14
+ export var useExcludeReadOnlyFelids = function (_a, readOnly) {
15
+ var formState = _a.formState;
16
+ var settingData = useAppSelector(settingsSelector).data;
17
+ var getFelids = function (data) {
18
+ if (settingData.boardMaturity !== false)
19
+ return { originalFormData: data, formData: data };
20
+ var object = {};
21
+ var objectCopy = __assign({}, data);
22
+ for (var key in data) {
23
+ if (readOnly[key] === true)
24
+ continue;
25
+ object[key] = data[key];
26
+ }
27
+ return {
28
+ originalFormData: objectCopy,
29
+ formData: object
30
+ };
31
+ };
32
+ return { getFelids: getFelids };
33
+ };
@@ -0,0 +1,6 @@
1
+ import { FieldValues, UseFormReturn } from 'react-hook-form';
2
+ declare type ReadOnly<TF, V> = {
3
+ [key in keyof TF]: V;
4
+ };
5
+ export declare const useFormErrorAndUpdateReadOnly: <TF extends FieldValues = FieldValues>(methods: UseFormReturn<TF, any>, readOnlyData: { [key in keyof TF]: boolean; }, noneEditable?: Record<any, boolean>) => ReadOnly<TF, boolean>;
6
+ export {};
@@ -0,0 +1,48 @@
1
+ import { useCallback, useEffect, useState } from 'react';
2
+ export var useFormErrorAndUpdateReadOnly = function (methods, readOnlyData, noneEditable) {
3
+ if (noneEditable === void 0) { noneEditable = {}; }
4
+ var _a = useState({}), readOnly = _a[0], setReadOnly = _a[1];
5
+ var reValidateReadOnly = useCallback(function () {
6
+ if (Object.keys(readOnlyData).length === 0)
7
+ return;
8
+ var defaultValues = methods.formState.defaultValues;
9
+ for (var key in readOnlyData) {
10
+ var value = readOnlyData === null || readOnlyData === void 0 ? void 0 : readOnlyData[key];
11
+ if (value === true) {
12
+ methods.setValue(key, defaultValues === null || defaultValues === void 0 ? void 0 : defaultValues[key], { shouldValidate: true });
13
+ }
14
+ }
15
+ }, [readOnlyData, methods.setValue, methods.formState.defaultValues]);
16
+ var reValidateNoneEditable = useCallback(function () {
17
+ var hasNoneEditable = Object.values(noneEditable).some(function (value) { return value === true; });
18
+ if (!hasNoneEditable)
19
+ return;
20
+ var defaultValues = methods.formState.defaultValues;
21
+ for (var key in defaultValues) {
22
+ methods.setValue(key, defaultValues[key], { shouldValidate: true });
23
+ }
24
+ }, [noneEditable, methods.formState.defaultValues]);
25
+ var updateReadOnly = useCallback(function () {
26
+ var errors = methods.formState.errors;
27
+ var newReadOnly = {};
28
+ for (var key in readOnlyData) {
29
+ var error = errors === null || errors === void 0 ? void 0 : errors[key];
30
+ var value = readOnlyData === null || readOnlyData === void 0 ? void 0 : readOnlyData[key];
31
+ if (error)
32
+ newReadOnly[key] = false;
33
+ else
34
+ newReadOnly[key] = value;
35
+ }
36
+ setReadOnly(newReadOnly);
37
+ }, [readOnlyData, methods.formState.errors]);
38
+ useEffect(function () {
39
+ reValidateReadOnly();
40
+ }, [reValidateReadOnly]);
41
+ useEffect(function () {
42
+ reValidateNoneEditable();
43
+ }, [reValidateNoneEditable]);
44
+ useEffect(function () {
45
+ updateReadOnly();
46
+ }, [updateReadOnly]);
47
+ return readOnly;
48
+ };
@@ -0,0 +1,6 @@
1
+ import { FieldValues, UseFormReturn } from 'react-hook-form';
2
+ declare type ReadOnly<TF, V> = {
3
+ [key in keyof TF]: V;
4
+ };
5
+ export declare const useFormReadOnly: <TF extends FieldValues = FieldValues>(methods: UseFormReturn<TF, any>, extraData?: { [key in keyof TF]?: any; }) => ReadOnly<TF, boolean>;
6
+ export {};
@@ -0,0 +1,40 @@
1
+ import { useCallback, useEffect, useState } from 'react';
2
+ import { settingsSelector } from '../app/settings';
3
+ import { useAppSelector } from './useAppSelector';
4
+ var isValidData = function (data) {
5
+ if (data === null || data === undefined)
6
+ return false;
7
+ if (typeof data === 'boolean')
8
+ return data === true;
9
+ if (typeof data === 'string' && data.trim() === '')
10
+ return false;
11
+ if (typeof data === 'object' && Object.keys(data).length === 0)
12
+ return false;
13
+ if (Array.isArray(data) && data.length === 0)
14
+ return false;
15
+ return true;
16
+ };
17
+ export var useFormReadOnly = function (methods, extraData) {
18
+ if (extraData === void 0) { extraData = {}; }
19
+ var _a = useState({}), readOnly = _a[0], setReadOnly = _a[1];
20
+ var data = useAppSelector(settingsSelector).data;
21
+ var setReadOnlyValues = useCallback(function () {
22
+ if (data.boardMaturity)
23
+ return;
24
+ var values = methods.formState.defaultValues;
25
+ var readOnlyValues = {};
26
+ for (var key in values) {
27
+ var value = values === null || values === void 0 ? void 0 : values[key];
28
+ readOnlyValues[key] = isValidData(value);
29
+ }
30
+ for (var key in extraData) {
31
+ var value = extraData === null || extraData === void 0 ? void 0 : extraData[key];
32
+ readOnlyValues[key] = isValidData(value);
33
+ }
34
+ setReadOnly(readOnlyValues);
35
+ }, [methods.formState.defaultValues, data.boardMaturity]);
36
+ useEffect(function () {
37
+ setReadOnlyValues();
38
+ }, [setReadOnlyValues]);
39
+ return readOnly;
40
+ };
@@ -6,7 +6,7 @@ export var useVerifyToken = function (_a) {
6
6
  var verify = _a.verify, internalToken = _a.internalToken, navigation = _a.navigation, open = _a.open, settingLoading = _a.settingLoading, loadingScreenName = _a.loadingScreenName;
7
7
  var dispatch = useAppDispatch();
8
8
  var verifyTokenFun = function () {
9
- var token = getParameterByName('token') || internalToken;
9
+ var token = internalToken ? internalToken : getParameterByName('token');
10
10
  var lang = getParameterByName('lang');
11
11
  if (lang)
12
12
  dispatch(handleLanguage(lang));
@@ -1,7 +1,7 @@
1
1
  export var shadows = [
2
2
  'none',
3
3
  '0 0 0 1px rgb(63 63 68 / 5%), 0 1px 2px 0 rgb(63 63 68 / 15%)',
4
- '0px 1px 5px 0px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 3px 1px -2px rgba(0,0,0,0.12)',
4
+ '0px 0px 2px rgba(0, 0, 0, 0.08)',
5
5
  '0px 1px 8px 0px rgba(0,0,0,0.2),0px 3px 4px 0px rgba(0,0,0,0.14),0px 3px 3px -2px rgba(0,0,0,0.12)',
6
6
  '0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12)',
7
7
  '0px 3px 5px -1px rgba(0,0,0,0.2),0px 5px 8px 0px rgba(0,0,0,0.14),0px 1px 14px 0px rgba(0,0,0,0.12)',
@@ -1,4 +1,4 @@
1
- import { Activity, CountryCode, SaleChannel } from '../@types';
1
+ import { ActivitiesIsIc, Activity, ActivityParams, CountryCode, SaleChannel, User } from '../@types';
2
2
  export declare const isArray: (value: any) => value is any[];
3
3
  export declare const joinArray: (items: Array<any>, joiner?: string) => string;
4
4
  export declare const replaceStringArrayItems: (items: Array<string>, include: string, withThis: string) => string[];
@@ -61,7 +61,19 @@ export declare const fixBrandList: (items: Array<{
61
61
  channel_services: any[];
62
62
  }[];
63
63
  export declare const findFirstId: (items: Array<SaleChannel>) => string;
64
- export declare const sortActivitiesByName: (items: Array<Activity>, path: string) => Activity[];
64
+ export declare const sortActivitiesByName: (items: Array<ActivityParams>, path: string) => ActivityParams[];
65
65
  export declare const getFileDetailsFromDocument: (documents: Array<any>, purpose: string) => any;
66
66
  export declare const getRecentDocumentBasedOnPurpose: (documents: Array<any>, purpose: string) => any;
67
67
  export declare const findInArrayOrSubArray: (items: Array<any>, value: string | number) => null;
68
+ export declare const groupSectionWithSelectedActivitiesAtBeginning: (sections: Array<ActivitiesIsIc>, selectedActivities: Array<Activity>) => ActivitiesIsIc[];
69
+ export declare const filterActivitiesByName: (activityList: Array<ActivitiesIsIc>, value: string) => ActivityParams[];
70
+ export declare const mapUserList: (individuals: any) => any;
71
+ export declare const sortUserList: (list: Array<User>) => User[];
72
+ export declare const getIndividualType: (objects: Array<string>) => {
73
+ isUser: boolean;
74
+ isShareholder: boolean;
75
+ isBoardMember: boolean;
76
+ isBuyer: boolean;
77
+ isCustomer: boolean;
78
+ };
79
+ export declare function retrieveIndividualData(type: string, boardData: any, serviceCallback: () => Promise<any>): Promise<any>;
@@ -9,7 +9,53 @@ var __assign = (this && this.__assign) || function () {
9
9
  };
10
10
  return __assign.apply(this, arguments);
11
11
  };
12
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
13
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
14
+ return new (P || (P = Promise))(function (resolve, reject) {
15
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
16
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
17
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
18
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
19
+ });
20
+ };
21
+ var __generator = (this && this.__generator) || function (thisArg, body) {
22
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
23
+ return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
24
+ function verb(n) { return function (v) { return step([n, v]); }; }
25
+ function step(op) {
26
+ if (f) throw new TypeError("Generator is already executing.");
27
+ while (_) try {
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
+ if (y = 0, t) op = [op[0] & 2, t.value];
30
+ switch (op[0]) {
31
+ case 0: case 1: t = op; break;
32
+ case 4: _.label++; return { value: op[1], done: false };
33
+ case 5: _.label++; y = op[1]; op = [0]; continue;
34
+ case 7: op = _.ops.pop(); _.trys.pop(); continue;
35
+ default:
36
+ if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
37
+ if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
38
+ if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
39
+ if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
40
+ if (t[2]) _.ops.pop();
41
+ _.trys.pop(); continue;
42
+ }
43
+ op = body.call(thisArg, _);
44
+ } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
45
+ if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
46
+ }
47
+ };
48
+ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
49
+ if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
50
+ if (ar || !(i in from)) {
51
+ if (!ar) ar = Array.prototype.slice.call(from, 0, i);
52
+ ar[i] = from[i];
53
+ }
54
+ }
55
+ return to.concat(ar || Array.prototype.slice.call(from));
56
+ };
12
57
  import get from 'lodash-es/get';
58
+ import { IndividualType } from '../@types';
13
59
  export var isArray = function (value) { return Array.isArray(value); };
14
60
  export var joinArray = function (items, joiner) {
15
61
  if (joiner === void 0) { joiner = '__'; }
@@ -153,10 +199,17 @@ export var getFileDetailsFromDocument = function (documents, purpose) {
153
199
  export var getRecentDocumentBasedOnPurpose = function (documents, purpose) {
154
200
  if ((documents || []).length === 0)
155
201
  return [];
156
- return (documents
157
- .filter(function (doc) { var _a; return ((_a = doc.file_details) === null || _a === void 0 ? void 0 : _a.length) > 0; })
158
- .filter(function (doc) { return doc.file_details.find(function (file) { return file.purpose === purpose; }); })
159
- .sort(function (a, b) { return b.created - a.created; })[0]);
202
+ var filteredByPurpose = documents.filter(function (doc) {
203
+ return doc.type === purpose;
204
+ });
205
+ if ((filteredByPurpose || []).length > 0) {
206
+ return filteredByPurpose.sort(function (a, b) { return b.created - a.created; })[0];
207
+ }
208
+ else {
209
+ return documents
210
+ .filter(function (doc) { var _a; return !((_a = doc.file_details) === null || _a === void 0 ? void 0 : _a.length) && doc.id; })
211
+ .sort(function (a, b) { return b.created - a.created; })[0];
212
+ }
160
213
  };
161
214
  export var findInArrayOrSubArray = function (items, value) {
162
215
  var found = null;
@@ -172,3 +225,142 @@ export var findInArrayOrSubArray = function (items, value) {
172
225
  });
173
226
  return found;
174
227
  };
228
+ export var groupSectionWithSelectedActivitiesAtBeginning = function (sections, selectedActivities) {
229
+ if ((selectedActivities === null || selectedActivities === void 0 ? void 0 : selectedActivities.length) === 0)
230
+ return sections || [];
231
+ if ((sections === null || sections === void 0 ? void 0 : sections.length) === 0)
232
+ return [];
233
+ var filteredSections = sections.filter(function (section) {
234
+ var _a;
235
+ return (selectedActivities.find(function (_a) {
236
+ var id = _a.id;
237
+ return id === section.id;
238
+ }) ||
239
+ ((_a = section.divisions) === null || _a === void 0 ? void 0 : _a.some(function (division) {
240
+ var _a;
241
+ return (selectedActivities.find(function (_a) {
242
+ var id = _a.id;
243
+ return id === division.id;
244
+ }) ||
245
+ ((_a = division === null || division === void 0 ? void 0 : division.activities) === null || _a === void 0 ? void 0 : _a.some(function (activity) {
246
+ return selectedActivities.find(function (_a) {
247
+ var id = _a.id;
248
+ return id === activity.id;
249
+ });
250
+ })));
251
+ })));
252
+ });
253
+ var mapSelectedDivisionBeginning = filteredSections.map(function (section) {
254
+ var _a, _b;
255
+ var selectedDivision = ((_a = section.divisions) === null || _a === void 0 ? void 0 : _a.filter(function (division) {
256
+ var _a;
257
+ return (selectedActivities.find(function (_a) {
258
+ var id = _a.id;
259
+ return id === division.id;
260
+ }) ||
261
+ ((_a = division === null || division === void 0 ? void 0 : division.activities) === null || _a === void 0 ? void 0 : _a.some(function (activity) {
262
+ return selectedActivities.find(function (_a) {
263
+ var id = _a.id;
264
+ return id === activity.id;
265
+ });
266
+ })));
267
+ })) || [];
268
+ var remainingDivision = ((_b = section.divisions) === null || _b === void 0 ? void 0 : _b.filter(function (division) { return !selectedDivision.includes(division); })) || [];
269
+ var divisions = __spreadArray(__spreadArray([], selectedDivision, true), remainingDivision, true);
270
+ return __assign(__assign({}, section), { divisions: divisions });
271
+ });
272
+ var mapSelectedActivitiesBeginning = mapSelectedDivisionBeginning.map(function (section) {
273
+ var _a;
274
+ var divisions = (_a = section.divisions) === null || _a === void 0 ? void 0 : _a.map(function (division) {
275
+ var _a, _b;
276
+ var filterSelectedActivities = ((_a = division === null || division === void 0 ? void 0 : division.activities) === null || _a === void 0 ? void 0 : _a.filter(function (activity) {
277
+ return selectedActivities.find(function (_a) {
278
+ var id = _a.id;
279
+ return id === activity.id;
280
+ });
281
+ })) || [];
282
+ var remainingActivities = ((_b = division.activities) === null || _b === void 0 ? void 0 : _b.filter(function (activity) { return !filterSelectedActivities.includes(activity); })) || [];
283
+ var activities = __spreadArray(__spreadArray([], filterSelectedActivities, true), remainingActivities, true);
284
+ return __assign(__assign({}, division), { activities: activities });
285
+ });
286
+ return __assign(__assign({}, section), { divisions: divisions });
287
+ });
288
+ var remainingSections = sections.filter(function (section) { return !filteredSections.includes(section); });
289
+ return __spreadArray(__spreadArray([], mapSelectedActivitiesBeginning, true), remainingSections, true);
290
+ };
291
+ export var filterActivitiesByName = function (activityList, value) {
292
+ return (activityList || [])
293
+ .flatMap(function (s) { return s.divisions || []; })
294
+ .flatMap(function (d) { return d.activities || []; })
295
+ .filter(function (a) {
296
+ var _a, _b, _c, _d;
297
+ return ((_b = (_a = a === null || a === void 0 ? void 0 : a.name) === null || _a === void 0 ? void 0 : _a.en) === null || _b === void 0 ? void 0 : _b.toLowerCase().includes(value.toLowerCase())) || ((_d = (_c = a === null || a === void 0 ? void 0 : a.name) === null || _c === void 0 ? void 0 : _c.ar) === null || _d === void 0 ? void 0 : _d.toLowerCase().includes(value.toLowerCase()));
298
+ });
299
+ };
300
+ export var mapUserList = function (individuals) {
301
+ return (individuals || []).map(function (_a) {
302
+ var list = _a.list, data_state = _a.data_state;
303
+ return list.reduce(function (acc, obj) {
304
+ var objects = acc.object ? [acc.object] : [];
305
+ var ids = acc.id ? [acc.id] : [];
306
+ if (obj.object) {
307
+ objects.push(obj.object);
308
+ }
309
+ if (obj.id) {
310
+ ids.push(obj.id);
311
+ }
312
+ return __assign(__assign(__assign({}, acc), obj), { individual_data_state: data_state, objects: objects, ids: ids });
313
+ }, {});
314
+ });
315
+ };
316
+ export var sortUserList = function (list) {
317
+ if (!(list === null || list === void 0 ? void 0 : list.length))
318
+ return [];
319
+ return list.sort(function (a, b) { return a.names.en.first.localeCompare(b.names.en.first); });
320
+ };
321
+ export var getIndividualType = function (objects) {
322
+ var isUser = false, isShareholder = false, isBoardMember = false, isBuyer = false, isCustomer = false;
323
+ objects === null || objects === void 0 ? void 0 : objects.forEach(function (type) {
324
+ if (type === IndividualType.USER)
325
+ isUser = true;
326
+ else if (type === IndividualType.SHARE_HOLDER)
327
+ isShareholder = true;
328
+ else if (type === IndividualType.BOARD_MEMBER)
329
+ isBoardMember = true;
330
+ else if (type === IndividualType.BUYER)
331
+ isBuyer = true;
332
+ else if (type === IndividualType.CUSTOMER)
333
+ isCustomer = true;
334
+ });
335
+ return { isUser: isUser, isShareholder: isShareholder, isBoardMember: isBoardMember, isBuyer: isBuyer, isCustomer: isCustomer };
336
+ };
337
+ export function retrieveIndividualData(type, boardData, serviceCallback) {
338
+ return __awaiter(this, void 0, void 0, function () {
339
+ var _a, isShareholder, isBoardMember, isBuyer, isCustomer, data, individualRes, _b, data_state, is_authorized, boardRes, individuals;
340
+ return __generator(this, function (_c) {
341
+ switch (_c.label) {
342
+ case 0:
343
+ _a = getIndividualType([type]), isShareholder = _a.isShareholder, isBoardMember = _a.isBoardMember, isBuyer = _a.isBuyer, isCustomer = _a.isCustomer;
344
+ return [4, serviceCallback()];
345
+ case 1:
346
+ data = _c.sent();
347
+ individualRes = data === null || data === void 0 ? void 0 : data.user;
348
+ if (isShareholder)
349
+ individualRes = data === null || data === void 0 ? void 0 : data.shareholder;
350
+ else if (isBoardMember)
351
+ individualRes = data === null || data === void 0 ? void 0 : data.board_member;
352
+ else if (isBuyer)
353
+ individualRes = data === null || data === void 0 ? void 0 : data.buyer;
354
+ else if (isCustomer)
355
+ individualRes = data === null || data === void 0 ? void 0 : data.customer;
356
+ _b = individualRes || {}, data_state = _b.data_state, is_authorized = _b.is_authorized;
357
+ boardRes = boardData || {};
358
+ if (!is_authorized) {
359
+ individuals = (boardRes || {}).individuals;
360
+ boardRes = __assign(__assign(__assign({}, boardRes), (!is_authorized && { user: individualRes })), { individuals: __assign(__assign({}, individuals), (!!data_state && { data_state: data_state })) });
361
+ }
362
+ return [2, { boardRes: boardRes, individualRes: individualRes }];
363
+ }
364
+ });
365
+ });
366
+ }
@@ -1,2 +1,3 @@
1
1
  export declare const sleep: (milliseconds?: number) => Promise<unknown>;
2
2
  export declare const dangerousMessage: (message: string, callBack?: Function) => void;
3
+ export declare const setBaseUrl: (publicKey: string) => void;
@@ -1,3 +1,5 @@
1
+ import { axiosInstance } from '../api';
2
+ import { ENDPOINT_PATHS } from '../constants';
1
3
  export var sleep = function (milliseconds) {
2
4
  if (milliseconds === void 0) { milliseconds = 1000; }
3
5
  return new Promise(function (resolve) { return setTimeout(resolve, milliseconds); });
@@ -8,3 +10,11 @@ export var dangerousMessage = function (message, callBack) {
8
10
  }
9
11
  callBack === null || callBack === void 0 ? void 0 : callBack({ message: message });
10
12
  };
13
+ export var setBaseUrl = function (publicKey) {
14
+ var isProd = publicKey.includes('pk_live');
15
+ if (isProd) {
16
+ axiosInstance.defaults.baseURL = ENDPOINT_PATHS.PRODUCTION_BASE_URL;
17
+ return;
18
+ }
19
+ axiosInstance.defaults.baseURL = ENDPOINT_PATHS.SANDBOX_BASE_URL;
20
+ };
@@ -1,2 +1,3 @@
1
1
  export declare const dateFormat: (date: Date, fmt?: string) => string;
2
2
  export declare const getFutureDate: (years?: number) => Date;
3
+ export declare const convertToEnglishDateFormat: (d: Date) => string;
@@ -1,4 +1,5 @@
1
1
  import moment from 'moment';
2
+ import { convertNumbers2English } from './string';
2
3
  export var dateFormat = function (date, fmt) {
3
4
  if (fmt === void 0) { fmt = 'YYYY-MM-DD'; }
4
5
  return moment(date).format(fmt);
@@ -9,3 +10,8 @@ export var getFutureDate = function (years) {
9
10
  maxDate.setFullYear(maxDate.getFullYear() + futureY);
10
11
  return maxDate;
11
12
  };
13
+ export var convertToEnglishDateFormat = function (d) {
14
+ var date = new Date(d);
15
+ var formattedDate = dateFormat(date, 'YYYY-MM-DD');
16
+ return convertNumbers2English(formattedDate);
17
+ };
@@ -1 +1,2 @@
1
1
  export declare const isNetworkError: (error: string | null) => boolean;
2
+ export declare const isTokenExpired: (error: string | null) => boolean;
@@ -1,3 +1,6 @@
1
1
  export var isNetworkError = function (error) {
2
2
  return ['network error', 'network request failed'].includes((error || '').trim().toLowerCase());
3
3
  };
4
+ export var isTokenExpired = function (error) {
5
+ return ['token expired'].includes((error || '').trim().toLowerCase());
6
+ };
@@ -0,0 +1,6 @@
1
+ import { CountryTrackingData, DataLayer, LeadIdentificationData, PageTrackingData, EventPageTrackingData } from '../@types';
2
+ export declare const pushToDataLayer: (data: DataLayer | CountryTrackingData | LeadIdentificationData | EventPageTrackingData) => void;
3
+ export declare const initializeGTM: () => void;
4
+ export declare const sendCustomEventToGTM: (data: DataLayer) => void;
5
+ export declare const sendCustomDimension: (data: CountryTrackingData | LeadIdentificationData | EventPageTrackingData) => void;
6
+ export declare const sendPageView: (data: PageTrackingData) => void;
@@ -0,0 +1,29 @@
1
+ var __assign = (this && this.__assign) || function () {
2
+ __assign = Object.assign || function(t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
6
+ t[p] = s[p];
7
+ }
8
+ return t;
9
+ };
10
+ return __assign.apply(this, arguments);
11
+ };
12
+ import TagManager from 'react-gtm-module';
13
+ export var pushToDataLayer = function (data) {
14
+ if (window.dataLayer) {
15
+ window.dataLayer.push(data);
16
+ }
17
+ };
18
+ export var initializeGTM = function () {
19
+ TagManager.initialize({ gtmId: 'GTM-5RR5CKD' });
20
+ };
21
+ export var sendCustomEventToGTM = function (data) {
22
+ pushToDataLayer(__assign({ event_value: 0, event_noninteraction: 0, event_label: '' }, data));
23
+ };
24
+ export var sendCustomDimension = function (data) {
25
+ pushToDataLayer(data);
26
+ };
27
+ export var sendPageView = function (data) {
28
+ sendCustomDimension(__assign({ event: 'PageView' }, data));
29
+ };
@@ -10,3 +10,4 @@ export * from './rsa';
10
10
  export * from './common';
11
11
  export * from './date';
12
12
  export * from './error';
13
+ export * from './gtm';
@@ -10,3 +10,4 @@ export * from './rsa';
10
10
  export * from './common';
11
11
  export * from './date';
12
12
  export * from './error';
13
+ export * from './gtm';
@@ -3,3 +3,7 @@ export declare const encodeObjectBase64: (obj: any) => string;
3
3
  export declare const decodeObjectBase64: (str: string) => any;
4
4
  export declare const hasKey: (obj: any, key: string) => boolean;
5
5
  export declare const concatenateObjectValues: (data: Record<string, any>, keys: Array<string>) => string;
6
+ export declare const hasKeyValue: (obj: any, path: string, value: string | number | boolean) => boolean;
7
+ export declare const hasNoneEditableValue: (obj: any, path: string) => boolean;
8
+ export declare const hasEditableValue: (obj: any, path: string) => boolean;
9
+ export declare const hasVerifiedValue: (obj: any, path: string) => boolean;
@@ -1,3 +1,5 @@
1
+ import { get } from 'lodash-es';
2
+ import { FieldType, VerificationStatus } from '../@types';
1
3
  export var compareTwoObjects = function (obj1, obj2) {
2
4
  if (obj1 === obj2)
3
5
  return true;
@@ -33,3 +35,18 @@ export var concatenateObjectValues = function (data, keys) {
33
35
  }
34
36
  return result.trim();
35
37
  };
38
+ export var hasKeyValue = function (obj, path, value) {
39
+ return get(obj, path) === value;
40
+ };
41
+ export var hasNoneEditableValue = function (obj, path) {
42
+ var value = FieldType.NON_EDITABLE;
43
+ return hasKeyValue(obj, path, value);
44
+ };
45
+ export var hasEditableValue = function (obj, path) {
46
+ var value = FieldType.EDITABLE;
47
+ return hasKeyValue(obj, path, value);
48
+ };
49
+ export var hasVerifiedValue = function (obj, path) {
50
+ var value = VerificationStatus.VERIFIED;
51
+ return hasKeyValue(obj, path, value);
52
+ };
@@ -1,4 +1,4 @@
1
- import { DeviceInfo, User } from '../@types';
1
+ import { DeviceInfo, License, User } from '../@types';
2
2
  export declare const maskPhone: (str?: string) => string;
3
3
  export declare const shortenString: (str: string, length: number) => string;
4
4
  export declare const maskID: (str: string) => string;
@@ -42,7 +42,7 @@ export declare const getRequestHeaders: (deviceInfo: DeviceInfo) => {
42
42
  };
43
43
  export declare const removeRequestHeaders: () => void;
44
44
  export declare const getBaseUrl: () => string;
45
- export declare const getScreenNameBasedOnFlow: (flow: string, isAuthorizedUser?: boolean) => "CONNECT_NID_STEP" | "" | "BUSINESS_BUSINESS_TYPE_STEP" | "INDIVIDUAL_PERSONAL_INDIVIDUAL_INFO_STEP" | "INDIVIDUAL_LIST_STEP" | "BANK_BANK_DETAILS_STEP" | "TAX_TAX_DETAILS_STEP";
45
+ export declare const getScreenNameBasedOnFlow: (flow: string, isAuthorizedUser?: boolean) => "CONNECT_NID_STEP" | "" | "BUSINESS_BUSINESS_TYPE_STEP" | "INDIVIDUAL_PERSONAL_INDIVIDUAL_INFO_STEP" | "INDIVIDUAL_LIST_STEP" | "BANK_BANK_DETAILS_STEP" | "TAX_TAX_DETAILS_STEP" | "ENTITY_NAME_STEP" | "BRAND_INFO_STEP";
46
46
  export declare const getEighteenYearsAgo: () => string;
47
47
  export declare const isKW: (flag: string) => boolean;
48
48
  export declare const isSA: (flag: string) => boolean;
@@ -69,3 +69,6 @@ export declare const getUserNameObject: (name: string) => {
69
69
  last: string;
70
70
  };
71
71
  export declare const getFileType: (type: string) => "" | "image/jpeg" | "image/png" | "image/jpg" | "application/pdf";
72
+ export declare const isStringHasOneAsterisk: (value: string) => boolean;
73
+ export declare const isOtherLicense: (item?: License) => boolean;
74
+ export declare const formatNumberAsCurrency: (number: string) => string;
@@ -29,13 +29,13 @@ export var maskEmail = function (str) {
29
29
  return '';
30
30
  };
31
31
  export var shortenBrand = function (str) {
32
- if (str) {
33
- var name_2 = str.split(' ');
34
- if (name_2.length > 1)
35
- return name_2[0][0].toUpperCase() + name_2[name_2.length - 1][0].toUpperCase();
36
- return name_2[0][0].toUpperCase();
37
- }
38
- return '';
32
+ var trimmedStr = str === null || str === void 0 ? void 0 : str.trim();
33
+ if (!trimmedStr)
34
+ return '';
35
+ var name = trimmedStr.split(' ');
36
+ if (name.length > 1)
37
+ return name[0][0].toUpperCase() + name[name.length - 1][0].toUpperCase();
38
+ return name[0][0].toUpperCase();
39
39
  };
40
40
  export var showLastFour = function (str) {
41
41
  if (str && str.length >= 4) {
@@ -188,6 +188,12 @@ export var getScreenNameBasedOnFlow = function (flow, isAuthorizedUser) {
188
188
  if (flow === FlowsTypes.TAX) {
189
189
  return 'TAX_TAX_DETAILS_STEP';
190
190
  }
191
+ if (flow === FlowsTypes.BRAND) {
192
+ return 'BRAND_INFO_STEP';
193
+ }
194
+ if (flow === FlowsTypes.ENTITY) {
195
+ return 'ENTITY_NAME_STEP';
196
+ }
191
197
  return '';
192
198
  };
193
199
  export var getEighteenYearsAgo = function () {
@@ -292,3 +298,18 @@ export var getFileType = function (type) {
292
298
  return '';
293
299
  }
294
300
  };
301
+ export var isStringHasOneAsterisk = function (value) {
302
+ if (!value)
303
+ return false;
304
+ return value.includes('*') ? true : false;
305
+ };
306
+ export var isOtherLicense = function (item) {
307
+ var _a;
308
+ var number = (_a = item === null || item === void 0 ? void 0 : item.license) === null || _a === void 0 ? void 0 : _a.number;
309
+ return number === 'other_fl' || number === 'other_cr' || number === 'other_entity';
310
+ };
311
+ export var formatNumberAsCurrency = function (number) {
312
+ if (!number)
313
+ return '';
314
+ return parseInt(number).toLocaleString();
315
+ };