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

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 (668) hide show
  1. package/README.md +1 -1
  2. package/build/@types/app.d.ts +73 -18
  3. package/build/@types/app.js +19 -1
  4. package/build/@types/config.d.ts +49 -0
  5. package/build/@types/config.js +1 -0
  6. package/build/@types/form.d.ts +18 -3
  7. package/build/@types/index.d.ts +1 -0
  8. package/build/@types/index.js +1 -0
  9. package/build/@types/redux.d.ts +1 -0
  10. package/build/@types/theme.d.ts +4 -0
  11. package/build/@types/theme.js +5 -0
  12. package/build/api/account.d.ts +6 -0
  13. package/build/api/account.js +16 -2
  14. package/build/api/auth.d.ts +44 -2
  15. package/build/api/auth.js +18 -1
  16. package/build/api/availabilityServices.d.ts +1 -0
  17. package/build/api/country.d.ts +1 -0
  18. package/build/api/country.js +8 -1
  19. package/build/api/data.d.ts +4 -17
  20. package/build/api/data.js +5 -45
  21. package/build/api/entity.d.ts +28 -3
  22. package/build/api/entity.js +23 -10
  23. package/build/api/firebase.js +68 -8
  24. package/build/api/index.d.ts +24 -29
  25. package/build/api/lead.d.ts +27 -3
  26. package/build/api/lead.js +63 -1
  27. package/build/api/operator.d.ts +6 -3
  28. package/build/api/operator.js +4 -16
  29. package/build/api/user.d.ts +7 -0
  30. package/build/api/user.js +9 -1
  31. package/build/app/rootReducer.d.ts +2 -0
  32. package/build/app/rootReducer.js +5 -1
  33. package/build/app/settings.d.ts +13 -6
  34. package/build/app/settings.js +118 -78
  35. package/build/app/store.d.ts +4 -0
  36. package/build/assets/locales/ar.json +351 -143
  37. package/build/assets/locales/en.json +347 -142
  38. package/build/components/AnimationFlow/AnimationFlow.d.ts +14 -3
  39. package/build/components/AnimationFlow/AnimationFlow.js +16 -5
  40. package/build/components/AnimationFlow/BottomSheet.d.ts +7 -2
  41. package/build/components/AnimationFlow/BottomSheet.js +44 -15
  42. package/build/components/AnimationFlow/Dialog.d.ts +11 -2
  43. package/build/components/AnimationFlow/Dialog.js +10 -12
  44. package/build/components/AnimationFlow/Loader.d.ts +6 -1
  45. package/build/components/AnimationFlow/Loader.js +17 -5
  46. package/build/components/ArabicDatePicker/ArabicDatePicker.d.ts +1 -1
  47. package/build/components/ArabicDatePicker/ArabicDatePicker.js +2 -2
  48. package/build/components/ArabicDatePicker/style.css +32 -3
  49. package/build/components/DatePicker/DatePicker.d.ts +1 -1
  50. package/build/components/DatePicker/DatePicker.js +2 -2
  51. package/build/components/ExpandIcon/ExpandIcon.d.ts +2 -0
  52. package/build/components/Footer/Footer.js +2 -1
  53. package/build/components/Input/Input.js +1 -1
  54. package/build/components/Providers/ThemeProvider.js +3 -3
  55. package/build/components/Slide/Slide.d.ts +1 -1
  56. package/build/components/Tooltip/Tooltip.js +1 -1
  57. package/build/constants/api.d.ts +9 -7
  58. package/build/constants/api.js +19 -15
  59. package/build/constants/app.d.ts +62 -0
  60. package/build/constants/app.js +480 -25
  61. package/build/constants/assets.d.ts +4 -0
  62. package/build/constants/assets.js +5 -1
  63. package/build/constants/dummy.d.ts +43 -196
  64. package/build/constants/dummy.js +614 -6141
  65. package/build/constants/flows.d.ts +24 -0
  66. package/build/constants/flows.js +25 -0
  67. package/build/constants/index.d.ts +1 -0
  68. package/build/constants/index.js +1 -0
  69. package/build/constants/validation.d.ts +5 -0
  70. package/build/constants/validation.js +6 -1
  71. package/build/features/app/auth/authStore.d.ts +103 -0
  72. package/build/features/app/auth/authStore.js +1184 -0
  73. package/build/features/app/bank/bankStore.d.ts +13 -18
  74. package/build/features/app/bank/bankStore.js +194 -161
  75. package/build/features/app/board/boardStore.d.ts +33 -0
  76. package/build/features/app/board/boardStore.js +269 -0
  77. package/build/features/app/brand/brandStore.d.ts +17 -31
  78. package/build/features/app/brand/brandStore.js +272 -266
  79. package/build/features/app/business/businessStore.d.ts +37 -10
  80. package/build/features/app/business/businessStore.js +469 -218
  81. package/build/features/app/connect/connectStore.d.ts +46 -15
  82. package/build/features/app/connect/connectStore.js +419 -217
  83. package/build/features/app/connectExpress/connectExpressStore.d.ts +70 -29
  84. package/build/features/app/connectExpress/connectExpressStore.js +876 -383
  85. package/build/features/app/entity/entityStore.d.ts +20 -34
  86. package/build/features/app/entity/entityStore.js +224 -249
  87. package/build/features/app/individual/individualStore.d.ts +22 -32
  88. package/build/features/app/individual/individualStore.js +331 -290
  89. package/build/features/app/password/passwordStore.d.ts +33 -18
  90. package/build/features/app/password/passwordStore.js +263 -223
  91. package/build/features/app/signIn/signInStore.js +19 -15
  92. package/build/features/app/tax/taxStore.d.ts +13 -7
  93. package/build/features/app/tax/taxStore.js +178 -144
  94. package/build/features/auth/Auth.d.ts +14 -0
  95. package/build/features/auth/Auth.js +168 -0
  96. package/build/features/auth/index.d.ts +1 -0
  97. package/build/features/auth/index.js +1 -0
  98. package/build/features/auth/screens/AccountCreatedLoader/AccountCreatedLoader.d.ts +5 -0
  99. package/build/features/auth/screens/AccountCreatedLoader/AccountCreatedLoader.js +36 -0
  100. package/build/features/auth/screens/AccountCreatedLoader/index.d.ts +2 -0
  101. package/build/features/auth/screens/AccountCreatedLoader/index.js +2 -0
  102. package/build/features/auth/screens/AccountNotFound/AccountNotFound.d.ts +5 -0
  103. package/build/features/auth/screens/AccountNotFound/AccountNotFound.js +71 -0
  104. package/build/features/auth/screens/AccountNotFound/index.d.ts +2 -0
  105. package/build/features/auth/screens/AccountNotFound/index.js +2 -0
  106. package/build/features/auth/screens/AuthMerchant/AuthMerchant.d.ts +5 -0
  107. package/build/features/auth/screens/AuthMerchant/AuthMerchant.js +73 -0
  108. package/build/features/{connectExpress/screens/AuthenticationList → auth/screens/AuthMerchant}/MerchantList.d.ts +2 -1
  109. package/build/features/auth/screens/AuthMerchant/MerchantList.js +64 -0
  110. package/build/features/auth/screens/AuthMerchant/index.d.ts +2 -0
  111. package/build/features/auth/screens/AuthMerchant/index.js +2 -0
  112. package/build/features/auth/screens/AuthMerchant/validation.d.ts +8 -0
  113. package/build/features/auth/screens/AuthMerchant/validation.js +4 -0
  114. package/build/features/auth/screens/AuthSwitch/AuthSwitch.d.ts +5 -0
  115. package/build/features/auth/screens/AuthSwitch/AuthSwitch.js +58 -0
  116. package/build/features/auth/screens/AuthSwitch/index.d.ts +3 -0
  117. package/build/features/auth/screens/AuthSwitch/index.js +2 -0
  118. package/build/features/auth/screens/AuthenticationList/AuthenticationList.d.ts +5 -0
  119. package/build/features/auth/screens/AuthenticationList/AuthenticationList.js +96 -0
  120. package/build/features/auth/screens/AuthenticationList/BrandList.d.ts +10 -0
  121. package/build/features/auth/screens/AuthenticationList/BrandList.js +81 -0
  122. package/build/features/auth/screens/AuthenticationList/EntityLegalName.d.ts +3 -0
  123. package/build/features/auth/screens/AuthenticationList/EntityLegalName.js +48 -0
  124. package/build/features/auth/screens/AuthenticationList/EntityLicenseType.d.ts +31 -0
  125. package/build/features/auth/screens/AuthenticationList/EntityLicenseType.js +90 -0
  126. package/build/features/auth/screens/AuthenticationList/EntityList.d.ts +11 -0
  127. package/build/features/auth/screens/AuthenticationList/EntityList.js +138 -0
  128. package/build/features/auth/screens/AuthenticationList/LicenseNumber.d.ts +3 -0
  129. package/build/features/auth/screens/AuthenticationList/LicenseNumber.js +36 -0
  130. package/build/features/auth/screens/AuthenticationList/index.d.ts +3 -0
  131. package/build/features/auth/screens/AuthenticationList/index.js +2 -0
  132. package/build/features/auth/screens/AuthenticationList/validation.d.ts +20 -0
  133. package/build/features/auth/screens/AuthenticationList/validation.js +68 -0
  134. package/build/features/auth/screens/BusinessCountry/BusinessCountry.d.ts +5 -0
  135. package/build/features/auth/screens/BusinessCountry/BusinessCountry.js +111 -0
  136. package/build/features/auth/screens/BusinessCountry/index.d.ts +3 -0
  137. package/build/features/auth/screens/BusinessCountry/index.js +2 -0
  138. package/build/features/auth/screens/CivilID/CivilID.d.ts +5 -0
  139. package/build/features/auth/screens/CivilID/CivilID.js +57 -0
  140. package/build/features/auth/screens/CivilID/IDNumber.d.ts +8 -0
  141. package/build/features/auth/screens/CivilID/IDNumber.js +54 -0
  142. package/build/features/auth/screens/CivilID/index.d.ts +3 -0
  143. package/build/features/auth/screens/CivilID/index.js +2 -0
  144. package/build/features/auth/screens/CivilID/validation.d.ts +8 -0
  145. package/build/features/auth/screens/CivilID/validation.js +4 -0
  146. package/build/features/auth/screens/DOB/DOB.js +47 -0
  147. package/build/features/auth/screens/DOB/DOBForm.d.ts +5 -0
  148. package/build/features/auth/screens/DOB/DOBForm.js +59 -0
  149. package/build/features/auth/screens/DOB/index.d.ts +3 -0
  150. package/build/features/auth/screens/DOB/index.js +2 -0
  151. package/build/features/auth/screens/DOB/validation.d.ts +8 -0
  152. package/build/features/auth/screens/DOB/validation.js +4 -0
  153. package/build/features/auth/screens/Email/Email.d.ts +5 -0
  154. package/build/features/auth/screens/Email/Email.js +57 -0
  155. package/build/features/auth/screens/Email/EmailField.d.ts +8 -0
  156. package/build/features/auth/screens/Email/EmailField.js +52 -0
  157. package/build/features/auth/screens/Email/index.d.ts +3 -0
  158. package/build/features/auth/screens/Email/index.js +2 -0
  159. package/build/features/auth/screens/Email/validation.d.ts +8 -0
  160. package/build/features/auth/screens/Email/validation.js +4 -0
  161. package/build/features/auth/screens/EmailSent/EmailSent.d.ts +5 -0
  162. package/build/features/auth/screens/EmailSent/EmailSent.js +79 -0
  163. package/build/features/auth/screens/EmailSent/index.d.ts +2 -0
  164. package/build/features/auth/screens/EmailSent/index.js +2 -0
  165. package/build/features/auth/screens/MigratingData/MigratingData.d.ts +5 -0
  166. package/build/features/auth/screens/MigratingData/MigratingData.js +44 -0
  167. package/build/features/auth/screens/MigratingData/index.d.ts +2 -0
  168. package/build/features/auth/screens/MigratingData/index.js +2 -0
  169. package/build/features/auth/screens/Mobile/Mobile.d.ts +5 -0
  170. package/build/features/auth/screens/Mobile/Mobile.js +82 -0
  171. package/build/features/auth/screens/Mobile/MobileNumber.d.ts +13 -0
  172. package/build/features/auth/screens/Mobile/MobileNumber.js +156 -0
  173. package/build/features/auth/screens/Mobile/index.d.ts +3 -0
  174. package/build/features/auth/screens/Mobile/index.js +2 -0
  175. package/build/features/auth/screens/Mobile/validation.d.ts +8 -0
  176. package/build/features/auth/screens/Mobile/validation.js +38 -0
  177. package/build/features/auth/screens/NID/IDNumber.d.ts +7 -0
  178. package/build/features/auth/screens/NID/IDNumber.js +55 -0
  179. package/build/features/auth/screens/NID/NID.d.ts +5 -0
  180. package/build/features/auth/screens/NID/NID.js +56 -0
  181. package/build/features/auth/screens/NID/index.d.ts +3 -0
  182. package/build/features/auth/screens/NID/index.js +2 -0
  183. package/build/features/auth/screens/NID/validation.d.ts +8 -0
  184. package/build/features/auth/screens/NID/validation.js +10 -0
  185. package/build/features/auth/screens/OTP/OTP.js +118 -0
  186. package/build/features/{connectExpress/screens/IdentityOTP → auth/screens/OTP}/OTPInput.js +27 -7
  187. package/build/features/auth/screens/OperatorError/OperatorError.d.ts +5 -0
  188. package/build/features/auth/screens/OperatorError/OperatorError.js +9 -0
  189. package/build/features/auth/screens/OperatorError/index.d.ts +3 -0
  190. package/build/features/auth/screens/OperatorError/index.js +2 -0
  191. package/build/features/auth/screens/Password/Password.d.ts +5 -0
  192. package/build/features/auth/screens/Password/Password.js +61 -0
  193. package/build/features/auth/screens/Password/PasswordField.d.ts +5 -0
  194. package/build/features/auth/screens/Password/PasswordField.js +28 -0
  195. package/build/features/auth/screens/Password/index.d.ts +3 -0
  196. package/build/features/auth/screens/Password/index.js +2 -0
  197. package/build/features/auth/screens/Password/validation.d.ts +8 -0
  198. package/build/features/auth/screens/Password/validation.js +4 -0
  199. package/build/features/auth/screens/PreparingData/PreparingData.d.ts +5 -0
  200. package/build/features/auth/screens/PreparingData/PreparingData.js +44 -0
  201. package/build/features/auth/screens/PreparingData/index.d.ts +2 -0
  202. package/build/features/auth/screens/PreparingData/index.js +2 -0
  203. package/build/features/auth/screens/ResetPasswordMessage/ResetPasswordMessage.d.ts +5 -0
  204. package/build/features/auth/screens/ResetPasswordMessage/ResetPasswordMessage.js +21 -0
  205. package/build/features/auth/screens/ResetPasswordMessage/index.d.ts +3 -0
  206. package/build/features/auth/screens/ResetPasswordMessage/index.js +2 -0
  207. package/build/features/auth/screens/VerifyNafath/VerifyNafath.d.ts +5 -0
  208. package/build/features/auth/screens/VerifyNafath/VerifyNafath.js +35 -0
  209. package/build/features/auth/screens/VerifyNafath/index.d.ts +3 -0
  210. package/build/features/auth/screens/VerifyNafath/index.js +2 -0
  211. package/build/features/auth/screens/VerifyPACI/VerifyPACI.d.ts +5 -0
  212. package/build/features/auth/screens/VerifyPACI/VerifyPACI.js +34 -0
  213. package/build/features/auth/screens/VerifyPACI/index.d.ts +3 -0
  214. package/build/features/auth/screens/VerifyPACI/index.js +2 -0
  215. package/build/features/bank/Bank.d.ts +6 -1
  216. package/build/features/bank/Bank.js +26 -12
  217. package/build/features/bank/screens/BankDetails/BankDetails.js +21 -7
  218. package/build/features/bank/screens/OperatorError/OperatorError.d.ts +5 -0
  219. package/build/features/bank/screens/OperatorError/OperatorError.js +9 -0
  220. package/build/features/bank/screens/OperatorError/index.d.ts +3 -0
  221. package/build/features/bank/screens/OperatorError/index.js +2 -0
  222. package/build/features/bank/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +2 -3
  223. package/build/features/bank/screens/Verify/Verify.js +8 -7
  224. package/build/features/board/Board.d.ts +13 -0
  225. package/build/features/board/Board.js +87 -0
  226. package/build/features/board/index.d.ts +1 -0
  227. package/build/features/board/index.js +1 -0
  228. package/build/features/board/screens/OperatorError/OperatorError.d.ts +5 -0
  229. package/build/features/board/screens/OperatorError/OperatorError.js +9 -0
  230. package/build/features/board/screens/OperatorError/index.d.ts +3 -0
  231. package/build/features/board/screens/OperatorError/index.js +2 -0
  232. package/build/features/board/screens/PrepareDataLoading/PrepareDataLoading.d.ts +4 -0
  233. package/build/features/board/screens/PrepareDataLoading/PrepareDataLoading.js +10 -0
  234. package/build/features/board/screens/PrepareDataLoading/index.d.ts +2 -0
  235. package/build/features/board/screens/PrepareDataLoading/index.js +2 -0
  236. package/build/features/board/screens/ResetPasswordSuccess/ResetPasswordSuccess.d.ts +5 -0
  237. package/build/features/board/screens/ResetPasswordSuccess/ResetPasswordSuccess.js +21 -0
  238. package/build/features/board/screens/ResetPasswordSuccess/index.d.ts +3 -0
  239. package/build/features/board/screens/ResetPasswordSuccess/index.js +2 -0
  240. package/build/features/board/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.d.ts +3 -0
  241. package/build/features/board/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +44 -0
  242. package/build/features/board/screens/SuccessWithFlowButtons/index.d.ts +2 -0
  243. package/build/features/board/screens/SuccessWithFlowButtons/index.js +2 -0
  244. package/build/features/board/screens/Verify/OTPInput.d.ts +7 -0
  245. package/build/features/{business/screens/OTP → board/screens/Verify}/OTPInput.js +9 -7
  246. package/build/features/{connectExpress/screens/IdentityOTP/OTP.js → board/screens/Verify/Verify.js} +25 -37
  247. package/build/features/board/screens/Verify/index.d.ts +2 -0
  248. package/build/features/board/screens/Verify/index.js +2 -0
  249. package/build/features/brand/Brand.d.ts +6 -1
  250. package/build/features/brand/Brand.js +26 -12
  251. package/build/features/brand/screens/BrandActivities/ActivitiesList.d.ts +9 -9
  252. package/build/features/brand/screens/BrandActivities/BrandActivities.js +49 -12
  253. package/build/features/brand/screens/BrandActivities/CustomerBase.d.ts +6 -6
  254. package/build/features/brand/screens/BrandActivities/CustomerBase.js +1 -1
  255. package/build/features/brand/screens/BrandActivities/ExpectedSalesRange.js +5 -2
  256. package/build/features/brand/screens/BrandActivities/RefundPolicy.d.ts +4 -4
  257. package/build/features/brand/screens/BrandActivities/RefundPolicy.js +1 -1
  258. package/build/features/brand/screens/BrandActivities/TAC.d.ts +1 -1
  259. package/build/features/brand/screens/BrandActivities/TAC.js +1 -1
  260. package/build/features/brand/screens/BrandActivities/TransactionPolicy.js +1 -1
  261. package/build/features/brand/screens/BrandInfo/BrandInfo.js +27 -7
  262. package/build/features/brand/screens/BrandInfo/BrandName.js +5 -2
  263. package/build/features/brand/screens/BrandInfo/validation.js +2 -2
  264. package/build/features/brand/screens/BrandSegmentInfo/BrandSegmentInfo.js +23 -7
  265. package/build/features/brand/screens/OperatorError/OperatorError.d.ts +5 -0
  266. package/build/features/brand/screens/OperatorError/OperatorError.js +9 -0
  267. package/build/features/brand/screens/OperatorError/index.d.ts +3 -0
  268. package/build/features/brand/screens/OperatorError/index.js +2 -0
  269. package/build/features/brand/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +2 -3
  270. package/build/features/brand/screens/Verify/Verify.js +4 -3
  271. package/build/features/business/Business.js +20 -12
  272. package/build/features/business/screens/Activities/Activities.js +27 -10
  273. package/build/features/business/screens/Activities/ActivitiesList.d.ts +4 -4
  274. package/build/features/business/screens/Activities/ActivitiesList.js +1 -1
  275. package/build/features/business/screens/Activities/OperationStartDate.d.ts +5 -3
  276. package/build/features/business/screens/Activities/OperationStartDate.js +2 -2
  277. package/build/features/business/screens/BrandDetails/SalesChannel.d.ts +2 -2
  278. package/build/features/business/screens/BusinessType/BusinessType.js +24 -8
  279. package/build/features/business/screens/BusinessType/EntityName.js +3 -3
  280. package/build/features/business/screens/BusinessType/LicenseList.js +3 -3
  281. package/build/features/business/screens/BusinessType/LicenseNumber.js +10 -9
  282. package/build/features/business/screens/BusinessType/LicenseType.d.ts +4 -4
  283. package/build/features/business/screens/BusinessType/validation.d.ts +10 -0
  284. package/build/features/business/screens/BusinessType/validation.js +16 -0
  285. package/build/features/business/screens/CivilID/CivilID.js +1 -1
  286. package/build/features/business/screens/Customers/CustomerLocations.d.ts +14 -12
  287. package/build/features/business/screens/Customers/CustomerLocations.js +5 -3
  288. package/build/features/business/screens/Customers/Customers.js +51 -11
  289. package/build/features/business/screens/Customers/ExpectedCustomers.d.ts +3 -1
  290. package/build/features/business/screens/Customers/ExpectedCustomers.js +5 -3
  291. package/build/features/business/screens/Customers/ExpectedSalesRange.d.ts +3 -1
  292. package/build/features/business/screens/Customers/ExpectedSalesRange.js +10 -4
  293. package/build/features/business/screens/Customers/RefundPolicy.d.ts +12 -5
  294. package/build/features/business/screens/Customers/RefundPolicy.js +13 -13
  295. package/build/features/business/screens/Customers/TransactionPolicy.d.ts +4 -1
  296. package/build/features/business/screens/Customers/TransactionPolicy.js +8 -5
  297. package/build/features/business/screens/Customers/validation.d.ts +6 -6
  298. package/build/features/business/screens/Customers/validation.js +3 -8
  299. package/build/features/business/screens/DOB/DOB.d.ts +6 -0
  300. package/build/features/business/screens/DOB/DOB.js +45 -0
  301. package/build/features/business/screens/DOB/DOBForm.d.ts +5 -0
  302. package/build/features/business/screens/DOB/DOBForm.js +72 -0
  303. package/build/features/business/screens/DOB/index.d.ts +3 -0
  304. package/build/features/business/screens/DOB/index.js +2 -0
  305. package/build/features/business/screens/DOB/validation.d.ts +8 -0
  306. package/build/features/business/screens/DOB/validation.js +4 -0
  307. package/build/features/business/screens/IDBOD/ID.js +6 -2
  308. package/build/features/business/screens/IDBOD/IDBOD.js +18 -19
  309. package/build/features/business/screens/IDBOD/validation.d.ts +7 -0
  310. package/build/features/business/screens/IDBOD/validation.js +4 -1
  311. package/build/features/business/screens/MobileOwnership/CollectMobileOwnership.d.ts +3 -0
  312. package/build/features/business/screens/MobileOwnership/CollectMobileOwnership.js +105 -0
  313. package/build/features/business/screens/MobileOwnership/MobileNumber.d.ts +3 -0
  314. package/build/features/business/screens/MobileOwnership/MobileNumber.js +72 -0
  315. package/build/features/business/screens/MobileOwnership/index.d.ts +2 -0
  316. package/build/features/business/screens/MobileOwnership/index.js +2 -0
  317. package/build/features/business/screens/MobileOwnership/validation.d.ts +8 -0
  318. package/build/features/business/screens/MobileOwnership/validation.js +38 -0
  319. package/build/features/business/screens/OperatorError/OperatorError.d.ts +5 -0
  320. package/build/features/business/screens/OperatorError/OperatorError.js +9 -0
  321. package/build/features/business/screens/OperatorError/index.d.ts +3 -0
  322. package/build/features/business/screens/OperatorError/index.js +2 -0
  323. package/build/features/business/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +14 -3
  324. package/build/features/business/screens/Verify/Verify.js +16 -5
  325. package/build/features/business/screens/VerifyNafath/VerifyNafath.d.ts +5 -0
  326. package/build/features/business/screens/VerifyNafath/VerifyNafath.js +35 -0
  327. package/build/features/business/screens/VerifyNafath/index.d.ts +3 -0
  328. package/build/features/business/screens/VerifyNafath/index.js +2 -0
  329. package/build/features/connect/Connect.d.ts +5 -1
  330. package/build/features/connect/Connect.js +48 -31
  331. package/build/features/connect/screens/BrandSegment/BrandSegment.js +4 -26
  332. package/build/features/connect/screens/BrandSegment/TeamSize.js +1 -1
  333. package/build/features/connect/screens/BrandSegment/validation.d.ts +0 -9
  334. package/build/features/connect/screens/BrandSegment/validation.js +0 -3
  335. package/build/features/connect/screens/BusinessCountry/BusinessCountry.d.ts +5 -0
  336. package/build/features/connect/screens/BusinessCountry/BusinessCountry.js +113 -0
  337. package/build/features/connect/screens/BusinessCountry/index.d.ts +3 -0
  338. package/build/features/connect/screens/BusinessCountry/index.js +2 -0
  339. package/build/features/connect/screens/CivilID/CivilID.js +12 -4
  340. package/build/features/{connectExpress/screens/NID → connect/screens/DOB}/DOB.d.ts +1 -2
  341. package/build/features/connect/screens/{NID → DOB}/DOB.js +2 -2
  342. package/build/features/connect/screens/DOB/DOBForm.d.ts +5 -0
  343. package/build/features/connect/screens/DOB/DOBForm.js +59 -0
  344. package/build/features/connect/screens/DOB/index.d.ts +3 -0
  345. package/build/features/connect/screens/DOB/index.js +2 -0
  346. package/build/features/connect/screens/DOB/validation.d.ts +8 -0
  347. package/build/features/connect/screens/DOB/validation.js +4 -0
  348. package/build/features/connect/screens/Individual/Individual.js +12 -6
  349. package/build/features/connect/screens/Individual/MobileNumber.js +8 -7
  350. package/build/features/connect/screens/Individual/validation.js +11 -3
  351. package/build/features/connect/screens/Merchant/BrandList.js +3 -3
  352. package/build/features/connect/screens/Merchant/BrandName.js +5 -2
  353. package/build/features/connect/screens/Merchant/Merchant.js +1 -1
  354. package/build/features/connect/screens/Merchant/SalesChannels.js +1 -1
  355. package/build/features/connect/screens/Merchant/validation.js +2 -2
  356. package/build/features/connect/screens/Mobile/Mobile.js +14 -7
  357. package/build/features/connect/screens/Mobile/MobileNumber.js +15 -11
  358. package/build/features/connect/screens/Mobile/validation.js +11 -3
  359. package/build/features/connect/screens/MobileOwnership/CollectMobileOwnership.d.ts +3 -0
  360. package/build/features/connect/screens/MobileOwnership/CollectMobileOwnership.js +106 -0
  361. package/build/features/connect/screens/MobileOwnership/MobileNumber.d.ts +3 -0
  362. package/build/features/connect/screens/MobileOwnership/MobileNumber.js +72 -0
  363. package/build/features/connect/screens/MobileOwnership/index.d.ts +2 -0
  364. package/build/features/connect/screens/MobileOwnership/index.js +2 -0
  365. package/build/features/connect/screens/MobileOwnership/validation.d.ts +8 -0
  366. package/build/features/connect/screens/MobileOwnership/validation.js +38 -0
  367. package/build/features/connect/screens/NID/IDNumber.d.ts +1 -0
  368. package/build/features/connect/screens/NID/IDNumber.js +2 -2
  369. package/build/features/connect/screens/NID/NID.js +10 -13
  370. package/build/features/connect/screens/NID/validation.d.ts +0 -3
  371. package/build/features/connect/screens/NID/validation.js +0 -1
  372. package/build/features/connect/screens/OTP/OTP.js +7 -7
  373. package/build/features/connect/screens/OTP/OTPInput.js +3 -11
  374. package/build/features/connect/screens/OperatorError/OperatorError.d.ts +5 -0
  375. package/build/features/connect/screens/OperatorError/OperatorError.js +9 -0
  376. package/build/features/connect/screens/OperatorError/index.d.ts +3 -0
  377. package/build/features/connect/screens/OperatorError/index.js +2 -0
  378. package/build/features/connect/screens/VerifyNafath/VerifyNafath.d.ts +5 -0
  379. package/build/features/connect/screens/VerifyNafath/VerifyNafath.js +35 -0
  380. package/build/features/connect/screens/VerifyNafath/index.d.ts +3 -0
  381. package/build/features/connect/screens/VerifyNafath/index.js +2 -0
  382. package/build/features/connectExpress/ConnectExpress.d.ts +5 -2
  383. package/build/features/connectExpress/ConnectExpress.js +69 -36
  384. package/build/features/connectExpress/screens/AccountAlreadyCreated/AccountAlreadyCreated.js +14 -2
  385. package/build/features/connectExpress/screens/AccountCreatedLoader/AccountCreatedLoader.d.ts +5 -0
  386. package/build/features/connectExpress/screens/AccountCreatedLoader/AccountCreatedLoader.js +36 -0
  387. package/build/features/connectExpress/screens/AccountCreatedLoader/index.d.ts +2 -0
  388. package/build/features/connectExpress/screens/AccountCreatedLoader/index.js +2 -0
  389. package/build/features/connectExpress/screens/AuthMerchant/AuthMerchant.d.ts +5 -0
  390. package/build/features/connectExpress/screens/AuthMerchant/AuthMerchant.js +74 -0
  391. package/build/features/connectExpress/screens/{AuthenticationList/TerminalList.d.ts → AuthMerchant/MerchantList.d.ts} +4 -3
  392. package/build/features/connectExpress/screens/AuthMerchant/MerchantList.js +64 -0
  393. package/build/features/connectExpress/screens/AuthMerchant/index.d.ts +2 -0
  394. package/build/features/connectExpress/screens/AuthMerchant/index.js +2 -0
  395. package/build/features/connectExpress/screens/AuthMerchant/validation.d.ts +8 -0
  396. package/build/features/connectExpress/screens/AuthMerchant/validation.js +4 -0
  397. package/build/features/connectExpress/screens/AuthenticationList/AuthenticationList.js +28 -17
  398. package/build/features/connectExpress/screens/AuthenticationList/EntityLegalName.d.ts +3 -0
  399. package/build/features/connectExpress/screens/AuthenticationList/EntityLegalName.js +48 -0
  400. package/build/features/connectExpress/screens/AuthenticationList/EntityLicenseType.d.ts +31 -0
  401. package/build/features/connectExpress/screens/AuthenticationList/EntityLicenseType.js +90 -0
  402. package/build/features/connectExpress/screens/AuthenticationList/EntityList.d.ts +3 -3
  403. package/build/features/connectExpress/screens/AuthenticationList/EntityList.js +52 -10
  404. package/build/features/connectExpress/screens/AuthenticationList/LicenseNumber.d.ts +3 -0
  405. package/build/features/connectExpress/screens/AuthenticationList/LicenseNumber.js +36 -0
  406. package/build/features/connectExpress/screens/AuthenticationList/validation.d.ts +13 -10
  407. package/build/features/connectExpress/screens/AuthenticationList/validation.js +66 -7
  408. package/build/features/connectExpress/screens/BusinessCountry/BusinessCountry.d.ts +5 -0
  409. package/build/features/connectExpress/screens/BusinessCountry/BusinessCountry.js +111 -0
  410. package/build/features/connectExpress/screens/BusinessCountry/index.d.ts +3 -0
  411. package/build/features/connectExpress/screens/BusinessCountry/index.js +2 -0
  412. package/build/features/connectExpress/screens/CivilID/CivilID.js +16 -5
  413. package/build/features/connectExpress/screens/CivilID/IDNumber.js +7 -2
  414. package/build/features/connectExpress/screens/CivilIDMissed/CivilID.js +2 -2
  415. package/build/features/connectExpress/screens/CollectBusinessInfo/BrandName.js +5 -2
  416. package/build/features/connectExpress/screens/CollectBusinessInfo/CollectBusinessInfo.js +20 -5
  417. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseList.js +6 -5
  418. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseNumber.js +9 -8
  419. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseType.d.ts +4 -4
  420. package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseType.js +1 -1
  421. package/build/features/connectExpress/screens/CollectBusinessInfo/TAC.d.ts +1 -1
  422. package/build/features/connectExpress/screens/CollectBusinessInfo/validation.d.ts +13 -0
  423. package/build/features/connectExpress/screens/CollectBusinessInfo/validation.js +68 -1
  424. package/build/features/connectExpress/screens/CollectIndividualInfo/CollectIndividualInfo.js +34 -7
  425. package/build/features/connectExpress/screens/CollectIndividualInfo/MobileNumber.js +9 -8
  426. package/build/features/connectExpress/screens/CollectIndividualInfo/validation.js +11 -3
  427. package/build/features/connectExpress/screens/CreateAccountLoader/CreateAccountLoader.js +14 -24
  428. package/build/features/connectExpress/screens/DOB/DOB.d.ts +6 -0
  429. package/build/features/connectExpress/screens/{NID → DOB}/DOB.js +3 -3
  430. package/build/features/connectExpress/screens/DOB/DOBForm.d.ts +5 -0
  431. package/build/features/connectExpress/screens/DOB/DOBForm.js +63 -0
  432. package/build/features/connectExpress/screens/DOB/index.d.ts +3 -0
  433. package/build/features/connectExpress/screens/DOB/index.js +2 -0
  434. package/build/features/connectExpress/screens/DOB/validation.d.ts +8 -0
  435. package/build/features/connectExpress/screens/DOB/validation.js +4 -0
  436. package/build/features/connectExpress/screens/IdentityVerifyNafath/IdentityVerifyNafath.d.ts +5 -0
  437. package/build/features/connectExpress/screens/IdentityVerifyNafath/IdentityVerifyNafath.js +35 -0
  438. package/build/features/connectExpress/screens/IdentityVerifyNafath/index.d.ts +3 -0
  439. package/build/features/connectExpress/screens/IdentityVerifyNafath/index.js +2 -0
  440. package/build/features/connectExpress/screens/IdentityVerifyPACI/VerifyPACI.js +2 -2
  441. package/build/features/connectExpress/screens/Mobile/Mobile.js +17 -7
  442. package/build/features/connectExpress/screens/Mobile/MobileNumber.js +18 -14
  443. package/build/features/connectExpress/screens/Mobile/TAC.js +1 -1
  444. package/build/features/connectExpress/screens/Mobile/validation.js +21 -6
  445. package/build/features/connectExpress/screens/MobileOwnership/CollectMobileOwnership.d.ts +3 -0
  446. package/build/features/connectExpress/screens/MobileOwnership/CollectMobileOwnership.js +108 -0
  447. package/build/features/connectExpress/screens/MobileOwnership/MobileNumber.d.ts +3 -0
  448. package/build/features/connectExpress/screens/MobileOwnership/MobileNumber.js +72 -0
  449. package/build/features/connectExpress/screens/MobileOwnership/index.d.ts +2 -0
  450. package/build/features/connectExpress/screens/MobileOwnership/index.js +2 -0
  451. package/build/features/connectExpress/screens/MobileOwnership/validation.d.ts +8 -0
  452. package/build/features/connectExpress/screens/MobileOwnership/validation.js +38 -0
  453. package/build/features/connectExpress/screens/NID/IDNumber.d.ts +1 -0
  454. package/build/features/connectExpress/screens/NID/IDNumber.js +2 -2
  455. package/build/features/connectExpress/screens/NID/NID.js +15 -12
  456. package/build/features/connectExpress/screens/NID/TAC.d.ts +1 -1
  457. package/build/features/connectExpress/screens/NID/TAC.js +2 -2
  458. package/build/features/connectExpress/screens/NID/validation.d.ts +0 -3
  459. package/build/features/connectExpress/screens/NID/validation.js +0 -2
  460. package/build/features/connectExpress/screens/NIDMissed/IDNumber.js +6 -2
  461. package/build/features/connectExpress/screens/NIDMissed/NID.js +10 -8
  462. package/build/features/connectExpress/screens/NIDMissed/validation.d.ts +7 -0
  463. package/build/features/connectExpress/screens/NIDMissed/validation.js +4 -1
  464. package/build/features/connectExpress/screens/OTP/OTP.js +14 -16
  465. package/build/features/connectExpress/screens/OTP/OTPInput.js +12 -10
  466. package/build/features/connectExpress/screens/OperatorError/OperatorError.d.ts +5 -0
  467. package/build/features/connectExpress/screens/OperatorError/OperatorError.js +9 -0
  468. package/build/features/connectExpress/screens/OperatorError/index.d.ts +3 -0
  469. package/build/features/connectExpress/screens/OperatorError/index.js +2 -0
  470. package/build/features/connectExpress/screens/PrepareDataLoading/PrepareDataLoading.d.ts +5 -0
  471. package/build/features/connectExpress/screens/PrepareDataLoading/PrepareDataLoading.js +34 -0
  472. package/build/features/connectExpress/screens/PrepareDataLoading/index.d.ts +2 -0
  473. package/build/features/connectExpress/screens/PrepareDataLoading/index.js +2 -0
  474. package/build/features/connectExpress/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +3 -4
  475. package/build/features/connectExpress/screens/VerifyNafath/VerifyNafath.d.ts +5 -0
  476. package/build/features/connectExpress/screens/VerifyNafath/VerifyNafath.js +35 -0
  477. package/build/features/connectExpress/screens/VerifyNafath/index.d.ts +3 -0
  478. package/build/features/connectExpress/screens/VerifyNafath/index.js +2 -0
  479. package/build/features/entity/Entity.d.ts +5 -1
  480. package/build/features/entity/Entity.js +26 -12
  481. package/build/features/entity/screens/EntityCapital/ActivityList.d.ts +4 -4
  482. package/build/features/entity/screens/EntityCapital/CapitalPaid.js +5 -3
  483. package/build/features/entity/screens/EntityCapital/CapitalShareValue.js +6 -4
  484. package/build/features/entity/screens/EntityCapital/EntityCapital.js +34 -10
  485. package/build/features/entity/screens/EntityName/EntityName.js +44 -19
  486. package/build/features/entity/screens/EntityName/EntityTypeList.d.ts +9 -9
  487. package/build/features/entity/screens/EntityName/EntityTypeList.js +2 -3
  488. package/build/features/entity/screens/EntityName/ExpiryDate.d.ts +2 -2
  489. package/build/features/entity/screens/EntityName/ExpiryDate.js +13 -8
  490. package/build/features/entity/screens/EntityName/IssuingDate.d.ts +2 -2
  491. package/build/features/entity/screens/EntityName/IssuingDate.js +15 -8
  492. package/build/features/entity/screens/EntityName/LegalName.js +1 -13
  493. package/build/features/entity/screens/EntityName/LicenseNumber.js +10 -11
  494. package/build/features/entity/screens/EntityName/UnifiedNumber.js +4 -6
  495. package/build/features/entity/screens/EntityName/validation.d.ts +31 -3
  496. package/build/features/entity/screens/EntityName/validation.js +38 -9
  497. package/build/features/entity/screens/OperatorError/OperatorError.d.ts +5 -0
  498. package/build/features/entity/screens/OperatorError/OperatorError.js +9 -0
  499. package/build/features/entity/screens/OperatorError/index.d.ts +3 -0
  500. package/build/features/entity/screens/OperatorError/index.js +2 -0
  501. package/build/features/entity/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +2 -3
  502. package/build/features/entity/screens/Verify/Verify.js +4 -3
  503. package/build/features/featuresScreens.d.ts +2 -0
  504. package/build/features/featuresScreens.js +265 -16
  505. package/build/features/individual/Individual.d.ts +5 -1
  506. package/build/features/individual/Individual.js +26 -12
  507. package/build/features/individual/screens/AdditionalIndividualInfo/AdditionalIndividualInfo.d.ts +2 -2
  508. package/build/features/individual/screens/AdditionalIndividualInfo/AdditionalIndividualInfo.js +55 -15
  509. package/build/features/individual/screens/AdditionalIndividualInfo/IsAuthorizedSwitch.d.ts +36 -0
  510. package/build/features/individual/screens/AdditionalIndividualInfo/IsAuthorizedSwitch.js +76 -0
  511. package/build/features/individual/screens/AdditionalIndividualInfo/MonthlyIncome.js +5 -2
  512. package/build/features/individual/screens/AdditionalIndividualInfo/PEPSwitch.d.ts +4 -4
  513. package/build/features/individual/screens/AdditionalIndividualInfo/ShareValue.js +7 -4
  514. package/build/features/individual/screens/AdditionalIndividualInfo/validation.d.ts +4 -1
  515. package/build/features/individual/screens/AdditionalIndividualInfo/validation.js +4 -3
  516. package/build/features/individual/screens/IndividualList/IndividualList.d.ts +4 -4
  517. package/build/features/individual/screens/IndividualList/IndividualList.js +21 -6
  518. package/build/features/individual/screens/IndividualList/MobileNumber.js +8 -10
  519. package/build/features/individual/screens/IndividualList/UserList.js +13 -9
  520. package/build/features/individual/screens/IndividualList/validation.js +11 -4
  521. package/build/features/individual/screens/IndividualPersonalInfo/Gender.d.ts +4 -4
  522. package/build/features/individual/screens/IndividualPersonalInfo/ID.js +6 -2
  523. package/build/features/individual/screens/IndividualPersonalInfo/IndividualPersonalInfo.d.ts +2 -2
  524. package/build/features/individual/screens/IndividualPersonalInfo/IndividualPersonalInfo.js +79 -21
  525. package/build/features/individual/screens/IndividualPersonalInfo/MobileNumber.js +6 -5
  526. package/build/features/individual/screens/IndividualPersonalInfo/validation.d.ts +1 -1
  527. package/build/features/individual/screens/IndividualPersonalInfo/validation.js +75 -63
  528. package/build/features/individual/screens/IndividualPhoneInfo/MobileNumber.js +9 -11
  529. package/build/features/individual/screens/IndividualPhoneInfo/PhoneInfo.js +1 -1
  530. package/build/features/individual/screens/IndividualPhoneInfo/validation.js +11 -3
  531. package/build/features/individual/screens/OperatorError/OperatorError.d.ts +5 -0
  532. package/build/features/individual/screens/OperatorError/OperatorError.js +9 -0
  533. package/build/features/individual/screens/OperatorError/index.d.ts +3 -0
  534. package/build/features/individual/screens/OperatorError/index.js +2 -0
  535. package/build/features/individual/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +2 -3
  536. package/build/features/individual/screens/Verify/Verify.js +4 -3
  537. package/build/features/password/Password.d.ts +5 -1
  538. package/build/features/password/Password.js +90 -33
  539. package/build/features/password/screens/CreatePassword/CreatePassword.js +10 -4
  540. package/build/features/password/screens/OTP/OTP.js +4 -4
  541. package/build/features/password/screens/OperatorError/OperatorError.d.ts +5 -0
  542. package/build/features/password/screens/OperatorError/OperatorError.js +9 -0
  543. package/build/features/password/screens/OperatorError/index.d.ts +3 -0
  544. package/build/features/password/screens/OperatorError/index.js +2 -0
  545. package/build/features/password/screens/PrepareDataLoading/PrepareDataLoading.d.ts +4 -0
  546. package/build/features/password/screens/PrepareDataLoading/PrepareDataLoading.js +10 -0
  547. package/build/features/password/screens/PrepareDataLoading/index.d.ts +2 -0
  548. package/build/features/password/screens/PrepareDataLoading/index.js +2 -0
  549. package/build/features/password/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +2 -3
  550. package/build/features/password/screens/Verify/Verify.js +8 -7
  551. package/build/features/shared/Address/CountryList.d.ts +7 -7
  552. package/build/features/shared/Address/InputSelect.d.ts +7 -7
  553. package/build/features/shared/Background/Background.d.ts +3 -1
  554. package/build/features/shared/Background/Background.js +9 -11
  555. package/build/features/shared/BusinessCountry/BusinessCountry.d.ts +15 -0
  556. package/build/features/shared/BusinessCountry/BusinessCountry.js +179 -0
  557. package/build/features/shared/BusinessCountry/index.d.ts +2 -0
  558. package/build/features/shared/BusinessCountry/index.js +2 -0
  559. package/build/features/shared/Button/Button.js +11 -5
  560. package/build/features/shared/Button/EmailProvidersButtons.js +2 -0
  561. package/build/features/shared/Button/FlowsButtons.js +20 -5
  562. package/build/features/shared/Button/NafathButton.d.ts +8 -0
  563. package/build/features/shared/Button/{AbsherButton.js → NafathButton.js} +12 -3
  564. package/build/features/shared/Button/index.d.ts +2 -2
  565. package/build/features/shared/Button/index.js +2 -2
  566. package/build/features/shared/Calender/Calender.d.ts +2 -1
  567. package/build/features/shared/Calender/Calender.js +3 -3
  568. package/build/features/shared/Containers/FeatureContainer.d.ts +3 -1
  569. package/build/features/shared/Containers/FeatureContainer.js +5 -3
  570. package/build/features/shared/Containers/ScreenContainer.d.ts +1 -1
  571. package/build/features/shared/DataLoading/DataLoading.d.ts +4 -1
  572. package/build/features/shared/DataLoading/DataLoading.js +2 -2
  573. package/build/features/shared/Dialog/DialogContainer.js +5 -4
  574. package/build/features/shared/Footer/Footer.js +2 -1
  575. package/build/features/shared/Input/Input.d.ts +2 -2
  576. package/build/features/shared/NafathVerification/NafathVerification.d.ts +14 -0
  577. package/build/features/shared/NafathVerification/NafathVerification.js +92 -0
  578. package/build/features/shared/NafathVerification/VerifyNafathLoading.d.ts +8 -0
  579. package/build/features/shared/NafathVerification/VerifyNafathLoading.js +53 -0
  580. package/build/features/shared/NafathVerification/VerifyNafathSuccess.d.ts +5 -0
  581. package/build/features/shared/NafathVerification/VerifyNafathSuccess.js +8 -0
  582. package/build/features/shared/NafathVerification/index.d.ts +2 -0
  583. package/build/features/shared/NafathVerification/index.js +2 -0
  584. package/build/features/shared/SuccessFlowButtons/SuccessFlowButtons.d.ts +6 -1
  585. package/build/features/shared/SuccessFlowButtons/SuccessFlowButtons.js +10 -13
  586. package/build/features/shared/SuccessScreen/SuccessScreen.js +2 -2
  587. package/build/features/shared/UploadFile/FileUpload.d.ts +1 -1
  588. package/build/features/shared/UploadFile/UploadFile.d.ts +1 -1
  589. package/build/features/shared/UploadFile/UploadWrapper.d.ts +1 -1
  590. package/build/features/shared/UploadMultipleFile/UploadFile.d.ts +1 -1
  591. package/build/features/shared/UploadMultipleFile/UploadMultipleFile.d.ts +1 -1
  592. package/build/features/signIn/SignIn.js +18 -7
  593. package/build/features/signIn/screens/Mobile/MobileNumber.js +8 -7
  594. package/build/features/signIn/screens/Mobile/validation.js +11 -3
  595. package/build/features/signIn/screens/OTP/OTP.js +5 -4
  596. package/build/features/signIn/screens/OperatorError/OperatorError.d.ts +5 -0
  597. package/build/features/signIn/screens/OperatorError/OperatorError.js +9 -0
  598. package/build/features/signIn/screens/OperatorError/index.d.ts +3 -0
  599. package/build/features/signIn/screens/OperatorError/index.js +2 -0
  600. package/build/features/tax/Tax.d.ts +5 -1
  601. package/build/features/tax/Tax.js +26 -12
  602. package/build/features/tax/screens/OperatorError/OperatorError.d.ts +5 -0
  603. package/build/features/tax/screens/OperatorError/OperatorError.js +9 -0
  604. package/build/features/tax/screens/OperatorError/index.d.ts +3 -0
  605. package/build/features/tax/screens/OperatorError/index.js +2 -0
  606. package/build/features/tax/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +2 -3
  607. package/build/features/tax/screens/TaxDetails/TaxDetails.js +9 -3
  608. package/build/features/tax/screens/Verify/Verify.js +8 -7
  609. package/build/hooks/index.d.ts +3 -0
  610. package/build/hooks/index.js +3 -0
  611. package/build/hooks/useAppConfig.d.ts +3 -3
  612. package/build/hooks/useAppConfig.js +10 -8
  613. package/build/hooks/useAppDispatch.d.ts +2 -0
  614. package/build/hooks/useAppTheme.js +4 -3
  615. package/build/hooks/useCountDown.d.ts +10 -0
  616. package/build/hooks/useCountDown.js +17 -0
  617. package/build/hooks/useCountry.d.ts +1 -0
  618. package/build/hooks/useCountry.js +4 -3
  619. package/build/hooks/useFormDirtyCheck.d.ts +10 -0
  620. package/build/hooks/useFormDirtyCheck.js +66 -0
  621. package/build/hooks/useSanitizedTranslation.d.ts +2 -0
  622. package/build/hooks/useSanitizedTranslation.js +15 -0
  623. package/build/hooks/useVerifyToken.d.ts +5 -2
  624. package/build/hooks/useVerifyToken.js +10 -5
  625. package/build/index.css +360 -120
  626. package/build/index.d.ts +4 -2
  627. package/build/index.js +6 -2
  628. package/build/theme/components.js +7 -0
  629. package/build/theme/palette.js +4 -2
  630. package/build/theme/shadows.js +1 -1
  631. package/build/theme/theme.d.ts +1 -1
  632. package/build/theme/theme.js +2 -2
  633. package/build/utils/array.js +2 -2
  634. package/build/utils/common.d.ts +3 -0
  635. package/build/utils/common.js +38 -2
  636. package/build/utils/device.d.ts +2 -0
  637. package/build/utils/device.js +6 -0
  638. package/build/utils/locale.js +2 -1
  639. package/build/utils/object.d.ts +1 -0
  640. package/build/utils/object.js +4 -1
  641. package/build/utils/string.d.ts +7 -2
  642. package/build/utils/string.js +32 -5
  643. package/build/utils/validation.d.ts +5 -0
  644. package/build/utils/validation.js +16 -0
  645. package/package.json +2 -2
  646. package/build/features/business/screens/OTP/OTP.d.ts +0 -8
  647. package/build/features/business/screens/OTP/OTP.js +0 -90
  648. package/build/features/connect/screens/BrandSegment/SegmentLocations.d.ts +0 -8
  649. package/build/features/connect/screens/BrandSegment/SegmentLocations.js +0 -66
  650. package/build/features/connect/screens/BrandSegment/SegmentProfits.d.ts +0 -8
  651. package/build/features/connect/screens/BrandSegment/SegmentProfits.js +0 -66
  652. package/build/features/connect/screens/BrandSegment/SegmentTechs.d.ts +0 -8
  653. package/build/features/connect/screens/BrandSegment/SegmentTechs.js +0 -66
  654. package/build/features/connectExpress/screens/AuthenticationList/MerchantList.js +0 -100
  655. package/build/features/connectExpress/screens/AuthenticationList/TerminalList.js +0 -101
  656. package/build/features/connectExpress/screens/IdentityOTP/index.d.ts +0 -3
  657. package/build/features/connectExpress/screens/IdentityOTP/index.js +0 -2
  658. package/build/features/shared/Button/AbsherButton.d.ts +0 -8
  659. /package/build/features/{connect/screens/NID → auth/screens/DOB}/DOB.d.ts +0 -0
  660. /package/build/features/{connectExpress/screens/IdentityOTP → auth/screens/OTP}/OTP.d.ts +0 -0
  661. /package/build/features/{business → auth}/screens/OTP/OTPInput.d.ts +0 -0
  662. /package/build/features/{business → auth}/screens/OTP/index.d.ts +0 -0
  663. /package/build/features/{business → auth}/screens/OTP/index.js +0 -0
  664. /package/build/features/{business → auth}/screens/OTP/validation.d.ts +0 -0
  665. /package/build/features/{business → auth}/screens/OTP/validation.js +0 -0
  666. /package/build/features/{connectExpress/screens/IdentityOTP/OTPInput.d.ts → board/screens/Verify/Verify.d.ts} +0 -0
  667. /package/build/features/{connectExpress/screens/IdentityOTP → board/screens/Verify}/validation.d.ts +0 -0
  668. /package/build/features/{connectExpress/screens/IdentityOTP → board/screens/Verify}/validation.js +0 -0
