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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (493) hide show
  1. package/README.md +1 -1
  2. package/build/@types/app.d.ts +266 -15
  3. package/build/@types/app.js +7 -0
  4. package/build/@types/form.d.ts +31 -23
  5. package/build/@types/theme.d.ts +1 -1
  6. package/build/@types/user.d.ts +39 -3
  7. package/build/api/account.d.ts +2 -2
  8. package/build/api/auth.d.ts +12 -11
  9. package/build/api/auth.js +5 -1
  10. package/build/api/availabilityServices.d.ts +3 -3
  11. package/build/api/axios.js +1 -1
  12. package/build/api/board.d.ts +3 -3
  13. package/build/api/brand.d.ts +1 -1
  14. package/build/api/country.d.ts +2 -1
  15. package/build/api/country.js +8 -1
  16. package/build/api/data.d.ts +17 -10
  17. package/build/api/data.js +26 -2
  18. package/build/api/document.d.ts +2 -2
  19. package/build/api/entity.d.ts +13 -8
  20. package/build/api/entity.js +32 -1
  21. package/build/api/file.d.ts +1 -1
  22. package/build/api/index.d.ts +26 -5
  23. package/build/api/individual.d.ts +29 -11
  24. package/build/api/individual.js +9 -1
  25. package/build/api/init.d.ts +2 -1
  26. package/build/api/lead.d.ts +15 -10
  27. package/build/api/lead.js +58 -1
  28. package/build/api/operator.d.ts +10 -1
  29. package/build/api/operator.js +10 -2
  30. package/build/api/user.d.ts +2 -2
  31. package/build/app/rootReducer.d.ts +1 -0
  32. package/build/app/rootReducer.js +3 -1
  33. package/build/app/settings.d.ts +37 -3
  34. package/build/app/settings.js +116 -39
  35. package/build/app/store.d.ts +6 -4
  36. package/build/assets/locales/ar.json +24 -1
  37. package/build/assets/locales/en.json +24 -1
  38. package/build/components/AnimationFlow/AnimationFlow.d.ts +2 -1
  39. package/build/components/AnimationFlow/AnimationFlow.js +3 -3
  40. package/build/components/AnimationFlow/BottomSheet.js +26 -5
  41. package/build/components/AnimationFlow/Dialog.d.ts +2 -1
  42. package/build/components/AnimationFlow/Dialog.js +2 -2
  43. package/build/components/ArabicDatePicker/ArabicDatePicker.d.ts +5 -2
  44. package/build/components/ArabicDatePicker/ArabicDatePicker.js +45 -23
  45. package/build/components/ArabicDatePicker/arabicAr.d.ts +8 -0
  46. package/build/components/ArabicDatePicker/arabicAr.js +32 -0
  47. package/build/components/ArabicDatePicker/arabicEn.d.ts +8 -0
  48. package/build/components/ArabicDatePicker/arabicEn.js +32 -0
  49. package/build/components/ArabicDatePicker/style.css +45 -5
  50. package/build/components/DatePicker/DatePicker.d.ts +3 -1
  51. package/build/components/DatePicker/DatePicker.js +23 -17
  52. package/build/components/ExpandIcon/ExpandIcon.d.ts +2 -0
  53. package/build/components/SimpleList/SimpleList.d.ts +2 -1
  54. package/build/components/SimpleList/SimpleList.js +12 -9
  55. package/build/components/Slide/Slide.d.ts +1 -1
  56. package/build/constants/api.d.ts +9 -0
  57. package/build/constants/api.js +18 -1
  58. package/build/constants/app.d.ts +9 -1
  59. package/build/constants/app.js +84 -16
  60. package/build/constants/assets.d.ts +4 -0
  61. package/build/constants/assets.js +4 -0
  62. package/build/constants/dummy.d.ts +62 -0
  63. package/build/constants/dummy.js +603 -0
  64. package/build/constants/validation.d.ts +2 -2
  65. package/build/constants/validation.js +3 -3
  66. package/build/features/app/bank/bankStore.d.ts +94 -10
  67. package/build/features/app/bank/bankStore.js +110 -54
  68. package/build/features/app/board/boardStore.d.ts +66 -0
  69. package/build/features/app/board/boardStore.js +223 -0
  70. package/build/features/app/brand/brandStore.d.ts +161 -18
  71. package/build/features/app/brand/brandStore.js +295 -145
  72. package/build/features/app/business/businessStore.d.ts +171 -18
  73. package/build/features/app/business/businessStore.js +297 -198
  74. package/build/features/app/connect/connectStore.d.ts +180 -14
  75. package/build/features/app/connect/connectStore.js +342 -95
  76. package/build/features/app/connectExpress/connectExpressStore.d.ts +273 -25
  77. package/build/features/app/connectExpress/connectExpressStore.js +453 -71
  78. package/build/features/app/entity/entityStore.d.ts +98 -10
  79. package/build/features/app/entity/entityStore.js +150 -75
  80. package/build/features/app/individual/individualStore.d.ts +200 -28
  81. package/build/features/app/individual/individualStore.js +346 -222
  82. package/build/features/app/password/passwordStore.d.ts +114 -12
  83. package/build/features/app/password/passwordStore.js +113 -43
  84. package/build/features/app/signIn/signInStore.d.ts +61 -7
  85. package/build/features/app/signIn/signInStore.js +1 -1
  86. package/build/features/app/tax/taxStore.d.ts +83 -9
  87. package/build/features/app/tax/taxStore.js +97 -48
  88. package/build/features/bank/Bank.d.ts +1 -0
  89. package/build/features/bank/Bank.js +11 -6
  90. package/build/features/bank/screens/BankDetails/BankDetails.js +19 -14
  91. package/build/features/bank/screens/BankDetails/BankName.d.ts +3 -2
  92. package/build/features/bank/screens/BankDetails/BankName.js +4 -5
  93. package/build/features/bank/screens/BankDetails/BankStatement.d.ts +3 -2
  94. package/build/features/bank/screens/BankDetails/BankStatement.js +5 -4
  95. package/build/features/bank/screens/BankDetails/Beneficiary.d.ts +2 -1
  96. package/build/features/bank/screens/BankDetails/Beneficiary.js +8 -10
  97. package/build/features/bank/screens/BankDetails/ConfirmPolicy.d.ts +1 -1
  98. package/build/features/bank/screens/BankDetails/IBAN.d.ts +2 -1
  99. package/build/features/bank/screens/BankDetails/IBAN.js +4 -6
  100. package/build/features/bank/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +13 -5
  101. package/build/features/bank/screens/Verify/OTPInput.js +3 -1
  102. package/build/features/bank/screens/Verify/Verify.js +2 -2
  103. package/build/features/board/Board.d.ts +10 -0
  104. package/build/features/board/Board.js +74 -0
  105. package/build/features/board/index.d.ts +1 -0
  106. package/build/features/board/index.js +1 -0
  107. package/build/features/board/screens/ResetPasswordSuccess/ResetPasswordSuccess.d.ts +5 -0
  108. package/build/features/board/screens/ResetPasswordSuccess/ResetPasswordSuccess.js +21 -0
  109. package/build/features/board/screens/ResetPasswordSuccess/index.d.ts +3 -0
  110. package/build/features/board/screens/ResetPasswordSuccess/index.js +2 -0
  111. package/build/features/board/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.d.ts +3 -0
  112. package/build/features/board/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +35 -0
  113. package/build/features/board/screens/SuccessWithFlowButtons/index.d.ts +2 -0
  114. package/build/features/board/screens/SuccessWithFlowButtons/index.js +2 -0
  115. package/build/features/board/screens/Verify/OTPInput.d.ts +7 -0
  116. package/build/features/board/screens/Verify/OTPInput.js +51 -0
  117. package/build/features/board/screens/Verify/Verify.d.ts +5 -0
  118. package/build/features/board/screens/Verify/Verify.js +74 -0
  119. package/build/features/board/screens/Verify/index.d.ts +2 -0
  120. package/build/features/board/screens/Verify/index.js +2 -0
  121. package/build/features/board/screens/Verify/validation.d.ts +8 -0
  122. package/build/features/board/screens/Verify/validation.js +4 -0
  123. package/build/features/brand/Brand.d.ts +1 -0
  124. package/build/features/brand/Brand.js +11 -6
  125. package/build/features/brand/screens/BrandActivities/ActivitiesList.d.ts +6 -20
  126. package/build/features/brand/screens/BrandActivities/ActivitiesList.js +26 -23
  127. package/build/features/brand/screens/BrandActivities/BrandActivities.js +31 -8
  128. package/build/features/brand/screens/BrandActivities/CustomerBase.d.ts +7 -30
  129. package/build/features/brand/screens/BrandActivities/CustomerBase.js +13 -25
  130. package/build/features/brand/screens/BrandActivities/ExpectedCustomers.d.ts +2 -1
  131. package/build/features/brand/screens/BrandActivities/ExpectedCustomers.js +12 -13
  132. package/build/features/brand/screens/BrandActivities/ExpectedSalesRange.d.ts +2 -1
  133. package/build/features/brand/screens/BrandActivities/ExpectedSalesRange.js +22 -23
  134. package/build/features/brand/screens/BrandActivities/RefundPolicy.d.ts +5 -5
  135. package/build/features/brand/screens/BrandActivities/RefundPolicy.js +3 -3
  136. package/build/features/brand/screens/BrandActivities/TAC.d.ts +3 -4
  137. package/build/features/brand/screens/BrandActivities/TAC.js +3 -3
  138. package/build/features/brand/screens/BrandActivities/TransactionPolicy.d.ts +1 -1
  139. package/build/features/brand/screens/BrandActivities/TransactionPolicy.js +3 -3
  140. package/build/features/brand/screens/BrandActivities/validation.d.ts +36 -36
  141. package/build/features/brand/screens/BrandActivities/validation.js +5 -10
  142. package/build/features/brand/screens/BrandInfo/BrandInfo.js +18 -31
  143. package/build/features/brand/screens/BrandInfo/BrandLogo.d.ts +3 -3
  144. package/build/features/brand/screens/BrandInfo/BrandLogo.js +3 -14
  145. package/build/features/brand/screens/BrandInfo/BrandName.d.ts +2 -2
  146. package/build/features/brand/screens/BrandInfo/BrandName.js +4 -7
  147. package/build/features/brand/screens/BrandInfo/SalesChannels.js +17 -6
  148. package/build/features/brand/screens/BrandInfo/validation.d.ts +21 -6
  149. package/build/features/brand/screens/BrandInfo/validation.js +9 -8
  150. package/build/features/brand/screens/BrandSegmentInfo/BrandSegmentInfo.d.ts +5 -0
  151. package/build/features/brand/screens/BrandSegmentInfo/BrandSegmentInfo.js +103 -0
  152. package/build/features/brand/screens/BrandSegmentInfo/SegmentLocations.d.ts +10 -0
  153. package/build/features/brand/screens/BrandSegmentInfo/SegmentLocations.js +69 -0
  154. package/build/features/brand/screens/BrandSegmentInfo/SegmentProfits.d.ts +10 -0
  155. package/build/features/brand/screens/BrandSegmentInfo/SegmentProfits.js +69 -0
  156. package/build/features/brand/screens/BrandSegmentInfo/SegmentTechs.d.ts +10 -0
  157. package/build/features/brand/screens/BrandSegmentInfo/SegmentTechs.js +69 -0
  158. package/build/features/brand/screens/{BrandInfo → BrandSegmentInfo}/TeamSize.d.ts +2 -1
  159. package/build/features/brand/screens/{BrandInfo → BrandSegmentInfo}/TeamSize.js +18 -33
  160. package/build/features/brand/screens/BrandSegmentInfo/index.d.ts +2 -0
  161. package/build/features/brand/screens/BrandSegmentInfo/index.js +2 -0
  162. package/build/features/brand/screens/BrandSegmentInfo/validation.d.ts +17 -0
  163. package/build/features/brand/screens/BrandSegmentInfo/validation.js +9 -0
  164. package/build/features/brand/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +13 -5
  165. package/build/features/brand/screens/Verify/OTPInput.js +3 -1
  166. package/build/features/brand/screens/Verify/Verify.js +2 -2
  167. package/build/features/business/Business.js +4 -1
  168. package/build/features/business/screens/Activities/Activities.js +2 -1
  169. package/build/features/business/screens/Activities/ActivitiesList.d.ts +13 -61
  170. package/build/features/business/screens/Activities/ActivitiesList.js +226 -103
  171. package/build/features/business/screens/Activities/OperationStartDate.d.ts +1 -1
  172. package/build/features/business/screens/Activities/OperationStartDate.js +2 -2
  173. package/build/features/business/screens/Activities/validation.d.ts +165 -30
  174. package/build/features/business/screens/Activities/validation.js +5 -2
  175. package/build/features/business/screens/BrandDetails/SalesChannel.d.ts +1 -1
  176. package/build/features/business/screens/BusinessType/Article.d.ts +1 -1
  177. package/build/features/business/screens/BusinessType/BusinessType.js +14 -6
  178. package/build/features/business/screens/BusinessType/EntityLicenseList.js +3 -6
  179. package/build/features/business/screens/BusinessType/EntityName.js +4 -5
  180. package/build/features/business/screens/BusinessType/LicenseList.js +6 -9
  181. package/build/features/business/screens/BusinessType/LicenseNumber.js +10 -9
  182. package/build/features/business/screens/BusinessType/LicenseType.d.ts +3 -3
  183. package/build/features/business/screens/BusinessType/validation.d.ts +10 -0
  184. package/build/features/business/screens/BusinessType/validation.js +18 -2
  185. package/build/features/business/screens/CivilID/CivilID.js +2 -1
  186. package/build/features/business/screens/CivilID/IDNumber.js +2 -3
  187. package/build/features/business/screens/Customers/CustomerLocations.d.ts +41 -29
  188. package/build/features/business/screens/Customers/CustomerLocations.js +35 -19
  189. package/build/features/business/screens/Customers/Customers.js +29 -17
  190. package/build/features/business/screens/Customers/ExpectedCustomers.js +8 -10
  191. package/build/features/business/screens/Customers/ExpectedSalesRange.js +13 -15
  192. package/build/features/business/screens/Customers/RefundPolicy.d.ts +4 -4
  193. package/build/features/business/screens/Customers/RefundPolicy.js +15 -4
  194. package/build/features/business/screens/Customers/TransactionPolicy.js +19 -9
  195. package/build/features/business/screens/IDBOD/DOB.js +2 -2
  196. package/build/features/business/screens/IDBOD/ID.js +7 -4
  197. package/build/features/business/screens/IDBOD/IDBOD.js +9 -17
  198. package/build/features/business/screens/IDBOD/validation.d.ts +10 -0
  199. package/build/features/business/screens/IDBOD/validation.js +4 -0
  200. package/build/features/business/screens/OTP/OTP.js +2 -2
  201. package/build/features/business/screens/OTP/OTPInput.js +5 -2
  202. package/build/features/business/screens/Verify/OTPInput.js +3 -1
  203. package/build/features/business/screens/Verify/Verify.js +2 -2
  204. package/build/features/connect/Connect.d.ts +2 -0
  205. package/build/features/connect/Connect.js +95 -13
  206. package/build/features/connect/screens/BrandSegment/BrandSegment.d.ts +5 -0
  207. package/build/features/connect/screens/BrandSegment/BrandSegment.js +84 -0
  208. package/build/features/connect/screens/BrandSegment/SegmentLocations.d.ts +8 -0
  209. package/build/features/{brand/screens/BrandInfo/Segments.js → connect/screens/BrandSegment/SegmentLocations.js} +19 -37
  210. package/build/features/connect/screens/BrandSegment/SegmentProfits.d.ts +8 -0
  211. package/build/features/connect/screens/{Merchant/Segments.js → BrandSegment/SegmentProfits.js} +17 -30
  212. package/build/features/connect/screens/BrandSegment/SegmentTechs.d.ts +8 -0
  213. package/build/features/connect/screens/BrandSegment/SegmentTechs.js +66 -0
  214. package/build/features/connect/screens/{Merchant → BrandSegment}/TeamSize.js +12 -25
  215. package/build/features/connect/screens/BrandSegment/index.d.ts +3 -0
  216. package/build/features/connect/screens/BrandSegment/index.js +2 -0
  217. package/build/features/connect/screens/BrandSegment/validation.d.ts +17 -0
  218. package/build/features/connect/screens/BrandSegment/validation.js +9 -0
  219. package/build/features/connect/screens/BusinessCountry/BusinessCountry.d.ts +5 -0
  220. package/build/features/connect/screens/BusinessCountry/BusinessCountry.js +103 -0
  221. package/build/features/connect/screens/BusinessCountry/index.d.ts +3 -0
  222. package/build/features/connect/screens/BusinessCountry/index.js +2 -0
  223. package/build/features/connect/screens/CivilID/CivilID.js +12 -16
  224. package/build/features/connect/screens/CivilID/IDNumber.js +5 -6
  225. package/build/features/connect/screens/Individual/Email.js +9 -11
  226. package/build/features/connect/screens/Individual/Individual.js +9 -2
  227. package/build/features/connect/screens/Individual/MobileNumber.js +6 -9
  228. package/build/features/connect/screens/Individual/Name.js +11 -15
  229. package/build/features/connect/screens/Merchant/BrandList.js +4 -22
  230. package/build/features/connect/screens/Merchant/BrandName.js +3 -5
  231. package/build/features/connect/screens/Merchant/Merchant.js +13 -16
  232. package/build/features/connect/screens/Merchant/SalesChannels.js +6 -6
  233. package/build/features/connect/screens/Merchant/validation.d.ts +0 -6
  234. package/build/features/connect/screens/Merchant/validation.js +8 -12
  235. package/build/features/connect/screens/Mobile/Mobile.js +23 -22
  236. package/build/features/connect/screens/Mobile/MobileNumber.js +22 -15
  237. package/build/features/connect/screens/NID/DOB.js +3 -3
  238. package/build/features/connect/screens/NID/IDNumber.js +6 -7
  239. package/build/features/connect/screens/NID/NID.js +17 -4
  240. package/build/features/connect/screens/OTP/OTP.js +14 -16
  241. package/build/features/connect/screens/OTP/OTPInput.js +14 -2
  242. package/build/features/connect/screens/ThankYou/ThankYou.js +17 -2
  243. package/build/features/connectExpress/ConnectExpress.d.ts +1 -1
  244. package/build/features/connectExpress/ConnectExpress.js +87 -17
  245. package/build/features/connectExpress/screens/AuthenticationList/AuthenticationList.d.ts +5 -0
  246. package/build/features/connectExpress/screens/AuthenticationList/AuthenticationList.js +93 -0
  247. package/build/features/connectExpress/screens/AuthenticationList/BrandList.d.ts +10 -0
  248. package/build/features/connectExpress/screens/AuthenticationList/BrandList.js +81 -0
  249. package/build/features/connectExpress/screens/AuthenticationList/EntityList.d.ts +11 -0
  250. package/build/features/connectExpress/screens/AuthenticationList/EntityList.js +96 -0
  251. package/build/features/connectExpress/screens/AuthenticationList/MerchantList.d.ts +10 -0
  252. package/build/features/connectExpress/screens/AuthenticationList/MerchantList.js +107 -0
  253. package/build/features/connectExpress/screens/AuthenticationList/index.d.ts +3 -0
  254. package/build/features/connectExpress/screens/AuthenticationList/index.js +2 -0
  255. package/build/features/connectExpress/screens/AuthenticationList/validation.d.ts +14 -0
  256. package/build/features/connectExpress/screens/AuthenticationList/validation.js +8 -0
  257. package/build/features/connectExpress/screens/BusinessCountry/BusinessCountry.d.ts +5 -0
  258. package/build/features/connectExpress/screens/BusinessCountry/BusinessCountry.js +105 -0
  259. package/build/features/connectExpress/screens/BusinessCountry/index.d.ts +3 -0
  260. package/build/features/connectExpress/screens/BusinessCountry/index.js +2 -0
  261. package/build/features/connectExpress/screens/CivilID/CivilID.js +11 -4
  262. package/build/features/connectExpress/screens/CivilID/IDNumber.js +12 -8
  263. package/build/features/connectExpress/screens/CivilIDMissed/CivilID.js +2 -1
  264. package/build/features/connectExpress/screens/CivilIDMissed/IDNumber.js +6 -7
  265. package/build/features/connectExpress/screens/CollectBusinessInfo/BrandName.js +4 -6
  266. package/build/features/connectExpress/screens/CollectBusinessInfo/CollectBusinessInfo.js +13 -5
  267. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseList.js +10 -12
  268. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseNumber.js +9 -8
  269. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseType.d.ts +3 -3
  270. package/build/features/connectExpress/screens/CollectBusinessInfo/TAC.d.ts +2 -2
  271. package/build/features/connectExpress/screens/CollectBusinessInfo/validation.d.ts +13 -0
  272. package/build/features/connectExpress/screens/CollectBusinessInfo/validation.js +71 -4
  273. package/build/features/connectExpress/screens/CollectIndividualInfo/CollectIndividualInfo.js +6 -2
  274. package/build/features/connectExpress/screens/CollectIndividualInfo/Email.js +3 -5
  275. package/build/features/connectExpress/screens/CollectIndividualInfo/Name.js +2 -3
  276. package/build/features/connectExpress/screens/IdentityOTP/OTP.js +4 -4
  277. package/build/features/connectExpress/screens/IdentityOTP/OTPInput.js +5 -3
  278. package/build/features/connectExpress/screens/Mobile/Mobile.js +9 -5
  279. package/build/features/connectExpress/screens/Mobile/MobileNumber.js +9 -6
  280. package/build/features/connectExpress/screens/Mobile/TAC.js +1 -1
  281. package/build/features/connectExpress/screens/NID/DOB.js +2 -2
  282. package/build/features/connectExpress/screens/NID/IDNumber.js +2 -3
  283. package/build/features/connectExpress/screens/NID/NID.js +7 -3
  284. package/build/features/connectExpress/screens/NID/TAC.d.ts +2 -2
  285. package/build/features/connectExpress/screens/NIDMissed/DOB.js +2 -2
  286. package/build/features/connectExpress/screens/NIDMissed/IDNumber.js +7 -4
  287. package/build/features/connectExpress/screens/NIDMissed/NID.js +7 -4
  288. package/build/features/connectExpress/screens/NIDMissed/validation.d.ts +10 -0
  289. package/build/features/connectExpress/screens/NIDMissed/validation.js +4 -0
  290. package/build/features/connectExpress/screens/OTP/OTP.js +3 -3
  291. package/build/features/connectExpress/screens/OTP/OTPInput.js +4 -2
  292. package/build/features/connectExpress/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +15 -6
  293. package/build/features/entity/Entity.d.ts +1 -0
  294. package/build/features/entity/Entity.js +11 -6
  295. package/build/features/entity/screens/EntityCapital/ActivityList.d.ts +3 -16
  296. package/build/features/entity/screens/EntityCapital/ActivityList.js +53 -35
  297. package/build/features/entity/screens/EntityCapital/CapitalPaid.d.ts +2 -1
  298. package/build/features/entity/screens/EntityCapital/CapitalPaid.js +8 -15
  299. package/build/features/entity/screens/EntityCapital/CapitalShareCount.d.ts +2 -1
  300. package/build/features/entity/screens/EntityCapital/CapitalShareCount.js +7 -12
  301. package/build/features/entity/screens/EntityCapital/CapitalShareValue.d.ts +2 -1
  302. package/build/features/entity/screens/EntityCapital/CapitalShareValue.js +9 -16
  303. package/build/features/entity/screens/EntityCapital/EntityCapital.js +14 -6
  304. package/build/features/entity/screens/EntityCapital/validation.d.ts +90 -90
  305. package/build/features/entity/screens/EntityCapital/validation.js +2 -2
  306. package/build/features/entity/screens/EntityName/Article.d.ts +3 -2
  307. package/build/features/entity/screens/EntityName/Article.js +3 -2
  308. package/build/features/entity/screens/EntityName/EntityName.js +45 -16
  309. package/build/features/entity/screens/EntityName/EntityTypeList.d.ts +8 -20
  310. package/build/features/entity/screens/EntityName/EntityTypeList.js +16 -24
  311. package/build/features/entity/screens/EntityName/ExpiryDate.d.ts +3 -2
  312. package/build/features/entity/screens/EntityName/ExpiryDate.js +4 -5
  313. package/build/features/entity/screens/EntityName/IssuingDate.d.ts +3 -2
  314. package/build/features/entity/screens/EntityName/IssuingDate.js +4 -5
  315. package/build/features/entity/screens/EntityName/LegalName.d.ts +2 -1
  316. package/build/features/entity/screens/EntityName/LegalName.js +3 -4
  317. package/build/features/entity/screens/EntityName/LicenseCertificate.js +8 -2
  318. package/build/features/entity/screens/EntityName/LicenseNumber.d.ts +2 -1
  319. package/build/features/entity/screens/EntityName/LicenseNumber.js +10 -10
  320. package/build/features/entity/screens/EntityName/UnifiedNumber.d.ts +2 -1
  321. package/build/features/entity/screens/EntityName/UnifiedNumber.js +3 -4
  322. package/build/features/entity/screens/EntityName/validation.d.ts +28 -0
  323. package/build/features/entity/screens/EntityName/validation.js +40 -2
  324. package/build/features/entity/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +13 -5
  325. package/build/features/entity/screens/Verify/OTPInput.js +3 -1
  326. package/build/features/entity/screens/Verify/Verify.js +2 -2
  327. package/build/features/featuresScreens.d.ts +1 -0
  328. package/build/features/featuresScreens.js +42 -0
  329. package/build/features/individual/Individual.d.ts +1 -0
  330. package/build/features/individual/Individual.js +11 -6
  331. package/build/features/individual/screens/AdditionalIndividualInfo/AdditionalIndividualInfo.d.ts +1 -1
  332. package/build/features/individual/screens/AdditionalIndividualInfo/AdditionalIndividualInfo.js +36 -25
  333. package/build/features/individual/screens/AdditionalIndividualInfo/CivilIDFile.d.ts +1 -1
  334. package/build/features/individual/screens/AdditionalIndividualInfo/CivilIDFile.js +10 -4
  335. package/build/features/individual/screens/AdditionalIndividualInfo/InfluencerSwitch.d.ts +2 -1
  336. package/build/features/individual/screens/AdditionalIndividualInfo/InfluencerSwitch.js +13 -10
  337. package/build/features/individual/screens/AdditionalIndividualInfo/MonthlyIncome.js +19 -30
  338. package/build/features/individual/screens/AdditionalIndividualInfo/Occupation.d.ts +1 -2
  339. package/build/features/individual/screens/AdditionalIndividualInfo/Occupation.js +87 -48
  340. package/build/features/individual/screens/AdditionalIndividualInfo/PEPSwitch.d.ts +4 -3
  341. package/build/features/individual/screens/AdditionalIndividualInfo/PEPSwitch.js +12 -9
  342. package/build/features/individual/screens/AdditionalIndividualInfo/ShareCount.js +2 -1
  343. package/build/features/individual/screens/AdditionalIndividualInfo/ShareValue.js +6 -7
  344. package/build/features/individual/screens/AdditionalIndividualInfo/SignatureFile.js +9 -3
  345. package/build/features/individual/screens/AdditionalIndividualInfo/SourceOfIncome.js +17 -27
  346. package/build/features/individual/screens/AdditionalIndividualInfo/validation.d.ts +7 -7
  347. package/build/features/individual/screens/AdditionalIndividualInfo/validation.js +8 -7
  348. package/build/features/individual/screens/IndividualList/Email.js +1 -1
  349. package/build/features/individual/screens/IndividualList/IndividualList.d.ts +2 -2
  350. package/build/features/individual/screens/IndividualList/UserList.js +10 -6
  351. package/build/features/individual/screens/IndividualPersonalInfo/BirthCity.d.ts +1 -0
  352. package/build/features/individual/screens/IndividualPersonalInfo/BirthCity.js +6 -22
  353. package/build/features/individual/screens/IndividualPersonalInfo/BirthCountry.d.ts +1 -0
  354. package/build/features/individual/screens/IndividualPersonalInfo/BirthCountry.js +6 -22
  355. package/build/features/individual/screens/IndividualPersonalInfo/DOB.d.ts +2 -1
  356. package/build/features/individual/screens/IndividualPersonalInfo/DOB.js +3 -3
  357. package/build/features/individual/screens/IndividualPersonalInfo/Email.d.ts +2 -1
  358. package/build/features/individual/screens/IndividualPersonalInfo/Email.js +3 -8
  359. package/build/features/individual/screens/IndividualPersonalInfo/ExpiryDate.d.ts +2 -1
  360. package/build/features/individual/screens/IndividualPersonalInfo/ExpiryDate.js +3 -4
  361. package/build/features/individual/screens/IndividualPersonalInfo/Gender.d.ts +5 -4
  362. package/build/features/individual/screens/IndividualPersonalInfo/Gender.js +3 -2
  363. package/build/features/individual/screens/IndividualPersonalInfo/ID.d.ts +2 -1
  364. package/build/features/individual/screens/IndividualPersonalInfo/ID.js +8 -6
  365. package/build/features/individual/screens/IndividualPersonalInfo/IndividualPersonalInfo.d.ts +1 -1
  366. package/build/features/individual/screens/IndividualPersonalInfo/IndividualPersonalInfo.js +56 -37
  367. package/build/features/individual/screens/IndividualPersonalInfo/IssuedCountry.d.ts +1 -0
  368. package/build/features/individual/screens/IndividualPersonalInfo/IssuedCountry.js +7 -24
  369. package/build/features/individual/screens/IndividualPersonalInfo/MobileNumber.d.ts +1 -0
  370. package/build/features/individual/screens/IndividualPersonalInfo/MobileNumber.js +5 -8
  371. package/build/features/individual/screens/IndividualPersonalInfo/Name.d.ts +2 -1
  372. package/build/features/individual/screens/IndividualPersonalInfo/Name.js +3 -10
  373. package/build/features/individual/screens/IndividualPersonalInfo/Nationality.d.ts +1 -0
  374. package/build/features/individual/screens/IndividualPersonalInfo/Nationality.js +7 -24
  375. package/build/features/individual/screens/IndividualPersonalInfo/validation.d.ts +1 -1
  376. package/build/features/individual/screens/IndividualPersonalInfo/validation.js +67 -63
  377. package/build/features/individual/screens/IndividualPhoneInfo/PhoneInfo.js +2 -1
  378. package/build/features/individual/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +13 -5
  379. package/build/features/individual/screens/Verify/OTPInput.js +3 -1
  380. package/build/features/individual/screens/Verify/Verify.js +2 -2
  381. package/build/features/password/Password.d.ts +1 -0
  382. package/build/features/password/Password.js +20 -5
  383. package/build/features/password/screens/CreatePassword/CreatePassword.js +3 -2
  384. package/build/features/password/screens/OTP/OTP.js +2 -2
  385. package/build/features/password/screens/OTP/OTPInput.js +5 -2
  386. package/build/features/password/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +13 -5
  387. package/build/features/password/screens/Verify/OTPInput.js +3 -1
  388. package/build/features/password/screens/Verify/Verify.js +2 -2
  389. package/build/features/shared/Address/CountryList.d.ts +6 -6
  390. package/build/features/shared/Address/InputSelect.d.ts +6 -6
  391. package/build/features/shared/Address/InputSelect.js +1 -1
  392. package/build/features/shared/BusinessCountry/BusinessCountry.d.ts +15 -0
  393. package/build/features/shared/BusinessCountry/BusinessCountry.js +179 -0
  394. package/build/features/shared/BusinessCountry/index.d.ts +2 -0
  395. package/build/features/shared/BusinessCountry/index.js +2 -0
  396. package/build/features/shared/Button/EmailProvidersButtons.d.ts +1 -1
  397. package/build/features/shared/Button/EmailProvidersButtons.js +9 -2
  398. package/build/features/shared/Button/FlowsButtons.d.ts +4 -2
  399. package/build/features/shared/Button/FlowsButtons.js +17 -13
  400. package/build/features/shared/Button/IndividualActionButtons.d.ts +4 -2
  401. package/build/features/shared/Button/IndividualActionButtons.js +26 -2
  402. package/build/features/shared/Calender/Calender.d.ts +13 -0
  403. package/build/features/shared/Calender/Calender.js +56 -0
  404. package/build/features/shared/Calender/index.d.ts +2 -0
  405. package/build/features/shared/Calender/index.js +2 -0
  406. package/build/features/shared/CheckIcon/CheckIcon.d.ts +7 -1
  407. package/build/features/shared/CheckIcon/CheckIcon.js +7 -6
  408. package/build/features/shared/Containers/FeatureContainer.d.ts +1 -1
  409. package/build/features/shared/Containers/ScreenContainer.d.ts +1 -1
  410. package/build/features/shared/Dot/Dot.d.ts +8 -0
  411. package/build/features/shared/Dot/Dot.js +29 -0
  412. package/build/features/shared/Dot/index.d.ts +2 -0
  413. package/build/features/shared/Dot/index.js +2 -0
  414. package/build/features/shared/EndAdornment/EndAdornment.d.ts +10 -0
  415. package/build/features/shared/EndAdornment/EndAdornment.js +17 -0
  416. package/build/features/shared/EndAdornment/EndAdornmentExpanded.d.ts +7 -0
  417. package/build/features/shared/EndAdornment/EndAdornmentExpanded.js +13 -0
  418. package/build/features/shared/EndAdornment/index.d.ts +3 -0
  419. package/build/features/shared/EndAdornment/index.js +3 -0
  420. package/build/features/shared/Footer/Footer.js +10 -1
  421. package/build/features/shared/Footer/PoweredByFooter.d.ts +1 -1
  422. package/build/features/shared/Input/Input.d.ts +4 -5
  423. package/build/features/shared/Input/index.d.ts +2 -1
  424. package/build/features/shared/InputSelect/InputSelect.d.ts +4 -0
  425. package/build/features/shared/InputSelect/InputSelect.js +33 -0
  426. package/build/features/shared/InputSelect/index.d.ts +2 -0
  427. package/build/features/shared/InputSelect/index.js +2 -0
  428. package/build/features/shared/SalesChannels/SaleChannelIconsInput.d.ts +2 -1
  429. package/build/features/shared/SalesChannels/SaleChannelIconsInput.js +4 -3
  430. package/build/features/shared/SalesChannels/SalesChannel.d.ts +2 -1
  431. package/build/features/shared/SalesChannels/SalesChannel.js +6 -2
  432. package/build/features/shared/SuccessFlowButtons/SuccessFlowButtons.d.ts +3 -1
  433. package/build/features/shared/SuccessFlowButtons/SuccessFlowButtons.js +20 -9
  434. package/build/features/shared/SuccessScreen/SuccessScreen.js +1 -1
  435. package/build/features/shared/UploadFile/FileUpload.d.ts +5 -4
  436. package/build/features/shared/UploadFile/FileUpload.js +4 -4
  437. package/build/features/shared/UploadFile/UploadFile.d.ts +2 -2
  438. package/build/features/shared/UploadFile/UploadWrapper.d.ts +4 -3
  439. package/build/features/shared/UploadFile/UploadWrapper.js +3 -3
  440. package/build/features/shared/UploadMultipleFile/UploadFile.d.ts +5 -4
  441. package/build/features/shared/UploadMultipleFile/UploadFile.js +4 -4
  442. package/build/features/shared/UploadMultipleFile/UploadMultipleFile.d.ts +4 -3
  443. package/build/features/shared/UploadMultipleFile/UploadMultipleFile.js +2 -2
  444. package/build/features/signIn/screens/Email/Email.js +2 -1
  445. package/build/features/signIn/screens/Mobile/Mobile.js +2 -1
  446. package/build/features/signIn/screens/OTP/OTP.js +2 -2
  447. package/build/features/signIn/screens/OTP/OTPInput.js +4 -2
  448. package/build/features/signIn/screens/Password/Password.js +2 -1
  449. package/build/features/tax/Tax.d.ts +1 -0
  450. package/build/features/tax/Tax.js +11 -6
  451. package/build/features/tax/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +13 -5
  452. package/build/features/tax/screens/TaxDetails/ConfirmPolicy.d.ts +1 -1
  453. package/build/features/tax/screens/TaxDetails/TaxDetails.js +10 -7
  454. package/build/features/tax/screens/TaxDetails/TaxDocument.js +8 -2
  455. package/build/features/tax/screens/TaxDetails/VATId.d.ts +3 -2
  456. package/build/features/tax/screens/TaxDetails/VATId.js +3 -5
  457. package/build/features/tax/screens/Verify/OTPInput.js +3 -1
  458. package/build/features/tax/screens/Verify/Verify.js +2 -2
  459. package/build/hooks/index.d.ts +1 -0
  460. package/build/hooks/index.js +1 -0
  461. package/build/hooks/useAppConfig.d.ts +4 -2
  462. package/build/hooks/useAppConfig.js +18 -18
  463. package/build/hooks/useAppDispatch.d.ts +1 -0
  464. package/build/hooks/useCountry.d.ts +1 -0
  465. package/build/hooks/useCountry.js +4 -3
  466. package/build/hooks/useDataVerified.d.ts +6 -0
  467. package/build/hooks/useDataVerified.js +19 -0
  468. package/build/hooks/useErrorListener.d.ts +2 -1
  469. package/build/hooks/useErrorListener.js +16 -1
  470. package/build/hooks/useExcludeReadOnlyFelids.d.ts +1 -1
  471. package/build/hooks/useFormErrorAndUpdateReadOnly.d.ts +1 -1
  472. package/build/hooks/useFormReadOnly.d.ts +1 -1
  473. package/build/hooks/useVerifyToken.js +1 -1
  474. package/build/index.d.ts +3 -2
  475. package/build/index.js +4 -2
  476. package/build/utils/array.d.ts +13 -2
  477. package/build/utils/array.js +115 -2
  478. package/build/utils/common.d.ts +1 -0
  479. package/build/utils/common.js +10 -0
  480. package/build/utils/date.d.ts +1 -0
  481. package/build/utils/date.js +6 -0
  482. package/build/utils/gtm.d.ts +6 -0
  483. package/build/utils/gtm.js +29 -0
  484. package/build/utils/index.d.ts +1 -0
  485. package/build/utils/index.js +1 -0
  486. package/build/utils/object.d.ts +1 -0
  487. package/build/utils/object.js +14 -0
  488. package/build/utils/string.d.ts +1 -0
  489. package/build/utils/string.js +3 -0
  490. package/package.json +4 -2
  491. package/build/features/brand/screens/BrandInfo/Segments.d.ts +0 -9
  492. package/build/features/connect/screens/Merchant/Segments.d.ts +0 -8
  493. /package/build/features/connect/screens/{Merchant → BrandSegment}/TeamSize.d.ts +0 -0
