@tap-payments/auth-jsconnect 2.3.6-test → 2.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/@types/app.d.ts +303 -1
- package/build/@types/app.js +17 -0
- package/build/@types/form.d.ts +10 -7
- package/build/@types/redux.d.ts +4 -0
- package/build/@types/user.d.ts +39 -3
- package/build/api/brand.d.ts +7 -0
- package/build/api/brand.js +10 -1
- package/build/api/data.d.ts +8 -0
- package/build/api/data.js +34 -2
- package/build/api/entity.d.ts +20 -5
- package/build/api/entity.js +26 -1
- package/build/api/index.d.ts +29 -5
- package/build/api/index.js +3 -1
- package/build/api/individual.d.ts +24 -6
- package/build/api/individual.js +9 -1
- package/build/api/init.d.ts +17 -0
- package/build/api/init.js +13 -0
- package/build/api/lead.d.ts +8 -1
- package/build/api/lead.js +9 -1
- package/build/app/settings.d.ts +12 -9
- package/build/app/settings.js +77 -34
- package/build/assets/locales/ar.json +28 -1
- package/build/assets/locales/en.json +28 -1
- package/build/components/AnimationFlow/AnimationFlow.d.ts +4 -2
- package/build/components/AnimationFlow/AnimationFlow.js +4 -4
- package/build/components/AnimationFlow/BottomSheet.d.ts +4 -1
- package/build/components/AnimationFlow/BottomSheet.js +43 -19
- package/build/components/AnimationFlow/Dialog.d.ts +4 -2
- package/build/components/AnimationFlow/Dialog.js +30 -7
- package/build/components/ArabicDatePicker/ArabicDatePicker.d.ts +5 -2
- package/build/components/ArabicDatePicker/ArabicDatePicker.js +45 -23
- package/build/components/ArabicDatePicker/arabicAr.d.ts +8 -0
- package/build/components/ArabicDatePicker/arabicAr.js +32 -0
- package/build/components/ArabicDatePicker/arabicEn.d.ts +8 -0
- package/build/components/ArabicDatePicker/arabicEn.js +32 -0
- package/build/components/ArabicDatePicker/style.css +45 -5
- package/build/components/DatePicker/DatePicker.d.ts +4 -1
- package/build/components/DatePicker/DatePicker.js +27 -17
- package/build/components/LogoBadge/LogoBadge.js +3 -0
- package/build/components/RadioGroup/RadioGroup.d.ts +5 -2
- package/build/components/RadioGroup/RadioGroup.js +5 -9
- package/build/components/RadioGroup/index.d.ts +1 -1
- package/build/components/SimpleList/SimpleList.d.ts +5 -2
- package/build/components/SimpleList/SimpleList.js +31 -11
- package/build/components/Slide/Slide.d.ts +1 -1
- package/build/constants/api.d.ts +7 -0
- package/build/constants/api.js +14 -1
- package/build/constants/app.d.ts +45 -0
- package/build/constants/app.js +101 -52
- package/build/constants/assets.d.ts +9 -0
- package/build/constants/assets.js +9 -0
- package/build/constants/validation.d.ts +3 -2
- package/build/constants/validation.js +3 -2
- package/build/features/app/bank/bankStore.d.ts +7 -3
- package/build/features/app/bank/bankStore.js +155 -115
- package/build/features/app/brand/brandStore.d.ts +32 -12
- package/build/features/app/brand/brandStore.js +384 -203
- package/build/features/app/business/businessStore.d.ts +16 -13
- package/build/features/app/business/businessStore.js +364 -295
- package/build/features/app/connect/connectStore.d.ts +15 -1
- package/build/features/app/connect/connectStore.js +292 -95
- package/build/features/app/connectExpress/connectExpressStore.d.ts +17 -3
- package/build/features/app/connectExpress/connectExpressStore.js +232 -100
- package/build/features/app/entity/entityStore.d.ts +15 -17
- package/build/features/app/entity/entityStore.js +279 -248
- package/build/features/app/individual/individualStore.d.ts +22 -10
- package/build/features/app/individual/individualStore.js +531 -418
- package/build/features/app/password/passwordStore.d.ts +4 -0
- package/build/features/app/password/passwordStore.js +99 -43
- package/build/features/app/tax/taxStore.d.ts +6 -2
- package/build/features/app/tax/taxStore.js +143 -101
- package/build/features/bank/Bank.js +10 -6
- package/build/features/bank/screens/BankDetails/BankDetails.js +43 -17
- package/build/features/bank/screens/BankDetails/BankName.d.ts +5 -1
- package/build/features/bank/screens/BankDetails/BankName.js +9 -9
- package/build/features/bank/screens/BankDetails/BankStatement.d.ts +5 -1
- package/build/features/bank/screens/BankDetails/BankStatement.js +7 -10
- package/build/features/bank/screens/BankDetails/Beneficiary.d.ts +3 -1
- package/build/features/bank/screens/BankDetails/Beneficiary.js +6 -7
- package/build/features/bank/screens/BankDetails/ConfirmPolicy.d.ts +4 -1
- package/build/features/bank/screens/BankDetails/ConfirmPolicy.js +12 -13
- package/build/features/bank/screens/BankDetails/IBAN.d.ts +3 -1
- package/build/features/bank/screens/BankDetails/IBAN.js +3 -5
- package/build/features/bank/screens/BankDetails/validation.d.ts +8 -8
- package/build/features/bank/screens/BankDetails/validation.js +6 -17
- package/build/features/bank/screens/ResetPasswordSuccess/ResetPasswordSuccess.js +9 -4
- package/build/features/bank/screens/Verify/OTPInput.js +5 -3
- package/build/features/bank/screens/Verify/Verify.js +1 -5
- package/build/features/brand/Brand.js +10 -6
- package/build/features/brand/screens/BrandActivities/ActivitiesList.d.ts +10 -27
- package/build/features/brand/screens/BrandActivities/ActivitiesList.js +45 -28
- package/build/features/brand/screens/BrandActivities/BrandActivities.js +41 -9
- package/build/features/brand/screens/BrandActivities/CustomerBase.d.ts +11 -38
- package/build/features/brand/screens/BrandActivities/CustomerBase.js +22 -31
- package/build/features/brand/screens/BrandActivities/ExpectedCustomers.d.ts +3 -1
- package/build/features/brand/screens/BrandActivities/ExpectedCustomers.js +24 -20
- package/build/features/brand/screens/BrandActivities/ExpectedSalesRange.d.ts +3 -1
- package/build/features/brand/screens/BrandActivities/ExpectedSalesRange.js +31 -19
- package/build/features/brand/screens/BrandActivities/RefundPolicy.d.ts +13 -6
- package/build/features/brand/screens/BrandActivities/RefundPolicy.js +23 -12
- package/build/features/brand/screens/BrandActivities/TAC.d.ts +14 -2
- package/build/features/brand/screens/BrandActivities/TAC.js +21 -12
- package/build/features/brand/screens/BrandActivities/TransactionPolicy.d.ts +4 -1
- package/build/features/brand/screens/BrandActivities/TransactionPolicy.js +18 -4
- package/build/features/brand/screens/BrandActivities/validation.d.ts +43 -43
- package/build/features/brand/screens/BrandActivities/validation.js +11 -25
- package/build/features/brand/screens/BrandInfo/BrandInfo.js +40 -33
- package/build/features/brand/screens/BrandInfo/BrandLogo.d.ts +9 -0
- package/build/features/brand/screens/BrandInfo/BrandLogo.js +41 -0
- package/build/features/brand/screens/BrandInfo/BrandName.d.ts +3 -2
- package/build/features/brand/screens/BrandInfo/BrandName.js +4 -7
- package/build/features/brand/screens/BrandInfo/SalesChannels.d.ts +2 -1
- package/build/features/brand/screens/BrandInfo/SalesChannels.js +19 -25
- package/build/features/brand/screens/BrandInfo/validation.d.ts +7 -13
- package/build/features/brand/screens/BrandInfo/validation.js +43 -53
- package/build/features/brand/screens/BrandSegmentInfo/BrandSegmentInfo.d.ts +5 -0
- package/build/features/brand/screens/BrandSegmentInfo/BrandSegmentInfo.js +102 -0
- package/build/features/brand/screens/BrandSegmentInfo/SegmentLocations.d.ts +10 -0
- package/build/features/brand/screens/BrandSegmentInfo/SegmentLocations.js +69 -0
- package/build/features/brand/screens/BrandSegmentInfo/SegmentProfits.d.ts +10 -0
- package/build/features/brand/screens/BrandSegmentInfo/SegmentProfits.js +69 -0
- package/build/features/brand/screens/BrandSegmentInfo/SegmentTechs.d.ts +10 -0
- package/build/features/brand/screens/BrandSegmentInfo/SegmentTechs.js +69 -0
- package/build/features/{connect/screens/Merchant → brand/screens/BrandSegmentInfo}/TeamSize.d.ts +3 -1
- package/build/features/brand/screens/{BrandInfo → BrandSegmentInfo}/TeamSize.js +20 -25
- package/build/features/brand/screens/BrandSegmentInfo/index.d.ts +2 -0
- package/build/features/brand/screens/BrandSegmentInfo/index.js +2 -0
- package/build/features/brand/screens/BrandSegmentInfo/validation.d.ts +17 -0
- package/build/features/brand/screens/BrandSegmentInfo/validation.js +9 -0
- package/build/features/brand/screens/ResetPasswordSuccess/ResetPasswordSuccess.js +9 -4
- package/build/features/brand/screens/Verify/OTPInput.js +5 -3
- package/build/features/brand/screens/Verify/Verify.js +7 -20
- package/build/features/business/Business.js +7 -5
- package/build/features/business/screens/Activities/ActivitiesList.d.ts +15 -68
- package/build/features/business/screens/Activities/ActivitiesList.js +226 -98
- package/build/features/business/screens/Activities/OperationStartDate.d.ts +2 -2
- package/build/features/business/screens/Activities/OperationStartDate.js +3 -3
- package/build/features/business/screens/Activities/validation.d.ts +165 -30
- package/build/features/business/screens/Activities/validation.js +5 -2
- package/build/features/business/screens/BrandDetails/BrandDetails.d.ts +5 -0
- package/build/features/business/screens/BrandDetails/BrandDetails.js +39 -0
- package/build/features/business/screens/BrandDetails/BrandName.d.ts +5 -0
- package/build/features/business/screens/BrandDetails/BrandName.js +36 -0
- package/build/features/business/screens/BrandDetails/Header.d.ts +5 -0
- package/build/features/business/screens/BrandDetails/Header.js +49 -0
- package/build/features/business/screens/BrandDetails/LicenseInfo.d.ts +5 -0
- package/build/features/business/screens/BrandDetails/LicenseInfo.js +38 -0
- package/build/features/{brand/screens/BrandActivities/OperationStartDate.d.ts → business/screens/BrandDetails/SalesChannel.d.ts} +5 -7
- package/build/features/business/screens/BrandDetails/SalesChannel.js +48 -0
- package/build/features/business/screens/BrandDetails/index.d.ts +3 -0
- package/build/features/business/screens/BrandDetails/index.js +2 -0
- package/build/features/business/screens/BusinessType/Article.d.ts +3 -1
- package/build/features/business/screens/BusinessType/Article.js +19 -54
- package/build/features/business/screens/BusinessType/BusinessType.js +35 -11
- package/build/features/business/screens/BusinessType/EntityLicenseList.d.ts +9 -0
- package/build/features/business/screens/BusinessType/EntityLicenseList.js +129 -0
- package/build/features/business/screens/BusinessType/EntityName.js +6 -7
- package/build/features/business/screens/BusinessType/LicenseCertificate.js +2 -1
- package/build/features/business/screens/BusinessType/LicenseList.d.ts +1 -0
- package/build/features/business/screens/BusinessType/LicenseList.js +7 -22
- package/build/features/business/screens/BusinessType/LicenseNumber.d.ts +1 -2
- package/build/features/business/screens/BusinessType/LicenseNumber.js +7 -5
- package/build/features/business/screens/BusinessType/LicenseType.d.ts +2 -2
- package/build/features/business/screens/BusinessType/validation.js +2 -2
- package/build/features/business/screens/CivilID/IDNumber.js +2 -3
- package/build/features/business/screens/Customers/CustomerLocations.d.ts +44 -37
- package/build/features/business/screens/Customers/CustomerLocations.js +35 -19
- package/build/features/business/screens/Customers/Customers.js +27 -16
- package/build/features/business/screens/Customers/ExpectedCustomers.js +12 -4
- package/build/features/business/screens/Customers/ExpectedSalesRange.js +14 -6
- package/build/features/business/screens/Customers/RefundPolicy.d.ts +5 -5
- package/build/features/business/screens/Customers/RefundPolicy.js +15 -4
- package/build/features/business/screens/Customers/TransactionPolicy.js +19 -9
- package/build/features/business/screens/IDBOD/DOB.js +3 -3
- package/build/features/business/screens/IDBOD/ID.js +2 -3
- package/build/features/business/screens/ResetPasswordSuccess/ResetPasswordSuccess.js +8 -3
- package/build/features/business/screens/Verify/OTPInput.js +5 -3
- package/build/features/connect/Connect.d.ts +2 -0
- package/build/features/connect/Connect.js +86 -11
- package/build/features/connect/screens/BrandSegment/BrandSegment.d.ts +5 -0
- package/build/features/connect/screens/BrandSegment/BrandSegment.js +84 -0
- package/build/features/connect/screens/BrandSegment/SegmentLocations.d.ts +8 -0
- package/build/features/connect/screens/{Merchant/Segments.js → BrandSegment/SegmentLocations.js} +17 -25
- package/build/features/connect/screens/BrandSegment/SegmentProfits.d.ts +8 -0
- package/build/features/{brand/screens/BrandInfo/Segments.js → connect/screens/BrandSegment/SegmentProfits.js} +18 -26
- package/build/features/connect/screens/BrandSegment/SegmentTechs.d.ts +8 -0
- package/build/features/connect/screens/BrandSegment/SegmentTechs.js +66 -0
- package/build/features/connect/screens/{Merchant → BrandSegment}/TeamSize.js +12 -20
- package/build/features/connect/screens/BrandSegment/index.d.ts +3 -0
- package/build/features/connect/screens/BrandSegment/index.js +2 -0
- package/build/features/connect/screens/BrandSegment/validation.d.ts +17 -0
- package/build/features/connect/screens/BrandSegment/validation.js +9 -0
- package/build/features/connect/screens/CivilID/CivilID.js +5 -13
- package/build/features/connect/screens/CivilID/IDNumber.js +5 -6
- package/build/features/connect/screens/Individual/Email.js +17 -27
- package/build/features/connect/screens/Individual/Individual.js +8 -1
- package/build/features/connect/screens/Individual/MobileNumber.js +16 -15
- package/build/features/connect/screens/Individual/Name.js +11 -15
- package/build/features/connect/screens/Merchant/BrandList.js +4 -22
- package/build/features/connect/screens/Merchant/BrandName.js +4 -7
- package/build/features/connect/screens/Merchant/Merchant.js +13 -15
- package/build/features/connect/screens/Merchant/SalesChannels.js +6 -6
- package/build/features/connect/screens/Merchant/validation.d.ts +3 -6
- package/build/features/connect/screens/Merchant/validation.js +14 -17
- package/build/features/connect/screens/Mobile/Mobile.js +13 -16
- package/build/features/connect/screens/Mobile/MobileNumber.js +14 -10
- package/build/features/connect/screens/NID/DOB.js +3 -3
- package/build/features/connect/screens/NID/IDNumber.js +6 -7
- package/build/features/connect/screens/NID/NID.js +6 -0
- package/build/features/connect/screens/OTP/OTP.js +13 -15
- package/build/features/connect/screens/OTP/OTPInput.js +10 -0
- package/build/features/connect/screens/ThankYou/ThankYou.js +17 -2
- package/build/features/connectExpress/ConnectExpress.d.ts +1 -0
- package/build/features/connectExpress/ConnectExpress.js +72 -12
- package/build/features/connectExpress/screens/Brand/Brand.js +1 -1
- package/build/features/connectExpress/screens/CivilID/IDNumber.js +6 -7
- package/build/features/connectExpress/screens/CivilIDMissed/IDNumber.js +6 -7
- package/build/features/connectExpress/screens/CollectBusinessInfo/BrandName.d.ts +2 -1
- package/build/features/connectExpress/screens/CollectBusinessInfo/BrandName.js +5 -7
- package/build/features/connectExpress/screens/CollectBusinessInfo/CollectBusinessInfo.js +7 -4
- package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseList.d.ts +2 -1
- package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseList.js +9 -14
- package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseNumber.d.ts +1 -1
- package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseNumber.js +4 -4
- package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseType.d.ts +4 -3
- package/build/features/connectExpress/screens/CollectBusinessInfo/LicenseType.js +4 -2
- package/build/features/connectExpress/screens/CollectBusinessInfo/TAC.d.ts +14 -1
- package/build/features/connectExpress/screens/CollectBusinessInfo/TAC.js +9 -10
- package/build/features/connectExpress/screens/CollectBusinessInfo/validation.js +4 -4
- package/build/features/connectExpress/screens/CollectIndividualInfo/CollectIndividualInfo.js +11 -6
- package/build/features/connectExpress/screens/CollectIndividualInfo/Email.d.ts +2 -1
- package/build/features/connectExpress/screens/CollectIndividualInfo/Email.js +6 -14
- package/build/features/connectExpress/screens/CollectIndividualInfo/MobileNumber.d.ts +1 -0
- package/build/features/connectExpress/screens/CollectIndividualInfo/MobileNumber.js +6 -2
- package/build/features/connectExpress/screens/CollectIndividualInfo/Name.d.ts +2 -1
- package/build/features/connectExpress/screens/CollectIndividualInfo/Name.js +3 -4
- package/build/features/connectExpress/screens/IdentityOTP/OTPInput.js +2 -2
- package/build/features/connectExpress/screens/Mobile/Mobile.js +4 -3
- package/build/features/connectExpress/screens/Mobile/MobileNumber.d.ts +1 -0
- package/build/features/connectExpress/screens/Mobile/MobileNumber.js +6 -2
- package/build/features/connectExpress/screens/Mobile/TAC.d.ts +2 -1
- package/build/features/connectExpress/screens/Mobile/TAC.js +3 -1
- package/build/features/connectExpress/screens/NID/DOB.d.ts +2 -1
- package/build/features/connectExpress/screens/NID/DOB.js +3 -3
- package/build/features/connectExpress/screens/NID/IDNumber.d.ts +1 -0
- package/build/features/connectExpress/screens/NID/IDNumber.js +3 -4
- package/build/features/connectExpress/screens/NID/NID.js +4 -2
- package/build/features/connectExpress/screens/NID/TAC.d.ts +14 -1
- package/build/features/connectExpress/screens/NID/TAC.js +9 -10
- package/build/features/connectExpress/screens/NIDMissed/DOB.js +2 -2
- package/build/features/connectExpress/screens/NIDMissed/IDNumber.js +2 -3
- package/build/features/connectExpress/screens/OTP/OTPInput.js +3 -3
- package/build/features/connectExpress/screens/SuccessWithFlowButtons/SuccessWithFlowButtons.js +2 -1
- package/build/features/entity/Entity.js +10 -6
- package/build/features/entity/screens/EntityCapital/ActivityList.d.ts +16 -68
- package/build/features/entity/screens/EntityCapital/ActivityList.js +221 -106
- package/build/features/entity/screens/EntityCapital/CapitalPaid.d.ts +3 -1
- package/build/features/entity/screens/EntityCapital/CapitalPaid.js +14 -15
- package/build/features/entity/screens/EntityCapital/CapitalShareCount.d.ts +3 -1
- package/build/features/entity/screens/EntityCapital/CapitalShareCount.js +10 -11
- package/build/features/entity/screens/EntityCapital/CapitalShareValue.d.ts +3 -1
- package/build/features/entity/screens/EntityCapital/CapitalShareValue.js +15 -16
- package/build/features/entity/screens/EntityCapital/EntityCapital.js +31 -20
- package/build/features/entity/screens/EntityCapital/validation.d.ts +175 -40
- package/build/features/entity/screens/EntityCapital/validation.js +9 -12
- package/build/features/entity/screens/EntityName/Article.d.ts +5 -1
- package/build/features/entity/screens/EntityName/Article.js +20 -54
- package/build/features/entity/screens/EntityName/EntityName.js +60 -16
- package/build/features/entity/screens/EntityName/EntityTypeList.d.ts +11 -27
- package/build/features/entity/screens/EntityName/EntityTypeList.js +32 -43
- package/build/features/entity/screens/EntityName/ExpiryDate.d.ts +5 -3
- package/build/features/entity/screens/EntityName/ExpiryDate.js +5 -5
- package/build/features/entity/screens/EntityName/IssuingDate.d.ts +5 -3
- package/build/features/entity/screens/EntityName/IssuingDate.js +4 -5
- package/build/features/entity/screens/EntityName/LegalName.d.ts +3 -1
- package/build/features/entity/screens/EntityName/LegalName.js +9 -6
- package/build/features/entity/screens/EntityName/LicenseCertificate.d.ts +4 -1
- package/build/features/entity/screens/EntityName/LicenseCertificate.js +13 -7
- package/build/features/entity/screens/EntityName/LicenseNumber.d.ts +3 -1
- package/build/features/entity/screens/EntityName/LicenseNumber.js +13 -11
- package/build/features/entity/screens/EntityName/UnifiedNumber.d.ts +3 -1
- package/build/features/entity/screens/EntityName/UnifiedNumber.js +9 -7
- package/build/features/entity/screens/EntityName/validation.d.ts +35 -35
- package/build/features/entity/screens/EntityName/validation.js +68 -93
- package/build/features/entity/screens/ResetPasswordSuccess/ResetPasswordSuccess.js +9 -4
- package/build/features/entity/screens/Verify/OTPInput.js +5 -3
- package/build/features/entity/screens/Verify/Verify.js +7 -20
- package/build/features/featuresScreens.js +13 -1
- package/build/features/individual/Individual.js +10 -6
- package/build/features/individual/screens/AdditionalIndividualInfo/AdditionalIndividualInfo.d.ts +2 -2
- package/build/features/individual/screens/AdditionalIndividualInfo/AdditionalIndividualInfo.js +54 -23
- package/build/features/individual/screens/AdditionalIndividualInfo/CivilIDFile.d.ts +7 -1
- package/build/features/individual/screens/AdditionalIndividualInfo/CivilIDFile.js +29 -10
- package/build/features/individual/screens/AdditionalIndividualInfo/InfluencerSwitch.d.ts +3 -1
- package/build/features/individual/screens/AdditionalIndividualInfo/InfluencerSwitch.js +17 -12
- package/build/features/individual/screens/AdditionalIndividualInfo/MonthlyIncome.d.ts +2 -1
- package/build/features/individual/screens/AdditionalIndividualInfo/MonthlyIncome.js +30 -41
- package/build/features/individual/screens/AdditionalIndividualInfo/Occupation.d.ts +3 -3
- package/build/features/individual/screens/AdditionalIndividualInfo/Occupation.js +94 -55
- package/build/features/individual/screens/AdditionalIndividualInfo/PEPSwitch.d.ts +5 -3
- package/build/features/individual/screens/AdditionalIndividualInfo/PEPSwitch.js +17 -12
- package/build/features/individual/screens/AdditionalIndividualInfo/ShareCount.d.ts +2 -1
- package/build/features/individual/screens/AdditionalIndividualInfo/ShareCount.js +9 -2
- package/build/features/individual/screens/AdditionalIndividualInfo/ShareValue.d.ts +2 -1
- package/build/features/individual/screens/AdditionalIndividualInfo/ShareValue.js +13 -7
- package/build/features/individual/screens/AdditionalIndividualInfo/SignatureFile.d.ts +4 -1
- package/build/features/individual/screens/AdditionalIndividualInfo/SignatureFile.js +14 -8
- package/build/features/individual/screens/AdditionalIndividualInfo/SourceOfIncome.d.ts +2 -1
- package/build/features/individual/screens/AdditionalIndividualInfo/SourceOfIncome.js +32 -42
- package/build/features/individual/screens/AdditionalIndividualInfo/validation.d.ts +8 -8
- package/build/features/individual/screens/AdditionalIndividualInfo/validation.js +8 -12
- package/build/features/individual/screens/IndividualList/IndividualList.d.ts +4 -4
- package/build/features/individual/screens/IndividualList/MobileNumber.js +0 -1
- package/build/features/individual/screens/IndividualList/UserList.js +10 -6
- package/build/features/individual/screens/IndividualPersonalInfo/BirthCity.d.ts +2 -0
- package/build/features/individual/screens/IndividualPersonalInfo/BirthCity.js +14 -20
- package/build/features/individual/screens/IndividualPersonalInfo/BirthCountry.d.ts +2 -0
- package/build/features/individual/screens/IndividualPersonalInfo/BirthCountry.js +8 -14
- package/build/features/individual/screens/IndividualPersonalInfo/DOB.d.ts +3 -1
- package/build/features/individual/screens/IndividualPersonalInfo/DOB.js +4 -4
- package/build/features/individual/screens/IndividualPersonalInfo/Email.d.ts +3 -1
- package/build/features/individual/screens/IndividualPersonalInfo/Email.js +3 -10
- package/build/features/individual/screens/IndividualPersonalInfo/ExpiryDate.d.ts +3 -1
- package/build/features/individual/screens/IndividualPersonalInfo/ExpiryDate.js +5 -7
- package/build/features/individual/screens/IndividualPersonalInfo/Gender.d.ts +5 -3
- package/build/features/individual/screens/IndividualPersonalInfo/Gender.js +5 -2
- package/build/features/individual/screens/IndividualPersonalInfo/ID.d.ts +3 -1
- package/build/features/individual/screens/IndividualPersonalInfo/ID.js +3 -10
- package/build/features/individual/screens/IndividualPersonalInfo/IndividualPersonalInfo.d.ts +2 -2
- package/build/features/individual/screens/IndividualPersonalInfo/IndividualPersonalInfo.js +79 -36
- package/build/features/individual/screens/IndividualPersonalInfo/IssuedCountry.d.ts +2 -0
- package/build/features/individual/screens/IndividualPersonalInfo/IssuedCountry.js +10 -21
- package/build/features/individual/screens/IndividualPersonalInfo/MobileNumber.d.ts +2 -0
- package/build/features/individual/screens/IndividualPersonalInfo/MobileNumber.js +14 -16
- package/build/features/individual/screens/IndividualPersonalInfo/Name.d.ts +3 -1
- package/build/features/individual/screens/IndividualPersonalInfo/Name.js +3 -10
- package/build/features/individual/screens/IndividualPersonalInfo/Nationality.d.ts +2 -0
- package/build/features/individual/screens/IndividualPersonalInfo/Nationality.js +10 -21
- package/build/features/individual/screens/IndividualPhoneInfo/MobileNumber.d.ts +1 -0
- package/build/features/individual/screens/IndividualPhoneInfo/MobileNumber.js +6 -3
- package/build/features/individual/screens/IndividualPhoneInfo/PhoneInfo.js +6 -3
- package/build/features/individual/screens/ResetPasswordSuccess/ResetPasswordSuccess.js +8 -3
- package/build/features/individual/screens/Verify/OTPInput.js +5 -3
- package/build/features/individual/screens/Verify/Verify.js +1 -5
- package/build/features/password/Password.js +7 -5
- package/build/features/password/screens/CreatePassword/CreatePassword.js +9 -16
- package/build/features/password/screens/ResetPasswordSuccess/ResetPasswordSuccess.js +8 -3
- package/build/features/password/screens/Verify/OTPInput.js +5 -3
- package/build/features/password/screens/Verify/Verify.js +7 -20
- package/build/features/shared/Address/CountryList.d.ts +7 -7
- package/build/features/shared/Address/CountryList.js +1 -1
- package/build/features/shared/Address/InputSelect.d.ts +7 -7
- package/build/features/shared/Address/InputSelect.js +1 -1
- package/build/features/shared/Button/Button.d.ts +3 -1
- package/build/features/shared/Button/Button.js +2 -2
- package/build/features/shared/Button/EmailProvidersButtons.js +9 -2
- package/build/features/shared/Button/FlowsButtons.js +22 -20
- package/build/features/shared/Button/IndividualActionButtons.d.ts +3 -1
- package/build/features/shared/Button/IndividualActionButtons.js +28 -4
- package/build/features/shared/Calender/Calender.d.ts +13 -0
- package/build/features/shared/Calender/Calender.js +56 -0
- package/build/features/shared/Calender/index.d.ts +2 -0
- package/build/features/shared/Calender/index.js +2 -0
- package/build/features/shared/CheckIcon/CheckIcon.d.ts +7 -1
- package/build/features/shared/CheckIcon/CheckIcon.js +7 -6
- package/build/features/shared/Chip/Chip.d.ts +3 -0
- package/build/features/shared/Chip/Chip.js +21 -0
- package/build/features/shared/Chip/index.d.ts +2 -0
- package/build/features/shared/Chip/index.js +2 -0
- package/build/features/shared/Containers/FeatureContainer.d.ts +4 -1
- package/build/features/shared/Containers/FeatureContainer.js +5 -4
- package/build/features/shared/Containers/ScreenContainer.d.ts +1 -1
- package/build/features/shared/Dot/Dot.d.ts +8 -0
- package/build/features/shared/Dot/Dot.js +29 -0
- package/build/features/shared/Dot/index.d.ts +2 -0
- package/build/features/shared/Dot/index.js +2 -0
- package/build/features/shared/EndAdornment/EndAdornment.d.ts +10 -0
- package/build/features/shared/EndAdornment/EndAdornment.js +17 -0
- package/build/features/shared/EndAdornment/EndAdornmentExpanded.d.ts +7 -0
- package/build/features/shared/EndAdornment/EndAdornmentExpanded.js +13 -0
- package/build/features/shared/EndAdornment/index.d.ts +3 -0
- package/build/features/shared/EndAdornment/index.js +3 -0
- package/build/features/shared/Footer/Footer.js +8 -0
- package/build/features/shared/Footer/PoweredByFooter.d.ts +9 -0
- package/build/features/shared/Footer/PoweredByFooter.js +36 -0
- package/build/features/shared/Footer/index.d.ts +3 -2
- package/build/features/shared/Footer/index.js +3 -2
- package/build/features/shared/GenericError/GenericError.js +1 -1
- package/build/features/shared/Input/Input.d.ts +5 -6
- package/build/features/shared/Input/Input.js +2 -3
- package/build/features/shared/Input/index.d.ts +2 -1
- package/build/features/shared/InputSelect/InputSelect.d.ts +4 -0
- package/build/features/shared/InputSelect/InputSelect.js +33 -0
- package/build/features/shared/InputSelect/index.d.ts +2 -0
- package/build/features/shared/InputSelect/index.js +2 -0
- package/build/features/shared/OTP/OTP.d.ts +2 -1
- package/build/features/shared/OTP/OTP.js +2 -2
- package/build/features/shared/SalesChannels/SaleChannelIconsInput.d.ts +3 -1
- package/build/features/shared/SalesChannels/SaleChannelIconsInput.js +8 -6
- package/build/features/shared/SalesChannels/SalesChannel.d.ts +3 -1
- package/build/features/shared/SalesChannels/SalesChannel.js +9 -4
- package/build/features/shared/Search/Search.d.ts +2 -1
- package/build/features/shared/Search/Search.js +2 -2
- package/build/features/shared/SuccessFlowButtons/SuccessFlowButtons.js +19 -8
- package/build/features/shared/SuccessScreen/SuccessScreen.d.ts +3 -1
- package/build/features/shared/SuccessScreen/SuccessScreen.js +3 -2
- package/build/features/shared/UploadFile/FileUpload.d.ts +32 -0
- package/build/features/shared/UploadFile/FileUpload.js +267 -0
- package/build/features/shared/UploadFile/UploadFile.d.ts +1 -1
- package/build/features/shared/UploadFile/UploadFile.js +7 -7
- package/build/features/shared/UploadFile/UploadWrapper.d.ts +36 -0
- package/build/features/shared/UploadFile/UploadWrapper.js +115 -0
- package/build/features/shared/UploadFile/index.d.ts +2 -1
- package/build/features/shared/UploadFile/index.js +2 -1
- package/build/features/shared/UploadMultipleFile/UploadFile.d.ts +8 -27
- package/build/features/shared/UploadMultipleFile/UploadFile.js +59 -58
- package/build/features/shared/UploadMultipleFile/UploadMultipleFile.d.ts +7 -3
- package/build/features/shared/UploadMultipleFile/UploadMultipleFile.js +11 -17
- package/build/features/signIn/SignIn.js +3 -4
- package/build/features/tax/Tax.js +10 -6
- package/build/features/tax/screens/ResetPasswordSuccess/ResetPasswordSuccess.js +9 -4
- package/build/features/tax/screens/TaxDetails/ConfirmPolicy.d.ts +4 -1
- package/build/features/tax/screens/TaxDetails/ConfirmPolicy.js +12 -12
- package/build/features/tax/screens/TaxDetails/TaxDetails.js +23 -10
- package/build/features/tax/screens/TaxDetails/TaxDocument.d.ts +4 -1
- package/build/features/tax/screens/TaxDetails/TaxDocument.js +7 -5
- package/build/features/tax/screens/TaxDetails/VATId.d.ts +5 -1
- package/build/features/tax/screens/TaxDetails/VATId.js +6 -10
- package/build/features/tax/screens/TaxDetails/validation.d.ts +4 -4
- package/build/features/tax/screens/TaxDetails/validation.js +2 -5
- package/build/features/tax/screens/Verify/OTPInput.js +5 -3
- package/build/features/tax/screens/Verify/Verify.js +6 -22
- package/build/hooks/index.d.ts +5 -0
- package/build/hooks/index.js +5 -0
- package/build/hooks/useAppConfig.d.ts +4 -2
- package/build/hooks/useAppConfig.js +18 -16
- package/build/hooks/useDataNoneEditable.d.ts +2 -0
- package/build/hooks/useDataNoneEditable.js +19 -0
- package/build/hooks/useDataVerified.d.ts +6 -0
- package/build/hooks/useDataVerified.js +19 -0
- package/build/hooks/useErrorListener.d.ts +2 -1
- package/build/hooks/useErrorListener.js +16 -1
- package/build/hooks/useExcludeReadOnlyFelids.d.ts +11 -0
- package/build/hooks/useExcludeReadOnlyFelids.js +33 -0
- package/build/hooks/useFormErrorAndUpdateReadOnly.d.ts +6 -0
- package/build/hooks/useFormErrorAndUpdateReadOnly.js +48 -0
- package/build/hooks/useFormReadOnly.d.ts +6 -0
- package/build/hooks/useFormReadOnly.js +40 -0
- package/build/hooks/useVerifyToken.js +1 -1
- package/build/theme/shadows.js +1 -1
- package/build/utils/array.d.ts +14 -2
- package/build/utils/array.js +196 -4
- package/build/utils/common.d.ts +1 -0
- package/build/utils/common.js +10 -0
- package/build/utils/date.d.ts +1 -0
- package/build/utils/date.js +6 -0
- package/build/utils/error.d.ts +1 -0
- package/build/utils/error.js +3 -0
- package/build/utils/gtm.d.ts +6 -0
- package/build/utils/gtm.js +29 -0
- package/build/utils/index.d.ts +1 -0
- package/build/utils/index.js +1 -0
- package/build/utils/object.d.ts +4 -0
- package/build/utils/object.js +17 -0
- package/build/utils/string.d.ts +5 -2
- package/build/utils/string.js +28 -7
- package/package.json +4 -2
- package/build/features/brand/screens/BrandActivities/OperationStartDate.js +0 -45
- package/build/features/brand/screens/BrandInfo/Segments.d.ts +0 -8
- package/build/features/connect/screens/Merchant/Segments.d.ts +0 -8
- /package/build/features/{brand/screens/BrandInfo → connect/screens/BrandSegment}/TeamSize.d.ts +0 -0
package/build/api/entity.d.ts
CHANGED
|
@@ -32,6 +32,7 @@ export declare type EntityInfoBody = {
|
|
|
32
32
|
};
|
|
33
33
|
step_name: string;
|
|
34
34
|
encryption_contract?: Array<string>;
|
|
35
|
+
vat_acknowledged_by?: string;
|
|
35
36
|
};
|
|
36
37
|
export declare type BankDocumentInfo = {
|
|
37
38
|
type?: string;
|
|
@@ -43,6 +44,7 @@ export declare type BankDocumentInfo = {
|
|
|
43
44
|
};
|
|
44
45
|
export declare type EntityBankUpdateBody = {
|
|
45
46
|
wallet_id: string;
|
|
47
|
+
acknowledged_by?: string;
|
|
46
48
|
bank_account: {
|
|
47
49
|
bank_name?: string;
|
|
48
50
|
beneficiary_name?: string;
|
|
@@ -50,7 +52,7 @@ export declare type EntityBankUpdateBody = {
|
|
|
50
52
|
iban?: string;
|
|
51
53
|
swift_code?: string;
|
|
52
54
|
account_number?: string;
|
|
53
|
-
is_acknowledged
|
|
55
|
+
is_acknowledged?: boolean;
|
|
54
56
|
document?: BankDocumentInfo;
|
|
55
57
|
};
|
|
56
58
|
step_name: string;
|
|
@@ -72,16 +74,16 @@ export declare type UpdateEntityBody = {
|
|
|
72
74
|
action: string;
|
|
73
75
|
}>;
|
|
74
76
|
legal_name?: {
|
|
75
|
-
ar
|
|
76
|
-
en
|
|
77
|
+
ar?: string;
|
|
78
|
+
en?: string;
|
|
77
79
|
};
|
|
78
80
|
type?: string;
|
|
79
81
|
AOA_file_id?: string;
|
|
80
82
|
capital?: {
|
|
81
83
|
paid?: string;
|
|
82
84
|
shares?: {
|
|
83
|
-
count
|
|
84
|
-
value
|
|
85
|
+
count?: string;
|
|
86
|
+
value?: string;
|
|
85
87
|
};
|
|
86
88
|
};
|
|
87
89
|
encryption_contract?: Array<string>;
|
|
@@ -102,6 +104,16 @@ export declare type UpdateEntityCapitalBody = {
|
|
|
102
104
|
};
|
|
103
105
|
};
|
|
104
106
|
};
|
|
107
|
+
export declare type UpdateEntityAOAFileBody = {
|
|
108
|
+
id: string;
|
|
109
|
+
AOA_file_id: string;
|
|
110
|
+
};
|
|
111
|
+
export declare type RemoveEntityActivity = {
|
|
112
|
+
id: string;
|
|
113
|
+
activities?: Array<{
|
|
114
|
+
id: string;
|
|
115
|
+
}>;
|
|
116
|
+
};
|
|
105
117
|
declare const entityService: {
|
|
106
118
|
createEntityInfo: ({ id, ...data }: EntityInfoBody, config?: AxiosRequestConfig) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
107
119
|
updateEntityInfo: ({ id, ...data }: EntityInfoBody, config?: AxiosRequestConfig) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
@@ -114,5 +126,8 @@ declare const entityService: {
|
|
|
114
126
|
updateEntityActivity: ({ id, ...data }: UpdateEntityActivityBody) => Promise<any>;
|
|
115
127
|
retrieveEntityType: () => Promise<any>;
|
|
116
128
|
updateEntityCapital: ({ id, ...data }: UpdateEntityCapitalBody) => Promise<any>;
|
|
129
|
+
updateEntityAOAFile: ({ id, ...data }: UpdateEntityAOAFileBody) => Promise<any>;
|
|
130
|
+
retrieveAllEntities: (id: string) => Promise<any>;
|
|
131
|
+
removeEntityActivities: ({ id, ...data }: RemoveEntityActivity) => Promise<any>;
|
|
117
132
|
};
|
|
118
133
|
export { entityService };
|
package/build/api/entity.js
CHANGED
|
@@ -69,12 +69,34 @@ var updateIndividualInfo = function (_a) {
|
|
|
69
69
|
data: data
|
|
70
70
|
});
|
|
71
71
|
};
|
|
72
|
+
var updateEntityAOAFile = function (_a) {
|
|
73
|
+
var id = _a.id, data = __rest(_a, ["id"]);
|
|
74
|
+
return httpClient({
|
|
75
|
+
method: 'put',
|
|
76
|
+
url: "".concat(ENDPOINT_PATHS.ENTITY, "/").concat(id, "/aoa_file"),
|
|
77
|
+
data: data
|
|
78
|
+
});
|
|
79
|
+
};
|
|
72
80
|
var retrieveEntityType = function () {
|
|
73
81
|
return httpClient({
|
|
74
82
|
method: 'get',
|
|
75
83
|
url: "".concat(ENDPOINT_PATHS.ENTITY, "/types")
|
|
76
84
|
});
|
|
77
85
|
};
|
|
86
|
+
var retrieveAllEntities = function (id) {
|
|
87
|
+
return httpClient({
|
|
88
|
+
method: 'get',
|
|
89
|
+
url: "".concat(ENDPOINT_PATHS.BUSINESS, "/").concat(id)
|
|
90
|
+
});
|
|
91
|
+
};
|
|
92
|
+
var removeEntityActivities = function (_a) {
|
|
93
|
+
var id = _a.id, data = __rest(_a, ["id"]);
|
|
94
|
+
return httpClient({
|
|
95
|
+
method: 'put',
|
|
96
|
+
url: "".concat(ENDPOINT_PATHS.ENTITY, "/").concat(id, "/activities/remove"),
|
|
97
|
+
data: data
|
|
98
|
+
});
|
|
99
|
+
};
|
|
78
100
|
var entityService = {
|
|
79
101
|
createEntityInfo: createEntityInfo,
|
|
80
102
|
updateEntityInfo: updateEntityInfo,
|
|
@@ -86,6 +108,9 @@ var entityService = {
|
|
|
86
108
|
updateEntity: updateEntity,
|
|
87
109
|
updateEntityActivity: updateEntityActivity,
|
|
88
110
|
retrieveEntityType: retrieveEntityType,
|
|
89
|
-
updateEntityCapital: updateEntityCapital
|
|
111
|
+
updateEntityCapital: updateEntityCapital,
|
|
112
|
+
updateEntityAOAFile: updateEntityAOAFile,
|
|
113
|
+
retrieveAllEntities: retrieveAllEntities,
|
|
114
|
+
removeEntityActivities: removeEntityActivities
|
|
90
115
|
};
|
|
91
116
|
export { entityService };
|
package/build/api/index.d.ts
CHANGED
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
import axiosInstance, { setAxiosGlobalHeaders, removeAxiosGlobalHeaders, getAxiosHeaders } from './axios';
|
|
2
2
|
import { ValidateOperatorBody } from './operator';
|
|
3
3
|
import { CreateAuthBody, VerifyAuthBody, CreatePasswordBody, VerifyOperationAuthBody, ResetPasswordVerifyAuthBody, VerifyAuthExpressOTPBody } from './auth';
|
|
4
|
-
import { UpdateLeadBody, LeadVerifyBody, CreateLeadBody, LeadOTPVerifyBody, LeadIdentityUpdateBody } from './lead';
|
|
4
|
+
import { UpdateLeadBody, LeadVerifyBody, CreateLeadBody, LeadOTPVerifyBody, LeadIdentityUpdateBody, ExpressLeadVerifyBody } from './lead';
|
|
5
5
|
import { CheckEmailBody, CheckBrandBody } from './availabilityServices';
|
|
6
|
-
import { EntityInfoBody, EntityBankUpdateBody, BankDocumentInfo, UpdateEntityBody, UpdateEntityActivityBody, UpdateEntityCapitalBody } from './entity';
|
|
6
|
+
import { EntityInfoBody, EntityBankUpdateBody, BankDocumentInfo, UpdateEntityBody, UpdateEntityActivityBody, UpdateEntityCapitalBody, UpdateEntityAOAFileBody, RemoveEntityActivity } from './entity';
|
|
7
7
|
import { CreateAccountBody, ExpressCreateAccountBody } from './account';
|
|
8
8
|
import { DataElementBody } from './data';
|
|
9
|
-
import { BrandListBody, UpdateBrandBody, UpdateIndividualBody, GetIndividualListBody } from './individual';
|
|
9
|
+
import { BrandListBody, UpdateBrandBody, UpdateIndividualBody, GetIndividualListBody, UpdateIndividualWithTypeBody, UpdateMultipleIndividualBody } from './individual';
|
|
10
10
|
import { UpdateBoardBody, RequestEmailBody } from './board';
|
|
11
11
|
import { GetUserListBody } from './user';
|
|
12
|
+
import { RemoveBrandActivity } from './brand';
|
|
12
13
|
import { UploadFileBody } from './file';
|
|
13
14
|
import { DocumentUpdateBody, DocumentInfo, DocumentBody } from './document';
|
|
15
|
+
import { InitBody } from './init';
|
|
14
16
|
declare const API: {
|
|
15
17
|
locationService: {
|
|
16
18
|
getIP: () => Promise<any>;
|
|
@@ -47,6 +49,7 @@ declare const API: {
|
|
|
47
49
|
retrieveEntityList: (leadId: string) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
48
50
|
retrieveLeadIdentity: (leadId: string) => Promise<any>;
|
|
49
51
|
updateLeadExpress: ({ id, ...data }: UpdateLeadBody) => Promise<any>;
|
|
52
|
+
verifyExpressLeadToken: (data: ExpressLeadVerifyBody) => Promise<any>;
|
|
50
53
|
};
|
|
51
54
|
entityService: {
|
|
52
55
|
createEntityInfo: ({ id, ...data }: EntityInfoBody, config?: import("axios").AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
@@ -60,6 +63,9 @@ declare const API: {
|
|
|
60
63
|
updateEntityActivity: ({ id, ...data }: UpdateEntityActivityBody) => Promise<any>;
|
|
61
64
|
retrieveEntityType: () => Promise<any>;
|
|
62
65
|
updateEntityCapital: ({ id, ...data }: UpdateEntityCapitalBody) => Promise<any>;
|
|
66
|
+
updateEntityAOAFile: ({ id, ...data }: UpdateEntityAOAFileBody) => Promise<any>;
|
|
67
|
+
retrieveAllEntities: (id: string) => Promise<any>;
|
|
68
|
+
removeEntityActivities: ({ id, ...data }: RemoveEntityActivity) => Promise<any>;
|
|
63
69
|
};
|
|
64
70
|
availabilityServices: {
|
|
65
71
|
checkEmail: (data: CheckEmailBody, config?: import("axios").AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
@@ -103,12 +109,26 @@ declare const API: {
|
|
|
103
109
|
page: number;
|
|
104
110
|
}) => Promise<any>;
|
|
105
111
|
getActivities: (config?: import("axios").AxiosRequestConfig<any> | undefined) => Promise<any>;
|
|
112
|
+
getActivitiesIsIc: () => Promise<any>;
|
|
113
|
+
getSegmentLocation: (data: {
|
|
114
|
+
page: number;
|
|
115
|
+
limit: number;
|
|
116
|
+
}) => Promise<any>;
|
|
117
|
+
getSegmentProfit: (data: {
|
|
118
|
+
page: number;
|
|
119
|
+
limit: number;
|
|
120
|
+
}) => Promise<any>;
|
|
121
|
+
getSegmentTech: (data: {
|
|
122
|
+
page: number;
|
|
123
|
+
limit: number;
|
|
124
|
+
}) => Promise<any>;
|
|
106
125
|
};
|
|
107
126
|
individualService: {
|
|
108
127
|
retrieveIndividualInfo: (id: string) => Promise<any>;
|
|
109
128
|
retrieveIndividual: (id: string, type: string) => Promise<any>;
|
|
110
|
-
updateIndividual: ({ id, type, ...data }:
|
|
129
|
+
updateIndividual: ({ id, type, ...data }: UpdateIndividualWithTypeBody) => Promise<any>;
|
|
111
130
|
getIndividualList: (data: GetIndividualListBody) => Promise<any>;
|
|
131
|
+
updateMultipleIndividual: (data: UpdateMultipleIndividualBody) => Promise<any>;
|
|
112
132
|
};
|
|
113
133
|
boardService: {
|
|
114
134
|
retrieveBoard: (id: string) => Promise<any>;
|
|
@@ -129,6 +149,7 @@ declare const API: {
|
|
|
129
149
|
updateBrandInfo: ({ id, ...data }: UpdateBrandBody) => Promise<any>;
|
|
130
150
|
updateBrandSales: ({ id, ...data }: import("./individual").UpdateSalesChannels) => void;
|
|
131
151
|
getBrandListByIndividualId: (id: string) => Promise<any>;
|
|
152
|
+
removeBrandActivity: ({ id, ...data }: RemoveBrandActivity) => Promise<any>;
|
|
132
153
|
};
|
|
133
154
|
fileService: {
|
|
134
155
|
uploadFile: (data: UploadFileBody, config?: import("axios").AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
@@ -140,7 +161,10 @@ declare const API: {
|
|
|
140
161
|
addFilesToExistingDocument: ({ id, ...data }: DocumentBody) => Promise<any>;
|
|
141
162
|
removeFilesFromDocument: ({ id, ...data }: DocumentBody) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
142
163
|
};
|
|
164
|
+
initService: {
|
|
165
|
+
getInitialData: (body: InitBody) => Promise<any>;
|
|
166
|
+
};
|
|
143
167
|
};
|
|
144
|
-
export type { ValidateOperatorBody, CreateAuthBody, ExpressCreateAccountBody, VerifyAuthBody, CreateLeadBody, UpdateLeadBody, LeadVerifyBody, LeadOTPVerifyBody, CheckEmailBody, CheckBrandBody, LeadIdentityUpdateBody, EntityInfoBody, CreateAccountBody, EntityBankUpdateBody, CreatePasswordBody, BrandListBody, VerifyOperationAuthBody, ResetPasswordVerifyAuthBody, UpdateBoardBody, UpdateBrandBody, DataElementBody, UploadFileBody, UpdateEntityBody, DocumentUpdateBody, DocumentInfo, VerifyAuthExpressOTPBody, UpdateIndividualBody, UpdateEntityActivityBody, UpdateEntityCapitalBody, BankDocumentInfo, GetUserListBody, GetIndividualListBody, RequestEmailBody, DocumentBody };
|
|
168
|
+
export type { ValidateOperatorBody, CreateAuthBody, ExpressCreateAccountBody, VerifyAuthBody, CreateLeadBody, UpdateLeadBody, LeadVerifyBody, LeadOTPVerifyBody, CheckEmailBody, CheckBrandBody, LeadIdentityUpdateBody, EntityInfoBody, CreateAccountBody, EntityBankUpdateBody, CreatePasswordBody, BrandListBody, VerifyOperationAuthBody, ResetPasswordVerifyAuthBody, UpdateBoardBody, UpdateBrandBody, DataElementBody, UploadFileBody, UpdateEntityBody, DocumentUpdateBody, DocumentInfo, VerifyAuthExpressOTPBody, UpdateIndividualBody, UpdateEntityActivityBody, UpdateEntityCapitalBody, BankDocumentInfo, GetUserListBody, GetIndividualListBody, RequestEmailBody, DocumentBody, UpdateEntityAOAFileBody, InitBody, RemoveBrandActivity, RemoveEntityActivity, UpdateIndividualWithTypeBody, UpdateMultipleIndividualBody, ExpressLeadVerifyBody };
|
|
145
169
|
export { setAxiosGlobalHeaders, removeAxiosGlobalHeaders, axiosInstance, getAxiosHeaders };
|
|
146
170
|
export default API;
|
package/build/api/index.js
CHANGED
|
@@ -15,6 +15,7 @@ import { userService } from './user';
|
|
|
15
15
|
import { brandService } from './brand';
|
|
16
16
|
import { fileService } from './file';
|
|
17
17
|
import { documentService } from './document';
|
|
18
|
+
import { initService } from './init';
|
|
18
19
|
var API = {
|
|
19
20
|
locationService: locationService,
|
|
20
21
|
operatorService: operatorService,
|
|
@@ -31,7 +32,8 @@ var API = {
|
|
|
31
32
|
userService: userService,
|
|
32
33
|
brandService: brandService,
|
|
33
34
|
fileService: fileService,
|
|
34
|
-
documentService: documentService
|
|
35
|
+
documentService: documentService,
|
|
36
|
+
initService: initService
|
|
35
37
|
};
|
|
36
38
|
export { setAxiosGlobalHeaders, removeAxiosGlobalHeaders, axiosInstance, getAxiosHeaders };
|
|
37
39
|
export default API;
|
|
@@ -5,8 +5,8 @@ export declare type BrandListBody = {
|
|
|
5
5
|
export declare type UpdateBrandBody = {
|
|
6
6
|
id: string;
|
|
7
7
|
name?: {
|
|
8
|
-
en
|
|
9
|
-
ar
|
|
8
|
+
en?: string;
|
|
9
|
+
ar?: string;
|
|
10
10
|
};
|
|
11
11
|
sectors?: Array<{
|
|
12
12
|
id: string;
|
|
@@ -53,6 +53,15 @@ export declare type UpdateBrandBody = {
|
|
|
53
53
|
};
|
|
54
54
|
};
|
|
55
55
|
segment?: {
|
|
56
|
+
location_type?: {
|
|
57
|
+
id: string;
|
|
58
|
+
};
|
|
59
|
+
profit_type?: {
|
|
60
|
+
id: string;
|
|
61
|
+
};
|
|
62
|
+
tech_type?: {
|
|
63
|
+
id: string;
|
|
64
|
+
};
|
|
56
65
|
type?: {
|
|
57
66
|
id: string;
|
|
58
67
|
};
|
|
@@ -63,6 +72,7 @@ export declare type UpdateBrandBody = {
|
|
|
63
72
|
term?: Array<string>;
|
|
64
73
|
step_name?: string;
|
|
65
74
|
encryption_contract?: Array<string>;
|
|
75
|
+
term_by?: string;
|
|
66
76
|
};
|
|
67
77
|
export declare type UpdateSalesChannels = {
|
|
68
78
|
id?: string;
|
|
@@ -72,8 +82,6 @@ export declare type UpdateSalesChannels = {
|
|
|
72
82
|
}>;
|
|
73
83
|
};
|
|
74
84
|
export declare type UpdateIndividualBody = {
|
|
75
|
-
id: string;
|
|
76
|
-
type: string;
|
|
77
85
|
names?: {
|
|
78
86
|
en?: {
|
|
79
87
|
title?: string;
|
|
@@ -126,11 +134,20 @@ export declare type UpdateIndividualBody = {
|
|
|
126
134
|
is_influencer?: boolean | null;
|
|
127
135
|
documents?: Array<DocumentInfo | undefined>;
|
|
128
136
|
occupation?: {
|
|
129
|
-
|
|
137
|
+
chapter: {
|
|
138
|
+
id: string;
|
|
139
|
+
};
|
|
130
140
|
};
|
|
131
141
|
step_name?: string;
|
|
132
142
|
encryption_contract?: Array<string>;
|
|
133
143
|
};
|
|
144
|
+
export interface UpdateIndividualWithTypeBody extends UpdateIndividualBody {
|
|
145
|
+
id: string;
|
|
146
|
+
type: string;
|
|
147
|
+
}
|
|
148
|
+
export interface UpdateMultipleIndividualBody extends UpdateIndividualBody {
|
|
149
|
+
ids: Array<string>;
|
|
150
|
+
}
|
|
134
151
|
export declare type GetIndividualListBody = {
|
|
135
152
|
page: number;
|
|
136
153
|
limit: number;
|
|
@@ -139,7 +156,8 @@ export declare type GetIndividualListBody = {
|
|
|
139
156
|
declare const individualService: {
|
|
140
157
|
retrieveIndividualInfo: (id: string) => Promise<any>;
|
|
141
158
|
retrieveIndividual: (id: string, type: string) => Promise<any>;
|
|
142
|
-
updateIndividual: ({ id, type, ...data }:
|
|
159
|
+
updateIndividual: ({ id, type, ...data }: UpdateIndividualWithTypeBody) => Promise<any>;
|
|
143
160
|
getIndividualList: (data: GetIndividualListBody) => Promise<any>;
|
|
161
|
+
updateMultipleIndividual: (data: UpdateMultipleIndividualBody) => Promise<any>;
|
|
144
162
|
};
|
|
145
163
|
export { individualService };
|
package/build/api/individual.js
CHANGED
|
@@ -31,6 +31,13 @@ var updateIndividual = function (_a) {
|
|
|
31
31
|
data: data
|
|
32
32
|
});
|
|
33
33
|
};
|
|
34
|
+
var updateMultipleIndividual = function (data) {
|
|
35
|
+
return httpClient({
|
|
36
|
+
method: 'put',
|
|
37
|
+
url: "".concat(ENDPOINT_PATHS.INDIVIDUAL, "/multi"),
|
|
38
|
+
data: data
|
|
39
|
+
});
|
|
40
|
+
};
|
|
34
41
|
var getIndividualList = function (data) {
|
|
35
42
|
return httpClient({
|
|
36
43
|
method: 'post',
|
|
@@ -42,6 +49,7 @@ var individualService = {
|
|
|
42
49
|
retrieveIndividualInfo: retrieveIndividualInfo,
|
|
43
50
|
retrieveIndividual: retrieveIndividual,
|
|
44
51
|
updateIndividual: updateIndividual,
|
|
45
|
-
getIndividualList: getIndividualList
|
|
52
|
+
getIndividualList: getIndividualList,
|
|
53
|
+
updateMultipleIndividual: updateMultipleIndividual
|
|
46
54
|
};
|
|
47
55
|
export { individualService };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export declare type InitBody = {
|
|
2
|
+
type: string;
|
|
3
|
+
app_client_version: string;
|
|
4
|
+
requirer_browser: string;
|
|
5
|
+
os: string;
|
|
6
|
+
locale: string;
|
|
7
|
+
connect_pkey?: string;
|
|
8
|
+
data_required?: {
|
|
9
|
+
country_list?: boolean;
|
|
10
|
+
merchant?: boolean;
|
|
11
|
+
};
|
|
12
|
+
config_token?: string;
|
|
13
|
+
};
|
|
14
|
+
declare const initService: {
|
|
15
|
+
getInitialData: (body: InitBody) => Promise<any>;
|
|
16
|
+
};
|
|
17
|
+
export { initService };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { httpClient } from './axios';
|
|
2
|
+
import { ENDPOINT_PATHS } from '../constants';
|
|
3
|
+
var getInitialData = function (body) {
|
|
4
|
+
return httpClient({
|
|
5
|
+
method: 'post',
|
|
6
|
+
url: ENDPOINT_PATHS.INIT,
|
|
7
|
+
data: body
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
var initService = {
|
|
11
|
+
getInitialData: getInitialData
|
|
12
|
+
};
|
|
13
|
+
export { initService };
|
package/build/api/lead.d.ts
CHANGED
|
@@ -39,10 +39,13 @@ export declare type UpdateLeadBody = {
|
|
|
39
39
|
step_name?: string;
|
|
40
40
|
id: string;
|
|
41
41
|
encryption_contract?: Array<string>;
|
|
42
|
+
entity?: {
|
|
43
|
+
id: string;
|
|
44
|
+
};
|
|
42
45
|
name?: Name;
|
|
43
46
|
contact?: Contact;
|
|
44
47
|
send_invite?: boolean;
|
|
45
|
-
|
|
48
|
+
business_name?: BusinessName;
|
|
46
49
|
business_type?: string;
|
|
47
50
|
country_code?: string;
|
|
48
51
|
brand?: BrandInfo;
|
|
@@ -68,6 +71,9 @@ export declare type LeadVerifyBody = {
|
|
|
68
71
|
verify_token: string;
|
|
69
72
|
service_name: string;
|
|
70
73
|
};
|
|
74
|
+
export declare type ExpressLeadVerifyBody = {
|
|
75
|
+
token: string;
|
|
76
|
+
};
|
|
71
77
|
export interface LeadOTPVerifyBody extends LeadVerifyBody {
|
|
72
78
|
data: string;
|
|
73
79
|
step_name: string;
|
|
@@ -98,5 +104,6 @@ declare const leadService: {
|
|
|
98
104
|
retrieveEntityList: (leadId: string) => Promise<import("axios").AxiosResponse<any, any>>;
|
|
99
105
|
retrieveLeadIdentity: (leadId: string) => Promise<any>;
|
|
100
106
|
updateLeadExpress: ({ id, ...data }: UpdateLeadBody) => Promise<any>;
|
|
107
|
+
verifyExpressLeadToken: (data: ExpressLeadVerifyBody) => Promise<any>;
|
|
101
108
|
};
|
|
102
109
|
export { leadService };
|
package/build/api/lead.js
CHANGED
|
@@ -42,6 +42,13 @@ var getLeadById = function (leadId) {
|
|
|
42
42
|
var verifyLeadToken = function (data, config) {
|
|
43
43
|
return instance.put("".concat(ENDPOINT_PATHS.TOKEN_VERIFY), data, config);
|
|
44
44
|
};
|
|
45
|
+
var verifyExpressLeadToken = function (data) {
|
|
46
|
+
return httpClient({
|
|
47
|
+
method: 'put',
|
|
48
|
+
url: "".concat(ENDPOINT_PATHS.CONNECT, "/verify"),
|
|
49
|
+
data: data
|
|
50
|
+
});
|
|
51
|
+
};
|
|
45
52
|
var verifyLeadOTP = function (data, config) {
|
|
46
53
|
return instance.put("".concat(ENDPOINT_PATHS.TOKEN_VERIFY), data, config);
|
|
47
54
|
};
|
|
@@ -63,6 +70,7 @@ var leadService = {
|
|
|
63
70
|
verifyLeadOTP: verifyLeadOTP,
|
|
64
71
|
retrieveEntityList: retrieveEntityList,
|
|
65
72
|
retrieveLeadIdentity: retrieveLeadIdentity,
|
|
66
|
-
updateLeadExpress: updateLeadExpress
|
|
73
|
+
updateLeadExpress: updateLeadExpress,
|
|
74
|
+
verifyExpressLeadToken: verifyExpressLeadToken
|
|
67
75
|
};
|
|
68
76
|
export { leadService };
|
package/build/app/settings.d.ts
CHANGED
|
@@ -1,18 +1,14 @@
|
|
|
1
1
|
import { RootState } from './store';
|
|
2
|
-
import { ActionState, LanguageMode, SharedState, ThemeMode, ScreenStepNavigation, DeviceInfo, LibConfig, CountryCode } from '../@types';
|
|
2
|
+
import { ActionState, LanguageMode, SharedState, ThemeMode, ScreenStepNavigation, DeviceInfo, LibConfig, CountryCode, MerchantInfo, ConfigExpressTokenParams } from '../@types';
|
|
3
3
|
interface SettingParams {
|
|
4
4
|
disableCountries?: boolean;
|
|
5
5
|
disableLocale?: boolean;
|
|
6
6
|
mdn: string;
|
|
7
7
|
maturity?: 'full' | 'express';
|
|
8
|
+
configToken?: string;
|
|
9
|
+
onVerifyConfigTokenSuccess?: (data: ConfigExpressTokenParams) => Promise<void>;
|
|
8
10
|
}
|
|
9
|
-
export declare const fetchAppSettingsSync: import("@reduxjs/toolkit").AsyncThunk<{
|
|
10
|
-
countries: CountryCode[];
|
|
11
|
-
businessCountry: CountryCode;
|
|
12
|
-
locale: any;
|
|
13
|
-
deviceInfo: DeviceInfo;
|
|
14
|
-
isValidOperator: boolean;
|
|
15
|
-
}, SettingParams, {}>;
|
|
11
|
+
export declare const fetchAppSettingsSync: import("@reduxjs/toolkit").AsyncThunk<any, SettingParams, {}>;
|
|
16
12
|
export interface SettingsData {
|
|
17
13
|
skin: ThemeMode;
|
|
18
14
|
language: LanguageMode;
|
|
@@ -25,14 +21,21 @@ export interface SettingsData {
|
|
|
25
21
|
businessCountry: CountryCode;
|
|
26
22
|
countries: Array<CountryCode>;
|
|
27
23
|
isValidOperator: boolean;
|
|
24
|
+
boardMaturity: boolean;
|
|
25
|
+
merchant?: MerchantInfo;
|
|
26
|
+
isMaturityExpress: boolean;
|
|
27
|
+
isHijri: boolean;
|
|
28
28
|
}
|
|
29
29
|
export interface SettingsState extends SharedState<SettingsData> {
|
|
30
30
|
}
|
|
31
31
|
export declare const settingsSlice: import("@reduxjs/toolkit").Slice<SettingsState, {
|
|
32
|
+
handelBoardMaturity: (state: import("immer/dist/internal").WritableDraft<SettingsState>, action: ActionState<boolean>) => void;
|
|
32
33
|
handleIsTapOrigin: (state: import("immer/dist/internal").WritableDraft<SettingsState>, action: ActionState<boolean>) => void;
|
|
33
34
|
handleOpen: (state: import("immer/dist/internal").WritableDraft<SettingsState>, action: ActionState<boolean>) => void;
|
|
34
35
|
handleSkin: (state: SettingsState, action: ActionState<ThemeMode>) => void;
|
|
35
36
|
handleLanguage: (state: SettingsState, action: ActionState<LanguageMode>) => void;
|
|
37
|
+
handlePublicKey: (state: SettingsState, action: ActionState<string>) => void;
|
|
38
|
+
handleSwitchCalender: (state: SettingsState, action: ActionState<boolean>) => void;
|
|
36
39
|
handleNextScreenStep: (state: SettingsState, action: ActionState<string | undefined>) => void;
|
|
37
40
|
handleCurrentActiveScreen: (state: SettingsState, action: ActionState<string>) => void;
|
|
38
41
|
handlePrevScreenStep: (state: SettingsState, action: ActionState<string | undefined>) => void;
|
|
@@ -40,7 +43,7 @@ export declare const settingsSlice: import("@reduxjs/toolkit").Slice<SettingsSta
|
|
|
40
43
|
handleSetAppConfig: (state: SettingsState, action: ActionState<LibConfig>) => void;
|
|
41
44
|
handleSetCountryByIso2: (state: SettingsState, action: ActionState<string>) => void;
|
|
42
45
|
}, "settings">;
|
|
43
|
-
export declare const handleSkin: import("@reduxjs/toolkit").ActionCreatorWithPayload<ThemeMode, string>, handleLanguage: import("@reduxjs/toolkit").ActionCreatorWithPayload<LanguageMode, string>, handleActiveFlowScreens: import("@reduxjs/toolkit").ActionCreatorWithPayload<ScreenStepNavigation[], string>, handleNextScreenStep: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<string | undefined, string>, handlePrevScreenStep: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<string | undefined, string>, handleCurrentActiveScreen: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, string>, handleSetAppConfig: import("@reduxjs/toolkit").ActionCreatorWithPayload<LibConfig, string>, handleOpen: import("@reduxjs/toolkit").ActionCreatorWithPayload<boolean, string>, handleSetCountryByIso2: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, string>, handleIsTapOrigin: import("@reduxjs/toolkit").ActionCreatorWithPayload<boolean, string>;
|
|
46
|
+
export declare const handleSkin: import("@reduxjs/toolkit").ActionCreatorWithPayload<ThemeMode, string>, handleLanguage: import("@reduxjs/toolkit").ActionCreatorWithPayload<LanguageMode, string>, handleActiveFlowScreens: import("@reduxjs/toolkit").ActionCreatorWithPayload<ScreenStepNavigation[], string>, handleNextScreenStep: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<string | undefined, string>, handlePrevScreenStep: import("@reduxjs/toolkit").ActionCreatorWithOptionalPayload<string | undefined, string>, handleCurrentActiveScreen: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, string>, handleSetAppConfig: import("@reduxjs/toolkit").ActionCreatorWithPayload<LibConfig, string>, handleOpen: import("@reduxjs/toolkit").ActionCreatorWithPayload<boolean, string>, handleSetCountryByIso2: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, string>, handleIsTapOrigin: import("@reduxjs/toolkit").ActionCreatorWithPayload<boolean, string>, handelBoardMaturity: import("@reduxjs/toolkit").ActionCreatorWithPayload<boolean, string>, handlePublicKey: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, string>, handleSwitchCalender: import("@reduxjs/toolkit").ActionCreatorWithPayload<boolean, string>;
|
|
44
47
|
declare const _default: import("redux").Reducer<SettingsState, import("redux").AnyAction>;
|
|
45
48
|
export default _default;
|
|
46
49
|
export declare const settingsSelector: (state: RootState) => SettingsState;
|
package/build/app/settings.js
CHANGED
|
@@ -47,41 +47,65 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
47
47
|
};
|
|
48
48
|
var _a;
|
|
49
49
|
import { createAsyncThunk, createSlice } from '@reduxjs/toolkit';
|
|
50
|
-
import { getStoredData, storeData, isArray, findItem, getBrowserInfo, getFingerPrint, sortCountries, findCountryByIso2, getRequestHeaders, encryptString, dangerousMessage } from '../utils';
|
|
50
|
+
import { getStoredData, storeData, isArray, findItem, getBrowserInfo, getFingerPrint, sortCountries, findCountryByIso2, getRequestHeaders, encryptString, dangerousMessage, isKW, isSA, getParameterByName, setBaseUrl } from '../utils';
|
|
51
51
|
import { DefaultDeviceInfo, LOCAL_STORAGE_KEYS } from '../constants';
|
|
52
52
|
import i18n from '../i18n';
|
|
53
53
|
import { updateLocale } from '../utils/locale';
|
|
54
|
-
import API, { setAxiosGlobalHeaders } from '../api';
|
|
54
|
+
import API, { getAxiosHeaders, setAxiosGlobalHeaders } from '../api';
|
|
55
55
|
export var fetchAppSettingsSync = createAsyncThunk('fetchAppSettingsSync', function (params, thunkApi) { return __awaiter(void 0, void 0, void 0, function () {
|
|
56
|
-
var settings, _a, appConfig, language, _b, client, device, os, disableCountries,
|
|
57
|
-
return __generator(this, function (
|
|
58
|
-
switch (
|
|
56
|
+
var settings, _a, appConfig, language, _b, client, device, os, disableLocale, maturity, disableCountries, configToken, onVerifyConfigTokenSuccess, _c, visitorId, locale, configInfo, matureData, lang, initPayload, _d, country_list, ip_info, merchant, operator, config, list, _e, ip, latitude, longitude, domain, language_1, country, scope, public_key, maturity_1, board_maturity, deviceInfo, isValidOperator, countries, countryCode, isKWOrSA, businessCountry;
|
|
57
|
+
return __generator(this, function (_f) {
|
|
58
|
+
switch (_f.label) {
|
|
59
59
|
case 0:
|
|
60
60
|
settings = thunkApi.getState().settings;
|
|
61
61
|
_a = settings.data, appConfig = _a.appConfig, language = _a.language;
|
|
62
62
|
_b = getBrowserInfo(), client = _b.client, device = _b.device, os = _b.os;
|
|
63
|
-
disableCountries = params.disableCountries,
|
|
64
|
-
return [4, Promise.all([
|
|
65
|
-
getFingerPrint(),
|
|
66
|
-
API.locationService.getIP(),
|
|
67
|
-
API.firebaseService.getLocale(disableLocale),
|
|
68
|
-
API.countryService.getCountries(disableCountries)
|
|
69
|
-
])];
|
|
63
|
+
disableLocale = params.disableLocale, maturity = params.maturity, disableCountries = params.disableCountries, configToken = params.configToken, onVerifyConfigTokenSuccess = params.onVerifyConfigTokenSuccess;
|
|
64
|
+
return [4, Promise.all([getFingerPrint(), API.firebaseService.getLocale(disableLocale)])];
|
|
70
65
|
case 1:
|
|
71
|
-
_c =
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
66
|
+
_c = _f.sent(), visitorId = _c[0].visitorId, locale = _c[1];
|
|
67
|
+
configInfo = appConfig;
|
|
68
|
+
matureData = maturity;
|
|
69
|
+
lang = getParameterByName('lang');
|
|
70
|
+
setAxiosGlobalHeaders({
|
|
71
|
+
bi: visitorId || '',
|
|
72
|
+
mdn: encryptString(params.mdn || window.location.origin),
|
|
73
|
+
authorization: encryptString(configInfo.publicKey)
|
|
74
|
+
});
|
|
75
|
+
initPayload = __assign(__assign({ type: 'website', app_client_version: 'js-auth-connect', requirer_browser: "".concat(client === null || client === void 0 ? void 0 : client.name, " , ").concat(client === null || client === void 0 ? void 0 : client.version), os: "".concat(os === null || os === void 0 ? void 0 : os.name, " , ").concat(os === null || os === void 0 ? void 0 : os.version), locale: language }, (configToken && { config_token: configToken })), { data_required: {
|
|
76
|
+
country_list: !disableCountries
|
|
77
|
+
} });
|
|
78
|
+
return [4, API.initService.getInitialData(initPayload)];
|
|
79
|
+
case 2:
|
|
80
|
+
_d = _f.sent(), country_list = _d.country_list, ip_info = _d.ip_info, merchant = _d.merchant, operator = _d.operator, config = _d.config;
|
|
81
|
+
list = (country_list || { list: [] }).list;
|
|
82
|
+
_e = ip_info || {}, ip = _e.ip, latitude = _e.latitude, longitude = _e.longitude;
|
|
83
|
+
if (config) {
|
|
84
|
+
domain = config.domain, language_1 = config.language, country = config.country, scope = config.scope, public_key = config.public_key, maturity_1 = config.maturity, board_maturity = config.board_maturity;
|
|
85
|
+
configInfo = __assign(__assign(__assign(__assign(__assign(__assign({}, configInfo), (domain && { merchantDomain: domain })), (language_1 && { language: language_1 })), (country && { businessCountryCode: country })), (scope && { scope: scope })), (public_key && { publicKey: public_key }));
|
|
86
|
+
if (typeof maturity_1 === 'boolean')
|
|
87
|
+
matureData = maturity_1 ? 'full' : 'express';
|
|
88
|
+
thunkApi.dispatch(handleSetAppConfig(configInfo));
|
|
89
|
+
thunkApi.dispatch(handleLanguage(language_1 || lang));
|
|
90
|
+
if (public_key) {
|
|
91
|
+
if (configToken) {
|
|
92
|
+
setBaseUrl(public_key);
|
|
93
|
+
}
|
|
94
|
+
thunkApi.dispatch(handlePublicKey(public_key));
|
|
95
|
+
}
|
|
96
|
+
if (typeof board_maturity === 'boolean')
|
|
97
|
+
thunkApi.dispatch(handelBoardMaturity(board_maturity));
|
|
98
|
+
onVerifyConfigTokenSuccess === null || onVerifyConfigTokenSuccess === void 0 ? void 0 : onVerifyConfigTokenSuccess(config);
|
|
99
|
+
if (matureData === 'express' && maturity_1 !== matureData && typeof configInfo.onMaturityChanged === 'function') {
|
|
100
|
+
configInfo.onMaturityChanged(matureData);
|
|
101
|
+
}
|
|
102
|
+
}
|
|
79
103
|
deviceInfo = {
|
|
80
104
|
app: {
|
|
81
|
-
language:
|
|
82
|
-
name:
|
|
83
|
-
identifier:
|
|
84
|
-
version:
|
|
105
|
+
language: configInfo.language || 'en',
|
|
106
|
+
name: configInfo.appInfo.name,
|
|
107
|
+
identifier: configInfo.appInfo.identifier || 'auth-connect',
|
|
108
|
+
version: configInfo.appInfo.version || '2.0.0'
|
|
85
109
|
},
|
|
86
110
|
browser: {
|
|
87
111
|
browser_id: visitorId,
|
|
@@ -107,16 +131,17 @@ export var fetchAppSettingsSync = createAsyncThunk('fetchAppSettingsSync', funct
|
|
|
107
131
|
},
|
|
108
132
|
source: 'browser'
|
|
109
133
|
};
|
|
110
|
-
setAxiosGlobalHeaders(__assign(__assign(__assign({}, getRequestHeaders(deviceInfo)), { authorization: encryptString(
|
|
111
|
-
|
|
112
|
-
case 2:
|
|
113
|
-
operatorStatus = _e.sent();
|
|
114
|
-
isValidOperator = operatorStatus === 'valid';
|
|
134
|
+
setAxiosGlobalHeaders(__assign(__assign(__assign({}, getRequestHeaders(deviceInfo)), { authorization: encryptString(configInfo.publicKey), mdn: encryptString(params.mdn || window.location.origin), cu: window.location.href }), (matureData && { maturity: matureData })));
|
|
135
|
+
isValidOperator = operator === 'valid';
|
|
115
136
|
countries = sortCountries(list);
|
|
116
|
-
|
|
137
|
+
countryCode = configInfo.businessCountryCode;
|
|
138
|
+
isKWOrSA = isKW(countryCode) || isSA(countryCode);
|
|
139
|
+
if (!isKWOrSA)
|
|
140
|
+
countryCode = 'KW';
|
|
141
|
+
businessCountry = findCountryByIso2(countries, countryCode);
|
|
117
142
|
if (!businessCountry)
|
|
118
143
|
throw new Error('Business country not found, you have to pass a valid business country code in the lib config');
|
|
119
|
-
return [2, { countries: countries, businessCountry: businessCountry, locale: locale, deviceInfo: deviceInfo, isValidOperator: isValidOperator }];
|
|
144
|
+
return [2, __assign(__assign({ countries: countries, businessCountry: businessCountry, locale: locale, deviceInfo: deviceInfo, isValidOperator: isValidOperator, isMaturityExpress: matureData === 'express' }, (config && { boardMaturity: config.board_maturity })), (merchant && { merchant: merchant }))];
|
|
120
145
|
}
|
|
121
146
|
});
|
|
122
147
|
}); });
|
|
@@ -124,8 +149,10 @@ var initialState = {
|
|
|
124
149
|
error: null,
|
|
125
150
|
loading: true,
|
|
126
151
|
data: {
|
|
152
|
+
boardMaturity: true,
|
|
127
153
|
open: true,
|
|
128
154
|
isTapOrigin: true,
|
|
155
|
+
isMaturityExpress: false,
|
|
129
156
|
skin: getStoredData(LOCAL_STORAGE_KEYS.themeMode) || 'light',
|
|
130
157
|
language: getStoredData(LOCAL_STORAGE_KEYS.languageMode) || 'en',
|
|
131
158
|
featureScreensNavigation: [],
|
|
@@ -134,13 +161,17 @@ var initialState = {
|
|
|
134
161
|
appConfig: {},
|
|
135
162
|
businessCountry: {},
|
|
136
163
|
countries: [],
|
|
137
|
-
isValidOperator: false
|
|
164
|
+
isValidOperator: false,
|
|
165
|
+
isHijri: false
|
|
138
166
|
}
|
|
139
167
|
};
|
|
140
168
|
export var settingsSlice = createSlice({
|
|
141
169
|
name: 'settings',
|
|
142
170
|
initialState: initialState,
|
|
143
171
|
reducers: {
|
|
172
|
+
handelBoardMaturity: function (state, action) {
|
|
173
|
+
state.data.boardMaturity = action.payload;
|
|
174
|
+
},
|
|
144
175
|
handleIsTapOrigin: function (state, action) {
|
|
145
176
|
state.data.isTapOrigin = action.payload;
|
|
146
177
|
},
|
|
@@ -161,6 +192,15 @@ export var settingsSlice = createSlice({
|
|
|
161
192
|
i18n.changeLanguage(action.payload);
|
|
162
193
|
storeData(LOCAL_STORAGE_KEYS.languageMode, action.payload);
|
|
163
194
|
},
|
|
195
|
+
handlePublicKey: function (state, action) {
|
|
196
|
+
if (!action.payload)
|
|
197
|
+
return;
|
|
198
|
+
state.data.appConfig.publicKey = action.payload;
|
|
199
|
+
setAxiosGlobalHeaders(__assign(__assign({}, getAxiosHeaders()), { authorization: encryptString(action.payload) }));
|
|
200
|
+
},
|
|
201
|
+
handleSwitchCalender: function (state, action) {
|
|
202
|
+
state.data.isHijri = action.payload;
|
|
203
|
+
},
|
|
164
204
|
handleNextScreenStep: function (state, action) {
|
|
165
205
|
var next = state.data.activeScreen.next;
|
|
166
206
|
var appConfig = state.data.appConfig;
|
|
@@ -242,11 +282,14 @@ export var settingsSlice = createSlice({
|
|
|
242
282
|
state.error = null;
|
|
243
283
|
});
|
|
244
284
|
builder.addCase(fetchAppSettingsSync.fulfilled, function (state, action) {
|
|
245
|
-
var _a = action.payload, businessCountry = _a.businessCountry, countries = _a.countries, locale = _a.locale, deviceInfo = _a.deviceInfo, isValidOperator = _a.isValidOperator;
|
|
285
|
+
var _a = action.payload, businessCountry = _a.businessCountry, countries = _a.countries, locale = _a.locale, deviceInfo = _a.deviceInfo, isValidOperator = _a.isValidOperator, merchant = _a.merchant, isMaturityExpress = _a.isMaturityExpress;
|
|
246
286
|
state.data.countries = countries;
|
|
247
287
|
state.data.businessCountry = businessCountry;
|
|
248
288
|
state.data.deviceInfo = deviceInfo;
|
|
249
289
|
state.data.isValidOperator = isValidOperator;
|
|
290
|
+
if (merchant)
|
|
291
|
+
state.data.merchant = merchant;
|
|
292
|
+
state.data.isMaturityExpress = isMaturityExpress;
|
|
250
293
|
if (locale)
|
|
251
294
|
updateLocale(locale, businessCountry.iso2);
|
|
252
295
|
state.loading = false;
|
|
@@ -259,6 +302,6 @@ export var settingsSlice = createSlice({
|
|
|
259
302
|
});
|
|
260
303
|
}
|
|
261
304
|
});
|
|
262
|
-
export var handleSkin = (_a = settingsSlice.actions, _a.handleSkin), handleLanguage = _a.handleLanguage, handleActiveFlowScreens = _a.handleActiveFlowScreens, handleNextScreenStep = _a.handleNextScreenStep, handlePrevScreenStep = _a.handlePrevScreenStep, handleCurrentActiveScreen = _a.handleCurrentActiveScreen, handleSetAppConfig = _a.handleSetAppConfig, handleOpen = _a.handleOpen, handleSetCountryByIso2 = _a.handleSetCountryByIso2, handleIsTapOrigin = _a.handleIsTapOrigin;
|
|
305
|
+
export var handleSkin = (_a = settingsSlice.actions, _a.handleSkin), handleLanguage = _a.handleLanguage, handleActiveFlowScreens = _a.handleActiveFlowScreens, handleNextScreenStep = _a.handleNextScreenStep, handlePrevScreenStep = _a.handlePrevScreenStep, handleCurrentActiveScreen = _a.handleCurrentActiveScreen, handleSetAppConfig = _a.handleSetAppConfig, handleOpen = _a.handleOpen, handleSetCountryByIso2 = _a.handleSetCountryByIso2, handleIsTapOrigin = _a.handleIsTapOrigin, handelBoardMaturity = _a.handelBoardMaturity, handlePublicKey = _a.handlePublicKey, handleSwitchCalender = _a.handleSwitchCalender;
|
|
263
306
|
export default settingsSlice.reducer;
|
|
264
307
|
export var settingsSelector = function (state) { return state.settings; };
|