@@ -7,8 +7,15 @@ export declare type GetUserListBody = {
7
7
  limit: number;
8
8
  business_id: string;
9
9
  };
10
+ export declare type GetUserListSegmentBody = {
11
+ page: number;
12
+ limit: number;
13
+ is_authorized: boolean;
14
+ segment_ids: string[];
15
+ };
10
16
  declare const userService: {
11
17
  retrieveUserInfo: (userId: string) => Promise<any>;
12
18
  getUserList: (data: GetUserListBody) => Promise<any>;
19
+ getUserListUsingSegmentId: (data: GetUserListSegmentBody) => Promise<any>;
13
20
  };
14
21
  export { userService };
package/build/api/user.js CHANGED
@@ -13,8 +13,16 @@ var getUserList = function (data) {
13
13
  data: data
14
14
  });
15
15
  };
16
+ var getUserListUsingSegmentId = function (data) {
17
+ return httpClient({
18
+ method: 'post',
19
+ url: "".concat(ENDPOINT_PATHS.RETRIEVE_USER_INFO, "/list"),
20
+ data: data
21
+ });
22
+ };
16
23
  var userService = {
17
24
  retrieveUserInfo: retrieveUserInfo,
18
- getUserList: getUserList
25
+ getUserList: getUserList,
26
+ getUserListUsingSegmentId: getUserListUsingSegmentId
19
27
  };