@@ -6,6 +6,336 @@ export var OTHER_BRAND = {
6
6
  en: 'other'
7
7
  }
8
8
  };
9
+ export var EXPECTED_SALES_LIST = [
10
+ {
11
+ id: 'sales_rng_L3me8221219f4rQ28dX9v337',
12
+ name: {
13
+ ar: 'اقل من 100 ألف',
14
+ en: 'Less than 100,000'
15
+ },
16
+ range: {
17
+ from: 0,
18
+ to: 100000
19
+ },
20
+ sub: [
21
+ {
22
+ name: {
23
+ ar: 'أقل من 2.5 ألف',
24
+ en: 'less than 2,500'
25
+ },
26
+ range: {
27
+ from: 0,
28
+ to: 2500
29
+ },
30
+ id: 'sub_range_92EQ572212459P5u28Ol99756'
31
+ },
32
+ {
33
+ name: {
34
+ ar: '2,500 الي 5,000',
35
+ en: '2,500 to 5,000'
36
+ },
37
+ range: {
38
+ from: 2500,
39
+ to: 5000
40
+ },
41
+ id: 'sub_range_BfZM41221246Lknj28AN9x782'
42
+ },
43
+ {
44
+ name: {
45
+ ar: '5,000 الي 10,000',
46
+ en: '5,000 to 10,000'
47
+ },
48
+ range: {
49
+ from: 5000,
50
+ to: 10000
51
+ },
52
+ id: 'sub_range_DxZt2221248umu328AT9X147'
53
+ },
54
+ {
55
+ name: {
56
+ ar: '10,000 الي 25,000',
57
+ en: '10,000 to 25,000'
58
+ },
59
+ range: {
60
+ from: 10000,
61
+ to: 25000
62
+ },
63
+ id: 'sub_range_D14U47221248zltv28Vp9i333'
64
+ },
65
+ {
66
+ name: {
67
+ ar: '25,000 الي 50,000',
68
+ en: '25,000 to 50,000'
69
+ },
70
+ range: {
71
+ from: 25000,
72
+ to: 50000
73
+ },
74
+ id: 'sub_range_HTdQ8221249MIBQ28xq9e20'
75
+ },
76
+ {
77
+ name: {
78
+ ar: '50,000 الي 100,000',
79
+ en: '50,000 to 100,000'
80
+ },
81
+ range: {
82
+ from: 50000,
83
+ to: 100000
84
+ },
85
+ id: 'sub_range_E8nu37221249JDPW28bL9S357'
86
+ }
87
+ ],
88
+ country_code: ['SA'],
89
+ is_main: true
90
+ },
91
+ {
92
+ id: 'sales_rng_DDx234221224TxGH28xI9F82',
93
+ name: {
94
+ ar: 'اقل من 1 مليون',
95
+ en: 'Less than 1,000,000'
96
+ },
97
+ range: {
98
+ from: 100000,
99
+ to: 1000000
100
+ },
101
+ sub: [
102
+ {
103
+ name: {
104
+ ar: '100,000 الي 250,000',
105
+ en: '100,000 to 250,000'
106
+ },
107
+ range: {
108
+ from: 100000,
109
+ to: 250000
110
+ },
111
+ id: 'sub_range_2bo738221420YDgJ28is9W124'
112
+ },
113
+ {
114
+ name: {
115
+ ar: '250,000 الي 500,000',
116
+ en: '250,000 to 500,000'
117
+ },
118
+ range: {
119
+ from: 250000,
120
+ to: 500000
121
+ },
122
+ id: 'sub_range_vKLl37221421vpb428uV95330'
123
+ },
124
+ {
125
+ name: {
126
+ ar: '500,000 الي 1,000,000',
127
+ en: '500,000 to 1,000,000'
128
+ },
129
+ range: {
130
+ from: 500000,
131
+ to: 1000000
132
+ },
133
+ id: 'sub_range_PrIJ12221422kNgD28sk9E692'
134
+ }
135
+ ],
136
+ country_code: ['SA'],
137
+ is_main: true
138
+ },
139
+ {
140
+ id: 'sales_rng_5FXo34221229Obhb284h9F958',
141
+ name: {
142
+ ar: 'اقل من 10 مليون',
143
+ en: 'Less than 10,000,000'
144
+ },
145
+ range: {
146
+ from: 100000,
147
+ to: 10000000
148
+ },
149
+ sub: [
150
+ {
151
+ name: {
152
+ ar: '1,000,000 الي 2,500,000',
153
+ en: '1,000,000 to 2,500,000'
154
+ },
155
+ range: {
156
+ from: 1000000,
157
+ to: 2500000
158
+ },
159
+ id: 'sub_range_O6v519221431ZSAI28FI9V16'
160
+ },
161
+ {
162
+ name: {
163
+ ar: '2,500,000 الي 5,000,000',
164
+ en: '2,500,000 to 5,000,000'
165
+ },
166
+ range: {
167
+ from: 2500000,
168
+ to: 5000000
169
+ },
170
+ id: 'sub_range_azyv7221432ADPP28zN9r620'
171
+ },
172
+ {
173
+ name: {
174
+ ar: '5,000,000 الي 10,000,000',
175
+ en: '5,000,000 to 10,000,0000'
176
+ },
177
+ range: {
178
+ from: 5000000,
179
+ to: 10000000
180
+ },
181
+ id: 'sub_range_V74129221433Nqj328AT9C430'
182
+ }
183
+ ],
184
+ country_code: ['SA'],
185
+ is_main: true
186
+ },
187
+ {
188
+ id: 'sales_rng_9FX13121229Obhb284h9F723',
189
+ name: {
190
+ ar: 'اقل من 100 مليون',
191
+ en: 'Less than 100,000,000'
192
+ },
193
+ range: {
194
+ from: 1000000,
195
+ to: 100000000
196
+ },
197
+ sub: [
198
+ {
199
+ name: {
200
+ ar: '10,000,000 الي 25,000,000',
201
+ en: '10,000,000 to 25,000,000'
202
+ },
203
+ range: {
204
+ from: 10000000,
205
+ to: 25000000
206
+ },
207
+ id: 'sub_range_vhGd55221438A0qH28Yl9Y76'
208
+ },
209
+ {
210
+ name: {
211
+ ar: '25,000,000 الي 50,000,000',
212
+ en: '25,000,000 to 50,000,000'
213
+ },
214
+ range: {
215
+ from: 25000000,
216
+ to: 50000000
217
+ },
218
+ id: 'sub_range_aqfz19221440yCIX283O96244'
219
+ },
220
+ {
221
+ name: {
222
+ ar: '50,000,000 الي 100,000,000',
223
+ en: '50,000,000 to 100,000,000'
224
+ },
225
+ range: {
226
+ from: 50000000,
227
+ to: 100000000
228
+ },
229
+ id: 'sub_range_PbOi46221440he6Z28Fv9i98'
230
+ }
231
+ ],
232
+ country_code: ['SA'],
233
+ is_main: true
234
+ },
235
+ {
236
+ id: 'sales_rng_htNM37221234DVUJ28qj9x672',
237
+ name: {
238
+ ar: 'اكثر من 100 مليون ',
239
+ en: 'greater than 100,000,000'
240
+ },
241
+ range: {
242
+ from: 100000000,
243
+ to: 100000000000
244
+ },
245
+ country_code: ['SA'],
246
+ is_main: true
247
+ }
248
+ ];
249
+ export var MONTHLY_INCOME_LIST = [
250
+ {
251
+ id: 'monthly_income_TvD850221616i3c730mc9Z323',
252
+ range: {
253
+ ar: 'أقل من 2500',
254
+ en: 'Below 2500'
255
+ },
256
+ country_code: ['SA']
257
+ },
258
+ {
259
+ id: 'monthly_income_7rkp53221617iYdX30rr9e753',
260
+ range: {
261
+ ar: '2,501 إلى 5,000',
262
+ en: '2,501 to 5,000'
263
+ },
264
+ country_code: ['SA']
265
+ },
266
+ {
267
+ id: 'monthly_income_HFDf11221618v3Qn30gQ9x874',
268
+ range: {
269
+ ar: '5,001 إلى 7,500',
270
+ en: '5,001 to 7,500'
271
+ },
272
+ country_code: ['SA']
273
+ },
274
+ {
275
+ id: 'monthly_income_LXg031221618APLf306B9Y622',
276
+ range: {
277
+ ar: '7,501 إلى 10,000',
278
+ en: '7,501 to 10,000'
279
+ },
280
+ country_code: ['SA']
281
+ },
282
+ {
283
+ id: 'monthly_income_6SSj52221618CUC230rI9Z881',
284
+ range: {
285
+ ar: '10,001 إلى 12,500',
286
+ en: '10,001 to 12,500'
287
+ },
288
+ country_code: ['SA']
289
+ },
290
+ {
291
+ id: 'monthly_income_JKp013221619M0PC301L9C230',
292
+ range: {
293
+ ar: '12,501 إلى 15,000',
294
+ en: '12,501 to 15,000'
295
+ },
296
+ country_code: ['SA']
297
+ },
298
+ {
299
+ id: 'monthly_income_CXXd36221619O7Ep30qD9M191',
300
+ range: {
301
+ ar: '15,001 إلى 20,000',
302
+ en: '15,001 to 20,000'
303
+ },
304
+ country_code: ['SA']
305
+ },
306
+ {
307
+ id: 'monthly_income_96EN57221619f35z30Vv9e791',
308
+ range: {
309
+ ar: '20,001 إلى 25,000',
310
+ en: '20,001 to 25,000'
311
+ },
312
+ country_code: ['SA']
313
+ },
314
+ {
315
+ id: 'monthly_income_PGCc17221620CemL30P69S583',
316
+ range: {
317
+ ar: '25,001 إلى 30,000',
318
+ en: '25,001 to 30,000'
319
+ },
320
+ country_code: ['SA']
321
+ },
322
+ {
323
+ id: 'monthly_income_saQe37221620niuh30oZ9i528',
324
+ range: {
325
+ ar: '30,001 إلى 40,000',
326
+ en: '30,001 to 40,000'
327
+ },
328
+ country_code: ['SA']
329
+ },
330
+ {
331
+ id: 'monthly_income_pNZP8221621NBrW30G791572',
332
+ range: {
333
+ ar: 'اكثر من 40,001',
334
+ en: '40,001 or above'
335
+ },
336
+ country_code: ['SA']
337
+ }
338
+ ];
9
339
  export var defaultCountry = {
10
340
  created: 1577690965000,
11
341
  updated: 1577691209000,
@@ -6434,3 +6764,276 @@ export var BRAND_LIST = [
6434
6764
  website: 'www.test5.com'
6435
6765
  }
6436
6766
  ];
