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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (488) 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 +18 -0
  49. package/build/constants/app.js +80 -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 +366 -297
  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 +6 -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 +7 -3
  88. package/build/features/bank/screens/Verify/Verify.js +3 -7
  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 +42 -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 +103 -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 +7 -3
  132. package/build/features/brand/screens/Verify/Verify.js +9 -22
  133. package/build/features/business/Business.js +7 -5
  134. package/build/features/business/screens/Activities/Activities.js +2 -1
  135. package/build/features/business/screens/Activities/ActivitiesList.d.ts +15 -68
  136. package/build/features/business/screens/Activities/ActivitiesList.js +226 -98
  137. package/build/features/business/screens/Activities/OperationStartDate.d.ts +2 -2
  138. package/build/features/business/screens/Activities/OperationStartDate.js +3 -3
  139. package/build/features/business/screens/Activities/validation.d.ts +165 -30
  140. package/build/features/business/screens/Activities/validation.js +5 -2
  141. package/build/features/business/screens/BrandDetails/BrandDetails.d.ts +5 -0
  142. package/build/features/business/screens/BrandDetails/BrandDetails.js +39 -0
  143. package/build/features/business/screens/BrandDetails/BrandName.d.ts +5 -0
  144. package/build/features/business/screens/BrandDetails/BrandName.js +36 -0
  145. package/build/features/business/screens/BrandDetails/Header.d.ts +5 -0
  146. package/build/features/business/screens/BrandDetails/Header.js +49 -0
  147. package/build/features/business/screens/BrandDetails/LicenseInfo.d.ts +5 -0
  148. package/build/features/business/screens/BrandDetails/LicenseInfo.js +38 -0
  149. package/build/features/{brand/screens/BrandActivities/OperationStartDate.d.ts → business/screens/BrandDetails/SalesChannel.d.ts} +5 -7
  150. package/build/features/business/screens/BrandDetails/SalesChannel.js +48 -0
  151. package/build/features/business/screens/BrandDetails/index.d.ts +3 -0
  152. package/build/features/business/screens/BrandDetails/index.js +2 -0
  153. package/build/features/business/screens/BusinessType/Article.d.ts +3 -1
  154. package/build/features/business/screens/BusinessType/Article.js +19 -54
  155. package/build/features/business/screens/BusinessType/BusinessType.js +36 -12
  156. package/build/features/business/screens/BusinessType/EntityLicenseList.d.ts +9 -0
  157. package/build/features/business/screens/BusinessType/EntityLicenseList.js +129 -0
  158. package/build/features/business/screens/BusinessType/EntityName.js +6 -7
  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/CivilID.js +2 -1
  166. package/build/features/business/screens/CivilID/IDNumber.js +2 -3
  167. package/build/features/business/screens/Customers/CustomerLocations.d.ts +44 -37
  168. package/build/features/business/screens/Customers/CustomerLocations.js +35 -19
  169. package/build/features/business/screens/Customers/Customers.js +29 -17
  170. package/build/features/business/screens/Customers/ExpectedCustomers.js +12 -4
  171. package/build/features/business/screens/Customers/ExpectedSalesRange.js +14 -6
  172. package/build/features/business/screens/Customers/RefundPolicy.d.ts +5 -5
  173. package/build/features/business/screens/Customers/RefundPolicy.js +15 -4
  174. package/build/features/business/screens/Customers/TransactionPolicy.js +19 -9
  175. package/build/features/business/screens/IDBOD/DOB.js +3 -3
  176. package/build/features/business/screens/IDBOD/ID.js +2 -3
  177. package/build/features/business/screens/IDBOD/IDBOD.js +2 -1
  178. package/build/features/business/screens/OTP/OTP.js +2 -2
  179. package/build/features/business/screens/OTP/OTPInput.js +5 -2
  180. package/build/features/business/screens/ResetPasswordSuccess/ResetPasswordSuccess.js +8 -3
  181. package/build/features/business/screens/Verify/OTPInput.js +7 -3
  182. package/build/features/business/screens/Verify/Verify.js +2 -2
  183. package/build/features/connect/Connect.d.ts +2 -0
  184. package/build/features/connect/Connect.js +86 -11
  185. package/build/features/connect/screens/BrandSegment/BrandSegment.d.ts +5 -0
  186. package/build/features/connect/screens/BrandSegment/BrandSegment.js +84 -0
  187. package/build/features/connect/screens/BrandSegment/SegmentLocations.d.ts +8 -0
  188. package/build/features/connect/screens/{Merchant/Segments.js → BrandSegment/SegmentLocations.js} +17 -25
  189. package/build/features/connect/screens/BrandSegment/SegmentProfits.d.ts +8 -0
  190. package/build/features/{brand/screens/BrandInfo/Segments.js → connect/screens/BrandSegment/SegmentProfits.js} +18 -26
  191. package/build/features/connect/screens/BrandSegment/SegmentTechs.d.ts +8 -0
  192. package/build/features/connect/screens/BrandSegment/SegmentTechs.js +66 -0
  193. package/build/features/connect/screens/{Merchant → BrandSegment}/TeamSize.js +12 -20
  194. package/build/features/connect/screens/BrandSegment/index.d.ts +3 -0
  195. package/build/features/connect/screens/BrandSegment/index.js +2 -0
  196. package/build/features/connect/screens/BrandSegment/validation.d.ts +17 -0
  197. package/build/features/connect/screens/BrandSegment/validation.js +9 -0
  198. package/build/features/connect/screens/CivilID/CivilID.js +7 -14
  199. package/build/features/connect/screens/CivilID/IDNumber.js +5 -6
  200. package/build/features/connect/screens/Individual/Email.js +17 -27
  201. package/build/features/connect/screens/Individual/Individual.js +9 -2
  202. package/build/features/connect/screens/Individual/MobileNumber.js +16 -15
  203. package/build/features/connect/screens/Individual/Name.js +11 -15
  204. package/build/features/connect/screens/Merchant/BrandList.js +4 -22
  205. package/build/features/connect/screens/Merchant/BrandName.js +4 -7
  206. package/build/features/connect/screens/Merchant/Merchant.js +14 -16
  207. package/build/features/connect/screens/Merchant/SalesChannels.js +6 -6
  208. package/build/features/connect/screens/Merchant/validation.d.ts +3 -6
  209. package/build/features/connect/screens/Merchant/validation.js +14 -17
  210. package/build/features/connect/screens/Mobile/Mobile.js +14 -17
  211. package/build/features/connect/screens/Mobile/MobileNumber.js +14 -10
  212. package/build/features/connect/screens/NID/DOB.js +3 -3
  213. package/build/features/connect/screens/NID/IDNumber.js +6 -7
  214. package/build/features/connect/screens/NID/NID.js +12 -2
  215. package/build/features/connect/screens/OTP/OTP.js +14 -16
  216. package/build/features/connect/screens/OTP/OTPInput.js +14 -2
  217. package/build/features/connect/screens/ThankYou/ThankYou.js +17 -2
  218. package/build/features/connectExpress/ConnectExpress.d.ts +1 -0
  219. package/build/features/connectExpress/ConnectExpress.js +72 -12
  220. package/build/features/connectExpress/screens/Brand/Brand.js +1 -1
  221. package/build/features/connectExpress/screens/CivilID/CivilID.js +2 -1
  222. package/build/features/connectExpress/screens/CivilID/IDNumber.js +6 -7
  223. package/build/features/connectExpress/screens/CivilIDMissed/CivilID.js +2 -1
  224. package/build/features/connectExpress/screens/CivilIDMissed/IDNumber.js +6 -7
  225. package/build/features/connectExpress/screens/CollectBusinessInfo/BrandName.d.ts +2 -1
  226. package/build/features/connectExpress/screens/CollectBusinessInfo/BrandName.js +5 -7
  227. package/build/features/connectExpress/screens/CollectBusinessInfo/CollectBusinessInfo.js +8 -5
  228. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseList.d.ts +2 -1
  229. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseList.js +9 -14
  230. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseNumber.d.ts +1 -1
  231. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseNumber.js +4 -4
  232. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseType.d.ts +4 -3
  233. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseType.js +4 -2
  234. package/build/features/connectExpress/screens/CollectBusinessInfo/TAC.d.ts +14 -1
  235. package/build/features/connectExpress/screens/CollectBusinessInfo/TAC.js +9 -10
  236. package/build/features/connectExpress/screens/CollectBusinessInfo/validation.js +4 -4
  237. package/build/features/connectExpress/screens/CollectIndividualInfo/CollectIndividualInfo.js +12 -7
  238. package/build/features/connectExpress/screens/CollectIndividualInfo/Email.d.ts +2 -1
  239. package/build/features/connectExpress/screens/CollectIndividualInfo/Email.js +6 -14
  240. package/build/features/connectExpress/screens/CollectIndividualInfo/MobileNumber.d.ts +1 -0
  241. package/build/features/connectExpress/screens/CollectIndividualInfo/MobileNumber.js +6 -2
  242. package/build/features/connectExpress/screens/CollectIndividualInfo/Name.d.ts +2 -1
  243. package/build/features/connectExpress/screens/CollectIndividualInfo/Name.js +3 -4
  244. package/build/features/connectExpress/screens/IdentityOTP/OTP.js +3 -3
  245. package/build/features/connectExpress/screens/IdentityOTP/OTPInput.js +5 -3
  246. package/build/features/connectExpress/screens/Mobile/Mobile.js +6 -4
  247. package/build/features/connectExpress/screens/Mobile/MobileNumber.d.ts +1 -0
  248. package/build/features/connectExpress/screens/Mobile/MobileNumber.js +6 -2
  249. package/build/features/connectExpress/screens/Mobile/TAC.d.ts +2 -1
  250. package/build/features/connectExpress/screens/Mobile/TAC.js +3 -1
  251. package/build/features/connectExpress/screens/NID/DOB.d.ts +2 -1
  252. package/build/features/connectExpress/screens/NID/DOB.js +3 -3
  253. package/build/features/connectExpress/screens/NID/IDNumber.d.ts +1 -0
  254. package/build/features/connectExpress/screens/NID/IDNumber.js +3 -4
  255. package/build/features/connectExpress/screens/NID/NID.js +6 -3
  256. package/build/features/connectExpress/screens/NID/TAC.d.ts +14 -1
  257. package/build/features/connectExpress/screens/NID/TAC.js +9 -10
  258. package/build/features/connectExpress/screens/NIDMissed/DOB.js +2 -2
  259. package/build/features/connectExpress/screens/NIDMissed/IDNumber.js +2 -3
  260. package/build/features/connectExpress/screens/NIDMissed/NID.js +2 -1
  261. package/build/features/connectExpress/screens/OTP/OTP.js +3 -3
  262. package/build/features/connectExpress/screens/OTP/OTPInput.js +6 -4
  263. package/build/features/connectExpress/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +2 -1
  264. package/build/features/entity/Entity.js +10 -6
  265. package/build/features/entity/screens/EntityCapital/ActivityList.d.ts +16 -68
  266. package/build/features/entity/screens/EntityCapital/ActivityList.js +221 -106
  267. package/build/features/entity/screens/EntityCapital/CapitalPaid.d.ts +3 -1
  268. package/build/features/entity/screens/EntityCapital/CapitalPaid.js +14 -15
  269. package/build/features/entity/screens/EntityCapital/CapitalShareCount.d.ts +3 -1
  270. package/build/features/entity/screens/EntityCapital/CapitalShareCount.js +10 -11
  271. package/build/features/entity/screens/EntityCapital/CapitalShareValue.d.ts +3 -1
  272. package/build/features/entity/screens/EntityCapital/CapitalShareValue.js +15 -16
  273. package/build/features/entity/screens/EntityCapital/EntityCapital.js +31 -20
  274. package/build/features/entity/screens/EntityCapital/validation.d.ts +175 -40
  275. package/build/features/entity/screens/EntityCapital/validation.js +9 -12
  276. package/build/features/entity/screens/EntityName/Article.d.ts +5 -1
  277. package/build/features/entity/screens/EntityName/Article.js +20 -54
  278. package/build/features/entity/screens/EntityName/EntityName.js +60 -16
  279. package/build/features/entity/screens/EntityName/EntityTypeList.d.ts +11 -27
  280. package/build/features/entity/screens/EntityName/EntityTypeList.js +32 -43
  281. package/build/features/entity/screens/EntityName/ExpiryDate.d.ts +5 -3
  282. package/build/features/entity/screens/EntityName/ExpiryDate.js +5 -5
  283. package/build/features/entity/screens/EntityName/IssuingDate.d.ts +5 -3
  284. package/build/features/entity/screens/EntityName/IssuingDate.js +4 -5
  285. package/build/features/entity/screens/EntityName/LegalName.d.ts +3 -1
  286. package/build/features/entity/screens/EntityName/LegalName.js +9 -6
  287. package/build/features/entity/screens/EntityName/LicenseCertificate.d.ts +4 -1
  288. package/build/features/entity/screens/EntityName/LicenseCertificate.js +12 -7
  289. package/build/features/entity/screens/EntityName/LicenseNumber.d.ts +3 -1
  290. package/build/features/entity/screens/EntityName/LicenseNumber.js +13 -11
  291. package/build/features/entity/screens/EntityName/UnifiedNumber.d.ts +3 -1
  292. package/build/features/entity/screens/EntityName/UnifiedNumber.js +9 -7
  293. package/build/features/entity/screens/EntityName/validation.d.ts +35 -35
  294. package/build/features/entity/screens/EntityName/validation.js +68 -93
  295. package/build/features/entity/screens/ResetPasswordSuccess/ResetPasswordSuccess.js +9 -4
  296. package/build/features/entity/screens/Verify/OTPInput.js +7 -3
  297. package/build/features/entity/screens/Verify/Verify.js +9 -22
  298. package/build/features/featuresScreens.js +13 -1
  299. package/build/features/individual/Individual.js +10 -6
  300. package/build/features/individual/screens/AdditionalIndividualInfo/AdditionalIndividualInfo.d.ts +2 -2
  301. package/build/features/individual/screens/AdditionalIndividualInfo/AdditionalIndividualInfo.js +54 -23
  302. package/build/features/individual/screens/AdditionalIndividualInfo/CivilIDFile.d.ts +7 -1
  303. package/build/features/individual/screens/AdditionalIndividualInfo/CivilIDFile.js +28 -10
  304. package/build/features/individual/screens/AdditionalIndividualInfo/InfluencerSwitch.d.ts +3 -1
  305. package/build/features/individual/screens/AdditionalIndividualInfo/InfluencerSwitch.js +17 -12
  306. package/build/features/individual/screens/AdditionalIndividualInfo/MonthlyIncome.d.ts +2 -1
  307. package/build/features/individual/screens/AdditionalIndividualInfo/MonthlyIncome.js +30 -41
  308. package/build/features/individual/screens/AdditionalIndividualInfo/Occupation.d.ts +3 -3
  309. package/build/features/individual/screens/AdditionalIndividualInfo/Occupation.js +94 -55
  310. package/build/features/individual/screens/AdditionalIndividualInfo/PEPSwitch.d.ts +5 -3
  311. package/build/features/individual/screens/AdditionalIndividualInfo/PEPSwitch.js +17 -12
  312. package/build/features/individual/screens/AdditionalIndividualInfo/ShareCount.d.ts +2 -1
  313. package/build/features/individual/screens/AdditionalIndividualInfo/ShareCount.js +9 -2
  314. package/build/features/individual/screens/AdditionalIndividualInfo/ShareValue.d.ts +2 -1
  315. package/build/features/individual/screens/AdditionalIndividualInfo/ShareValue.js +13 -7
  316. package/build/features/individual/screens/AdditionalIndividualInfo/SignatureFile.d.ts +4 -1
  317. package/build/features/individual/screens/AdditionalIndividualInfo/SignatureFile.js +13 -8
  318. package/build/features/individual/screens/AdditionalIndividualInfo/SourceOfIncome.d.ts +2 -1
  319. package/build/features/individual/screens/AdditionalIndividualInfo/SourceOfIncome.js +32 -42
  320. package/build/features/individual/screens/AdditionalIndividualInfo/validation.d.ts +8 -8
  321. package/build/features/individual/screens/AdditionalIndividualInfo/validation.js +8 -12
  322. package/build/features/individual/screens/IndividualList/IndividualList.d.ts +4 -4
  323. package/build/features/individual/screens/IndividualList/MobileNumber.js +0 -1
  324. package/build/features/individual/screens/IndividualList/UserList.js +10 -6
  325. package/build/features/individual/screens/IndividualPersonalInfo/BirthCity.d.ts +2 -0
  326. package/build/features/individual/screens/IndividualPersonalInfo/BirthCity.js +14 -20
  327. package/build/features/individual/screens/IndividualPersonalInfo/BirthCountry.d.ts +2 -0
  328. package/build/features/individual/screens/IndividualPersonalInfo/BirthCountry.js +8 -14
  329. package/build/features/individual/screens/IndividualPersonalInfo/DOB.d.ts +3 -1
  330. package/build/features/individual/screens/IndividualPersonalInfo/DOB.js +4 -4
  331. package/build/features/individual/screens/IndividualPersonalInfo/Email.d.ts +3 -1
  332. package/build/features/individual/screens/IndividualPersonalInfo/Email.js +3 -10
  333. package/build/features/individual/screens/IndividualPersonalInfo/ExpiryDate.d.ts +3 -1
  334. package/build/features/individual/screens/IndividualPersonalInfo/ExpiryDate.js +5 -7
  335. package/build/features/individual/screens/IndividualPersonalInfo/Gender.d.ts +5 -3
  336. package/build/features/individual/screens/IndividualPersonalInfo/Gender.js +5 -2
  337. package/build/features/individual/screens/IndividualPersonalInfo/ID.d.ts +3 -1
  338. package/build/features/individual/screens/IndividualPersonalInfo/ID.js +3 -10
  339. package/build/features/individual/screens/IndividualPersonalInfo/IndividualPersonalInfo.d.ts +2 -2
  340. package/build/features/individual/screens/IndividualPersonalInfo/IndividualPersonalInfo.js +79 -36
  341. package/build/features/individual/screens/IndividualPersonalInfo/IssuedCountry.d.ts +2 -0
  342. package/build/features/individual/screens/IndividualPersonalInfo/IssuedCountry.js +10 -21
  343. package/build/features/individual/screens/IndividualPersonalInfo/MobileNumber.d.ts +2 -0
  344. package/build/features/individual/screens/IndividualPersonalInfo/MobileNumber.js +14 -16
  345. package/build/features/individual/screens/IndividualPersonalInfo/Name.d.ts +3 -1
  346. package/build/features/individual/screens/IndividualPersonalInfo/Name.js +3 -10
  347. package/build/features/individual/screens/IndividualPersonalInfo/Nationality.d.ts +2 -0
  348. package/build/features/individual/screens/IndividualPersonalInfo/Nationality.js +10 -21
  349. package/build/features/individual/screens/IndividualPhoneInfo/MobileNumber.d.ts +1 -0
  350. package/build/features/individual/screens/IndividualPhoneInfo/MobileNumber.js +6 -3
  351. package/build/features/individual/screens/IndividualPhoneInfo/PhoneInfo.js +7 -3
  352. package/build/features/individual/screens/ResetPasswordSuccess/ResetPasswordSuccess.js +8 -3
  353. package/build/features/individual/screens/Verify/OTPInput.js +7 -3
  354. package/build/features/individual/screens/Verify/Verify.js +3 -7
  355. package/build/features/password/Password.js +7 -5
  356. package/build/features/password/screens/CreatePassword/CreatePassword.js +12 -18
  357. package/build/features/password/screens/OTP/OTP.js +2 -2
  358. package/build/features/password/screens/OTP/OTPInput.js +5 -2
  359. package/build/features/password/screens/ResetPasswordSuccess/ResetPasswordSuccess.js +8 -3
  360. package/build/features/password/screens/Verify/OTPInput.js +7 -3
  361. package/build/features/password/screens/Verify/Verify.js +9 -22
  362. package/build/features/shared/Address/CountryList.d.ts +7 -7
  363. package/build/features/shared/Address/CountryList.js +1 -1
  364. package/build/features/shared/Address/InputSelect.d.ts +7 -7
  365. package/build/features/shared/Address/InputSelect.js +1 -1
  366. package/build/features/shared/Button/Button.d.ts +3 -1
  367. package/build/features/shared/Button/Button.js +2 -2
  368. package/build/features/shared/Button/EmailProvidersButtons.js +9 -2
  369. package/build/features/shared/Button/FlowsButtons.js +22 -20
  370. package/build/features/shared/Button/IndividualActionButtons.d.ts +3 -1
  371. package/build/features/shared/Button/IndividualActionButtons.js +28 -4
  372. package/build/features/shared/Calender/Calender.d.ts +13 -0
  373. package/build/features/shared/Calender/Calender.js +56 -0
  374. package/build/features/shared/Calender/index.d.ts +2 -0
  375. package/build/features/shared/Calender/index.js +2 -0
  376. package/build/features/shared/CheckIcon/CheckIcon.d.ts +7 -1
  377. package/build/features/shared/CheckIcon/CheckIcon.js +7 -6
  378. package/build/features/shared/Chip/Chip.d.ts +3 -0
  379. package/build/features/shared/Chip/Chip.js +21 -0
  380. package/build/features/shared/Chip/index.d.ts +2 -0
  381. package/build/features/shared/Chip/index.js +2 -0
  382. package/build/features/shared/Containers/FeatureContainer.d.ts +4 -1
  383. package/build/features/shared/Containers/FeatureContainer.js +5 -4
  384. package/build/features/shared/Containers/ScreenContainer.d.ts +1 -1
  385. package/build/features/shared/Dot/Dot.d.ts +8 -0
  386. package/build/features/shared/Dot/Dot.js +29 -0
  387. package/build/features/shared/Dot/index.d.ts +2 -0
  388. package/build/features/shared/Dot/index.js +2 -0
  389. package/build/features/shared/EndAdornment/EndAdornment.d.ts +10 -0
  390. package/build/features/shared/EndAdornment/EndAdornment.js +17 -0
  391. package/build/features/shared/EndAdornment/EndAdornmentExpanded.d.ts +7 -0
  392. package/build/features/shared/EndAdornment/EndAdornmentExpanded.js +13 -0
  393. package/build/features/shared/EndAdornment/index.d.ts +3 -0
  394. package/build/features/shared/EndAdornment/index.js +3 -0
  395. package/build/features/shared/Footer/Footer.js +8 -0
  396. package/build/features/shared/Footer/PoweredByFooter.d.ts +9 -0
  397. package/build/features/shared/Footer/PoweredByFooter.js +36 -0
  398. package/build/features/shared/Footer/index.d.ts +3 -2
  399. package/build/features/shared/Footer/index.js +3 -2
  400. package/build/features/shared/GenericError/GenericError.js +1 -1
  401. package/build/features/shared/Input/Input.d.ts +5 -6
  402. package/build/features/shared/Input/Input.js +2 -3
  403. package/build/features/shared/Input/index.d.ts +2 -1
  404. package/build/features/shared/InputSelect/InputSelect.d.ts +4 -0
  405. package/build/features/shared/InputSelect/InputSelect.js +33 -0
  406. package/build/features/shared/InputSelect/index.d.ts +2 -0
  407. package/build/features/shared/InputSelect/index.js +2 -0
  408. package/build/features/shared/OTP/OTP.d.ts +2 -1
  409. package/build/features/shared/OTP/OTP.js +2 -2
  410. package/build/features/shared/SalesChannels/SaleChannelIconsInput.d.ts +3 -1
  411. package/build/features/shared/SalesChannels/SaleChannelIconsInput.js +8 -6
  412. package/build/features/shared/SalesChannels/SalesChannel.d.ts +3 -1
  413. package/build/features/shared/SalesChannels/SalesChannel.js +9 -4
  414. package/build/features/shared/Search/Search.d.ts +2 -1
  415. package/build/features/shared/Search/Search.js +2 -2
  416. package/build/features/shared/SuccessFlowButtons/SuccessFlowButtons.js +19 -8
  417. package/build/features/shared/SuccessScreen/SuccessScreen.d.ts +3 -1
  418. package/build/features/shared/SuccessScreen/SuccessScreen.js +3 -2
  419. package/build/features/shared/UploadFile/FileUpload.d.ts +32 -0
  420. package/build/features/shared/UploadFile/FileUpload.js +267 -0
  421. package/build/features/shared/UploadFile/UploadFile.d.ts +1 -1
  422. package/build/features/shared/UploadFile/UploadFile.js +7 -7
  423. package/build/features/shared/UploadFile/UploadWrapper.d.ts +36 -0
  424. package/build/features/shared/UploadFile/UploadWrapper.js +115 -0
  425. package/build/features/shared/UploadFile/index.d.ts +2 -1
  426. package/build/features/shared/UploadFile/index.js +2 -1
  427. package/build/features/shared/UploadMultipleFile/UploadFile.d.ts +4 -2
  428. package/build/features/shared/UploadMultipleFile/UploadFile.js +15 -12
  429. package/build/features/shared/UploadMultipleFile/UploadMultipleFile.d.ts +4 -2
  430. package/build/features/shared/UploadMultipleFile/UploadMultipleFile.js +4 -4
  431. package/build/features/signIn/SignIn.js +3 -4
  432. package/build/features/signIn/screens/Email/Email.js +2 -1
  433. package/build/features/signIn/screens/Mobile/Mobile.js +2 -1
  434. package/build/features/signIn/screens/OTP/OTP.js +2 -2
  435. package/build/features/signIn/screens/OTP/OTPInput.js +4 -2
  436. package/build/features/signIn/screens/Password/Password.js +2 -1
  437. package/build/features/tax/Tax.js +10 -6
  438. package/build/features/tax/screens/ResetPasswordSuccess/ResetPasswordSuccess.js +9 -4
  439. package/build/features/tax/screens/TaxDetails/ConfirmPolicy.d.ts +4 -1
  440. package/build/features/tax/screens/TaxDetails/ConfirmPolicy.js +12 -12
  441. package/build/features/tax/screens/TaxDetails/TaxDetails.js +23 -10
  442. package/build/features/tax/screens/TaxDetails/TaxDocument.d.ts +4 -1
  443. package/build/features/tax/screens/TaxDetails/TaxDocument.js +6 -5
  444. package/build/features/tax/screens/TaxDetails/VATId.d.ts +5 -1
  445. package/build/features/tax/screens/TaxDetails/VATId.js +6 -10
  446. package/build/features/tax/screens/TaxDetails/validation.d.ts +4 -4
  447. package/build/features/tax/screens/TaxDetails/validation.js +2 -5
  448. package/build/features/tax/screens/Verify/OTPInput.js +7 -3
  449. package/build/features/tax/screens/Verify/Verify.js +8 -24
  450. package/build/hooks/index.d.ts +5 -0
  451. package/build/hooks/index.js +5 -0
  452. package/build/hooks/useAppConfig.d.ts +4 -2
  453. package/build/hooks/useAppConfig.js +18 -16
  454. package/build/hooks/useDataNoneEditable.d.ts +2 -0
  455. package/build/hooks/useDataNoneEditable.js +19 -0
  456. package/build/hooks/useDataVerified.d.ts +6 -0
  457. package/build/hooks/useDataVerified.js +19 -0
  458. package/build/hooks/useErrorListener.d.ts +2 -1
  459. package/build/hooks/useErrorListener.js +16 -1
  460. package/build/hooks/useExcludeReadOnlyFelids.d.ts +11 -0
  461. package/build/hooks/useExcludeReadOnlyFelids.js +33 -0
  462. package/build/hooks/useFormErrorAndUpdateReadOnly.d.ts +6 -0
  463. package/build/hooks/useFormErrorAndUpdateReadOnly.js +48 -0
  464. package/build/hooks/useFormReadOnly.d.ts +6 -0
  465. package/build/hooks/useFormReadOnly.js +40 -0
  466. package/build/hooks/useVerifyToken.js +1 -1
  467. package/build/theme/shadows.js +1 -1
  468. package/build/utils/array.d.ts +14 -2
  469. package/build/utils/array.js +187 -2
  470. package/build/utils/common.d.ts +1 -0
  471. package/build/utils/common.js +10 -0
  472. package/build/utils/date.d.ts +1 -0
  473. package/build/utils/date.js +6 -0
  474. package/build/utils/error.d.ts +1 -0
  475. package/build/utils/error.js +3 -0
  476. package/build/utils/gtm.d.ts +6 -0
  477. package/build/utils/gtm.js +29 -0
  478. package/build/utils/index.d.ts +1 -0
  479. package/build/utils/index.js +1 -0
  480. package/build/utils/object.d.ts +5 -0
  481. package/build/utils/object.js +31 -0
  482. package/build/utils/string.d.ts +5 -2
  483. package/build/utils/string.js +28 -7
  484. package/package.json +4 -2
  485. package/build/features/brand/screens/BrandActivities/OperationStartDate.js +0 -45
  486. package/build/features/brand/screens/BrandInfo/Segments.d.ts +0 -8
  487. package/build/features/connect/screens/Merchant/Segments.d.ts +0 -8
  488. /package/build/features/{brand/screens/BrandInfo → connect/screens/BrandSegment}/TeamSize.d.ts +0 -0