20
28
  export { userService };
@@ -10,5 +10,7 @@ declare const rootReducer: {
10
10
  entity: import("redux").Reducer<import("../features/app/entity/entityStore").EntityState, import("redux").AnyAction>;
11
11
  brand: import("redux").Reducer<import("../features/app/brand/brandStore").BrandState, import("redux").AnyAction>;
12
12
  connectExpress: import("redux").Reducer<import("../features/app/connectExpress/connectExpressStore").ConnectExpressState, import("redux").AnyAction>;
13
+ auth: import("redux").Reducer<import("../features/app/auth/authStore").AuthState, import("redux").AnyAction>;
14
+ board: import("redux").Reducer<import("../features/app/board/boardStore").BoardState, import("redux").AnyAction>;
13
15
  };
14
16
  export default rootReducer;
@@ -9,6 +9,8 @@ import signIn from '../features/app/signIn/signInStore';
9
9
  import entity from '../features/app/entity/entityStore';
10
10
  import brand from '../features/app/brand/brandStore';
11
11
  import connectExpress from '../features/app/connectExpress/connectExpressStore';
12
+ import board from '../features/app/board/boardStore';
13
+ import auth from '../features/app/auth/authStore';
12
14
  var rootReducer = {
13
15
  settings: settings,
14
16
  connect: connect,
@@ -20,6 +22,8 @@ var rootReducer = {
20
22
  signIn: signIn,
21
23
  entity: entity,
22
24
  brand: brand,
23
- connectExpress: connectExpress
25
+ connectExpress: connectExpress,
26
+ auth: auth,
27
+ board: board
24
28
  };
25
29
  export default rootReducer;
@@ -1,15 +1,20 @@
1
1
  import { RootState } from './store';
2
- import { ActionState, LanguageMode, SharedState, ThemeMode, ScreenStepNavigation, DeviceInfo, LibConfig, CountryCode, MerchantInfo, ConfigExpressTokenParams } from '../@types';
2
+ import { ActionState, LanguageMode, SharedState, ThemeMode, ScreenStepNavigation, DeviceInfo, LibConfig, CountryCode, MerchantInfo, BusinessCountryInfo, ConfigInfo, LocalProps, SettingAsyncData } from '../@types';
3
3
  interface SettingParams {
4
4
  disableCountries?: boolean;
5
5
  disableLocale?: boolean;
6
6
  mdn: string;
7
7
  maturity?: 'full' | 'express';
8
8
  configToken?: string;
9
- onVerifyConfigTokenSuccess?: (data: ConfigExpressTokenParams) => Promise<void>;
9
+ onVerifyConfigTokenSuccess?: (data: ConfigInfo) => Promise<void>;
10
+ settingData?: SettingAsyncData;
10
11
  }
11
12
  export declare const fetchAppSettingsSync: import("@reduxjs/toolkit").AsyncThunk<any, SettingParams, {}>;
12
- export declare const onCloseComplete: import("@reduxjs/toolkit").AsyncThunk<void, string, {}>;
13
+ export declare const onCloseComplete: import("@reduxjs/toolkit").AsyncThunk<void, {
14
+ merchantId: string;
15
+ brandId: string;
16
+ entityId: string;
17
+ }, {}>;
13
18
  export interface SettingsData {
14
19
  skin: ThemeMode;
15
20
  language: LanguageMode;
@@ -26,13 +31,15 @@ export interface SettingsData {
26
31
  merchant?: MerchantInfo;
27
32
  isMaturityExpress: boolean;
28
33
  isHijri: boolean;
34
+ authId?: string;
35
+ ipCountry: CountryCode;
36
+ businessCountries: Array<BusinessCountryInfo>;
37
+ locale?: LocalProps;
29
38
  }
30
39
  export interface SettingsState extends SharedState<SettingsData> {
31
- internalLoading: boolean;
32
40
  }
33
41
  export declare const settingsSlice: import("@reduxjs/toolkit").Slice<SettingsState, {
34
42
  storeAuthId: (state: import("immer/dist/internal").WritableDraft<SettingsState>, action: ActionState<string>) => void;
35
- updateInternalLoading: (state: import("immer/dist/internal").WritableDraft<SettingsState>, action: ActionState<boolean>) => void;
36
43
  handelBoardMaturity: (state: import("immer/dist/internal").WritableDraft<SettingsState>, action: ActionState<boolean>) => void;
37
44
  handleIsTapOrigin: (state: import("immer/dist/internal").WritableDraft<SettingsState>, action: ActionState<boolean>) => void;
38
45
  handleOpen: (state: import("immer/dist/internal").WritableDraft<SettingsState>, action: ActionState<boolean>) => void;
@@ -47,7 +54,7 @@ export declare const settingsSlice: import("@reduxjs/toolkit").Slice<SettingsSta
47
54
  handleSetAppConfig: (state: SettingsState, action: ActionState<LibConfig>) => void;
48
55
  handleSetCountryByIso2: (state: SettingsState, action: ActionState<string>) => void;
49
56
  }, "settings">;
50
- export declare const storeAuthId: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, string>, updateInternalLoading: import("@reduxjs/toolkit").ActionCreatorWithPayload<boolean, string>, handleSkin: import("@reduxjs/toolkit").ActionCreatorWithPayload<ThemeMode, string>, handleLanguage: import("@reduxjs/toolkit").ActionCreatorWithPayload<LanguageMode, string>, handleActiveFlowScreens: import("@reduxjs/toolkit").ActionCreatorWithPayload<ScreenStepNavigation[], string>, handleNextScreenStep: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<string | undefined, string>, handlePrevScreenStep: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<string | undefined, string>, handleCurrentActiveScreen: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, string>, handleSetAppConfig: import("@reduxjs/toolkit").ActionCreatorWithPayload<LibConfig, string>, handleOpen: import("@reduxjs/toolkit").ActionCreatorWithPayload<boolean, string>, handleSetCountryByIso2: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, string>, handleIsTapOrigin: import("@reduxjs/toolkit").ActionCreatorWithPayload<boolean, string>, handelBoardMaturity: import("@reduxjs/toolkit").ActionCreatorWithPayload<boolean, string>, handlePublicKey: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, string>, handleSwitchCalender: import("@reduxjs/toolkit").ActionCreatorWithPayload<boolean, string>;
57
+ export declare const storeAuthId: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, string>, handleSkin: import("@reduxjs/toolkit").ActionCreatorWithPayload<ThemeMode, string>, handleLanguage: import("@reduxjs/toolkit").ActionCreatorWithPayload<LanguageMode, string>, handleActiveFlowScreens: import("@reduxjs/toolkit").ActionCreatorWithPayload<ScreenStepNavigation[], string>, handleNextScreenStep: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<string | undefined, string>, handlePrevScreenStep: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<string | undefined, string>, handleCurrentActiveScreen: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, string>, handleSetAppConfig: import("@reduxjs/toolkit").ActionCreatorWithPayload<LibConfig, string>, handleOpen: import("@reduxjs/toolkit").ActionCreatorWithPayload<boolean, string>, handleSetCountryByIso2: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, string>, handleIsTapOrigin: import("@reduxjs/toolkit").ActionCreatorWithPayload<boolean, string>, handelBoardMaturity: import("@reduxjs/toolkit").ActionCreatorWithPayload<boolean, string>, handlePublicKey: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, string>, handleSwitchCalender: import("@reduxjs/toolkit").ActionCreatorWithPayload<boolean, string>;
51
58
  declare const _default: import("redux").Reducer<SettingsState, import("redux").AnyAction>;
52
59
  export default _default;
53
60
  export declare const settingsSelector: (state: RootState) => SettingsState;
@@ -45,28 +45,43 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
45
45
  if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
46
46
  }
47
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
+ };
48
57
  var _a;