6767
+ export var BUSINESS_COUNTRIES = [
6768
+ {
6769
+ id: 1,
6770
+ title: 'Middle East',
6771
+ countries: [
6772
+ {
6773
+ id: 1,
6774
+ label: 'sa',
6775
+ country: {
6776
+ id: 187,
6777
+ name_en: 'Saudi Arabia',
6778
+ name_ar: 'المملكة العربية السعودية',
6779
+ iso2: 'SA',
6780
+ iso3: 'SAU',
6781
+ idd_prefix: '966',
6782
+ logo: 'https://tap-assets.b-cdn.net/icons/dashboard/light/country/SA.svg'
6783
+ }
6784
+ },
6785
+ {
6786
+ id: 10,
6787
+ label: 'bh',
6788
+ country: {
6789
+ id: 16,
6790
+ name_en: 'Bahrain',
6791
+ name_ar: 'البحرين',
6792
+ iso2: 'BH',
6793
+ iso3: 'BHR',
6794
+ idd_prefix: '973',
6795
+ logo: 'https://tap-assets.b-cdn.net/icons/dashboard/light/country/BH.svg'
6796
+ }
6797
+ },
6798
+ {
6799
+ id: 2,
6800
+ label: 'eg',
6801
+ country: {
6802
+ id: 63,
6803
+ name_en: 'Egypt',
6804
+ name_ar: 'مصر',
6805
+ iso2: 'EG',
6806
+ iso3: 'EGY',
6807
+ idd_prefix: '20',
6808
+ logo: 'https://tap-assets.b-cdn.net/icons/dashboard/light/country/EG.svg'
6809
+ }
6810
+ },
6811
+ {
6812
+ id: 4,
6813
+ label: 'jo',
6814
+ country: {
6815
+ id: 107,
6816
+ name_en: 'Jordan',
6817
+ name_ar: 'الأردن',
6818
+ iso2: 'JO',
6819
+ iso3: 'JOR',
6820
+ idd_prefix: '962',
6821
+ logo: 'https://tap-assets.b-cdn.net/icons/dashboard/light/country/JO.svg'
6822
+ }
6823
+ },
6824
+ {
6825
+ id: 5,
6826
+ label: 'kw',
6827
+ country: {
6828
+ id: 111,
6829
+ name_en: 'Kuwait',
6830
+ name_ar: 'الكويت',
6831
+ iso2: 'KW',
6832
+ iso3: 'KWT',
6833
+ idd_prefix: '965',
6834
+ logo: 'https://tap-assets.b-cdn.net/icons/dashboard/light/country/KW.svg'
6835
+ }
6836
+ },
6837
+ {
6838
+ id: 11,
6839
+ label: 'lb',
6840
+ country: {
6841
+ id: 115,
6842
+ name_en: 'Lebanon',
6843
+ name_ar: 'لبنان',
6844
+ iso2: 'LB',
6845
+ iso3: 'LBN',
6846
+ idd_prefix: '961',
6847
+ logo: 'https://tap-assets.b-cdn.net/icons/dashboard/light/country/LB.svg'
6848
+ }
6849
+ },
6850
+ {
6851
+ id: 12,
6852
+ label: 'om',
6853
+ country: {
6854
+ id: 155,
6855
+ name_en: 'Oman',
6856
+ name_ar: 'عمان',
6857
+ iso2: 'OM',
6858
+ iso3: 'OMN',
6859
+ idd_prefix: '968',
6860
+ logo: 'https://tap-assets.b-cdn.net/icons/dashboard/light/country/OM.svg'
6861
+ }
6862
+ },
6863
+ {
6864
+ id: 13,
6865
+ label: 'qa',
6866
+ country: {
6867
+ id: 168,
6868
+ name_en: 'Qatar',
6869
+ name_ar: 'قطر',
6870
+ iso2: 'QA',
6871
+ iso3: 'QAT',
6872
+ idd_prefix: '974',
6873
+ logo: 'https://tap-assets.b-cdn.net/icons/dashboard/light/country/QA.svg'
6874
+ }
6875
+ },
6876
+ {
6877
+ id: 14,
6878
+ label: 'ae',
6879
+ country: {
6880
+ id: 223,
6881
+ name_en: 'United Arab Emirates',
6882
+ name_ar: 'الإمارات العربية المتحدة',
6883
+ iso2: 'AE',
6884
+ iso3: 'ARE',
6885
+ idd_prefix: '971',
6886
+ logo: 'https://tap-assets.b-cdn.net/icons/dashboard/light/country/AE.svg'
6887
+ }
6888
+ }
6889
+ ]
6890
+ },
6891
+ {
6892
+ id: 2,
6893
+ title: 'Europe',
6894
+ countries: [
6895
+ {
6896
+ id: 6,
6897
+ label: 'uk',
6898
+ country: {
6899
+ id: 224,
6900
+ name_en: 'United Kingdom',
6901
+ name_ar: 'المملكة المتحدة لبريطانيا العظمى وآيرلندا الشمالية',
6902
+ iso2: 'GB',
6903
+ iso3: 'GBR',
6904
+ idd_prefix: '44',
6905
+ logo: 'https://tap-assets.b-cdn.net/icons/dashboard/light/country/GB.svg'
6906
+ }
6907
+ },
6908
+ {
6909
+ id: 7,
6910
+ label: 'ir',
6911
+ country: {
6912
+ id: 101,
6913
+ name_en: 'Ireland',
6914
+ name_ar: 'آيرلندا',
6915
+ iso2: 'IE',
6916
+ iso3: 'IRL',
6917
+ idd_prefix: '353',
6918
+ logo: 'https://tap-assets.b-cdn.net/icons/dashboard/light/country/IE.svg'
6919
+ }
6920
+ },
6921
+ {
6922
+ id: 17,
6923
+ label: 'fr',
6924
+ country: {
6925
+ id: 73,
6926
+ name_en: 'France',
6927
+ name_ar: 'فرنسا',
6928
+ iso2: 'FR',
6929
+ iso3: 'FRA',
6930
+ idd_prefix: '33',
6931
+ logo: 'https://tap-assets.b-cdn.net/icons/dashboard/light/country/FR.svg'
6932
+ }
6933
+ },
6934
+ {
6935
+ id: 18,
6936
+ label: 'nt',
6937
+ country: {
6938
+ id: 145,
6939
+ name_en: 'Netherlands',
6940
+ name_ar: 'هولندا',
6941
+ iso2: 'NL',
6942
+ iso3: 'NLD',
6943
+ idd_prefix: '31',
6944
+ logo: 'https://tap-assets.b-cdn.net/icons/dashboard/light/country/NL.svg'
6945
+ }
6946
+ },
6947
+ {
6948
+ id: 19,
6949
+ label: 'gm',
6950
+ country: {
6951
+ id: 79,
6952
+ name_en: 'Germany',
6953
+ name_ar: 'ألمانيا',
6954
+ iso2: 'DE',
6955
+ iso3: 'DEU',
6956
+ idd_prefix: '49',
6957
+ logo: 'https://tap-assets.b-cdn.net/icons/dashboard/light/country/DE.svg'
6958
+ }
6959
+ },
6960
+ {
6961
+ id: 20,
6962
+ label: 'sp',
6963
+ country: {
6964
+ id: 199,
6965
+ name_en: 'Spain',
6966
+ name_ar: 'إسبانيا',
6967
+ iso2: 'ES',
6968
+ iso3: 'ESP',
6969
+ idd_prefix: '34',
6970
+ logo: 'https://tap-assets.b-cdn.net/icons/dashboard/light/country/ES.svg'
6971
+ }
6972
+ },
6973
+ {
6974
+ id: 21,
6975
+ label: 'it',
6976
+ country: {
6977
+ id: 103,
6978
+ name_en: 'Italy',
6979
+ name_ar: 'إيطاليا',
6980
+ iso2: 'IT',
6981
+ iso3: 'ITA',
6982
+ idd_prefix: '39',
6983
+ logo: 'https://tap-assets.b-cdn.net/icons/dashboard/light/country/IT.svg'
6984
+ }
6985
+ }
6986
+ ]
6987
+ },
6988
+ {
6989
+ id: 6,
6990
+ title: 'South Asia',
6991
+ countries: [
6992
+ {
6993
+ id: 15,
6994
+ label: 'pk',
6995
+ country: {
6996
+ id: 156,
6997
+ name_en: 'Pakistan',
6998
+ name_ar: 'باكستان',
6999
+ iso2: 'PK',
7000
+ iso3: 'PAK',
7001
+ idd_prefix: '92',
7002
+ logo: 'https://tap-assets.b-cdn.net/icons/dashboard/light/country/PK.svg'
7003
+ }
7004
+ },
7005
+ {
7006
+ id: 16,
7007
+ label: 'in',
7008
+ country: {
7009
+ id: 97,
7010
+ name_en: 'India',
7011
+ name_ar: 'الهند',
7012
+ iso2: 'IN',
7013
+ iso3: 'IND',
7014
+ idd_prefix: '91',
7015
+ logo: 'https://tap-assets.b-cdn.net/icons/dashboard/light/country/IN.svg'
7016
+ }
7017
+ }
7018
+ ]
7019
+ },
7020
+ {
7021
+ id: 5,
7022
+ title: 'South East Asia',
7023
+ countries: [
7024
+ {
7025
+ id: 9,
7026
+ label: 'sg',
7027
+ country: {
7028
+ id: 192,
7029
+ name_en: 'Singapore',
7030
+ name_ar: 'سنغافورة',
7031
+ iso2: 'SG',
7032
+ iso3: 'SGP',
7033
+ idd_prefix: '65',
7034
+ logo: 'https://tap-assets.b-cdn.net/icons/dashboard/light/country/SG.svg'
7035
+ }
7036
+ }
7037
+ ]
7038
+ }
7039
+ ];
@@ -3,8 +3,8 @@ export declare const CIVIL_ID_NUMBER_LENGTH = 12;
3
3
  export declare const DEFAULT_TIMER_VALUE = 59;
