@tap-payments/auth-jsconnect 2.6.2-test → 2.6.3
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.
- package/README.md +1 -1
- package/build/@types/app.d.ts +150 -12
- package/build/@types/app.js +18 -1
- package/build/@types/config.d.ts +45 -0
- package/build/@types/config.js +1 -0
- package/build/@types/form.d.ts +19 -2
- package/build/@types/index.d.ts +1 -0
- package/build/@types/index.js +1 -0
- package/build/@types/redux.d.ts +1 -0
- package/build/@types/theme.d.ts +4 -0
- package/build/@types/theme.js +5 -0
- package/build/api/account.d.ts +5 -0
- package/build/api/account.js +16 -2
- package/build/api/auth.d.ts +25 -1
- package/build/api/auth.js +18 -1
- package/build/api/availabilityServices.d.ts +1 -0
- package/build/api/country.d.ts +1 -0
- package/build/api/country.js +8 -1
- package/build/api/data.d.ts +4 -17
- package/build/api/data.js +5 -45
- package/build/api/entity.d.ts +30 -2
- package/build/api/entity.js +49 -5
- package/build/api/firebase.js +68 -8
- package/build/api/index.d.ts +21 -25
- package/build/api/lead.d.ts +25 -3
- package/build/api/lead.js +47 -1
- package/build/api/operator.d.ts +10 -0
- package/build/api/operator.js +9 -1
- package/build/app/rootReducer.d.ts +2 -0
- package/build/app/rootReducer.js +5 -1
- package/build/app/settings.d.ts +14 -3
- package/build/app/settings.js +127 -41
- package/build/app/store.d.ts +4 -0
- package/build/assets/locales/ar.json +333 -131
- package/build/assets/locales/en.json +330 -131
- package/build/components/AnimationFlow/AnimationFlow.d.ts +14 -3
- package/build/components/AnimationFlow/AnimationFlow.js +16 -5
- package/build/components/AnimationFlow/BottomSheet.d.ts +7 -2
- package/build/components/AnimationFlow/BottomSheet.js +37 -12
- package/build/components/AnimationFlow/Dialog.d.ts +11 -2
- package/build/components/AnimationFlow/Dialog.js +7 -11
- package/build/components/AnimationFlow/Loader.d.ts +6 -1
- package/build/components/AnimationFlow/Loader.js +17 -5
- package/build/components/ArabicDatePicker/ArabicDatePicker.d.ts +1 -1
- package/build/components/ArabicDatePicker/ArabicDatePicker.js +2 -2
- package/build/components/DatePicker/DatePicker.d.ts +1 -1
- package/build/components/DatePicker/DatePicker.js +2 -2
- package/build/components/ExpandIcon/ExpandIcon.d.ts +2 -0
- package/build/components/Footer/Footer.js +2 -1
- package/build/components/Providers/ThemeProvider.js +3 -3
- package/build/components/SimpleList/SimpleList.js +1 -1
- package/build/components/Slide/Slide.d.ts +1 -1
- package/build/components/Tooltip/Tooltip.js +1 -1
- package/build/constants/api.d.ts +11 -7
- package/build/constants/api.js +22 -14
- package/build/constants/app.d.ts +47 -0
- package/build/constants/app.js +393 -22
- package/build/constants/assets.d.ts +4 -0
- package/build/constants/assets.js +5 -1
- package/build/constants/dummy.d.ts +43 -196
- package/build/constants/dummy.js +614 -6141
- package/build/constants/validation.d.ts +5 -0
- package/build/constants/validation.js +6 -1
- package/build/features/app/auth/authStore.d.ts +103 -0
- package/build/features/app/auth/authStore.js +1179 -0
- package/build/features/app/bank/bankStore.d.ts +14 -18
- package/build/features/app/bank/bankStore.js +218 -158
- package/build/features/app/board/boardStore.d.ts +33 -0
- package/build/features/app/board/boardStore.js +269 -0
- package/build/features/app/brand/brandStore.d.ts +18 -31
- package/build/features/app/brand/brandStore.js +296 -263
- package/build/features/app/business/businessStore.d.ts +28 -10
- package/build/features/app/business/businessStore.js +361 -215
- package/build/features/app/connect/connectStore.d.ts +39 -15
- package/build/features/app/connect/connectStore.js +308 -207
- package/build/features/app/connectExpress/connectExpressStore.d.ts +71 -26
- package/build/features/app/connectExpress/connectExpressStore.js +897 -302
- package/build/features/app/entity/entityStore.d.ts +21 -34
- package/build/features/app/entity/entityStore.js +248 -246
- package/build/features/app/individual/individualStore.d.ts +24 -33
- package/build/features/app/individual/individualStore.js +336 -274
- package/build/features/app/password/passwordStore.d.ts +34 -18
- package/build/features/app/password/passwordStore.js +286 -219
- package/build/features/app/tax/taxStore.d.ts +14 -7
- package/build/features/app/tax/taxStore.js +202 -141
- package/build/features/auth/Auth.d.ts +14 -0
- package/build/features/auth/Auth.js +168 -0
- package/build/features/auth/index.d.ts +1 -0
- package/build/features/auth/index.js +1 -0
- package/build/features/auth/screens/AccountCreatedLoader/AccountCreatedLoader.d.ts +5 -0
- package/build/features/auth/screens/AccountCreatedLoader/AccountCreatedLoader.js +36 -0
- package/build/features/auth/screens/AccountCreatedLoader/index.d.ts +2 -0
- package/build/features/auth/screens/AccountCreatedLoader/index.js +2 -0
- package/build/features/auth/screens/AccountNotFound/AccountNotFound.d.ts +5 -0
- package/build/features/auth/screens/AccountNotFound/AccountNotFound.js +71 -0
- package/build/features/auth/screens/AccountNotFound/index.d.ts +2 -0
- package/build/features/auth/screens/AccountNotFound/index.js +2 -0
- package/build/features/auth/screens/AuthMerchant/AuthMerchant.d.ts +5 -0
- package/build/features/auth/screens/AuthMerchant/AuthMerchant.js +73 -0
- package/build/features/auth/screens/AuthMerchant/MerchantList.d.ts +11 -0
- package/build/features/auth/screens/AuthMerchant/MerchantList.js +64 -0
- package/build/features/auth/screens/AuthMerchant/index.d.ts +2 -0
- package/build/features/auth/screens/AuthMerchant/index.js +2 -0
- package/build/features/auth/screens/AuthMerchant/validation.d.ts +8 -0
- package/build/features/auth/screens/AuthMerchant/validation.js +4 -0
- package/build/features/auth/screens/AuthSwitch/AuthSwitch.d.ts +5 -0
- package/build/features/auth/screens/AuthSwitch/AuthSwitch.js +58 -0
- package/build/features/auth/screens/AuthSwitch/index.d.ts +3 -0
- package/build/features/auth/screens/AuthSwitch/index.js +2 -0
- package/build/features/auth/screens/AuthenticationList/AuthenticationList.d.ts +5 -0
- package/build/features/auth/screens/AuthenticationList/AuthenticationList.js +96 -0
- package/build/features/auth/screens/AuthenticationList/BrandList.d.ts +10 -0
- package/build/features/auth/screens/AuthenticationList/BrandList.js +81 -0
- package/build/features/auth/screens/AuthenticationList/EntityLegalName.d.ts +3 -0
- package/build/features/auth/screens/AuthenticationList/EntityLegalName.js +48 -0
- package/build/features/auth/screens/AuthenticationList/EntityLicenseType.d.ts +31 -0
- package/build/features/auth/screens/AuthenticationList/EntityLicenseType.js +90 -0
- package/build/features/auth/screens/AuthenticationList/EntityList.d.ts +11 -0
- package/build/features/auth/screens/AuthenticationList/EntityList.js +138 -0
- package/build/features/auth/screens/AuthenticationList/LicenseNumber.d.ts +3 -0
- package/build/features/auth/screens/AuthenticationList/LicenseNumber.js +36 -0
- package/build/features/auth/screens/AuthenticationList/index.d.ts +3 -0
- package/build/features/auth/screens/AuthenticationList/index.js +2 -0
- package/build/features/auth/screens/AuthenticationList/validation.d.ts +20 -0
- package/build/features/auth/screens/AuthenticationList/validation.js +68 -0
- package/build/features/auth/screens/BusinessCountry/BusinessCountry.d.ts +5 -0
- package/build/features/auth/screens/BusinessCountry/BusinessCountry.js +111 -0
- package/build/features/auth/screens/BusinessCountry/index.d.ts +3 -0
- package/build/features/auth/screens/BusinessCountry/index.js +2 -0
- package/build/features/auth/screens/CivilID/CivilID.d.ts +5 -0
- package/build/features/auth/screens/CivilID/CivilID.js +57 -0
- package/build/features/auth/screens/CivilID/IDNumber.d.ts +8 -0
- package/build/features/auth/screens/CivilID/IDNumber.js +54 -0
- package/build/features/auth/screens/CivilID/index.d.ts +3 -0
- package/build/features/auth/screens/CivilID/index.js +2 -0
- package/build/features/auth/screens/CivilID/validation.d.ts +8 -0
- package/build/features/auth/screens/CivilID/validation.js +4 -0
- package/build/features/auth/screens/DOB/DOB.js +47 -0
- package/build/features/auth/screens/DOB/DOBForm.d.ts +5 -0
- package/build/features/auth/screens/DOB/DOBForm.js +59 -0
- package/build/features/auth/screens/DOB/index.d.ts +3 -0
- package/build/features/auth/screens/DOB/index.js +2 -0
- package/build/features/auth/screens/DOB/validation.d.ts +8 -0
- package/build/features/auth/screens/DOB/validation.js +4 -0
- package/build/features/auth/screens/Email/Email.d.ts +5 -0
- package/build/features/auth/screens/Email/Email.js +57 -0
- package/build/features/auth/screens/Email/EmailField.d.ts +8 -0
- package/build/features/auth/screens/Email/EmailField.js +52 -0
- package/build/features/auth/screens/Email/index.d.ts +3 -0
- package/build/features/auth/screens/Email/index.js +2 -0
- package/build/features/auth/screens/Email/validation.d.ts +8 -0
- package/build/features/auth/screens/Email/validation.js +4 -0
- package/build/features/auth/screens/EmailSent/EmailSent.d.ts +5 -0
- package/build/features/auth/screens/EmailSent/EmailSent.js +79 -0
- package/build/features/auth/screens/EmailSent/index.d.ts +2 -0
- package/build/features/auth/screens/EmailSent/index.js +2 -0
- package/build/features/auth/screens/MigratingData/MigratingData.d.ts +5 -0
- package/build/features/auth/screens/MigratingData/MigratingData.js +44 -0
- package/build/features/auth/screens/MigratingData/index.d.ts +2 -0
- package/build/features/auth/screens/MigratingData/index.js +2 -0
- package/build/features/auth/screens/Mobile/Mobile.d.ts +5 -0
- package/build/features/auth/screens/Mobile/Mobile.js +82 -0
- package/build/features/auth/screens/Mobile/MobileNumber.d.ts +13 -0
- package/build/features/auth/screens/Mobile/MobileNumber.js +158 -0
- package/build/features/auth/screens/Mobile/index.d.ts +3 -0
- package/build/features/auth/screens/Mobile/index.js +2 -0
- package/build/features/auth/screens/Mobile/validation.d.ts +8 -0
- package/build/features/auth/screens/Mobile/validation.js +35 -0
- package/build/features/auth/screens/NID/IDNumber.d.ts +7 -0
- package/build/features/auth/screens/NID/IDNumber.js +55 -0
- package/build/features/auth/screens/NID/NID.d.ts +5 -0
- package/build/features/auth/screens/NID/NID.js +56 -0
- package/build/features/auth/screens/NID/index.d.ts +3 -0
- package/build/features/auth/screens/NID/index.js +2 -0
- package/build/features/auth/screens/NID/validation.d.ts +8 -0
- package/build/features/auth/screens/NID/validation.js +10 -0
- package/build/features/auth/screens/OTP/OTP.js +118 -0
- package/build/features/{connectExpress/screens/IdentityOTP → auth/screens/OTP}/OTPInput.js +27 -7
- package/build/features/auth/screens/OperatorError/OperatorError.d.ts +5 -0
- package/build/features/auth/screens/OperatorError/OperatorError.js +9 -0
- package/build/features/auth/screens/OperatorError/index.d.ts +3 -0
- package/build/features/auth/screens/OperatorError/index.js +2 -0
- package/build/features/auth/screens/Password/Password.d.ts +5 -0
- package/build/features/auth/screens/Password/Password.js +61 -0
- package/build/features/auth/screens/Password/PasswordField.d.ts +5 -0
- package/build/features/auth/screens/Password/PasswordField.js +28 -0
- package/build/features/auth/screens/Password/index.d.ts +3 -0
- package/build/features/auth/screens/Password/index.js +2 -0
- package/build/features/auth/screens/Password/validation.d.ts +8 -0
- package/build/features/auth/screens/Password/validation.js +4 -0
- package/build/features/auth/screens/PreparingData/PreparingData.d.ts +5 -0
- package/build/features/auth/screens/PreparingData/PreparingData.js +44 -0
- package/build/features/auth/screens/PreparingData/index.d.ts +2 -0
- package/build/features/auth/screens/PreparingData/index.js +2 -0
- package/build/features/auth/screens/ResetPasswordMessage/ResetPasswordMessage.d.ts +5 -0
- package/build/features/auth/screens/ResetPasswordMessage/ResetPasswordMessage.js +21 -0
- package/build/features/auth/screens/ResetPasswordMessage/index.d.ts +3 -0
- package/build/features/auth/screens/ResetPasswordMessage/index.js +2 -0
- package/build/features/auth/screens/VerifyNafath/VerifyNafath.d.ts +5 -0
- package/build/features/auth/screens/VerifyNafath/VerifyNafath.js +35 -0
- package/build/features/auth/screens/VerifyNafath/index.d.ts +3 -0
- package/build/features/auth/screens/VerifyNafath/index.js +2 -0
- package/build/features/auth/screens/VerifyPACI/VerifyPACI.d.ts +5 -0
- package/build/features/auth/screens/VerifyPACI/VerifyPACI.js +34 -0
- package/build/features/auth/screens/VerifyPACI/index.d.ts +3 -0
- package/build/features/auth/screens/VerifyPACI/index.js +2 -0
- package/build/features/bank/Bank.d.ts +2 -0
- package/build/features/bank/Bank.js +15 -9
- package/build/features/bank/screens/BankDetails/BankDetails.js +21 -7
- package/build/features/bank/screens/OperatorError/OperatorError.d.ts +5 -0
- package/build/features/bank/screens/OperatorError/OperatorError.js +9 -0
- package/build/features/bank/screens/OperatorError/index.d.ts +3 -0
- package/build/features/bank/screens/OperatorError/index.js +2 -0
- package/build/features/bank/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +13 -5
- package/build/features/bank/screens/Verify/Verify.js +8 -7
- package/build/features/board/Board.d.ts +13 -0
- package/build/features/board/Board.js +87 -0
- package/build/features/board/index.d.ts +1 -0
- package/build/features/board/index.js +1 -0
- package/build/features/board/screens/OperatorError/OperatorError.d.ts +5 -0
- package/build/features/board/screens/OperatorError/OperatorError.js +9 -0
- package/build/features/board/screens/OperatorError/index.d.ts +3 -0
- package/build/features/board/screens/OperatorError/index.js +2 -0
- package/build/features/board/screens/PrepareDataLoading/PrepareDataLoading.d.ts +4 -0
- package/build/features/board/screens/PrepareDataLoading/PrepareDataLoading.js +10 -0
- package/build/features/board/screens/PrepareDataLoading/index.d.ts +2 -0
- package/build/features/board/screens/PrepareDataLoading/index.js +2 -0
- package/build/features/board/screens/ResetPasswordSuccess/ResetPasswordSuccess.d.ts +5 -0
- package/build/features/board/screens/ResetPasswordSuccess/ResetPasswordSuccess.js +21 -0
- package/build/features/board/screens/ResetPasswordSuccess/index.d.ts +3 -0
- package/build/features/board/screens/ResetPasswordSuccess/index.js +2 -0
- package/build/features/board/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.d.ts +3 -0
- package/build/features/board/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +44 -0
- package/build/features/board/screens/SuccessWithFlowButtons/index.d.ts +2 -0
- package/build/features/board/screens/SuccessWithFlowButtons/index.js +2 -0
- package/build/features/board/screens/Verify/OTPInput.d.ts +7 -0
- package/build/features/{business/screens/OTP → board/screens/Verify}/OTPInput.js +9 -7
- package/build/features/{connectExpress/screens/IdentityOTP/OTP.js → board/screens/Verify/Verify.js} +25 -37
- package/build/features/board/screens/Verify/index.d.ts +2 -0
- package/build/features/board/screens/Verify/index.js +2 -0
- package/build/features/brand/Brand.d.ts +2 -0
- package/build/features/brand/Brand.js +15 -9
- package/build/features/brand/screens/BrandActivities/ActivitiesList.d.ts +9 -9
- package/build/features/brand/screens/BrandActivities/BrandActivities.js +49 -12
- package/build/features/brand/screens/BrandActivities/CustomerBase.d.ts +6 -6
- package/build/features/brand/screens/BrandActivities/CustomerBase.js +1 -1
- package/build/features/brand/screens/BrandActivities/ExpectedSalesRange.js +5 -2
- package/build/features/brand/screens/BrandActivities/RefundPolicy.d.ts +4 -4
- package/build/features/brand/screens/BrandActivities/RefundPolicy.js +1 -1
- package/build/features/brand/screens/BrandActivities/TAC.d.ts +1 -1
- package/build/features/brand/screens/BrandActivities/TAC.js +1 -1
- package/build/features/brand/screens/BrandActivities/TransactionPolicy.js +1 -1
- package/build/features/brand/screens/BrandInfo/BrandInfo.js +27 -7
- package/build/features/brand/screens/BrandInfo/BrandName.js +5 -2
- package/build/features/brand/screens/BrandInfo/validation.js +2 -2
- package/build/features/brand/screens/BrandSegmentInfo/BrandSegmentInfo.js +23 -7
- package/build/features/brand/screens/OperatorError/OperatorError.d.ts +5 -0
- package/build/features/brand/screens/OperatorError/OperatorError.js +9 -0
- package/build/features/brand/screens/OperatorError/index.d.ts +3 -0
- package/build/features/brand/screens/OperatorError/index.js +2 -0
- package/build/features/brand/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +13 -5
- package/build/features/brand/screens/Verify/Verify.js +4 -3
- package/build/features/business/Business.js +20 -12
- package/build/features/business/screens/Activities/Activities.js +27 -10
- package/build/features/business/screens/Activities/ActivitiesList.d.ts +4 -4
- package/build/features/business/screens/Activities/ActivitiesList.js +1 -1
- package/build/features/business/screens/Activities/OperationStartDate.d.ts +5 -3
- package/build/features/business/screens/Activities/OperationStartDate.js +2 -2
- package/build/features/business/screens/BrandDetails/SalesChannel.d.ts +2 -2
- package/build/features/business/screens/BusinessType/BusinessType.js +24 -8
- package/build/features/business/screens/BusinessType/EntityName.js +3 -3
- package/build/features/business/screens/BusinessType/LicenseList.js +3 -3
- package/build/features/business/screens/BusinessType/LicenseNumber.js +10 -9
- package/build/features/business/screens/BusinessType/LicenseType.d.ts +4 -4
- package/build/features/business/screens/BusinessType/validation.d.ts +10 -0
- package/build/features/business/screens/BusinessType/validation.js +16 -0
- package/build/features/business/screens/CivilID/CivilID.js +1 -1
- package/build/features/business/screens/Customers/CustomerLocations.d.ts +14 -12
- package/build/features/business/screens/Customers/CustomerLocations.js +5 -3
- package/build/features/business/screens/Customers/Customers.js +51 -11
- package/build/features/business/screens/Customers/ExpectedCustomers.d.ts +3 -1
- package/build/features/business/screens/Customers/ExpectedCustomers.js +5 -3
- package/build/features/business/screens/Customers/ExpectedSalesRange.d.ts +3 -1
- package/build/features/business/screens/Customers/ExpectedSalesRange.js +10 -4
- package/build/features/business/screens/Customers/RefundPolicy.d.ts +12 -5
- package/build/features/business/screens/Customers/RefundPolicy.js +13 -13
- package/build/features/business/screens/Customers/TransactionPolicy.d.ts +4 -1
- package/build/features/business/screens/Customers/TransactionPolicy.js +8 -5
- package/build/features/business/screens/Customers/validation.d.ts +6 -6
- package/build/features/business/screens/Customers/validation.js +3 -8
- package/build/features/business/screens/DOB/DOB.d.ts +6 -0
- package/build/features/business/screens/DOB/DOB.js +45 -0
- package/build/features/business/screens/DOB/DOBForm.d.ts +5 -0
- package/build/features/business/screens/DOB/DOBForm.js +72 -0
- package/build/features/business/screens/DOB/index.d.ts +3 -0
- package/build/features/business/screens/DOB/index.js +2 -0
- package/build/features/business/screens/DOB/validation.d.ts +8 -0
- package/build/features/business/screens/DOB/validation.js +4 -0
- package/build/features/business/screens/IDBOD/ID.js +6 -2
- package/build/features/business/screens/IDBOD/IDBOD.js +18 -19
- package/build/features/business/screens/IDBOD/validation.d.ts +7 -0
- package/build/features/business/screens/IDBOD/validation.js +4 -1
- package/build/features/business/screens/OperatorError/OperatorError.d.ts +5 -0
- package/build/features/business/screens/OperatorError/OperatorError.js +9 -0
- package/build/features/business/screens/OperatorError/index.d.ts +3 -0
- package/build/features/business/screens/OperatorError/index.js +2 -0
- package/build/features/business/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +14 -3
- package/build/features/business/screens/Verify/Verify.js +16 -5
- package/build/features/business/screens/VerifyNafath/VerifyNafath.d.ts +5 -0
- package/build/features/business/screens/VerifyNafath/VerifyNafath.js +35 -0
- package/build/features/business/screens/VerifyNafath/index.d.ts +3 -0
- package/build/features/business/screens/VerifyNafath/index.js +2 -0
- package/build/features/connect/Connect.d.ts +5 -1
- package/build/features/connect/Connect.js +48 -31
- package/build/features/connect/screens/BrandSegment/BrandSegment.js +4 -26
- package/build/features/connect/screens/BrandSegment/TeamSize.js +1 -1
- package/build/features/connect/screens/BrandSegment/validation.d.ts +0 -9
- package/build/features/connect/screens/BrandSegment/validation.js +0 -3
- package/build/features/connect/screens/BusinessCountry/BusinessCountry.d.ts +5 -0
- package/build/features/connect/screens/BusinessCountry/BusinessCountry.js +113 -0
- package/build/features/connect/screens/BusinessCountry/index.d.ts +3 -0
- package/build/features/connect/screens/BusinessCountry/index.js +2 -0
- package/build/features/connect/screens/CivilID/CivilID.js +12 -4
- package/build/features/{connectExpress/screens/NID → connect/screens/DOB}/DOB.d.ts +1 -2
- package/build/features/connect/screens/{NID → DOB}/DOB.js +2 -2
- package/build/features/connect/screens/DOB/DOBForm.d.ts +5 -0
- package/build/features/connect/screens/DOB/DOBForm.js +59 -0
- package/build/features/connect/screens/DOB/index.d.ts +3 -0
- package/build/features/connect/screens/DOB/index.js +2 -0
- package/build/features/connect/screens/DOB/validation.d.ts +8 -0
- package/build/features/connect/screens/DOB/validation.js +4 -0
- package/build/features/connect/screens/Individual/Individual.js +12 -6
- package/build/features/connect/screens/Individual/MobileNumber.js +6 -3
- package/build/features/connect/screens/Individual/validation.js +8 -3
- package/build/features/connect/screens/Merchant/BrandList.js +3 -3
- package/build/features/connect/screens/Merchant/BrandName.js +5 -2
- package/build/features/connect/screens/Merchant/Merchant.js +1 -1
- package/build/features/connect/screens/Merchant/SalesChannels.js +1 -1
- package/build/features/connect/screens/Merchant/validation.js +2 -2
- package/build/features/connect/screens/Mobile/Mobile.js +14 -7
- package/build/features/connect/screens/Mobile/MobileNumber.js +14 -8
- package/build/features/connect/screens/Mobile/validation.js +8 -3
- package/build/features/connect/screens/NID/IDNumber.d.ts +1 -0
- package/build/features/connect/screens/NID/IDNumber.js +2 -2
- package/build/features/connect/screens/NID/NID.js +10 -13
- package/build/features/connect/screens/NID/validation.d.ts +0 -3
- package/build/features/connect/screens/NID/validation.js +0 -1
- package/build/features/connect/screens/OTP/OTP.js +7 -7
- package/build/features/connect/screens/OTP/OTPInput.js +3 -11
- package/build/features/connect/screens/OperatorError/OperatorError.d.ts +5 -0
- package/build/features/connect/screens/OperatorError/OperatorError.js +9 -0
- package/build/features/connect/screens/OperatorError/index.d.ts +3 -0
- package/build/features/connect/screens/OperatorError/index.js +2 -0
- package/build/features/connect/screens/VerifyNafath/VerifyNafath.d.ts +5 -0
- package/build/features/connect/screens/VerifyNafath/VerifyNafath.js +35 -0
- package/build/features/connect/screens/VerifyNafath/index.d.ts +3 -0
- package/build/features/connect/screens/VerifyNafath/index.js +2 -0
- package/build/features/connectExpress/ConnectExpress.d.ts +5 -3
- package/build/features/connectExpress/ConnectExpress.js +70 -40
- package/build/features/connectExpress/screens/AccountAlreadyCreated/AccountAlreadyCreated.js +14 -2
- package/build/features/connectExpress/screens/AccountCreatedLoader/AccountCreatedLoader.d.ts +5 -0
- package/build/features/connectExpress/screens/AccountCreatedLoader/AccountCreatedLoader.js +36 -0
- package/build/features/connectExpress/screens/AccountCreatedLoader/index.d.ts +2 -0
- package/build/features/connectExpress/screens/AccountCreatedLoader/index.js +2 -0
- package/build/features/connectExpress/screens/AuthMerchant/AuthMerchant.d.ts +5 -0
- package/build/features/connectExpress/screens/AuthMerchant/AuthMerchant.js +74 -0
- package/build/features/connectExpress/screens/AuthMerchant/MerchantList.d.ts +11 -0
- package/build/features/connectExpress/screens/AuthMerchant/MerchantList.js +64 -0
- package/build/features/connectExpress/screens/AuthMerchant/index.d.ts +2 -0
- package/build/features/connectExpress/screens/AuthMerchant/index.js +2 -0
- package/build/features/connectExpress/screens/AuthMerchant/validation.d.ts +8 -0
- package/build/features/connectExpress/screens/AuthMerchant/validation.js +4 -0
- package/build/features/connectExpress/screens/AuthenticationList/AuthenticationList.d.ts +5 -0
- package/build/features/connectExpress/screens/AuthenticationList/AuthenticationList.js +104 -0
- package/build/features/connectExpress/screens/AuthenticationList/BrandList.d.ts +10 -0
- package/build/features/connectExpress/screens/AuthenticationList/BrandList.js +81 -0
- package/build/features/connectExpress/screens/AuthenticationList/EntityLegalName.d.ts +3 -0
- package/build/features/connectExpress/screens/AuthenticationList/EntityLegalName.js +48 -0
- package/build/features/connectExpress/screens/AuthenticationList/EntityLicenseType.d.ts +31 -0
- package/build/features/connectExpress/screens/AuthenticationList/EntityLicenseType.js +90 -0
- package/build/features/connectExpress/screens/AuthenticationList/EntityList.d.ts +11 -0
- package/build/features/connectExpress/screens/AuthenticationList/EntityList.js +138 -0
- package/build/features/connectExpress/screens/AuthenticationList/LicenseNumber.d.ts +3 -0
- package/build/features/connectExpress/screens/AuthenticationList/LicenseNumber.js +36 -0
- package/build/features/connectExpress/screens/AuthenticationList/index.d.ts +3 -0
- package/build/features/connectExpress/screens/AuthenticationList/index.js +2 -0
- package/build/features/connectExpress/screens/AuthenticationList/validation.d.ts +20 -0
- package/build/features/connectExpress/screens/AuthenticationList/validation.js +68 -0
- package/build/features/connectExpress/screens/BusinessCountry/BusinessCountry.d.ts +5 -0
- package/build/features/connectExpress/screens/BusinessCountry/BusinessCountry.js +111 -0
- package/build/features/connectExpress/screens/BusinessCountry/index.d.ts +3 -0
- package/build/features/connectExpress/screens/BusinessCountry/index.js +2 -0
- package/build/features/connectExpress/screens/CivilID/CivilID.js +16 -5
- package/build/features/connectExpress/screens/CivilID/IDNumber.js +7 -2
- package/build/features/connectExpress/screens/CivilIDMissed/CivilID.js +2 -2
- package/build/features/connectExpress/screens/CollectBusinessInfo/BrandName.js +5 -2
- package/build/features/connectExpress/screens/CollectBusinessInfo/CollectBusinessInfo.js +20 -5
- package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseList.js +6 -5
- package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseNumber.js +9 -8
- package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseType.d.ts +4 -4
- package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseType.js +1 -1
- package/build/features/connectExpress/screens/CollectBusinessInfo/TAC.d.ts +1 -1
- package/build/features/connectExpress/screens/CollectBusinessInfo/validation.d.ts +13 -0
- package/build/features/connectExpress/screens/CollectBusinessInfo/validation.js +68 -1
- package/build/features/connectExpress/screens/CollectIndividualInfo/CollectIndividualInfo.js +34 -7
- package/build/features/connectExpress/screens/CollectIndividualInfo/MobileNumber.js +7 -4
- package/build/features/connectExpress/screens/CollectIndividualInfo/validation.js +8 -3
- package/build/features/connectExpress/screens/CreateAccountLoader/CreateAccountLoader.js +14 -24
- package/build/features/connectExpress/screens/DOB/DOB.d.ts +6 -0
- package/build/features/connectExpress/screens/{NID → DOB}/DOB.js +3 -3
- package/build/features/connectExpress/screens/DOB/DOBForm.d.ts +5 -0
- package/build/features/connectExpress/screens/DOB/DOBForm.js +63 -0
- package/build/features/connectExpress/screens/DOB/index.d.ts +3 -0
- package/build/features/connectExpress/screens/DOB/index.js +2 -0
- package/build/features/connectExpress/screens/DOB/validation.d.ts +8 -0
- package/build/features/connectExpress/screens/DOB/validation.js +4 -0
- package/build/features/connectExpress/screens/IdentityVerifyNafath/IdentityVerifyNafath.d.ts +5 -0
- package/build/features/connectExpress/screens/IdentityVerifyNafath/IdentityVerifyNafath.js +35 -0
- package/build/features/connectExpress/screens/IdentityVerifyNafath/index.d.ts +3 -0
- package/build/features/connectExpress/screens/IdentityVerifyNafath/index.js +2 -0
- package/build/features/connectExpress/screens/IdentityVerifyPACI/VerifyPACI.js +2 -2
- package/build/features/connectExpress/screens/Mobile/Mobile.js +17 -7
- package/build/features/connectExpress/screens/Mobile/MobileNumber.js +17 -11
- package/build/features/connectExpress/screens/Mobile/TAC.js +1 -1
- package/build/features/connectExpress/screens/Mobile/validation.js +16 -6
- package/build/features/connectExpress/screens/NID/IDNumber.d.ts +1 -0
- package/build/features/connectExpress/screens/NID/IDNumber.js +2 -2
- package/build/features/connectExpress/screens/NID/NID.js +15 -12
- package/build/features/connectExpress/screens/NID/TAC.d.ts +1 -1
- package/build/features/connectExpress/screens/NID/TAC.js +2 -2
- package/build/features/connectExpress/screens/NID/validation.d.ts +0 -3
- package/build/features/connectExpress/screens/NID/validation.js +0 -2
- package/build/features/connectExpress/screens/NIDMissed/IDNumber.js +6 -2
- package/build/features/connectExpress/screens/NIDMissed/NID.js +10 -8
- package/build/features/connectExpress/screens/NIDMissed/validation.d.ts +7 -0
- package/build/features/connectExpress/screens/NIDMissed/validation.js +4 -1
- package/build/features/connectExpress/screens/OTP/OTP.js +14 -16
- package/build/features/connectExpress/screens/OTP/OTPInput.js +12 -10
- package/build/features/connectExpress/screens/OperatorError/OperatorError.d.ts +5 -0
- package/build/features/connectExpress/screens/OperatorError/OperatorError.js +9 -0
- package/build/features/connectExpress/screens/OperatorError/index.d.ts +3 -0
- package/build/features/connectExpress/screens/OperatorError/index.js +2 -0
- package/build/features/connectExpress/screens/PrepareDataLoading/PrepareDataLoading.d.ts +5 -0
- package/build/features/connectExpress/screens/PrepareDataLoading/PrepareDataLoading.js +34 -0
- package/build/features/connectExpress/screens/PrepareDataLoading/index.d.ts +2 -0
- package/build/features/connectExpress/screens/PrepareDataLoading/index.js +2 -0
- package/build/features/connectExpress/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +15 -7
- package/build/features/connectExpress/screens/VerifyNafath/VerifyNafath.d.ts +5 -0
- package/build/features/connectExpress/screens/VerifyNafath/VerifyNafath.js +35 -0
- package/build/features/connectExpress/screens/VerifyNafath/index.d.ts +3 -0
- package/build/features/connectExpress/screens/VerifyNafath/index.js +2 -0
- package/build/features/entity/Entity.d.ts +2 -0
- package/build/features/entity/Entity.js +15 -9
- package/build/features/entity/screens/EntityCapital/ActivityList.d.ts +4 -4
- package/build/features/entity/screens/EntityCapital/CapitalPaid.js +5 -3
- package/build/features/entity/screens/EntityCapital/CapitalShareValue.js +6 -4
- package/build/features/entity/screens/EntityCapital/EntityCapital.js +34 -10
- package/build/features/entity/screens/EntityName/EntityName.js +44 -19
- package/build/features/entity/screens/EntityName/EntityTypeList.d.ts +9 -9
- package/build/features/entity/screens/EntityName/EntityTypeList.js +2 -3
- package/build/features/entity/screens/EntityName/ExpiryDate.d.ts +2 -2
- package/build/features/entity/screens/EntityName/ExpiryDate.js +5 -7
- package/build/features/entity/screens/EntityName/IssuingDate.d.ts +2 -2
- package/build/features/entity/screens/EntityName/IssuingDate.js +5 -7
- package/build/features/entity/screens/EntityName/LegalName.js +1 -13
- package/build/features/entity/screens/EntityName/LicenseNumber.js +10 -11
- package/build/features/entity/screens/EntityName/UnifiedNumber.js +4 -6
- package/build/features/entity/screens/EntityName/validation.d.ts +31 -3
- package/build/features/entity/screens/EntityName/validation.js +38 -9
- package/build/features/entity/screens/OperatorError/OperatorError.d.ts +5 -0
- package/build/features/entity/screens/OperatorError/OperatorError.js +9 -0
- package/build/features/entity/screens/OperatorError/index.d.ts +3 -0
- package/build/features/entity/screens/OperatorError/index.js +2 -0
- package/build/features/entity/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +13 -5
- package/build/features/entity/screens/Verify/Verify.js +4 -3
- package/build/features/featuresScreens.d.ts +2 -0
- package/build/features/featuresScreens.js +254 -15
- package/build/features/individual/Individual.d.ts +2 -0
- package/build/features/individual/Individual.js +15 -9
- package/build/features/individual/screens/AdditionalIndividualInfo/AdditionalIndividualInfo.d.ts +2 -2
- package/build/features/individual/screens/AdditionalIndividualInfo/AdditionalIndividualInfo.js +55 -15
- package/build/features/individual/screens/AdditionalIndividualInfo/IsAuthorizedSwitch.d.ts +36 -0
- package/build/features/individual/screens/AdditionalIndividualInfo/IsAuthorizedSwitch.js +76 -0
- package/build/features/individual/screens/AdditionalIndividualInfo/MonthlyIncome.js +5 -2
- package/build/features/individual/screens/AdditionalIndividualInfo/PEPSwitch.d.ts +4 -4
- package/build/features/individual/screens/AdditionalIndividualInfo/ShareValue.js +7 -4
- package/build/features/individual/screens/AdditionalIndividualInfo/validation.d.ts +4 -1
- package/build/features/individual/screens/AdditionalIndividualInfo/validation.js +4 -3
- package/build/features/individual/screens/IndividualList/IndividualList.d.ts +4 -4
- package/build/features/individual/screens/IndividualList/IndividualList.js +21 -6
- package/build/features/individual/screens/IndividualList/MobileNumber.js +6 -3
- package/build/features/individual/screens/IndividualList/UserList.js +13 -9
- package/build/features/individual/screens/IndividualList/validation.js +8 -3
- package/build/features/individual/screens/IndividualPersonalInfo/Gender.d.ts +4 -4
- package/build/features/individual/screens/IndividualPersonalInfo/ID.js +6 -2
- package/build/features/individual/screens/IndividualPersonalInfo/IndividualPersonalInfo.d.ts +2 -2
- package/build/features/individual/screens/IndividualPersonalInfo/IndividualPersonalInfo.js +79 -21
- package/build/features/individual/screens/IndividualPersonalInfo/MobileNumber.js +6 -3
- package/build/features/individual/screens/IndividualPersonalInfo/validation.d.ts +1 -1
- package/build/features/individual/screens/IndividualPersonalInfo/validation.js +72 -63
- package/build/features/individual/screens/IndividualPhoneInfo/MobileNumber.js +7 -4
- package/build/features/individual/screens/IndividualPhoneInfo/PhoneInfo.js +1 -1
- package/build/features/individual/screens/IndividualPhoneInfo/validation.js +8 -3
- package/build/features/individual/screens/OperatorError/OperatorError.d.ts +5 -0
- package/build/features/individual/screens/OperatorError/OperatorError.js +9 -0
- package/build/features/individual/screens/OperatorError/index.d.ts +3 -0
- package/build/features/individual/screens/OperatorError/index.js +2 -0
- package/build/features/individual/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +13 -5
- package/build/features/individual/screens/Verify/Verify.js +4 -3
- package/build/features/password/Password.d.ts +2 -0
- package/build/features/password/Password.js +94 -32
- package/build/features/password/screens/CreatePassword/CreatePassword.js +10 -4
- package/build/features/password/screens/OTP/OTP.js +4 -4
- package/build/features/password/screens/OperatorError/OperatorError.d.ts +5 -0
- package/build/features/password/screens/OperatorError/OperatorError.js +9 -0
- package/build/features/password/screens/OperatorError/index.d.ts +3 -0
- package/build/features/password/screens/OperatorError/index.js +2 -0
- package/build/features/password/screens/PrepareDataLoading/PrepareDataLoading.d.ts +4 -0
- package/build/features/password/screens/PrepareDataLoading/PrepareDataLoading.js +10 -0
- package/build/features/password/screens/PrepareDataLoading/index.d.ts +2 -0
- package/build/features/password/screens/PrepareDataLoading/index.js +2 -0
- package/build/features/password/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +13 -5
- package/build/features/password/screens/Verify/Verify.js +8 -7
- package/build/features/shared/Address/CountryList.d.ts +7 -7
- package/build/features/shared/Address/InputSelect.d.ts +7 -7
- package/build/features/shared/Background/Background.d.ts +3 -1
- package/build/features/shared/Background/Background.js +9 -11
- package/build/features/shared/BusinessCountry/BusinessCountry.d.ts +15 -0
- package/build/features/shared/BusinessCountry/BusinessCountry.js +179 -0
- package/build/features/shared/BusinessCountry/index.d.ts +2 -0
- package/build/features/shared/BusinessCountry/index.js +2 -0
- package/build/features/shared/Button/Button.js +11 -5
- package/build/features/shared/Button/EmailProvidersButtons.js +2 -0
- package/build/features/shared/Button/FlowsButtons.d.ts +3 -1
- package/build/features/shared/Button/FlowsButtons.js +29 -14
- package/build/features/shared/Button/NafathButton.d.ts +8 -0
- package/build/features/shared/Button/{AbsherButton.js → NafathButton.js} +12 -3
- package/build/features/shared/Button/index.d.ts +2 -2
- package/build/features/shared/Button/index.js +2 -2
- package/build/features/shared/Calender/Calender.d.ts +2 -1
- package/build/features/shared/Calender/Calender.js +3 -3
- package/build/features/shared/Containers/FeatureContainer.d.ts +2 -1
- package/build/features/shared/Containers/FeatureContainer.js +3 -3
- package/build/features/shared/Containers/ScreenContainer.d.ts +1 -1
- package/build/features/shared/DataLoading/DataLoading.d.ts +4 -1
- package/build/features/shared/DataLoading/DataLoading.js +2 -2
- package/build/features/shared/Footer/Footer.js +2 -1
- package/build/features/shared/Input/Input.d.ts +2 -2
- package/build/features/shared/NafathVerification/NafathVerification.d.ts +14 -0
- package/build/features/shared/NafathVerification/NafathVerification.js +92 -0
- package/build/features/shared/NafathVerification/VerifyNafathLoading.d.ts +8 -0
- package/build/features/shared/NafathVerification/VerifyNafathLoading.js +53 -0
- package/build/features/shared/NafathVerification/VerifyNafathSuccess.d.ts +5 -0
- package/build/features/shared/NafathVerification/VerifyNafathSuccess.js +8 -0
- package/build/features/shared/NafathVerification/index.d.ts +2 -0
- package/build/features/shared/NafathVerification/index.js +2 -0
- package/build/features/shared/SuccessFlowButtons/SuccessFlowButtons.d.ts +8 -1
- package/build/features/shared/SuccessFlowButtons/SuccessFlowButtons.js +11 -14
- package/build/features/shared/SuccessScreen/SuccessScreen.js +1 -1
- package/build/features/shared/UploadFile/FileUpload.d.ts +1 -1
- package/build/features/shared/UploadFile/UploadFile.d.ts +1 -1
- package/build/features/shared/UploadFile/UploadWrapper.d.ts +1 -1
- package/build/features/shared/UploadMultipleFile/UploadFile.d.ts +1 -1
- package/build/features/shared/UploadMultipleFile/UploadMultipleFile.d.ts +1 -1
- package/build/features/signIn/SignIn.js +18 -7
- package/build/features/signIn/screens/Mobile/MobileNumber.js +6 -3
- package/build/features/signIn/screens/Mobile/validation.js +8 -3
- package/build/features/signIn/screens/OTP/OTP.js +5 -4
- package/build/features/signIn/screens/OperatorError/OperatorError.d.ts +5 -0
- package/build/features/signIn/screens/OperatorError/OperatorError.js +9 -0
- package/build/features/signIn/screens/OperatorError/index.d.ts +3 -0
- package/build/features/signIn/screens/OperatorError/index.js +2 -0
- package/build/features/tax/Tax.d.ts +2 -0
- package/build/features/tax/Tax.js +15 -9
- package/build/features/tax/screens/OperatorError/OperatorError.d.ts +5 -0
- package/build/features/tax/screens/OperatorError/OperatorError.js +9 -0
- package/build/features/tax/screens/OperatorError/index.d.ts +3 -0
- package/build/features/tax/screens/OperatorError/index.js +2 -0
- package/build/features/tax/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +13 -5
- package/build/features/tax/screens/TaxDetails/TaxDetails.js +9 -3
- package/build/features/tax/screens/Verify/Verify.js +8 -7
- package/build/hooks/index.d.ts +3 -0
- package/build/hooks/index.js +3 -0
- package/build/hooks/useAppConfig.d.ts +3 -3
- package/build/hooks/useAppConfig.js +9 -6
- package/build/hooks/useAppDispatch.d.ts +2 -0
- package/build/hooks/useAppTheme.js +4 -3
- package/build/hooks/useCountDown.d.ts +10 -0
- package/build/hooks/useCountDown.js +17 -0
- package/build/hooks/useCountry.d.ts +1 -0
- package/build/hooks/useCountry.js +4 -3
- package/build/hooks/useFormDirtyCheck.d.ts +10 -0
- package/build/hooks/useFormDirtyCheck.js +66 -0
- package/build/hooks/useSanitizedTranslation.d.ts +1 -0
- package/build/hooks/useSanitizedTranslation.js +15 -0
- package/build/hooks/useVerifyToken.d.ts +5 -2
- package/build/hooks/useVerifyToken.js +10 -5
- package/build/index.css +360 -120
- package/build/index.d.ts +4 -2
- package/build/index.js +6 -2
- package/build/theme/components.js +7 -0
- package/build/theme/palette.js +4 -2
- package/build/theme/theme.d.ts +1 -1
- package/build/theme/theme.js +2 -2
- package/build/utils/array.js +2 -2
- package/build/utils/common.d.ts +3 -0
- package/build/utils/common.js +38 -2
- package/build/utils/device.d.ts +2 -0
- package/build/utils/device.js +6 -0
- package/build/utils/locale.js +2 -1
- package/build/utils/object.d.ts +1 -0
- package/build/utils/object.js +4 -1
- package/build/utils/string.d.ts +5 -2
- package/build/utils/string.js +24 -5
- package/build/utils/validation.d.ts +5 -0
- package/build/utils/validation.js +16 -0
- package/package.json +2 -2
- package/build/features/business/screens/OTP/OTP.d.ts +0 -8
- package/build/features/business/screens/OTP/OTP.js +0 -90
- package/build/features/connect/screens/BrandSegment/SegmentLocations.d.ts +0 -8
- package/build/features/connect/screens/BrandSegment/SegmentLocations.js +0 -66
- package/build/features/connect/screens/BrandSegment/SegmentProfits.d.ts +0 -8
- package/build/features/connect/screens/BrandSegment/SegmentProfits.js +0 -66
- package/build/features/connect/screens/BrandSegment/SegmentTechs.d.ts +0 -8
- package/build/features/connect/screens/BrandSegment/SegmentTechs.js +0 -66
- package/build/features/connectExpress/screens/IdentityOTP/index.d.ts +0 -3
- package/build/features/connectExpress/screens/IdentityOTP/index.js +0 -2
- package/build/features/shared/Button/AbsherButton.d.ts +0 -8
- /package/build/features/{connect/screens/NID → auth/screens/DOB}/DOB.d.ts +0 -0
- /package/build/features/{connectExpress/screens/IdentityOTP → auth/screens/OTP}/OTP.d.ts +0 -0
- /package/build/features/{business → auth}/screens/OTP/OTPInput.d.ts +0 -0
- /package/build/features/{business → auth}/screens/OTP/index.d.ts +0 -0
- /package/build/features/{business → auth}/screens/OTP/index.js +0 -0
- /package/build/features/{business → auth}/screens/OTP/validation.d.ts +0 -0
- /package/build/features/{business → auth}/screens/OTP/validation.js +0 -0
- /package/build/features/{connectExpress/screens/IdentityOTP/OTPInput.d.ts → board/screens/Verify/Verify.d.ts} +0 -0
- /package/build/features/{connectExpress/screens/IdentityOTP → board/screens/Verify}/validation.d.ts +0 -0
- /package/build/features/{connectExpress/screens/IdentityOTP → board/screens/Verify}/validation.js +0 -0
|
@@ -58,8 +58,8 @@ var _a;
|
|
|
58
58
|
import { createAsyncThunk, createSlice } from '@reduxjs/toolkit';
|
|
59
59
|
import API from '../../../api';
|
|
60
60
|
import { BusinessType, FlowsTypes, DocumentPurpose, LicenseType } from '../../../@types';
|
|
61
|
-
import { BUSINESS_STEP_NAMES, IDENTIFICATION_TYPE, OTHER_CR_LICENSE, OTHER_ENTITY_LICENSE, OTHER_FL_LICENSE } from '../../../constants';
|
|
62
|
-
import { convertNumbers2English, hasKey, sleep, isKW, isSA, dateFormat, isOtherLicense } from '../../../utils';
|
|
61
|
+
import { BUSINESS_STEP_NAMES, COLLECT_DOB_INFO_NAFATH, EXPECTED_SALES_LIST, IDENTIFICATION_TYPE, NAFATH_VERIFICATION_FAILED, OTHER_CR_LICENSE, OTHER_ENTITY_LICENSE, OTHER_FL_LICENSE } from '../../../constants';
|
|
62
|
+
import { convertNumbers2English, hasKey, sleep, isKW, isSA, dateFormat, isOtherLicense, isOtherThanKWOrSA, hasNoneEditableValue, sendCustomEventToGTM } from '../../../utils';
|
|
63
63
|
import { handleNextScreenStep, handlePublicKey, handleSetCountryByIso2 } from '../../../app/settings';
|
|
64
64
|
export var verifyLeadToken = createAsyncThunk('businessVerifyLeadToken', function (token, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
|
|
65
65
|
var payload, data, publicKey, countryIso2, boardData, brandData, isicActivityList, leadData, _a, steps, brand, board_id, business_id, entity, brandID, hasBusinessCompleted, hasBusinessCRInfoCompleted, hasBusinessCRActivitiesCompleted, hasBusinessCustomersCompleted, list, list;
|
|
@@ -97,9 +97,12 @@ export var verifyLeadToken = createAsyncThunk('businessVerifyLeadToken', functio
|
|
|
97
97
|
if (data.step_name === BUSINESS_STEP_NAMES.IDENTITY_AUTH && isKW(countryIso2)) {
|
|
98
98
|
thunkApi.dispatch(handleNextScreenStep('BUSINESS_CIVIL_ID_STEP'));
|
|
99
99
|
}
|
|
100
|
-
if (data.step_name === BUSINESS_STEP_NAMES.IDENTITY_AUTH &&
|
|
100
|
+
if (data.step_name === BUSINESS_STEP_NAMES.IDENTITY_AUTH && (isSA(countryIso2) || isOtherThanKWOrSA(countryIso2))) {
|
|
101
101
|
thunkApi.dispatch(handleNextScreenStep('BUSINESS_IDBOD_STEP'));
|
|
102
102
|
}
|
|
103
|
+
if (data.step_name === COLLECT_DOB_INFO_NAFATH) {
|
|
104
|
+
thunkApi.dispatch(handleNextScreenStep('BUSINESS_DOB_STEP'));
|
|
105
|
+
}
|
|
103
106
|
if (!(data.step_name === BUSINESS_STEP_NAMES.BUSINESS_INFO)) return [3, 19];
|
|
104
107
|
_a = leadData || {}, steps = _a.steps, brand = _a.brand, board_id = _a.board_id, business_id = _a.business_id, entity = _a.entity;
|
|
105
108
|
brandID = brand === null || brand === void 0 ? void 0 : brand.id;
|
|
@@ -165,13 +168,14 @@ export var verifyLeadToken = createAsyncThunk('businessVerifyLeadToken', functio
|
|
|
165
168
|
_d.label = 19;
|
|
166
169
|
case 19: return [2, {
|
|
167
170
|
data: data,
|
|
171
|
+
verifyNextStepName: data.step_name,
|
|
168
172
|
isicActivityList: isicActivityList,
|
|
169
173
|
leadData: __assign(__assign({}, leadData), { flows: (boardData === null || boardData === void 0 ? void 0 : boardData.info) || [] }),
|
|
170
174
|
token: token,
|
|
171
175
|
brandData: brandData === null || brandData === void 0 ? void 0 : brandData.brand,
|
|
172
176
|
boardId: leadData === null || leadData === void 0 ? void 0 : leadData.board_id
|
|
173
177
|
}];
|
|
174
|
-
case 20: return [2, { data: data, isRequireOTP: true, token: token }];
|
|
178
|
+
case 20: return [2, { data: data, isRequireOTP: true, token: token, verifyNextStepName: data.step_name }];
|
|
175
179
|
}
|
|
176
180
|
});
|
|
177
181
|
}); });
|
|
@@ -188,7 +192,7 @@ export var resendOTP = createAsyncThunk('resendOTPBusiness', function (params, t
|
|
|
188
192
|
return [4, API.leadService.verifyLeadToken(payload)];
|
|
189
193
|
case 1:
|
|
190
194
|
data = (_a.sent()).data;
|
|
191
|
-
return [2, { data: data }];
|
|
195
|
+
return [2, { data: data, verifyNextStepName: data.step_name }];
|
|
192
196
|
}
|
|
193
197
|
});
|
|
194
198
|
}); });
|
|
@@ -248,11 +252,11 @@ export var verifyLeadOTP = createAsyncThunk('verifyLeadOTP', function (params, t
|
|
|
248
252
|
case 6:
|
|
249
253
|
if (!isNID) return [3, 7];
|
|
250
254
|
thunkApi.dispatch(handleNextScreenStep());
|
|
251
|
-
return [3,
|
|
255
|
+
return [3, 23];
|
|
252
256
|
case 7:
|
|
253
257
|
if (!(isIdentityAuthStep && isKW(countryIso2))) return [3, 8];
|
|
254
258
|
thunkApi.dispatch(handleNextScreenStep('BUSINESS_CIVIL_ID_STEP'));
|
|
255
|
-
return [3,
|
|
259
|
+
return [3, 23];
|
|
256
260
|
case 8:
|
|
257
261
|
if (!hasBusinessCompleted) return [3, 12];
|
|
258
262
|
if (!board_id) return [3, 11];
|
|
@@ -265,45 +269,100 @@ export var verifyLeadOTP = createAsyncThunk('verifyLeadOTP', function (params, t
|
|
|
265
269
|
_k.sent();
|
|
266
270
|
_k.label = 11;
|
|
267
271
|
case 11:
|
|
268
|
-
thunkApi.dispatch(handleNextScreenStep('BUSINESS_SUCCESS_FOUR_FLOWS_BUTTONS_STEP'));
|
|
269
|
-
return [3,
|
|
272
|
+
sleep(50).then(function () { return thunkApi.dispatch(handleNextScreenStep('BUSINESS_SUCCESS_FOUR_FLOWS_BUTTONS_STEP')); });
|
|
273
|
+
return [3, 23];
|
|
270
274
|
case 12:
|
|
271
275
|
if (!(data.step_name === BUSINESS_STEP_NAMES.IDENTITY_AUTH)) return [3, 13];
|
|
272
|
-
thunkApi.dispatch(handleNextScreenStep('BUSINESS_IDBOD_STEP'));
|
|
273
|
-
return [3,
|
|
276
|
+
sleep(50).then(function () { return thunkApi.dispatch(handleNextScreenStep('BUSINESS_IDBOD_STEP')); });
|
|
277
|
+
return [3, 23];
|
|
274
278
|
case 13:
|
|
275
|
-
if (!
|
|
276
|
-
thunkApi.dispatch(handleNextScreenStep('
|
|
277
|
-
return [3,
|
|
279
|
+
if (!(data.step_name === COLLECT_DOB_INFO_NAFATH)) return [3, 14];
|
|
280
|
+
sleep(50).then(function () { return thunkApi.dispatch(handleNextScreenStep('BUSINESS_DOB_STEP')); });
|
|
281
|
+
return [3, 23];
|
|
278
282
|
case 14:
|
|
279
|
-
if (!
|
|
280
|
-
return
|
|
283
|
+
if (!hasBusinessCustomersCompleted) return [3, 15];
|
|
284
|
+
sleep(50).then(function () { return thunkApi.dispatch(handleNextScreenStep('BUSINESS_SUCCESS_STEP')); });
|
|
285
|
+
return [3, 23];
|
|
281
286
|
case 15:
|
|
287
|
+
if (!hasBusinessCRActivitiesCompleted) return [3, 19];
|
|
288
|
+
return [4, API.dataService.getActivitiesIsIc()];
|
|
289
|
+
case 16:
|
|
282
290
|
list = (_k.sent()).list;
|
|
283
291
|
isicActivityList = list || [];
|
|
284
292
|
return [4, thunkApi.dispatch(retrieveDataList())];
|
|
285
|
-
case
|
|
293
|
+
case 17:
|
|
286
294
|
_k.sent();
|
|
287
295
|
return [4, API.brandService.retrieveBrand(brandID)];
|
|
288
|
-
case 17:
|
|
289
|
-
brandData = _k.sent();
|
|
290
|
-
thunkApi.dispatch(handleNextScreenStep('BUSINESS_CUSTOMERS_STEP'));
|
|
291
|
-
return [3, 22];
|
|
292
296
|
case 18:
|
|
293
|
-
|
|
294
|
-
return
|
|
297
|
+
brandData = _k.sent();
|
|
298
|
+
sleep(50).then(function () { return thunkApi.dispatch(handleNextScreenStep('BUSINESS_CUSTOMERS_STEP')); });
|
|
299
|
+
return [3, 23];
|
|
295
300
|
case 19:
|
|
301
|
+
if (!hasBusinessCRInfoCompleted) return [3, 22];
|
|
302
|
+
return [4, API.dataService.getActivitiesIsIc()];
|
|
303
|
+
case 20:
|
|
296
304
|
list = (_k.sent()).list;
|
|
297
305
|
isicActivityList = list || [];
|
|
298
306
|
return [4, API.brandService.retrieveBrand(brandID)];
|
|
299
|
-
case 20:
|
|
300
|
-
brandData = _k.sent();
|
|
301
|
-
thunkApi.dispatch(handleNextScreenStep('BUSINESS_ACTIVITIES_STEP'));
|
|
302
|
-
return [3, 22];
|
|
303
307
|
case 21:
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
308
|
+
brandData = _k.sent();
|
|
309
|
+
sleep(50).then(function () { return thunkApi.dispatch(handleNextScreenStep('BUSINESS_ACTIVITIES_STEP')); });
|
|
310
|
+
return [3, 23];
|
|
311
|
+
case 22:
|
|
312
|
+
sleep(50).then(function () { return thunkApi.dispatch(handleNextScreenStep('BUSINESS_BUSINESS_TYPE_STEP')); });
|
|
313
|
+
_k.label = 23;
|
|
314
|
+
case 23: return [2, { data: data, verifyNextStepName: data.step_name, isicActivityList: isicActivityList, formData: __assign(__assign({}, params), { isNID: isNID }), brand: brandData === null || brandData === void 0 ? void 0 : brandData.brand, leadData: leadData }];
|
|
315
|
+
}
|
|
316
|
+
});
|
|
317
|
+
}); });
|
|
318
|
+
export var verifyNafath = createAsyncThunk('business/verifyNafathParams', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
|
|
319
|
+
var _a, settings, business, responseBody, expiry, interval, maxCalls, count, data, isSuccess, isFailed, isNextScreenDob, screen_1;
|
|
320
|
+
var _b, _c, _d, _e, _f, _g;
|
|
321
|
+
return __generator(this, function (_h) {
|
|
322
|
+
switch (_h.label) {
|
|
323
|
+
case 0:
|
|
324
|
+
_a = thunkApi.getState(), settings = _a.settings, business = _a.business;
|
|
325
|
+
responseBody = business.data.nidData.responseBody;
|
|
326
|
+
expiry = (responseBody === null || responseBody === void 0 ? void 0 : responseBody.expiry) || 120;
|
|
327
|
+
interval = 5;
|
|
328
|
+
maxCalls = Math.floor(expiry / interval);
|
|
329
|
+
if (thunkApi.signal.aborted) {
|
|
330
|
+
return [2, { response: null }];
|
|
331
|
+
}
|
|
332
|
+
count = 1;
|
|
333
|
+
_h.label = 1;
|
|
334
|
+
case 1:
|
|
335
|
+
if (!(count <= maxCalls)) return [3, 8];
|
|
336
|
+
return [4, API.authService.getTokenVerify(responseBody === null || responseBody === void 0 ? void 0 : responseBody.verify_token)];
|
|
337
|
+
case 2:
|
|
338
|
+
data = _h.sent();
|
|
339
|
+
isSuccess = ((_b = data.status) === null || _b === void 0 ? void 0 : _b.toLowerCase()) === 'success';
|
|
340
|
+
isFailed = ((_c = data.status) === null || _c === void 0 ? void 0 : _c.toLowerCase()) === 'failed';
|
|
341
|
+
if (isFailed) {
|
|
342
|
+
(_d = params.onFailure) === null || _d === void 0 ? void 0 : _d.call(params);
|
|
343
|
+
return [2, { response: data }];
|
|
344
|
+
}
|
|
345
|
+
if (!isSuccess) return [3, 5];
|
|
346
|
+
return [4, thunkApi.dispatch(retrieveEntityList({ leadId: responseBody === null || responseBody === void 0 ? void 0 : responseBody.id }))];
|
|
347
|
+
case 3:
|
|
348
|
+
_h.sent();
|
|
349
|
+
(_f = (_e = settings.data.appConfig).onStepCompleted) === null || _f === void 0 ? void 0 : _f.call(_e, settings.data.activeScreen.name, {});
|
|
350
|
+
(_g = params === null || params === void 0 ? void 0 : params.onSuccess) === null || _g === void 0 ? void 0 : _g.call(params);
|
|
351
|
+
return [4, sleep(3000)];
|
|
352
|
+
case 4:
|
|
353
|
+
_h.sent();
|
|
354
|
+
isNextScreenDob = data.step_name === COLLECT_DOB_INFO_NAFATH;
|
|
355
|
+
screen_1 = isNextScreenDob ? 'BUSINESS_DOB_STEP' : 'BUSINESS_BUSINESS_TYPE_STEP';
|
|
356
|
+
thunkApi.dispatch(handleNextScreenStep(screen_1));
|
|
357
|
+
return [2, { response: data, isNextScreenDob: isNextScreenDob }];
|
|
358
|
+
case 5: return [4, sleep(interval * 1000)];
|
|
359
|
+
case 6:
|
|
360
|
+
_h.sent();
|
|
361
|
+
_h.label = 7;
|
|
362
|
+
case 7:
|
|
363
|
+
count++;
|
|
364
|
+
return [3, 1];
|
|
365
|
+
case 8: throw new Error(NAFATH_VERIFICATION_FAILED);
|
|
307
366
|
}
|
|
308
367
|
});
|
|
309
368
|
}); });
|
|
@@ -381,59 +440,80 @@ export var createCivilIdAuth = createAsyncThunk('createCivilIdAuth', function (p
|
|
|
381
440
|
});
|
|
382
441
|
}); });
|
|
383
442
|
export var updateLeadIdentity = createAsyncThunk('updateLeadIdentity', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
|
|
384
|
-
var _a, settings, business, identification_id_type, stepName, lead_id, requestBody, data;
|
|
443
|
+
var _a, settings, business, identification_id_type, stepName, lead_id, countryIso2, dob, requestBody, data, business_id, entity, screen;
|
|
385
444
|
var _b, _c;
|
|
386
445
|
return __generator(this, function (_d) {
|
|
387
446
|
switch (_d.label) {
|
|
388
447
|
case 0:
|
|
389
448
|
_a = thunkApi.getState(), settings = _a.settings, business = _a.business;
|
|
390
|
-
identification_id_type =
|
|
449
|
+
identification_id_type = IDENTIFICATION_TYPE.NAFATH;
|
|
391
450
|
stepName = BUSINESS_STEP_NAMES.IDENTITY_AUTH;
|
|
392
451
|
lead_id = (business.data.verify.responseBody || {}).lead_id;
|
|
452
|
+
countryIso2 = settings.data.businessCountry.iso2;
|
|
453
|
+
if (isOtherThanKWOrSA(countryIso2)) {
|
|
454
|
+
identification_id_type = IDENTIFICATION_TYPE.NID;
|
|
455
|
+
}
|
|
456
|
+
dob = identification_id_type === IDENTIFICATION_TYPE.NAFATH ? undefined : dateFormat(new Date(params.dob));
|
|
393
457
|
requestBody = {
|
|
394
458
|
id: lead_id || '',
|
|
395
459
|
identification: {
|
|
396
460
|
id: params.nid,
|
|
397
|
-
issued_country_code:
|
|
461
|
+
issued_country_code: countryIso2,
|
|
398
462
|
type: identification_id_type
|
|
399
463
|
},
|
|
400
|
-
date_of_birth:
|
|
464
|
+
date_of_birth: dob,
|
|
401
465
|
step_name: stepName,
|
|
402
466
|
encryption_contract: ['identification.issued_country_code', 'identification.id', 'identification.type', 'date_of_birth']
|
|
403
467
|
};
|
|
404
468
|
return [4, API.leadService.updateLead(requestBody)];
|
|
405
469
|
case 1:
|
|
406
470
|
data = _d.sent();
|
|
407
|
-
|
|
471
|
+
business_id = data.business_id, entity = data.entity;
|
|
472
|
+
screen = 'BUSINESS_VERIFY_NAFATH_STEP';
|
|
473
|
+
if (!isOtherThanKWOrSA(countryIso2)) return [3, 3];
|
|
474
|
+
screen = 'BUSINESS_BUSINESS_TYPE_STEP';
|
|
475
|
+
return [4, thunkApi.dispatch(retrieveAllEntityList({ businessId: business_id, entityId: entity === null || entity === void 0 ? void 0 : entity.id }))];
|
|
476
|
+
case 2:
|
|
477
|
+
_d.sent();
|
|
478
|
+
_d.label = 3;
|
|
479
|
+
case 3:
|
|
480
|
+
thunkApi.dispatch(handleNextScreenStep(screen));
|
|
408
481
|
(_c = (_b = settings.data.appConfig).onStepCompleted) === null || _c === void 0 ? void 0 : _c.call(_b, settings.data.activeScreen.name, requestBody);
|
|
409
482
|
return [2, { data: data, formData: __assign(__assign({}, params), { type: identification_id_type }) }];
|
|
410
483
|
}
|
|
411
484
|
});
|
|
412
485
|
}); });
|
|
413
|
-
export var
|
|
414
|
-
var _a, settings, business,
|
|
415
|
-
|
|
416
|
-
|
|
486
|
+
export var updateLeadDOB = createAsyncThunk('business/updateLeadDOB', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
|
|
487
|
+
var _a, settings, business, stepName, _b, lead_id, verifyNextStepName, requestBody, data;
|
|
488
|
+
var _c, _d, _e, _f;
|
|
489
|
+
return __generator(this, function (_g) {
|
|
490
|
+
switch (_g.label) {
|
|
417
491
|
case 0:
|
|
418
492
|
_a = thunkApi.getState(), settings = _a.settings, business = _a.business;
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
lead_id = (business.data.verify.responseBody || {}).lead_id;
|
|
493
|
+
stepName = BUSINESS_STEP_NAMES.BUSINESS_DOB_INFO;
|
|
494
|
+
_b = business.data.verify.responseBody || {}, lead_id = _b.lead_id, verifyNextStepName = _b.verifyNextStepName;
|
|
422
495
|
requestBody = {
|
|
423
496
|
id: lead_id || '',
|
|
424
|
-
|
|
425
|
-
id: nid,
|
|
426
|
-
issued_country_code: settings.data.businessCountry.iso2,
|
|
427
|
-
type: type
|
|
428
|
-
},
|
|
429
|
-
date_of_birth: dob,
|
|
497
|
+
date_of_birth: params.dob,
|
|
430
498
|
step_name: stepName,
|
|
431
|
-
encryption_contract: ['
|
|
499
|
+
encryption_contract: ['date_of_birth']
|
|
432
500
|
};
|
|
433
501
|
return [4, API.leadService.updateLead(requestBody)];
|
|
434
502
|
case 1:
|
|
435
|
-
data =
|
|
436
|
-
return [
|
|
503
|
+
data = _g.sent();
|
|
504
|
+
if (!(verifyNextStepName === COLLECT_DOB_INFO_NAFATH)) return [3, 4];
|
|
505
|
+
return [4, thunkApi.dispatch(retrieveAllEntityList({ businessId: data.business_id, entityId: (_c = data.entity) === null || _c === void 0 ? void 0 : _c.id }))];
|
|
506
|
+
case 2:
|
|
507
|
+
_g.sent();
|
|
508
|
+
if (!isSA((_d = settings.data.businessCountry) === null || _d === void 0 ? void 0 : _d.iso2)) return [3, 4];
|
|
509
|
+
return [4, thunkApi.dispatch(retrieveEntityList({ leadId: data === null || data === void 0 ? void 0 : data.id }))];
|
|
510
|
+
case 3:
|
|
511
|
+
_g.sent();
|
|
512
|
+
_g.label = 4;
|
|
513
|
+
case 4:
|
|
514
|
+
thunkApi.dispatch(handleNextScreenStep());
|
|
515
|
+
(_f = (_e = settings.data.appConfig).onStepCompleted) === null || _f === void 0 ? void 0 : _f.call(_e, settings.data.activeScreen.name, requestBody);
|
|
516
|
+
return [2, { data: data, formData: params }];
|
|
437
517
|
}
|
|
438
518
|
});
|
|
439
519
|
}); });
|
|
@@ -470,35 +550,35 @@ export var retrieveBoardDetails = createAsyncThunk('retrieveBoardDetails', funct
|
|
|
470
550
|
case 1:
|
|
471
551
|
data = _c.sent();
|
|
472
552
|
return [2, {
|
|
473
|
-
data: __assign(__assign({}, data), { user: data === null || data === void 0 ? void 0 : data.user, brand: data === null || data === void 0 ? void 0 : data.brand, bank_account: data === null || data === void 0 ? void 0 : data.bank_account, entity: data === null || data === void 0 ? void 0 : data.entity, merchant: data === null || data === void 0 ? void 0 : data.merchant, name: (_a = data === null || data === void 0 ? void 0 : data.user) === null || _a === void 0 ? void 0 : _a.names, contact: (_b = data === null || data === void 0 ? void 0 : data.user) === null || _b === void 0 ? void 0 : _b.contact, individuals: data === null || data === void 0 ? void 0 : data.individuals, board_id: data === null || data === void 0 ? void 0 : data.id })
|
|
553
|
+
data: __assign(__assign({}, data), { user: data === null || data === void 0 ? void 0 : data.user, brand: data === null || data === void 0 ? void 0 : data.brand, bank_account: data === null || data === void 0 ? void 0 : data.bank_account, entity: data === null || data === void 0 ? void 0 : data.entity, merchant: data === null || data === void 0 ? void 0 : data.merchant, name: (_a = data === null || data === void 0 ? void 0 : data.user) === null || _a === void 0 ? void 0 : _a.names, contact: (_b = data === null || data === void 0 ? void 0 : data.user) === null || _b === void 0 ? void 0 : _b.contact, individuals: data === null || data === void 0 ? void 0 : data.individuals, board_id: data === null || data === void 0 ? void 0 : data.id, board_status: data === null || data === void 0 ? void 0 : data.status })
|
|
474
554
|
}];
|
|
475
555
|
}
|
|
476
556
|
});
|
|
477
557
|
}); });
|
|
478
558
|
export var updateLeadBusinessType = createAsyncThunk('updateLeadBusinessType', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
|
|
479
|
-
var _a, settings, business,
|
|
480
|
-
var _d, _e;
|
|
481
|
-
return __generator(this, function (
|
|
482
|
-
switch (
|
|
559
|
+
var _a, settings, business, isKWCountry, selectedLicense, licenseNumber, entityLegalName, certificateId, articleId, selectedEntityLicense, isFL, _b, lead_id, brand, stepName, payload, data, accountBody, accountData, brandData, data_1, brandRes, _c, message, error, list, documentData, entityData, entityId, documentBody, payload_1;
|
|
560
|
+
var _d, _e, _f;
|
|
561
|
+
return __generator(this, function (_g) {
|
|
562
|
+
switch (_g.label) {
|
|
483
563
|
case 0:
|
|
484
564
|
_a = thunkApi.getState(), settings = _a.settings, business = _a.business;
|
|
485
|
-
|
|
565
|
+
isKWCountry = isKW(settings.data.businessCountry.iso2);
|
|
486
566
|
selectedLicense = params.selectedLicense, licenseNumber = params.licenseNumber, entityLegalName = params.entityLegalName, certificateId = params.certificateId, articleId = params.articleId, selectedEntityLicense = params.selectedEntityLicense;
|
|
487
567
|
isFL = (selectedLicense === null || selectedLicense === void 0 ? void 0 : selectedLicense.type) === BusinessType.FL;
|
|
488
568
|
_b = business.data.verify.responseBody || {}, lead_id = _b.lead_id, brand = _b.brand;
|
|
489
569
|
stepName = 'BUSINESS_ACTIVITIES_STEP';
|
|
490
570
|
payload = __assign(__assign(__assign(__assign({ id: lead_id || '', entity: {
|
|
491
|
-
id: (selectedEntityLicense === null || selectedEntityLicense === void 0 ? void 0 : selectedEntityLicense.id) && (
|
|
571
|
+
id: (selectedEntityLicense === null || selectedEntityLicense === void 0 ? void 0 : selectedEntityLicense.id) && (isKWCountry ? !isFL : true) ? selectedEntityLicense === null || selectedEntityLicense === void 0 ? void 0 : selectedEntityLicense.id : ''
|
|
492
572
|
} }, (!(selectedEntityLicense === null || selectedEntityLicense === void 0 ? void 0 : selectedEntityLicense.id) && {
|
|
493
|
-
license_number:
|
|
573
|
+
license_number: isKWCountry && isFL ? '' : licenseNumber,
|
|
494
574
|
license_type: isFL ? LicenseType.FL : LicenseType.CR,
|
|
495
575
|
business_type: selectedLicense === null || selectedLicense === void 0 ? void 0 : selectedLicense.type
|
|
496
|
-
})), { step_name: BUSINESS_STEP_NAMES.BUSINESS_CR_INFO }), (
|
|
576
|
+
})), { step_name: BUSINESS_STEP_NAMES.BUSINESS_CR_INFO }), (isKWCountry && {
|
|
497
577
|
business_name: isFL ? undefined : { ar: entityLegalName, en: entityLegalName }
|
|
498
578
|
})), { encryption_contract: ['license_number', 'business_type', 'license_type'] });
|
|
499
579
|
return [4, API.leadService.updateLead(payload)];
|
|
500
580
|
case 1:
|
|
501
|
-
data =
|
|
581
|
+
data = _g.sent();
|
|
502
582
|
accountBody = {
|
|
503
583
|
lead_id: lead_id,
|
|
504
584
|
notify: {
|
|
@@ -510,20 +590,29 @@ export var updateLeadBusinessType = createAsyncThunk('updateLeadBusinessType', f
|
|
|
510
590
|
step_name: BUSINESS_STEP_NAMES.BUSINESS_INFO_CONFIRM
|
|
511
591
|
};
|
|
512
592
|
brandData = undefined;
|
|
513
|
-
|
|
593
|
+
_g.label = 2;
|
|
514
594
|
case 2:
|
|
515
|
-
|
|
595
|
+
_g.trys.push([2, 7, , 8]);
|
|
516
596
|
return [4, API.accountService.createAccount(accountBody)];
|
|
517
597
|
case 3:
|
|
518
|
-
accountData =
|
|
598
|
+
accountData = _g.sent();
|
|
599
|
+
if (!!(accountData === null || accountData === void 0 ? void 0 : accountData.entity_id)) return [3, 5];
|
|
600
|
+
return [4, API.leadService.retrieveLead(lead_id)];
|
|
601
|
+
case 4:
|
|
602
|
+
data_1 = (_g.sent()).data;
|
|
603
|
+
if (!((_d = data_1 === null || data_1 === void 0 ? void 0 : data_1.entity) === null || _d === void 0 ? void 0 : _d.id))
|
|
604
|
+
throw new Error('Internal server error');
|
|
605
|
+
accountData = __assign(__assign({}, accountData), { entity_id: data_1.entity.id });
|
|
606
|
+
_g.label = 5;
|
|
607
|
+
case 5:
|
|
519
608
|
thunkApi.dispatch(updateStepName(BUSINESS_STEP_NAMES.BUSINESS_INFO_CONFIRM));
|
|
520
609
|
return [4, API.brandService.retrieveBrand(brand === null || brand === void 0 ? void 0 : brand.id)];
|
|
521
|
-
case
|
|
522
|
-
brandRes = (
|
|
610
|
+
case 6:
|
|
611
|
+
brandRes = (_g.sent()).brand;
|
|
523
612
|
brandData = brandRes;
|
|
524
|
-
return [3,
|
|
525
|
-
case
|
|
526
|
-
_c =
|
|
613
|
+
return [3, 8];
|
|
614
|
+
case 7:
|
|
615
|
+
_c = _g.sent();
|
|
527
616
|
message = _c.message;
|
|
528
617
|
error = message;
|
|
529
618
|
if ((error === null || error === void 0 ? void 0 : error.toLowerCase()) === 'entity with license already exist') {
|
|
@@ -531,13 +620,13 @@ export var updateLeadBusinessType = createAsyncThunk('updateLeadBusinessType', f
|
|
|
531
620
|
}
|
|
532
621
|
else
|
|
533
622
|
throw new Error(error);
|
|
534
|
-
return [3,
|
|
535
|
-
case
|
|
536
|
-
case
|
|
537
|
-
list = (
|
|
623
|
+
return [3, 8];
|
|
624
|
+
case 8: return [4, API.dataService.getActivitiesIsIc()];
|
|
625
|
+
case 9:
|
|
626
|
+
list = (_g.sent()).list;
|
|
538
627
|
entityData = undefined;
|
|
539
628
|
entityId = accountData === null || accountData === void 0 ? void 0 : accountData.entity_id;
|
|
540
|
-
if (!((certificateId || []).length > 0)) return [3,
|
|
629
|
+
if (!((certificateId || []).length > 0)) return [3, 11];
|
|
541
630
|
documentBody = {
|
|
542
631
|
entity_id: entityId || '',
|
|
543
632
|
documents: [
|
|
@@ -548,145 +637,161 @@ export var updateLeadBusinessType = createAsyncThunk('updateLeadBusinessType', f
|
|
|
548
637
|
]
|
|
549
638
|
};
|
|
550
639
|
return [4, API.documentService.updateDocumentInfo(documentBody)];
|
|
551
|
-
case
|
|
552
|
-
documentData =
|
|
553
|
-
|
|
554
|
-
case
|
|
555
|
-
if (!(articleId && entityId)) return [3,
|
|
640
|
+
case 10:
|
|
641
|
+
documentData = _g.sent();
|
|
642
|
+
_g.label = 11;
|
|
643
|
+
case 11:
|
|
644
|
+
if (!(articleId && entityId)) return [3, 13];
|
|
556
645
|
payload_1 = {
|
|
557
646
|
id: (accountData === null || accountData === void 0 ? void 0 : accountData.entity_id) || '',
|
|
558
647
|
AOA_file_id: articleId
|
|
559
648
|
};
|
|
560
649
|
return [4, API.entityService.updateEntity(payload_1)];
|
|
561
|
-
case
|
|
562
|
-
entityData =
|
|
563
|
-
|
|
564
|
-
case
|
|
565
|
-
thunkApi.dispatch(handleNextScreenStep(stepName));
|
|
566
|
-
(
|
|
650
|
+
case 12:
|
|
651
|
+
entityData = _g.sent();
|
|
652
|
+
_g.label = 13;
|
|
653
|
+
case 13:
|
|
654
|
+
sleep(50).then(function () { return thunkApi.dispatch(handleNextScreenStep(stepName)); });
|
|
655
|
+
(_f = (_e = settings.data.appConfig).onStepCompleted) === null || _f === void 0 ? void 0 : _f.call(_e, settings.data.activeScreen.name, params);
|
|
567
656
|
return [2, { data: __assign(__assign({}, data), { brand: brandData }), formData: params, accountData: accountData, documentData: documentData, entityData: entityData, isicActivityList: list || [] }];
|
|
568
657
|
}
|
|
569
658
|
});
|
|
570
659
|
}); });
|
|
571
|
-
export var updateActivitiesInfo = createAsyncThunk('updateActivitiesInfo', function (
|
|
572
|
-
var
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
id
|
|
587
|
-
activities
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
})
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
660
|
+
export var updateActivitiesInfo = createAsyncThunk('updateActivitiesInfo', function (_a, thunkApi) {
|
|
661
|
+
var formData = _a.formData, originalFormData = _a.originalFormData;
|
|
662
|
+
return __awaiter(void 0, void 0, void 0, function () {
|
|
663
|
+
var _b, settings, business, _c, brand, entity_activities, entity, _d, brandActivities, brandId, data_status, activities, operationStartDate, isActivitiesNonEditable, isOperationStartDateNonEditable, stepName, id, removedActivities, payload, newBrandActivities, newEntityActivities, activityPayload, requestBody, data;
|
|
664
|
+
var _e, _f;
|
|
665
|
+
return __generator(this, function (_g) {
|
|
666
|
+
switch (_g.label) {
|
|
667
|
+
case 0:
|
|
668
|
+
_b = thunkApi.getState(), settings = _b.settings, business = _b.business;
|
|
669
|
+
_c = business.data.verify.responseBody || {}, brand = _c.brand, entity_activities = _c.entity_activities, entity = _c.entity;
|
|
670
|
+
_d = brand || {}, brandActivities = _d.activities, brandId = _d.id, data_status = _d.data_status;
|
|
671
|
+
activities = formData.activities, operationStartDate = formData.operationStartDate;
|
|
672
|
+
isActivitiesNonEditable = hasNoneEditableValue(data_status, 'activities');
|
|
673
|
+
isOperationStartDateNonEditable = hasNoneEditableValue(data_status === null || data_status === void 0 ? void 0 : data_status.operations, 'business_start_date');
|
|
674
|
+
stepName = BUSINESS_STEP_NAMES.BUSINESS_CR_ACTIVITIES;
|
|
675
|
+
id = brandId;
|
|
676
|
+
removedActivities = (brandActivities || []).filter(function (brandActivity) { return !(activities || []).some(function (activity) { return activity.id === brandActivity.id; }); });
|
|
677
|
+
if (!(!isActivitiesNonEditable && (removedActivities === null || removedActivities === void 0 ? void 0 : removedActivities.length))) return [3, 2];
|
|
678
|
+
payload = {
|
|
679
|
+
id: id,
|
|
680
|
+
activities: removedActivities.map(function (_a) {
|
|
681
|
+
var id = _a.id;
|
|
682
|
+
return ({ id: id });
|
|
683
|
+
})
|
|
684
|
+
};
|
|
685
|
+
return [4, API.brandService.removeBrandActivity(payload)];
|
|
686
|
+
case 1:
|
|
687
|
+
_g.sent();
|
|
688
|
+
_g.label = 2;
|
|
689
|
+
case 2:
|
|
690
|
+
newBrandActivities = activities === null || activities === void 0 ? void 0 : activities.filter(function (act) { return !(brandActivities || []).some(function (brandActivity) { return act.id === brandActivity.id; }); });
|
|
691
|
+
newEntityActivities = activities === null || activities === void 0 ? void 0 : activities.filter(function (act) { return !(entity_activities || []).some(function (entityActivity) { return act.id === entityActivity.id; }); });
|
|
692
|
+
if (!(!isActivitiesNonEditable && (newEntityActivities === null || newEntityActivities === void 0 ? void 0 : newEntityActivities.length))) return [3, 4];
|
|
693
|
+
activityPayload = {
|
|
694
|
+
id: entity === null || entity === void 0 ? void 0 : entity.id,
|
|
695
|
+
activities: newEntityActivities.map(function (_a) {
|
|
696
|
+
var id = _a.id;
|
|
697
|
+
return ({ id: id });
|
|
698
|
+
})
|
|
699
|
+
};
|
|
700
|
+
return [4, API.entityService.updateEntityActivity(activityPayload)];
|
|
701
|
+
case 3:
|
|
702
|
+
_g.sent();
|
|
703
|
+
_g.label = 4;
|
|
704
|
+
case 4:
|
|
705
|
+
requestBody = __assign(__assign(__assign({ id: id }, ((newBrandActivities === null || newBrandActivities === void 0 ? void 0 : newBrandActivities.length) && !isActivitiesNonEditable && { activities: newBrandActivities.map(function (_a) {
|
|
706
|
+
var id = _a.id;
|
|
707
|
+
return ({ id: id });
|
|
708
|
+
}) })), (!isOperationStartDateNonEditable && {
|
|
709
|
+
operations: {
|
|
710
|
+
start_date: operationStartDate
|
|
711
|
+
}
|
|
712
|
+
})), { step_name: stepName, encryption_contract: ['operations.start_date'] });
|
|
713
|
+
return [4, API.brandService.updateBrandInfo(requestBody)];
|
|
714
|
+
case 5:
|
|
715
|
+
data = _g.sent();
|
|
716
|
+
return [4, thunkApi.dispatch(retrieveDataList())];
|
|
717
|
+
case 6:
|
|
718
|
+
_g.sent();
|
|
719
|
+
thunkApi.dispatch(updateStepName(stepName));
|
|
720
|
+
thunkApi.dispatch(handleNextScreenStep());
|
|
721
|
+
(_f = (_e = settings.data.appConfig).onStepCompleted) === null || _f === void 0 ? void 0 : _f.call(_e, settings.data.activeScreen.name, requestBody);
|
|
722
|
+
return [2, { data: data === null || data === void 0 ? void 0 : data.brand, formData: originalFormData }];
|
|
723
|
+
}
|
|
724
|
+
});
|
|
624
725
|
});
|
|
625
|
-
});
|
|
726
|
+
});
|
|
626
727
|
export var retrieveDataList = createAsyncThunk('businessRetrieveDataList', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
|
|
627
|
-
var settings, countryISO2, dataBody,
|
|
628
|
-
|
|
629
|
-
|
|
728
|
+
var settings, countryISO2, dataBody, _a, customer_base, sales, expected_customers;
|
|
729
|
+
var _b;
|
|
730
|
+
return __generator(this, function (_c) {
|
|
731
|
+
switch (_c.label) {
|
|
630
732
|
case 0:
|
|
631
733
|
settings = thunkApi.getState().settings;
|
|
632
734
|
countryISO2 = settings.data.businessCountry.iso2;
|
|
633
735
|
dataBody = {
|
|
634
|
-
page: 0
|
|
635
|
-
};
|
|
636
|
-
salesDataBody = {
|
|
637
736
|
page: 0,
|
|
638
737
|
country_code: [countryISO2]
|
|
639
738
|
};
|
|
640
|
-
return [4,
|
|
641
|
-
API.dataService.getCustomerBases(dataBody),
|
|
642
|
-
API.dataService.getExpectedSales(salesDataBody),
|
|
643
|
-
API.dataService.getExpectedCustomerSales(dataBody)
|
|
644
|
-
])];
|
|
739
|
+
return [4, API.dataService.getBrandOperations(dataBody)];
|
|
645
740
|
case 1:
|
|
646
|
-
_a =
|
|
741
|
+
_a = _c.sent(), customer_base = _a.customer_base, sales = _a.sales, expected_customers = _a.expected_customers;
|
|
647
742
|
return [2, {
|
|
648
|
-
customerBases:
|
|
649
|
-
expectedSales:
|
|
650
|
-
expectedCustomerSales:
|
|
743
|
+
customerBases: (customer_base === null || customer_base === void 0 ? void 0 : customer_base.list) || [],
|
|
744
|
+
expectedSales: ((_b = sales === null || sales === void 0 ? void 0 : sales.list) === null || _b === void 0 ? void 0 : _b.length) ? sales.list : EXPECTED_SALES_LIST,
|
|
745
|
+
expectedCustomerSales: (expected_customers === null || expected_customers === void 0 ? void 0 : expected_customers.list) || [],
|
|
651
746
|
countryISO2: countryISO2
|
|
652
747
|
}];
|
|
653
748
|
}
|
|
654
749
|
});
|
|
655
750
|
}); });
|
|
656
|
-
export var updateCustomersInfo = createAsyncThunk('updateCustomersInfo', function (
|
|
657
|
-
var
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
751
|
+
export var updateCustomersInfo = createAsyncThunk('updateCustomersInfo', function (_a, thunkApi) {
|
|
752
|
+
var formData = _a.formData, originalFormData = _a.originalFormData;
|
|
753
|
+
return __awaiter(void 0, void 0, void 0, function () {
|
|
754
|
+
var _b, settings, business, _c, data_status, id, isCustomerBaseLocationNonEditable, isCustomerBaseNonEditable, isTermsNonEditable, isSalesRangeNonEditable, customerLocations, expectedCustomer, expectedSale, stepName, requestBody, customerLocation, customerBaseId, salesId, customerBase, data;
|
|
755
|
+
var _d, _e, _f;
|
|
756
|
+
return __generator(this, function (_g) {
|
|
757
|
+
switch (_g.label) {
|
|
758
|
+
case 0:
|
|
759
|
+
_b = thunkApi.getState(), settings = _b.settings, business = _b.business;
|
|
760
|
+
_c = ((_d = business.data.verify.responseBody) === null || _d === void 0 ? void 0 : _d.brand) || {}, data_status = _c.data_status, id = _c.id;
|
|
761
|
+
isCustomerBaseLocationNonEditable = hasNoneEditableValue(data_status === null || data_status === void 0 ? void 0 : data_status.operations, 'customer_base_location');
|
|
762
|
+
isCustomerBaseNonEditable = hasNoneEditableValue(data_status === null || data_status === void 0 ? void 0 : data_status.operations, 'customer_base');
|
|
763
|
+
isTermsNonEditable = hasNoneEditableValue(data_status, 'terms');
|
|
764
|
+
isSalesRangeNonEditable = hasNoneEditableValue(data_status === null || data_status === void 0 ? void 0 : data_status.operations, 'sales_range');
|
|
765
|
+
customerLocations = formData.customerLocations, expectedCustomer = formData.expectedCustomer, expectedSale = formData.expectedSale;
|
|
766
|
+
stepName = BUSINESS_STEP_NAMES.BUSINESS_CUSTOMERS;
|
|
767
|
+
requestBody = {
|
|
768
|
+
term: !isTermsNonEditable ? ['refund', 'chargeback'] : undefined,
|
|
769
|
+
id: id,
|
|
770
|
+
step_name: stepName,
|
|
771
|
+
encryption_contract: []
|
|
772
|
+
};
|
|
773
|
+
customerLocation = (customerLocations || []).map(function (location) { return ({
|
|
774
|
+
id: location.id
|
|
775
|
+
}); });
|
|
776
|
+
customerBaseId = (expectedCustomer === null || expectedCustomer === void 0 ? void 0 : expectedCustomer.id) && { id: expectedCustomer.id, period: 'monthly' };
|
|
777
|
+
salesId = (expectedSale === null || expectedSale === void 0 ? void 0 : expectedSale.id) && { id: expectedSale.id, period: 'monthly' };
|
|
778
|
+
customerBase = (customerBaseId || customerLocation.length) && __assign(__assign({}, (customerBaseId && !isCustomerBaseNonEditable && { id: expectedCustomer.id, period: 'monthly' })), (customerLocation.length && !isCustomerBaseLocationNonEditable && { locations: customerLocation }));
|
|
779
|
+
if (customerBase && !(isCustomerBaseNonEditable && isCustomerBaseLocationNonEditable))
|
|
780
|
+
requestBody = __assign(__assign({}, requestBody), { operations: __assign(__assign({}, requestBody.operations), { customer_base: customerBase }) });
|
|
781
|
+
if (salesId && !isSalesRangeNonEditable) {
|
|
782
|
+
requestBody = __assign(__assign({}, requestBody), { operations: __assign(__assign({}, requestBody.operations), { sales: salesId }) });
|
|
783
|
+
}
|
|
784
|
+
return [4, API.brandService.updateBrandInfo(requestBody)];
|
|
785
|
+
case 1:
|
|
786
|
+
data = _g.sent();
|
|
787
|
+
thunkApi.dispatch(updateStepName(stepName));
|
|
788
|
+
thunkApi.dispatch(handleNextScreenStep());
|
|
789
|
+
(_f = (_e = settings.data.appConfig).onStepCompleted) === null || _f === void 0 ? void 0 : _f.call(_e, settings.data.activeScreen.name, requestBody);
|
|
790
|
+
return [2, { data: data === null || data === void 0 ? void 0 : data.brand, formData: originalFormData }];
|
|
791
|
+
}
|
|
792
|
+
});
|
|
688
793
|
});
|
|
689
|
-
});
|
|
794
|
+
});
|
|
690
795
|
export var updateLeadSuccess = createAsyncThunk('businessUpdateLeadSuccess', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
|
|
691
796
|
var _a, settings, business, _b, steps, lead_id, flowCompleted, boardResponse, payload, data, board_id;
|
|
692
797
|
var _c, _d, _e, _f;
|
|
@@ -695,7 +800,8 @@ export var updateLeadSuccess = createAsyncThunk('businessUpdateLeadSuccess', fun
|
|
|
695
800
|
case 0:
|
|
696
801
|
_a = thunkApi.getState(), settings = _a.settings, business = _a.business;
|
|
697
802
|
_b = business.data.verify.responseBody || {}, steps = _b.steps, lead_id = _b.lead_id;
|
|
698
|
-
flowCompleted =
|
|
803
|
+
flowCompleted = hasKey(steps, BUSINESS_STEP_NAMES.BUSINESS_SUCCESS);
|
|
804
|
+
console.info('stop success call', flowCompleted || !lead_id);
|
|
699
805
|
if (flowCompleted || !lead_id)
|
|
700
806
|
return [2];
|
|
701
807
|
boardResponse = undefined;
|
|
@@ -708,6 +814,12 @@ export var updateLeadSuccess = createAsyncThunk('businessUpdateLeadSuccess', fun
|
|
|
708
814
|
return [4, API.leadService.updateLead(payload)];
|
|
709
815
|
case 1:
|
|
710
816
|
data = _g.sent();
|
|
817
|
+
sendCustomEventToGTM({
|
|
818
|
+
event: 'Send Event',
|
|
819
|
+
event_category: 'Account Creation Flow',
|
|
820
|
+
event_action: 'Account Creation Success',
|
|
821
|
+
event_label: settings.data.businessCountry.iso2
|
|
822
|
+
});
|
|
711
823
|
board_id = data === null || data === void 0 ? void 0 : data.board_id;
|
|
712
824
|
if (!board_id) return [3, 4];
|
|
713
825
|
return [4, API.boardService.retrieveBoardInfoStatus(board_id)];
|
|
@@ -770,9 +882,13 @@ var initialState = {
|
|
|
770
882
|
dob: '',
|
|
771
883
|
type: ''
|
|
772
884
|
},
|
|
885
|
+
dobData: {
|
|
886
|
+
dob: ''
|
|
887
|
+
},
|
|
773
888
|
businessTypeData: {
|
|
774
889
|
licenseNumber: '',
|
|
775
|
-
entityLegalName: ''
|
|
890
|
+
entityLegalName: '',
|
|
891
|
+
isPrevDob: false
|
|
776
892
|
},
|
|
777
893
|
activitiesData: {
|
|
778
894
|
activities: [],
|
|
@@ -818,24 +934,31 @@ export var businessSlice = createSlice({
|
|
|
818
934
|
state.customLoading = true;
|
|
819
935
|
})
|
|
820
936
|
.addCase(verifyLeadToken.fulfilled, function (state, action) {
|
|
821
|
-
var _a, _b;
|
|
937
|
+
var _a, _b, _c, _d, _e;
|
|
822
938
|
state.error = null;
|
|
823
939
|
state.customLoading = false;
|
|
824
|
-
var
|
|
940
|
+
var _f = action.payload, data = _f.data, boardId = _f.boardId, brandData = _f.brandData, leadData = _f.leadData, token = _f.token, isRequireOTP = _f.isRequireOTP, isicActivityList = _f.isicActivityList, verifyNextStepName = _f.verifyNextStepName;
|
|
825
941
|
var responseBody = state.data.verify.responseBody;
|
|
826
|
-
state.data.verify.responseBody = __assign(__assign(__assign(__assign(__assign({}, data), leadData), responseBody), { board_id: boardId, lead_id: data === null || data === void 0 ? void 0 : data.id }), (brandData && { brand: brandData }));
|
|
942
|
+
state.data.verify.responseBody = __assign(__assign(__assign(__assign(__assign({}, data), leadData), responseBody), { board_id: boardId, lead_id: data === null || data === void 0 ? void 0 : data.id, verifyNextStepName: verifyNextStepName }), (brandData && { brand: brandData }));
|
|
943
|
+
var _g = leadData || {}, identification = _g.identification, date_of_birth = _g.date_of_birth;
|
|
944
|
+
if (identification === null || identification === void 0 ? void 0 : identification.id)
|
|
945
|
+
state.data.nidData.nid = identification.id;
|
|
946
|
+
if (date_of_birth)
|
|
947
|
+
state.data.nidData.dob = dateFormat(date_of_birth);
|
|
948
|
+
if (identification === null || identification === void 0 ? void 0 : identification.type)
|
|
949
|
+
state.data.nidData.type = identification.type;
|
|
827
950
|
if (token)
|
|
828
951
|
state.data.verify.token = token;
|
|
829
952
|
state.data.otpData.isNID = false;
|
|
830
953
|
if (isRequireOTP)
|
|
831
954
|
return;
|
|
832
|
-
var
|
|
955
|
+
var _h = state.data.verify.responseBody || {}, entity = _h.entity, entity_activities = _h.entity_activities, business_name = _h.business_name;
|
|
833
956
|
if (business_name === null || business_name === void 0 ? void 0 : business_name.en)
|
|
834
957
|
state.data.businessTypeData.entityLegalName = business_name === null || business_name === void 0 ? void 0 : business_name.en;
|
|
835
958
|
var issuingDate = ((_a = brandData === null || brandData === void 0 ? void 0 : brandData.operations) === null || _a === void 0 ? void 0 : _a.start_date) || ((_b = entity === null || entity === void 0 ? void 0 : entity.license) === null || _b === void 0 ? void 0 : _b.issuing_date);
|
|
836
959
|
if (issuingDate)
|
|
837
960
|
state.data.activitiesData.operationStartDate = convertNumbers2English(dateFormat(issuingDate));
|
|
838
|
-
var
|
|
961
|
+
var _j = brandData || {}, terms = _j.terms, activities = _j.activities;
|
|
839
962
|
var entityActivities = (entity_activities === null || entity_activities === void 0 ? void 0 : entity_activities.filter(function (activity) {
|
|
840
963
|
return !(activities === null || activities === void 0 ? void 0 : activities.some(function (value) { return value.id === activity.id; }));
|
|
841
964
|
})) || [];
|
|
@@ -847,7 +970,8 @@ export var businessSlice = createSlice({
|
|
|
847
970
|
}
|
|
848
971
|
});
|
|
849
972
|
state.data.activitiesData.activities = selectedActivity;
|
|
850
|
-
|
|
973
|
+
var licenseList = [OTHER_CR_LICENSE, OTHER_FL_LICENSE];
|
|
974
|
+
state.data.businessTypeData.responseBody = __assign(__assign(__assign({}, state.data.businessTypeData.responseBody), { entity_id: entity === null || entity === void 0 ? void 0 : entity.id, activityList: isicActivityList }), (!((_e = (_d = (_c = state.data.businessTypeData) === null || _c === void 0 ? void 0 : _c.responseBody) === null || _d === void 0 ? void 0 : _d.licenseList) === null || _e === void 0 ? void 0 : _e.length) && { licenseList: licenseList }));
|
|
851
975
|
})
|
|
852
976
|
.addCase(verifyLeadToken.rejected, function (state, action) {
|
|
853
977
|
state.error = action.error.message;
|
|
@@ -859,13 +983,13 @@ export var businessSlice = createSlice({
|
|
|
859
983
|
.addCase(resendOTP.fulfilled, function (state, action) {
|
|
860
984
|
var _a;
|
|
861
985
|
state.error = null;
|
|
862
|
-
var
|
|
986
|
+
var _b = action.payload, data = _b.data, verifyNextStepName = _b.verifyNextStepName;
|
|
863
987
|
var description = (((_a = data === null || data === void 0 ? void 0 : data.errors) === null || _a === void 0 ? void 0 : _a[0]) || {}).description;
|
|
864
988
|
if (description) {
|
|
865
989
|
state.error = description;
|
|
866
990
|
return;
|
|
867
991
|
}
|
|
868
|
-
state.data.verify.responseBody = __assign(__assign({}, state.data.verify.responseBody), data);
|
|
992
|
+
state.data.verify.responseBody = __assign(__assign(__assign({}, state.data.verify.responseBody), data), { verifyNextStepName: verifyNextStepName });
|
|
869
993
|
})
|
|
870
994
|
.addCase(resendOTP.rejected, function (state, action) {
|
|
871
995
|
state.error = action.error.message;
|
|
@@ -875,20 +999,27 @@ export var businessSlice = createSlice({
|
|
|
875
999
|
state.error = null;
|
|
876
1000
|
})
|
|
877
1001
|
.addCase(verifyLeadOTP.fulfilled, function (state, action) {
|
|
878
|
-
var _a, _b;
|
|
1002
|
+
var _a, _b, _c, _d, _e;
|
|
879
1003
|
state.loading = false;
|
|
880
1004
|
state.error = null;
|
|
881
|
-
var
|
|
1005
|
+
var _f = action.payload, data = _f.data, formData = _f.formData, brand = _f.brand, leadData = _f.leadData, isicActivityList = _f.isicActivityList, verifyNextStepName = _f.verifyNextStepName;
|
|
882
1006
|
state.data.otpData = formData;
|
|
883
1007
|
state.data.otpData.responseBody = data;
|
|
884
|
-
state.data.verify.responseBody = __assign(__assign(__assign(__assign({}, leadData), state.data.verify.responseBody), (brand && { brand: brand })), { flows: (leadData === null || leadData === void 0 ? void 0 : leadData.flows) || [] });
|
|
885
|
-
var
|
|
1008
|
+
state.data.verify.responseBody = __assign(__assign(__assign(__assign(__assign({}, leadData), state.data.verify.responseBody), { verifyNextStepName: verifyNextStepName }), (brand && { brand: brand })), { flows: (leadData === null || leadData === void 0 ? void 0 : leadData.flows) || [] });
|
|
1009
|
+
var _g = leadData || {}, identification = _g.identification, date_of_birth = _g.date_of_birth;
|
|
1010
|
+
if (identification === null || identification === void 0 ? void 0 : identification.id)
|
|
1011
|
+
state.data.nidData.nid = identification.id;
|
|
1012
|
+
if (date_of_birth)
|
|
1013
|
+
state.data.nidData.dob = dateFormat(date_of_birth);
|
|
1014
|
+
if (identification === null || identification === void 0 ? void 0 : identification.type)
|
|
1015
|
+
state.data.nidData.type = identification.type;
|
|
1016
|
+
var _h = leadData || {}, entity = _h.entity, entity_activities = _h.entity_activities, business_name = _h.business_name;
|
|
886
1017
|
if (business_name === null || business_name === void 0 ? void 0 : business_name.en)
|
|
887
1018
|
state.data.businessTypeData.entityLegalName = business_name === null || business_name === void 0 ? void 0 : business_name.en;
|
|
888
1019
|
var issuingDate = ((_a = brand === null || brand === void 0 ? void 0 : brand.operations) === null || _a === void 0 ? void 0 : _a.start_date) || ((_b = entity === null || entity === void 0 ? void 0 : entity.license) === null || _b === void 0 ? void 0 : _b.issuing_date);
|
|
889
1020
|
if (issuingDate)
|
|
890
1021
|
state.data.activitiesData.operationStartDate = convertNumbers2English(dateFormat(issuingDate));
|
|
891
|
-
var
|
|
1022
|
+
var _j = brand || {}, terms = _j.terms, activities = _j.activities;
|
|
892
1023
|
var entityActivities = (entity_activities === null || entity_activities === void 0 ? void 0 : entity_activities.filter(function (activity) {
|
|
893
1024
|
return !(activities === null || activities === void 0 ? void 0 : activities.some(function (value) { return value.id === activity.id; }));
|
|
894
1025
|
})) || [];
|
|
@@ -900,7 +1031,8 @@ export var businessSlice = createSlice({
|
|
|
900
1031
|
}
|
|
901
1032
|
});
|
|
902
1033
|
state.data.activitiesData.activities = selectedActivity;
|
|
903
|
-
|
|
1034
|
+
var licenseList = [OTHER_CR_LICENSE, OTHER_FL_LICENSE];
|
|
1035
|
+
state.data.businessTypeData.responseBody = __assign(__assign(__assign({}, state.data.businessTypeData.responseBody), { entity_id: entity === null || entity === void 0 ? void 0 : entity.id, activityList: isicActivityList }), (!((_e = (_d = (_c = state.data.businessTypeData) === null || _c === void 0 ? void 0 : _c.responseBody) === null || _d === void 0 ? void 0 : _d.licenseList) === null || _e === void 0 ? void 0 : _e.length) && { licenseList: licenseList }));
|
|
904
1036
|
})
|
|
905
1037
|
.addCase(verifyLeadOTP.rejected, function (state, action) {
|
|
906
1038
|
state.loading = false;
|
|
@@ -965,23 +1097,37 @@ export var businessSlice = createSlice({
|
|
|
965
1097
|
state.loading = false;
|
|
966
1098
|
state.error = action.error.message;
|
|
967
1099
|
})
|
|
968
|
-
.addCase(
|
|
1100
|
+
.addCase(verifyNafath.pending, function (state) {
|
|
1101
|
+
state.loading = true;
|
|
969
1102
|
state.error = null;
|
|
970
1103
|
})
|
|
971
|
-
.addCase(
|
|
972
|
-
|
|
1104
|
+
.addCase(verifyNafath.fulfilled, function (state, action) {
|
|
1105
|
+
state.loading = false;
|
|
973
1106
|
state.error = null;
|
|
974
|
-
var
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
1107
|
+
var _a = action.payload, response = _a.response, isNextScreenDob = _a.isNextScreenDob;
|
|
1108
|
+
state.data.businessTypeData.isPrevDob = isNextScreenDob || false;
|
|
1109
|
+
state.data.otpData.responseBody = response;
|
|
1110
|
+
})
|
|
1111
|
+
.addCase(verifyNafath.rejected, function (state, action) {
|
|
1112
|
+
state.loading = false;
|
|
1113
|
+
var error = action.error.message;
|
|
1114
|
+
if (error !== 'Aborted') {
|
|
1115
|
+
state.error = error;
|
|
979
1116
|
}
|
|
980
|
-
state.data.nidData.responseBody = data;
|
|
981
|
-
state.data.otpData.otp = '';
|
|
982
|
-
state.data.otpData.isNID = true;
|
|
983
1117
|
})
|
|
984
|
-
.addCase(
|
|
1118
|
+
.addCase(updateLeadDOB.pending, function (state) {
|
|
1119
|
+
state.loading = true;
|
|
1120
|
+
state.error = null;
|
|
1121
|
+
})
|
|
1122
|
+
.addCase(updateLeadDOB.fulfilled, function (state, action) {
|
|
1123
|
+
state.loading = false;
|
|
1124
|
+
state.error = null;
|
|
1125
|
+
var _a = action.payload, data = _a.data, formData = _a.formData;
|
|
1126
|
+
state.data.dobData = formData;
|
|
1127
|
+
state.data.dobData.responseBody = data;
|
|
1128
|
+
})
|
|
1129
|
+
.addCase(updateLeadDOB.rejected, function (state, action) {
|
|
1130
|
+
state.loading = false;
|
|
985
1131
|
state.error = action.error.message;
|
|
986
1132
|
})
|
|
987
1133
|
.addCase(retrieveEntityList.pending, function (state) {
|