49
58
  import { createAsyncThunk, createSlice } from '@reduxjs/toolkit';
50
- import { getStoredData, storeData, isArray, findItem, getBrowserInfo, getFingerPrint, sortCountries, findCountryByIso2, getRequestHeaders, encryptString, dangerousMessage, isKW, isSA, getParameterByName, setBaseUrl } from '../utils';
51
- import { DefaultDeviceInfo, LOCAL_STORAGE_KEYS } from '../constants';
59
+ import { getStoredData, storeData, isArray, findItem, getBrowserInfo, getFingerPrint, sortCountries, findCountryByIso2, getRequestHeaders, encryptString, dangerousMessage, getParameterByName, setBaseUrl, getUserLanguage } from '../utils';
60
+ import { BUSINESS_COUNTRIES, DEFAULT_COUNTRY_ISO2, DefaultDeviceInfo, LOCAL_STORAGE_KEYS } from '../constants';
52
61
  import i18n from '../i18n';
53
62
  import { updateLocale } from '../utils/locale';
54
63
  import API, { getAxiosHeaders, setAxiosGlobalHeaders } from '../api';
55
64
  export var fetchAppSettingsSync = createAsyncThunk('fetchAppSettingsSync', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
56
- var settings, _a, appConfig, language, _b, client, device, os, disableLocale, maturity, disableCountries, configToken, onVerifyConfigTokenSuccess, _c, visitorId, locale, configInfo, matureData, lang, initPayload, _d, country_list, ip_info, merchant, operator, config, list, _e, ip, latitude, longitude, domain, language_1, country, scope, public_key, maturity_1, board_maturity, post, platform_redirect_url, data, deviceInfo, isValidOperator, countries, countryCode, isKWOrSA, businessCountry;
57
- return __generator(this, function (_f) {
58
- switch (_f.label) {
65
+ var settings, _a, appConfig, language, _b, client, device, os, disableLocale, maturity, disableCountries, configToken, onVerifyConfigTokenSuccess, _c, visitorId, locale, _d, configInfo, matureData, lang, initPayload, _e, country_list, ip_info, merchant, operator, config, _f, list, _g, ip, latitude, longitude, country_code, countries, _h, operator_1, scope, data, lead, board, interfaceData, redirect, post, platforms, payment_provider, _j, locale_1, edges, deviceInfo, isValidOperator, countryCode, businessCountry, ipCountry;
66
+ return __generator(this, function (_k) {
67
+ switch (_k.label) {
59
68
  case 0:
60
69
  settings = thunkApi.getState().settings;
61
70
  _a = settings.data, appConfig = _a.appConfig, language = _a.language;
62
71
  _b = getBrowserInfo(), client = _b.client, device = _b.device, os = _b.os;
63
72
  disableLocale = params.disableLocale, maturity = params.maturity, disableCountries = params.disableCountries, configToken = params.configToken, onVerifyConfigTokenSuccess = params.onVerifyConfigTokenSuccess;
64
- return [4, Promise.all([getFingerPrint(), API.firebaseService.getLocale(disableLocale)])];
65
- case 1:
66
- _c = _f.sent(), visitorId = _c[0].visitorId, locale = _c[1];
73
+ if (!params.settingData) return [3, 1];
74
+ _d = [params.settingData.fingerPrint, params.settingData.locale];
75
+ return [3, 3];
76
+ case 1: return [4, Promise.all([getFingerPrint(), API.firebaseService.getLocale(disableLocale)])];
77
+ case 2:
78
+ _d = _k.sent();
79
+ _k.label = 3;
80
+ case 3:
81
+ _c = _d, visitorId = _c[0].visitorId, locale = _c[1];
67
82
  configInfo = appConfig;
68
83
  matureData = maturity;
69
- lang = getParameterByName('lang');
84
+ lang = getParameterByName('lang') || language;
70
85
  setAxiosGlobalHeaders({
71
86
  bi: visitorId || '',
72
87
  mdn: encryptString(params.mdn || window.location.origin),
@@ -75,34 +90,39 @@ export var fetchAppSettingsSync = createAsyncThunk('fetchAppSettingsSync', funct
75
90
  initPayload = __assign(__assign({ type: 'website', app_client_version: 'js-auth-connect', requirer_browser: "".concat(client === null || client === void 0 ? void 0 : client.name, " , ").concat(client === null || client === void 0 ? void 0 : client.version), os: "".concat(os === null || os === void 0 ? void 0 : os.name, " , ").concat(os === null || os === void 0 ? void 0 : os.version), locale: language }, (configToken && { config_token: configToken })), { data_required: {
76
91
  country_list: !disableCountries
77
92
  } });
93
+ _f = params.settingData;
94
+ if (_f) return [3, 5];
78
95
  return [4, API.initService.getInitialData(initPayload)];
79
- case 2:
80
- _d = _f.sent(), country_list = _d.country_list, ip_info = _d.ip_info, merchant = _d.merchant, operator = _d.operator, config = _d.config;
81
- list = (country_list || { list: [] }).list;
82
- _e = ip_info || {}, ip = _e.ip, latitude = _e.latitude, longitude = _e.longitude;
96
+ case 4:
97
+ _f = (_k.sent());
98
+ _k.label = 5;
99
+ case 5:
100
+ _e = _f, country_list = _e.country_list, ip_info = _e.ip_info, merchant = _e.merchant, operator = _e.operator, config = _e.config;
101
+ list = __spreadArray([], ((country_list === null || country_list === void 0 ? void 0 : country_list.list) || []), true);
102
+ _g = ip_info || {}, ip = _g.ip, latitude = _g.latitude, longitude = _g.longitude, country_code = _g.country_code;
103
+ countries = sortCountries(list);
83
104
  if (config) {
84
- domain = config.domain, language_1 = config.language, country = config.country, scope = config.scope, public_key = config.public_key, maturity_1 = config.maturity, board_maturity = config.board_maturity, post = config.post, platform_redirect_url = config.platform_redirect_url, data = config.data;
85
- configInfo = __assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, configInfo), (domain && { merchantDomain: domain })), (language_1 && { language: language_1 })), (country && { businessCountryCode: country })), (scope && { scope: scope })), (public_key && { publicKey: public_key })), ((post === null || post === void 0 ? void 0 : post.url) && { postURL: post === null || post === void 0 ? void 0 : post.url })), (platform_redirect_url && { redirectUrl: platform_redirect_url })), (data && { data: data }));
86
- if (typeof maturity_1 === 'boolean')
87
- matureData = maturity_1 ? 'full' : 'express';
105
+ _h = config, operator_1 = _h.operator, scope = _h.scope, data = _h.data, lead = _h.lead, board = _h.board, interfaceData = _h.interface, redirect = _h.redirect, post = _h.post, platforms = _h.platforms, payment_provider = _h.payment_provider;
106
+ _j = interfaceData || {}, locale_1 = _j.locale, edges = _j.edges;
107
+ if (locale_1)
108
+ lang = locale_1 === 'dynamic' ? getUserLanguage() : locale_1;
109
+ configInfo = __assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, configInfo), ((lead === null || lead === void 0 ? void 0 : lead.id) && { leadId: lead.id })), (scope && { scope: scope.toLowerCase() })), ((operator_1 === null || operator_1 === void 0 ? void 0 : operator_1.public_key) && { publicKey: operator_1.public_key })), ((post === null || post === void 0 ? void 0 : post.url) && { postURL: post.url })), ((redirect === null || redirect === void 0 ? void 0 : redirect.url) && { redirectUrl: redirect.url })), (data && { data: data })), (edges && { dialogEdgeFormat: edges })), (platforms && { platforms: platforms })), (payment_provider && { payment_provider: payment_provider })), (typeof (board === null || board === void 0 ? void 0 : board.display) === 'boolean' && { showBoard: board.display }));
110
+ matureData = 'express';
88
111
  thunkApi.dispatch(handleSetAppConfig(configInfo));