@@ -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 = '__'; }
@@ -154,14 +200,14 @@ export var getRecentDocumentBasedOnPurpose = function (documents, purpose) {
154
200
  if ((documents || []).length === 0)
155
201
  return [];
156
202
  var filteredByPurpose = documents.filter(function (doc) {
157
- return doc.file_details && doc.file_details.find(function (file) { return file.purpose === purpose; });
203
+ return doc.type === purpose;
158
204
  });
159
205
  if ((filteredByPurpose || []).length > 0) {
160
206
  return filteredByPurpose.sort(function (a, b) { return b.created - a.created; })[0];
161
207
  }
162
208
  else {
163
209
  return documents
164
- .filter(function (doc) { var _a; return ((_a = doc.file_details) === null || _a === void 0 ? void 0 : _a.length) === 0 && doc.id; })
210
+ .filter(function (doc) { var _a; return !((_a = doc.file_details) === null || _a === void 0 ? void 0 : _a.length) && doc.id; })
165
211
  .sort(function (a, b) { return b.created - a.created; })[0];
166
212
  }
167
213
  };
@@ -179,3 +225,142 @@ export var findInArrayOrSubArray = function (items, value) {
179
225
  });
180
226
  return found;
181
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,8 @@ 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;
10
+ export declare function deepCopy(obj: any): any;
@@ -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,32 @@ 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
+ };
53
+ export function deepCopy(obj) {
54
+ if (typeof obj !== 'object') {
55
+ return obj;
56
+ }
57
+ if (Array.isArray(obj)) {
58
+ return obj.map(function (item) { return deepCopy(item); });
59
+ }
60
+ var newObj = {};
61
+ for (var key in obj) {
62
+ var value = obj[key];
63
+ newObj[key] = deepCopy(value);
64
+ }
65
+ return newObj;
66
+ }
@@ -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
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tap-payments/auth-jsconnect",
3
- "version": "2.3.7-test",
3
+ "version": "2.3.7",
4
4
  "description": "connect library, auth",