4
4
  export declare const VAT_ID_LENGTH = 15;
5
5
  export declare const MAX_IBAN_VALUE = 34;
6
- export declare const FL_NUMBER_LENGTH = 8;
7
- export declare const CR_NUMBER_LENGTH = 10;
6
+ export declare const FL_NUMBER_MAX_LENGTH = 20;
7
+ export declare const CR_NUMBER_MAX_LENGTH = 20;
8
8
  export declare const FL_NUMBER_ENTITY_LENGTH = 50;
9
9
  export declare const FL_MIN_LICENSE_LENGTH = 5;
10
10
  export declare const CR_MIN_LICENSE_LENGTH = 5;
@@ -3,8 +3,8 @@ export var CIVIL_ID_NUMBER_LENGTH = 12;
3
3
  export var DEFAULT_TIMER_VALUE = 59;
4
4
  export var VAT_ID_LENGTH = 15;
5
5
  export var MAX_IBAN_VALUE = 34;
6
- export var FL_NUMBER_LENGTH = 8;
7
- export var CR_NUMBER_LENGTH = 10;
6
+ export var FL_NUMBER_MAX_LENGTH = 20;
7
+ export var CR_NUMBER_MAX_LENGTH = 20;
8
8
  export var FL_NUMBER_ENTITY_LENGTH = 50;