89
- thunkApi.dispatch(handleLanguage(language_1 || lang));
90
- if (public_key) {
112
+ thunkApi.dispatch(handleLanguage(lang));
113
+ if (configInfo.publicKey) {
91
114
  if (configToken) {
92
- setBaseUrl(public_key);
115
+ setBaseUrl(configInfo.publicKey);
93
116
  }
94
- thunkApi.dispatch(handlePublicKey(public_key));
117
+ thunkApi.dispatch(handlePublicKey(configInfo.publicKey));
95
118
  }
96
- if (typeof board_maturity === 'boolean')
97
- thunkApi.dispatch(handelBoardMaturity(board_maturity));
119
+ if (typeof (board === null || board === void 0 ? void 0 : board.editable) === 'boolean')
120
+ thunkApi.dispatch(handelBoardMaturity(board.editable));
98
121
  onVerifyConfigTokenSuccess === null || onVerifyConfigTokenSuccess === void 0 ? void 0 : onVerifyConfigTokenSuccess(config);
99
- if (matureData === 'express' && maturity_1 !== matureData && typeof configInfo.onMaturityChanged === 'function') {
100
- configInfo.onMaturityChanged(matureData);
101
- }
102
122
  }
103
123
  deviceInfo = {
104
124
  app: {
105
- language: configInfo.language || 'en',
125
+ language: language !== null && language !== void 0 ? language : (lang || 'en'),
106
126
  name: configInfo.appInfo.name,
107
127
  identifier: configInfo.appInfo.identifier || 'auth-connect',
108
128
  version: configInfo.appInfo.version || '2.0.0'
@@ -133,52 +153,72 @@ export var fetchAppSettingsSync = createAsyncThunk('fetchAppSettingsSync', funct
133
153
  };
134
154
  setAxiosGlobalHeaders(__assign(__assign(__assign({}, getRequestHeaders(deviceInfo)), { authorization: encryptString(configInfo.publicKey), mdn: encryptString(params.mdn || window.location.origin), cu: window.location.href }), (matureData && { maturity: matureData })));
135
155
  isValidOperator = operator === 'valid';
136
- countries = sortCountries(list);
137
156
  countryCode = configInfo.businessCountryCode;
138
- isKWOrSA = isKW(countryCode) || isSA(countryCode);
139
- if (!isKWOrSA)
140
- countryCode = 'KW';
141
- businessCountry = findCountryByIso2(countries, countryCode);
142
- if (!businessCountry)
143
- throw new Error('Business country not found, you have to pass a valid business country code in the lib config');
144
- return [2, __assign(__assign({ countries: countries, businessCountry: businessCountry, locale: locale, deviceInfo: deviceInfo, isValidOperator: isValidOperator, isMaturityExpress: matureData === 'express' }, (config && { boardMaturity: config.board_maturity })), (merchant && { merchant: merchant }))];
157
+ businessCountry = undefined;
158
+ ipCountry = undefined;
159
+ if (countryCode)
160
+ businessCountry = findCountryByIso2(countries, countryCode);
161
+ ipCountry = findCountryByIso2(countries, country_code !== null && country_code !== void 0 ? country_code : DEFAULT_COUNTRY_ISO2);
162
+ if (appConfig.onSettingFetched)
163
+ appConfig.onSettingFetched({
164
+ config: config,
165
+ country_list: country_list,
166
+ fingerPrint: { visitorId: visitorId },
167
+ ip_info: ip_info,
168
+ merchant: merchant,
169
+ operator: operator,
170
+ locale: locale
171
+ });
172
+ if (!(matureData === 'express' && maturity !== matureData && typeof configInfo.onMaturityChanged === 'function')) return [3, 7];
173
+ return [4, configInfo.onMaturityChanged(matureData)];
174
+ case 6:
175
+ _k.sent();
176
+ _k.label = 7;
177
+ case 7: return [2, __assign({ countries: countries, businessCountry: businessCountry, locale: locale, deviceInfo: deviceInfo, ipCountry: ipCountry, isValidOperator: isValidOperator, isMaturityExpress: matureData === 'express' }, (merchant && { merchant: merchant }))];
145
178
  }
146
179
  });