5
5
  "private": false,
6
6
  "main": "build/index.js",
@@ -11,7 +11,7 @@
11
11
  "README.md"
12
12
  ],
13
13
  "scripts": {
14
- "husky:setup": "npx husky install",
14
+ "prepare": "npx husky install",
15
15
  "prettier": "prettier --list-different \"src/**/*.{md,mdx,ts,js,tsx,jsx,json}\" *.json *.js",
16
16
  "prettier:fix": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md,css,json}\" *.json *.js",
17
17
  "lint": "eslint src --color --ext .js,.jsx,.ts,.tsx,.json",
@@ -38,6 +38,7 @@
38
38
  "@types/react": "^18.0.15",
39
39
  "@types/react-calendar": "~3.5.1",
40
40
  "@types/react-dom": "^18.0.6",
41
+ "@types/react-gtm-module": "^2.0.1",
41
42
  "@typescript-eslint/eslint-plugin": "^5.30.5",
42
43
  "@typescript-eslint/parser": "^5.30.5",
43
44
  "babel-loader": "^8.2.5",
@@ -95,6 +96,7 @@
95
96
  "react-device-detect": "^2.2.2",
96
97
  "react-dom": "^18.2.0",
97
98
  "react-dropzone": "^14.2.2",
99
+ "react-gtm-module": "^2.0.11",
98
100
  "react-hook-form": "^7.33.1",
