react-native-unit-components 1.14.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/android/src/main/java/com/unitreactnativecomponents/UnitReactNativeComponentsPackage.kt +16 -15
- package/android/src/main/java/com/unitreactnativecomponents/extensions/ContextExtensions.kt +1 -3
- package/android/src/main/java/com/unitreactnativecomponents/{UnitAddToWalletButtonViewManager.kt → nativeComponents/UnitAddToWalletButtonViewManager.kt} +14 -8
- package/android/src/main/java/com/unitreactnativecomponents/{UnitReactNativeComponentsEvent.kt → nativeComponents/UnitReactNativeComponentsEvent.kt} +1 -1
- package/android/src/main/java/com/unitreactnativecomponents/{secureView/UNSecureViewManager.kt → nativeComponents/secureView/UNSecureNativeViewManager.kt} +10 -4
- package/android/src/main/java/com/unitreactnativecomponents/{visapresentation → nativeComponents/visapresentation}/UNGooglePayView.kt +5 -1
- package/android/src/main/java/com/unitreactnativecomponents/{appInfo → nativeModules/appInfo}/UNAppInfoModule.kt +2 -2
- package/android/src/main/java/com/unitreactnativecomponents/{security/UNSecurityHelper.kt → nativeModules/security/UNSecurityHelperModule.kt} +6 -4
- package/android/src/main/java/com/unitreactnativecomponents/{sharepdf/UNSharePDF.kt → nativeModules/sharefile/UNShareFile.kt} +3 -3
- package/android/src/main/java/com/unitreactnativecomponents/{unSnapshotProtectionManager/UNSnapshotProtectionManager.kt → nativeModules/unComponentsSnapshotProtectionModule/UNComponentsSnapshotProtectionModule.kt} +6 -6
- package/android/src/main/java/com/unitreactnativecomponents/{unStoreManager/UNStoreManager.kt → nativeModules/unStoreModule/UNStoreModule.kt} +6 -4
- package/ios/NativeComponents/UnitAddToWalletButton/UnitAddToWalletButtonNativeView.h +28 -0
- package/ios/NativeComponents/UnitAddToWalletButton/UnitAddToWalletButtonNativeView.mm +81 -0
- package/ios/{UnitReactNativeComponentsViewManager.m → NativeComponents/UnitReactNativeComponentsViewManager.m} +1 -1
- package/ios/{UnitReactNativeComponentsViewManager.swift → NativeComponents/UnitReactNativeComponentsViewManager.swift} +2 -2
- package/ios/{UNAppInfo → NativeModules/UNAppInfo}/UNAppInfoExportModule.m +1 -1
- package/ios/NativeModules/UNAppInfo/UNAppInfoModule.swift +49 -0
- package/ios/NativeModules/UNPermissionsModule/UNPermissionsExportModule.mm +7 -0
- package/ios/NativeModules/UNPermissionsModule/UNPermissionsModule.swift +25 -0
- package/ios/{UNSecurity → NativeModules/UNSecurity}/UNSecurityHelperExportModule.m +1 -1
- package/ios/{UNSecurity/UNSecurityHelper.swift → NativeModules/UNSecurity/UNSecurityHelperModule.swift} +24 -20
- package/ios/{UNSnapshotProtectionManager → NativeModules/UNSnapshotProtectionManager}/UNSnapshotProtectionManager.swift +3 -3
- package/ios/{UNSnapshotProtectionManager → NativeModules/UNSnapshotProtectionManager}/UNSnapshotProtectionManagerExportModule.m +1 -1
- package/ios/{UNStoreManager/UNStoreManagerExportModule.m → NativeModules/UNStoreModule/UNStoreExportModule.m} +1 -1
- package/ios/NativeModules/UNStoreModule/UNStoreModule.swift +31 -0
- package/ios/UNSharedServicesProvider/UNGlobalSnapshotProtectionService.swift +7 -4
- package/ios/UnitReactNativeComponents.xcodeproj/project.pbxproj +23 -45
- package/lib/commonjs/assets/images/index.js +1 -1
- package/lib/commonjs/assets/images/index.js.map +1 -1
- package/lib/commonjs/components/UNACHCreditComponent/UNACHCreditComponent.js +9 -7
- package/lib/commonjs/components/UNACHCreditComponent/UNACHCreditComponent.js.map +1 -1
- package/lib/commonjs/components/UNACHCreditComponent/UNACHCreditComponent.utils.js +0 -1
- package/lib/commonjs/components/UNACHCreditComponent/UNACHCreditComponent.utils.js.map +1 -1
- package/lib/commonjs/components/UNACHCreditComponent/index.js +1 -1
- package/lib/commonjs/components/UNACHCreditComponent/index.js.map +1 -1
- package/lib/commonjs/components/UNACHDebitComponent/UNACHDebitComponent.js +9 -7
- package/lib/commonjs/components/UNACHDebitComponent/UNACHDebitComponent.js.map +1 -1
- package/lib/commonjs/components/UNACHDebitComponent/UNACHDebitComponent.utils.js +0 -1
- package/lib/commonjs/components/UNACHDebitComponent/UNACHDebitComponent.utils.js.map +1 -1
- package/lib/commonjs/components/UNACHDebitComponent/index.js +1 -1
- package/lib/commonjs/components/UNACHDebitComponent/index.js.map +1 -1
- package/lib/commonjs/components/UNAccountComponent/UNAccountComponent.js +9 -8
- package/lib/commonjs/components/UNAccountComponent/UNAccountComponent.js.map +1 -1
- package/lib/commonjs/components/UNAccountComponent/UNAccountComponent.utils.js +6 -1
- package/lib/commonjs/components/UNAccountComponent/UNAccountComponent.utils.js.map +1 -1
- package/lib/commonjs/components/UNAccountComponent/index.js +1 -1
- package/lib/commonjs/components/UNAccountComponent/index.js.map +1 -1
- package/lib/commonjs/components/UNActivityComponent/UNActivityComponent.js +8 -7
- package/lib/commonjs/components/UNActivityComponent/UNActivityComponent.js.map +1 -1
- package/lib/commonjs/components/UNActivityComponent/UNActivityComponent.utils.js +0 -1
- package/lib/commonjs/components/UNActivityComponent/UNActivityComponent.utils.js.map +1 -1
- package/lib/commonjs/components/UNActivityComponent/index.js +1 -1
- package/lib/commonjs/components/UNActivityComponent/index.js.map +1 -1
- package/lib/commonjs/components/UNBookPaymentComponent/UNBookPaymentComponent.js +6 -5
- package/lib/commonjs/components/UNBookPaymentComponent/UNBookPaymentComponent.js.map +1 -1
- package/lib/commonjs/components/UNBookPaymentComponent/UNBookPaymentComponent.utils.js +0 -1
- package/lib/commonjs/components/UNBookPaymentComponent/UNBookPaymentComponent.utils.js.map +1 -1
- package/lib/commonjs/components/UNBookPaymentComponent/index.js +1 -1
- package/lib/commonjs/components/UNBookPaymentComponent/index.js.map +1 -1
- package/lib/commonjs/components/UNBottomSheetComponent/UNBottomSheetComponent.constants.js.map +1 -1
- package/lib/commonjs/components/UNBottomSheetComponent/UNBottomSheetComponent.js +11 -11
- package/lib/commonjs/components/UNBottomSheetComponent/UNBottomSheetComponent.js.map +1 -1
- package/lib/commonjs/components/UNBottomSheetComponent/UNBottomSheetComponent.styles.js.map +1 -1
- package/lib/commonjs/components/UNBottomSheetComponent/UNBottomSheetComponent.utils.js +80 -27
- package/lib/commonjs/components/UNBottomSheetComponent/UNBottomSheetComponent.utils.js.map +1 -1
- package/lib/commonjs/components/UNBottomSheetComponent/components/UNBottomSheetNativeComponent/UNBottomSheetNativeComponent.js +41 -21
- package/lib/commonjs/components/UNBottomSheetComponent/components/UNBottomSheetNativeComponent/UNBottomSheetNativeComponent.js.map +1 -1
- package/lib/commonjs/components/UNBottomSheetComponent/components/UNBottomSheetNativeComponent/index.js.map +1 -1
- package/lib/commonjs/components/UNBottomSheetComponent/components/UNBottomSheetSlotComponent/UNBottomSheetSlotComponent.js +18 -9
- package/lib/commonjs/components/UNBottomSheetComponent/components/UNBottomSheetSlotComponent/UNBottomSheetSlotComponent.js.map +1 -1
- package/lib/commonjs/components/UNBottomSheetComponent/components/UNBottomSheetSlotComponent/index.js.map +1 -1
- package/lib/commonjs/components/UNBottomSheetComponent/components/index.js.map +1 -1
- package/lib/commonjs/components/UNBottomSheetComponent/index.js +1 -1
- package/lib/commonjs/components/UNBottomSheetComponent/index.js.map +1 -1
- package/lib/commonjs/components/UNCardActionComponent/UNCardActionComponent.js +72 -0
- package/lib/commonjs/components/UNCardActionComponent/UNCardActionComponent.js.map +1 -0
- package/lib/commonjs/components/UNCardActionComponent/UNCardActionComponent.utils.js +21 -0
- package/lib/commonjs/components/UNCardActionComponent/UNCardActionComponent.utils.js.map +1 -0
- package/lib/commonjs/components/{UNFundAccountPaymentComponent → UNCardActionComponent}/index.js +6 -6
- package/lib/commonjs/components/UNCardActionComponent/index.js.map +1 -0
- package/lib/commonjs/components/UNCardComponent/UNCardComponent.js +32 -12
- package/lib/commonjs/components/UNCardComponent/UNCardComponent.js.map +1 -1
- package/lib/commonjs/components/UNCardComponent/UNCardComponent.utils.js +4 -2
- package/lib/commonjs/components/UNCardComponent/UNCardComponent.utils.js.map +1 -1
- package/lib/commonjs/components/UNCardComponent/index.js +1 -1
- package/lib/commonjs/components/UNCardComponent/index.js.map +1 -1
- package/lib/commonjs/components/UNCheckDepositComponent/UNCheckDepositComponent.js +8 -8
- package/lib/commonjs/components/UNCheckDepositComponent/UNCheckDepositComponent.js.map +1 -1
- package/lib/commonjs/components/UNCheckDepositComponent/UNCheckDepositComponent.utils.js +0 -1
- package/lib/commonjs/components/UNCheckDepositComponent/UNCheckDepositComponent.utils.js.map +1 -1
- package/lib/commonjs/components/UNCheckDepositComponent/index.js +1 -1
- package/lib/commonjs/components/UNCheckDepositComponent/index.js.map +1 -1
- package/lib/commonjs/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.js +80 -0
- package/lib/commonjs/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.js.map +1 -0
- package/lib/commonjs/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.utils.js +31 -0
- package/lib/commonjs/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.utils.js.map +1 -0
- package/lib/commonjs/components/UNMultiFactorAuthenticationComponent/index.js +21 -0
- package/lib/commonjs/components/UNMultiFactorAuthenticationComponent/index.js.map +1 -0
- package/lib/commonjs/components/UNMultipleCardsComponent/UNMultipleCardsComponent.js +19 -4
- package/lib/commonjs/components/UNMultipleCardsComponent/UNMultipleCardsComponent.js.map +1 -1
- package/lib/commonjs/components/UNMultipleCardsComponent/UNMultipleCardsComponent.utils.js +0 -1
- package/lib/commonjs/components/UNMultipleCardsComponent/UNMultipleCardsComponent.utils.js.map +1 -1
- package/lib/commonjs/components/UNMultipleCardsComponent/index.js +1 -1
- package/lib/commonjs/components/UNMultipleCardsComponent/index.js.map +1 -1
- package/lib/commonjs/components/UNNextRepaymentComponent/UNNextRepaymentComponent.js +5 -4
- package/lib/commonjs/components/UNNextRepaymentComponent/UNNextRepaymentComponent.js.map +1 -1
- package/lib/commonjs/components/UNNextRepaymentComponent/UNNextRepaymentComponent.utils.js +1 -2
- package/lib/commonjs/components/UNNextRepaymentComponent/UNNextRepaymentComponent.utils.js.map +1 -1
- package/lib/commonjs/components/UNNextRepaymentComponent/index.js +1 -1
- package/lib/commonjs/components/UNNextRepaymentComponent/index.js.map +1 -1
- package/lib/commonjs/components/UNPayeeManagementComponent/UNPayeeManagementComponent.js +24 -6
- package/lib/commonjs/components/UNPayeeManagementComponent/UNPayeeManagementComponent.js.map +1 -1
- package/lib/commonjs/components/UNPayeeManagementComponent/UNPayeeManagementComponent.utils.js +0 -1
- package/lib/commonjs/components/UNPayeeManagementComponent/UNPayeeManagementComponent.utils.js.map +1 -1
- package/lib/commonjs/components/UNPayeeManagementComponent/index.js +1 -1
- package/lib/commonjs/components/UNPayeeManagementComponent/index.js.map +1 -1
- package/lib/commonjs/components/UNProgramDetailsComponent/UNProgramDetailsComponent.js +5 -4
- package/lib/commonjs/components/UNProgramDetailsComponent/UNProgramDetailsComponent.js.map +1 -1
- package/lib/commonjs/components/UNProgramDetailsComponent/UNProgramDetailsComponent.utils.js +0 -1
- package/lib/commonjs/components/UNProgramDetailsComponent/UNProgramDetailsComponent.utils.js.map +1 -1
- package/lib/commonjs/components/UNProgramDetailsComponent/index.js +1 -1
- package/lib/commonjs/components/UNProgramDetailsComponent/index.js.map +1 -1
- package/lib/commonjs/components/UNWhiteLabelAppComponent/UNWhiteLabelAppComponent.js +11 -9
- package/lib/commonjs/components/UNWhiteLabelAppComponent/UNWhiteLabelAppComponent.js.map +1 -1
- package/lib/commonjs/components/UNWhiteLabelAppComponent/UNWhiteLabelAppComponent.utils.js.map +1 -1
- package/lib/commonjs/components/UNWhiteLabelAppComponent/index.js +1 -1
- package/lib/commonjs/components/UNWhiteLabelAppComponent/index.js.map +1 -1
- package/lib/commonjs/components/UNWirePaymentComponent/UNWirePaymentComponent.js +5 -4
- package/lib/commonjs/components/UNWirePaymentComponent/UNWirePaymentComponent.js.map +1 -1
- package/lib/commonjs/components/UNWirePaymentComponent/UNWirePaymentComponent.utils.js +0 -1
- package/lib/commonjs/components/UNWirePaymentComponent/UNWirePaymentComponent.utils.js.map +1 -1
- package/lib/commonjs/components/UNWirePaymentComponent/index.js +1 -1
- package/lib/commonjs/components/UNWirePaymentComponent/index.js.map +1 -1
- package/lib/commonjs/components/index.js +22 -11
- package/lib/commonjs/components/index.js.map +1 -1
- package/lib/commonjs/custom.d.js.map +1 -1
- package/lib/commonjs/flows/{UNFlows.js → UNComponentsFlows.js} +6 -6
- package/lib/commonjs/flows/UNComponentsFlows.js.map +1 -0
- package/lib/commonjs/flows/card/UNCardFlows.js.map +1 -1
- package/lib/commonjs/helpers/BottomSheet/BottomSheet.js +10 -27
- package/lib/commonjs/helpers/BottomSheet/BottomSheet.js.map +1 -1
- package/lib/commonjs/helpers/BottomSheet/BottomSheet.styles.js.map +1 -1
- package/lib/commonjs/helpers/UNKeyboardAvoidingView/UNKeyboardAvoidingView.js +26 -0
- package/lib/commonjs/helpers/UNKeyboardAvoidingView/UNKeyboardAvoidingView.js.map +1 -0
- package/lib/commonjs/helpers/pushProvisioningService/helpers.js.map +1 -1
- package/lib/commonjs/helpers/pushProvisioningService/hooks/useCardWallet.js +7 -7
- package/lib/commonjs/helpers/pushProvisioningService/hooks/useCardWallet.js.map +1 -1
- package/lib/commonjs/helpers/pushProvisioningService/hooks/useLaunchInitialize.js +2 -2
- package/lib/commonjs/helpers/pushProvisioningService/hooks/useLaunchInitialize.js.map +1 -1
- package/lib/commonjs/helpers/pushProvisioningService/startProvisioning.js +2 -2
- package/lib/commonjs/helpers/pushProvisioningService/startProvisioning.js.map +1 -1
- package/lib/commonjs/helpers/pushProvisioningService/types.js +7 -0
- package/lib/commonjs/helpers/pushProvisioningService/types.js.map +1 -1
- package/lib/commonjs/helpers/store/helpers.js +2 -2
- package/lib/commonjs/helpers/store/helpers.js.map +1 -1
- package/lib/commonjs/hooks/useAppStateListener.js +38 -6
- package/lib/commonjs/hooks/useAppStateListener.js.map +1 -1
- package/lib/commonjs/hooks/useIsJailbrokeDevice.js +1 -1
- package/lib/commonjs/hooks/useIsJailbrokeDevice.js.map +1 -1
- package/lib/commonjs/hooks/useListenerToEvent.js.map +1 -1
- package/lib/commonjs/hooks/useSnapshotProtection.js +4 -4
- package/lib/commonjs/hooks/useSnapshotProtection.js.map +1 -1
- package/lib/commonjs/index.js +4 -4
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/messages/nativeMessages/bottomSheetMessage.js.map +1 -1
- package/lib/commonjs/messages/nativeMessages/cardMessage.js.map +1 -1
- package/lib/commonjs/messages/nativeMessages/index.js.map +1 -1
- package/lib/commonjs/messages/nativeMessages/sdkMessage.js.map +1 -1
- package/lib/commonjs/messages/webMessages/accountMessage.js.map +1 -1
- package/lib/commonjs/messages/webMessages/achCreditMessage.js.map +1 -1
- package/lib/commonjs/messages/webMessages/activityMessage.js.map +1 -1
- package/lib/commonjs/messages/webMessages/bookPaymentMessage.js.map +1 -1
- package/lib/commonjs/messages/webMessages/cardMessage.js.map +1 -1
- package/lib/commonjs/messages/webMessages/checkMessage.js +1 -0
- package/lib/commonjs/messages/webMessages/checkMessage.js.map +1 -1
- package/lib/commonjs/messages/webMessages/index.js.map +1 -1
- package/lib/commonjs/messages/webMessages/multiFactorAuthenticationMessage.js +11 -0
- package/lib/commonjs/messages/webMessages/multiFactorAuthenticationMessage.js.map +1 -0
- package/lib/commonjs/messages/webMessages/multipleCardsMessage.js.map +1 -1
- package/lib/commonjs/messages/webMessages/onLoadMessage.js +1 -1
- package/lib/commonjs/messages/webMessages/onLoadMessage.js.map +1 -1
- package/lib/commonjs/messages/webMessages/pageMessage.js.map +1 -1
- package/lib/commonjs/messages/webMessages/payeeManagementMessage.js.map +1 -1
- package/lib/commonjs/messages/webMessages/paymentsMessage.js.map +1 -1
- package/lib/commonjs/messages/webMessages/plaidMessages.js.map +1 -1
- package/lib/commonjs/messages/webMessages/unitComponentsMessages.js +26 -0
- package/lib/commonjs/messages/webMessages/unitComponentsMessages.js.map +1 -0
- package/lib/commonjs/{types/shared/fundAccountPayment.types.js → messages/webMessages/wirePaymentMessage.js} +1 -1
- package/lib/commonjs/messages/webMessages/wirePaymentMessage.js.map +1 -0
- package/lib/commonjs/nativeComponents/UNAddToWallet/UNAddToWalletComponent/UNAddToWalletBottomSheetItem.styles.js.map +1 -1
- package/lib/commonjs/nativeComponents/UNAddToWallet/UNAddToWalletComponent/UNAddToWalletComponent.js +9 -8
- package/lib/commonjs/nativeComponents/UNAddToWallet/UNAddToWalletComponent/UNAddToWalletComponent.js.map +1 -1
- package/lib/commonjs/nativeComponents/UNAddToWallet/UNAddToWalletComponent/UNAddToWalletComponent.utils.js.map +1 -1
- package/lib/commonjs/nativeComponents/UNAddToWallet/UNAddToWalletComponent/index.js +1 -1
- package/lib/commonjs/nativeComponents/UNAddToWallet/UNAddToWalletComponent/index.js.map +1 -1
- package/lib/commonjs/nativeComponents/UNAddToWallet/UnitAddToWalletButtonNativeComponent.js +10 -0
- package/lib/commonjs/nativeComponents/UNAddToWallet/UnitAddToWalletButtonNativeComponent.js.map +1 -0
- package/lib/commonjs/nativeComponents/UNBaseView/UNBaseView.js +18 -4
- package/lib/commonjs/nativeComponents/UNBaseView/UNBaseView.js.map +1 -1
- package/lib/commonjs/nativeComponents/UNBaseView/index.js +1 -1
- package/lib/commonjs/nativeComponents/UNBaseView/index.js.map +1 -1
- package/lib/commonjs/nativeComponents/UNSecureView/UNSecureViewNativeComponent.js +10 -0
- package/lib/commonjs/nativeComponents/UNSecureView/UNSecureViewNativeComponent.js.map +1 -0
- package/lib/commonjs/nativeModulesHelpers/RNShareFile/RNShareFile.js +20 -0
- package/lib/commonjs/nativeModulesHelpers/RNShareFile/RNShareFile.js.map +1 -0
- package/lib/commonjs/nativeModulesHelpers/UNPermissionsHelper/UNPermissionsHelper.js +20 -0
- package/lib/commonjs/nativeModulesHelpers/UNPermissionsHelper/UNPermissionsHelper.js.map +1 -0
- package/lib/commonjs/nativeModulesHelpers/UNSanpshotProtectionHelper/UNSnapshotProtectionHelper.js +3 -5
- package/lib/commonjs/nativeModulesHelpers/UNSanpshotProtectionHelper/UNSnapshotProtectionHelper.js.map +1 -1
- package/lib/commonjs/nativeModulesHelpers/UNSecurityHelper.js +1 -3
- package/lib/commonjs/nativeModulesHelpers/UNSecurityHelper.js.map +1 -1
- package/lib/commonjs/nativeModulesHelpers/UNStoreModuleHelper/UNStoreModuleHelper.js +9 -0
- package/lib/commonjs/nativeModulesHelpers/UNStoreModuleHelper/UNStoreModuleHelper.js.map +1 -0
- package/lib/commonjs/networking/common/UNNetworkConstants.js +3 -3
- package/lib/commonjs/networking/common/UNNetworkConstants.js.map +1 -1
- package/lib/commonjs/networking/requests/UNWalletPayloadRequest.js +4 -4
- package/lib/commonjs/networking/requests/UNWalletPayloadRequest.js.map +1 -1
- package/lib/commonjs/scripts/html/bodyHtml.js.map +1 -1
- package/lib/commonjs/scripts/html/bodyScript.js +59 -32
- package/lib/commonjs/scripts/html/bodyScript.js.map +1 -1
- package/lib/commonjs/scripts/html/fontFaces.js.map +1 -1
- package/lib/commonjs/slices/BottomSheetSlice.js.map +1 -1
- package/lib/commonjs/slices/ConfigurationSlice.js +7 -2
- package/lib/commonjs/slices/ConfigurationSlice.js.map +1 -1
- package/lib/commonjs/slices/SharedEventsSlice.js.map +1 -1
- package/lib/commonjs/slices/pushProvisioningSlice.js.map +1 -1
- package/lib/commonjs/store/index.js.map +1 -1
- package/lib/commonjs/store/store.js +1 -1
- package/lib/commonjs/store/store.js.map +1 -1
- package/lib/commonjs/styles/fonts.js +2 -2
- package/lib/commonjs/styles/fonts.js.map +1 -1
- package/lib/commonjs/styles/variables.js.map +1 -1
- package/lib/commonjs/types/internal/bottomSheet.types.js +15 -0
- package/lib/commonjs/types/internal/bottomSheet.types.js.map +1 -1
- package/lib/commonjs/types/internal/errorHelpers.js +8 -8
- package/lib/commonjs/types/internal/errorHelpers.js.map +1 -1
- package/lib/commonjs/types/internal/unitStore.types.js.map +1 -1
- package/lib/commonjs/types/internal/webComponent.types.js +7 -1
- package/lib/commonjs/types/internal/webComponent.types.js.map +1 -1
- package/lib/commonjs/types/shared/account.types.js +7 -1
- package/lib/commonjs/types/shared/account.types.js.map +1 -1
- package/lib/commonjs/types/shared/{achCredit.types.js → ach.types.js} +1 -1
- package/lib/commonjs/types/shared/{wirePayment.types.js.map → ach.types.js.map} +1 -1
- package/lib/commonjs/types/shared/activity.types.js +8 -1
- package/lib/commonjs/types/shared/activity.types.js.map +1 -1
- package/lib/commonjs/types/shared/authorization.types.js +4 -0
- package/lib/commonjs/types/shared/authorization.types.js.map +1 -1
- package/lib/commonjs/types/shared/card.types.js +21 -1
- package/lib/commonjs/types/shared/card.types.js.map +1 -1
- package/lib/commonjs/types/shared/checkDeposit.types.js +6 -1
- package/lib/commonjs/types/shared/checkDeposit.types.js.map +1 -1
- package/lib/commonjs/types/shared/counterparty.types.js +24 -0
- package/lib/commonjs/types/shared/counterparty.types.js.map +1 -0
- package/lib/commonjs/types/shared/customer.types.js +34 -0
- package/lib/commonjs/types/shared/customer.types.js.map +1 -0
- package/lib/commonjs/types/shared/env.types.js +6 -6
- package/lib/commonjs/types/shared/env.types.js.map +1 -1
- package/lib/commonjs/types/shared/error.types.js +22 -21
- package/lib/commonjs/types/shared/error.types.js.map +1 -1
- package/lib/commonjs/types/shared/fonts.types.js.map +1 -1
- package/lib/commonjs/types/shared/index.js +71 -27
- package/lib/commonjs/types/shared/index.js.map +1 -1
- package/lib/commonjs/types/shared/multiFactorAuthentication.types.js +2 -0
- package/lib/commonjs/types/shared/multiFactorAuthentication.types.js.map +1 -0
- package/lib/commonjs/types/shared/multipleCards.types.js.map +1 -1
- package/lib/commonjs/types/shared/onLoadResponse.types.js.map +1 -1
- package/lib/commonjs/types/shared/payeeManagement.types.js.map +1 -1
- package/lib/commonjs/types/shared/payment/achPayment.types.js +6 -0
- package/lib/commonjs/types/shared/payment/achPayment.types.js.map +1 -0
- package/lib/commonjs/types/shared/payment/billPayment.types.js +6 -0
- package/lib/commonjs/types/shared/payment/billPayment.types.js.map +1 -0
- package/lib/commonjs/types/shared/payment/bookPayment.types.js.map +1 -0
- package/lib/commonjs/types/shared/payment/index.js +61 -0
- package/lib/commonjs/types/shared/payment/index.js.map +1 -0
- package/lib/commonjs/types/shared/{payments.types.js → payment/payments.types.js} +8 -19
- package/lib/commonjs/types/shared/payment/payments.types.js.map +1 -0
- package/lib/commonjs/types/shared/payment/wirePayment.types.js.map +1 -0
- package/lib/commonjs/types/shared/repayment.types.js.map +1 -1
- package/lib/commonjs/types/shared/securitySettings.js +5 -5
- package/lib/commonjs/types/shared/securitySettings.js.map +1 -1
- package/lib/commonjs/types/shared/transaction/UNAccountLowBalanceClosureTransaction.js +6 -0
- package/lib/commonjs/types/shared/transaction/UNAccountLowBalanceClosureTransaction.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/UNAdjustmentTransaction.js +6 -0
- package/lib/commonjs/types/shared/transaction/UNAdjustmentTransaction.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/UNAtmTransaction.js +6 -0
- package/lib/commonjs/types/shared/transaction/UNAtmTransaction.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/UNBankRepaymentTransaction.js +6 -0
- package/lib/commonjs/types/shared/transaction/UNBankRepaymentTransaction.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/UNBillPayTransaction.js +6 -0
- package/lib/commonjs/types/shared/transaction/UNBillPayTransaction.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/UNBookTransaction.js +6 -0
- package/lib/commonjs/types/shared/transaction/UNBookTransaction.js.map +1 -0
- package/lib/commonjs/{messages/webMessages/fundAccountPaymentMessage.js → types/shared/transaction/UNCardReversalTransaction.js} +1 -1
- package/lib/commonjs/types/shared/transaction/UNCardReversalTransaction.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/UNCardTransaction.js +6 -0
- package/lib/commonjs/types/shared/transaction/UNCardTransaction.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/UNCashDepositTransaction.js +6 -0
- package/lib/commonjs/types/shared/transaction/UNCashDepositTransaction.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/UNChargebackTransaction.js +6 -0
- package/lib/commonjs/types/shared/transaction/UNChargebackTransaction.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/UNCheckDepositTransaction.js +6 -0
- package/lib/commonjs/types/shared/transaction/UNCheckDepositTransaction.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/UNCustomerRepaymentReturnedTransaction.js +6 -0
- package/lib/commonjs/types/shared/transaction/UNCustomerRepaymentReturnedTransaction.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/UNCustomerRepaymentTransaction.js +6 -0
- package/lib/commonjs/types/shared/transaction/UNCustomerRepaymentTransaction.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/UNDishonoredAchTransaction.js +6 -0
- package/lib/commonjs/types/shared/transaction/UNDishonoredAchTransaction.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/UNDisputeSettlementTransaction.js +6 -0
- package/lib/commonjs/types/shared/transaction/UNDisputeSettlementTransaction.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/UNDisputeTransaction.js +6 -0
- package/lib/commonjs/types/shared/transaction/UNDisputeTransaction.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/UNFeeReversalTransaction.js +6 -0
- package/lib/commonjs/types/shared/transaction/UNFeeReversalTransaction.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/UNFeeTransaction.js +6 -0
- package/lib/commonjs/types/shared/transaction/UNFeeTransaction.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/UNInterchangeShareTransaction.js +6 -0
- package/lib/commonjs/types/shared/transaction/UNInterchangeShareTransaction.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/UNInterestShareTransaction.js +6 -0
- package/lib/commonjs/types/shared/transaction/UNInterestShareTransaction.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/UNInterestTransaction.js +6 -0
- package/lib/commonjs/types/shared/transaction/UNInterestTransaction.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/UNNegativeBalanceCoverageTransaction.js +6 -0
- package/lib/commonjs/types/shared/transaction/UNNegativeBalanceCoverageTransaction.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/UNOriginatedAchTransaction.js +6 -0
- package/lib/commonjs/types/shared/transaction/UNOriginatedAchTransaction.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/UNPaymentAdvanceTransaction.js +6 -0
- package/lib/commonjs/types/shared/transaction/UNPaymentAdvanceTransaction.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/UNPaymentCanceledTransaction.js +6 -0
- package/lib/commonjs/types/shared/transaction/UNPaymentCanceledTransaction.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/UNPurchaseTransaction.js +6 -0
- package/lib/commonjs/types/shared/transaction/UNPurchaseTransaction.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/UNReceivedAchTransaction.js +6 -0
- package/lib/commonjs/types/shared/transaction/UNReceivedAchTransaction.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/UNReleaseTransaction.js +6 -0
- package/lib/commonjs/types/shared/transaction/UNReleaseTransaction.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/UNRepaidPaymentAdvanceTransaction.js +6 -0
- package/lib/commonjs/types/shared/transaction/UNRepaidPaymentAdvanceTransaction.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/UNReturnedAchTransaction.js +6 -0
- package/lib/commonjs/types/shared/transaction/UNReturnedAchTransaction.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/UNReturnedCheckDepositTransaction.js +6 -0
- package/lib/commonjs/types/shared/transaction/UNReturnedCheckDepositTransaction.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/UNReturnedReceivedAchTransaction.js +6 -0
- package/lib/commonjs/types/shared/transaction/UNReturnedReceivedAchTransaction.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/UNRewardTransaction.js +6 -0
- package/lib/commonjs/types/shared/transaction/UNRewardTransaction.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/UNSettlementTransaction.js +6 -0
- package/lib/commonjs/types/shared/transaction/UNSettlementTransaction.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/UNSponsoredInterestTransaction.js +6 -0
- package/lib/commonjs/types/shared/transaction/UNSponsoredInterestTransaction.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/UNWireTransaction.js +6 -0
- package/lib/commonjs/types/shared/transaction/UNWireTransaction.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/index.js +413 -0
- package/lib/commonjs/types/shared/transaction/index.js.map +1 -0
- package/lib/commonjs/types/shared/transaction/transactions.types.js +84 -0
- package/lib/commonjs/types/shared/transaction/transactions.types.js.map +1 -0
- package/lib/commonjs/types/shared/types.js +1 -1
- package/lib/commonjs/types/shared/types.js.map +1 -1
- package/lib/commonjs/types/shared/versioning.types.js.map +1 -1
- package/lib/commonjs/types/shared/wallet.types.js.map +1 -1
- package/lib/commonjs/{unitSdkManager/UnitSdk.api.js → unitComponentsSdkManager/UnitComponentsSdk.api.js} +6 -6
- package/lib/commonjs/unitComponentsSdkManager/UnitComponentsSdk.api.js.map +1 -0
- package/lib/commonjs/{unitSdkManager/UnitSdk.constants.js → unitComponentsSdkManager/UnitComponentsSdk.constants.js} +6 -6
- package/lib/commonjs/unitComponentsSdkManager/UnitComponentsSdk.constants.js.map +1 -0
- package/lib/commonjs/{unitSdkManager/UnitSdkManager.js → unitComponentsSdkManager/UnitComponentsSdkManager.js} +24 -24
- package/lib/commonjs/unitComponentsSdkManager/UnitComponentsSdkManager.js.map +1 -0
- package/lib/commonjs/{unitSdkManager/UnitSdkManager.utils.internal.js → unitComponentsSdkManager/UnitComponentsSdkManager.utils.internal.js} +4 -4
- package/lib/commonjs/unitComponentsSdkManager/UnitComponentsSdkManager.utils.internal.js.map +1 -0
- package/lib/commonjs/{unitSdkManager/unitHelpersManager/UnitHelpersManager.js → unitComponentsSdkManager/unitComponentsHelpersManager/UnitComponentsHelpersManager.js} +4 -4
- package/lib/commonjs/unitComponentsSdkManager/unitComponentsHelpersManager/UnitComponentsHelpersManager.js.map +1 -0
- package/lib/commonjs/unitComponentsSdkManager/unitComponentsUiManager/unitComponentsUiManager.js +18 -0
- package/lib/commonjs/unitComponentsSdkManager/unitComponentsUiManager/unitComponentsUiManager.js.map +1 -0
- package/lib/commonjs/utils/AppInfo.js +2 -42
- package/lib/commonjs/utils/AppInfo.js.map +1 -1
- package/lib/commonjs/utils/onLoadMessages.utils.js.map +1 -1
- package/lib/commonjs/utils/webVersioningStrategy.utils.js +5 -5
- package/lib/commonjs/utils/webVersioningStrategy.utils.js.map +1 -1
- package/lib/commonjs/utils/windowUnitStore.js.map +1 -1
- package/lib/commonjs/webComponent/WebComponent.js +41 -31
- package/lib/commonjs/webComponent/WebComponent.js.map +1 -1
- package/lib/commonjs/webComponent/WebComponent.utils.js +14 -14
- package/lib/commonjs/webComponent/WebComponent.utils.js.map +1 -1
- package/lib/commonjs/webComponent/html.js +4 -0
- package/lib/commonjs/webComponent/html.js.map +1 -1
- package/lib/module/assets/images/index.js.map +1 -1
- package/lib/module/components/UNACHCreditComponent/UNACHCreditComponent.js +6 -5
- package/lib/module/components/UNACHCreditComponent/UNACHCreditComponent.js.map +1 -1
- package/lib/module/components/UNACHCreditComponent/UNACHCreditComponent.utils.js +0 -1
- package/lib/module/components/UNACHCreditComponent/UNACHCreditComponent.utils.js.map +1 -1
- package/lib/module/components/UNACHCreditComponent/index.js.map +1 -1
- package/lib/module/components/UNACHDebitComponent/UNACHDebitComponent.js +6 -5
- package/lib/module/components/UNACHDebitComponent/UNACHDebitComponent.js.map +1 -1
- package/lib/module/components/UNACHDebitComponent/UNACHDebitComponent.utils.js +0 -1
- package/lib/module/components/UNACHDebitComponent/UNACHDebitComponent.utils.js.map +1 -1
- package/lib/module/components/UNACHDebitComponent/index.js.map +1 -1
- package/lib/module/components/UNAccountComponent/UNAccountComponent.js +7 -6
- package/lib/module/components/UNAccountComponent/UNAccountComponent.js.map +1 -1
- package/lib/module/components/UNAccountComponent/UNAccountComponent.utils.js +6 -1
- package/lib/module/components/UNAccountComponent/UNAccountComponent.utils.js.map +1 -1
- package/lib/module/components/UNAccountComponent/index.js.map +1 -1
- package/lib/module/components/UNActivityComponent/UNActivityComponent.js +6 -5
- package/lib/module/components/UNActivityComponent/UNActivityComponent.js.map +1 -1
- package/lib/module/components/UNActivityComponent/UNActivityComponent.utils.js +0 -1
- package/lib/module/components/UNActivityComponent/UNActivityComponent.utils.js.map +1 -1
- package/lib/module/components/UNActivityComponent/index.js.map +1 -1
- package/lib/module/components/UNBookPaymentComponent/UNBookPaymentComponent.js +5 -4
- package/lib/module/components/UNBookPaymentComponent/UNBookPaymentComponent.js.map +1 -1
- package/lib/module/components/UNBookPaymentComponent/UNBookPaymentComponent.utils.js +0 -1
- package/lib/module/components/UNBookPaymentComponent/UNBookPaymentComponent.utils.js.map +1 -1
- package/lib/module/components/UNBookPaymentComponent/index.js.map +1 -1
- package/lib/module/components/UNBottomSheetComponent/UNBottomSheetComponent.constants.js.map +1 -1
- package/lib/module/components/UNBottomSheetComponent/UNBottomSheetComponent.js +9 -9
- package/lib/module/components/UNBottomSheetComponent/UNBottomSheetComponent.js.map +1 -1
- package/lib/module/components/UNBottomSheetComponent/UNBottomSheetComponent.styles.js.map +1 -1
- package/lib/module/components/UNBottomSheetComponent/UNBottomSheetComponent.utils.js +80 -27
- package/lib/module/components/UNBottomSheetComponent/UNBottomSheetComponent.utils.js.map +1 -1
- package/lib/module/components/UNBottomSheetComponent/components/UNBottomSheetNativeComponent/UNBottomSheetNativeComponent.js +39 -19
- package/lib/module/components/UNBottomSheetComponent/components/UNBottomSheetNativeComponent/UNBottomSheetNativeComponent.js.map +1 -1
- package/lib/module/components/UNBottomSheetComponent/components/UNBottomSheetNativeComponent/index.js.map +1 -1
- package/lib/module/components/UNBottomSheetComponent/components/UNBottomSheetSlotComponent/UNBottomSheetSlotComponent.js +16 -8
- package/lib/module/components/UNBottomSheetComponent/components/UNBottomSheetSlotComponent/UNBottomSheetSlotComponent.js.map +1 -1
- package/lib/module/components/UNBottomSheetComponent/components/UNBottomSheetSlotComponent/index.js.map +1 -1
- package/lib/module/components/UNBottomSheetComponent/components/index.js.map +1 -1
- package/lib/module/components/UNBottomSheetComponent/index.js.map +1 -1
- package/lib/module/components/UNCardActionComponent/UNCardActionComponent.js +64 -0
- package/lib/module/components/UNCardActionComponent/UNCardActionComponent.js.map +1 -0
- package/lib/module/components/UNCardActionComponent/UNCardActionComponent.utils.js +13 -0
- package/lib/module/components/UNCardActionComponent/UNCardActionComponent.utils.js.map +1 -0
- package/lib/module/components/UNCardActionComponent/index.js +2 -0
- package/lib/module/components/UNCardActionComponent/index.js.map +1 -0
- package/lib/module/components/UNCardComponent/UNCardComponent.js +31 -11
- package/lib/module/components/UNCardComponent/UNCardComponent.js.map +1 -1
- package/lib/module/components/UNCardComponent/UNCardComponent.utils.js +4 -2
- package/lib/module/components/UNCardComponent/UNCardComponent.utils.js.map +1 -1
- package/lib/module/components/UNCardComponent/index.js.map +1 -1
- package/lib/module/components/UNCheckDepositComponent/UNCheckDepositComponent.js +7 -8
- package/lib/module/components/UNCheckDepositComponent/UNCheckDepositComponent.js.map +1 -1
- package/lib/module/components/UNCheckDepositComponent/UNCheckDepositComponent.utils.js +0 -1
- package/lib/module/components/UNCheckDepositComponent/UNCheckDepositComponent.utils.js.map +1 -1
- package/lib/module/components/UNCheckDepositComponent/index.js.map +1 -1
- package/lib/module/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.js +72 -0
- package/lib/module/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.js.map +1 -0
- package/lib/module/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.utils.js +23 -0
- package/lib/module/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.utils.js.map +1 -0
- package/lib/module/components/UNMultiFactorAuthenticationComponent/index.js +2 -0
- package/lib/module/components/UNMultiFactorAuthenticationComponent/index.js.map +1 -0
- package/lib/module/components/UNMultipleCardsComponent/UNMultipleCardsComponent.js +18 -3
- package/lib/module/components/UNMultipleCardsComponent/UNMultipleCardsComponent.js.map +1 -1
- package/lib/module/components/UNMultipleCardsComponent/UNMultipleCardsComponent.utils.js +0 -1
- package/lib/module/components/UNMultipleCardsComponent/UNMultipleCardsComponent.utils.js.map +1 -1
- package/lib/module/components/UNMultipleCardsComponent/index.js.map +1 -1
- package/lib/module/components/UNNextRepaymentComponent/UNNextRepaymentComponent.js +4 -3
- package/lib/module/components/UNNextRepaymentComponent/UNNextRepaymentComponent.js.map +1 -1
- package/lib/module/components/UNNextRepaymentComponent/UNNextRepaymentComponent.utils.js +1 -2
- package/lib/module/components/UNNextRepaymentComponent/UNNextRepaymentComponent.utils.js.map +1 -1
- package/lib/module/components/UNNextRepaymentComponent/index.js.map +1 -1
- package/lib/module/components/UNPayeeManagementComponent/UNPayeeManagementComponent.js +23 -5
- package/lib/module/components/UNPayeeManagementComponent/UNPayeeManagementComponent.js.map +1 -1
- package/lib/module/components/UNPayeeManagementComponent/UNPayeeManagementComponent.utils.js +0 -1
- package/lib/module/components/UNPayeeManagementComponent/UNPayeeManagementComponent.utils.js.map +1 -1
- package/lib/module/components/UNPayeeManagementComponent/index.js.map +1 -1
- package/lib/module/components/UNProgramDetailsComponent/UNProgramDetailsComponent.js +4 -3
- package/lib/module/components/UNProgramDetailsComponent/UNProgramDetailsComponent.js.map +1 -1
- package/lib/module/components/UNProgramDetailsComponent/UNProgramDetailsComponent.utils.js +0 -1
- package/lib/module/components/UNProgramDetailsComponent/UNProgramDetailsComponent.utils.js.map +1 -1
- package/lib/module/components/UNProgramDetailsComponent/index.js.map +1 -1
- package/lib/module/components/UNWhiteLabelAppComponent/UNWhiteLabelAppComponent.js +7 -5
- package/lib/module/components/UNWhiteLabelAppComponent/UNWhiteLabelAppComponent.js.map +1 -1
- package/lib/module/components/UNWhiteLabelAppComponent/UNWhiteLabelAppComponent.utils.js.map +1 -1
- package/lib/module/components/UNWhiteLabelAppComponent/index.js.map +1 -1
- package/lib/module/components/UNWirePaymentComponent/UNWirePaymentComponent.js +4 -3
- package/lib/module/components/UNWirePaymentComponent/UNWirePaymentComponent.js.map +1 -1
- package/lib/module/components/UNWirePaymentComponent/UNWirePaymentComponent.utils.js +0 -1
- package/lib/module/components/UNWirePaymentComponent/UNWirePaymentComponent.utils.js.map +1 -1
- package/lib/module/components/UNWirePaymentComponent/index.js.map +1 -1
- package/lib/module/components/index.js +2 -1
- package/lib/module/components/index.js.map +1 -1
- package/lib/module/custom.d.js.map +1 -1
- package/lib/module/flows/{UNFlows.js → UNComponentsFlows.js} +4 -4
- package/lib/module/flows/UNComponentsFlows.js.map +1 -0
- package/lib/module/flows/card/UNCardFlows.js.map +1 -1
- package/lib/module/helpers/BottomSheet/BottomSheet.js +10 -26
- package/lib/module/helpers/BottomSheet/BottomSheet.js.map +1 -1
- package/lib/module/helpers/BottomSheet/BottomSheet.styles.js.map +1 -1
- package/lib/module/helpers/UNKeyboardAvoidingView/UNKeyboardAvoidingView.js +19 -0
- package/lib/module/helpers/UNKeyboardAvoidingView/UNKeyboardAvoidingView.js.map +1 -0
- package/lib/module/helpers/pushProvisioningService/helpers.js.map +1 -1
- package/lib/module/helpers/pushProvisioningService/hooks/useCardWallet.js +9 -9
- package/lib/module/helpers/pushProvisioningService/hooks/useCardWallet.js.map +1 -1
- package/lib/module/helpers/pushProvisioningService/hooks/useLaunchInitialize.js +2 -2
- package/lib/module/helpers/pushProvisioningService/hooks/useLaunchInitialize.js.map +1 -1
- package/lib/module/helpers/pushProvisioningService/startProvisioning.js +2 -2
- package/lib/module/helpers/pushProvisioningService/startProvisioning.js.map +1 -1
- package/lib/module/helpers/pushProvisioningService/types.js +7 -0
- package/lib/module/helpers/pushProvisioningService/types.js.map +1 -1
- package/lib/module/helpers/store/helpers.js +1 -1
- package/lib/module/helpers/store/helpers.js.map +1 -1
- package/lib/module/hooks/useAppStateListener.js +36 -4
- package/lib/module/hooks/useAppStateListener.js.map +1 -1
- package/lib/module/hooks/useIsJailbrokeDevice.js.map +1 -1
- package/lib/module/hooks/useListenerToEvent.js.map +1 -1
- package/lib/module/hooks/useSnapshotProtection.js +4 -4
- package/lib/module/hooks/useSnapshotProtection.js.map +1 -1
- package/lib/module/index.js +1 -1
- package/lib/module/index.js.map +1 -1
- package/lib/module/messages/nativeMessages/bottomSheetMessage.js.map +1 -1
- package/lib/module/messages/nativeMessages/cardMessage.js.map +1 -1
- package/lib/module/messages/nativeMessages/index.js.map +1 -1
- package/lib/module/messages/nativeMessages/sdkMessage.js.map +1 -1
- package/lib/module/messages/webMessages/accountMessage.js.map +1 -1
- package/lib/module/messages/webMessages/achCreditMessage.js.map +1 -1
- package/lib/module/messages/webMessages/activityMessage.js.map +1 -1
- package/lib/module/messages/webMessages/bookPaymentMessage.js.map +1 -1
- package/lib/module/messages/webMessages/cardMessage.js.map +1 -1
- package/lib/module/messages/webMessages/checkMessage.js +1 -0
- package/lib/module/messages/webMessages/checkMessage.js.map +1 -1
- package/lib/module/messages/webMessages/index.js.map +1 -1
- package/lib/module/messages/webMessages/multiFactorAuthenticationMessage.js +5 -0
- package/lib/module/messages/webMessages/multiFactorAuthenticationMessage.js.map +1 -0
- package/lib/module/messages/webMessages/multipleCardsMessage.js.map +1 -1
- package/lib/module/messages/webMessages/onLoadMessage.js +1 -1
- package/lib/module/messages/webMessages/onLoadMessage.js.map +1 -1
- package/lib/module/messages/webMessages/pageMessage.js.map +1 -1
- package/lib/module/messages/webMessages/payeeManagementMessage.js.map +1 -1
- package/lib/module/messages/webMessages/paymentsMessage.js.map +1 -1
- package/lib/module/messages/webMessages/plaidMessages.js.map +1 -1
- package/lib/module/messages/webMessages/unitComponentsMessages.js +20 -0
- package/lib/module/messages/webMessages/unitComponentsMessages.js.map +1 -0
- package/lib/module/messages/webMessages/wirePaymentMessage.js +2 -0
- package/lib/module/messages/webMessages/wirePaymentMessage.js.map +1 -0
- package/lib/module/nativeComponents/UNAddToWallet/UNAddToWalletComponent/UNAddToWalletBottomSheetItem.styles.js.map +1 -1
- package/lib/module/nativeComponents/UNAddToWallet/UNAddToWalletComponent/UNAddToWalletComponent.js +6 -5
- package/lib/module/nativeComponents/UNAddToWallet/UNAddToWalletComponent/UNAddToWalletComponent.js.map +1 -1
- package/lib/module/nativeComponents/UNAddToWallet/UNAddToWalletComponent/UNAddToWalletComponent.utils.js.map +1 -1
- package/lib/module/nativeComponents/UNAddToWallet/UNAddToWalletComponent/index.js.map +1 -1
- package/lib/module/nativeComponents/UNAddToWallet/UnitAddToWalletButtonNativeComponent.js +3 -0
- package/lib/module/nativeComponents/UNAddToWallet/UnitAddToWalletButtonNativeComponent.js.map +1 -0
- package/lib/module/nativeComponents/UNBaseView/UNBaseView.js +16 -3
- package/lib/module/nativeComponents/UNBaseView/UNBaseView.js.map +1 -1
- package/lib/module/nativeComponents/UNBaseView/index.js.map +1 -1
- package/lib/module/nativeComponents/UNSecureView/UNSecureViewNativeComponent.js +3 -0
- package/lib/module/nativeComponents/UNSecureView/UNSecureViewNativeComponent.js.map +1 -0
- package/lib/module/nativeModulesHelpers/RNShareFile/RNShareFile.js +14 -0
- package/lib/module/nativeModulesHelpers/RNShareFile/RNShareFile.js.map +1 -0
- package/lib/module/nativeModulesHelpers/UNPermissionsHelper/UNPermissionsHelper.js +14 -0
- package/lib/module/nativeModulesHelpers/UNPermissionsHelper/UNPermissionsHelper.js.map +1 -0
- package/lib/module/nativeModulesHelpers/UNSanpshotProtectionHelper/UNSnapshotProtectionHelper.js +4 -6
- package/lib/module/nativeModulesHelpers/UNSanpshotProtectionHelper/UNSnapshotProtectionHelper.js.map +1 -1
- package/lib/module/nativeModulesHelpers/UNSecurityHelper.js +2 -4
- package/lib/module/nativeModulesHelpers/UNSecurityHelper.js.map +1 -1
- package/lib/module/nativeModulesHelpers/UNStoreModuleHelper/UNStoreModuleHelper.js +3 -0
- package/lib/module/nativeModulesHelpers/UNStoreModuleHelper/UNStoreModuleHelper.js.map +1 -0
- package/lib/module/networking/common/UNNetworkConstants.js +4 -4
- package/lib/module/networking/common/UNNetworkConstants.js.map +1 -1
- package/lib/module/networking/requests/UNWalletPayloadRequest.js +3 -3
- package/lib/module/networking/requests/UNWalletPayloadRequest.js.map +1 -1
- package/lib/module/scripts/html/bodyHtml.js.map +1 -1
- package/lib/module/scripts/html/bodyScript.js +58 -31
- package/lib/module/scripts/html/bodyScript.js.map +1 -1
- package/lib/module/scripts/html/fontFaces.js.map +1 -1
- package/lib/module/slices/BottomSheetSlice.js.map +1 -1
- package/lib/module/slices/ConfigurationSlice.js +5 -1
- package/lib/module/slices/ConfigurationSlice.js.map +1 -1
- package/lib/module/slices/SharedEventsSlice.js.map +1 -1
- package/lib/module/slices/pushProvisioningSlice.js.map +1 -1
- package/lib/module/store/index.js.map +1 -1
- package/lib/module/store/store.js.map +1 -1
- package/lib/module/styles/fonts.js +2 -2
- package/lib/module/styles/fonts.js.map +1 -1
- package/lib/module/styles/variables.js.map +1 -1
- package/lib/module/types/internal/bottomSheet.types.js +15 -0
- package/lib/module/types/internal/bottomSheet.types.js.map +1 -1
- package/lib/module/types/internal/errorHelpers.js +5 -5
- package/lib/module/types/internal/errorHelpers.js.map +1 -1
- package/lib/module/types/internal/unitStore.types.js.map +1 -1
- package/lib/module/types/internal/webComponent.types.js +7 -1
- package/lib/module/types/internal/webComponent.types.js.map +1 -1
- package/lib/module/types/shared/account.types.js +6 -0
- package/lib/module/types/shared/account.types.js.map +1 -1
- package/lib/module/types/shared/ach.types.js +2 -0
- package/lib/{commonjs/types/shared/achCredit.types.js.map → module/types/shared/ach.types.js.map} +1 -1
- package/lib/module/types/shared/activity.types.js +7 -0
- package/lib/module/types/shared/activity.types.js.map +1 -1
- package/lib/module/types/shared/authorization.types.js +1 -1
- package/lib/module/types/shared/authorization.types.js.map +1 -1
- package/lib/module/types/shared/card.types.js +20 -0
- package/lib/module/types/shared/card.types.js.map +1 -1
- package/lib/module/types/shared/checkDeposit.types.js +5 -0
- package/lib/module/types/shared/checkDeposit.types.js.map +1 -1
- package/lib/module/types/shared/counterparty.types.js +18 -0
- package/lib/module/types/shared/counterparty.types.js.map +1 -0
- package/lib/module/types/shared/customer.types.js +28 -0
- package/lib/module/types/shared/customer.types.js.map +1 -0
- package/lib/module/types/shared/env.types.js +5 -5
- package/lib/module/types/shared/env.types.js.map +1 -1
- package/lib/module/types/shared/error.types.js +21 -20
- package/lib/module/types/shared/error.types.js.map +1 -1
- package/lib/module/types/shared/fonts.types.js.map +1 -1
- package/lib/module/types/shared/index.js +8 -4
- package/lib/module/types/shared/index.js.map +1 -1
- package/lib/module/types/shared/multiFactorAuthentication.types.js +2 -0
- package/lib/module/types/shared/multiFactorAuthentication.types.js.map +1 -0
- package/lib/module/types/shared/multipleCards.types.js.map +1 -1
- package/lib/module/types/shared/onLoadResponse.types.js.map +1 -1
- package/lib/module/types/shared/payeeManagement.types.js.map +1 -1
- package/lib/module/types/shared/payment/achPayment.types.js +2 -0
- package/lib/module/types/shared/payment/achPayment.types.js.map +1 -0
- package/lib/module/types/shared/payment/billPayment.types.js +2 -0
- package/lib/module/types/shared/payment/billPayment.types.js.map +1 -0
- package/lib/module/types/shared/payment/bookPayment.types.js.map +1 -0
- package/lib/module/types/shared/payment/index.js +6 -0
- package/lib/module/types/shared/payment/index.js.map +1 -0
- package/lib/module/types/shared/{payments.types.js → payment/payments.types.js} +6 -18
- package/lib/module/types/shared/payment/payments.types.js.map +1 -0
- package/lib/module/types/shared/payment/wirePayment.types.js.map +1 -0
- package/lib/module/types/shared/repayment.types.js.map +1 -1
- package/lib/module/types/shared/securitySettings.js +4 -4
- package/lib/module/types/shared/securitySettings.js.map +1 -1
- package/lib/module/types/shared/transaction/UNAccountLowBalanceClosureTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNAccountLowBalanceClosureTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/UNAdjustmentTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNAdjustmentTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/UNAtmTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNAtmTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/UNBankRepaymentTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNBankRepaymentTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/UNBillPayTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNBillPayTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/UNBookTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNBookTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/UNCardReversalTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNCardReversalTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/UNCardTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNCardTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/UNCashDepositTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNCashDepositTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/UNChargebackTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNChargebackTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/UNCheckDepositTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNCheckDepositTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/UNCustomerRepaymentReturnedTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNCustomerRepaymentReturnedTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/UNCustomerRepaymentTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNCustomerRepaymentTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/UNDishonoredAchTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNDishonoredAchTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/UNDisputeSettlementTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNDisputeSettlementTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/UNDisputeTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNDisputeTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/UNFeeReversalTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNFeeReversalTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/UNFeeTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNFeeTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/UNInterchangeShareTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNInterchangeShareTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/UNInterestShareTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNInterestShareTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/UNInterestTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNInterestTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/UNNegativeBalanceCoverageTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNNegativeBalanceCoverageTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/UNOriginatedAchTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNOriginatedAchTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/UNPaymentAdvanceTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNPaymentAdvanceTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/UNPaymentCanceledTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNPaymentCanceledTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/UNPurchaseTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNPurchaseTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/UNReceivedAchTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNReceivedAchTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/UNReleaseTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNReleaseTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/UNRepaidPaymentAdvanceTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNRepaidPaymentAdvanceTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/UNReturnedAchTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNReturnedAchTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/UNReturnedCheckDepositTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNReturnedCheckDepositTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/UNReturnedReceivedAchTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNReturnedReceivedAchTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/UNRewardTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNRewardTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/UNSettlementTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNSettlementTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/UNSponsoredInterestTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNSponsoredInterestTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/UNWireTransaction.js +2 -0
- package/lib/module/types/shared/transaction/UNWireTransaction.js.map +1 -0
- package/lib/module/types/shared/transaction/index.js +38 -0
- package/lib/module/types/shared/transaction/index.js.map +1 -0
- package/lib/module/types/shared/transaction/transactions.types.js +78 -0
- package/lib/module/types/shared/transaction/transactions.types.js.map +1 -0
- package/lib/module/types/shared/types.js +0 -2
- package/lib/module/types/shared/types.js.map +1 -1
- package/lib/module/types/shared/versioning.types.js.map +1 -1
- package/lib/module/types/shared/wallet.types.js.map +1 -1
- package/lib/module/{unitSdkManager/UnitSdk.api.js → unitComponentsSdkManager/UnitComponentsSdk.api.js} +5 -5
- package/lib/module/unitComponentsSdkManager/UnitComponentsSdk.api.js.map +1 -0
- package/lib/module/{unitSdkManager/UnitSdk.constants.js → unitComponentsSdkManager/UnitComponentsSdk.constants.js} +6 -6
- package/lib/module/unitComponentsSdkManager/UnitComponentsSdk.constants.js.map +1 -0
- package/lib/module/{unitSdkManager/UnitSdkManager.js → unitComponentsSdkManager/UnitComponentsSdkManager.js} +20 -20
- package/lib/module/unitComponentsSdkManager/UnitComponentsSdkManager.js.map +1 -0
- package/lib/module/{unitSdkManager/UnitSdkManager.utils.internal.js → unitComponentsSdkManager/UnitComponentsSdkManager.utils.internal.js} +5 -5
- package/lib/module/unitComponentsSdkManager/UnitComponentsSdkManager.utils.internal.js.map +1 -0
- package/lib/module/{unitSdkManager/unitHelpersManager/UnitHelpersManager.js → unitComponentsSdkManager/unitComponentsHelpersManager/UnitComponentsHelpersManager.js} +2 -2
- package/lib/module/unitComponentsSdkManager/unitComponentsHelpersManager/UnitComponentsHelpersManager.js.map +1 -0
- package/lib/module/unitComponentsSdkManager/unitComponentsUiManager/unitComponentsUiManager.js +11 -0
- package/lib/module/unitComponentsSdkManager/unitComponentsUiManager/unitComponentsUiManager.js.map +1 -0
- package/lib/module/utils/AppInfo.js +2 -38
- package/lib/module/utils/AppInfo.js.map +1 -1
- package/lib/module/utils/onLoadMessages.utils.js.map +1 -1
- package/lib/module/utils/webVersioningStrategy.utils.js +5 -5
- package/lib/module/utils/webVersioningStrategy.utils.js.map +1 -1
- package/lib/module/utils/windowUnitStore.js.map +1 -1
- package/lib/module/webComponent/WebComponent.js +37 -27
- package/lib/module/webComponent/WebComponent.js.map +1 -1
- package/lib/module/webComponent/WebComponent.utils.js +8 -7
- package/lib/module/webComponent/WebComponent.utils.js.map +1 -1
- package/lib/module/webComponent/html.js +5 -1
- package/lib/module/webComponent/html.js.map +1 -1
- package/lib/typescript/src/components/UNACHCreditComponent/UNACHCreditComponent.d.ts +3 -5
- package/lib/typescript/src/components/UNACHCreditComponent/UNACHCreditComponent.d.ts.map +1 -1
- package/lib/typescript/src/components/UNACHCreditComponent/UNACHCreditComponent.utils.d.ts.map +1 -1
- package/lib/typescript/src/components/UNACHDebitComponent/UNACHDebitComponent.d.ts +3 -5
- package/lib/typescript/src/components/UNACHDebitComponent/UNACHDebitComponent.d.ts.map +1 -1
- package/lib/typescript/src/components/UNACHDebitComponent/UNACHDebitComponent.utils.d.ts.map +1 -1
- package/lib/typescript/src/components/UNAccountComponent/UNAccountComponent.d.ts +9 -7
- package/lib/typescript/src/components/UNAccountComponent/UNAccountComponent.d.ts.map +1 -1
- package/lib/typescript/src/components/UNAccountComponent/UNAccountComponent.utils.d.ts +1 -1
- package/lib/typescript/src/components/UNAccountComponent/UNAccountComponent.utils.d.ts.map +1 -1
- package/lib/typescript/src/components/UNActivityComponent/UNActivityComponent.d.ts +2 -5
- package/lib/typescript/src/components/UNActivityComponent/UNActivityComponent.d.ts.map +1 -1
- package/lib/typescript/src/components/UNActivityComponent/UNActivityComponent.utils.d.ts +1 -1
- package/lib/typescript/src/components/UNActivityComponent/UNActivityComponent.utils.d.ts.map +1 -1
- package/lib/typescript/src/components/UNBookPaymentComponent/UNBookPaymentComponent.d.ts +3 -4
- package/lib/typescript/src/components/UNBookPaymentComponent/UNBookPaymentComponent.d.ts.map +1 -1
- package/lib/typescript/src/components/UNBookPaymentComponent/UNBookPaymentComponent.utils.d.ts.map +1 -1
- package/lib/typescript/src/components/UNBottomSheetComponent/UNBottomSheetComponent.d.ts.map +1 -1
- package/lib/typescript/src/components/UNBottomSheetComponent/UNBottomSheetComponent.utils.d.ts +3 -3
- package/lib/typescript/src/components/UNBottomSheetComponent/UNBottomSheetComponent.utils.d.ts.map +1 -1
- package/lib/typescript/src/components/UNBottomSheetComponent/components/UNBottomSheetNativeComponent/UNBottomSheetNativeComponent.d.ts.map +1 -1
- package/lib/typescript/src/components/UNBottomSheetComponent/components/UNBottomSheetSlotComponent/UNBottomSheetSlotComponent.d.ts +1 -1
- package/lib/typescript/src/components/UNBottomSheetComponent/components/UNBottomSheetSlotComponent/UNBottomSheetSlotComponent.d.ts.map +1 -1
- package/lib/typescript/src/components/UNCardActionComponent/UNCardActionComponent.d.ts +13 -0
- package/lib/typescript/src/components/UNCardActionComponent/UNCardActionComponent.d.ts.map +1 -0
- package/lib/typescript/src/components/UNCardActionComponent/UNCardActionComponent.utils.d.ts +4 -0
- package/lib/typescript/src/components/UNCardActionComponent/UNCardActionComponent.utils.d.ts.map +1 -0
- package/lib/typescript/src/components/UNCardActionComponent/index.d.ts +2 -0
- package/lib/typescript/src/components/UNCardActionComponent/index.d.ts.map +1 -0
- package/lib/typescript/src/components/UNCardComponent/UNCardComponent.d.ts +7 -6
- package/lib/typescript/src/components/UNCardComponent/UNCardComponent.d.ts.map +1 -1
- package/lib/typescript/src/components/UNCardComponent/UNCardComponent.utils.d.ts +1 -1
- package/lib/typescript/src/components/UNCardComponent/UNCardComponent.utils.d.ts.map +1 -1
- package/lib/typescript/src/components/UNCheckDepositComponent/UNCheckDepositComponent.d.ts +4 -6
- package/lib/typescript/src/components/UNCheckDepositComponent/UNCheckDepositComponent.d.ts.map +1 -1
- package/lib/typescript/src/components/UNCheckDepositComponent/UNCheckDepositComponent.utils.d.ts.map +1 -1
- package/lib/typescript/src/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.d.ts +12 -0
- package/lib/typescript/src/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.d.ts.map +1 -0
- package/lib/typescript/src/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.utils.d.ts +3 -0
- package/lib/typescript/src/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.utils.d.ts.map +1 -0
- package/lib/typescript/src/components/UNMultiFactorAuthenticationComponent/index.d.ts +2 -0
- package/lib/typescript/src/components/UNMultiFactorAuthenticationComponent/index.d.ts.map +1 -0
- package/lib/typescript/src/components/UNMultipleCardsComponent/UNMultipleCardsComponent.d.ts +3 -4
- package/lib/typescript/src/components/UNMultipleCardsComponent/UNMultipleCardsComponent.d.ts.map +1 -1
- package/lib/typescript/src/components/UNMultipleCardsComponent/UNMultipleCardsComponent.utils.d.ts.map +1 -1
- package/lib/typescript/src/components/UNNextRepaymentComponent/UNNextRepaymentComponent.d.ts +2 -4
- package/lib/typescript/src/components/UNNextRepaymentComponent/UNNextRepaymentComponent.d.ts.map +1 -1
- package/lib/typescript/src/components/UNNextRepaymentComponent/UNNextRepaymentComponent.utils.d.ts.map +1 -1
- package/lib/typescript/src/components/UNPayeeManagementComponent/UNPayeeManagementComponent.d.ts +7 -7
- package/lib/typescript/src/components/UNPayeeManagementComponent/UNPayeeManagementComponent.d.ts.map +1 -1
- package/lib/typescript/src/components/UNPayeeManagementComponent/UNPayeeManagementComponent.utils.d.ts +1 -1
- package/lib/typescript/src/components/UNPayeeManagementComponent/UNPayeeManagementComponent.utils.d.ts.map +1 -1
- package/lib/typescript/src/components/UNProgramDetailsComponent/UNProgramDetailsComponent.d.ts +2 -3
- package/lib/typescript/src/components/UNProgramDetailsComponent/UNProgramDetailsComponent.d.ts.map +1 -1
- package/lib/typescript/src/components/UNProgramDetailsComponent/UNProgramDetailsComponent.utils.d.ts.map +1 -1
- package/lib/typescript/src/components/UNWhiteLabelAppComponent/UNWhiteLabelAppComponent.d.ts.map +1 -1
- package/lib/typescript/src/components/UNWhiteLabelAppComponent/UNWhiteLabelAppComponent.utils.d.ts +1 -1
- package/lib/typescript/src/components/UNWhiteLabelAppComponent/UNWhiteLabelAppComponent.utils.d.ts.map +1 -1
- package/lib/typescript/src/components/UNWirePaymentComponent/UNWirePaymentComponent.d.ts +3 -5
- package/lib/typescript/src/components/UNWirePaymentComponent/UNWirePaymentComponent.d.ts.map +1 -1
- package/lib/typescript/src/components/UNWirePaymentComponent/UNWirePaymentComponent.utils.d.ts.map +1 -1
- package/lib/typescript/src/components/index.d.ts +2 -1
- package/lib/typescript/src/components/index.d.ts.map +1 -1
- package/lib/typescript/src/flows/{UNFlows.d.ts → UNComponentsFlows.d.ts} +2 -2
- package/lib/typescript/src/flows/UNComponentsFlows.d.ts.map +1 -0
- package/lib/typescript/src/helpers/BottomSheet/BottomSheet.d.ts +1 -21
- package/lib/typescript/src/helpers/BottomSheet/BottomSheet.d.ts.map +1 -1
- package/lib/typescript/src/helpers/UNKeyboardAvoidingView/UNKeyboardAvoidingView.d.ts +10 -0
- package/lib/typescript/src/helpers/UNKeyboardAvoidingView/UNKeyboardAvoidingView.d.ts.map +1 -0
- package/lib/typescript/src/helpers/pushProvisioningService/hooks/useCardWallet.d.ts.map +1 -1
- package/lib/typescript/src/helpers/pushProvisioningService/types.d.ts +7 -0
- package/lib/typescript/src/helpers/pushProvisioningService/types.d.ts.map +1 -1
- package/lib/typescript/src/hooks/useAppStateListener.d.ts +1 -1
- package/lib/typescript/src/hooks/useAppStateListener.d.ts.map +1 -1
- package/lib/typescript/src/index.d.ts +1 -1
- package/lib/typescript/src/index.d.ts.map +1 -1
- package/lib/typescript/src/messages/webMessages/accountMessage.d.ts +2 -2
- package/lib/typescript/src/messages/webMessages/accountMessage.d.ts.map +1 -1
- package/lib/typescript/src/messages/webMessages/achCreditMessage.d.ts +2 -2
- package/lib/typescript/src/messages/webMessages/achCreditMessage.d.ts.map +1 -1
- package/lib/typescript/src/messages/webMessages/bookPaymentMessage.d.ts +2 -2
- package/lib/typescript/src/messages/webMessages/bookPaymentMessage.d.ts.map +1 -1
- package/lib/typescript/src/messages/webMessages/cardMessage.d.ts +3 -3
- package/lib/typescript/src/messages/webMessages/cardMessage.d.ts.map +1 -1
- package/lib/typescript/src/messages/webMessages/checkMessage.d.ts +3 -3
- package/lib/typescript/src/messages/webMessages/checkMessage.d.ts.map +1 -1
- package/lib/typescript/src/messages/webMessages/index.d.ts +5 -4
- package/lib/typescript/src/messages/webMessages/index.d.ts.map +1 -1
- package/lib/typescript/src/messages/webMessages/multiFactorAuthenticationMessage.d.ts +4 -0
- package/lib/typescript/src/messages/webMessages/multiFactorAuthenticationMessage.d.ts.map +1 -0
- package/lib/typescript/src/messages/webMessages/multipleCardsMessage.d.ts +2 -2
- package/lib/typescript/src/messages/webMessages/multipleCardsMessage.d.ts.map +1 -1
- package/lib/typescript/src/messages/webMessages/onLoadMessage.d.ts +15 -19
- package/lib/typescript/src/messages/webMessages/onLoadMessage.d.ts.map +1 -1
- package/lib/typescript/src/messages/webMessages/payeeManagementMessage.d.ts +4 -4
- package/lib/typescript/src/messages/webMessages/payeeManagementMessage.d.ts.map +1 -1
- package/lib/typescript/src/messages/webMessages/plaidMessages.d.ts.map +1 -1
- package/lib/typescript/src/messages/webMessages/{unitMessages.d.ts → unitComponentsMessages.d.ts} +16 -5
- package/lib/typescript/src/messages/webMessages/unitComponentsMessages.d.ts.map +1 -0
- package/lib/typescript/src/messages/webMessages/wirePaymentMessage.d.ts +5 -0
- package/lib/typescript/src/messages/webMessages/wirePaymentMessage.d.ts.map +1 -0
- package/lib/typescript/src/nativeComponents/UNAddToWallet/UnitAddToWalletButtonNativeComponent.d.ts +8 -0
- package/lib/typescript/src/nativeComponents/UNAddToWallet/UnitAddToWalletButtonNativeComponent.d.ts.map +1 -0
- package/lib/typescript/src/nativeComponents/UNBaseView/UNBaseView.d.ts +5 -4
- package/lib/typescript/src/nativeComponents/UNBaseView/UNBaseView.d.ts.map +1 -1
- package/lib/typescript/src/nativeComponents/UNSecureView/UNSecureViewNativeComponent.d.ts +7 -0
- package/lib/typescript/src/nativeComponents/UNSecureView/UNSecureViewNativeComponent.d.ts.map +1 -0
- package/lib/typescript/src/nativeModulesHelpers/RNShareFile/RNShareFile.d.ts +3 -0
- package/lib/typescript/src/nativeModulesHelpers/RNShareFile/RNShareFile.d.ts.map +1 -0
- package/lib/typescript/src/nativeModulesHelpers/UNPermissionsHelper/UNPermissionsHelper.d.ts +3 -0
- package/lib/typescript/src/nativeModulesHelpers/UNPermissionsHelper/UNPermissionsHelper.d.ts.map +1 -0
- package/lib/typescript/src/nativeModulesHelpers/UNSanpshotProtectionHelper/UNSnapshotProtectionHelper.d.ts.map +1 -1
- package/lib/typescript/src/nativeModulesHelpers/UNSecurityHelper.d.ts.map +1 -1
- package/lib/typescript/src/nativeModulesHelpers/UNStoreModuleHelper/UNStoreModuleHelper.d.ts +9 -0
- package/lib/typescript/src/nativeModulesHelpers/UNStoreModuleHelper/UNStoreModuleHelper.d.ts.map +1 -0
- package/lib/typescript/src/networking/requests/UNWalletPayloadRequest.d.ts +2 -2
- package/lib/typescript/src/networking/requests/UNWalletPayloadRequest.d.ts.map +1 -1
- package/lib/typescript/src/scripts/html/bodyScript.d.ts +2 -0
- package/lib/typescript/src/scripts/html/bodyScript.d.ts.map +1 -1
- package/lib/typescript/src/slices/ConfigurationSlice.d.ts +2 -1
- package/lib/typescript/src/slices/ConfigurationSlice.d.ts.map +1 -1
- package/lib/typescript/src/slices/SharedEventsSlice.d.ts +13 -12
- package/lib/typescript/src/slices/SharedEventsSlice.d.ts.map +1 -1
- package/lib/typescript/src/store/store.d.ts +20 -20
- package/lib/typescript/src/types/internal/bottomSheet.types.d.ts +9 -3
- package/lib/typescript/src/types/internal/bottomSheet.types.d.ts.map +1 -1
- package/lib/typescript/src/types/internal/errorHelpers.d.ts +4 -4
- package/lib/typescript/src/types/internal/errorHelpers.d.ts.map +1 -1
- package/lib/typescript/src/types/internal/webComponent.types.d.ts +3 -2
- package/lib/typescript/src/types/internal/webComponent.types.d.ts.map +1 -1
- package/lib/typescript/src/types/shared/account.types.d.ts +82 -45
- package/lib/typescript/src/types/shared/account.types.d.ts.map +1 -1
- package/lib/typescript/src/types/shared/ach.types.d.ts +8 -0
- package/lib/typescript/src/types/shared/ach.types.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/activity.types.d.ts +10 -4
- package/lib/typescript/src/types/shared/activity.types.d.ts.map +1 -1
- package/lib/typescript/src/types/shared/authorization.types.d.ts +23 -10
- package/lib/typescript/src/types/shared/authorization.types.d.ts.map +1 -1
- package/lib/typescript/src/types/shared/card.types.d.ts +190 -30
- package/lib/typescript/src/types/shared/card.types.d.ts.map +1 -1
- package/lib/typescript/src/types/shared/checkDeposit.types.d.ts +65 -25
- package/lib/typescript/src/types/shared/checkDeposit.types.d.ts.map +1 -1
- package/lib/typescript/src/types/shared/counterparty.types.d.ts +63 -0
- package/lib/typescript/src/types/shared/counterparty.types.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/customer.types.d.ts +115 -0
- package/lib/typescript/src/types/shared/customer.types.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/env.types.d.ts +1 -1
- package/lib/typescript/src/types/shared/env.types.d.ts.map +1 -1
- package/lib/typescript/src/types/shared/error.types.d.ts +9 -8
- package/lib/typescript/src/types/shared/error.types.d.ts.map +1 -1
- package/lib/typescript/src/types/shared/index.d.ts +8 -4
- package/lib/typescript/src/types/shared/index.d.ts.map +1 -1
- package/lib/typescript/src/types/shared/multiFactorAuthentication.types.d.ts +15 -0
- package/lib/typescript/src/types/shared/multiFactorAuthentication.types.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/multipleCards.types.d.ts +2 -2
- package/lib/typescript/src/types/shared/multipleCards.types.d.ts.map +1 -1
- package/lib/typescript/src/types/shared/onLoadResponse.types.d.ts +3 -3
- package/lib/typescript/src/types/shared/onLoadResponse.types.d.ts.map +1 -1
- package/lib/typescript/src/types/shared/payeeManagement.types.d.ts +0 -39
- package/lib/typescript/src/types/shared/payeeManagement.types.d.ts.map +1 -1
- package/lib/typescript/src/types/shared/payment/achPayment.types.d.ts +48 -0
- package/lib/typescript/src/types/shared/payment/achPayment.types.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/payment/billPayment.types.d.ts +35 -0
- package/lib/typescript/src/types/shared/payment/billPayment.types.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/payment/bookPayment.types.d.ts +50 -0
- package/lib/typescript/src/types/shared/payment/bookPayment.types.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/payment/index.d.ts +6 -0
- package/lib/typescript/src/types/shared/payment/index.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/payment/payments.types.d.ts +59 -0
- package/lib/typescript/src/types/shared/payment/payments.types.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/payment/wirePayment.types.d.ts +49 -0
- package/lib/typescript/src/types/shared/payment/wirePayment.types.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/repayment.types.d.ts +10 -9
- package/lib/typescript/src/types/shared/repayment.types.d.ts.map +1 -1
- package/lib/typescript/src/types/shared/securitySettings.d.ts +3 -3
- package/lib/typescript/src/types/shared/securitySettings.d.ts.map +1 -1
- package/lib/typescript/src/types/shared/transaction/UNAccountLowBalanceClosureTransaction.d.ts +43 -0
- package/lib/typescript/src/types/shared/transaction/UNAccountLowBalanceClosureTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/UNAdjustmentTransaction.d.ts +43 -0
- package/lib/typescript/src/types/shared/transaction/UNAdjustmentTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/UNAtmTransaction.d.ts +48 -0
- package/lib/typescript/src/types/shared/transaction/UNAtmTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/UNBankRepaymentTransaction.d.ts +53 -0
- package/lib/typescript/src/types/shared/transaction/UNBankRepaymentTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/UNBillPayTransaction.d.ts +43 -0
- package/lib/typescript/src/types/shared/transaction/UNBillPayTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/UNBookTransaction.d.ts +59 -0
- package/lib/typescript/src/types/shared/transaction/UNBookTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/UNCardReversalTransaction.d.ts +50 -0
- package/lib/typescript/src/types/shared/transaction/UNCardReversalTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/UNCardTransaction.d.ts +51 -0
- package/lib/typescript/src/types/shared/transaction/UNCardTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/UNCashDepositTransaction.d.ts +43 -0
- package/lib/typescript/src/types/shared/transaction/UNCashDepositTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/UNChargebackTransaction.d.ts +59 -0
- package/lib/typescript/src/types/shared/transaction/UNChargebackTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/UNCheckDepositTransaction.d.ts +49 -0
- package/lib/typescript/src/types/shared/transaction/UNCheckDepositTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/UNCustomerRepaymentReturnedTransaction.d.ts +52 -0
- package/lib/typescript/src/types/shared/transaction/UNCustomerRepaymentReturnedTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/UNCustomerRepaymentTransaction.d.ts +52 -0
- package/lib/typescript/src/types/shared/transaction/UNCustomerRepaymentTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/UNDishonoredAchTransaction.d.ts +53 -0
- package/lib/typescript/src/types/shared/transaction/UNDishonoredAchTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/UNDisputeSettlementTransaction.d.ts +43 -0
- package/lib/typescript/src/types/shared/transaction/UNDisputeSettlementTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/UNDisputeTransaction.d.ts +43 -0
- package/lib/typescript/src/types/shared/transaction/UNDisputeTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/UNFeeReversalTransaction.d.ts +49 -0
- package/lib/typescript/src/types/shared/transaction/UNFeeReversalTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/UNFeeTransaction.d.ts +49 -0
- package/lib/typescript/src/types/shared/transaction/UNFeeTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/UNInterchangeShareTransaction.d.ts +43 -0
- package/lib/typescript/src/types/shared/transaction/UNInterchangeShareTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/UNInterestShareTransaction.d.ts +43 -0
- package/lib/typescript/src/types/shared/transaction/UNInterestShareTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/UNInterestTransaction.d.ts +43 -0
- package/lib/typescript/src/types/shared/transaction/UNInterestTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/UNNegativeBalanceCoverageTransaction.d.ts +43 -0
- package/lib/typescript/src/types/shared/transaction/UNNegativeBalanceCoverageTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/UNOriginatedAchTransaction.d.ts +48 -0
- package/lib/typescript/src/types/shared/transaction/UNOriginatedAchTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/UNPaymentAdvanceTransaction.d.ts +52 -0
- package/lib/typescript/src/types/shared/transaction/UNPaymentAdvanceTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/UNPaymentCanceledTransaction.d.ts +43 -0
- package/lib/typescript/src/types/shared/transaction/UNPaymentCanceledTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/UNPurchaseTransaction.d.ts +52 -0
- package/lib/typescript/src/types/shared/transaction/UNPurchaseTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/UNReceivedAchTransaction.d.ts +54 -0
- package/lib/typescript/src/types/shared/transaction/UNReceivedAchTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/UNReleaseTransaction.d.ts +43 -0
- package/lib/typescript/src/types/shared/transaction/UNReleaseTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/UNRepaidPaymentAdvanceTransaction.d.ts +58 -0
- package/lib/typescript/src/types/shared/transaction/UNRepaidPaymentAdvanceTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/UNReturnedAchTransaction.d.ts +47 -0
- package/lib/typescript/src/types/shared/transaction/UNReturnedAchTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/UNReturnedCheckDepositTransaction.d.ts +43 -0
- package/lib/typescript/src/types/shared/transaction/UNReturnedCheckDepositTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/UNReturnedReceivedAchTransaction.d.ts +53 -0
- package/lib/typescript/src/types/shared/transaction/UNReturnedReceivedAchTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/UNRewardTransaction.d.ts +53 -0
- package/lib/typescript/src/types/shared/transaction/UNRewardTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/UNSettlementTransaction.d.ts +43 -0
- package/lib/typescript/src/types/shared/transaction/UNSettlementTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/UNSponsoredInterestTransaction.d.ts +43 -0
- package/lib/typescript/src/types/shared/transaction/UNSponsoredInterestTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/UNWireTransaction.d.ts +44 -0
- package/lib/typescript/src/types/shared/transaction/UNWireTransaction.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/index.d.ts +38 -0
- package/lib/typescript/src/types/shared/transaction/index.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/transaction/transactions.types.d.ts +140 -0
- package/lib/typescript/src/types/shared/transaction/transactions.types.d.ts.map +1 -0
- package/lib/typescript/src/types/shared/types.d.ts +14 -14
- package/lib/typescript/src/types/shared/types.d.ts.map +1 -1
- package/lib/typescript/src/types/shared/versioning.types.d.ts +1 -1
- package/lib/typescript/src/types/shared/versioning.types.d.ts.map +1 -1
- package/lib/typescript/src/{unitSdkManager/UnitSdk.api.d.ts → unitComponentsSdkManager/UnitComponentsSdk.api.d.ts} +1 -1
- package/lib/typescript/src/unitComponentsSdkManager/UnitComponentsSdk.api.d.ts.map +1 -0
- package/lib/typescript/src/unitComponentsSdkManager/UnitComponentsSdk.constants.d.ts +11 -0
- package/lib/typescript/src/unitComponentsSdkManager/UnitComponentsSdk.constants.d.ts.map +1 -0
- package/lib/typescript/src/unitComponentsSdkManager/UnitComponentsSdkManager.d.ts +38 -0
- package/lib/typescript/src/unitComponentsSdkManager/UnitComponentsSdkManager.d.ts.map +1 -0
- package/lib/typescript/src/unitComponentsSdkManager/UnitComponentsSdkManager.utils.internal.d.ts +4 -0
- package/lib/typescript/src/unitComponentsSdkManager/UnitComponentsSdkManager.utils.internal.d.ts.map +1 -0
- package/lib/typescript/src/{unitSdkManager/unitHelpersManager/UnitHelpersManager.d.ts → unitComponentsSdkManager/unitComponentsHelpersManager/UnitComponentsHelpersManager.d.ts} +2 -2
- package/lib/typescript/src/unitComponentsSdkManager/unitComponentsHelpersManager/UnitComponentsHelpersManager.d.ts.map +1 -0
- package/lib/typescript/src/unitComponentsSdkManager/unitComponentsUiManager/unitComponentsUiManager.d.ts +7 -0
- package/lib/typescript/src/unitComponentsSdkManager/unitComponentsUiManager/unitComponentsUiManager.d.ts.map +1 -0
- package/lib/typescript/src/utils/AppInfo.d.ts +9 -4
- package/lib/typescript/src/utils/AppInfo.d.ts.map +1 -1
- package/lib/typescript/src/utils/webVersioningStrategy.utils.d.ts +5 -5
- package/lib/typescript/src/utils/webVersioningStrategy.utils.d.ts.map +1 -1
- package/lib/typescript/src/webComponent/WebComponent.d.ts +1 -1
- package/lib/typescript/src/webComponent/WebComponent.d.ts.map +1 -1
- package/lib/typescript/src/webComponent/WebComponent.utils.d.ts +3 -1
- package/lib/typescript/src/webComponent/WebComponent.utils.d.ts.map +1 -1
- package/lib/typescript/src/webComponent/html.d.ts.map +1 -1
- package/package.json +20 -2
- package/src/components/UNACHCreditComponent/UNACHCreditComponent.tsx +19 -14
- package/src/components/UNACHCreditComponent/UNACHCreditComponent.utils.ts +0 -1
- package/src/components/UNACHDebitComponent/UNACHDebitComponent.tsx +19 -15
- package/src/components/UNACHDebitComponent/UNACHDebitComponent.utils.ts +0 -1
- package/src/components/UNAccountComponent/UNAccountComponent.tsx +28 -18
- package/src/components/UNAccountComponent/UNAccountComponent.utils.ts +7 -2
- package/src/components/UNActivityComponent/UNActivityComponent.tsx +16 -13
- package/src/components/UNActivityComponent/UNActivityComponent.utils.ts +1 -2
- package/src/components/UNBookPaymentComponent/UNBookPaymentComponent.tsx +13 -15
- package/src/components/UNBookPaymentComponent/UNBookPaymentComponent.utils.ts +0 -1
- package/src/components/UNBottomSheetComponent/UNBottomSheetComponent.tsx +9 -10
- package/src/components/UNBottomSheetComponent/UNBottomSheetComponent.utils.ts +88 -28
- package/src/components/UNBottomSheetComponent/components/UNBottomSheetNativeComponent/UNBottomSheetNativeComponent.tsx +44 -21
- package/src/components/UNBottomSheetComponent/components/UNBottomSheetSlotComponent/UNBottomSheetSlotComponent.tsx +24 -17
- package/src/components/UNCardActionComponent/UNCardActionComponent.tsx +80 -0
- package/src/components/UNCardActionComponent/UNCardActionComponent.utils.ts +15 -0
- package/src/components/UNCardActionComponent/index.ts +1 -0
- package/src/components/UNCardComponent/UNCardComponent.tsx +40 -21
- package/src/components/UNCardComponent/UNCardComponent.utils.ts +5 -3
- package/src/components/UNCheckDepositComponent/UNCheckDepositComponent.tsx +14 -17
- package/src/components/UNCheckDepositComponent/UNCheckDepositComponent.utils.ts +0 -1
- package/src/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.tsx +83 -0
- package/src/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.utils.ts +25 -0
- package/src/components/UNMultiFactorAuthenticationComponent/index.ts +1 -0
- package/src/components/UNMultipleCardsComponent/UNMultipleCardsComponent.tsx +24 -15
- package/src/components/UNMultipleCardsComponent/UNMultipleCardsComponent.utils.ts +0 -1
- package/src/components/UNNextRepaymentComponent/UNNextRepaymentComponent.tsx +7 -9
- package/src/components/UNNextRepaymentComponent/UNNextRepaymentComponent.utils.ts +1 -2
- package/src/components/UNPayeeManagementComponent/UNPayeeManagementComponent.tsx +48 -19
- package/src/components/UNPayeeManagementComponent/UNPayeeManagementComponent.utils.ts +1 -2
- package/src/components/UNProgramDetailsComponent/UNProgramDetailsComponent.tsx +7 -8
- package/src/components/UNProgramDetailsComponent/UNProgramDetailsComponent.utils.ts +0 -1
- package/src/components/UNWhiteLabelAppComponent/UNWhiteLabelAppComponent.tsx +8 -6
- package/src/components/UNWhiteLabelAppComponent/UNWhiteLabelAppComponent.utils.ts +2 -2
- package/src/components/UNWirePaymentComponent/UNWirePaymentComponent.tsx +10 -11
- package/src/components/UNWirePaymentComponent/UNWirePaymentComponent.utils.ts +0 -1
- package/src/components/index.ts +2 -1
- package/src/flows/{UNFlows.ts → UNComponentsFlows.ts} +3 -3
- package/src/helpers/BottomSheet/BottomSheet.tsx +9 -27
- package/src/helpers/UNKeyboardAvoidingView/UNKeyboardAvoidingView.tsx +24 -0
- package/src/helpers/pushProvisioningService/hooks/useCardWallet.ts +12 -10
- package/src/helpers/pushProvisioningService/hooks/useLaunchInitialize.ts +2 -2
- package/src/helpers/pushProvisioningService/startProvisioning.ts +2 -2
- package/src/helpers/pushProvisioningService/types.ts +7 -0
- package/src/hooks/useAppStateListener.ts +38 -4
- package/src/hooks/useSnapshotProtection.ts +4 -4
- package/src/index.tsx +1 -1
- package/src/messages/webMessages/accountMessage.ts +2 -2
- package/src/messages/webMessages/achCreditMessage.ts +3 -3
- package/src/messages/webMessages/bookPaymentMessage.ts +3 -3
- package/src/messages/webMessages/cardMessage.ts +3 -3
- package/src/messages/webMessages/checkMessage.ts +7 -7
- package/src/messages/webMessages/index.ts +7 -5
- package/src/messages/webMessages/multiFactorAuthenticationMessage.ts +3 -0
- package/src/messages/webMessages/multipleCardsMessage.ts +2 -2
- package/src/messages/webMessages/onLoadMessage.ts +21 -25
- package/src/messages/webMessages/payeeManagementMessage.ts +4 -4
- package/src/messages/webMessages/plaidMessages.ts +2 -2
- package/src/messages/webMessages/{unitMessages.ts → unitComponentsMessages.ts} +19 -4
- package/src/messages/webMessages/wirePaymentMessage.ts +5 -0
- package/src/nativeComponents/UNAddToWallet/UNAddToWalletComponent/UNAddToWalletComponent.tsx +5 -5
- package/src/nativeComponents/UNAddToWallet/UnitAddToWalletButtonNativeComponent.ts +14 -0
- package/src/nativeComponents/UNBaseView/UNBaseView.tsx +19 -14
- package/src/nativeComponents/UNSecureView/UNSecureViewNativeComponent.ts +10 -0
- package/src/nativeModulesHelpers/RNShareFile/RNShareFile.ts +20 -0
- package/src/nativeModulesHelpers/UNPermissionsHelper/UNPermissionsHelper.ts +20 -0
- package/src/nativeModulesHelpers/UNSanpshotProtectionHelper/UNSnapshotProtectionHelper.ts +9 -4
- package/src/nativeModulesHelpers/UNSecurityHelper.ts +7 -3
- package/src/nativeModulesHelpers/UNStoreModuleHelper/UNStoreModuleHelper.ts +9 -0
- package/src/networking/common/UNNetworkConstants.ts +4 -4
- package/src/networking/requests/UNWalletPayloadRequest.ts +12 -12
- package/src/scripts/html/bodyScript.ts +60 -31
- package/src/slices/ConfigurationSlice.ts +5 -1
- package/src/slices/SharedEventsSlice.ts +13 -12
- package/src/styles/fonts.ts +3 -3
- package/src/types/internal/bottomSheet.types.ts +10 -2
- package/src/types/internal/errorHelpers.ts +7 -7
- package/src/types/internal/webComponent.types.ts +2 -1
- package/src/types/shared/account.types.ts +85 -48
- package/src/types/shared/ach.types.ts +8 -0
- package/src/types/shared/activity.types.ts +11 -4
- package/src/types/shared/authorization.types.ts +30 -16
- package/src/types/shared/card.types.ts +212 -45
- package/src/types/shared/checkDeposit.types.ts +80 -40
- package/src/types/shared/counterparty.types.ts +65 -0
- package/src/types/shared/customer.types.ts +118 -0
- package/src/types/shared/env.types.ts +1 -1
- package/src/types/shared/error.types.ts +26 -25
- package/src/types/shared/index.ts +8 -4
- package/src/types/shared/multiFactorAuthentication.types.ts +17 -0
- package/src/types/shared/multipleCards.types.ts +2 -2
- package/src/types/shared/onLoadResponse.types.ts +5 -5
- package/src/types/shared/payeeManagement.types.ts +4 -44
- package/src/types/shared/payment/achPayment.types.ts +47 -0
- package/src/types/shared/payment/billPayment.types.ts +33 -0
- package/src/types/shared/payment/bookPayment.types.ts +48 -0
- package/src/types/shared/payment/index.ts +5 -0
- package/src/types/shared/payment/payments.types.ts +79 -0
- package/src/types/shared/payment/wirePayment.types.ts +47 -0
- package/src/types/shared/repayment.types.ts +12 -11
- package/src/types/shared/securitySettings.ts +3 -3
- package/src/types/shared/transaction/UNAccountLowBalanceClosureTransaction.ts +43 -0
- package/src/types/shared/transaction/UNAdjustmentTransaction.ts +43 -0
- package/src/types/shared/transaction/UNAtmTransaction.ts +48 -0
- package/src/types/shared/transaction/UNBankRepaymentTransaction.ts +51 -0
- package/src/types/shared/transaction/UNBillPayTransaction.ts +43 -0
- package/src/types/shared/transaction/UNBookTransaction.ts +57 -0
- package/src/types/shared/transaction/UNCardReversalTransaction.ts +50 -0
- package/src/types/shared/transaction/UNCardTransaction.ts +51 -0
- package/src/types/shared/transaction/UNCashDepositTransaction.ts +43 -0
- package/src/types/shared/transaction/UNChargebackTransaction.ts +57 -0
- package/src/types/shared/transaction/UNCheckDepositTransaction.ts +49 -0
- package/src/types/shared/transaction/UNCustomerRepaymentReturnedTransaction.ts +50 -0
- package/src/types/shared/transaction/UNCustomerRepaymentTransaction.ts +50 -0
- package/src/types/shared/transaction/UNDishonoredAchTransaction.ts +51 -0
- package/src/types/shared/transaction/UNDisputeSettlementTransaction.ts +43 -0
- package/src/types/shared/transaction/UNDisputeTransaction.ts +43 -0
- package/src/types/shared/transaction/UNFeeReversalTransaction.ts +49 -0
- package/src/types/shared/transaction/UNFeeTransaction.ts +49 -0
- package/src/types/shared/transaction/UNInterchangeShareTransaction.ts +43 -0
- package/src/types/shared/transaction/UNInterestShareTransaction.ts +43 -0
- package/src/types/shared/transaction/UNInterestTransaction.ts +43 -0
- package/src/types/shared/transaction/UNNegativeBalanceCoverageTransaction.ts +43 -0
- package/src/types/shared/transaction/UNOriginatedAchTransaction.ts +46 -0
- package/src/types/shared/transaction/UNPaymentAdvanceTransaction.ts +50 -0
- package/src/types/shared/transaction/UNPaymentCanceledTransaction.ts +43 -0
- package/src/types/shared/transaction/UNPurchaseTransaction.ts +52 -0
- package/src/types/shared/transaction/UNReceivedAchTransaction.ts +54 -0
- package/src/types/shared/transaction/UNReleaseTransaction.ts +43 -0
- package/src/types/shared/transaction/UNRepaidPaymentAdvanceTransaction.ts +56 -0
- package/src/types/shared/transaction/UNReturnedAchTransaction.ts +47 -0
- package/src/types/shared/transaction/UNReturnedCheckDepositTransaction.ts +43 -0
- package/src/types/shared/transaction/UNReturnedReceivedAchTransaction.ts +53 -0
- package/src/types/shared/transaction/UNRewardTransaction.ts +51 -0
- package/src/types/shared/transaction/UNSettlementTransaction.ts +43 -0
- package/src/types/shared/transaction/UNSponsoredInterestTransaction.ts +43 -0
- package/src/types/shared/transaction/UNWireTransaction.ts +44 -0
- package/src/types/shared/transaction/index.ts +37 -0
- package/src/types/shared/transaction/transactions.types.ts +182 -0
- package/src/types/shared/types.ts +17 -21
- package/src/types/shared/versioning.types.ts +1 -1
- package/src/{unitSdkManager/UnitSdk.api.ts → unitComponentsSdkManager/UnitComponentsSdk.api.ts} +4 -4
- package/src/unitComponentsSdkManager/UnitComponentsSdk.constants.ts +17 -0
- package/src/{unitSdkManager/UnitSdkManager.ts → unitComponentsSdkManager/UnitComponentsSdkManager.ts} +28 -31
- package/src/{unitSdkManager/UnitSdkManager.utils.internal.ts → unitComponentsSdkManager/UnitComponentsSdkManager.utils.internal.ts} +6 -6
- package/src/{unitSdkManager/unitHelpersManager/UnitHelpersManager.ts → unitComponentsSdkManager/unitComponentsHelpersManager/UnitComponentsHelpersManager.ts} +1 -1
- package/src/unitComponentsSdkManager/unitComponentsUiManager/unitComponentsUiManager.ts +13 -0
- package/src/utils/AppInfo.ts +8 -38
- package/src/utils/webVersioningStrategy.utils.ts +10 -10
- package/src/webComponent/WebComponent.tsx +42 -28
- package/src/webComponent/WebComponent.utils.ts +11 -6
- package/src/webComponent/html.ts +7 -1
- package/ios/Camera/Camera.swift +0 -22
- package/ios/Camera/CameraExportModule.m +0 -7
- package/ios/UNAppInfo/IOSAppInfo.swift +0 -47
- package/ios/UNStoreManager/UNStoreManager.swift +0 -28
- package/lib/commonjs/components/UNFundAccountPaymentComponent/UNFundAccountPaymentComponent.js +0 -88
- package/lib/commonjs/components/UNFundAccountPaymentComponent/UNFundAccountPaymentComponent.js.map +0 -1
- package/lib/commonjs/components/UNFundAccountPaymentComponent/UNFundAccountPaymentComponent.utils.js +0 -30
- package/lib/commonjs/components/UNFundAccountPaymentComponent/UNFundAccountPaymentComponent.utils.js.map +0 -1
- package/lib/commonjs/components/UNFundAccountPaymentComponent/index.js.map +0 -1
- package/lib/commonjs/flows/UNFlows.js.map +0 -1
- package/lib/commonjs/messages/webMessages/fundAccountPaymentMessage.js.map +0 -1
- package/lib/commonjs/messages/webMessages/unitMessages.js +0 -25
- package/lib/commonjs/messages/webMessages/unitMessages.js.map +0 -1
- package/lib/commonjs/nativeComponents/UNAddToWallet/UnitAddToWalletButton.js +0 -10
- package/lib/commonjs/nativeComponents/UNAddToWallet/UnitAddToWalletButton.js.map +0 -1
- package/lib/commonjs/nativeModulesHelpers/UNStoreManagerHelper/UNStoreManagerHelper.js +0 -23
- package/lib/commonjs/nativeModulesHelpers/UNStoreManagerHelper/UNStoreManagerHelper.js.map +0 -1
- package/lib/commonjs/types/shared/bookPayment.types.js.map +0 -1
- package/lib/commonjs/types/shared/fundAccountPayment.types.js.map +0 -1
- package/lib/commonjs/types/shared/payments.types.js.map +0 -1
- package/lib/commonjs/types/shared/transactions.types.js +0 -50
- package/lib/commonjs/types/shared/transactions.types.js.map +0 -1
- package/lib/commonjs/unitSdkManager/UnitSdk.api.js.map +0 -1
- package/lib/commonjs/unitSdkManager/UnitSdk.constants.js.map +0 -1
- package/lib/commonjs/unitSdkManager/UnitSdkManager.js.map +0 -1
- package/lib/commonjs/unitSdkManager/UnitSdkManager.utils.internal.js.map +0 -1
- package/lib/commonjs/unitSdkManager/unitHelpersManager/UnitHelpersManager.js.map +0 -1
- package/lib/commonjs/unitSdkManager/unitUiManager/unitUiManager.js +0 -18
- package/lib/commonjs/unitSdkManager/unitUiManager/unitUiManager.js.map +0 -1
- package/lib/module/components/UNFundAccountPaymentComponent/UNFundAccountPaymentComponent.js +0 -79
- package/lib/module/components/UNFundAccountPaymentComponent/UNFundAccountPaymentComponent.js.map +0 -1
- package/lib/module/components/UNFundAccountPaymentComponent/UNFundAccountPaymentComponent.utils.js +0 -22
- package/lib/module/components/UNFundAccountPaymentComponent/UNFundAccountPaymentComponent.utils.js.map +0 -1
- package/lib/module/components/UNFundAccountPaymentComponent/index.js +0 -2
- package/lib/module/components/UNFundAccountPaymentComponent/index.js.map +0 -1
- package/lib/module/flows/UNFlows.js.map +0 -1
- package/lib/module/messages/webMessages/fundAccountPaymentMessage.js +0 -2
- package/lib/module/messages/webMessages/fundAccountPaymentMessage.js.map +0 -1
- package/lib/module/messages/webMessages/unitMessages.js +0 -19
- package/lib/module/messages/webMessages/unitMessages.js.map +0 -1
- package/lib/module/nativeComponents/UNAddToWallet/UnitAddToWalletButton.js +0 -4
- package/lib/module/nativeComponents/UNAddToWallet/UnitAddToWalletButton.js.map +0 -1
- package/lib/module/nativeModulesHelpers/UNStoreManagerHelper/UNStoreManagerHelper.js +0 -17
- package/lib/module/nativeModulesHelpers/UNStoreManagerHelper/UNStoreManagerHelper.js.map +0 -1
- package/lib/module/types/shared/achCredit.types.js +0 -2
- package/lib/module/types/shared/achCredit.types.js.map +0 -1
- package/lib/module/types/shared/bookPayment.types.js.map +0 -1
- package/lib/module/types/shared/fundAccountPayment.types.js +0 -2
- package/lib/module/types/shared/fundAccountPayment.types.js.map +0 -1
- package/lib/module/types/shared/payments.types.js.map +0 -1
- package/lib/module/types/shared/transactions.types.js +0 -44
- package/lib/module/types/shared/transactions.types.js.map +0 -1
- package/lib/module/types/shared/wirePayment.types.js.map +0 -1
- package/lib/module/unitSdkManager/UnitSdk.api.js.map +0 -1
- package/lib/module/unitSdkManager/UnitSdk.constants.js.map +0 -1
- package/lib/module/unitSdkManager/UnitSdkManager.js.map +0 -1
- package/lib/module/unitSdkManager/UnitSdkManager.utils.internal.js.map +0 -1
- package/lib/module/unitSdkManager/unitHelpersManager/UnitHelpersManager.js.map +0 -1
- package/lib/module/unitSdkManager/unitUiManager/unitUiManager.js +0 -11
- package/lib/module/unitSdkManager/unitUiManager/unitUiManager.js.map +0 -1
- package/lib/typescript/src/components/UNFundAccountPaymentComponent/UNFundAccountPaymentComponent.d.ts +0 -19
- package/lib/typescript/src/components/UNFundAccountPaymentComponent/UNFundAccountPaymentComponent.d.ts.map +0 -1
- package/lib/typescript/src/components/UNFundAccountPaymentComponent/UNFundAccountPaymentComponent.utils.d.ts +0 -4
- package/lib/typescript/src/components/UNFundAccountPaymentComponent/UNFundAccountPaymentComponent.utils.d.ts.map +0 -1
- package/lib/typescript/src/components/UNFundAccountPaymentComponent/index.d.ts +0 -2
- package/lib/typescript/src/components/UNFundAccountPaymentComponent/index.d.ts.map +0 -1
- package/lib/typescript/src/flows/UNFlows.d.ts.map +0 -1
- package/lib/typescript/src/messages/webMessages/fundAccountPaymentMessage.d.ts +0 -6
- package/lib/typescript/src/messages/webMessages/fundAccountPaymentMessage.d.ts.map +0 -1
- package/lib/typescript/src/messages/webMessages/unitMessages.d.ts.map +0 -1
- package/lib/typescript/src/nativeComponents/UNAddToWallet/UnitAddToWalletButton.d.ts +0 -7
- package/lib/typescript/src/nativeComponents/UNAddToWallet/UnitAddToWalletButton.d.ts.map +0 -1
- package/lib/typescript/src/nativeModulesHelpers/UNStoreManagerHelper/UNStoreManagerHelper.d.ts +0 -7
- package/lib/typescript/src/nativeModulesHelpers/UNStoreManagerHelper/UNStoreManagerHelper.d.ts.map +0 -1
- package/lib/typescript/src/types/shared/achCredit.types.d.ts +0 -38
- package/lib/typescript/src/types/shared/achCredit.types.d.ts.map +0 -1
- package/lib/typescript/src/types/shared/bookPayment.types.d.ts +0 -26
- package/lib/typescript/src/types/shared/bookPayment.types.d.ts.map +0 -1
- package/lib/typescript/src/types/shared/fundAccountPayment.types.d.ts +0 -38
- package/lib/typescript/src/types/shared/fundAccountPayment.types.d.ts.map +0 -1
- package/lib/typescript/src/types/shared/payments.types.d.ts +0 -59
- package/lib/typescript/src/types/shared/payments.types.d.ts.map +0 -1
- package/lib/typescript/src/types/shared/transactions.types.d.ts +0 -81
- package/lib/typescript/src/types/shared/transactions.types.d.ts.map +0 -1
- package/lib/typescript/src/types/shared/wirePayment.types.d.ts +0 -42
- package/lib/typescript/src/types/shared/wirePayment.types.d.ts.map +0 -1
- package/lib/typescript/src/unitSdkManager/UnitSdk.api.d.ts.map +0 -1
- package/lib/typescript/src/unitSdkManager/UnitSdk.constants.d.ts +0 -11
- package/lib/typescript/src/unitSdkManager/UnitSdk.constants.d.ts.map +0 -1
- package/lib/typescript/src/unitSdkManager/UnitSdkManager.d.ts +0 -40
- package/lib/typescript/src/unitSdkManager/UnitSdkManager.d.ts.map +0 -1
- package/lib/typescript/src/unitSdkManager/UnitSdkManager.utils.internal.d.ts +0 -4
- package/lib/typescript/src/unitSdkManager/UnitSdkManager.utils.internal.d.ts.map +0 -1
- package/lib/typescript/src/unitSdkManager/unitHelpersManager/UnitHelpersManager.d.ts.map +0 -1
- package/lib/typescript/src/unitSdkManager/unitUiManager/unitUiManager.d.ts +0 -7
- package/lib/typescript/src/unitSdkManager/unitUiManager/unitUiManager.d.ts.map +0 -1
- package/src/components/UNFundAccountPaymentComponent/UNFundAccountPaymentComponent.tsx +0 -111
- package/src/components/UNFundAccountPaymentComponent/UNFundAccountPaymentComponent.utils.ts +0 -24
- package/src/components/UNFundAccountPaymentComponent/index.ts +0 -1
- package/src/messages/webMessages/fundAccountPaymentMessage.ts +0 -8
- package/src/nativeComponents/UNAddToWallet/UnitAddToWalletButton.tsx +0 -12
- package/src/nativeModulesHelpers/UNStoreManagerHelper/UNStoreManagerHelper.ts +0 -19
- package/src/types/shared/achCredit.types.ts +0 -39
- package/src/types/shared/bookPayment.types.ts +0 -26
- package/src/types/shared/fundAccountPayment.types.ts +0 -38
- package/src/types/shared/payments.types.ts +0 -69
- package/src/types/shared/transactions.types.ts +0 -84
- package/src/types/shared/wirePayment.types.ts +0 -43
- package/src/unitSdkManager/UnitSdk.constants.ts +0 -17
- package/src/unitSdkManager/unitUiManager/unitUiManager.ts +0 -13
- /package/lib/commonjs/types/shared/{bookPayment.types.js → payment/bookPayment.types.js} +0 -0
- /package/lib/commonjs/types/shared/{wirePayment.types.js → payment/wirePayment.types.js} +0 -0
- /package/lib/module/types/shared/{bookPayment.types.js → payment/bookPayment.types.js} +0 -0
- /package/lib/module/types/shared/{wirePayment.types.js → payment/wirePayment.types.js} +0 -0
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.SET_ITEM_IN_WINDOW_UNIT_STORE = exports.POST_PAGE_HEIGHT = exports.POST_MESSAGE_TO_SDK = exports.LISTENERS = exports.DISPATCH_REQUEST_SHOW_SENSITIVE_DATA = exports.DISPATCH_REQUEST_REFRESH = exports.DISPATCH_REQUEST_HIDE_SENSITIVE_DATA = exports.DISPATCH_REQUEST_CARD_ACTION = exports.DISPATCH_REQUEST_ACCOUNT_ACTION = exports.DISPATCH_RENDERING_EVENT = exports.DISPATCH_PLAID_RESPONSE = exports.DISPATCH_PLAID_EXIT = exports.DISPATCH_OPEN_PLAID = exports.DISPATCH_OPEN_ACTIONS_MENU = exports.DISPATCH_ACTIVITY_FILTER_CHANGED_EVENT = void 0;
|
|
6
|
+
exports.SET_ITEM_IN_WINDOW_UNIT_STORE = exports.POST_PAGE_HEIGHT = exports.POST_MESSAGE_TO_SDK = exports.LISTENERS = exports.DISPATCH_REQUEST_SHOW_SENSITIVE_DATA = exports.DISPATCH_REQUEST_REFRESH = exports.DISPATCH_REQUEST_HIDE_SENSITIVE_DATA = exports.DISPATCH_REQUEST_CARD_ACTION = exports.DISPATCH_REQUEST_ACCOUNT_ACTION = exports.DISPATCH_RENDERING_EVENT = exports.DISPATCH_PLAID_RESPONSE = exports.DISPATCH_PLAID_EXIT = exports.DISPATCH_OPEN_PLAID = exports.DISPATCH_OPEN_ACTIONS_MENU = exports.DISPATCH_EVENT_TO_CONTINUE = exports.DISPATCH_CARD_STATUS_CHANGED = exports.DISPATCH_ACTIVITY_FILTER_CHANGED_EVENT = void 0;
|
|
7
7
|
var _paymentsMessage = require("../../messages/webMessages/paymentsMessage");
|
|
8
8
|
var _cardMessage = require("../../messages/webMessages/cardMessage");
|
|
9
9
|
var _pageMessage = require("../../messages/webMessages/pageMessage");
|
|
10
|
-
var
|
|
10
|
+
var _unitComponentsMessages = require("../../messages/webMessages/unitComponentsMessages");
|
|
11
11
|
var _accountMessage = require("../../messages/webMessages/accountMessage");
|
|
12
12
|
var _activityMessage = require("../../messages/webMessages/activityMessage");
|
|
13
13
|
var _plaidMessages = require("../../messages/webMessages/plaidMessages");
|
|
@@ -35,39 +35,47 @@ const LISTENERS = exports.LISTENERS = {
|
|
|
35
35
|
});
|
|
36
36
|
`,
|
|
37
37
|
requestRendering: `
|
|
38
|
-
window.addEventListener("${
|
|
39
|
-
postMessageToSDK({ type: "${
|
|
38
|
+
window.addEventListener("${_unitComponentsMessages.UnitComponentsMessage.UNIT_REQUEST_RENDERING}", (e) => {
|
|
39
|
+
postMessageToSDK({ type: "${_unitComponentsMessages.UnitComponentsMessage.UNIT_REQUEST_RENDERING}", details: { data: e.detail }})
|
|
40
40
|
});
|
|
41
41
|
`,
|
|
42
42
|
requestRefresh: `
|
|
43
|
-
window.addEventListener("${
|
|
43
|
+
window.addEventListener("${_unitComponentsMessages.UnitComponentsMessage.UNIT_REQUEST_REFRESH}", (e) => {
|
|
44
44
|
if (e.detail.fromSDK) { return }
|
|
45
|
-
postMessageToSDK({ type: "${
|
|
45
|
+
postMessageToSDK({ type: "${_unitComponentsMessages.UnitComponentsMessage.UNIT_REQUEST_REFRESH}", details: e.detail })
|
|
46
46
|
});
|
|
47
47
|
`,
|
|
48
48
|
onLoad: `
|
|
49
|
-
window.addEventListener("${
|
|
50
|
-
|
|
51
|
-
|
|
49
|
+
window.addEventListener("${_unitComponentsMessages.UnitComponentsMessage.UNIT_ON_LOAD}", (e) => {
|
|
50
|
+
if (document.querySelector("unit-elements-account") !== null) {
|
|
51
|
+
// 10 milliseconds delay to render AccountComponent correctly
|
|
52
|
+
setTimeout(() => {
|
|
53
|
+
postHeight()
|
|
54
|
+
}, 10);
|
|
55
|
+
} else {
|
|
56
|
+
postHeight()
|
|
57
|
+
}
|
|
58
|
+
postMessageToSDK({ type: "${_unitComponentsMessages.UnitComponentsMessage.UNIT_ON_LOAD}", details: e.detail })
|
|
59
|
+
|
|
52
60
|
});
|
|
53
61
|
`,
|
|
54
62
|
requestCloseFlow: `
|
|
55
|
-
window.addEventListener("${
|
|
63
|
+
window.addEventListener("${_unitComponentsMessages.UnitComponentsMessage.UNIT_REQUEST_CLOSE_FLOW}", (e) => {
|
|
56
64
|
// Add a delay of 200 milliseconds to allow the SDK to finish processing prior events that require a Promise before closing the flow
|
|
57
65
|
setTimeout(() => {
|
|
58
|
-
postMessageToSDK({ type: "${
|
|
66
|
+
postMessageToSDK({ type: "${_unitComponentsMessages.UnitComponentsMessage.UNIT_REQUEST_CLOSE_FLOW}" });
|
|
59
67
|
}, 200);
|
|
60
68
|
|
|
61
69
|
});
|
|
62
70
|
`,
|
|
63
71
|
requestOpenLink: `
|
|
64
|
-
window.addEventListener("${
|
|
65
|
-
postMessageToSDK({ type: "${
|
|
72
|
+
window.addEventListener("${_unitComponentsMessages.UnitComponentsMessage.UNIT_REQUEST_OPEN_LINK}", (e) => {
|
|
73
|
+
postMessageToSDK({ type: "${_unitComponentsMessages.UnitComponentsMessage.UNIT_REQUEST_OPEN_LINK}", details: e.detail })
|
|
66
74
|
});
|
|
67
75
|
`,
|
|
68
76
|
unitRequestDownload: `
|
|
69
|
-
window.addEventListener("${
|
|
70
|
-
postMessageToSDK({ type: "${
|
|
77
|
+
window.addEventListener("${_unitComponentsMessages.UnitComponentsMessage.UNIT_REQUEST_DOWNLOAD}", (e) => {
|
|
78
|
+
postMessageToSDK({ type: "${_unitComponentsMessages.UnitComponentsMessage.UNIT_REQUEST_DOWNLOAD}", details: e.detail })
|
|
71
79
|
});
|
|
72
80
|
`,
|
|
73
81
|
cardActivated: `
|
|
@@ -91,13 +99,13 @@ const LISTENERS = exports.LISTENERS = {
|
|
|
91
99
|
});
|
|
92
100
|
`,
|
|
93
101
|
unitRequestExternalSdk: `
|
|
94
|
-
window.addEventListener("${
|
|
95
|
-
postMessageToSDK({ type: "${
|
|
102
|
+
window.addEventListener("${_unitComponentsMessages.UnitComponentsMessage.UNIT_REQUEST_EXTERNAL_SDK}", (e) => {
|
|
103
|
+
postMessageToSDK({ type: "${_unitComponentsMessages.UnitComponentsMessage.UNIT_REQUEST_EXTERNAL_SDK}", details: e.detail })
|
|
96
104
|
});
|
|
97
105
|
`,
|
|
98
106
|
unitRequestLeftToSpendDetails: `
|
|
99
|
-
window.addEventListener("${
|
|
100
|
-
postMessageToSDK({ type: "${
|
|
107
|
+
window.addEventListener("${_unitComponentsMessages.UnitComponentsMessage.UNIT_REQUEST_LEFT_TO_SPEND_DETAILS}", (e) => {
|
|
108
|
+
postMessageToSDK({ type: "${_unitComponentsMessages.UnitComponentsMessage.UNIT_REQUEST_LEFT_TO_SPEND_DETAILS}", details: e.detail })
|
|
101
109
|
});
|
|
102
110
|
`,
|
|
103
111
|
unitPaymentCreated: `
|
|
@@ -146,30 +154,37 @@ const LISTENERS = exports.LISTENERS = {
|
|
|
146
154
|
});
|
|
147
155
|
`,
|
|
148
156
|
unitMultiFactorAuthFinished: `
|
|
149
|
-
window.addEventListener("${
|
|
150
|
-
const response = await
|
|
151
|
-
const
|
|
157
|
+
window.addEventListener("${_unitComponentsMessages.UnitComponentsMessage.UNIT_MULTI_FACTOR_AUTH_FINISHED}", async (e) => {
|
|
158
|
+
const response = await e.detail.response;
|
|
159
|
+
const unitVerifiedCustomerToken = {
|
|
152
160
|
token: response.data.attributes.token,
|
|
153
161
|
expiration: new Date().getTime() + response.data.attributes.expiresIn * 1000,
|
|
154
|
-
}
|
|
155
|
-
|
|
162
|
+
};
|
|
163
|
+
const unitVerifiedCustomerTokenString = JSON.stringify(unitVerifiedCustomerToken);
|
|
164
|
+
window.UnitStore["unitVerifiedCustomerToken"] = unitVerifiedCustomerTokenString;
|
|
165
|
+
|
|
166
|
+
const data = {
|
|
167
|
+
unitVerifiedCustomerTokenString,
|
|
168
|
+
parentInstanceId: e.detail.parentInstanceId,
|
|
169
|
+
eventToContinue: e.detail.eventToContinue
|
|
170
|
+
}
|
|
156
171
|
|
|
157
|
-
postMessageToSDK({ type: "${
|
|
172
|
+
postMessageToSDK({ type: "${_unitComponentsMessages.UnitComponentsMessage.UNIT_MULTI_FACTOR_AUTH_FINISHED}", details: data })
|
|
158
173
|
});
|
|
159
174
|
`,
|
|
160
175
|
unitWhiteLabelAppOnLoad: `
|
|
161
|
-
window.addEventListener("${
|
|
176
|
+
window.addEventListener("${_unitComponentsMessages.UnitComponentsMessage.UNIT_WHITE_LABEL_APP_ON_LOAD}", async (event) => {
|
|
162
177
|
const response = event.detail;
|
|
163
178
|
response.then((data) => {
|
|
164
|
-
postMessageToSDK({ type: "${
|
|
179
|
+
postMessageToSDK({ type: "${_unitComponentsMessages.UnitComponentsMessage.UNIT_WHITE_LABEL_APP_ON_LOAD}", details: data.data })
|
|
165
180
|
}).catch((e) => {
|
|
166
181
|
console.log(e)
|
|
167
182
|
})
|
|
168
183
|
});
|
|
169
184
|
`,
|
|
170
185
|
unitUnauthorizedToken: `
|
|
171
|
-
window.addEventListener("${
|
|
172
|
-
postMessageToSDK({ type: "${
|
|
186
|
+
window.addEventListener("${_unitComponentsMessages.UnitComponentsMessage.UNIT_UNAUTHORIZED_TOKEN}", (e) => {
|
|
187
|
+
postMessageToSDK({ type: "${_unitComponentsMessages.UnitComponentsMessage.UNIT_UNAUTHORIZED_TOKEN}", details: "Clean the current user tokens" })
|
|
173
188
|
});
|
|
174
189
|
`,
|
|
175
190
|
unitConnectedAccountCreated: `
|
|
@@ -235,7 +250,19 @@ const LISTENERS = exports.LISTENERS = {
|
|
|
235
250
|
};
|
|
236
251
|
const DISPATCH_RENDERING_EVENT = exports.DISPATCH_RENDERING_EVENT = `
|
|
237
252
|
const dispatchRenderingEvent = (details) => {
|
|
238
|
-
const event = new CustomEvent("${
|
|
253
|
+
const event = new CustomEvent("${_unitComponentsMessages.UnitComponentsMessage.UNIT_REQUEST_RENDERING}",{ detail: JSON.parse(details) })
|
|
254
|
+
window.dispatchEvent(event)
|
|
255
|
+
}
|
|
256
|
+
`;
|
|
257
|
+
const DISPATCH_EVENT_TO_CONTINUE = exports.DISPATCH_EVENT_TO_CONTINUE = `
|
|
258
|
+
const dispatchEventToContinue = (details) => {
|
|
259
|
+
const event = new CustomEvent("${_unitComponentsMessages.UnitComponentsMessage.UNIT_EVENT_TO_CONTINUE}",{ detail: JSON.parse(details) })
|
|
260
|
+
window.dispatchEvent(event)
|
|
261
|
+
}
|
|
262
|
+
`;
|
|
263
|
+
const DISPATCH_CARD_STATUS_CHANGED = exports.DISPATCH_CARD_STATUS_CHANGED = `
|
|
264
|
+
const dispatchCardStatueChanged = (details) => {
|
|
265
|
+
const event = new CustomEvent("${_cardMessage.CardMessage.CARD_STATUS_CHANGED}",{ detail: JSON.parse(details) })
|
|
239
266
|
window.dispatchEvent(event)
|
|
240
267
|
}
|
|
241
268
|
`;
|
|
@@ -244,9 +271,9 @@ const DISPATCH_REQUEST_REFRESH = exports.DISPATCH_REQUEST_REFRESH = `
|
|
|
244
271
|
let event;
|
|
245
272
|
// we are adding "fromSDK" param to avoid infinite loop
|
|
246
273
|
if (details) {
|
|
247
|
-
event = new CustomEvent("${
|
|
274
|
+
event = new CustomEvent("${_unitComponentsMessages.UnitComponentsMessage.UNIT_REQUEST_REFRESH}",{ detail: {...JSON.parse(details), fromSDK: true} });
|
|
248
275
|
} else {
|
|
249
|
-
event = new CustomEvent("${
|
|
276
|
+
event = new CustomEvent("${_unitComponentsMessages.UnitComponentsMessage.UNIT_REQUEST_REFRESH}", { detail: { fromSDK: true }});
|
|
250
277
|
}
|
|
251
278
|
window.dispatchEvent(event)
|
|
252
279
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_paymentsMessage","require","_cardMessage","_pageMessage","
|
|
1
|
+
{"version":3,"names":["_paymentsMessage","require","_cardMessage","_pageMessage","_unitComponentsMessages","_accountMessage","_activityMessage","_plaidMessages","_payeeManagementMessage","POST_MESSAGE_TO_SDK","exports","POST_PAGE_HEIGHT","PageMessage","PAGE_HEIGHT","LISTENERS","isPageLoaded","PAGE_LOADED","requestRendering","UnitComponentsMessage","UNIT_REQUEST_RENDERING","requestRefresh","UNIT_REQUEST_REFRESH","onLoad","UNIT_ON_LOAD","requestCloseFlow","UNIT_REQUEST_CLOSE_FLOW","requestOpenLink","UNIT_REQUEST_OPEN_LINK","unitRequestDownload","UNIT_REQUEST_DOWNLOAD","cardActivated","CardMessage","CARD_ACTIVATED","cardStatusChange","CARD_STATUS_CHANGED","unitRequestExternalSdk","UNIT_REQUEST_EXTERNAL_SDK","unitRequestLeftToSpendDetails","UNIT_REQUEST_LEFT_TO_SPEND_DETAILS","unitPaymentCreated","PaymentMessage","PAYMENT_CREATED","unitPaymentInitialStageBackButtonClicked","INITIAL_STAGE_BACK_BUTTON_CLICKED","unitPaymentFinalStageDoneButtonClicked","FINAL_STAGE_DONE_BUTTON_CLICKED","unitPlaidTokenCreated","PlaidMessage","UNIT_PLAID_TOKEN_CREATED","unitAccountChanged","AccountMessage","UNIT_ACCOUNT_CHANGED","unitActivityFiltersChanged","ActivityMessage","UNIT_ACTIVITY_FILTERS_CHANGED","unitMultiFactorAuthFinished","UNIT_MULTI_FACTOR_AUTH_FINISHED","unitWhiteLabelAppOnLoad","UNIT_WHITE_LABEL_APP_ON_LOAD","unitUnauthorizedToken","UNIT_UNAUTHORIZED_TOKEN","unitConnectedAccountCreated","PayeeManagementMessage","UNIT_CONNECTED_ACCOUNT_CREATED","unitCounterpartyCreated","UNIT_COUNTERPARTY_CREATED","unitCounterpartyDeleted","UNIT_COUNTERPARTY_DELETED","unitMicroDepositConnectionCreated","UNIT_MICRO_DEPOSIT_CONNECTION_CREATED","unitMicroDepositConnectionRejected","UNIT_MICRO_DEPOSIT_CONNECTION_REJECTED","unitOpenPlaid","UNIT_OPEN_PLAID","DISPATCH_RENDERING_EVENT","DISPATCH_EVENT_TO_CONTINUE","UNIT_EVENT_TO_CONTINUE","DISPATCH_CARD_STATUS_CHANGED","DISPATCH_REQUEST_REFRESH","SET_ITEM_IN_WINDOW_UNIT_STORE","DISPATCH_ACTIVITY_FILTER_CHANGED_EVENT","DISPATCH_PLAID_RESPONSE","UNIT_PLAID_RESPONSE","DISPATCH_PLAID_EXIT","UNIT_PLAID_EXIT","DISPATCH_OPEN_PLAID","DISPATCH_OPEN_ACTIONS_MENU","DISPATCH_REQUEST_CARD_ACTION","DISPATCH_REQUEST_HIDE_SENSITIVE_DATA","DISPATCH_REQUEST_SHOW_SENSITIVE_DATA","DISPATCH_REQUEST_ACCOUNT_ACTION"],"sourceRoot":"../../../../src","sources":["scripts/html/bodyScript.ts"],"mappings":";;;;;;AAAA,IAAAA,gBAAA,GAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AACA,IAAAE,YAAA,GAAAF,OAAA;AACA,IAAAG,uBAAA,GAAAH,OAAA;AACA,IAAAI,eAAA,GAAAJ,OAAA;AACA,IAAAK,gBAAA,GAAAL,OAAA;AACA,IAAAM,cAAA,GAAAN,OAAA;AACA,IAAAO,uBAAA,GAAAP,OAAA;AAEO,MAAMQ,mBAAmB,GAAAC,OAAA,CAAAD,mBAAA,GAAG;AACnC;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;AAEM,MAAME,gBAAgB,GAAAD,OAAA,CAAAC,gBAAA,GAAG;AAChC;AACA;AACA;AACA,kCAAkCC,wBAAW,CAACC,WAAW;AACzD;AACA;AACA,CAAC;AAEM,MAAMC,SAAS,GAAAJ,OAAA,CAAAI,SAAA,GAAG;EACvBC,YAAY,EAAE;AAChB;AACA,kCAAkCH,wBAAW,CAACI,WAAW;AACzD;AACA,GAAG;EACDC,gBAAgB,EAAE;AACpB,+BAA+BC,6CAAqB,CAACC,sBAAsB;AAC3E,kCAAkCD,6CAAqB,CAACC,sBAAsB;AAC9E;AACA,GAAG;EACDC,cAAc,EAAE;AAClB,+BAA+BF,6CAAqB,CAACG,oBAAoB;AACzE;AACA,kCAAkCH,6CAAqB,CAACG,oBAAoB;AAC5E;AACA,GAAG;EACDC,MAAM,EAAE;AACV,+BAA+BJ,6CAAqB,CAACK,YAAY;AACjE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kCAAkCL,6CAAqB,CAACK,YAAY;AACpE;AACA;AACA,GAAG;EACDC,gBAAgB,EAAE;AACpB,+BAA+BN,6CAAqB,CAACO,uBAAuB;AAC5E;AACA;AACA,oCAAoCP,6CAAqB,CAACO,uBAAuB;AACjF;AACA;AACA;AACA,GAAG;EACDC,eAAe,EAAE;AACnB,+BAA+BR,6CAAqB,CAACS,sBAAsB;AAC3E,kCAAkCT,6CAAqB,CAACS,sBAAsB;AAC9E;AACA,GAAG;EACDC,mBAAmB,EAAE;AACvB,+BAA+BV,6CAAqB,CAACW,qBAAqB;AAC1E,kCAAkCX,6CAAqB,CAACW,qBAAqB;AAC7E;AACA,GAAG;EACDC,aAAa,EAAE;AACjB,+BAA+BC,wBAAW,CAACC,cAAc;AACzD;AACA;AACA,sCAAsCD,wBAAW,CAACC,cAAc;AAChE;AACA;AACA;AACA;AACA,GAAG;EACDC,gBAAgB,EAAE;AACpB,+BAA+BF,wBAAW,CAACG,mBAAmB;AAC9D;AACA;AACA,oCAAoCH,wBAAW,CAACG,mBAAmB;AACnE;AACA;AACA;AACA;AACA,GAAG;EACDC,sBAAsB,EAAE;AAC1B,6BAA6BjB,6CAAqB,CAACkB,yBAAyB;AAC5E,gCAAgClB,6CAAqB,CAACkB,yBAAyB;AAC/E;AACA,GAAG;EAEDC,6BAA6B,EAAE;AACjC,6BAA6BnB,6CAAqB,CAACoB,kCAAkC;AACrF,gCAAgCpB,6CAAqB,CAACoB,kCAAkC;AACxF;AACA,GAAG;EACDC,kBAAkB,EAAE;AACtB,6BAA6BC,+BAAc,CAACC,eAAe;AAC3D;AACA;AACA,oCAAoCD,+BAAc,CAACC,eAAe;AAClE;AACA;AACA;AACA;AACA,GAAG;EACDC,wCAAwC,EAAE;AAC5C;AACA,gCAAgCF,+BAAc,CAACG,iCAAiC;AAChF;AACA,GAAG;EAEDC,sCAAsC,EAAE;AAC1C;AACA,gCAAgCJ,+BAAc,CAACK,+BAA+B;AAC9E;AACA,GAAG;EACDC,qBAAqB,EAAE;AACzB,6BAA6BC,2BAAY,CAACC,wBAAwB;AAClE;AACA;AACA,kCAAkCD,2BAAY,CAACC,wBAAwB;AACvE;AACA;AACA;AACA;AACA,GAAG;EACDC,kBAAkB,EAAE;AACtB,+BAA+BC,8BAAc,CAACC,oBAAoB;AAClE;AACA;AACA,oCAAoCD,8BAAc,CAACC,oBAAoB;AACvE;AACA;AACA;AACA;AACA,GAAG;EACDC,0BAA0B,EAAE;AAC9B,+BAA+BC,gCAAe,CAACC,6BAA6B;AAC5E,kCAAkCD,gCAAe,CAACC,6BAA6B;AAC/E;AACA,GAAG;EACDC,2BAA2B,EAAE;AAC/B,+BAA+BrC,6CAAqB,CAACsC,+BAA+B;AACpF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,kCAAkCtC,6CAAqB,CAACsC,+BAA+B;AACvF;AACA,GAAG;EACDC,uBAAuB,EAAE;AAC3B,+BAA+BvC,6CAAqB,CAACwC,4BAA4B;AACjF;AACA;AACA,oCAAoCxC,6CAAqB,CAACwC,4BAA4B;AACtF;AACA;AACA;AACA;AACA,GAAG;EACDC,qBAAqB,EAAE;AACzB,+BAA+BzC,6CAAqB,CAAC0C,uBAAuB;AAC5E,kCAAkC1C,6CAAqB,CAAC0C,uBAAuB;AAC/E;AACA,GAAG;EACDC,2BAA2B,EAAE;AAC/B,+BAA+BC,8CAAsB,CAACC,8BAA8B;AACpF;AACA;AACA,oCAAoCD,8CAAsB,CAACC,8BAA8B;AACzF;AACA;AACA;AACA;AACA,GAAG;EACDC,uBAAuB,EAAE;AAC3B,+BAA+BF,8CAAsB,CAACG,yBAAyB;AAC/E;AACA;AACA,oCAAoCH,8CAAsB,CAACG,yBAAyB;AACpF;AACA;AACA;AACA;AACA,GAAG;EACDC,uBAAuB,EAAE;AAC3B,+BAA+BJ,8CAAsB,CAACK,yBAAyB;AAC/E;AACA;AACA,oCAAoCL,8CAAsB,CAACK,yBAAyB;AACpF;AACA;AACA;AACA;AACA,GAAG;EACDC,iCAAiC,EAAE;AACrC,+BAA+BN,8CAAsB,CAACO,qCAAqC;AAC3F;AACA;AACA,oCAAoCP,8CAAsB,CAACO,qCAAqC;AAChG;AACA;AACA;AACA;AACA,GAAG;EACDC,kCAAkC,EAAE;AACtC,+BAA+BR,8CAAsB,CAACS,sCAAsC;AAC5F;AACA;AACA,oCAAoCT,8CAAsB,CAACS,sCAAsC;AACjG;AACA;AACA;AACA;AACA,GAAG;EAEDC,aAAa,EAAE;AACjB,6BAA6BzB,2BAAY,CAAC0B,eAAe;AACzD;AACA;AACA,kCAAkC1B,2BAAY,CAAC0B,eAAe;AAC9D;AACA;AACA;AACA;AACA;AACA,CAAC;AAEM,MAAMC,wBAAwB,GAAAhE,OAAA,CAAAgE,wBAAA,GAAG;AACxC;AACA,qCAAqCxD,6CAAqB,CAACC,sBAAsB;AACjF;AACA;AACA,CAAC;AAEM,MAAMwD,0BAA0B,GAAAjE,OAAA,CAAAiE,0BAAA,GAAG;AAC1C;AACA,qCAAqCzD,6CAAqB,CAAC0D,sBAAsB;AACjF;AACA;AACA,CAAC;AAEM,MAAMC,4BAA4B,GAAAnE,OAAA,CAAAmE,4BAAA,GAAG;AAC5C;AACA,qCAAqC9C,wBAAW,CAACG,mBAAmB;AACpE;AACA;AACA,CAAC;AAEM,MAAM4C,wBAAwB,GAAApE,OAAA,CAAAoE,wBAAA,GAAG;AACxC;AACA;AACA;AACA;AACA,mCAAmC5D,6CAAqB,CAACG,oBAAoB;AAC7E;AACA,mCAAmCH,6CAAqB,CAACG,oBAAoB;AAC7E;AACA;AACA;AACA,CAAC;AAEM,MAAM0D,6BAA6B,GAAArE,OAAA,CAAAqE,6BAAA,GAAG;AAC7C;AACA;AACA;AACA,CAAC;AAEM,MAAMC,sCAAsC,GAAAtE,OAAA,CAAAsE,sCAAA,GAAG;AACtD;AACA;AACA;AACA;AACA,CAAC;AAEM,MAAMC,uBAAuB,GAAAvE,OAAA,CAAAuE,uBAAA,GAAG;AACvC;AACA,qCAAqClC,2BAAY,CAACmC,mBAAmB;AACrE;AACA;AACA,CAAC;AAEM,MAAMC,mBAAmB,GAAAzE,OAAA,CAAAyE,mBAAA,GAAG;AACnC;AACA,qCAAqCpC,2BAAY,CAACqC,eAAe;AACjE;AACA;AACA,CAAC;AAEM,MAAMC,mBAAmB,GAAA3E,OAAA,CAAA2E,mBAAA,GAAG;AACnC;AACA,qCAAqCtC,2BAAY,CAAC0B,eAAe;AACjE;AACA;AACA,CAAC;AAEM,MAAMa,0BAA0B,GAAA5E,OAAA,CAAA4E,0BAAA,GAAG;AAC1C;AACA;AACA;AACA,CAAC;AAEM,MAAMC,4BAA4B,GAAA7E,OAAA,CAAA6E,4BAAA,GAAG;AAC5C;AACA;AACA;AACA,CAAC;AAEM,MAAMC,oCAAoC,GAAA9E,OAAA,CAAA8E,oCAAA,GAAG;AACpD;AACA;AACA;AACA,CAAC;AAEM,MAAMC,oCAAoC,GAAA/E,OAAA,CAAA+E,oCAAA,GAAG;AACpD;AACA;AACA;AACA,CAAC;AAEM,MAAMC,+BAA+B,GAAAhF,OAAA,CAAAgF,+BAAA,GAAG;AAC/C;AACA;AACA;AACA,CAAC","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_reactNative","require","getUrl","source","Platform","OS","fileName","relativeDirPath","assetDirRelativePath","getFontFace","fontFamily","fontWeight","sources","numOfSources","length","sourcesString","map","index","suffix","url","format","join","valueOf","getFontFacesString","fonts","fontFaces","Object","entries","forEach","familyName","familyFonts","fontData","push","exports"],"sourceRoot":"../../../../src","sources":["scripts/html/fontFaces.ts"],"mappings":";;;;;;AAAA,IAAAA,YAAA,GAAAC,OAAA;AAGA,MAAMC,MAAM,GAAIC,MAAoB,IAAa;EAC/C,IAAIC,qBAAQ,CAACC,EAAE,IAAI,KAAK,EAAE;IACxB,
|
|
1
|
+
{"version":3,"names":["_reactNative","require","getUrl","source","Platform","OS","fileName","relativeDirPath","assetDirRelativePath","getFontFace","fontFamily","fontWeight","sources","numOfSources","length","sourcesString","map","index","suffix","url","format","join","valueOf","getFontFacesString","fonts","fontFaces","Object","entries","forEach","familyName","familyFonts","fontData","push","exports"],"sourceRoot":"../../../../src","sources":["scripts/html/fontFaces.ts"],"mappings":";;;;;;AAAA,IAAAA,YAAA,GAAAC,OAAA;AAGA,MAAMC,MAAM,GAAIC,MAAoB,IAAa;EAC/C,IAAIC,qBAAQ,CAACC,EAAE,IAAI,KAAK,EAAE;IACxB,OAAO,QAAQF,MAAM,CAACG,QAAQ,IAAI;EACpC;;EAEA;EACA,IAAIC,eAAe,GAAGJ,MAAM,CAACK,oBAAoB;EACjD,IAAIL,MAAM,CAACK,oBAAoB,CAAC,CAAC,CAAC,CAAC,KAAK,GAAG,EAAE;IAC3CD,eAAe,GAAG,GAAGJ,MAAM,CAACK,oBAAoB,GAAG;EACrD;EACA,IAAIL,MAAM,CAACK,oBAAoB,CAAC,CAAC,CAAC,KAAK,GAAG,EAAE;IAC1CD,eAAe,GAAG,IAAIJ,MAAM,CAACK,oBAAoB,EAAE;EACrD;EAEA,OAAO,6BAA6BD,eAAe,GAAGJ,MAAM,CAACG,QAAQ,IAAI;AAC3E,CAAC;AACD,MAAMG,WAAW,GAAGA,CAACC,UAAkB,EAAEC,UAAsB,EAAEC,OAAuB,KAAa;EACnG,MAAMC,YAAY,GAAGD,OAAO,CAACE,MAAM;EAEnC,MAAMC,aAAa,GAAGH,OAAO,CAC1BI,GAAG,CAAC,CAACb,MAAM,EAAEc,KAAK,KAAK;IACtB,MAAMC,MAAM,GAAGD,KAAK,KAAKJ,YAAY,GAAG,CAAC,GAAG,GAAG,GAAG,GAAG;IACrD,MAAMM,GAAG,GAAGjB,MAAM,CAACC,MAAM,CAAC;IAC1B,MAAMiB,MAAM,GAAGjB,MAAM,EAAEiB,MAAM,GAAG,WAAWjB,MAAM,CAACiB,MAAM,IAAI,GAAG,EAAE;IACjE,OAAO,GAAGD,GAAG,IAAIC,MAAM,GAAGF,MAAM,EAAE;EACpC,CAAC,CAAC,CACDG,IAAI,CAAC,IAAI,CAAC;EAEb,OAAO;AACT;AACA,sBAAsBX,UAAU;AAChC,aAAaK,aAAa;AAC1B,qBAAqBJ,UAAU,CAACW,OAAO,CAAC,CAAC;AACzC;AACA,GAAG;AACH,CAAC;AAEM,MAAMC,kBAAkB,GAAIC,KAAe,IAAa;EAC7D,IAAI,CAACA,KAAK,EAAE,OAAO,EAAE;EAErB,MAAMC,SAAmB,GAAG,EAAE;;EAE9B;EACA;EACAC,MAAM,CAACC,OAAO,CAACH,KAAK,CAAC,CAACI,OAAO,CAAC,CAAC,CAACC,UAAU,EAAEC,WAAW,CAAC,KAAK;IAC3DA,WAAW,CAACF,OAAO,CAAEG,QAAoB,IAAK;MAC5CN,SAAS,CAACO,IAAI,CAACvB,WAAW,CAACoB,UAAU,EAAEE,QAAQ,CAACpB,UAAU,EAAEoB,QAAQ,CAACnB,OAAO,CAAC,CAAC;IAChF,CAAC,CAAC;EACJ,CAAC,CAAC;;EAEF;EACA,OAAOa,SAAS,CAACJ,IAAI,CAAC,IAAI,CAAC;AAC7B,CAAC;AAACY,OAAA,CAAAV,kBAAA,GAAAA,kBAAA","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_toolkit","require","_bottomSheet","initialState","isBottomSheetActive","isComponentLoading","shouldShowBottomSheet","shouldEnableBottomSheetScroll","nativePlace","BottomSheetNativePlaceType","overFullScreen","componentHeight","BottomSheetSlice","createSlice","name","reducers","setIsBottomSheetActive","state","action","payload","setIsComponentLoading","setShouldShowBottomSheet","setNativePlace","setComponentHeight","setShouldEnableBottomSheetScroll","setScrollState","scrollState","resetBottomSheetSlice","actions","exports","selectConfiguration","bottomSheet","_default","default","reducer"],"sourceRoot":"../../../src","sources":["slices/BottomSheetSlice.ts"],"mappings":";;;;;;AAAA,IAAAA,QAAA,GAAAC,OAAA;AAEA,IAAAC,YAAA,GAAAD,OAAA;AAYA,MAAME,YAA8B,GAAG;EACrCC,mBAAmB,EAAE,KAAK;EAC1BC,kBAAkB,EAAE,KAAK;EACzBC,qBAAqB,EAAE,KAAK;EAC5BC,6BAA6B,EAAE,IAAI;EACnCC,WAAW,EAAEC,uCAA0B,CAACC,cAAc;EACtDC,eAAe,EAAE;AACnB,CAAC;AAED,MAAMC,gBAAgB,GAAG,IAAAC,oBAAW,EAAC;EACnCC,IAAI,EAAE,aAAa;EACnBX,YAAY,EAAEA,YAAY;EAC1BY,QAAQ,EAAE;IACRC,sBAAsBA,CAACC,KAAK,EAAEC,MAA8B,EAAE;MAC5DD,KAAK,CAACb,mBAAmB,GAAGc,MAAM,CAACC,OAAO;IAC5C,CAAC;IACDC,qBAAqBA,CAACH,KAAK,EAAEC,MAA8B,EAAE;MAC3DD,KAAK,CAACZ,kBAAkB,GAAGa,MAAM,CAACC,OAAO;IAC3C,CAAC;IACDE,wBAAwBA,CAACJ,KAAK,EAAEC,MAA8B,EAAE;MAC9DD,KAAK,CAACX,qBAAqB,GAAGY,MAAM,CAACC,OAAO;IAC9C,CAAC;IAEDG,cAAcA,CAACL,KAAK,EAAEC,MAAiD,EAAE;MACvED,KAAK,CAACT,WAAW,GAAGU,MAAM,CAACC,OAAO;IACpC,CAAC;IACDI,kBAAkBA,CAACN,KAAK,EAAEC,MAA6B,EAAE;MACvDD,KAAK,CAACN,eAAe,GAAGO,MAAM,CAACC,OAAO;IACxC,CAAC;IACDK,gCAAgCA,CAACP,KAAK,EAAEC,MAA8B,EAAE;MACtED,KAAK,CAACV,6BAA6B,GAAGW,MAAM,CAACC,OAAO;IACtD,CAAC;IAEDM,cAAcA,CAACR,KAAK,EAAEC,MAAkC,EAAE;MACxDD,KAAK,CAACS,WAAW,GAAGR,MAAM,CAACC,OAAO;IACpC,CAAC;IAEDQ,qBAAqBA,CAACV,KAAK,EAAE;MAC3B;MACAA,KAAK,CAACZ,kBAAkB,GAAGF,YAAY,CAACE,kBAAkB;MAC1DY,KAAK,CAACX,qBAAqB,GAAGH,YAAY,CAACG,qBAAqB;MAChEW,KAAK,CAACT,WAAW,GAAGL,YAAY,CAACK,WAAW;MAC5CS,KAAK,CAACN,eAAe,GAAGR,YAAY,CAACQ,eAAe;MACpDM,KAAK,CAACV,6BAA6B,GAAGJ,YAAY,CAACI,6BAA6B;MAChFU,KAAK,CAACS,WAAW,GAAGvB,YAAY,CAACuB,WAAW;IAC9C;EACF;AAEF,CAAC,CAAC;AAEK,MAAM;EACXV,sBAAsB;EAAEI,qBAAqB;EAC7CC,wBAAwB;EAAEC,cAAc;EACxCC,kBAAkB;EAClBC,gCAAgC;EAAEC,cAAc;EAAEE;AACpD,CAAC,GAAGf,gBAAgB,CAACgB,OAAO;AAACC,OAAA,CAAAF,qBAAA,GAAAA,qBAAA;AAAAE,OAAA,CAAAJ,cAAA,GAAAA,cAAA;AAAAI,OAAA,CAAAL,gCAAA,GAAAA,gCAAA;AAAAK,OAAA,CAAAN,kBAAA,GAAAA,kBAAA;AAAAM,OAAA,CAAAP,cAAA,GAAAA,cAAA;AAAAO,OAAA,CAAAR,wBAAA,GAAAA,wBAAA;AAAAQ,OAAA,CAAAT,qBAAA,GAAAA,qBAAA;AAAAS,OAAA,CAAAb,sBAAA,GAAAA,sBAAA;AACtB,MAAMc,mBAAmB,GAAIb,KAAgB,IAAKA,KAAK,CAACc,WAAW;AAACF,OAAA,CAAAC,mBAAA,GAAAA,mBAAA;AAAA,IAAAE,QAAA,GAAAH,OAAA,CAAAI,OAAA,GAC5DrB,gBAAgB,CAACsB,OAAO"}
|
|
1
|
+
{"version":3,"names":["_toolkit","require","_bottomSheet","initialState","isBottomSheetActive","isComponentLoading","shouldShowBottomSheet","shouldEnableBottomSheetScroll","nativePlace","BottomSheetNativePlaceType","overFullScreen","componentHeight","BottomSheetSlice","createSlice","name","reducers","setIsBottomSheetActive","state","action","payload","setIsComponentLoading","setShouldShowBottomSheet","setNativePlace","setComponentHeight","setShouldEnableBottomSheetScroll","setScrollState","scrollState","resetBottomSheetSlice","actions","exports","selectConfiguration","bottomSheet","_default","default","reducer"],"sourceRoot":"../../../src","sources":["slices/BottomSheetSlice.ts"],"mappings":";;;;;;AAAA,IAAAA,QAAA,GAAAC,OAAA;AAEA,IAAAC,YAAA,GAAAD,OAAA;AAYA,MAAME,YAA8B,GAAG;EACrCC,mBAAmB,EAAE,KAAK;EAC1BC,kBAAkB,EAAE,KAAK;EACzBC,qBAAqB,EAAE,KAAK;EAC5BC,6BAA6B,EAAE,IAAI;EACnCC,WAAW,EAAEC,uCAA0B,CAACC,cAAc;EACtDC,eAAe,EAAE;AACnB,CAAC;AAED,MAAMC,gBAAgB,GAAG,IAAAC,oBAAW,EAAC;EACnCC,IAAI,EAAE,aAAa;EACnBX,YAAY,EAAEA,YAAY;EAC1BY,QAAQ,EAAE;IACRC,sBAAsBA,CAACC,KAAK,EAAEC,MAA8B,EAAE;MAC5DD,KAAK,CAACb,mBAAmB,GAAGc,MAAM,CAACC,OAAO;IAC5C,CAAC;IACDC,qBAAqBA,CAACH,KAAK,EAAEC,MAA8B,EAAE;MAC3DD,KAAK,CAACZ,kBAAkB,GAAGa,MAAM,CAACC,OAAO;IAC3C,CAAC;IACDE,wBAAwBA,CAACJ,KAAK,EAAEC,MAA8B,EAAE;MAC9DD,KAAK,CAACX,qBAAqB,GAAGY,MAAM,CAACC,OAAO;IAC9C,CAAC;IAEDG,cAAcA,CAACL,KAAK,EAAEC,MAAiD,EAAE;MACvED,KAAK,CAACT,WAAW,GAAGU,MAAM,CAACC,OAAO;IACpC,CAAC;IACDI,kBAAkBA,CAACN,KAAK,EAAEC,MAA6B,EAAE;MACvDD,KAAK,CAACN,eAAe,GAAGO,MAAM,CAACC,OAAO;IACxC,CAAC;IACDK,gCAAgCA,CAACP,KAAK,EAAEC,MAA8B,EAAE;MACtED,KAAK,CAACV,6BAA6B,GAAGW,MAAM,CAACC,OAAO;IACtD,CAAC;IAEDM,cAAcA,CAACR,KAAK,EAAEC,MAAkC,EAAE;MACxDD,KAAK,CAACS,WAAW,GAAGR,MAAM,CAACC,OAAO;IACpC,CAAC;IAEDQ,qBAAqBA,CAACV,KAAK,EAAE;MAC3B;MACAA,KAAK,CAACZ,kBAAkB,GAAGF,YAAY,CAACE,kBAAkB;MAC1DY,KAAK,CAACX,qBAAqB,GAAGH,YAAY,CAACG,qBAAqB;MAChEW,KAAK,CAACT,WAAW,GAAGL,YAAY,CAACK,WAAW;MAC5CS,KAAK,CAACN,eAAe,GAAGR,YAAY,CAACQ,eAAe;MACpDM,KAAK,CAACV,6BAA6B,GAAGJ,YAAY,CAACI,6BAA6B;MAChFU,KAAK,CAACS,WAAW,GAAGvB,YAAY,CAACuB,WAAW;IAC9C;EACF;AAEF,CAAC,CAAC;AAEK,MAAM;EACXV,sBAAsB;EAAEI,qBAAqB;EAC7CC,wBAAwB;EAAEC,cAAc;EACxCC,kBAAkB;EAClBC,gCAAgC;EAAEC,cAAc;EAAEE;AACpD,CAAC,GAAGf,gBAAgB,CAACgB,OAAO;AAACC,OAAA,CAAAF,qBAAA,GAAAA,qBAAA;AAAAE,OAAA,CAAAJ,cAAA,GAAAA,cAAA;AAAAI,OAAA,CAAAL,gCAAA,GAAAA,gCAAA;AAAAK,OAAA,CAAAN,kBAAA,GAAAA,kBAAA;AAAAM,OAAA,CAAAP,cAAA,GAAAA,cAAA;AAAAO,OAAA,CAAAR,wBAAA,GAAAA,wBAAA;AAAAQ,OAAA,CAAAT,qBAAA,GAAAA,qBAAA;AAAAS,OAAA,CAAAb,sBAAA,GAAAA,sBAAA;AACtB,MAAMc,mBAAmB,GAAIb,KAAgB,IAAKA,KAAK,CAACc,WAAW;AAACF,OAAA,CAAAC,mBAAA,GAAAA,mBAAA;AAAA,IAAAE,QAAA,GAAAH,OAAA,CAAAI,OAAA,GAC5DrB,gBAAgB,CAACsB,OAAO","ignoreList":[]}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.setUnitScript = exports.setTheme = exports.setLanguage = exports.selectConfiguration = exports.default = void 0;
|
|
6
|
+
exports.setUnitScript = exports.setTheme = exports.setLanguage = exports.setCustomerToken = exports.selectConfiguration = exports.default = void 0;
|
|
7
7
|
var _toolkit = require("@reduxjs/toolkit");
|
|
8
8
|
const initialState = {};
|
|
9
9
|
const ConfigurationSlice = (0, _toolkit.createSlice)({
|
|
@@ -18,14 +18,19 @@ const ConfigurationSlice = (0, _toolkit.createSlice)({
|
|
|
18
18
|
},
|
|
19
19
|
setLanguage(state, action) {
|
|
20
20
|
state.language = action.payload;
|
|
21
|
+
},
|
|
22
|
+
setCustomerToken(state, action) {
|
|
23
|
+
state.customerToken = action.payload;
|
|
21
24
|
}
|
|
22
25
|
}
|
|
23
26
|
});
|
|
24
27
|
const {
|
|
25
28
|
setUnitScript,
|
|
26
29
|
setLanguage,
|
|
27
|
-
setTheme
|
|
30
|
+
setTheme,
|
|
31
|
+
setCustomerToken
|
|
28
32
|
} = ConfigurationSlice.actions;
|
|
33
|
+
exports.setCustomerToken = setCustomerToken;
|
|
29
34
|
exports.setTheme = setTheme;
|
|
30
35
|
exports.setLanguage = setLanguage;
|
|
31
36
|
exports.setUnitScript = setUnitScript;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_toolkit","require","initialState","ConfigurationSlice","createSlice","name","reducers","setUnitScript","state","action","unitScript","payload","setTheme","theme","setLanguage","language","actions","exports","selectConfiguration","configuration","_default","default","reducer"],"sourceRoot":"../../../src","sources":["slices/ConfigurationSlice.ts"],"mappings":";;;;;;AAAA,IAAAA,QAAA,GAAAC,OAAA;
|
|
1
|
+
{"version":3,"names":["_toolkit","require","initialState","ConfigurationSlice","createSlice","name","reducers","setUnitScript","state","action","unitScript","payload","setTheme","theme","setLanguage","language","setCustomerToken","customerToken","actions","exports","selectConfiguration","configuration","_default","default","reducer"],"sourceRoot":"../../../src","sources":["slices/ConfigurationSlice.ts"],"mappings":";;;;;;AAAA,IAAAA,QAAA,GAAAC,OAAA;AAUA,MAAMC,YAAgC,GAAG,CAAC,CAAC;AAE3C,MAAMC,kBAAkB,GAAG,IAAAC,oBAAW,EAAC;EACrCC,IAAI,EAAE,eAAe;EACrBH,YAAY,EAAEA,YAAY;EAC1BI,QAAQ,EAAE;IACRC,aAAaA,CAACC,KAAK,EAAEC,MAAyC,EAAE;MAC9DD,KAAK,CAACE,UAAU,GAAGD,MAAM,CAACE,OAAO;IACnC,CAAC;IACDC,QAAQA,CAACJ,KAAK,EAAEC,MAAyC,EAAE;MACzDD,KAAK,CAACK,KAAK,GAAGJ,MAAM,CAACE,OAAO;IAC9B,CAAC;IACDG,WAAWA,CAACN,KAAK,EAAEC,MAAyC,EAAE;MAC5DD,KAAK,CAACO,QAAQ,GAAGN,MAAM,CAACE,OAAO;IACjC,CAAC;IACDK,gBAAgBA,CAACR,KAAK,EAAEC,MAAyC,EAAE;MACjED,KAAK,CAACS,aAAa,GAAGR,MAAM,CAACE,OAAO;IACtC;EACF;AACF,CAAC,CAAC;AAEK,MAAM;EAAEJ,aAAa;EAAEO,WAAW;EAAEF,QAAQ;EAAEI;AAAiB,CAAC,GAAGb,kBAAkB,CAACe,OAAO;AAACC,OAAA,CAAAH,gBAAA,GAAAA,gBAAA;AAAAG,OAAA,CAAAP,QAAA,GAAAA,QAAA;AAAAO,OAAA,CAAAL,WAAA,GAAAA,WAAA;AAAAK,OAAA,CAAAZ,aAAA,GAAAA,aAAA;AAC9F,MAAMa,mBAAmB,GAAIZ,KAAgB,IAAKA,KAAK,CAACa,aAAa;AAACF,OAAA,CAAAC,mBAAA,GAAAA,mBAAA;AAAA,IAAAE,QAAA,GAAAH,OAAA,CAAAI,OAAA,GAC9DpB,kBAAkB,CAACqB,OAAO","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_toolkit","require","initialState","SharedEventsSlice","createSlice","name","reducers","setEvent","state","action","event","payload","actions","exports","selectSharedEvents","sharedEvents","_default","default","reducer"],"sourceRoot":"../../../src","sources":["slices/SharedEventsSlice.ts"],"mappings":";;;;;;AAEA,IAAAA,QAAA,GAAAC,OAAA;AAFA;;
|
|
1
|
+
{"version":3,"names":["_toolkit","require","initialState","SharedEventsSlice","createSlice","name","reducers","setEvent","state","action","event","payload","actions","exports","selectSharedEvents","sharedEvents","_default","default","reducer"],"sourceRoot":"../../../src","sources":["slices/SharedEventsSlice.ts"],"mappings":";;;;;;AAEA,IAAAA,QAAA,GAAAC,OAAA;AAFA;;AAiFA;;AAmBA,MAAMC,YAA+B,GAAG,CAAC,CAAC;AAE1C,MAAMC,iBAAiB,GAAG,IAAAC,oBAAW,EAAC;EACpCC,IAAI,EAAE,cAAc;EACpBH,YAAY,EAAEA,YAAY;EAC1BI,QAAQ,EAAE;IACRC,QAAQA,CAACC,KAAK,EAAEC,MAAkC,EAAE;MAClDD,KAAK,CAACE,KAAK,GAAGD,MAAM,CAACE,OAAO;IAC9B;EACF;AAEF,CAAC,CAAC;AAEK,MAAM;EAAEJ;AAAS,CAAC,GAAGJ,iBAAiB,CAACS,OAAO;AAACC,OAAA,CAAAN,QAAA,GAAAA,QAAA;AAC/C,MAAMO,kBAAkB,GAAIN,KAAgB,IAAKA,KAAK,CAACO,YAAY;AAACF,OAAA,CAAAC,kBAAA,GAAAA,kBAAA;AAAA,IAAAE,QAAA,GAAAH,OAAA,CAAAI,OAAA,GAC5Dd,iBAAiB,CAACe,OAAO","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_toolkit","require","initialState","signedNonce","pushProvisioningSlice","createSlice","name","reducers","setSignedNonce","state","action","payload","actions","exports","selectWallet","wallet","_default","default","reducer"],"sourceRoot":"../../../src","sources":["slices/pushProvisioningSlice.ts"],"mappings":";;;;;;AAAA,IAAAA,QAAA,GAAAC,OAAA;AAOA,MAAMC,YAAmC,GAAG;EAC1CC,WAAW,EAAE;AACf,CAAC;AAED,MAAMC,qBAAqB,GAAG,IAAAC,oBAAW,EAAC;EACxCC,IAAI,EAAE,QAAQ;EACdJ,YAAY,EAAEA,YAAY;EAC1BK,QAAQ,EAAE;IACRC,cAAcA,CAACC,KAAK,EAAEC,MAAoC,EAAE;MAC1DD,KAAK,CAACN,WAAW,GAAGO,MAAM,CAACC,OAAO;IACpC;EACF;AACF,CAAC,CAAC;AAEK,MAAM;EAAEH;AAAe,CAAC,GAAGJ,qBAAqB,CAACQ,OAAO;AAACC,OAAA,CAAAL,cAAA,GAAAA,cAAA;AACzD,MAAMM,YAAY,GAAIL,KAAgB,IAAKA,KAAK,CAACM,MAAM;AAACF,OAAA,CAAAC,YAAA,GAAAA,YAAA;AAAA,IAAAE,QAAA,GAAAH,OAAA,CAAAI,OAAA,GAChDb,qBAAqB,CAACc,OAAO"}
|
|
1
|
+
{"version":3,"names":["_toolkit","require","initialState","signedNonce","pushProvisioningSlice","createSlice","name","reducers","setSignedNonce","state","action","payload","actions","exports","selectWallet","wallet","_default","default","reducer"],"sourceRoot":"../../../src","sources":["slices/pushProvisioningSlice.ts"],"mappings":";;;;;;AAAA,IAAAA,QAAA,GAAAC,OAAA;AAOA,MAAMC,YAAmC,GAAG;EAC1CC,WAAW,EAAE;AACf,CAAC;AAED,MAAMC,qBAAqB,GAAG,IAAAC,oBAAW,EAAC;EACxCC,IAAI,EAAE,QAAQ;EACdJ,YAAY,EAAEA,YAAY;EAC1BK,QAAQ,EAAE;IACRC,cAAcA,CAACC,KAAK,EAAEC,MAAoC,EAAE;MAC1DD,KAAK,CAACN,WAAW,GAAGO,MAAM,CAACC,OAAO;IACpC;EACF;AACF,CAAC,CAAC;AAEK,MAAM;EAAEH;AAAe,CAAC,GAAGJ,qBAAqB,CAACQ,OAAO;AAACC,OAAA,CAAAL,cAAA,GAAAA,cAAA;AACzD,MAAMM,YAAY,GAAIL,KAAgB,IAAKA,KAAK,CAACM,MAAM;AAACF,OAAA,CAAAC,YAAA,GAAAA,YAAA;AAAA,IAAAE,QAAA,GAAAH,OAAA,CAAAI,OAAA,GAChDb,qBAAqB,CAACc,OAAO","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_store","require","Object","keys","forEach","key","exports","defineProperty","enumerable","get"],"sourceRoot":"../../../src","sources":["store/index.ts"],"mappings":";;;;;AAAA,IAAAA,MAAA,GAAAC,OAAA;AAAAC,MAAA,CAAAC,IAAA,CAAAH,MAAA,EAAAI,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAA,GAAA,IAAAC,OAAA,IAAAA,OAAA,CAAAD,GAAA,MAAAL,MAAA,CAAAK,GAAA;EAAAH,MAAA,CAAAK,cAAA,CAAAD,OAAA,EAAAD,GAAA;IAAAG,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAT,MAAA,CAAAK,GAAA;IAAA;EAAA;AAAA"}
|
|
1
|
+
{"version":3,"names":["_store","require","Object","keys","forEach","key","exports","defineProperty","enumerable","get"],"sourceRoot":"../../../src","sources":["store/index.ts"],"mappings":";;;;;AAAA,IAAAA,MAAA,GAAAC,OAAA;AAAAC,MAAA,CAAAC,IAAA,CAAAH,MAAA,EAAAI,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAA,GAAA,IAAAC,OAAA,IAAAA,OAAA,CAAAD,GAAA,MAAAL,MAAA,CAAAK,GAAA;EAAAH,MAAA,CAAAK,cAAA,CAAAD,OAAA,EAAAD,GAAA;IAAAG,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAT,MAAA,CAAAK,GAAA;IAAA;EAAA;AAAA","ignoreList":[]}
|
|
@@ -9,7 +9,7 @@ var _pushProvisioningSlice = _interopRequireDefault(require("../slices/pushProvi
|
|
|
9
9
|
var _ConfigurationSlice = _interopRequireDefault(require("../slices/ConfigurationSlice"));
|
|
10
10
|
var _SharedEventsSlice = _interopRequireDefault(require("../slices/SharedEventsSlice"));
|
|
11
11
|
var _BottomSheetSlice = _interopRequireDefault(require("../slices/BottomSheetSlice"));
|
|
12
|
-
function _interopRequireDefault(
|
|
12
|
+
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
13
13
|
const store = exports.store = (0, _toolkit.configureStore)({
|
|
14
14
|
reducer: {
|
|
15
15
|
wallet: _pushProvisioningSlice.default,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_toolkit","require","_pushProvisioningSlice","_interopRequireDefault","_ConfigurationSlice","_SharedEventsSlice","_BottomSheetSlice","
|
|
1
|
+
{"version":3,"names":["_toolkit","require","_pushProvisioningSlice","_interopRequireDefault","_ConfigurationSlice","_SharedEventsSlice","_BottomSheetSlice","e","__esModule","default","store","exports","configureStore","reducer","wallet","configuration","sharedEvents","bottomSheet"],"sourceRoot":"../../../src","sources":["store/store.ts"],"mappings":";;;;;;AAAA,IAAAA,QAAA,GAAAC,OAAA;AACA,IAAAC,sBAAA,GAAAC,sBAAA,CAAAF,OAAA;AACA,IAAAG,mBAAA,GAAAD,sBAAA,CAAAF,OAAA;AACA,IAAAI,kBAAA,GAAAF,sBAAA,CAAAF,OAAA;AACA,IAAAK,iBAAA,GAAAH,sBAAA,CAAAF,OAAA;AAAqD,SAAAE,uBAAAI,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAE9C,MAAMG,KAAK,GAAAC,OAAA,CAAAD,KAAA,GAAG,IAAAE,uBAAc,EAAC;EAClCC,OAAO,EAAE;IACPC,MAAM,EAANA,8BAAM;IACNC,aAAa,EAAbA,2BAAa;IACbC,YAAY,EAAZA,0BAAY;IACZC,WAAW,EAAXA;EACF;AACF,CAAC,CAAC","ignoreList":[]}
|
|
@@ -5,7 +5,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.getFontName = void 0;
|
|
7
7
|
var _shared = require("../types/shared");
|
|
8
|
-
var
|
|
8
|
+
var _UnitComponentsSdkManager = require("../unitComponentsSdkManager/UnitComponentsSdkManager");
|
|
9
9
|
const getFontWeightName = (familyFonts, fontWeight) => {
|
|
10
10
|
/**
|
|
11
11
|
* Given family variants and the required weight
|
|
@@ -56,7 +56,7 @@ const getFontName = (fontFamily, fontWeight) => {
|
|
|
56
56
|
* Then, return a possible font.
|
|
57
57
|
*/
|
|
58
58
|
|
|
59
|
-
const fontsInApp =
|
|
59
|
+
const fontsInApp = _UnitComponentsSdkManager.UnitComponentsSDK.getFonts();
|
|
60
60
|
if (!fontsInApp) {
|
|
61
61
|
throw new Error('Fonts are not found in the app');
|
|
62
62
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_shared","require","
|
|
1
|
+
{"version":3,"names":["_shared","require","_UnitComponentsSdkManager","getFontWeightName","familyFonts","fontWeight","fontWeightNumber","Number","selectedFontWeight","FontWeight","Regular","valueOf","minDistance","forEach","fontData","currDistance","Math","abs","Thin","ExtraLight","Light","Medium","SemiBold","Bold","ExtraBold","Black","getFontName","fontFamily","fontsInApp","UnitComponentsSDK","getFonts","Error","fontWeightName","exports"],"sourceRoot":"../../../src","sources":["styles/fonts.ts"],"mappings":";;;;;;AAAA,IAAAA,OAAA,GAAAC,OAAA;AACA,IAAAC,yBAAA,GAAAD,OAAA;AAEA,MAAME,iBAAiB,GAAGA,CAACC,WAAyB,EAAEC,UAA4B,KAAK;EACrF;AACF;AACA;AACA;EACE,IAAI,CAACA,UAAU,IAAIA,UAAU,KAAK,QAAQ,EAAE,OAAO,SAAS;EAE5D,IAAIA,UAAU,KAAK,MAAM,EAAE,OAAO,MAAM;EAExC,MAAMC,gBAAgB,GAAGC,MAAM,CAACF,UAAU,CAAC;;EAE3C;EACA,IAAIG,kBAAkB,GAAGC,kBAAU,CAACC,OAAO,CAACC,OAAO,CAAC,CAAC;EACrD,IAAIC,WAAW,GAAG,IAAI;EAEtBR,WAAW,CAACS,OAAO,CAAEC,QAAoB,IAAK;IAC5C,MAAMC,YAAY,GAAGC,IAAI,CAACC,GAAG,CAACH,QAAQ,CAACT,UAAU,GAAGC,gBAAgB,CAAC;IACrE,IAAIS,YAAY,GAAGH,WAAW,EAAE;MAC9BA,WAAW,GAAGG,YAAY;MAC1BP,kBAAkB,GAAGM,QAAQ,CAACT,UAAU,CAACM,OAAO,CAAC,CAAC;IACpD;EACF,CAAC,CAAC;;EAEF;EACA,QAAQH,kBAAkB;IACxB,KAAKC,kBAAU,CAACS,IAAI;MAClB,OAAO,MAAM;IACf,KAAKT,kBAAU,CAACU,UAAU;MACxB,OAAO,YAAY;IACrB,KAAKV,kBAAU,CAACW,KAAK;MACnB,OAAO,OAAO;IAChB,KAAKX,kBAAU,CAACC,OAAO;MACrB,OAAO,SAAS;IAClB,KAAKD,kBAAU,CAACY,MAAM;MACpB,OAAO,QAAQ;IACjB,KAAKZ,kBAAU,CAACa,QAAQ;MACtB,OAAO,UAAU;IACnB,KAAKb,kBAAU,CAACc,IAAI;MAClB,OAAO,MAAM;IACf,KAAKd,kBAAU,CAACe,SAAS;MACvB,OAAO,WAAW;IACpB,KAAKf,kBAAU,CAACgB,KAAK;MACnB,OAAO,OAAO;IAChB;MACE,OAAO,SAAS;EACpB;AACF,CAAC;AAEM,MAAMC,WAAW,GAAGA,CAACC,UAAkB,EAAEtB,UAA2B,KAAa;EACtF;AACF;AACA;AACA;;EAEE,MAAMuB,UAAU,GAAGC,2CAAiB,CAACC,QAAQ,CAAC,CAAC;EAC/C,IAAI,CAACF,UAAU,EAAE;IACf,MAAM,IAAIG,KAAK,CAAC,gCAAgC,CAAC;EACnD;EAEA,MAAM3B,WAAW,GAAGwB,UAAU,CAACD,UAAU,CAAC;EAC1C,IAAI,CAACvB,WAAW,EAAE;IAChB,MAAM,IAAI2B,KAAK,CAAC,eAAeJ,UAAU,+BAA+B,CAAC;EAC3E;EAEA,MAAMK,cAAc,GAAG7B,iBAAiB,CAACC,WAAW,EAAEC,UAAU,CAAC;EACjE,OAAO,GAAGsB,UAAU,IAAIK,cAAc,EAAE;AAC1C,CAAC;AAACC,OAAA,CAAAP,WAAA,GAAAA,WAAA","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["VARIABLES","exports","COLORS","WHITE","BLACK","BLUE","GREY","SILVER_FLAKE","PINK","PURPLE","GREEN"],"sourceRoot":"../../../src","sources":["styles/variables.ts"],"mappings":";;;;;;AAAO,MAAMA,SAAS,GAAAC,OAAA,CAAAD,SAAA,GAAG;EACvBE,MAAM,EAAE;IACNC,KAAK,EAAE,SAAS;IAChBC,KAAK,EAAE,SAAS;IAChBC,IAAI,EAAE,SAAS;IACfC,IAAI,EAAE,SAAS;IACfC,YAAY,EAAE,SAAS;IACvBC,IAAI,EAAE,SAAS;IACfC,MAAM,EAAE,SAAS;IACjBC,KAAK,EAAE;EACT;AACF,CAAC"}
|
|
1
|
+
{"version":3,"names":["VARIABLES","exports","COLORS","WHITE","BLACK","BLUE","GREY","SILVER_FLAKE","PINK","PURPLE","GREEN"],"sourceRoot":"../../../src","sources":["styles/variables.ts"],"mappings":";;;;;;AAAO,MAAMA,SAAS,GAAAC,OAAA,CAAAD,SAAA,GAAG;EACvBE,MAAM,EAAE;IACNC,KAAK,EAAE,SAAS;IAChBC,KAAK,EAAE,SAAS;IAChBC,IAAI,EAAE,SAAS;IACfC,IAAI,EAAE,SAAS;IACfC,YAAY,EAAE,SAAS;IACvBC,IAAI,EAAE,SAAS;IACfC,MAAM,EAAE,SAAS;IACjBC,KAAK,EAAE;EACT;AACF,CAAC","ignoreList":[]}
|
|
@@ -12,8 +12,22 @@ let BottomSheetNativePlaceType = exports.BottomSheetNativePlaceType = /*#__PURE_
|
|
|
12
12
|
return BottomSheetNativePlaceType;
|
|
13
13
|
}({});
|
|
14
14
|
let ScrollState = exports.ScrollState = /*#__PURE__*/function (ScrollState) {
|
|
15
|
+
/*
|
|
16
|
+
Web View ScrollState -
|
|
17
|
+
- Initialization:
|
|
18
|
+
'onTop': for a scrollable webView.
|
|
19
|
+
(onTop means that the webview is onTop of the BottomSheet and we need to recognize the scroll direction).
|
|
20
|
+
Then, it recognize the scroll direction and update the scroll state as needed.
|
|
21
|
+
-'unScrollable': for an unscrollable webView
|
|
22
|
+
*/
|
|
15
23
|
ScrollState["onTop"] = "onTop";
|
|
16
24
|
ScrollState["unScrollable"] = "unScrollable";
|
|
25
|
+
/*
|
|
26
|
+
These are only for maintain the bottom sheet scrollState (not an initialize scroll state).
|
|
27
|
+
It relates to the current scroll state.
|
|
28
|
+
onlyWebView means that now the scroll is on webview (only).
|
|
29
|
+
onlyBottomSheet means that now the scroll is on bottomSheet (only).
|
|
30
|
+
*/
|
|
17
31
|
ScrollState["onlyWebView"] = "webViewScroll";
|
|
18
32
|
ScrollState["onlyBottomSheet"] = "onlyBottomSheet";
|
|
19
33
|
return ScrollState;
|
|
@@ -29,6 +43,7 @@ let BottomSheetNativeComponentType = exports.BottomSheetNativeComponentType = /*
|
|
|
29
43
|
BottomSheetNativeComponentType["ACHDebitComponent"] = "UNACHDebitComponent";
|
|
30
44
|
BottomSheetNativeComponentType["CheckDepositComponent"] = "UNCheckDepositComponent";
|
|
31
45
|
BottomSheetNativeComponentType["BookPaymentComponent"] = "UNBookPaymentComponent";
|
|
46
|
+
BottomSheetNativeComponentType["WirePaymentComponent"] = "UNWirePaymentComponent";
|
|
32
47
|
return BottomSheetNativeComponentType;
|
|
33
48
|
}({});
|
|
34
49
|
//# sourceMappingURL=bottomSheet.types.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["BottomSheetNativePlaceType","exports","ScrollState","BottomSheetRenderingType","BottomSheetNativeComponentType"],"sourceRoot":"../../../../src","sources":["types/internal/bottomSheet.types.ts"],"mappings":";;;;;;
|
|
1
|
+
{"version":3,"names":["BottomSheetNativePlaceType","exports","ScrollState","BottomSheetRenderingType","BottomSheetNativeComponentType"],"sourceRoot":"../../../../src","sources":["types/internal/bottomSheet.types.ts"],"mappings":";;;;;;IAWYA,0BAA0B,GAAAC,OAAA,CAAAD,0BAAA,0BAA1BA,0BAA0B;EAA1BA,0BAA0B;EAA1BA,0BAA0B;EAA1BA,0BAA0B;EAA1BA,0BAA0B;EAAA,OAA1BA,0BAA0B;AAAA;AAAA,IAO1BE,WAAW,GAAAD,OAAA,CAAAC,WAAA,0BAAXA,WAAW;EACrB;AACF;AACA;AACA;AACA;AACA;AACA;AACA;EARYA,WAAW;EAAXA,WAAW;EAarB;AACF;AACA;AACA;AACA;AACA;EAlBYA,WAAW;EAAXA,WAAW;EAAA,OAAXA,WAAW;AAAA;AAAA,IAuBXC,wBAAwB,GAAAF,OAAA,CAAAE,wBAAA,0BAAxBA,wBAAwB;EAAxBA,wBAAwB,CAAxBA,wBAAwB;EAAxBA,wBAAwB,CAAxBA,wBAAwB;EAAA,OAAxBA,wBAAwB;AAAA;AAAA,IAKxBC,8BAA8B,GAAAH,OAAA,CAAAG,8BAAA,0BAA9BA,8BAA8B;EAA9BA,8BAA8B;EAA9BA,8BAA8B;EAA9BA,8BAA8B;EAA9BA,8BAA8B;EAA9BA,8BAA8B;EAA9BA,8BAA8B;EAAA,OAA9BA,8BAA8B;AAAA","ignoreList":[]}
|
|
@@ -3,18 +3,18 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.
|
|
6
|
+
exports.isUNComponentsErrorDataArray = exports.isUNComponentsError = void 0;
|
|
7
7
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
8
8
|
|
|
9
|
-
const
|
|
9
|
+
const isUNComponentsErrorData = obj => {
|
|
10
10
|
return typeof obj === 'object' && 'title' in obj;
|
|
11
11
|
};
|
|
12
|
-
const
|
|
13
|
-
return Array.isArray(arr) && arr.every(item =>
|
|
12
|
+
const isUNComponentsErrorDataArray = arr => {
|
|
13
|
+
return Array.isArray(arr) && arr.every(item => isUNComponentsErrorData(item));
|
|
14
14
|
};
|
|
15
|
-
exports.
|
|
16
|
-
const
|
|
17
|
-
return 'errors' in error &&
|
|
15
|
+
exports.isUNComponentsErrorDataArray = isUNComponentsErrorDataArray;
|
|
16
|
+
const isUNComponentsError = error => {
|
|
17
|
+
return 'errors' in error && isUNComponentsErrorDataArray(error.errors);
|
|
18
18
|
};
|
|
19
|
-
exports.
|
|
19
|
+
exports.isUNComponentsError = isUNComponentsError;
|
|
20
20
|
//# sourceMappingURL=errorHelpers.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["
|
|
1
|
+
{"version":3,"names":["isUNComponentsErrorData","obj","isUNComponentsErrorDataArray","arr","Array","isArray","every","item","exports","isUNComponentsError","error","errors"],"sourceRoot":"../../../../src","sources":["types/internal/errorHelpers.ts"],"mappings":";;;;;;AAAA;;AAKA,MAAMA,uBAAuB,GAAIC,GAAQ,IAAmC;EAC1E,OACE,OAAOA,GAAG,KAAK,QAAQ,IACvB,OAAO,IAAIA,GAAG;AAElB,CAAC;AAEM,MAAMC,4BAA4B,GAAIC,GAAQ,IAAqC;EACxF,OACEC,KAAK,CAACC,OAAO,CAACF,GAAG,CAAC,IAClBA,GAAG,CAACG,KAAK,CAAEC,IAAI,IAAKP,uBAAuB,CAACO,IAAI,CAAC,CAAC;AAEtD,CAAC;AAACC,OAAA,CAAAN,4BAAA,GAAAA,4BAAA;AAEK,MAAMO,mBAAmB,GAAIC,KAAU,IAAiC;EAC7E,OAAO,QAAQ,IAAIA,KAAK,IAAIR,4BAA4B,CAACQ,KAAK,CAACC,MAAM,CAAC;AACxE,CAAC;AAACH,OAAA,CAAAC,mBAAA,GAAAA,mBAAA","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["UserDataKeys","exports"],"sourceRoot":"../../../../src","sources":["types/internal/unitStore.types.ts"],"mappings":";;;;;;AAAA;AAAA,IAEYA,YAAY,GAAAC,OAAA,CAAAD,YAAA,0BAAZA,YAAY;EAAZA,YAAY;EAAZA,YAAY;EAAA,OAAZA,YAAY;AAAA"}
|
|
1
|
+
{"version":3,"names":["UserDataKeys","exports"],"sourceRoot":"../../../../src","sources":["types/internal/unitStore.types.ts"],"mappings":";;;;;;AAAA;AAAA,IAEYA,YAAY,GAAAC,OAAA,CAAAD,YAAA,0BAAZA,YAAY;EAAZA,YAAY;EAAZA,YAAY;EAAA,OAAZA,YAAY;AAAA","ignoreList":[]}
|
|
@@ -11,7 +11,6 @@ let WebComponentType = exports.WebComponentType = /*#__PURE__*/function (WebComp
|
|
|
11
11
|
WebComponentType["activity"] = "unit-elements-activity";
|
|
12
12
|
WebComponentType["slot"] = "unit-elements-sdk-slot";
|
|
13
13
|
WebComponentType["account"] = "unit-elements-account";
|
|
14
|
-
WebComponentType["fundAccountPayment"] = "unit-elements-fund-account-payment";
|
|
15
14
|
WebComponentType["checkDeposit"] = "unit-elements-check-deposit";
|
|
16
15
|
WebComponentType["achDebitPayment"] = "unit-elements-ach-debit-payment";
|
|
17
16
|
WebComponentType["achCreditPayment"] = "unit-elements-ach-credit-payment";
|
|
@@ -21,9 +20,16 @@ let WebComponentType = exports.WebComponentType = /*#__PURE__*/function (WebComp
|
|
|
21
20
|
WebComponentType["payeeManagement"] = "unit-elements-payee-management";
|
|
22
21
|
WebComponentType["wirePayment"] = "unit-elements-wire-payment";
|
|
23
22
|
WebComponentType["whiteLabelApp"] = "unit-elements-white-label-app";
|
|
23
|
+
WebComponentType["multiFactorAuthentication"] = "unit-elements-multi-factor-authentication";
|
|
24
|
+
WebComponentType["cardMenu"] = "unit-elements-card-menu";
|
|
24
25
|
return WebComponentType;
|
|
25
26
|
}({});
|
|
26
27
|
let PresentationMode = exports.PresentationMode = /*#__PURE__*/function (PresentationMode) {
|
|
28
|
+
/*
|
|
29
|
+
CoverInjectedHeight - give id (<webViewId> param) to enable style injection to the root. Then cover the injected height.
|
|
30
|
+
Inherit - inherit the parent size by style of 100 view height
|
|
31
|
+
Default - return the unit component script
|
|
32
|
+
*/
|
|
27
33
|
PresentationMode["CoverInjectedHeight"] = "coverInjectedHeight";
|
|
28
34
|
PresentationMode["Inherit"] = "inherit";
|
|
29
35
|
PresentationMode["Default"] = "deafult";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["WebComponentType","exports","PresentationMode"],"sourceRoot":"../../../../src","sources":["types/internal/webComponent.types.ts"],"mappings":";;;;;;IAAYA,gBAAgB,GAAAC,OAAA,CAAAD,gBAAA,0BAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAA,OAAhBA,gBAAgB;AAAA;AAAA,
|
|
1
|
+
{"version":3,"names":["WebComponentType","exports","PresentationMode"],"sourceRoot":"../../../../src","sources":["types/internal/webComponent.types.ts"],"mappings":";;;;;;IAAYA,gBAAgB,GAAAC,OAAA,CAAAD,gBAAA,0BAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAA,OAAhBA,gBAAgB;AAAA;AAAA,IAoBhBE,gBAAgB,GAAAD,OAAA,CAAAC,gBAAA,0BAAhBA,gBAAgB;EAC1B;AACF;AACA;AACA;AACA;EALYA,gBAAgB;EAAhBA,gBAAgB;EAAhBA,gBAAgB;EAAA,OAAhBA,gBAAgB;AAAA","ignoreList":[]}
|
|
@@ -3,7 +3,13 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.UNFraudReason = exports.UNCloseReason = exports.UNAccountMenuItem = exports.UNAccountMenuAction = void 0;
|
|
6
|
+
exports.UNFraudReason = exports.UNCloseReason = exports.UNAccountType = exports.UNAccountMenuItem = exports.UNAccountMenuAction = void 0;
|
|
7
|
+
let UNAccountType = exports.UNAccountType = /*#__PURE__*/function (UNAccountType) {
|
|
8
|
+
UNAccountType["DepositAccount"] = "depositAccount";
|
|
9
|
+
UNAccountType["BatchAccount"] = "batchAccount";
|
|
10
|
+
UNAccountType["CreditAccount"] = "creditAccount";
|
|
11
|
+
return UNAccountType;
|
|
12
|
+
}({});
|
|
7
13
|
var UNAccountStatus = /*#__PURE__*/function (UNAccountStatus) {
|
|
8
14
|
UNAccountStatus["Open"] = "Open";
|
|
9
15
|
UNAccountStatus["Closed"] = "Closed";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["
|
|
1
|
+
{"version":3,"names":["UNAccountType","exports","UNAccountStatus","UNCloseReason","UNFraudReason","UNAccountMenuAction","UNAccountMenuItem"],"sourceRoot":"../../../../src","sources":["types/shared/account.types.ts"],"mappings":";;;;;;IAkIkBA,aAAa,GAAAC,OAAA,CAAAD,aAAA,0BAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAA,OAAbA,aAAa;AAAA;AAAA,IAM1BE,eAAe,0BAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAA,OAAfA,eAAe;AAAA,EAAfA,eAAe;AAAA,IAMRC,aAAa,GAAAF,OAAA,CAAAE,aAAA,0BAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAA,OAAbA,aAAa;AAAA;AAAA,IAKbC,aAAa,GAAAH,OAAA,CAAAG,aAAA,0BAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAbA,aAAa;EAAA,OAAbA,aAAa;AAAA;AAAA,IAWbC,mBAAmB,GAAAJ,OAAA,CAAAI,mBAAA,0BAAnBA,mBAAmB;EAAnBA,mBAAmB;EAAnBA,mBAAmB;EAAnBA,mBAAmB;EAAA,OAAnBA,mBAAmB;AAAA;AAAA,IAMnBC,iBAAiB,GAAAL,OAAA,CAAAK,iBAAA,0BAAjBA,iBAAiB;EAAjBA,iBAAiB;EAAjBA,iBAAiB;EAAjBA,iBAAiB;EAAA,OAAjBA,iBAAiB;AAAA","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":[],"sourceRoot":"../../../../src","sources":["types/shared/
|
|
1
|
+
{"version":3,"names":[],"sourceRoot":"../../../../src","sources":["types/shared/ach.types.ts"],"mappings":"","ignoreList":[]}
|
|
@@ -3,10 +3,17 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.UNActivityComponentPaginationType = void 0;
|
|
6
|
+
exports.UNActivityType = exports.UNActivityComponentPaginationType = void 0;
|
|
7
7
|
let UNActivityComponentPaginationType = exports.UNActivityComponentPaginationType = /*#__PURE__*/function (UNActivityComponentPaginationType) {
|
|
8
8
|
UNActivityComponentPaginationType["infiniteScroll"] = "infiniteScroll";
|
|
9
9
|
UNActivityComponentPaginationType["pagination"] = "pagination";
|
|
10
10
|
return UNActivityComponentPaginationType;
|
|
11
11
|
}({});
|
|
12
|
+
let UNActivityType = exports.UNActivityType = /*#__PURE__*/function (UNActivityType) {
|
|
13
|
+
UNActivityType["Transaction"] = "transaction";
|
|
14
|
+
UNActivityType["Authorization"] = "authorization";
|
|
15
|
+
UNActivityType["CheckDeposit"] = "checkDeposit";
|
|
16
|
+
UNActivityType["AchPayment"] = "achPayment";
|
|
17
|
+
return UNActivityType;
|
|
18
|
+
}({});
|
|
12
19
|
//# sourceMappingURL=activity.types.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["UNActivityComponentPaginationType","exports"],"sourceRoot":"../../../../src","sources":["types/shared/activity.types.ts"],"mappings":";;;;;;IAIYA,iCAAiC,GAAAC,OAAA,CAAAD,iCAAA,0BAAjCA,iCAAiC;EAAjCA,iCAAiC;EAAjCA,iCAAiC;EAAA,OAAjCA,iCAAiC;AAAA"}
|
|
1
|
+
{"version":3,"names":["UNActivityComponentPaginationType","exports","UNActivityType"],"sourceRoot":"../../../../src","sources":["types/shared/activity.types.ts"],"mappings":";;;;;;IAIYA,iCAAiC,GAAAC,OAAA,CAAAD,iCAAA,0BAAjCA,iCAAiC;EAAjCA,iCAAiC;EAAjCA,iCAAiC;EAAA,OAAjCA,iCAAiC;AAAA;AAAA,IAUjCE,cAAc,GAAAD,OAAA,CAAAC,cAAA,0BAAdA,cAAc;EAAdA,cAAc;EAAdA,cAAc;EAAdA,cAAc;EAAdA,cAAc;EAAA,OAAdA,cAAc;AAAA","ignoreList":[]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":[],"sourceRoot":"../../../../src","sources":["types/shared/authorization.types.ts"],"mappings":""}
|
|
1
|
+
{"version":3,"names":[],"sourceRoot":"../../../../src","sources":["types/shared/authorization.types.ts"],"mappings":"","ignoreList":[]}
|
|
@@ -3,7 +3,27 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.UNCardMenuItem = exports.UNCardMenuAction = void 0;
|
|
6
|
+
exports.UNCardType = exports.UNCardStatus = exports.UNCardMenuItem = exports.UNCardMenuAction = void 0;
|
|
7
|
+
let UNCardType = exports.UNCardType = /*#__PURE__*/function (UNCardType) {
|
|
8
|
+
UNCardType["BusinessDebitCard"] = "businessDebitCard";
|
|
9
|
+
UNCardType["BusinessCreditCard"] = "businessCreditCard";
|
|
10
|
+
UNCardType["IndividualDebitCard"] = "individualDebitCard";
|
|
11
|
+
UNCardType["BusinessVirtualDebitCard"] = "businessVirtualDebitCard";
|
|
12
|
+
UNCardType["BusinessVirtualCreditCard"] = "businessVirtualCreditCard";
|
|
13
|
+
UNCardType["IndividualVirtualDebitCard"] = "individualVirtualDebitCard";
|
|
14
|
+
return UNCardType;
|
|
15
|
+
}({});
|
|
16
|
+
let UNCardStatus = exports.UNCardStatus = /*#__PURE__*/function (UNCardStatus) {
|
|
17
|
+
UNCardStatus["inactive"] = "Inactive";
|
|
18
|
+
UNCardStatus["active"] = "Active";
|
|
19
|
+
UNCardStatus["stolen"] = "Stolen";
|
|
20
|
+
UNCardStatus["lost"] = "Lost";
|
|
21
|
+
UNCardStatus["frozen"] = "Frozen";
|
|
22
|
+
UNCardStatus["closedByCustomer"] = "ClosedByCustomer";
|
|
23
|
+
UNCardStatus["suspectedFraud"] = "SuspectedFraud";
|
|
24
|
+
UNCardStatus["activeForOnlineUse"] = "ActiveForOnlineUse";
|
|
25
|
+
return UNCardStatus;
|
|
26
|
+
}({});
|
|
7
27
|
let UNCardMenuAction = exports.UNCardMenuAction = /*#__PURE__*/function (UNCardMenuAction) {
|
|
8
28
|
UNCardMenuAction["Freeze"] = "Freeze";
|
|
9
29
|
UNCardMenuAction["ManagePin"] = "ManagePin";
|