9
9
  export var FL_MIN_LICENSE_LENGTH = 5;
10
10
  export var CR_MIN_LICENSE_LENGTH = 5;
@@ -15,7 +15,7 @@ export var MAX_FILE_SIZE = 5000000;
15
15
  export var MAX_FILE_SIZE_FOUR_MB = 4000000;
16
16
  export var VALID_FILE_FORMATS = ['image/jpeg', 'image/png', 'image/jpg', 'application/pdf'];
17
17
  export var VALID_FILE_FORMATS_FOR_IMAGE = ['image/jpeg', 'image/png', 'image/jpg'];
18
- export var REGEX_FULL_NAME = /^([a-zA-Z]{2,}\s{1}[a-zA-Z]{1,}|[a-zA-Z]+\s{1}[a-zA-Z.-]{1,}\s{1}[a-zA-Z.-]{1,}\s{1}[a-zA-Z]{1,}|[a-zA-Z]+\s{1}[a-zA-Z.-]{1,}\s{1}[a-zA-Z]{1,})$/g;
18
+ export var REGEX_FULL_NAME = /^(?:\w{3,}\s)+\w{3,}$/g;
19
19
  export var REGEX_WEBSITE = /^[a-zA-Z0-9]+([\-\.]{1}[a-zA-Z0-9]+)*\.[a-zA-Z]{2,63}(:[0-9]{1,5})?(\/.*)?$/;
20
20
  export var REGEX_BENEFICIARY_NAME = /^([\u0600-\u065F\u066A-\u06EF\u06FA-\u06FFa-zA-Z()\s])*$/g;
21
21
  export var REGEX_ALPHANUMERIC = /^[a-zA-Z0-9!@#$%^&*()_+\-=\[\]{};':"\\|,.<>\/? ]*$/g;