99
101
  "react-i18next": "^11.18.1",
100
102
  "react-multi-date-picker": "^3.3.4",
@@ -1,45 +0,0 @@
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 { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
- import { useTranslation } from 'react-i18next';
14
- import { useController, useFormContext } from 'react-hook-form';
15
- import DatePicker from '../../../../components/DatePicker';
16
- import Text from '../../../../components/Text';
17
- import { ScreenContainer } from '../../../shared/Containers';
18
- import { useAppDispatch, useAppSelector } from '../../../../hooks';
19
- import { brandSelector, clearError } from '../../../app/brand/brandStore';
20
- import { alpha, styled } from '@mui/material/styles';
21
- export var InputLabelStyled = styled(Text)(function (_a) {
22
- var theme = _a.theme;
23
- return (__assign({ margin: theme.spacing(2.5, 2.5, 1.5, 2.5), color: alpha(theme.palette.text.primary, 0.4) }, theme.typography.caption));
24
- });
25
- export var MandatoryStyled = styled('span')(function (_a) {
26
- var theme = _a.theme;
27
- return (__assign(__assign({ color: alpha(theme.palette.error.light, 0.4) }, theme.typography.h6), { fontWeight: theme.typography.fontWeightLight, verticalAlign: 'sub' }));
28
- });
29
- var OperationStartDate = function (_a) {
30
- var _b;
31
- var onDateClicked = _a.onDateClicked;
32
- var t = useTranslation().t;
33
- var dispatch = useAppDispatch();
34
- var control = useFormContext().control;
35
- var error = useAppSelector(brandSelector).error;
36
- var oDateControl = useController({ control: control, name: 'operationStartDate' });
37
- var handleOperationStartDateChange = function (data) {
38
- if (error)
39
- dispatch(clearError());
40
- oDateControl.field.onChange(data);
41
- };
42
- var dateValue = (_b = oDateControl === null || oDateControl === void 0 ? void 0 : oDateControl.field) === null || _b === void 0 ? void 0 : _b.value;
43
- return (_jsxs(ScreenContainer, { children: [_jsxs(InputLabelStyled, { children: [t('business_start_date'), _jsx(MandatoryStyled, { children: "*" })] }), _jsx(DatePicker, { readOnly: true, defaultValue: dateValue ? new Date(dateValue) : new Date(), dir: 'ltr', locale: 'en', onClick: function () { return onDateClicked === null || onDateClicked === void 0 ? void 0 : onDateClicked(true); }, onDatePicked: function () { return onDateClicked === null || onDateClicked === void 0 ? void 0 : onDateClicked(false); }, onDateChange: handleOperationStartDateChange })] }));
44
- };
45
- export default OperationStartDate;
@@ -1,8 +0,0 @@
1
- /// <reference types="react" />
2
- interface SegmentsProps {
3
- show: boolean;
4
- onListOpen?: () => void;
5
- onListClose?: () => void;
6
- }
7
- declare const Segments: ({ show, onListOpen, onListClose }: SegmentsProps) => JSX.Element;
8
- export default Segments;
@@ -1,8 +0,0 @@
1
- /// <reference types="react" />
2
- interface SegmentsProps {
3
- show: boolean;
4
- onListOpen?: () => void;
5
- onListClose?: () => void;
6
- }
7
- declare const Segments: ({ show, onListOpen, onListClose }: SegmentsProps) => JSX.Element;
8
- export default Segments;