react-native-unit-components 1.15.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/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 +6 -5
- package/lib/commonjs/components/UNCardActionComponent/UNCardActionComponent.js.map +1 -1
- package/lib/commonjs/components/UNCardActionComponent/UNCardActionComponent.utils.js +0 -1
- package/lib/commonjs/components/UNCardActionComponent/UNCardActionComponent.utils.js.map +1 -1
- package/lib/commonjs/components/UNCardActionComponent/index.js +1 -1
- package/lib/commonjs/components/UNCardActionComponent/index.js.map +1 -1
- package/lib/commonjs/components/UNCardComponent/UNCardComponent.js +10 -12
- package/lib/commonjs/components/UNCardComponent/UNCardComponent.js.map +1 -1
- package/lib/commonjs/components/UNCardComponent/UNCardComponent.utils.js +4 -3
- 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 +7 -6
- package/lib/commonjs/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.js.map +1 -1
- package/lib/commonjs/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.utils.js +1 -2
- package/lib/commonjs/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.utils.js.map +1 -1
- package/lib/commonjs/components/UNMultiFactorAuthenticationComponent/index.js +1 -1
- package/lib/commonjs/components/UNMultiFactorAuthenticationComponent/index.js.map +1 -1
- 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 +0 -1
- 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 +7 -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 +0 -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.map +1 -1
- package/lib/commonjs/messages/webMessages/multipleCardsMessage.js.map +1 -1
- package/lib/commonjs/messages/webMessages/onLoadMessage.js +0 -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 +43 -29
- 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 +5 -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.map +1 -1
- 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} +20 -23
- 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 +31 -27
- package/lib/commonjs/webComponent/WebComponent.js.map +1 -1
- package/lib/commonjs/webComponent/WebComponent.utils.js +9 -13
- package/lib/commonjs/webComponent/WebComponent.utils.js.map +1 -1
- package/lib/commonjs/webComponent/html.js +2 -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 +5 -4
- package/lib/module/components/UNCardActionComponent/UNCardActionComponent.js.map +1 -1
- package/lib/module/components/UNCardActionComponent/UNCardActionComponent.utils.js +0 -1
- package/lib/module/components/UNCardActionComponent/UNCardActionComponent.utils.js.map +1 -1
- package/lib/module/components/UNCardActionComponent/index.js.map +1 -1
- package/lib/module/components/UNCardComponent/UNCardComponent.js +9 -11
- package/lib/module/components/UNCardComponent/UNCardComponent.js.map +1 -1
- package/lib/module/components/UNCardComponent/UNCardComponent.utils.js +4 -3
- 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 +6 -5
- package/lib/module/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.js.map +1 -1
- package/lib/module/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.utils.js +1 -2
- package/lib/module/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.utils.js.map +1 -1
- package/lib/module/components/UNMultiFactorAuthenticationComponent/index.js.map +1 -1
- 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 +0 -1
- 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 +6 -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 +0 -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.map +1 -1
- package/lib/module/messages/webMessages/multipleCardsMessage.js.map +1 -1
- package/lib/module/messages/webMessages/onLoadMessage.js +0 -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 +42 -28
- 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 +5 -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.map +1 -1
- 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} +16 -19
- 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 +25 -21
- package/lib/module/webComponent/WebComponent.js.map +1 -1
- package/lib/module/webComponent/WebComponent.utils.js +5 -7
- package/lib/module/webComponent/WebComponent.utils.js.map +1 -1
- package/lib/module/webComponent/html.js +3 -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 +2 -3
- package/lib/typescript/src/components/UNCardActionComponent/UNCardActionComponent.d.ts.map +1 -1
- package/lib/typescript/src/components/UNCardActionComponent/UNCardActionComponent.utils.d.ts.map +1 -1
- package/lib/typescript/src/components/UNCardComponent/UNCardComponent.d.ts +5 -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 +2 -4
- package/lib/typescript/src/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.d.ts.map +1 -1
- package/lib/typescript/src/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.utils.d.ts +1 -2
- package/lib/typescript/src/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.utils.d.ts.map +1 -1
- 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 -8
- 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 +0 -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 +4 -4
- package/lib/typescript/src/messages/webMessages/index.d.ts.map +1 -1
- 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 +12 -20
- 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} +5 -4
- 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 +1 -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 +12 -11
- 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 +0 -1
- 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.map +1 -1
- 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 -71
- 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 +1 -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 +7 -8
- package/src/components/UNCardActionComponent/UNCardActionComponent.utils.ts +0 -1
- package/src/components/UNCardComponent/UNCardComponent.tsx +17 -22
- package/src/components/UNCardComponent/UNCardComponent.utils.ts +5 -4
- package/src/components/UNCheckDepositComponent/UNCheckDepositComponent.tsx +14 -17
- package/src/components/UNCheckDepositComponent/UNCheckDepositComponent.utils.ts +0 -1
- package/src/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.tsx +8 -11
- package/src/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.utils.ts +1 -3
- 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 +0 -1
- package/src/components/UNPayeeManagementComponent/UNPayeeManagementComponent.tsx +29 -22
- 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 +0 -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 +5 -5
- package/src/messages/webMessages/multipleCardsMessage.ts +2 -2
- package/src/messages/webMessages/onLoadMessage.ts +17 -28
- package/src/messages/webMessages/payeeManagementMessage.ts +4 -4
- package/src/messages/webMessages/plaidMessages.ts +2 -2
- package/src/messages/webMessages/{unitMessages.ts → unitComponentsMessages.ts} +5 -2
- 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 +43 -28
- package/src/slices/ConfigurationSlice.ts +5 -1
- package/src/slices/SharedEventsSlice.ts +12 -11
- 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 +0 -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 +7 -7
- 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 -75
- 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} +23 -28
- 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 +29 -23
- package/src/webComponent/WebComponent.utils.ts +6 -6
- package/src/webComponent/html.ts +4 -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 +0 -21
- 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 -26
- 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 -20
- 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
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { UNDirection, UNOrg } from '../types';
|
|
2
|
+
import { UNCents, UNPaymentStatus, UNPaymentType, UNRelationshipsAccount, UNRelationshipsCustomer, UNRelationshipsRecurringPayment, UNRelationshipsTransaction } from './payments.types';
|
|
3
|
+
export type UNBookPayment = {
|
|
4
|
+
type: UNPaymentType.BookPayment;
|
|
5
|
+
id: string;
|
|
6
|
+
attributes: {
|
|
7
|
+
createdAt: Date;
|
|
8
|
+
amount: UNCents;
|
|
9
|
+
direction: UNDirection;
|
|
10
|
+
description: string;
|
|
11
|
+
status: UNPaymentStatus;
|
|
12
|
+
reason?: string;
|
|
13
|
+
tags?: {
|
|
14
|
+
[key: string]: string;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
relationships: {
|
|
18
|
+
account: {
|
|
19
|
+
data: UNRelationshipsAccount;
|
|
20
|
+
};
|
|
21
|
+
customer?: {
|
|
22
|
+
data: UNRelationshipsCustomer;
|
|
23
|
+
};
|
|
24
|
+
customers?: {
|
|
25
|
+
data: UNRelationshipsCustomer[];
|
|
26
|
+
};
|
|
27
|
+
transaction?: {
|
|
28
|
+
data: UNRelationshipsTransaction;
|
|
29
|
+
};
|
|
30
|
+
counterpartyAccount: {
|
|
31
|
+
data: {
|
|
32
|
+
type: string;
|
|
33
|
+
id: number;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
counterpartyCustomer: {
|
|
37
|
+
data: {
|
|
38
|
+
type: string;
|
|
39
|
+
id: number;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
recurringPayment?: {
|
|
43
|
+
data: UNRelationshipsRecurringPayment;
|
|
44
|
+
};
|
|
45
|
+
org?: {
|
|
46
|
+
data: UNOrg;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
//# sourceMappingURL=bookPayment.types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bookPayment.types.d.ts","sourceRoot":"","sources":["../../../../../../src/types/shared/payment/bookPayment.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC;AAC9C,OAAO,EAAE,OAAO,EAAE,eAAe,EAAE,aAAa,EAAE,sBAAsB,EAAE,uBAAuB,EAAE,+BAA+B,EAAE,0BAA0B,EAAE,MAAM,kBAAkB,CAAC;AAEzL,MAAM,MAAM,aAAa,GAAG;IAC1B,IAAI,EAAE,aAAa,CAAC,WAAW,CAAA;IAC/B,EAAE,EAAE,MAAM,CAAA;IACV,UAAU,EAAE;QACV,SAAS,EAAE,IAAI,CAAA;QACf,MAAM,EAAE,OAAO,CAAA;QACf,SAAS,EAAE,WAAW,CAAA;QACtB,WAAW,EAAE,MAAM,CAAA;QACnB,MAAM,EAAE,eAAe,CAAA;QACvB,MAAM,CAAC,EAAE,MAAM,CAAA;QACf,IAAI,CAAC,EAAE;YAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;SAAE,CAAA;KACjC,CAAA;IACD,aAAa,EAAE;QACb,OAAO,EAAE;YACP,IAAI,EAAE,sBAAsB,CAAA;SAC7B,CAAA;QACD,QAAQ,CAAC,EAAE;YACT,IAAI,EAAE,uBAAuB,CAAA;SAC9B,CAAA;QACD,SAAS,CAAC,EAAE;YACV,IAAI,EAAE,uBAAuB,EAAE,CAAA;SAChC,CAAA;QACD,WAAW,CAAC,EAAE;YACZ,IAAI,EAAE,0BAA0B,CAAA;SACjC,CAAA;QACD,mBAAmB,EAAE;YACnB,IAAI,EAAE;gBACJ,IAAI,EAAE,MAAM,CAAA;gBACZ,EAAE,EAAE,MAAM,CAAA;aACX,CAAA;SACF,CAAA;QACD,oBAAoB,EAAE;YACpB,IAAI,EAAE;gBACJ,IAAI,EAAE,MAAM,CAAA;gBACZ,EAAE,EAAE,MAAM,CAAA;aACX,CAAA;SACF,CAAA;QACD,gBAAgB,CAAC,EAAE;YACjB,IAAI,EAAE,+BAA+B,CAAA;SACtC,CAAA;QACD,GAAG,CAAC,EAAE;YACJ,IAAI,EAAE,KAAK,CAAA;SACZ,CAAA;KACF,CAAA;CACF,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/types/shared/payment/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC;AACnC,cAAc,qBAAqB,CAAC;AACpC,cAAc,qBAAqB,CAAC;AACpC,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC"}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { UNCounterpartyAccountType } from '../counterparty.types';
|
|
2
|
+
import { UNACHPayment } from './achPayment.types';
|
|
3
|
+
import { UNBillPayment } from './billPayment.types';
|
|
4
|
+
import { UNBookPayment } from './bookPayment.types';
|
|
5
|
+
import { UNWirePayment } from './wirePayment.types';
|
|
6
|
+
export type UNPayment = UNACHPayment | UNBookPayment | UNWirePayment | UNBillPayment;
|
|
7
|
+
export declare enum UNPaymentType {
|
|
8
|
+
AchPayment = "achPayment",
|
|
9
|
+
BookPayment = "bookPayment",
|
|
10
|
+
WirePayment = "wirePayment",
|
|
11
|
+
BillPayment = "billPayment",
|
|
12
|
+
CardToCardPayment = "cardToCardPayment"
|
|
13
|
+
}
|
|
14
|
+
export type UNPaymentStatus = 'Sent' | 'Rejected' | 'Pending' | 'Clearing' | 'Canceled' | 'Returned' | 'PendingReview';
|
|
15
|
+
export type UNAchCounterparty = {
|
|
16
|
+
name: string;
|
|
17
|
+
accountNumber: string;
|
|
18
|
+
routingNumber: string;
|
|
19
|
+
accountType: UNCounterpartyAccountType;
|
|
20
|
+
};
|
|
21
|
+
export declare enum UNPlaidAccountFilter {
|
|
22
|
+
checking = "checking",
|
|
23
|
+
savings = "savings"
|
|
24
|
+
}
|
|
25
|
+
export declare function parseUNAccountFilters(input?: string | null): UNPlaidAccountFilter[];
|
|
26
|
+
export declare enum UNCounterpartyVerificationMethod {
|
|
27
|
+
Plaid = "Plaid"
|
|
28
|
+
}
|
|
29
|
+
export declare enum UNCardNetwork {
|
|
30
|
+
Visa = "Visa",
|
|
31
|
+
Diners = "Diners",
|
|
32
|
+
Maestro = "Maestro",
|
|
33
|
+
Generic = "Generic",
|
|
34
|
+
Discover = "Discover",
|
|
35
|
+
MasterCard = "MasterCard",
|
|
36
|
+
AmericanExpress = "AmericanExpress"
|
|
37
|
+
}
|
|
38
|
+
export type UNCents = number;
|
|
39
|
+
export type UNRelationshipsTransaction = {
|
|
40
|
+
type: string;
|
|
41
|
+
id: number;
|
|
42
|
+
};
|
|
43
|
+
export type UNRelationshipsCounterparty = {
|
|
44
|
+
type: string;
|
|
45
|
+
id: number;
|
|
46
|
+
};
|
|
47
|
+
export type UNRelationshipsRecurringPayment = {
|
|
48
|
+
type: string;
|
|
49
|
+
id: number;
|
|
50
|
+
};
|
|
51
|
+
export type UNRelationshipsAccount = {
|
|
52
|
+
type: string;
|
|
53
|
+
id: string;
|
|
54
|
+
};
|
|
55
|
+
export type UNRelationshipsCustomer = {
|
|
56
|
+
type: string;
|
|
57
|
+
id: string;
|
|
58
|
+
};
|
|
59
|
+
//# sourceMappingURL=payments.types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"payments.types.d.ts","sourceRoot":"","sources":["../../../../../../src/types/shared/payment/payments.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,yBAAyB,EAAE,MAAM,uBAAuB,CAAC;AAClE,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAClD,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACpD,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AACpD,OAAO,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAEpD,MAAM,MAAM,SAAS,GAAG,YAAY,GAAG,aAAa,GAAG,aAAa,GAAG,aAAa,CAAA;AAEpF,oBAAY,aAAa;IACvB,UAAU,eAAe;IACzB,WAAW,gBAAgB;IAC3B,WAAW,gBAAgB;IAC3B,WAAW,gBAAgB;IAC3B,iBAAiB,sBAAsB;CACxC;AAED,MAAM,MAAM,eAAe,GAAG,MAAM,GAAG,UAAU,GAAG,SAAS,GAAG,UAAU,GAAG,UAAU,GAAG,UAAU,GAAG,eAAe,CAAA;AAEtH,MAAM,MAAM,iBAAiB,GAAG;IAC9B,IAAI,EAAE,MAAM,CAAA;IACZ,aAAa,EAAE,MAAM,CAAA;IACrB,aAAa,EAAE,MAAM,CAAA;IACrB,WAAW,EAAE,yBAAyB,CAAA;CACvC,CAAA;AAED,oBAAY,oBAAoB;IAC9B,QAAQ,aAAa;IACrB,OAAO,YAAY;CACpB;AAED,wBAAgB,qBAAqB,CAAC,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,oBAAoB,EAAE,CAOnF;AAED,oBAAY,gCAAgC;IAC1C,KAAK,UAAU;CAChB;AAED,oBAAY,aAAa;IACvB,IAAI,SAAS;IACb,MAAM,WAAW;IACjB,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,QAAQ,aAAa;IACrB,UAAU,eAAe;IACzB,eAAe,oBAAoB;CACpC;AAED,MAAM,MAAM,OAAO,GAAG,MAAM,CAAA;AAE5B,MAAM,MAAM,0BAA0B,GAAG;IACvC,IAAI,EAAE,MAAM,CAAA;IACZ,EAAE,EAAE,MAAM,CAAA;CACX,CAAA;AAED,MAAM,MAAM,2BAA2B,GAAG;IACxC,IAAI,EAAE,MAAM,CAAA;IACZ,EAAE,EAAE,MAAM,CAAA;CACX,CAAA;AAED,MAAM,MAAM,+BAA+B,GAAG;IAC5C,IAAI,EAAE,MAAM,CAAA;IACZ,EAAE,EAAE,MAAM,CAAA;CACX,CAAA;AAED,MAAM,MAAM,sBAAsB,GAAG;IACnC,IAAI,EAAE,MAAM,CAAA;IACZ,EAAE,EAAE,MAAM,CAAA;CACX,CAAA;AAED,MAAM,MAAM,uBAAuB,GAAG;IACpC,IAAI,EAAE,MAAM,CAAA;IACZ,EAAE,EAAE,MAAM,CAAA;CACX,CAAA"}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { UNAddress, UNDirection, UNOrg } from '../types';
|
|
2
|
+
import { UNCents, UNPaymentStatus, UNPaymentType, UNRelationshipsAccount, UNRelationshipsCustomer, UNRelationshipsTransaction } from './payments.types';
|
|
3
|
+
export type UNWirePayment = {
|
|
4
|
+
type: UNPaymentType.WirePayment;
|
|
5
|
+
id: string;
|
|
6
|
+
attributes: {
|
|
7
|
+
createdAt: Date;
|
|
8
|
+
amount: UNCents;
|
|
9
|
+
direction: UNDirection;
|
|
10
|
+
description: string;
|
|
11
|
+
status: UNPaymentStatus;
|
|
12
|
+
counterparty: UNWirePaymentCounterparty;
|
|
13
|
+
reason?: string;
|
|
14
|
+
tags?: {
|
|
15
|
+
[key: string]: string;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
relationships: {
|
|
19
|
+
account: {
|
|
20
|
+
data: UNRelationshipsAccount;
|
|
21
|
+
};
|
|
22
|
+
customer?: {
|
|
23
|
+
data: UNRelationshipsCustomer;
|
|
24
|
+
};
|
|
25
|
+
customers?: {
|
|
26
|
+
data: UNRelationshipsCustomer[];
|
|
27
|
+
};
|
|
28
|
+
transaction?: {
|
|
29
|
+
data: UNRelationshipsTransaction;
|
|
30
|
+
};
|
|
31
|
+
counterpartyAccount: {
|
|
32
|
+
data: {
|
|
33
|
+
type: string;
|
|
34
|
+
id: number;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
org?: {
|
|
38
|
+
data: UNOrg;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
type UNWirePaymentCounterparty = {
|
|
43
|
+
name: string;
|
|
44
|
+
routingNumber: string;
|
|
45
|
+
accountNumber: string;
|
|
46
|
+
address: UNAddress;
|
|
47
|
+
};
|
|
48
|
+
export {};
|
|
49
|
+
//# sourceMappingURL=wirePayment.types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"wirePayment.types.d.ts","sourceRoot":"","sources":["../../../../../../src/types/shared/payment/wirePayment.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC;AACzD,OAAO,EAAE,OAAO,EAAE,eAAe,EAAE,aAAa,EAAE,sBAAsB,EAAE,uBAAuB,EAAE,0BAA0B,EAAE,MAAM,kBAAkB,CAAC;AAExJ,MAAM,MAAM,aAAa,GAAG;IAC1B,IAAI,EAAE,aAAa,CAAC,WAAW,CAAA;IAC/B,EAAE,EAAE,MAAM,CAAA;IACV,UAAU,EAAE;QACV,SAAS,EAAE,IAAI,CAAA;QACf,MAAM,EAAE,OAAO,CAAA;QACf,SAAS,EAAE,WAAW,CAAA;QACtB,WAAW,EAAE,MAAM,CAAA;QACnB,MAAM,EAAE,eAAe,CAAA;QACvB,YAAY,EAAE,yBAAyB,CAAA;QACvC,MAAM,CAAC,EAAE,MAAM,CAAA;QACf,IAAI,CAAC,EAAE;YAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;SAAE,CAAA;KACjC,CAAA;IACD,aAAa,EAAE;QACb,OAAO,EAAE;YACP,IAAI,EAAE,sBAAsB,CAAA;SAC7B,CAAA;QACD,QAAQ,CAAC,EAAE;YACT,IAAI,EAAE,uBAAuB,CAAA;SAC9B,CAAA;QACD,SAAS,CAAC,EAAE;YACV,IAAI,EAAE,uBAAuB,EAAE,CAAA;SAChC,CAAA;QACD,WAAW,CAAC,EAAE;YACZ,IAAI,EAAE,0BAA0B,CAAA;SACjC,CAAA;QACD,mBAAmB,EAAE;YACnB,IAAI,EAAE;gBACJ,IAAI,EAAE,MAAM,CAAA;gBACZ,EAAE,EAAE,MAAM,CAAA;aACX,CAAA;SACF,CAAA;QACD,GAAG,CAAC,EAAE;YACJ,IAAI,EAAE,KAAK,CAAA;SACZ,CAAA;KACF,CAAA;CACF,CAAA;AAED,KAAK,yBAAyB,GAAG;IAC/B,IAAI,EAAE,MAAM,CAAA;IACZ,aAAa,EAAE,MAAM,CAAA;IACrB,aAAa,EAAE,MAAM,CAAA;IACrB,OAAO,EAAE,SAAS,CAAA;CACnB,CAAA"}
|
|
@@ -1,12 +1,13 @@
|
|
|
1
|
-
export type
|
|
2
|
-
export type UNCreditAccountRepaymentData = {
|
|
1
|
+
export type UNCreditAccountRepaymentInformation = {
|
|
3
2
|
type: 'creditAccountRepaymentInformation';
|
|
4
|
-
attributes:
|
|
5
|
-
remainingAmountDue: number;
|
|
6
|
-
remainingAmountOverdue: number;
|
|
7
|
-
statementPeriodStart: string;
|
|
8
|
-
statementPeriodEnd: string;
|
|
9
|
-
nextRepaymentDueDate: string;
|
|
10
|
-
};
|
|
3
|
+
attributes: UNCreditAccountRepaymentInformationAttributes;
|
|
11
4
|
};
|
|
5
|
+
export interface UNCreditAccountRepaymentInformationAttributes {
|
|
6
|
+
initiatedRepayments: number;
|
|
7
|
+
remainingAmountDue: number;
|
|
8
|
+
remainingAmountOverdue: number;
|
|
9
|
+
statementPeriodStart: string;
|
|
10
|
+
statementPeriodEnd: string;
|
|
11
|
+
nextRepaymentDueDate: string;
|
|
12
|
+
}
|
|
12
13
|
//# sourceMappingURL=repayment.types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"repayment.types.d.ts","sourceRoot":"","sources":["../../../../../src/types/shared/repayment.types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,
|
|
1
|
+
{"version":3,"file":"repayment.types.d.ts","sourceRoot":"","sources":["../../../../../src/types/shared/repayment.types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,mCAAmC,GAAG;IAChD,IAAI,EAAE,mCAAmC,CAAA;IACzC,UAAU,EAAE,6CAA6C,CAAA;CAC1D,CAAA;AAED,MAAM,WAAW,6CAA6C;IAC5D,mBAAmB,EAAE,MAAM,CAAA;IAC3B,kBAAkB,EAAE,MAAM,CAAA;IAC1B,sBAAsB,EAAE,MAAM,CAAA;IAC9B,oBAAoB,EAAE,MAAM,CAAA;IAC5B,kBAAkB,EAAE,MAAM,CAAA;IAC1B,oBAAoB,EAAE,MAAM,CAAA;CAC7B"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export declare enum
|
|
1
|
+
export declare enum UNComponentsSnapshotProtectionStrategy {
|
|
2
2
|
FullProtection = "fullProtection",
|
|
3
3
|
None = "none"
|
|
4
4
|
}
|
|
5
|
-
export interface
|
|
6
|
-
snapshotProtectionStrategy:
|
|
5
|
+
export interface UNComponentsSecuritySettings {
|
|
6
|
+
snapshotProtectionStrategy: UNComponentsSnapshotProtectionStrategy;
|
|
7
7
|
}
|
|
8
8
|
//# sourceMappingURL=securitySettings.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"securitySettings.d.ts","sourceRoot":"","sources":["../../../../../src/types/shared/securitySettings.ts"],"names":[],"mappings":"AAAA,oBAAY,
|
|
1
|
+
{"version":3,"file":"securitySettings.d.ts","sourceRoot":"","sources":["../../../../../src/types/shared/securitySettings.ts"],"names":[],"mappings":"AAAA,oBAAY,sCAAsC;IAChD,cAAc,mBAAmB;IACjC,IAAI,SAAS;CACd;AAED,MAAM,WAAW,4BAA4B;IAC3C,0BAA0B,EAAE,sCAAsC,CAAA;CACnE"}
|
package/lib/typescript/src/types/shared/transaction/UNAccountLowBalanceClosureTransaction.d.ts
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { UNCents } from '../payment/payments.types';
|
|
2
|
+
import { UNDirection } from '../types';
|
|
3
|
+
import { UNTransactionTypes } from './transactions.types';
|
|
4
|
+
export type UNAccountLowBalanceClosureTransaction = {
|
|
5
|
+
type: UNTransactionTypes.AccountLowBalanceClosure;
|
|
6
|
+
id: number;
|
|
7
|
+
attributes: {
|
|
8
|
+
createdAt: Date;
|
|
9
|
+
amount: UNCents;
|
|
10
|
+
direction: UNDirection;
|
|
11
|
+
balance: UNCents;
|
|
12
|
+
summary: string;
|
|
13
|
+
};
|
|
14
|
+
relationships: {
|
|
15
|
+
account: {
|
|
16
|
+
data: {
|
|
17
|
+
type: string;
|
|
18
|
+
id: number;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
customer?: {
|
|
22
|
+
data: {
|
|
23
|
+
type: string;
|
|
24
|
+
id: number;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
customers?: {
|
|
28
|
+
data: [
|
|
29
|
+
{
|
|
30
|
+
type: 'customer';
|
|
31
|
+
id: string;
|
|
32
|
+
}
|
|
33
|
+
];
|
|
34
|
+
};
|
|
35
|
+
org?: {
|
|
36
|
+
data: {
|
|
37
|
+
type: string;
|
|
38
|
+
id: number;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
//# sourceMappingURL=UNAccountLowBalanceClosureTransaction.d.ts.map
|
package/lib/typescript/src/types/shared/transaction/UNAccountLowBalanceClosureTransaction.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UNAccountLowBalanceClosureTransaction.d.ts","sourceRoot":"","sources":["../../../../../../src/types/shared/transaction/UNAccountLowBalanceClosureTransaction.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAC;AACpD,OAAO,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AACvC,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAE1D,MAAM,MAAM,qCAAqC,GAAG;IAClD,IAAI,EAAE,kBAAkB,CAAC,wBAAwB,CAAA;IACjD,EAAE,EAAE,MAAM,CAAA;IACV,UAAU,EAAE;QACV,SAAS,EAAE,IAAI,CAAA;QACf,MAAM,EAAE,OAAO,CAAA;QACf,SAAS,EAAE,WAAW,CAAA;QACtB,OAAO,EAAE,OAAO,CAAA;QAChB,OAAO,EAAE,MAAM,CAAA;KAChB,CAAA;IACD,aAAa,EAAE;QACb,OAAO,EAAE;YACP,IAAI,EAAE;gBACJ,IAAI,EAAE,MAAM,CAAA;gBACZ,EAAE,EAAE,MAAM,CAAA;aACX,CAAA;SACF,CAAA;QACD,QAAQ,CAAC,EAAE;YACT,IAAI,EAAE;gBACJ,IAAI,EAAE,MAAM,CAAA;gBACZ,EAAE,EAAE,MAAM,CAAA;aACX,CAAA;SACF,CAAA;QACD,SAAS,CAAC,EAAE;YACV,IAAI,EAAE;gBACJ;oBACE,IAAI,EAAE,UAAU,CAAA;oBAChB,EAAE,EAAE,MAAM,CAAA;iBACX;aACF,CAAA;SACF,CAAA;QACD,GAAG,CAAC,EAAE;YACJ,IAAI,EAAE;gBACJ,IAAI,EAAE,MAAM,CAAA;gBACZ,EAAE,EAAE,MAAM,CAAA;aACX,CAAA;SACF,CAAA;KACF,CAAA;CACF,CAAC"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { UNCents } from '../payment/payments.types';
|
|
2
|
+
import { UNTransactionTypes } from './transactions.types';
|
|
3
|
+
import { UNDirection } from '../types';
|
|
4
|
+
export type UNAdjustmentTransaction = {
|
|
5
|
+
type: UNTransactionTypes.Adjustment;
|
|
6
|
+
id: number;
|
|
7
|
+
attributes: {
|
|
8
|
+
createdAt: Date;
|
|
9
|
+
amount: UNCents;
|
|
10
|
+
direction: UNDirection;
|
|
11
|
+
balance: UNCents;
|
|
12
|
+
summary: string;
|
|
13
|
+
};
|
|
14
|
+
relationships: {
|
|
15
|
+
account: {
|
|
16
|
+
data: {
|
|
17
|
+
type: string;
|
|
18
|
+
id: number;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
customer?: {
|
|
22
|
+
data: {
|
|
23
|
+
type: string;
|
|
24
|
+
id: number;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
customers?: {
|
|
28
|
+
data: [
|
|
29
|
+
{
|
|
30
|
+
type: 'customer';
|
|
31
|
+
id: string;
|
|
32
|
+
}
|
|
33
|
+
];
|
|
34
|
+
};
|
|
35
|
+
org?: {
|
|
36
|
+
data: {
|
|
37
|
+
type: string;
|
|
38
|
+
id: number;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
//# sourceMappingURL=UNAdjustmentTransaction.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UNAdjustmentTransaction.d.ts","sourceRoot":"","sources":["../../../../../../src/types/shared/transaction/UNAdjustmentTransaction.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAC;AACpD,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAEvC,MAAM,MAAM,uBAAuB,GAAG;IACpC,IAAI,EAAE,kBAAkB,CAAC,UAAU,CAAA;IACnC,EAAE,EAAE,MAAM,CAAA;IACV,UAAU,EAAE;QACV,SAAS,EAAE,IAAI,CAAA;QACf,MAAM,EAAE,OAAO,CAAA;QACf,SAAS,EAAE,WAAW,CAAA;QACtB,OAAO,EAAE,OAAO,CAAA;QAChB,OAAO,EAAE,MAAM,CAAA;KAChB,CAAA;IACD,aAAa,EAAE;QACb,OAAO,EAAE;YACP,IAAI,EAAE;gBACJ,IAAI,EAAE,MAAM,CAAA;gBACZ,EAAE,EAAE,MAAM,CAAA;aACX,CAAA;SACF,CAAA;QACD,QAAQ,CAAC,EAAE;YACT,IAAI,EAAE;gBACJ,IAAI,EAAE,MAAM,CAAA;gBACZ,EAAE,EAAE,MAAM,CAAA;aACX,CAAA;SACF,CAAA;QACD,SAAS,CAAC,EAAE;YACV,IAAI,EAAE;gBACJ;oBACE,IAAI,EAAE,UAAU,CAAA;oBAChB,EAAE,EAAE,MAAM,CAAA;iBACX;aACF,CAAA;SACF,CAAA;QACD,GAAG,CAAC,EAAE;YACJ,IAAI,EAAE;gBACJ,IAAI,EAAE,MAAM,CAAA;gBACZ,EAAE,EAAE,MAAM,CAAA;aACX,CAAA;SACF,CAAA;KACF,CAAA;CACF,CAAC"}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { UNCents } from '../payment/payments.types';
|
|
2
|
+
import { UNDirection } from '../types';
|
|
3
|
+
import { UNTransactionTypes } from './transactions.types';
|
|
4
|
+
export type UNAtmTransaction = {
|
|
5
|
+
type: UNTransactionTypes.ATM;
|
|
6
|
+
id: number;
|
|
7
|
+
attributes: {
|
|
8
|
+
createdAt: Date;
|
|
9
|
+
amount: UNCents;
|
|
10
|
+
direction: UNDirection;
|
|
11
|
+
balance: UNCents;
|
|
12
|
+
summary: string;
|
|
13
|
+
atmName: string;
|
|
14
|
+
atmLocation?: string;
|
|
15
|
+
interchange?: number | null;
|
|
16
|
+
networkTransactionId?: string;
|
|
17
|
+
cardLast4Digits: string;
|
|
18
|
+
};
|
|
19
|
+
relationships: {
|
|
20
|
+
account: {
|
|
21
|
+
data: {
|
|
22
|
+
type: string;
|
|
23
|
+
id: number;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
customer?: {
|
|
27
|
+
data: {
|
|
28
|
+
type: string;
|
|
29
|
+
id: number;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
customers?: {
|
|
33
|
+
data: [
|
|
34
|
+
{
|
|
35
|
+
type: 'customer';
|
|
36
|
+
id: string;
|
|
37
|
+
}
|
|
38
|
+
];
|
|
39
|
+
};
|
|
40
|
+
org?: {
|
|
41
|
+
data: {
|
|
42
|
+
type: string;
|
|
43
|
+
id: number;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
//# sourceMappingURL=UNAtmTransaction.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UNAtmTransaction.d.ts","sourceRoot":"","sources":["../../../../../../src/types/shared/transaction/UNAtmTransaction.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAC;AACpD,OAAO,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AACvC,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAE1D,MAAM,MAAM,gBAAgB,GAAG;IAC7B,IAAI,EAAE,kBAAkB,CAAC,GAAG,CAAA;IAC5B,EAAE,EAAE,MAAM,CAAA;IACV,UAAU,EAAE;QACV,SAAS,EAAE,IAAI,CAAA;QACf,MAAM,EAAE,OAAO,CAAA;QACf,SAAS,EAAE,WAAW,CAAA;QACtB,OAAO,EAAE,OAAO,CAAA;QAChB,OAAO,EAAE,MAAM,CAAA;QACf,OAAO,EAAE,MAAM,CAAA;QACf,WAAW,CAAC,EAAE,MAAM,CAAA;QACpB,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAA;QAC3B,oBAAoB,CAAC,EAAE,MAAM,CAAA;QAC7B,eAAe,EAAE,MAAM,CAAA;KACxB,CAAA;IACD,aAAa,EAAE;QACb,OAAO,EAAE;YACP,IAAI,EAAE;gBACJ,IAAI,EAAE,MAAM,CAAA;gBACZ,EAAE,EAAE,MAAM,CAAA;aACX,CAAA;SACF,CAAA;QACD,QAAQ,CAAC,EAAE;YACT,IAAI,EAAE;gBACJ,IAAI,EAAE,MAAM,CAAA;gBACZ,EAAE,EAAE,MAAM,CAAA;aACX,CAAA;SACF,CAAA;QACD,SAAS,CAAC,EAAE;YACV,IAAI,EAAE;gBACJ;oBACE,IAAI,EAAE,UAAU,CAAA;oBAChB,EAAE,EAAE,MAAM,CAAA;iBACX;aACF,CAAA;SACF,CAAA;QACD,GAAG,CAAC,EAAE;YACJ,IAAI,EAAE;gBACJ,IAAI,EAAE,MAAM,CAAA;gBACZ,EAAE,EAAE,MAAM,CAAA;aACX,CAAA;SACF,CAAA;KACF,CAAA;CACF,CAAC"}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { UNCents } from '../payment/payments.types';
|
|
2
|
+
import { UNTransactionTypes } from './transactions.types';
|
|
3
|
+
import { UNDirection } from '../types';
|
|
4
|
+
export type UNBankRepaymentTransaction = {
|
|
5
|
+
type: UNTransactionTypes.BankRepayment;
|
|
6
|
+
id: number;
|
|
7
|
+
attributes: {
|
|
8
|
+
createdAt: Date;
|
|
9
|
+
amount: UNCents;
|
|
10
|
+
direction: UNDirection;
|
|
11
|
+
balance: UNCents;
|
|
12
|
+
paidForDate: string;
|
|
13
|
+
summary: string;
|
|
14
|
+
tags?: {
|
|
15
|
+
[key: string]: string;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
relationships: {
|
|
19
|
+
account: {
|
|
20
|
+
data: {
|
|
21
|
+
type: string;
|
|
22
|
+
id: number;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
receivingAccount: {
|
|
26
|
+
data: {
|
|
27
|
+
type: string;
|
|
28
|
+
id: number;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
customer?: {
|
|
32
|
+
data: {
|
|
33
|
+
type: string;
|
|
34
|
+
id: number;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
customers?: {
|
|
38
|
+
data: [
|
|
39
|
+
{
|
|
40
|
+
type: 'customer';
|
|
41
|
+
id: string;
|
|
42
|
+
}
|
|
43
|
+
];
|
|
44
|
+
};
|
|
45
|
+
org?: {
|
|
46
|
+
data: {
|
|
47
|
+
type: string;
|
|
48
|
+
id: number;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
//# sourceMappingURL=UNBankRepaymentTransaction.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UNBankRepaymentTransaction.d.ts","sourceRoot":"","sources":["../../../../../../src/types/shared/transaction/UNBankRepaymentTransaction.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAC;AACpD,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAEvC,MAAM,MAAM,0BAA0B,GAAG;IACvC,IAAI,EAAE,kBAAkB,CAAC,aAAa,CAAA;IACtC,EAAE,EAAE,MAAM,CAAA;IACV,UAAU,EAAE;QACV,SAAS,EAAE,IAAI,CAAA;QACf,MAAM,EAAE,OAAO,CAAA;QACf,SAAS,EAAE,WAAW,CAAA;QACtB,OAAO,EAAE,OAAO,CAAA;QAChB,WAAW,EAAE,MAAM,CAAA;QACnB,OAAO,EAAE,MAAM,CAAA;QACf,IAAI,CAAC,EAAE;YAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;SAAE,CAAA;KACjC,CAAA;IACD,aAAa,EAAE;QACb,OAAO,EAAE;YACP,IAAI,EAAE;gBACJ,IAAI,EAAE,MAAM,CAAA;gBACZ,EAAE,EAAE,MAAM,CAAA;aACX,CAAA;SACF,CAAA;QACD,gBAAgB,EAAE;YAChB,IAAI,EAAE;gBACJ,IAAI,EAAE,MAAM,CAAA;gBACZ,EAAE,EAAE,MAAM,CAAA;aACX,CAAA;SACF,CAAA;QACD,QAAQ,CAAC,EAAE;YACT,IAAI,EAAE;gBACJ,IAAI,EAAE,MAAM,CAAA;gBACZ,EAAE,EAAE,MAAM,CAAA;aACX,CAAA;SACF,CAAA;QACD,SAAS,CAAC,EAAE;YACV,IAAI,EAAE;gBACJ;oBACE,IAAI,EAAE,UAAU,CAAA;oBAChB,EAAE,EAAE,MAAM,CAAA;iBACX;aACF,CAAA;SACF,CAAA;QACD,GAAG,CAAC,EAAE;YACJ,IAAI,EAAE;gBACJ,IAAI,EAAE,MAAM,CAAA;gBACZ,EAAE,EAAE,MAAM,CAAA;aACX,CAAA;SACF,CAAA;KACF,CAAA;CACF,CAAC"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { UNCents } from '../payment/payments.types';
|
|
2
|
+
import { UNTransactionTypes } from './transactions.types';
|
|
3
|
+
import { UNDirection } from '../types';
|
|
4
|
+
export type UNBillPayTransaction = {
|
|
5
|
+
type: UNTransactionTypes.BillPay;
|
|
6
|
+
id: number;
|
|
7
|
+
attributes: {
|
|
8
|
+
createdAt: Date;
|
|
9
|
+
amount: UNCents;
|
|
10
|
+
direction: UNDirection;
|
|
11
|
+
balance: UNCents;
|
|
12
|
+
summary: string;
|
|
13
|
+
};
|
|
14
|
+
relationships: {
|
|
15
|
+
account: {
|
|
16
|
+
data: {
|
|
17
|
+
type: string;
|
|
18
|
+
id: number;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
customer?: {
|
|
22
|
+
data: {
|
|
23
|
+
type: string;
|
|
24
|
+
id: number;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
27
|
+
customers?: {
|
|
28
|
+
data: [
|
|
29
|
+
{
|
|
30
|
+
type: 'customer';
|
|
31
|
+
id: string;
|
|
32
|
+
}
|
|
33
|
+
];
|
|
34
|
+
};
|
|
35
|
+
org?: {
|
|
36
|
+
data: {
|
|
37
|
+
type: string;
|
|
38
|
+
id: number;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
//# sourceMappingURL=UNBillPayTransaction.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UNBillPayTransaction.d.ts","sourceRoot":"","sources":["../../../../../../src/types/shared/transaction/UNBillPayTransaction.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAC;AACpD,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAEvC,MAAM,MAAM,oBAAoB,GAAG;IACjC,IAAI,EAAE,kBAAkB,CAAC,OAAO,CAAA;IAChC,EAAE,EAAE,MAAM,CAAA;IACV,UAAU,EAAE;QACV,SAAS,EAAE,IAAI,CAAA;QACf,MAAM,EAAE,OAAO,CAAA;QACf,SAAS,EAAE,WAAW,CAAA;QACtB,OAAO,EAAE,OAAO,CAAA;QAChB,OAAO,EAAE,MAAM,CAAA;KAChB,CAAA;IACD,aAAa,EAAE;QACb,OAAO,EAAE;YACP,IAAI,EAAE;gBACJ,IAAI,EAAE,MAAM,CAAA;gBACZ,EAAE,EAAE,MAAM,CAAA;aACX,CAAA;SACF,CAAA;QACD,QAAQ,CAAC,EAAE;YACT,IAAI,EAAE;gBACJ,IAAI,EAAE,MAAM,CAAA;gBACZ,EAAE,EAAE,MAAM,CAAA;aACX,CAAA;SACF,CAAA;QACD,SAAS,CAAC,EAAE;YACV,IAAI,EAAE;gBACJ;oBACE,IAAI,EAAE,UAAU,CAAA;oBAChB,EAAE,EAAE,MAAM,CAAA;iBACX;aACF,CAAA;SACF,CAAA;QACD,GAAG,CAAC,EAAE;YACJ,IAAI,EAAE;gBACJ,IAAI,EAAE,MAAM,CAAA;gBACZ,EAAE,EAAE,MAAM,CAAA;aACX,CAAA;SACF,CAAA;KACF,CAAA;CACF,CAAC"}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { UNAchCounterparty, UNCents } from '../payment/payments.types';
|
|
2
|
+
import { UNTransactionTypes } from './transactions.types';
|
|
3
|
+
import { UNDirection } from '../types';
|
|
4
|
+
export type UNBookTransaction = {
|
|
5
|
+
type: UNTransactionTypes.Book;
|
|
6
|
+
id: number;
|
|
7
|
+
attributes: {
|
|
8
|
+
createdAt: Date;
|
|
9
|
+
amount: UNCents;
|
|
10
|
+
direction: UNDirection;
|
|
11
|
+
balance: UNCents;
|
|
12
|
+
summary: string;
|
|
13
|
+
counterparty: UNAchCounterparty;
|
|
14
|
+
tags?: {
|
|
15
|
+
[key: string]: string;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
relationships: {
|
|
19
|
+
account: {
|
|
20
|
+
data: {
|
|
21
|
+
type: string;
|
|
22
|
+
id: number;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
customer?: {
|
|
26
|
+
data: {
|
|
27
|
+
type: string;
|
|
28
|
+
id: number;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
customers?: {
|
|
32
|
+
data: [
|
|
33
|
+
{
|
|
34
|
+
type: 'customer';
|
|
35
|
+
id: string;
|
|
36
|
+
}
|
|
37
|
+
];
|
|
38
|
+
};
|
|
39
|
+
org?: {
|
|
40
|
+
data: {
|
|
41
|
+
type: string;
|
|
42
|
+
id: number;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
counterpartyAccount?: {
|
|
46
|
+
data: {
|
|
47
|
+
type: 'account';
|
|
48
|
+
id: string;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
counterpartyCustomer?: {
|
|
52
|
+
data: {
|
|
53
|
+
type: 'customer';
|
|
54
|
+
id: string;
|
|
55
|
+
};
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
//# sourceMappingURL=UNBookTransaction.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UNBookTransaction.d.ts","sourceRoot":"","sources":["../../../../../../src/types/shared/transaction/UNBookTransaction.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAC;AACvE,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAEvC,MAAM,MAAM,iBAAiB,GAAG;IAC9B,IAAI,EAAE,kBAAkB,CAAC,IAAI,CAAA;IAC7B,EAAE,EAAE,MAAM,CAAA;IACV,UAAU,EAAE;QACV,SAAS,EAAE,IAAI,CAAA;QACf,MAAM,EAAE,OAAO,CAAA;QACf,SAAS,EAAE,WAAW,CAAA;QACtB,OAAO,EAAE,OAAO,CAAA;QAChB,OAAO,EAAE,MAAM,CAAA;QACf,YAAY,EAAE,iBAAiB,CAAA;QAC/B,IAAI,CAAC,EAAE;YAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;SAAE,CAAA;KACjC,CAAA;IACD,aAAa,EAAE;QACb,OAAO,EAAE;YACP,IAAI,EAAE;gBACJ,IAAI,EAAE,MAAM,CAAA;gBACZ,EAAE,EAAE,MAAM,CAAA;aACX,CAAA;SACF,CAAA;QACD,QAAQ,CAAC,EAAE;YACT,IAAI,EAAE;gBACJ,IAAI,EAAE,MAAM,CAAA;gBACZ,EAAE,EAAE,MAAM,CAAA;aACX,CAAA;SACF,CAAA;QACD,SAAS,CAAC,EAAE;YACV,IAAI,EAAE;gBACJ;oBACE,IAAI,EAAE,UAAU,CAAA;oBAChB,EAAE,EAAE,MAAM,CAAA;iBACX;aACF,CAAA;SACF,CAAA;QACD,GAAG,CAAC,EAAE;YACJ,IAAI,EAAE;gBACJ,IAAI,EAAE,MAAM,CAAA;gBACZ,EAAE,EAAE,MAAM,CAAA;aACX,CAAA;SACF,CAAA;QACD,mBAAmB,CAAC,EAAE;YACpB,IAAI,EAAE;gBACJ,IAAI,EAAE,SAAS,CAAA;gBACf,EAAE,EAAE,MAAM,CAAA;aACX,CAAA;SACF,CAAA;QACD,oBAAoB,CAAC,EAAE;YACrB,IAAI,EAAE;gBACJ,IAAI,EAAE,UAAU,CAAA;gBAChB,EAAE,EAAE,MAAM,CAAA;aACX,CAAA;SACF,CAAA;KACF,CAAA;CACF,CAAC"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { UNCents } from '../payment/payments.types';
|
|
2
|
+
import { UNTransactionTypes } from './transactions.types';
|
|
3
|
+
import { UNDirection } from '../types';
|
|
4
|
+
export type UNCardReversalTransaction = {
|
|
5
|
+
type: UNTransactionTypes.CardReversal;
|
|
6
|
+
id: number;
|
|
7
|
+
attributes: {
|
|
8
|
+
createdAt: Date;
|
|
9
|
+
amount: UNCents;
|
|
10
|
+
direction: UNDirection;
|
|
11
|
+
balance: UNCents;
|
|
12
|
+
summary: string;
|
|
13
|
+
networkTransactionId?: string;
|
|
14
|
+
};
|
|
15
|
+
relationships: {
|
|
16
|
+
account: {
|
|
17
|
+
data: {
|
|
18
|
+
type: string;
|
|
19
|
+
id: number;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
customer?: {
|
|
23
|
+
data: {
|
|
24
|
+
type: string;
|
|
25
|
+
id: number;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
customers?: {
|
|
29
|
+
data: [
|
|
30
|
+
{
|
|
31
|
+
type: 'customer';
|
|
32
|
+
id: string;
|
|
33
|
+
}
|
|
34
|
+
];
|
|
35
|
+
};
|
|
36
|
+
relatedTransaction?: {
|
|
37
|
+
data: {
|
|
38
|
+
type: string;
|
|
39
|
+
id: number;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
org?: {
|
|
43
|
+
data: {
|
|
44
|
+
type: string;
|
|
45
|
+
id: number;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
//# sourceMappingURL=UNCardReversalTransaction.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UNCardReversalTransaction.d.ts","sourceRoot":"","sources":["../../../../../../src/types/shared/transaction/UNCardReversalTransaction.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,2BAA2B,CAAC;AACpD,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAEvC,MAAM,MAAM,yBAAyB,GAAG;IACtC,IAAI,EAAE,kBAAkB,CAAC,YAAY,CAAA;IACrC,EAAE,EAAE,MAAM,CAAA;IACV,UAAU,EAAE;QACV,SAAS,EAAE,IAAI,CAAA;QACf,MAAM,EAAE,OAAO,CAAA;QACf,SAAS,EAAE,WAAW,CAAA;QACtB,OAAO,EAAE,OAAO,CAAA;QAChB,OAAO,EAAE,MAAM,CAAA;QACf,oBAAoB,CAAC,EAAE,MAAM,CAAA;KAC9B,CAAA;IACD,aAAa,EAAE;QACb,OAAO,EAAE;YACP,IAAI,EAAE;gBACJ,IAAI,EAAE,MAAM,CAAA;gBACZ,EAAE,EAAE,MAAM,CAAA;aACX,CAAA;SACF,CAAA;QACD,QAAQ,CAAC,EAAE;YACT,IAAI,EAAE;gBACJ,IAAI,EAAE,MAAM,CAAA;gBACZ,EAAE,EAAE,MAAM,CAAA;aACX,CAAA;SACF,CAAA;QACD,SAAS,CAAC,EAAE;YACV,IAAI,EAAE;gBACJ;oBACE,IAAI,EAAE,UAAU,CAAA;oBAChB,EAAE,EAAE,MAAM,CAAA;iBACX;aACF,CAAA;SACF,CAAA;QACD,kBAAkB,CAAC,EAAE;YACnB,IAAI,EAAE;gBACJ,IAAI,EAAE,MAAM,CAAA;gBACZ,EAAE,EAAE,MAAM,CAAA;aACX,CAAA;SACF,CAAA;QACD,GAAG,CAAC,EAAE;YACJ,IAAI,EAAE;gBACJ,IAAI,EAAE,MAAM,CAAA;gBACZ,EAAE,EAAE,MAAM,CAAA;aACX,CAAA;SACF,CAAA;KACF,CAAA;CACF,CAAC"}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { UNCents } from '../payment/payments.types';
|
|
2
|
+
import { UNMerchant, UNRichMerchantData, UNTransactionTypes } from './transactions.types';
|
|
3
|
+
import { UNDirection } from '../types';
|
|
4
|
+
export type UNCardTransaction = {
|
|
5
|
+
type: UNTransactionTypes.Card;
|
|
6
|
+
id: number;
|
|
7
|
+
attributes: {
|
|
8
|
+
cardNetwork: string;
|
|
9
|
+
cardLast4Digits: string;
|
|
10
|
+
createdAt: Date;
|
|
11
|
+
amount: UNCents;
|
|
12
|
+
direction: UNDirection;
|
|
13
|
+
balance: UNCents;
|
|
14
|
+
summary: string;
|
|
15
|
+
interchange?: number | null;
|
|
16
|
+
networkTransactionId?: string;
|
|
17
|
+
richMerchantData?: UNRichMerchantData;
|
|
18
|
+
paymentMethod?: string;
|
|
19
|
+
merchant?: UNMerchant;
|
|
20
|
+
recurring: boolean;
|
|
21
|
+
};
|
|
22
|
+
relationships: {
|
|
23
|
+
account: {
|
|
24
|
+
data: {
|
|
25
|
+
type: string;
|
|
26
|
+
id: number;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
customer?: {
|
|
30
|
+
data: {
|
|
31
|
+
type: string;
|
|
32
|
+
id: number;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
customers?: {
|
|
36
|
+
data: [
|
|
37
|
+
{
|
|
38
|
+
type: 'customer';
|
|
39
|
+
id: string;
|
|
40
|
+
}
|
|
41
|
+
];
|
|
42
|
+
};
|
|
43
|
+
org?: {
|
|
44
|
+
data: {
|
|
45
|
+
type: string;
|
|
46
|
+
id: number;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
//# sourceMappingURL=UNCardTransaction.d.ts.map
|