147
180
  }); });
148
- export var onCloseComplete = createAsyncThunk('settings/onCloseComplete', function (merchantId, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
149
- var settings, _a, postURL, redirectUrl, authId, bi, list, id, body, data, urlQueryStart;
150
- var _b, _c, _d, _e;
151
- return __generator(this, function (_f) {
152
- switch (_f.label) {
181
+ export var onCloseComplete = createAsyncThunk('settings/onCloseComplete', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
182
+ var settings, _a, appConfig, authId, postURL, redirectUrl, bi, merchantId, brandId, entityId, body, data, urlQueryStart, newUrl;
183
+ var _b, _c;
184
+ return __generator(this, function (_d) {
185
+ switch (_d.label) {
153
186
  case 0:
154
187
  settings = thunkApi.getState().settings;
155
- _a = settings.data.appConfig, postURL = _a.postURL, redirectUrl = _a.redirectUrl, authId = _a.authId;
188
+ _a = settings.data, appConfig = _a.appConfig, authId = _a.authId;
189
+ postURL = appConfig.postURL, redirectUrl = appConfig.redirectUrl;
156
190
  bi = settings.data.deviceInfo.browser.browser_id;
157
- return [4, API.entityService.getTerminalListUsingMerchantId(merchantId)];
158
- case 1:
159
- list = (_f.sent()).list;
160
- id = ((_c = (_b = list === null || list === void 0 ? void 0 : list[0]) === null || _b === void 0 ? void 0 : _b.operator) === null || _c === void 0 ? void 0 : _c.id) || '';
191
+ merchantId = params.merchantId, brandId = params.brandId, entityId = params.entityId;
192
+ if (!authId) return [3, 2];
161
193
  body = {
162
- id: id,
163
194
  post_url: postURL || '',
164
- authentication_id: authId || '',
165
- bi: bi
195
+ authentication_id: authId,
196
+ bi: bi,
197
+ brand_id: brandId || '',
198
+ merchant_id: merchantId || '',
199
+ entity_id: entityId || '',
200
+ data: settings.data.appConfig.data || []
166
201
  };
167
- return [4, API.operatorService.updateOperator(body)];
168
- case 2:
169
- data = _f.sent();
170
- (_e = (_d = settings.data.appConfig).onStepCompleted) === null || _e === void 0 ? void 0 : _e.call(_d, settings.data.activeScreen.name, data);
171
- if (authId) {
172
- if (settings.data.appConfig.mode === 'popup') {
173
- settings.data.appConfig.onFlowCompleted({ auth_id: authId, bi: bi });
174
- thunkApi.dispatch(handleOpen(false));
175
- return [2];
176
- }
177
- if (redirectUrl) {
178
- urlQueryStart = redirectUrl.includes('?') ? '&' : '?';
179
- window.open("".concat(redirectUrl).concat(urlQueryStart, "authentication_id=").concat(authId, "&bi=").concat(bi), '_self');
180
- }
202
+ return [4, API.operatorService.confirm(body)];
203
+ case 1:
204
+ data = _d.sent();
205
+ (_c = (_b = settings.data.appConfig).onStepCompleted) === null || _c === void 0 ? void 0 : _c.call(_b, settings.data.activeScreen.name, data);
206
+ if (settings.data.appConfig.mode === 'popup') {
207
+ settings.data.appConfig.onFlowCompleted({ auth_id: authId, bi: bi });
208
+ thunkApi.dispatch(handleOpen(false));
209
+ return [2];
181
210
  }
211
+ if (redirectUrl) {
212
+ urlQueryStart = redirectUrl.includes('?') ? '&' : '?';
213
+ window.open("".concat(redirectUrl).concat(urlQueryStart, "authentication_id=").concat(authId, "&bi=").concat(bi), '_self');
214
+ }
215
+ _d.label = 2;
216
+ case 2:
217
+ if (!redirectUrl)
218
+ return [2];
219
+ newUrl = new URL(redirectUrl);
220
+ newUrl.searchParams.append('action', 'close');
221
+ window.open("".concat(newUrl), '_self', '_blank');
182
222
  return [2];
183
223
  }
184
224
  });
@@ -186,9 +226,9 @@ export var onCloseComplete = createAsyncThunk('settings/onCloseComplete', functi
186
226
  var initialState = {
187
227
  error: null,
188
228
  loading: true,
189
- internalLoading: true,
190
229
  data: {
191
230
  boardMaturity: true,
231
+ authId: '',
192
232
  open: true,
193
233
  isTapOrigin: true,
194
234
  isMaturityExpress: false,
@@ -199,6 +239,8 @@ var initialState = {
199
239
  deviceInfo: DefaultDeviceInfo,
200
240
  appConfig: {},
201
241
  businessCountry: {},
242
+ businessCountries: BUSINESS_COUNTRIES,
243
+ ipCountry: {},
202
244
  countries: [],
203
245
  isValidOperator: false,
204
246
  isHijri: false
@@ -209,10 +251,7 @@ export var settingsSlice = createSlice({
209
251
  initialState: initialState,
210
252
  reducers: {
211
253
  storeAuthId: function (state, action) {
212
- state.data.appConfig.authId = action.payload;
213
- },
214
- updateInternalLoading: function (state, action) {
215
- state.internalLoading = action.payload;
254
+ state.data.authId = action.payload;
216
255
  },
217
256
  handelBoardMaturity: function (state, action) {
218
257
  state.data.boardMaturity = action.payload;
@@ -294,11 +333,9 @@ export var settingsSlice = createSlice({
294
333
  state.data.activeScreen = action.payload[0];
295
334
  },
296
335
  handleSetAppConfig: function (state, action) {
297
- var _a = action.payload, appInfo = _a.appInfo, businessCountryCode = _a.businessCountryCode, language = _a.language, onError = _a.onError, onFlowCompleted = _a.onFlowCompleted, publicKey = _a.publicKey, merchantDomain = _a.merchantDomain, open = _a.open, scope = _a.scope;
336
+ var _a = action.payload, appInfo = _a.appInfo, language = _a.language, onError = _a.onError, onFlowCompleted = _a.onFlowCompleted, publicKey = _a.publicKey, merchantDomain = _a.merchantDomain, open = _a.open, scope = _a.scope;
298
337
  if (!appInfo.name)
299
338
  throw new Error('App name is required');
300
- if (!businessCountryCode)
301
- throw new Error('Business country is required');
302
339
  if (!language)
303
340
  throw new Error('Language is required');
304
341
  if (!publicKey)
@@ -317,39 +354,42 @@ export var settingsSlice = createSlice({
317
354
  },
318
355
  handleSetCountryByIso2: function (state, action) {
319
356
  var country = findCountryByIso2(state.data.countries, action.payload);
320
- if (country)
357
+ if (country) {
358
+ if (state.data.locale && country.iso2)
359
+ updateLocale(state.data.locale, country.iso2);
321
360
  state.data.businessCountry = country;
361
+ }
322
362
  }
323
363
  },
324
364
  extraReducers: function (builder) {
325
365
  builder.addCase(fetchAppSettingsSync.pending, function (state) {
326
366
  state.loading = true;
327
- state.internalLoading = false;
328
367
  state.error = null;
329
368
  });
330
369
  builder.addCase(fetchAppSettingsSync.fulfilled, function (state, action) {
331
- var _a = action.payload, businessCountry = _a.businessCountry, countries = _a.countries, locale = _a.locale, deviceInfo = _a.deviceInfo, isValidOperator = _a.isValidOperator, merchant = _a.merchant, isMaturityExpress = _a.isMaturityExpress;
370
+ var _a = action.payload, businessCountry = _a.businessCountry, countries = _a.countries, locale = _a.locale, deviceInfo = _a.deviceInfo, isValidOperator = _a.isValidOperator, merchant = _a.merchant, isMaturityExpress = _a.isMaturityExpress, ipCountry = _a.ipCountry;
332
371
  state.data.countries = countries;
333
372
  state.data.businessCountry = businessCountry;
373
+ state.data.ipCountry = ipCountry;
374
+ state.data.locale = locale;
334
375
  state.data.deviceInfo = deviceInfo;
335
376
  state.data.isValidOperator = isValidOperator;
336
377
  if (merchant)
337
378
  state.data.merchant = merchant;
338
379
  state.data.isMaturityExpress = isMaturityExpress;
339
- if (locale)
340
- updateLocale(locale, businessCountry.iso2);
380
+ var countryIso2 = (businessCountry === null || businessCountry === void 0 ? void 0 : businessCountry.iso2) || (ipCountry === null || ipCountry === void 0 ? void 0 : ipCountry.iso2);
381
+ if (locale && countryIso2)
382
+ updateLocale(locale, countryIso2);
341
383
  state.loading = false;
342
- state.internalLoading = false;
343
384
  if (state.data.appConfig.onReady)
344
385
  state.data.appConfig.onReady();
345
386
  });
346
387
  builder.addCase(fetchAppSettingsSync.rejected, function (state, action) {
347
388
  state.loading = false;
348
- state.internalLoading = false;
349
389
  state.error = action.error.message;
350
390
  });
351
391
  }
352
392
  });
353
- export var storeAuthId = (_a = settingsSlice.actions, _a.storeAuthId), updateInternalLoading = _a.updateInternalLoading, handleSkin = _a.handleSkin, handleLanguage = _a.handleLanguage, handleActiveFlowScreens = _a.handleActiveFlowScreens, handleNextScreenStep = _a.handleNextScreenStep, handlePrevScreenStep = _a.handlePrevScreenStep, handleCurrentActiveScreen = _a.handleCurrentActiveScreen, handleSetAppConfig = _a.handleSetAppConfig, handleOpen = _a.handleOpen, handleSetCountryByIso2 = _a.handleSetCountryByIso2, handleIsTapOrigin = _a.handleIsTapOrigin, handelBoardMaturity = _a.handelBoardMaturity, handlePublicKey = _a.handlePublicKey, handleSwitchCalender = _a.handleSwitchCalender;
393
+ export var storeAuthId = (_a = settingsSlice.actions, _a.storeAuthId), handleSkin = _a.handleSkin, handleLanguage = _a.handleLanguage, handleActiveFlowScreens = _a.handleActiveFlowScreens, handleNextScreenStep = _a.handleNextScreenStep, handlePrevScreenStep = _a.handlePrevScreenStep, handleCurrentActiveScreen = _a.handleCurrentActiveScreen, handleSetAppConfig = _a.handleSetAppConfig, handleOpen = _a.handleOpen, handleSetCountryByIso2 = _a.handleSetCountryByIso2, handleIsTapOrigin = _a.handleIsTapOrigin, handelBoardMaturity = _a.handelBoardMaturity, handlePublicKey = _a.handlePublicKey, handleSwitchCalender = _a.handleSwitchCalender;
354
394
  export default settingsSlice.reducer;
355
395
  export var settingsSelector = function (state) { return state.settings; };
@@ -11,6 +11,8 @@ export declare const store: import("@reduxjs/toolkit").EnhancedStore<{
11
11
  entity: import("../features/app/entity/entityStore").EntityState;
12
12
  brand: import("../features/app/brand/brandStore").BrandState;
13
13
  connectExpress: import("../features/app/connectExpress/connectExpressStore").ConnectExpressState;
14
+ auth: import("../features/app/auth/authStore").AuthState;
15
+ board: import("../features/app/board/boardStore").BoardState;
14
16
  }, import("redux").AnyAction, import("@reduxjs/toolkit").MiddlewareArray<[import("@reduxjs/toolkit").ThunkMiddleware<{
15
17
  settings: import("./settings").SettingsState;
16
18
  connect: import("../features/app/connect/connectStore").ConnectState;
@@ -23,6 +25,8 @@ export declare const store: import("@reduxjs/toolkit").EnhancedStore<{
23
25
  entity: import("../features/app/entity/entityStore").EntityState;
24
26
  brand: import("../features/app/brand/brandStore").BrandState;
25
27
  connectExpress: import("../features/app/connectExpress/connectExpressStore").ConnectExpressState;
28
+ auth: import("../features/app/auth/authStore").AuthState;
29
+ board: import("../features/app/board/boardStore").BoardState;
26
30
  }, import("redux").AnyAction, undefined>]>>;
27
31
  export declare type AppDispatch = typeof store.dispatch;
28
32
  export declare type RootState = ReturnType<typeof store.getState>;