react-native-unit-components 1.15.0 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1250) hide show
  1. package/README.md +1 -1
  2. package/android/src/main/java/com/unitreactnativecomponents/UnitReactNativeComponentsPackage.kt +16 -15
  3. package/android/src/main/java/com/unitreactnativecomponents/extensions/ContextExtensions.kt +1 -3
  4. package/android/src/main/java/com/unitreactnativecomponents/{UnitAddToWalletButtonViewManager.kt → nativeComponents/UnitAddToWalletButtonViewManager.kt} +14 -8
  5. package/android/src/main/java/com/unitreactnativecomponents/{UnitReactNativeComponentsEvent.kt → nativeComponents/UnitReactNativeComponentsEvent.kt} +1 -1
  6. package/android/src/main/java/com/unitreactnativecomponents/{secureView/UNSecureViewManager.kt → nativeComponents/secureView/UNSecureNativeViewManager.kt} +10 -4
  7. package/android/src/main/java/com/unitreactnativecomponents/{visapresentation → nativeComponents/visapresentation}/UNGooglePayView.kt +5 -1
  8. package/android/src/main/java/com/unitreactnativecomponents/{appInfo → nativeModules/appInfo}/UNAppInfoModule.kt +2 -2
  9. package/android/src/main/java/com/unitreactnativecomponents/{security/UNSecurityHelper.kt → nativeModules/security/UNSecurityHelperModule.kt} +6 -4
  10. package/android/src/main/java/com/unitreactnativecomponents/{sharepdf/UNSharePDF.kt → nativeModules/sharefile/UNShareFile.kt} +3 -3
  11. package/android/src/main/java/com/unitreactnativecomponents/{unSnapshotProtectionManager/UNSnapshotProtectionManager.kt → nativeModules/unComponentsSnapshotProtectionModule/UNComponentsSnapshotProtectionModule.kt} +6 -6
  12. package/android/src/main/java/com/unitreactnativecomponents/{unStoreManager/UNStoreManager.kt → nativeModules/unStoreModule/UNStoreModule.kt} +6 -4
  13. package/ios/NativeComponents/UnitAddToWalletButton/UnitAddToWalletButtonNativeView.h +28 -0
  14. package/ios/NativeComponents/UnitAddToWalletButton/UnitAddToWalletButtonNativeView.mm +81 -0
  15. package/ios/{UnitReactNativeComponentsViewManager.m → NativeComponents/UnitReactNativeComponentsViewManager.m} +1 -1
  16. package/ios/{UnitReactNativeComponentsViewManager.swift → NativeComponents/UnitReactNativeComponentsViewManager.swift} +2 -2
  17. package/ios/{UNAppInfo → NativeModules/UNAppInfo}/UNAppInfoExportModule.m +1 -1
  18. package/ios/NativeModules/UNAppInfo/UNAppInfoModule.swift +49 -0
  19. package/ios/NativeModules/UNPermissionsModule/UNPermissionsExportModule.mm +7 -0
  20. package/ios/NativeModules/UNPermissionsModule/UNPermissionsModule.swift +25 -0
  21. package/ios/{UNSecurity → NativeModules/UNSecurity}/UNSecurityHelperExportModule.m +1 -1
  22. package/ios/{UNSecurity/UNSecurityHelper.swift → NativeModules/UNSecurity/UNSecurityHelperModule.swift} +24 -20
  23. package/ios/{UNSnapshotProtectionManager → NativeModules/UNSnapshotProtectionManager}/UNSnapshotProtectionManager.swift +3 -3
  24. package/ios/{UNSnapshotProtectionManager → NativeModules/UNSnapshotProtectionManager}/UNSnapshotProtectionManagerExportModule.m +1 -1
  25. package/ios/{UNStoreManager/UNStoreManagerExportModule.m → NativeModules/UNStoreModule/UNStoreExportModule.m} +1 -1
  26. package/ios/NativeModules/UNStoreModule/UNStoreModule.swift +31 -0
  27. package/ios/UnitReactNativeComponents.xcodeproj/project.pbxproj +23 -45
  28. package/lib/commonjs/assets/images/index.js +1 -1
  29. package/lib/commonjs/assets/images/index.js.map +1 -1
  30. package/lib/commonjs/components/UNACHCreditComponent/UNACHCreditComponent.js +9 -7
  31. package/lib/commonjs/components/UNACHCreditComponent/UNACHCreditComponent.js.map +1 -1
  32. package/lib/commonjs/components/UNACHCreditComponent/UNACHCreditComponent.utils.js +0 -1
  33. package/lib/commonjs/components/UNACHCreditComponent/UNACHCreditComponent.utils.js.map +1 -1
  34. package/lib/commonjs/components/UNACHCreditComponent/index.js +1 -1
  35. package/lib/commonjs/components/UNACHCreditComponent/index.js.map +1 -1
  36. package/lib/commonjs/components/UNACHDebitComponent/UNACHDebitComponent.js +9 -7
  37. package/lib/commonjs/components/UNACHDebitComponent/UNACHDebitComponent.js.map +1 -1
  38. package/lib/commonjs/components/UNACHDebitComponent/UNACHDebitComponent.utils.js +0 -1
  39. package/lib/commonjs/components/UNACHDebitComponent/UNACHDebitComponent.utils.js.map +1 -1
  40. package/lib/commonjs/components/UNACHDebitComponent/index.js +1 -1
  41. package/lib/commonjs/components/UNACHDebitComponent/index.js.map +1 -1
  42. package/lib/commonjs/components/UNAccountComponent/UNAccountComponent.js +9 -8
  43. package/lib/commonjs/components/UNAccountComponent/UNAccountComponent.js.map +1 -1
  44. package/lib/commonjs/components/UNAccountComponent/UNAccountComponent.utils.js +6 -1
  45. package/lib/commonjs/components/UNAccountComponent/UNAccountComponent.utils.js.map +1 -1
  46. package/lib/commonjs/components/UNAccountComponent/index.js +1 -1
  47. package/lib/commonjs/components/UNAccountComponent/index.js.map +1 -1
  48. package/lib/commonjs/components/UNActivityComponent/UNActivityComponent.js +8 -7
  49. package/lib/commonjs/components/UNActivityComponent/UNActivityComponent.js.map +1 -1
  50. package/lib/commonjs/components/UNActivityComponent/UNActivityComponent.utils.js +0 -1
  51. package/lib/commonjs/components/UNActivityComponent/UNActivityComponent.utils.js.map +1 -1
  52. package/lib/commonjs/components/UNActivityComponent/index.js +1 -1
  53. package/lib/commonjs/components/UNActivityComponent/index.js.map +1 -1
  54. package/lib/commonjs/components/UNBookPaymentComponent/UNBookPaymentComponent.js +6 -5
  55. package/lib/commonjs/components/UNBookPaymentComponent/UNBookPaymentComponent.js.map +1 -1
  56. package/lib/commonjs/components/UNBookPaymentComponent/UNBookPaymentComponent.utils.js +0 -1
  57. package/lib/commonjs/components/UNBookPaymentComponent/UNBookPaymentComponent.utils.js.map +1 -1
  58. package/lib/commonjs/components/UNBookPaymentComponent/index.js +1 -1
  59. package/lib/commonjs/components/UNBookPaymentComponent/index.js.map +1 -1
  60. package/lib/commonjs/components/UNBottomSheetComponent/UNBottomSheetComponent.constants.js.map +1 -1
  61. package/lib/commonjs/components/UNBottomSheetComponent/UNBottomSheetComponent.js +11 -11
  62. package/lib/commonjs/components/UNBottomSheetComponent/UNBottomSheetComponent.js.map +1 -1
  63. package/lib/commonjs/components/UNBottomSheetComponent/UNBottomSheetComponent.styles.js.map +1 -1
  64. package/lib/commonjs/components/UNBottomSheetComponent/UNBottomSheetComponent.utils.js +80 -27
  65. package/lib/commonjs/components/UNBottomSheetComponent/UNBottomSheetComponent.utils.js.map +1 -1
  66. package/lib/commonjs/components/UNBottomSheetComponent/components/UNBottomSheetNativeComponent/UNBottomSheetNativeComponent.js +41 -21
  67. package/lib/commonjs/components/UNBottomSheetComponent/components/UNBottomSheetNativeComponent/UNBottomSheetNativeComponent.js.map +1 -1
  68. package/lib/commonjs/components/UNBottomSheetComponent/components/UNBottomSheetNativeComponent/index.js.map +1 -1
  69. package/lib/commonjs/components/UNBottomSheetComponent/components/UNBottomSheetSlotComponent/UNBottomSheetSlotComponent.js +18 -9
  70. package/lib/commonjs/components/UNBottomSheetComponent/components/UNBottomSheetSlotComponent/UNBottomSheetSlotComponent.js.map +1 -1
  71. package/lib/commonjs/components/UNBottomSheetComponent/components/UNBottomSheetSlotComponent/index.js.map +1 -1
  72. package/lib/commonjs/components/UNBottomSheetComponent/components/index.js.map +1 -1
  73. package/lib/commonjs/components/UNBottomSheetComponent/index.js +1 -1
  74. package/lib/commonjs/components/UNBottomSheetComponent/index.js.map +1 -1
  75. package/lib/commonjs/components/UNCardActionComponent/UNCardActionComponent.js +6 -5
  76. package/lib/commonjs/components/UNCardActionComponent/UNCardActionComponent.js.map +1 -1
  77. package/lib/commonjs/components/UNCardActionComponent/UNCardActionComponent.utils.js +0 -1
  78. package/lib/commonjs/components/UNCardActionComponent/UNCardActionComponent.utils.js.map +1 -1
  79. package/lib/commonjs/components/UNCardActionComponent/index.js +1 -1
  80. package/lib/commonjs/components/UNCardActionComponent/index.js.map +1 -1
  81. package/lib/commonjs/components/UNCardComponent/UNCardComponent.js +10 -12
  82. package/lib/commonjs/components/UNCardComponent/UNCardComponent.js.map +1 -1
  83. package/lib/commonjs/components/UNCardComponent/UNCardComponent.utils.js +4 -3
  84. package/lib/commonjs/components/UNCardComponent/UNCardComponent.utils.js.map +1 -1
  85. package/lib/commonjs/components/UNCardComponent/index.js +1 -1
  86. package/lib/commonjs/components/UNCardComponent/index.js.map +1 -1
  87. package/lib/commonjs/components/UNCheckDepositComponent/UNCheckDepositComponent.js +8 -8
  88. package/lib/commonjs/components/UNCheckDepositComponent/UNCheckDepositComponent.js.map +1 -1
  89. package/lib/commonjs/components/UNCheckDepositComponent/UNCheckDepositComponent.utils.js +0 -1
  90. package/lib/commonjs/components/UNCheckDepositComponent/UNCheckDepositComponent.utils.js.map +1 -1
  91. package/lib/commonjs/components/UNCheckDepositComponent/index.js +1 -1
  92. package/lib/commonjs/components/UNCheckDepositComponent/index.js.map +1 -1
  93. package/lib/commonjs/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.js +7 -6
  94. package/lib/commonjs/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.js.map +1 -1
  95. package/lib/commonjs/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.utils.js +1 -2
  96. package/lib/commonjs/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.utils.js.map +1 -1
  97. package/lib/commonjs/components/UNMultiFactorAuthenticationComponent/index.js +1 -1
  98. package/lib/commonjs/components/UNMultiFactorAuthenticationComponent/index.js.map +1 -1
  99. package/lib/commonjs/components/UNMultipleCardsComponent/UNMultipleCardsComponent.js +19 -4
  100. package/lib/commonjs/components/UNMultipleCardsComponent/UNMultipleCardsComponent.js.map +1 -1
  101. package/lib/commonjs/components/UNMultipleCardsComponent/UNMultipleCardsComponent.utils.js +0 -1
  102. package/lib/commonjs/components/UNMultipleCardsComponent/UNMultipleCardsComponent.utils.js.map +1 -1
  103. package/lib/commonjs/components/UNMultipleCardsComponent/index.js +1 -1
  104. package/lib/commonjs/components/UNMultipleCardsComponent/index.js.map +1 -1
  105. package/lib/commonjs/components/UNNextRepaymentComponent/UNNextRepaymentComponent.js +5 -4
  106. package/lib/commonjs/components/UNNextRepaymentComponent/UNNextRepaymentComponent.js.map +1 -1
  107. package/lib/commonjs/components/UNNextRepaymentComponent/UNNextRepaymentComponent.utils.js +0 -1
  108. package/lib/commonjs/components/UNNextRepaymentComponent/UNNextRepaymentComponent.utils.js.map +1 -1
  109. package/lib/commonjs/components/UNNextRepaymentComponent/index.js +1 -1
  110. package/lib/commonjs/components/UNNextRepaymentComponent/index.js.map +1 -1
  111. package/lib/commonjs/components/UNPayeeManagementComponent/UNPayeeManagementComponent.js +7 -6
  112. package/lib/commonjs/components/UNPayeeManagementComponent/UNPayeeManagementComponent.js.map +1 -1
  113. package/lib/commonjs/components/UNPayeeManagementComponent/UNPayeeManagementComponent.utils.js +0 -1
  114. package/lib/commonjs/components/UNPayeeManagementComponent/UNPayeeManagementComponent.utils.js.map +1 -1
  115. package/lib/commonjs/components/UNPayeeManagementComponent/index.js +1 -1
  116. package/lib/commonjs/components/UNPayeeManagementComponent/index.js.map +1 -1
  117. package/lib/commonjs/components/UNProgramDetailsComponent/UNProgramDetailsComponent.js +5 -4
  118. package/lib/commonjs/components/UNProgramDetailsComponent/UNProgramDetailsComponent.js.map +1 -1
  119. package/lib/commonjs/components/UNProgramDetailsComponent/UNProgramDetailsComponent.utils.js +0 -1
  120. package/lib/commonjs/components/UNProgramDetailsComponent/UNProgramDetailsComponent.utils.js.map +1 -1
  121. package/lib/commonjs/components/UNProgramDetailsComponent/index.js +1 -1
  122. package/lib/commonjs/components/UNProgramDetailsComponent/index.js.map +1 -1
  123. package/lib/commonjs/components/UNWhiteLabelAppComponent/UNWhiteLabelAppComponent.js +11 -9
  124. package/lib/commonjs/components/UNWhiteLabelAppComponent/UNWhiteLabelAppComponent.js.map +1 -1
  125. package/lib/commonjs/components/UNWhiteLabelAppComponent/UNWhiteLabelAppComponent.utils.js.map +1 -1
  126. package/lib/commonjs/components/UNWhiteLabelAppComponent/index.js +1 -1
  127. package/lib/commonjs/components/UNWhiteLabelAppComponent/index.js.map +1 -1
  128. package/lib/commonjs/components/UNWirePaymentComponent/UNWirePaymentComponent.js +5 -4
  129. package/lib/commonjs/components/UNWirePaymentComponent/UNWirePaymentComponent.js.map +1 -1
  130. package/lib/commonjs/components/UNWirePaymentComponent/UNWirePaymentComponent.utils.js +0 -1
  131. package/lib/commonjs/components/UNWirePaymentComponent/UNWirePaymentComponent.utils.js.map +1 -1
  132. package/lib/commonjs/components/UNWirePaymentComponent/index.js +1 -1
  133. package/lib/commonjs/components/UNWirePaymentComponent/index.js.map +1 -1
  134. package/lib/commonjs/components/index.js +0 -11
  135. package/lib/commonjs/components/index.js.map +1 -1
  136. package/lib/commonjs/custom.d.js.map +1 -1
  137. package/lib/commonjs/flows/{UNFlows.js → UNComponentsFlows.js} +6 -6
  138. package/lib/commonjs/flows/UNComponentsFlows.js.map +1 -0
  139. package/lib/commonjs/flows/card/UNCardFlows.js.map +1 -1
  140. package/lib/commonjs/helpers/BottomSheet/BottomSheet.js +10 -27
  141. package/lib/commonjs/helpers/BottomSheet/BottomSheet.js.map +1 -1
  142. package/lib/commonjs/helpers/BottomSheet/BottomSheet.styles.js.map +1 -1
  143. package/lib/commonjs/helpers/UNKeyboardAvoidingView/UNKeyboardAvoidingView.js +26 -0
  144. package/lib/commonjs/helpers/UNKeyboardAvoidingView/UNKeyboardAvoidingView.js.map +1 -0
  145. package/lib/commonjs/helpers/pushProvisioningService/helpers.js.map +1 -1
  146. package/lib/commonjs/helpers/pushProvisioningService/hooks/useCardWallet.js +7 -7
  147. package/lib/commonjs/helpers/pushProvisioningService/hooks/useCardWallet.js.map +1 -1
  148. package/lib/commonjs/helpers/pushProvisioningService/hooks/useLaunchInitialize.js +2 -2
  149. package/lib/commonjs/helpers/pushProvisioningService/hooks/useLaunchInitialize.js.map +1 -1
  150. package/lib/commonjs/helpers/pushProvisioningService/startProvisioning.js +2 -2
  151. package/lib/commonjs/helpers/pushProvisioningService/startProvisioning.js.map +1 -1
  152. package/lib/commonjs/helpers/pushProvisioningService/types.js +7 -0
  153. package/lib/commonjs/helpers/pushProvisioningService/types.js.map +1 -1
  154. package/lib/commonjs/helpers/store/helpers.js +2 -2
  155. package/lib/commonjs/helpers/store/helpers.js.map +1 -1
  156. package/lib/commonjs/hooks/useAppStateListener.js +38 -6
  157. package/lib/commonjs/hooks/useAppStateListener.js.map +1 -1
  158. package/lib/commonjs/hooks/useIsJailbrokeDevice.js +1 -1
  159. package/lib/commonjs/hooks/useIsJailbrokeDevice.js.map +1 -1
  160. package/lib/commonjs/hooks/useListenerToEvent.js.map +1 -1
  161. package/lib/commonjs/hooks/useSnapshotProtection.js +4 -4
  162. package/lib/commonjs/hooks/useSnapshotProtection.js.map +1 -1
  163. package/lib/commonjs/index.js +4 -4
  164. package/lib/commonjs/index.js.map +1 -1
  165. package/lib/commonjs/messages/nativeMessages/bottomSheetMessage.js.map +1 -1
  166. package/lib/commonjs/messages/nativeMessages/cardMessage.js.map +1 -1
  167. package/lib/commonjs/messages/nativeMessages/index.js.map +1 -1
  168. package/lib/commonjs/messages/nativeMessages/sdkMessage.js.map +1 -1
  169. package/lib/commonjs/messages/webMessages/accountMessage.js.map +1 -1
  170. package/lib/commonjs/messages/webMessages/achCreditMessage.js.map +1 -1
  171. package/lib/commonjs/messages/webMessages/activityMessage.js.map +1 -1
  172. package/lib/commonjs/messages/webMessages/bookPaymentMessage.js.map +1 -1
  173. package/lib/commonjs/messages/webMessages/cardMessage.js.map +1 -1
  174. package/lib/commonjs/messages/webMessages/checkMessage.js +1 -0
  175. package/lib/commonjs/messages/webMessages/checkMessage.js.map +1 -1
  176. package/lib/commonjs/messages/webMessages/index.js.map +1 -1
  177. package/lib/commonjs/messages/webMessages/multiFactorAuthenticationMessage.js.map +1 -1
  178. package/lib/commonjs/messages/webMessages/multipleCardsMessage.js.map +1 -1
  179. package/lib/commonjs/messages/webMessages/onLoadMessage.js +0 -1
  180. package/lib/commonjs/messages/webMessages/onLoadMessage.js.map +1 -1
  181. package/lib/commonjs/messages/webMessages/pageMessage.js.map +1 -1
  182. package/lib/commonjs/messages/webMessages/payeeManagementMessage.js.map +1 -1
  183. package/lib/commonjs/messages/webMessages/paymentsMessage.js.map +1 -1
  184. package/lib/commonjs/messages/webMessages/plaidMessages.js.map +1 -1
  185. package/lib/commonjs/messages/webMessages/unitComponentsMessages.js +26 -0
  186. package/lib/commonjs/messages/webMessages/unitComponentsMessages.js.map +1 -0
  187. package/lib/commonjs/{types/shared/fundAccountPayment.types.js → messages/webMessages/wirePaymentMessage.js} +1 -1
  188. package/lib/commonjs/messages/webMessages/wirePaymentMessage.js.map +1 -0
  189. package/lib/commonjs/nativeComponents/UNAddToWallet/UNAddToWalletComponent/UNAddToWalletBottomSheetItem.styles.js.map +1 -1
  190. package/lib/commonjs/nativeComponents/UNAddToWallet/UNAddToWalletComponent/UNAddToWalletComponent.js +9 -8
  191. package/lib/commonjs/nativeComponents/UNAddToWallet/UNAddToWalletComponent/UNAddToWalletComponent.js.map +1 -1
  192. package/lib/commonjs/nativeComponents/UNAddToWallet/UNAddToWalletComponent/UNAddToWalletComponent.utils.js.map +1 -1
  193. package/lib/commonjs/nativeComponents/UNAddToWallet/UNAddToWalletComponent/index.js +1 -1
  194. package/lib/commonjs/nativeComponents/UNAddToWallet/UNAddToWalletComponent/index.js.map +1 -1
  195. package/lib/commonjs/nativeComponents/UNAddToWallet/UnitAddToWalletButtonNativeComponent.js +10 -0
  196. package/lib/commonjs/nativeComponents/UNAddToWallet/UnitAddToWalletButtonNativeComponent.js.map +1 -0
  197. package/lib/commonjs/nativeComponents/UNBaseView/UNBaseView.js +18 -4
  198. package/lib/commonjs/nativeComponents/UNBaseView/UNBaseView.js.map +1 -1
  199. package/lib/commonjs/nativeComponents/UNBaseView/index.js +1 -1
  200. package/lib/commonjs/nativeComponents/UNBaseView/index.js.map +1 -1
  201. package/lib/commonjs/nativeComponents/UNSecureView/UNSecureViewNativeComponent.js +10 -0
  202. package/lib/commonjs/nativeComponents/UNSecureView/UNSecureViewNativeComponent.js.map +1 -0
  203. package/lib/commonjs/nativeModulesHelpers/RNShareFile/RNShareFile.js +20 -0
  204. package/lib/commonjs/nativeModulesHelpers/RNShareFile/RNShareFile.js.map +1 -0
  205. package/lib/commonjs/nativeModulesHelpers/UNPermissionsHelper/UNPermissionsHelper.js +20 -0
  206. package/lib/commonjs/nativeModulesHelpers/UNPermissionsHelper/UNPermissionsHelper.js.map +1 -0
  207. package/lib/commonjs/nativeModulesHelpers/UNSanpshotProtectionHelper/UNSnapshotProtectionHelper.js +3 -5
  208. package/lib/commonjs/nativeModulesHelpers/UNSanpshotProtectionHelper/UNSnapshotProtectionHelper.js.map +1 -1
  209. package/lib/commonjs/nativeModulesHelpers/UNSecurityHelper.js +1 -3
  210. package/lib/commonjs/nativeModulesHelpers/UNSecurityHelper.js.map +1 -1
  211. package/lib/commonjs/nativeModulesHelpers/UNStoreModuleHelper/UNStoreModuleHelper.js +9 -0
  212. package/lib/commonjs/nativeModulesHelpers/UNStoreModuleHelper/UNStoreModuleHelper.js.map +1 -0
  213. package/lib/commonjs/networking/common/UNNetworkConstants.js +3 -3
  214. package/lib/commonjs/networking/common/UNNetworkConstants.js.map +1 -1
  215. package/lib/commonjs/networking/requests/UNWalletPayloadRequest.js +4 -4
  216. package/lib/commonjs/networking/requests/UNWalletPayloadRequest.js.map +1 -1
  217. package/lib/commonjs/scripts/html/bodyHtml.js.map +1 -1
  218. package/lib/commonjs/scripts/html/bodyScript.js +43 -29
  219. package/lib/commonjs/scripts/html/bodyScript.js.map +1 -1
  220. package/lib/commonjs/scripts/html/fontFaces.js.map +1 -1
  221. package/lib/commonjs/slices/BottomSheetSlice.js.map +1 -1
  222. package/lib/commonjs/slices/ConfigurationSlice.js +7 -2
  223. package/lib/commonjs/slices/ConfigurationSlice.js.map +1 -1
  224. package/lib/commonjs/slices/SharedEventsSlice.js.map +1 -1
  225. package/lib/commonjs/slices/pushProvisioningSlice.js.map +1 -1
  226. package/lib/commonjs/store/index.js.map +1 -1
  227. package/lib/commonjs/store/store.js +1 -1
  228. package/lib/commonjs/store/store.js.map +1 -1
  229. package/lib/commonjs/styles/fonts.js +2 -2
  230. package/lib/commonjs/styles/fonts.js.map +1 -1
  231. package/lib/commonjs/styles/variables.js.map +1 -1
  232. package/lib/commonjs/types/internal/bottomSheet.types.js +15 -0
  233. package/lib/commonjs/types/internal/bottomSheet.types.js.map +1 -1
  234. package/lib/commonjs/types/internal/errorHelpers.js +8 -8
  235. package/lib/commonjs/types/internal/errorHelpers.js.map +1 -1
  236. package/lib/commonjs/types/internal/unitStore.types.js.map +1 -1
  237. package/lib/commonjs/types/internal/webComponent.types.js +5 -1
  238. package/lib/commonjs/types/internal/webComponent.types.js.map +1 -1
  239. package/lib/commonjs/types/shared/account.types.js +7 -1
  240. package/lib/commonjs/types/shared/account.types.js.map +1 -1
  241. package/lib/commonjs/types/shared/{achCredit.types.js → ach.types.js} +1 -1
  242. package/lib/commonjs/types/shared/{wirePayment.types.js.map → ach.types.js.map} +1 -1
  243. package/lib/commonjs/types/shared/activity.types.js +8 -1
  244. package/lib/commonjs/types/shared/activity.types.js.map +1 -1
  245. package/lib/commonjs/types/shared/authorization.types.js +4 -0
  246. package/lib/commonjs/types/shared/authorization.types.js.map +1 -1
  247. package/lib/commonjs/types/shared/card.types.js +21 -1
  248. package/lib/commonjs/types/shared/card.types.js.map +1 -1
  249. package/lib/commonjs/types/shared/checkDeposit.types.js +6 -1
  250. package/lib/commonjs/types/shared/checkDeposit.types.js.map +1 -1
  251. package/lib/commonjs/types/shared/counterparty.types.js +24 -0
  252. package/lib/commonjs/types/shared/counterparty.types.js.map +1 -0
  253. package/lib/commonjs/types/shared/customer.types.js +34 -0
  254. package/lib/commonjs/types/shared/customer.types.js.map +1 -0
  255. package/lib/commonjs/types/shared/env.types.js +6 -6
  256. package/lib/commonjs/types/shared/env.types.js.map +1 -1
  257. package/lib/commonjs/types/shared/error.types.js +22 -21
  258. package/lib/commonjs/types/shared/error.types.js.map +1 -1
  259. package/lib/commonjs/types/shared/fonts.types.js.map +1 -1
  260. package/lib/commonjs/types/shared/index.js +71 -27
  261. package/lib/commonjs/types/shared/index.js.map +1 -1
  262. package/lib/commonjs/types/shared/multiFactorAuthentication.types.js.map +1 -1
  263. package/lib/commonjs/types/shared/multipleCards.types.js.map +1 -1
  264. package/lib/commonjs/types/shared/onLoadResponse.types.js.map +1 -1
  265. package/lib/commonjs/types/shared/payeeManagement.types.js.map +1 -1
  266. package/lib/commonjs/types/shared/payment/achPayment.types.js +6 -0
  267. package/lib/commonjs/types/shared/payment/achPayment.types.js.map +1 -0
  268. package/lib/commonjs/types/shared/payment/billPayment.types.js +6 -0
  269. package/lib/commonjs/types/shared/payment/billPayment.types.js.map +1 -0
  270. package/lib/commonjs/types/shared/payment/bookPayment.types.js.map +1 -0
  271. package/lib/commonjs/types/shared/payment/index.js +61 -0
  272. package/lib/commonjs/types/shared/payment/index.js.map +1 -0
  273. package/lib/commonjs/types/shared/{payments.types.js → payment/payments.types.js} +8 -19
  274. package/lib/commonjs/types/shared/payment/payments.types.js.map +1 -0
  275. package/lib/commonjs/types/shared/payment/wirePayment.types.js.map +1 -0
  276. package/lib/commonjs/types/shared/repayment.types.js.map +1 -1
  277. package/lib/commonjs/types/shared/securitySettings.js +5 -5
  278. package/lib/commonjs/types/shared/securitySettings.js.map +1 -1
  279. package/lib/commonjs/types/shared/transaction/UNAccountLowBalanceClosureTransaction.js +6 -0
  280. package/lib/commonjs/types/shared/transaction/UNAccountLowBalanceClosureTransaction.js.map +1 -0
  281. package/lib/commonjs/types/shared/transaction/UNAdjustmentTransaction.js +6 -0
  282. package/lib/commonjs/types/shared/transaction/UNAdjustmentTransaction.js.map +1 -0
  283. package/lib/commonjs/types/shared/transaction/UNAtmTransaction.js +6 -0
  284. package/lib/commonjs/types/shared/transaction/UNAtmTransaction.js.map +1 -0
  285. package/lib/commonjs/types/shared/transaction/UNBankRepaymentTransaction.js +6 -0
  286. package/lib/commonjs/types/shared/transaction/UNBankRepaymentTransaction.js.map +1 -0
  287. package/lib/commonjs/types/shared/transaction/UNBillPayTransaction.js +6 -0
  288. package/lib/commonjs/types/shared/transaction/UNBillPayTransaction.js.map +1 -0
  289. package/lib/commonjs/types/shared/transaction/UNBookTransaction.js +6 -0
  290. package/lib/commonjs/types/shared/transaction/UNBookTransaction.js.map +1 -0
  291. package/lib/commonjs/{messages/webMessages/fundAccountPaymentMessage.js → types/shared/transaction/UNCardReversalTransaction.js} +1 -1
  292. package/lib/commonjs/types/shared/transaction/UNCardReversalTransaction.js.map +1 -0
  293. package/lib/commonjs/types/shared/transaction/UNCardTransaction.js +6 -0
  294. package/lib/commonjs/types/shared/transaction/UNCardTransaction.js.map +1 -0
  295. package/lib/commonjs/types/shared/transaction/UNCashDepositTransaction.js +6 -0
  296. package/lib/commonjs/types/shared/transaction/UNCashDepositTransaction.js.map +1 -0
  297. package/lib/commonjs/types/shared/transaction/UNChargebackTransaction.js +6 -0
  298. package/lib/commonjs/types/shared/transaction/UNChargebackTransaction.js.map +1 -0
  299. package/lib/commonjs/types/shared/transaction/UNCheckDepositTransaction.js +6 -0
  300. package/lib/commonjs/types/shared/transaction/UNCheckDepositTransaction.js.map +1 -0
  301. package/lib/commonjs/types/shared/transaction/UNCustomerRepaymentReturnedTransaction.js +6 -0
  302. package/lib/commonjs/types/shared/transaction/UNCustomerRepaymentReturnedTransaction.js.map +1 -0
  303. package/lib/commonjs/types/shared/transaction/UNCustomerRepaymentTransaction.js +6 -0
  304. package/lib/commonjs/types/shared/transaction/UNCustomerRepaymentTransaction.js.map +1 -0
  305. package/lib/commonjs/types/shared/transaction/UNDishonoredAchTransaction.js +6 -0
  306. package/lib/commonjs/types/shared/transaction/UNDishonoredAchTransaction.js.map +1 -0
  307. package/lib/commonjs/types/shared/transaction/UNDisputeSettlementTransaction.js +6 -0
  308. package/lib/commonjs/types/shared/transaction/UNDisputeSettlementTransaction.js.map +1 -0
  309. package/lib/commonjs/types/shared/transaction/UNDisputeTransaction.js +6 -0
  310. package/lib/commonjs/types/shared/transaction/UNDisputeTransaction.js.map +1 -0
  311. package/lib/commonjs/types/shared/transaction/UNFeeReversalTransaction.js +6 -0
  312. package/lib/commonjs/types/shared/transaction/UNFeeReversalTransaction.js.map +1 -0
  313. package/lib/commonjs/types/shared/transaction/UNFeeTransaction.js +6 -0
  314. package/lib/commonjs/types/shared/transaction/UNFeeTransaction.js.map +1 -0
  315. package/lib/commonjs/types/shared/transaction/UNInterchangeShareTransaction.js +6 -0
  316. package/lib/commonjs/types/shared/transaction/UNInterchangeShareTransaction.js.map +1 -0
  317. package/lib/commonjs/types/shared/transaction/UNInterestShareTransaction.js +6 -0
  318. package/lib/commonjs/types/shared/transaction/UNInterestShareTransaction.js.map +1 -0
  319. package/lib/commonjs/types/shared/transaction/UNInterestTransaction.js +6 -0
  320. package/lib/commonjs/types/shared/transaction/UNInterestTransaction.js.map +1 -0
  321. package/lib/commonjs/types/shared/transaction/UNNegativeBalanceCoverageTransaction.js +6 -0
  322. package/lib/commonjs/types/shared/transaction/UNNegativeBalanceCoverageTransaction.js.map +1 -0
  323. package/lib/commonjs/types/shared/transaction/UNOriginatedAchTransaction.js +6 -0
  324. package/lib/commonjs/types/shared/transaction/UNOriginatedAchTransaction.js.map +1 -0
  325. package/lib/commonjs/types/shared/transaction/UNPaymentAdvanceTransaction.js +6 -0
  326. package/lib/commonjs/types/shared/transaction/UNPaymentAdvanceTransaction.js.map +1 -0
  327. package/lib/commonjs/types/shared/transaction/UNPaymentCanceledTransaction.js +6 -0
  328. package/lib/commonjs/types/shared/transaction/UNPaymentCanceledTransaction.js.map +1 -0
  329. package/lib/commonjs/types/shared/transaction/UNPurchaseTransaction.js +6 -0
  330. package/lib/commonjs/types/shared/transaction/UNPurchaseTransaction.js.map +1 -0
  331. package/lib/commonjs/types/shared/transaction/UNReceivedAchTransaction.js +6 -0
  332. package/lib/commonjs/types/shared/transaction/UNReceivedAchTransaction.js.map +1 -0
  333. package/lib/commonjs/types/shared/transaction/UNReleaseTransaction.js +6 -0
  334. package/lib/commonjs/types/shared/transaction/UNReleaseTransaction.js.map +1 -0
  335. package/lib/commonjs/types/shared/transaction/UNRepaidPaymentAdvanceTransaction.js +6 -0
  336. package/lib/commonjs/types/shared/transaction/UNRepaidPaymentAdvanceTransaction.js.map +1 -0
  337. package/lib/commonjs/types/shared/transaction/UNReturnedAchTransaction.js +6 -0
  338. package/lib/commonjs/types/shared/transaction/UNReturnedAchTransaction.js.map +1 -0
  339. package/lib/commonjs/types/shared/transaction/UNReturnedCheckDepositTransaction.js +6 -0
  340. package/lib/commonjs/types/shared/transaction/UNReturnedCheckDepositTransaction.js.map +1 -0
  341. package/lib/commonjs/types/shared/transaction/UNReturnedReceivedAchTransaction.js +6 -0
  342. package/lib/commonjs/types/shared/transaction/UNReturnedReceivedAchTransaction.js.map +1 -0
  343. package/lib/commonjs/types/shared/transaction/UNRewardTransaction.js +6 -0
  344. package/lib/commonjs/types/shared/transaction/UNRewardTransaction.js.map +1 -0
  345. package/lib/commonjs/types/shared/transaction/UNSettlementTransaction.js +6 -0
  346. package/lib/commonjs/types/shared/transaction/UNSettlementTransaction.js.map +1 -0
  347. package/lib/commonjs/types/shared/transaction/UNSponsoredInterestTransaction.js +6 -0
  348. package/lib/commonjs/types/shared/transaction/UNSponsoredInterestTransaction.js.map +1 -0
  349. package/lib/commonjs/types/shared/transaction/UNWireTransaction.js +6 -0
  350. package/lib/commonjs/types/shared/transaction/UNWireTransaction.js.map +1 -0
  351. package/lib/commonjs/types/shared/transaction/index.js +413 -0
  352. package/lib/commonjs/types/shared/transaction/index.js.map +1 -0
  353. package/lib/commonjs/types/shared/transaction/transactions.types.js +84 -0
  354. package/lib/commonjs/types/shared/transaction/transactions.types.js.map +1 -0
  355. package/lib/commonjs/types/shared/types.js +1 -1
  356. package/lib/commonjs/types/shared/types.js.map +1 -1
  357. package/lib/commonjs/types/shared/versioning.types.js.map +1 -1
  358. package/lib/commonjs/types/shared/wallet.types.js.map +1 -1
  359. package/lib/commonjs/{unitSdkManager/UnitSdk.api.js → unitComponentsSdkManager/UnitComponentsSdk.api.js} +6 -6
  360. package/lib/commonjs/unitComponentsSdkManager/UnitComponentsSdk.api.js.map +1 -0
  361. package/lib/commonjs/{unitSdkManager/UnitSdk.constants.js → unitComponentsSdkManager/UnitComponentsSdk.constants.js} +6 -6
  362. package/lib/commonjs/unitComponentsSdkManager/UnitComponentsSdk.constants.js.map +1 -0
  363. package/lib/commonjs/{unitSdkManager/UnitSdkManager.js → unitComponentsSdkManager/UnitComponentsSdkManager.js} +20 -23
  364. package/lib/commonjs/unitComponentsSdkManager/UnitComponentsSdkManager.js.map +1 -0
  365. package/lib/commonjs/{unitSdkManager/UnitSdkManager.utils.internal.js → unitComponentsSdkManager/UnitComponentsSdkManager.utils.internal.js} +4 -4
  366. package/lib/commonjs/unitComponentsSdkManager/UnitComponentsSdkManager.utils.internal.js.map +1 -0
  367. package/lib/commonjs/{unitSdkManager/unitHelpersManager/UnitHelpersManager.js → unitComponentsSdkManager/unitComponentsHelpersManager/UnitComponentsHelpersManager.js} +4 -4
  368. package/lib/commonjs/unitComponentsSdkManager/unitComponentsHelpersManager/UnitComponentsHelpersManager.js.map +1 -0
  369. package/lib/commonjs/unitComponentsSdkManager/unitComponentsUiManager/unitComponentsUiManager.js +18 -0
  370. package/lib/commonjs/unitComponentsSdkManager/unitComponentsUiManager/unitComponentsUiManager.js.map +1 -0
  371. package/lib/commonjs/utils/AppInfo.js +2 -42
  372. package/lib/commonjs/utils/AppInfo.js.map +1 -1
  373. package/lib/commonjs/utils/onLoadMessages.utils.js.map +1 -1
  374. package/lib/commonjs/utils/webVersioningStrategy.utils.js +5 -5
  375. package/lib/commonjs/utils/webVersioningStrategy.utils.js.map +1 -1
  376. package/lib/commonjs/utils/windowUnitStore.js.map +1 -1
  377. package/lib/commonjs/webComponent/WebComponent.js +31 -27
  378. package/lib/commonjs/webComponent/WebComponent.js.map +1 -1
  379. package/lib/commonjs/webComponent/WebComponent.utils.js +9 -13
  380. package/lib/commonjs/webComponent/WebComponent.utils.js.map +1 -1
  381. package/lib/commonjs/webComponent/html.js +2 -0
  382. package/lib/commonjs/webComponent/html.js.map +1 -1
  383. package/lib/module/assets/images/index.js.map +1 -1
  384. package/lib/module/components/UNACHCreditComponent/UNACHCreditComponent.js +6 -5
  385. package/lib/module/components/UNACHCreditComponent/UNACHCreditComponent.js.map +1 -1
  386. package/lib/module/components/UNACHCreditComponent/UNACHCreditComponent.utils.js +0 -1
  387. package/lib/module/components/UNACHCreditComponent/UNACHCreditComponent.utils.js.map +1 -1
  388. package/lib/module/components/UNACHCreditComponent/index.js.map +1 -1
  389. package/lib/module/components/UNACHDebitComponent/UNACHDebitComponent.js +6 -5
  390. package/lib/module/components/UNACHDebitComponent/UNACHDebitComponent.js.map +1 -1
  391. package/lib/module/components/UNACHDebitComponent/UNACHDebitComponent.utils.js +0 -1
  392. package/lib/module/components/UNACHDebitComponent/UNACHDebitComponent.utils.js.map +1 -1
  393. package/lib/module/components/UNACHDebitComponent/index.js.map +1 -1
  394. package/lib/module/components/UNAccountComponent/UNAccountComponent.js +7 -6
  395. package/lib/module/components/UNAccountComponent/UNAccountComponent.js.map +1 -1
  396. package/lib/module/components/UNAccountComponent/UNAccountComponent.utils.js +6 -1
  397. package/lib/module/components/UNAccountComponent/UNAccountComponent.utils.js.map +1 -1
  398. package/lib/module/components/UNAccountComponent/index.js.map +1 -1
  399. package/lib/module/components/UNActivityComponent/UNActivityComponent.js +6 -5
  400. package/lib/module/components/UNActivityComponent/UNActivityComponent.js.map +1 -1
  401. package/lib/module/components/UNActivityComponent/UNActivityComponent.utils.js +0 -1
  402. package/lib/module/components/UNActivityComponent/UNActivityComponent.utils.js.map +1 -1
  403. package/lib/module/components/UNActivityComponent/index.js.map +1 -1
  404. package/lib/module/components/UNBookPaymentComponent/UNBookPaymentComponent.js +5 -4
  405. package/lib/module/components/UNBookPaymentComponent/UNBookPaymentComponent.js.map +1 -1
  406. package/lib/module/components/UNBookPaymentComponent/UNBookPaymentComponent.utils.js +0 -1
  407. package/lib/module/components/UNBookPaymentComponent/UNBookPaymentComponent.utils.js.map +1 -1
  408. package/lib/module/components/UNBookPaymentComponent/index.js.map +1 -1
  409. package/lib/module/components/UNBottomSheetComponent/UNBottomSheetComponent.constants.js.map +1 -1
  410. package/lib/module/components/UNBottomSheetComponent/UNBottomSheetComponent.js +9 -9
  411. package/lib/module/components/UNBottomSheetComponent/UNBottomSheetComponent.js.map +1 -1
  412. package/lib/module/components/UNBottomSheetComponent/UNBottomSheetComponent.styles.js.map +1 -1
  413. package/lib/module/components/UNBottomSheetComponent/UNBottomSheetComponent.utils.js +80 -27
  414. package/lib/module/components/UNBottomSheetComponent/UNBottomSheetComponent.utils.js.map +1 -1
  415. package/lib/module/components/UNBottomSheetComponent/components/UNBottomSheetNativeComponent/UNBottomSheetNativeComponent.js +39 -19
  416. package/lib/module/components/UNBottomSheetComponent/components/UNBottomSheetNativeComponent/UNBottomSheetNativeComponent.js.map +1 -1
  417. package/lib/module/components/UNBottomSheetComponent/components/UNBottomSheetNativeComponent/index.js.map +1 -1
  418. package/lib/module/components/UNBottomSheetComponent/components/UNBottomSheetSlotComponent/UNBottomSheetSlotComponent.js +16 -8
  419. package/lib/module/components/UNBottomSheetComponent/components/UNBottomSheetSlotComponent/UNBottomSheetSlotComponent.js.map +1 -1
  420. package/lib/module/components/UNBottomSheetComponent/components/UNBottomSheetSlotComponent/index.js.map +1 -1
  421. package/lib/module/components/UNBottomSheetComponent/components/index.js.map +1 -1
  422. package/lib/module/components/UNBottomSheetComponent/index.js.map +1 -1
  423. package/lib/module/components/UNCardActionComponent/UNCardActionComponent.js +5 -4
  424. package/lib/module/components/UNCardActionComponent/UNCardActionComponent.js.map +1 -1
  425. package/lib/module/components/UNCardActionComponent/UNCardActionComponent.utils.js +0 -1
  426. package/lib/module/components/UNCardActionComponent/UNCardActionComponent.utils.js.map +1 -1
  427. package/lib/module/components/UNCardActionComponent/index.js.map +1 -1
  428. package/lib/module/components/UNCardComponent/UNCardComponent.js +9 -11
  429. package/lib/module/components/UNCardComponent/UNCardComponent.js.map +1 -1
  430. package/lib/module/components/UNCardComponent/UNCardComponent.utils.js +4 -3
  431. package/lib/module/components/UNCardComponent/UNCardComponent.utils.js.map +1 -1
  432. package/lib/module/components/UNCardComponent/index.js.map +1 -1
  433. package/lib/module/components/UNCheckDepositComponent/UNCheckDepositComponent.js +7 -8
  434. package/lib/module/components/UNCheckDepositComponent/UNCheckDepositComponent.js.map +1 -1
  435. package/lib/module/components/UNCheckDepositComponent/UNCheckDepositComponent.utils.js +0 -1
  436. package/lib/module/components/UNCheckDepositComponent/UNCheckDepositComponent.utils.js.map +1 -1
  437. package/lib/module/components/UNCheckDepositComponent/index.js.map +1 -1
  438. package/lib/module/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.js +6 -5
  439. package/lib/module/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.js.map +1 -1
  440. package/lib/module/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.utils.js +1 -2
  441. package/lib/module/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.utils.js.map +1 -1
  442. package/lib/module/components/UNMultiFactorAuthenticationComponent/index.js.map +1 -1
  443. package/lib/module/components/UNMultipleCardsComponent/UNMultipleCardsComponent.js +18 -3
  444. package/lib/module/components/UNMultipleCardsComponent/UNMultipleCardsComponent.js.map +1 -1
  445. package/lib/module/components/UNMultipleCardsComponent/UNMultipleCardsComponent.utils.js +0 -1
  446. package/lib/module/components/UNMultipleCardsComponent/UNMultipleCardsComponent.utils.js.map +1 -1
  447. package/lib/module/components/UNMultipleCardsComponent/index.js.map +1 -1
  448. package/lib/module/components/UNNextRepaymentComponent/UNNextRepaymentComponent.js +4 -3
  449. package/lib/module/components/UNNextRepaymentComponent/UNNextRepaymentComponent.js.map +1 -1
  450. package/lib/module/components/UNNextRepaymentComponent/UNNextRepaymentComponent.utils.js +0 -1
  451. package/lib/module/components/UNNextRepaymentComponent/UNNextRepaymentComponent.utils.js.map +1 -1
  452. package/lib/module/components/UNNextRepaymentComponent/index.js.map +1 -1
  453. package/lib/module/components/UNPayeeManagementComponent/UNPayeeManagementComponent.js +6 -5
  454. package/lib/module/components/UNPayeeManagementComponent/UNPayeeManagementComponent.js.map +1 -1
  455. package/lib/module/components/UNPayeeManagementComponent/UNPayeeManagementComponent.utils.js +0 -1
  456. package/lib/module/components/UNPayeeManagementComponent/UNPayeeManagementComponent.utils.js.map +1 -1
  457. package/lib/module/components/UNPayeeManagementComponent/index.js.map +1 -1
  458. package/lib/module/components/UNProgramDetailsComponent/UNProgramDetailsComponent.js +4 -3
  459. package/lib/module/components/UNProgramDetailsComponent/UNProgramDetailsComponent.js.map +1 -1
  460. package/lib/module/components/UNProgramDetailsComponent/UNProgramDetailsComponent.utils.js +0 -1
  461. package/lib/module/components/UNProgramDetailsComponent/UNProgramDetailsComponent.utils.js.map +1 -1
  462. package/lib/module/components/UNProgramDetailsComponent/index.js.map +1 -1
  463. package/lib/module/components/UNWhiteLabelAppComponent/UNWhiteLabelAppComponent.js +7 -5
  464. package/lib/module/components/UNWhiteLabelAppComponent/UNWhiteLabelAppComponent.js.map +1 -1
  465. package/lib/module/components/UNWhiteLabelAppComponent/UNWhiteLabelAppComponent.utils.js.map +1 -1
  466. package/lib/module/components/UNWhiteLabelAppComponent/index.js.map +1 -1
  467. package/lib/module/components/UNWirePaymentComponent/UNWirePaymentComponent.js +4 -3
  468. package/lib/module/components/UNWirePaymentComponent/UNWirePaymentComponent.js.map +1 -1
  469. package/lib/module/components/UNWirePaymentComponent/UNWirePaymentComponent.utils.js +0 -1
  470. package/lib/module/components/UNWirePaymentComponent/UNWirePaymentComponent.utils.js.map +1 -1
  471. package/lib/module/components/UNWirePaymentComponent/index.js.map +1 -1
  472. package/lib/module/components/index.js +0 -1
  473. package/lib/module/components/index.js.map +1 -1
  474. package/lib/module/custom.d.js.map +1 -1
  475. package/lib/module/flows/{UNFlows.js → UNComponentsFlows.js} +4 -4
  476. package/lib/module/flows/UNComponentsFlows.js.map +1 -0
  477. package/lib/module/flows/card/UNCardFlows.js.map +1 -1
  478. package/lib/module/helpers/BottomSheet/BottomSheet.js +10 -26
  479. package/lib/module/helpers/BottomSheet/BottomSheet.js.map +1 -1
  480. package/lib/module/helpers/BottomSheet/BottomSheet.styles.js.map +1 -1
  481. package/lib/module/helpers/UNKeyboardAvoidingView/UNKeyboardAvoidingView.js +19 -0
  482. package/lib/module/helpers/UNKeyboardAvoidingView/UNKeyboardAvoidingView.js.map +1 -0
  483. package/lib/module/helpers/pushProvisioningService/helpers.js.map +1 -1
  484. package/lib/module/helpers/pushProvisioningService/hooks/useCardWallet.js +9 -9
  485. package/lib/module/helpers/pushProvisioningService/hooks/useCardWallet.js.map +1 -1
  486. package/lib/module/helpers/pushProvisioningService/hooks/useLaunchInitialize.js +2 -2
  487. package/lib/module/helpers/pushProvisioningService/hooks/useLaunchInitialize.js.map +1 -1
  488. package/lib/module/helpers/pushProvisioningService/startProvisioning.js +2 -2
  489. package/lib/module/helpers/pushProvisioningService/startProvisioning.js.map +1 -1
  490. package/lib/module/helpers/pushProvisioningService/types.js +7 -0
  491. package/lib/module/helpers/pushProvisioningService/types.js.map +1 -1
  492. package/lib/module/helpers/store/helpers.js +1 -1
  493. package/lib/module/helpers/store/helpers.js.map +1 -1
  494. package/lib/module/hooks/useAppStateListener.js +36 -4
  495. package/lib/module/hooks/useAppStateListener.js.map +1 -1
  496. package/lib/module/hooks/useIsJailbrokeDevice.js.map +1 -1
  497. package/lib/module/hooks/useListenerToEvent.js.map +1 -1
  498. package/lib/module/hooks/useSnapshotProtection.js +4 -4
  499. package/lib/module/hooks/useSnapshotProtection.js.map +1 -1
  500. package/lib/module/index.js +1 -1
  501. package/lib/module/index.js.map +1 -1
  502. package/lib/module/messages/nativeMessages/bottomSheetMessage.js.map +1 -1
  503. package/lib/module/messages/nativeMessages/cardMessage.js.map +1 -1
  504. package/lib/module/messages/nativeMessages/index.js.map +1 -1
  505. package/lib/module/messages/nativeMessages/sdkMessage.js.map +1 -1
  506. package/lib/module/messages/webMessages/accountMessage.js.map +1 -1
  507. package/lib/module/messages/webMessages/achCreditMessage.js.map +1 -1
  508. package/lib/module/messages/webMessages/activityMessage.js.map +1 -1
  509. package/lib/module/messages/webMessages/bookPaymentMessage.js.map +1 -1
  510. package/lib/module/messages/webMessages/cardMessage.js.map +1 -1
  511. package/lib/module/messages/webMessages/checkMessage.js +1 -0
  512. package/lib/module/messages/webMessages/checkMessage.js.map +1 -1
  513. package/lib/module/messages/webMessages/index.js.map +1 -1
  514. package/lib/module/messages/webMessages/multiFactorAuthenticationMessage.js.map +1 -1
  515. package/lib/module/messages/webMessages/multipleCardsMessage.js.map +1 -1
  516. package/lib/module/messages/webMessages/onLoadMessage.js +0 -1
  517. package/lib/module/messages/webMessages/onLoadMessage.js.map +1 -1
  518. package/lib/module/messages/webMessages/pageMessage.js.map +1 -1
  519. package/lib/module/messages/webMessages/payeeManagementMessage.js.map +1 -1
  520. package/lib/module/messages/webMessages/paymentsMessage.js.map +1 -1
  521. package/lib/module/messages/webMessages/plaidMessages.js.map +1 -1
  522. package/lib/module/messages/webMessages/unitComponentsMessages.js +20 -0
  523. package/lib/module/messages/webMessages/unitComponentsMessages.js.map +1 -0
  524. package/lib/module/messages/webMessages/wirePaymentMessage.js +2 -0
  525. package/lib/module/messages/webMessages/wirePaymentMessage.js.map +1 -0
  526. package/lib/module/nativeComponents/UNAddToWallet/UNAddToWalletComponent/UNAddToWalletBottomSheetItem.styles.js.map +1 -1
  527. package/lib/module/nativeComponents/UNAddToWallet/UNAddToWalletComponent/UNAddToWalletComponent.js +6 -5
  528. package/lib/module/nativeComponents/UNAddToWallet/UNAddToWalletComponent/UNAddToWalletComponent.js.map +1 -1
  529. package/lib/module/nativeComponents/UNAddToWallet/UNAddToWalletComponent/UNAddToWalletComponent.utils.js.map +1 -1
  530. package/lib/module/nativeComponents/UNAddToWallet/UNAddToWalletComponent/index.js.map +1 -1
  531. package/lib/module/nativeComponents/UNAddToWallet/UnitAddToWalletButtonNativeComponent.js +3 -0
  532. package/lib/module/nativeComponents/UNAddToWallet/UnitAddToWalletButtonNativeComponent.js.map +1 -0
  533. package/lib/module/nativeComponents/UNBaseView/UNBaseView.js +16 -3
  534. package/lib/module/nativeComponents/UNBaseView/UNBaseView.js.map +1 -1
  535. package/lib/module/nativeComponents/UNBaseView/index.js.map +1 -1
  536. package/lib/module/nativeComponents/UNSecureView/UNSecureViewNativeComponent.js +3 -0
  537. package/lib/module/nativeComponents/UNSecureView/UNSecureViewNativeComponent.js.map +1 -0
  538. package/lib/module/nativeModulesHelpers/RNShareFile/RNShareFile.js +14 -0
  539. package/lib/module/nativeModulesHelpers/RNShareFile/RNShareFile.js.map +1 -0
  540. package/lib/module/nativeModulesHelpers/UNPermissionsHelper/UNPermissionsHelper.js +14 -0
  541. package/lib/module/nativeModulesHelpers/UNPermissionsHelper/UNPermissionsHelper.js.map +1 -0
  542. package/lib/module/nativeModulesHelpers/UNSanpshotProtectionHelper/UNSnapshotProtectionHelper.js +4 -6
  543. package/lib/module/nativeModulesHelpers/UNSanpshotProtectionHelper/UNSnapshotProtectionHelper.js.map +1 -1
  544. package/lib/module/nativeModulesHelpers/UNSecurityHelper.js +2 -4
  545. package/lib/module/nativeModulesHelpers/UNSecurityHelper.js.map +1 -1
  546. package/lib/module/nativeModulesHelpers/UNStoreModuleHelper/UNStoreModuleHelper.js +3 -0
  547. package/lib/module/nativeModulesHelpers/UNStoreModuleHelper/UNStoreModuleHelper.js.map +1 -0
  548. package/lib/module/networking/common/UNNetworkConstants.js +4 -4
  549. package/lib/module/networking/common/UNNetworkConstants.js.map +1 -1
  550. package/lib/module/networking/requests/UNWalletPayloadRequest.js +3 -3
  551. package/lib/module/networking/requests/UNWalletPayloadRequest.js.map +1 -1
  552. package/lib/module/scripts/html/bodyHtml.js.map +1 -1
  553. package/lib/module/scripts/html/bodyScript.js +42 -28
  554. package/lib/module/scripts/html/bodyScript.js.map +1 -1
  555. package/lib/module/scripts/html/fontFaces.js.map +1 -1
  556. package/lib/module/slices/BottomSheetSlice.js.map +1 -1
  557. package/lib/module/slices/ConfigurationSlice.js +5 -1
  558. package/lib/module/slices/ConfigurationSlice.js.map +1 -1
  559. package/lib/module/slices/SharedEventsSlice.js.map +1 -1
  560. package/lib/module/slices/pushProvisioningSlice.js.map +1 -1
  561. package/lib/module/store/index.js.map +1 -1
  562. package/lib/module/store/store.js.map +1 -1
  563. package/lib/module/styles/fonts.js +2 -2
  564. package/lib/module/styles/fonts.js.map +1 -1
  565. package/lib/module/styles/variables.js.map +1 -1
  566. package/lib/module/types/internal/bottomSheet.types.js +15 -0
  567. package/lib/module/types/internal/bottomSheet.types.js.map +1 -1
  568. package/lib/module/types/internal/errorHelpers.js +5 -5
  569. package/lib/module/types/internal/errorHelpers.js.map +1 -1
  570. package/lib/module/types/internal/unitStore.types.js.map +1 -1
  571. package/lib/module/types/internal/webComponent.types.js +5 -1
  572. package/lib/module/types/internal/webComponent.types.js.map +1 -1
  573. package/lib/module/types/shared/account.types.js +6 -0
  574. package/lib/module/types/shared/account.types.js.map +1 -1
  575. package/lib/module/types/shared/ach.types.js +2 -0
  576. package/lib/{commonjs/types/shared/achCredit.types.js.map → module/types/shared/ach.types.js.map} +1 -1
  577. package/lib/module/types/shared/activity.types.js +7 -0
  578. package/lib/module/types/shared/activity.types.js.map +1 -1
  579. package/lib/module/types/shared/authorization.types.js +1 -1
  580. package/lib/module/types/shared/authorization.types.js.map +1 -1
  581. package/lib/module/types/shared/card.types.js +20 -0
  582. package/lib/module/types/shared/card.types.js.map +1 -1
  583. package/lib/module/types/shared/checkDeposit.types.js +5 -0
  584. package/lib/module/types/shared/checkDeposit.types.js.map +1 -1
  585. package/lib/module/types/shared/counterparty.types.js +18 -0
  586. package/lib/module/types/shared/counterparty.types.js.map +1 -0
  587. package/lib/module/types/shared/customer.types.js +28 -0
  588. package/lib/module/types/shared/customer.types.js.map +1 -0
  589. package/lib/module/types/shared/env.types.js +5 -5
  590. package/lib/module/types/shared/env.types.js.map +1 -1
  591. package/lib/module/types/shared/error.types.js +21 -20
  592. package/lib/module/types/shared/error.types.js.map +1 -1
  593. package/lib/module/types/shared/fonts.types.js.map +1 -1
  594. package/lib/module/types/shared/index.js +8 -4
  595. package/lib/module/types/shared/index.js.map +1 -1
  596. package/lib/module/types/shared/multiFactorAuthentication.types.js.map +1 -1
  597. package/lib/module/types/shared/multipleCards.types.js.map +1 -1
  598. package/lib/module/types/shared/onLoadResponse.types.js.map +1 -1
  599. package/lib/module/types/shared/payeeManagement.types.js.map +1 -1
  600. package/lib/module/types/shared/payment/achPayment.types.js +2 -0
  601. package/lib/module/types/shared/payment/achPayment.types.js.map +1 -0
  602. package/lib/module/types/shared/payment/billPayment.types.js +2 -0
  603. package/lib/module/types/shared/payment/billPayment.types.js.map +1 -0
  604. package/lib/module/types/shared/payment/bookPayment.types.js.map +1 -0
  605. package/lib/module/types/shared/payment/index.js +6 -0
  606. package/lib/module/types/shared/payment/index.js.map +1 -0
  607. package/lib/module/types/shared/{payments.types.js → payment/payments.types.js} +6 -18
  608. package/lib/module/types/shared/payment/payments.types.js.map +1 -0
  609. package/lib/module/types/shared/payment/wirePayment.types.js.map +1 -0
  610. package/lib/module/types/shared/repayment.types.js.map +1 -1
  611. package/lib/module/types/shared/securitySettings.js +4 -4
  612. package/lib/module/types/shared/securitySettings.js.map +1 -1
  613. package/lib/module/types/shared/transaction/UNAccountLowBalanceClosureTransaction.js +2 -0
  614. package/lib/module/types/shared/transaction/UNAccountLowBalanceClosureTransaction.js.map +1 -0
  615. package/lib/module/types/shared/transaction/UNAdjustmentTransaction.js +2 -0
  616. package/lib/module/types/shared/transaction/UNAdjustmentTransaction.js.map +1 -0
  617. package/lib/module/types/shared/transaction/UNAtmTransaction.js +2 -0
  618. package/lib/module/types/shared/transaction/UNAtmTransaction.js.map +1 -0
  619. package/lib/module/types/shared/transaction/UNBankRepaymentTransaction.js +2 -0
  620. package/lib/module/types/shared/transaction/UNBankRepaymentTransaction.js.map +1 -0
  621. package/lib/module/types/shared/transaction/UNBillPayTransaction.js +2 -0
  622. package/lib/module/types/shared/transaction/UNBillPayTransaction.js.map +1 -0
  623. package/lib/module/types/shared/transaction/UNBookTransaction.js +2 -0
  624. package/lib/module/types/shared/transaction/UNBookTransaction.js.map +1 -0
  625. package/lib/module/types/shared/transaction/UNCardReversalTransaction.js +2 -0
  626. package/lib/module/types/shared/transaction/UNCardReversalTransaction.js.map +1 -0
  627. package/lib/module/types/shared/transaction/UNCardTransaction.js +2 -0
  628. package/lib/module/types/shared/transaction/UNCardTransaction.js.map +1 -0
  629. package/lib/module/types/shared/transaction/UNCashDepositTransaction.js +2 -0
  630. package/lib/module/types/shared/transaction/UNCashDepositTransaction.js.map +1 -0
  631. package/lib/module/types/shared/transaction/UNChargebackTransaction.js +2 -0
  632. package/lib/module/types/shared/transaction/UNChargebackTransaction.js.map +1 -0
  633. package/lib/module/types/shared/transaction/UNCheckDepositTransaction.js +2 -0
  634. package/lib/module/types/shared/transaction/UNCheckDepositTransaction.js.map +1 -0
  635. package/lib/module/types/shared/transaction/UNCustomerRepaymentReturnedTransaction.js +2 -0
  636. package/lib/module/types/shared/transaction/UNCustomerRepaymentReturnedTransaction.js.map +1 -0
  637. package/lib/module/types/shared/transaction/UNCustomerRepaymentTransaction.js +2 -0
  638. package/lib/module/types/shared/transaction/UNCustomerRepaymentTransaction.js.map +1 -0
  639. package/lib/module/types/shared/transaction/UNDishonoredAchTransaction.js +2 -0
  640. package/lib/module/types/shared/transaction/UNDishonoredAchTransaction.js.map +1 -0
  641. package/lib/module/types/shared/transaction/UNDisputeSettlementTransaction.js +2 -0
  642. package/lib/module/types/shared/transaction/UNDisputeSettlementTransaction.js.map +1 -0
  643. package/lib/module/types/shared/transaction/UNDisputeTransaction.js +2 -0
  644. package/lib/module/types/shared/transaction/UNDisputeTransaction.js.map +1 -0
  645. package/lib/module/types/shared/transaction/UNFeeReversalTransaction.js +2 -0
  646. package/lib/module/types/shared/transaction/UNFeeReversalTransaction.js.map +1 -0
  647. package/lib/module/types/shared/transaction/UNFeeTransaction.js +2 -0
  648. package/lib/module/types/shared/transaction/UNFeeTransaction.js.map +1 -0
  649. package/lib/module/types/shared/transaction/UNInterchangeShareTransaction.js +2 -0
  650. package/lib/module/types/shared/transaction/UNInterchangeShareTransaction.js.map +1 -0
  651. package/lib/module/types/shared/transaction/UNInterestShareTransaction.js +2 -0
  652. package/lib/module/types/shared/transaction/UNInterestShareTransaction.js.map +1 -0
  653. package/lib/module/types/shared/transaction/UNInterestTransaction.js +2 -0
  654. package/lib/module/types/shared/transaction/UNInterestTransaction.js.map +1 -0
  655. package/lib/module/types/shared/transaction/UNNegativeBalanceCoverageTransaction.js +2 -0
  656. package/lib/module/types/shared/transaction/UNNegativeBalanceCoverageTransaction.js.map +1 -0
  657. package/lib/module/types/shared/transaction/UNOriginatedAchTransaction.js +2 -0
  658. package/lib/module/types/shared/transaction/UNOriginatedAchTransaction.js.map +1 -0
  659. package/lib/module/types/shared/transaction/UNPaymentAdvanceTransaction.js +2 -0
  660. package/lib/module/types/shared/transaction/UNPaymentAdvanceTransaction.js.map +1 -0
  661. package/lib/module/types/shared/transaction/UNPaymentCanceledTransaction.js +2 -0
  662. package/lib/module/types/shared/transaction/UNPaymentCanceledTransaction.js.map +1 -0
  663. package/lib/module/types/shared/transaction/UNPurchaseTransaction.js +2 -0
  664. package/lib/module/types/shared/transaction/UNPurchaseTransaction.js.map +1 -0
  665. package/lib/module/types/shared/transaction/UNReceivedAchTransaction.js +2 -0
  666. package/lib/module/types/shared/transaction/UNReceivedAchTransaction.js.map +1 -0
  667. package/lib/module/types/shared/transaction/UNReleaseTransaction.js +2 -0
  668. package/lib/module/types/shared/transaction/UNReleaseTransaction.js.map +1 -0
  669. package/lib/module/types/shared/transaction/UNRepaidPaymentAdvanceTransaction.js +2 -0
  670. package/lib/module/types/shared/transaction/UNRepaidPaymentAdvanceTransaction.js.map +1 -0
  671. package/lib/module/types/shared/transaction/UNReturnedAchTransaction.js +2 -0
  672. package/lib/module/types/shared/transaction/UNReturnedAchTransaction.js.map +1 -0
  673. package/lib/module/types/shared/transaction/UNReturnedCheckDepositTransaction.js +2 -0
  674. package/lib/module/types/shared/transaction/UNReturnedCheckDepositTransaction.js.map +1 -0
  675. package/lib/module/types/shared/transaction/UNReturnedReceivedAchTransaction.js +2 -0
  676. package/lib/module/types/shared/transaction/UNReturnedReceivedAchTransaction.js.map +1 -0
  677. package/lib/module/types/shared/transaction/UNRewardTransaction.js +2 -0
  678. package/lib/module/types/shared/transaction/UNRewardTransaction.js.map +1 -0
  679. package/lib/module/types/shared/transaction/UNSettlementTransaction.js +2 -0
  680. package/lib/module/types/shared/transaction/UNSettlementTransaction.js.map +1 -0
  681. package/lib/module/types/shared/transaction/UNSponsoredInterestTransaction.js +2 -0
  682. package/lib/module/types/shared/transaction/UNSponsoredInterestTransaction.js.map +1 -0
  683. package/lib/module/types/shared/transaction/UNWireTransaction.js +2 -0
  684. package/lib/module/types/shared/transaction/UNWireTransaction.js.map +1 -0
  685. package/lib/module/types/shared/transaction/index.js +38 -0
  686. package/lib/module/types/shared/transaction/index.js.map +1 -0
  687. package/lib/module/types/shared/transaction/transactions.types.js +78 -0
  688. package/lib/module/types/shared/transaction/transactions.types.js.map +1 -0
  689. package/lib/module/types/shared/types.js +0 -2
  690. package/lib/module/types/shared/types.js.map +1 -1
  691. package/lib/module/types/shared/versioning.types.js.map +1 -1
  692. package/lib/module/types/shared/wallet.types.js.map +1 -1
  693. package/lib/module/{unitSdkManager/UnitSdk.api.js → unitComponentsSdkManager/UnitComponentsSdk.api.js} +5 -5
  694. package/lib/module/unitComponentsSdkManager/UnitComponentsSdk.api.js.map +1 -0
  695. package/lib/module/{unitSdkManager/UnitSdk.constants.js → unitComponentsSdkManager/UnitComponentsSdk.constants.js} +6 -6
  696. package/lib/module/unitComponentsSdkManager/UnitComponentsSdk.constants.js.map +1 -0
  697. package/lib/module/{unitSdkManager/UnitSdkManager.js → unitComponentsSdkManager/UnitComponentsSdkManager.js} +16 -19
  698. package/lib/module/unitComponentsSdkManager/UnitComponentsSdkManager.js.map +1 -0
  699. package/lib/module/{unitSdkManager/UnitSdkManager.utils.internal.js → unitComponentsSdkManager/UnitComponentsSdkManager.utils.internal.js} +5 -5
  700. package/lib/module/unitComponentsSdkManager/UnitComponentsSdkManager.utils.internal.js.map +1 -0
  701. package/lib/module/{unitSdkManager/unitHelpersManager/UnitHelpersManager.js → unitComponentsSdkManager/unitComponentsHelpersManager/UnitComponentsHelpersManager.js} +2 -2
  702. package/lib/module/unitComponentsSdkManager/unitComponentsHelpersManager/UnitComponentsHelpersManager.js.map +1 -0
  703. package/lib/module/unitComponentsSdkManager/unitComponentsUiManager/unitComponentsUiManager.js +11 -0
  704. package/lib/module/unitComponentsSdkManager/unitComponentsUiManager/unitComponentsUiManager.js.map +1 -0
  705. package/lib/module/utils/AppInfo.js +2 -38
  706. package/lib/module/utils/AppInfo.js.map +1 -1
  707. package/lib/module/utils/onLoadMessages.utils.js.map +1 -1
  708. package/lib/module/utils/webVersioningStrategy.utils.js +5 -5
  709. package/lib/module/utils/webVersioningStrategy.utils.js.map +1 -1
  710. package/lib/module/utils/windowUnitStore.js.map +1 -1
  711. package/lib/module/webComponent/WebComponent.js +25 -21
  712. package/lib/module/webComponent/WebComponent.js.map +1 -1
  713. package/lib/module/webComponent/WebComponent.utils.js +5 -7
  714. package/lib/module/webComponent/WebComponent.utils.js.map +1 -1
  715. package/lib/module/webComponent/html.js +3 -1
  716. package/lib/module/webComponent/html.js.map +1 -1
  717. package/lib/typescript/src/components/UNACHCreditComponent/UNACHCreditComponent.d.ts +3 -5
  718. package/lib/typescript/src/components/UNACHCreditComponent/UNACHCreditComponent.d.ts.map +1 -1
  719. package/lib/typescript/src/components/UNACHCreditComponent/UNACHCreditComponent.utils.d.ts.map +1 -1
  720. package/lib/typescript/src/components/UNACHDebitComponent/UNACHDebitComponent.d.ts +3 -5
  721. package/lib/typescript/src/components/UNACHDebitComponent/UNACHDebitComponent.d.ts.map +1 -1
  722. package/lib/typescript/src/components/UNACHDebitComponent/UNACHDebitComponent.utils.d.ts.map +1 -1
  723. package/lib/typescript/src/components/UNAccountComponent/UNAccountComponent.d.ts +9 -7
  724. package/lib/typescript/src/components/UNAccountComponent/UNAccountComponent.d.ts.map +1 -1
  725. package/lib/typescript/src/components/UNAccountComponent/UNAccountComponent.utils.d.ts +1 -1
  726. package/lib/typescript/src/components/UNAccountComponent/UNAccountComponent.utils.d.ts.map +1 -1
  727. package/lib/typescript/src/components/UNActivityComponent/UNActivityComponent.d.ts +2 -5
  728. package/lib/typescript/src/components/UNActivityComponent/UNActivityComponent.d.ts.map +1 -1
  729. package/lib/typescript/src/components/UNActivityComponent/UNActivityComponent.utils.d.ts +1 -1
  730. package/lib/typescript/src/components/UNActivityComponent/UNActivityComponent.utils.d.ts.map +1 -1
  731. package/lib/typescript/src/components/UNBookPaymentComponent/UNBookPaymentComponent.d.ts +3 -4
  732. package/lib/typescript/src/components/UNBookPaymentComponent/UNBookPaymentComponent.d.ts.map +1 -1
  733. package/lib/typescript/src/components/UNBookPaymentComponent/UNBookPaymentComponent.utils.d.ts.map +1 -1
  734. package/lib/typescript/src/components/UNBottomSheetComponent/UNBottomSheetComponent.d.ts.map +1 -1
  735. package/lib/typescript/src/components/UNBottomSheetComponent/UNBottomSheetComponent.utils.d.ts +3 -3
  736. package/lib/typescript/src/components/UNBottomSheetComponent/UNBottomSheetComponent.utils.d.ts.map +1 -1
  737. package/lib/typescript/src/components/UNBottomSheetComponent/components/UNBottomSheetNativeComponent/UNBottomSheetNativeComponent.d.ts.map +1 -1
  738. package/lib/typescript/src/components/UNBottomSheetComponent/components/UNBottomSheetSlotComponent/UNBottomSheetSlotComponent.d.ts +1 -1
  739. package/lib/typescript/src/components/UNBottomSheetComponent/components/UNBottomSheetSlotComponent/UNBottomSheetSlotComponent.d.ts.map +1 -1
  740. package/lib/typescript/src/components/UNCardActionComponent/UNCardActionComponent.d.ts +2 -3
  741. package/lib/typescript/src/components/UNCardActionComponent/UNCardActionComponent.d.ts.map +1 -1
  742. package/lib/typescript/src/components/UNCardActionComponent/UNCardActionComponent.utils.d.ts.map +1 -1
  743. package/lib/typescript/src/components/UNCardComponent/UNCardComponent.d.ts +5 -6
  744. package/lib/typescript/src/components/UNCardComponent/UNCardComponent.d.ts.map +1 -1
  745. package/lib/typescript/src/components/UNCardComponent/UNCardComponent.utils.d.ts +1 -1
  746. package/lib/typescript/src/components/UNCardComponent/UNCardComponent.utils.d.ts.map +1 -1
  747. package/lib/typescript/src/components/UNCheckDepositComponent/UNCheckDepositComponent.d.ts +4 -6
  748. package/lib/typescript/src/components/UNCheckDepositComponent/UNCheckDepositComponent.d.ts.map +1 -1
  749. package/lib/typescript/src/components/UNCheckDepositComponent/UNCheckDepositComponent.utils.d.ts.map +1 -1
  750. package/lib/typescript/src/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.d.ts +2 -4
  751. package/lib/typescript/src/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.d.ts.map +1 -1
  752. package/lib/typescript/src/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.utils.d.ts +1 -2
  753. package/lib/typescript/src/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.utils.d.ts.map +1 -1
  754. package/lib/typescript/src/components/UNMultipleCardsComponent/UNMultipleCardsComponent.d.ts +3 -4
  755. package/lib/typescript/src/components/UNMultipleCardsComponent/UNMultipleCardsComponent.d.ts.map +1 -1
  756. package/lib/typescript/src/components/UNMultipleCardsComponent/UNMultipleCardsComponent.utils.d.ts.map +1 -1
  757. package/lib/typescript/src/components/UNNextRepaymentComponent/UNNextRepaymentComponent.d.ts +2 -4
  758. package/lib/typescript/src/components/UNNextRepaymentComponent/UNNextRepaymentComponent.d.ts.map +1 -1
  759. package/lib/typescript/src/components/UNNextRepaymentComponent/UNNextRepaymentComponent.utils.d.ts.map +1 -1
  760. package/lib/typescript/src/components/UNPayeeManagementComponent/UNPayeeManagementComponent.d.ts +7 -8
  761. package/lib/typescript/src/components/UNPayeeManagementComponent/UNPayeeManagementComponent.d.ts.map +1 -1
  762. package/lib/typescript/src/components/UNPayeeManagementComponent/UNPayeeManagementComponent.utils.d.ts +1 -1
  763. package/lib/typescript/src/components/UNPayeeManagementComponent/UNPayeeManagementComponent.utils.d.ts.map +1 -1
  764. package/lib/typescript/src/components/UNProgramDetailsComponent/UNProgramDetailsComponent.d.ts +2 -3
  765. package/lib/typescript/src/components/UNProgramDetailsComponent/UNProgramDetailsComponent.d.ts.map +1 -1
  766. package/lib/typescript/src/components/UNProgramDetailsComponent/UNProgramDetailsComponent.utils.d.ts.map +1 -1
  767. package/lib/typescript/src/components/UNWhiteLabelAppComponent/UNWhiteLabelAppComponent.d.ts.map +1 -1
  768. package/lib/typescript/src/components/UNWhiteLabelAppComponent/UNWhiteLabelAppComponent.utils.d.ts +1 -1
  769. package/lib/typescript/src/components/UNWhiteLabelAppComponent/UNWhiteLabelAppComponent.utils.d.ts.map +1 -1
  770. package/lib/typescript/src/components/UNWirePaymentComponent/UNWirePaymentComponent.d.ts +3 -5
  771. package/lib/typescript/src/components/UNWirePaymentComponent/UNWirePaymentComponent.d.ts.map +1 -1
  772. package/lib/typescript/src/components/UNWirePaymentComponent/UNWirePaymentComponent.utils.d.ts.map +1 -1
  773. package/lib/typescript/src/components/index.d.ts +0 -1
  774. package/lib/typescript/src/components/index.d.ts.map +1 -1
  775. package/lib/typescript/src/flows/{UNFlows.d.ts → UNComponentsFlows.d.ts} +2 -2
  776. package/lib/typescript/src/flows/UNComponentsFlows.d.ts.map +1 -0
  777. package/lib/typescript/src/helpers/BottomSheet/BottomSheet.d.ts +1 -21
  778. package/lib/typescript/src/helpers/BottomSheet/BottomSheet.d.ts.map +1 -1
  779. package/lib/typescript/src/helpers/UNKeyboardAvoidingView/UNKeyboardAvoidingView.d.ts +10 -0
  780. package/lib/typescript/src/helpers/UNKeyboardAvoidingView/UNKeyboardAvoidingView.d.ts.map +1 -0
  781. package/lib/typescript/src/helpers/pushProvisioningService/hooks/useCardWallet.d.ts.map +1 -1
  782. package/lib/typescript/src/helpers/pushProvisioningService/types.d.ts +7 -0
  783. package/lib/typescript/src/helpers/pushProvisioningService/types.d.ts.map +1 -1
  784. package/lib/typescript/src/hooks/useAppStateListener.d.ts +1 -1
  785. package/lib/typescript/src/hooks/useAppStateListener.d.ts.map +1 -1
  786. package/lib/typescript/src/index.d.ts +1 -1
  787. package/lib/typescript/src/index.d.ts.map +1 -1
  788. package/lib/typescript/src/messages/webMessages/accountMessage.d.ts +2 -2
  789. package/lib/typescript/src/messages/webMessages/accountMessage.d.ts.map +1 -1
  790. package/lib/typescript/src/messages/webMessages/achCreditMessage.d.ts +2 -2
  791. package/lib/typescript/src/messages/webMessages/achCreditMessage.d.ts.map +1 -1
  792. package/lib/typescript/src/messages/webMessages/bookPaymentMessage.d.ts +2 -2
  793. package/lib/typescript/src/messages/webMessages/bookPaymentMessage.d.ts.map +1 -1
  794. package/lib/typescript/src/messages/webMessages/cardMessage.d.ts +3 -3
  795. package/lib/typescript/src/messages/webMessages/cardMessage.d.ts.map +1 -1
  796. package/lib/typescript/src/messages/webMessages/checkMessage.d.ts +3 -3
  797. package/lib/typescript/src/messages/webMessages/checkMessage.d.ts.map +1 -1
  798. package/lib/typescript/src/messages/webMessages/index.d.ts +4 -4
  799. package/lib/typescript/src/messages/webMessages/index.d.ts.map +1 -1
  800. package/lib/typescript/src/messages/webMessages/multipleCardsMessage.d.ts +2 -2
  801. package/lib/typescript/src/messages/webMessages/multipleCardsMessage.d.ts.map +1 -1
  802. package/lib/typescript/src/messages/webMessages/onLoadMessage.d.ts +12 -20
  803. package/lib/typescript/src/messages/webMessages/onLoadMessage.d.ts.map +1 -1
  804. package/lib/typescript/src/messages/webMessages/payeeManagementMessage.d.ts +4 -4
  805. package/lib/typescript/src/messages/webMessages/payeeManagementMessage.d.ts.map +1 -1
  806. package/lib/typescript/src/messages/webMessages/plaidMessages.d.ts.map +1 -1
  807. package/lib/typescript/src/messages/webMessages/{unitMessages.d.ts → unitComponentsMessages.d.ts} +5 -4
  808. package/lib/typescript/src/messages/webMessages/unitComponentsMessages.d.ts.map +1 -0
  809. package/lib/typescript/src/messages/webMessages/wirePaymentMessage.d.ts +5 -0
  810. package/lib/typescript/src/messages/webMessages/wirePaymentMessage.d.ts.map +1 -0
  811. package/lib/typescript/src/nativeComponents/UNAddToWallet/UnitAddToWalletButtonNativeComponent.d.ts +8 -0
  812. package/lib/typescript/src/nativeComponents/UNAddToWallet/UnitAddToWalletButtonNativeComponent.d.ts.map +1 -0
  813. package/lib/typescript/src/nativeComponents/UNBaseView/UNBaseView.d.ts +5 -4
  814. package/lib/typescript/src/nativeComponents/UNBaseView/UNBaseView.d.ts.map +1 -1
  815. package/lib/typescript/src/nativeComponents/UNSecureView/UNSecureViewNativeComponent.d.ts +7 -0
  816. package/lib/typescript/src/nativeComponents/UNSecureView/UNSecureViewNativeComponent.d.ts.map +1 -0
  817. package/lib/typescript/src/nativeModulesHelpers/RNShareFile/RNShareFile.d.ts +3 -0
  818. package/lib/typescript/src/nativeModulesHelpers/RNShareFile/RNShareFile.d.ts.map +1 -0
  819. package/lib/typescript/src/nativeModulesHelpers/UNPermissionsHelper/UNPermissionsHelper.d.ts +3 -0
  820. package/lib/typescript/src/nativeModulesHelpers/UNPermissionsHelper/UNPermissionsHelper.d.ts.map +1 -0
  821. package/lib/typescript/src/nativeModulesHelpers/UNSanpshotProtectionHelper/UNSnapshotProtectionHelper.d.ts.map +1 -1
  822. package/lib/typescript/src/nativeModulesHelpers/UNSecurityHelper.d.ts.map +1 -1
  823. package/lib/typescript/src/nativeModulesHelpers/UNStoreModuleHelper/UNStoreModuleHelper.d.ts +9 -0
  824. package/lib/typescript/src/nativeModulesHelpers/UNStoreModuleHelper/UNStoreModuleHelper.d.ts.map +1 -0
  825. package/lib/typescript/src/networking/requests/UNWalletPayloadRequest.d.ts +2 -2
  826. package/lib/typescript/src/networking/requests/UNWalletPayloadRequest.d.ts.map +1 -1
  827. package/lib/typescript/src/scripts/html/bodyScript.d.ts +1 -0
  828. package/lib/typescript/src/scripts/html/bodyScript.d.ts.map +1 -1
  829. package/lib/typescript/src/slices/ConfigurationSlice.d.ts +2 -1
  830. package/lib/typescript/src/slices/ConfigurationSlice.d.ts.map +1 -1
  831. package/lib/typescript/src/slices/SharedEventsSlice.d.ts +12 -11
  832. package/lib/typescript/src/slices/SharedEventsSlice.d.ts.map +1 -1
  833. package/lib/typescript/src/store/store.d.ts +20 -20
  834. package/lib/typescript/src/types/internal/bottomSheet.types.d.ts +9 -3
  835. package/lib/typescript/src/types/internal/bottomSheet.types.d.ts.map +1 -1
  836. package/lib/typescript/src/types/internal/errorHelpers.d.ts +4 -4
  837. package/lib/typescript/src/types/internal/errorHelpers.d.ts.map +1 -1
  838. package/lib/typescript/src/types/internal/webComponent.types.d.ts +0 -1
  839. package/lib/typescript/src/types/internal/webComponent.types.d.ts.map +1 -1
  840. package/lib/typescript/src/types/shared/account.types.d.ts +85 -48
  841. package/lib/typescript/src/types/shared/account.types.d.ts.map +1 -1
  842. package/lib/typescript/src/types/shared/ach.types.d.ts +8 -0
  843. package/lib/typescript/src/types/shared/ach.types.d.ts.map +1 -0
  844. package/lib/typescript/src/types/shared/activity.types.d.ts +10 -4
  845. package/lib/typescript/src/types/shared/activity.types.d.ts.map +1 -1
  846. package/lib/typescript/src/types/shared/authorization.types.d.ts +23 -10
  847. package/lib/typescript/src/types/shared/authorization.types.d.ts.map +1 -1
  848. package/lib/typescript/src/types/shared/card.types.d.ts +190 -30
  849. package/lib/typescript/src/types/shared/card.types.d.ts.map +1 -1
  850. package/lib/typescript/src/types/shared/checkDeposit.types.d.ts +68 -25
  851. package/lib/typescript/src/types/shared/checkDeposit.types.d.ts.map +1 -1
  852. package/lib/typescript/src/types/shared/counterparty.types.d.ts +63 -0
  853. package/lib/typescript/src/types/shared/counterparty.types.d.ts.map +1 -0
  854. package/lib/typescript/src/types/shared/customer.types.d.ts +115 -0
  855. package/lib/typescript/src/types/shared/customer.types.d.ts.map +1 -0
  856. package/lib/typescript/src/types/shared/env.types.d.ts +1 -1
  857. package/lib/typescript/src/types/shared/env.types.d.ts.map +1 -1
  858. package/lib/typescript/src/types/shared/error.types.d.ts +9 -8
  859. package/lib/typescript/src/types/shared/error.types.d.ts.map +1 -1
  860. package/lib/typescript/src/types/shared/index.d.ts +8 -4
  861. package/lib/typescript/src/types/shared/index.d.ts.map +1 -1
  862. package/lib/typescript/src/types/shared/multiFactorAuthentication.types.d.ts.map +1 -1
  863. package/lib/typescript/src/types/shared/multipleCards.types.d.ts +2 -2
  864. package/lib/typescript/src/types/shared/multipleCards.types.d.ts.map +1 -1
  865. package/lib/typescript/src/types/shared/onLoadResponse.types.d.ts +3 -3
  866. package/lib/typescript/src/types/shared/onLoadResponse.types.d.ts.map +1 -1
  867. package/lib/typescript/src/types/shared/payeeManagement.types.d.ts +0 -71
  868. package/lib/typescript/src/types/shared/payeeManagement.types.d.ts.map +1 -1
  869. package/lib/typescript/src/types/shared/payment/achPayment.types.d.ts +48 -0
  870. package/lib/typescript/src/types/shared/payment/achPayment.types.d.ts.map +1 -0
  871. package/lib/typescript/src/types/shared/payment/billPayment.types.d.ts +35 -0
  872. package/lib/typescript/src/types/shared/payment/billPayment.types.d.ts.map +1 -0
  873. package/lib/typescript/src/types/shared/payment/bookPayment.types.d.ts +50 -0
  874. package/lib/typescript/src/types/shared/payment/bookPayment.types.d.ts.map +1 -0
  875. package/lib/typescript/src/types/shared/payment/index.d.ts +6 -0
  876. package/lib/typescript/src/types/shared/payment/index.d.ts.map +1 -0
  877. package/lib/typescript/src/types/shared/payment/payments.types.d.ts +59 -0
  878. package/lib/typescript/src/types/shared/payment/payments.types.d.ts.map +1 -0
  879. package/lib/typescript/src/types/shared/payment/wirePayment.types.d.ts +49 -0
  880. package/lib/typescript/src/types/shared/payment/wirePayment.types.d.ts.map +1 -0
  881. package/lib/typescript/src/types/shared/repayment.types.d.ts +10 -9
  882. package/lib/typescript/src/types/shared/repayment.types.d.ts.map +1 -1
  883. package/lib/typescript/src/types/shared/securitySettings.d.ts +3 -3
  884. package/lib/typescript/src/types/shared/securitySettings.d.ts.map +1 -1
  885. package/lib/typescript/src/types/shared/transaction/UNAccountLowBalanceClosureTransaction.d.ts +43 -0
  886. package/lib/typescript/src/types/shared/transaction/UNAccountLowBalanceClosureTransaction.d.ts.map +1 -0
  887. package/lib/typescript/src/types/shared/transaction/UNAdjustmentTransaction.d.ts +43 -0
  888. package/lib/typescript/src/types/shared/transaction/UNAdjustmentTransaction.d.ts.map +1 -0
  889. package/lib/typescript/src/types/shared/transaction/UNAtmTransaction.d.ts +48 -0
  890. package/lib/typescript/src/types/shared/transaction/UNAtmTransaction.d.ts.map +1 -0
  891. package/lib/typescript/src/types/shared/transaction/UNBankRepaymentTransaction.d.ts +53 -0
  892. package/lib/typescript/src/types/shared/transaction/UNBankRepaymentTransaction.d.ts.map +1 -0
  893. package/lib/typescript/src/types/shared/transaction/UNBillPayTransaction.d.ts +43 -0
  894. package/lib/typescript/src/types/shared/transaction/UNBillPayTransaction.d.ts.map +1 -0
  895. package/lib/typescript/src/types/shared/transaction/UNBookTransaction.d.ts +59 -0
  896. package/lib/typescript/src/types/shared/transaction/UNBookTransaction.d.ts.map +1 -0
  897. package/lib/typescript/src/types/shared/transaction/UNCardReversalTransaction.d.ts +50 -0
  898. package/lib/typescript/src/types/shared/transaction/UNCardReversalTransaction.d.ts.map +1 -0
  899. package/lib/typescript/src/types/shared/transaction/UNCardTransaction.d.ts +51 -0
  900. package/lib/typescript/src/types/shared/transaction/UNCardTransaction.d.ts.map +1 -0
  901. package/lib/typescript/src/types/shared/transaction/UNCashDepositTransaction.d.ts +43 -0
  902. package/lib/typescript/src/types/shared/transaction/UNCashDepositTransaction.d.ts.map +1 -0
  903. package/lib/typescript/src/types/shared/transaction/UNChargebackTransaction.d.ts +59 -0
  904. package/lib/typescript/src/types/shared/transaction/UNChargebackTransaction.d.ts.map +1 -0
  905. package/lib/typescript/src/types/shared/transaction/UNCheckDepositTransaction.d.ts +49 -0
  906. package/lib/typescript/src/types/shared/transaction/UNCheckDepositTransaction.d.ts.map +1 -0
  907. package/lib/typescript/src/types/shared/transaction/UNCustomerRepaymentReturnedTransaction.d.ts +52 -0
  908. package/lib/typescript/src/types/shared/transaction/UNCustomerRepaymentReturnedTransaction.d.ts.map +1 -0
  909. package/lib/typescript/src/types/shared/transaction/UNCustomerRepaymentTransaction.d.ts +52 -0
  910. package/lib/typescript/src/types/shared/transaction/UNCustomerRepaymentTransaction.d.ts.map +1 -0
  911. package/lib/typescript/src/types/shared/transaction/UNDishonoredAchTransaction.d.ts +53 -0
  912. package/lib/typescript/src/types/shared/transaction/UNDishonoredAchTransaction.d.ts.map +1 -0
  913. package/lib/typescript/src/types/shared/transaction/UNDisputeSettlementTransaction.d.ts +43 -0
  914. package/lib/typescript/src/types/shared/transaction/UNDisputeSettlementTransaction.d.ts.map +1 -0
  915. package/lib/typescript/src/types/shared/transaction/UNDisputeTransaction.d.ts +43 -0
  916. package/lib/typescript/src/types/shared/transaction/UNDisputeTransaction.d.ts.map +1 -0
  917. package/lib/typescript/src/types/shared/transaction/UNFeeReversalTransaction.d.ts +49 -0
  918. package/lib/typescript/src/types/shared/transaction/UNFeeReversalTransaction.d.ts.map +1 -0
  919. package/lib/typescript/src/types/shared/transaction/UNFeeTransaction.d.ts +49 -0
  920. package/lib/typescript/src/types/shared/transaction/UNFeeTransaction.d.ts.map +1 -0
  921. package/lib/typescript/src/types/shared/transaction/UNInterchangeShareTransaction.d.ts +43 -0
  922. package/lib/typescript/src/types/shared/transaction/UNInterchangeShareTransaction.d.ts.map +1 -0
  923. package/lib/typescript/src/types/shared/transaction/UNInterestShareTransaction.d.ts +43 -0
  924. package/lib/typescript/src/types/shared/transaction/UNInterestShareTransaction.d.ts.map +1 -0
  925. package/lib/typescript/src/types/shared/transaction/UNInterestTransaction.d.ts +43 -0
  926. package/lib/typescript/src/types/shared/transaction/UNInterestTransaction.d.ts.map +1 -0
  927. package/lib/typescript/src/types/shared/transaction/UNNegativeBalanceCoverageTransaction.d.ts +43 -0
  928. package/lib/typescript/src/types/shared/transaction/UNNegativeBalanceCoverageTransaction.d.ts.map +1 -0
  929. package/lib/typescript/src/types/shared/transaction/UNOriginatedAchTransaction.d.ts +48 -0
  930. package/lib/typescript/src/types/shared/transaction/UNOriginatedAchTransaction.d.ts.map +1 -0
  931. package/lib/typescript/src/types/shared/transaction/UNPaymentAdvanceTransaction.d.ts +52 -0
  932. package/lib/typescript/src/types/shared/transaction/UNPaymentAdvanceTransaction.d.ts.map +1 -0
  933. package/lib/typescript/src/types/shared/transaction/UNPaymentCanceledTransaction.d.ts +43 -0
  934. package/lib/typescript/src/types/shared/transaction/UNPaymentCanceledTransaction.d.ts.map +1 -0
  935. package/lib/typescript/src/types/shared/transaction/UNPurchaseTransaction.d.ts +52 -0
  936. package/lib/typescript/src/types/shared/transaction/UNPurchaseTransaction.d.ts.map +1 -0
  937. package/lib/typescript/src/types/shared/transaction/UNReceivedAchTransaction.d.ts +54 -0
  938. package/lib/typescript/src/types/shared/transaction/UNReceivedAchTransaction.d.ts.map +1 -0
  939. package/lib/typescript/src/types/shared/transaction/UNReleaseTransaction.d.ts +43 -0
  940. package/lib/typescript/src/types/shared/transaction/UNReleaseTransaction.d.ts.map +1 -0
  941. package/lib/typescript/src/types/shared/transaction/UNRepaidPaymentAdvanceTransaction.d.ts +58 -0
  942. package/lib/typescript/src/types/shared/transaction/UNRepaidPaymentAdvanceTransaction.d.ts.map +1 -0
  943. package/lib/typescript/src/types/shared/transaction/UNReturnedAchTransaction.d.ts +47 -0
  944. package/lib/typescript/src/types/shared/transaction/UNReturnedAchTransaction.d.ts.map +1 -0
  945. package/lib/typescript/src/types/shared/transaction/UNReturnedCheckDepositTransaction.d.ts +43 -0
  946. package/lib/typescript/src/types/shared/transaction/UNReturnedCheckDepositTransaction.d.ts.map +1 -0
  947. package/lib/typescript/src/types/shared/transaction/UNReturnedReceivedAchTransaction.d.ts +53 -0
  948. package/lib/typescript/src/types/shared/transaction/UNReturnedReceivedAchTransaction.d.ts.map +1 -0
  949. package/lib/typescript/src/types/shared/transaction/UNRewardTransaction.d.ts +53 -0
  950. package/lib/typescript/src/types/shared/transaction/UNRewardTransaction.d.ts.map +1 -0
  951. package/lib/typescript/src/types/shared/transaction/UNSettlementTransaction.d.ts +43 -0
  952. package/lib/typescript/src/types/shared/transaction/UNSettlementTransaction.d.ts.map +1 -0
  953. package/lib/typescript/src/types/shared/transaction/UNSponsoredInterestTransaction.d.ts +43 -0
  954. package/lib/typescript/src/types/shared/transaction/UNSponsoredInterestTransaction.d.ts.map +1 -0
  955. package/lib/typescript/src/types/shared/transaction/UNWireTransaction.d.ts +44 -0
  956. package/lib/typescript/src/types/shared/transaction/UNWireTransaction.d.ts.map +1 -0
  957. package/lib/typescript/src/types/shared/transaction/index.d.ts +38 -0
  958. package/lib/typescript/src/types/shared/transaction/index.d.ts.map +1 -0
  959. package/lib/typescript/src/types/shared/transaction/transactions.types.d.ts +140 -0
  960. package/lib/typescript/src/types/shared/transaction/transactions.types.d.ts.map +1 -0
  961. package/lib/typescript/src/types/shared/types.d.ts +14 -14
  962. package/lib/typescript/src/types/shared/types.d.ts.map +1 -1
  963. package/lib/typescript/src/types/shared/versioning.types.d.ts +1 -1
  964. package/lib/typescript/src/types/shared/versioning.types.d.ts.map +1 -1
  965. package/lib/typescript/src/{unitSdkManager/UnitSdk.api.d.ts → unitComponentsSdkManager/UnitComponentsSdk.api.d.ts} +1 -1
  966. package/lib/typescript/src/unitComponentsSdkManager/UnitComponentsSdk.api.d.ts.map +1 -0
  967. package/lib/typescript/src/unitComponentsSdkManager/UnitComponentsSdk.constants.d.ts +11 -0
  968. package/lib/typescript/src/unitComponentsSdkManager/UnitComponentsSdk.constants.d.ts.map +1 -0
  969. package/lib/typescript/src/unitComponentsSdkManager/UnitComponentsSdkManager.d.ts +38 -0
  970. package/lib/typescript/src/unitComponentsSdkManager/UnitComponentsSdkManager.d.ts.map +1 -0
  971. package/lib/typescript/src/unitComponentsSdkManager/UnitComponentsSdkManager.utils.internal.d.ts +4 -0
  972. package/lib/typescript/src/unitComponentsSdkManager/UnitComponentsSdkManager.utils.internal.d.ts.map +1 -0
  973. package/lib/typescript/src/{unitSdkManager/unitHelpersManager/UnitHelpersManager.d.ts → unitComponentsSdkManager/unitComponentsHelpersManager/UnitComponentsHelpersManager.d.ts} +2 -2
  974. package/lib/typescript/src/unitComponentsSdkManager/unitComponentsHelpersManager/UnitComponentsHelpersManager.d.ts.map +1 -0
  975. package/lib/typescript/src/unitComponentsSdkManager/unitComponentsUiManager/unitComponentsUiManager.d.ts +7 -0
  976. package/lib/typescript/src/unitComponentsSdkManager/unitComponentsUiManager/unitComponentsUiManager.d.ts.map +1 -0
  977. package/lib/typescript/src/utils/AppInfo.d.ts +9 -4
  978. package/lib/typescript/src/utils/AppInfo.d.ts.map +1 -1
  979. package/lib/typescript/src/utils/webVersioningStrategy.utils.d.ts +5 -5
  980. package/lib/typescript/src/utils/webVersioningStrategy.utils.d.ts.map +1 -1
  981. package/lib/typescript/src/webComponent/WebComponent.d.ts +1 -1
  982. package/lib/typescript/src/webComponent/WebComponent.d.ts.map +1 -1
  983. package/lib/typescript/src/webComponent/WebComponent.utils.d.ts +1 -1
  984. package/lib/typescript/src/webComponent/WebComponent.utils.d.ts.map +1 -1
  985. package/lib/typescript/src/webComponent/html.d.ts.map +1 -1
  986. package/package.json +20 -2
  987. package/src/components/UNACHCreditComponent/UNACHCreditComponent.tsx +19 -14
  988. package/src/components/UNACHCreditComponent/UNACHCreditComponent.utils.ts +0 -1
  989. package/src/components/UNACHDebitComponent/UNACHDebitComponent.tsx +19 -15
  990. package/src/components/UNACHDebitComponent/UNACHDebitComponent.utils.ts +0 -1
  991. package/src/components/UNAccountComponent/UNAccountComponent.tsx +28 -18
  992. package/src/components/UNAccountComponent/UNAccountComponent.utils.ts +7 -2
  993. package/src/components/UNActivityComponent/UNActivityComponent.tsx +16 -13
  994. package/src/components/UNActivityComponent/UNActivityComponent.utils.ts +1 -2
  995. package/src/components/UNBookPaymentComponent/UNBookPaymentComponent.tsx +13 -15
  996. package/src/components/UNBookPaymentComponent/UNBookPaymentComponent.utils.ts +0 -1
  997. package/src/components/UNBottomSheetComponent/UNBottomSheetComponent.tsx +9 -10
  998. package/src/components/UNBottomSheetComponent/UNBottomSheetComponent.utils.ts +88 -28
  999. package/src/components/UNBottomSheetComponent/components/UNBottomSheetNativeComponent/UNBottomSheetNativeComponent.tsx +44 -21
  1000. package/src/components/UNBottomSheetComponent/components/UNBottomSheetSlotComponent/UNBottomSheetSlotComponent.tsx +24 -17
  1001. package/src/components/UNCardActionComponent/UNCardActionComponent.tsx +7 -8
  1002. package/src/components/UNCardActionComponent/UNCardActionComponent.utils.ts +0 -1
  1003. package/src/components/UNCardComponent/UNCardComponent.tsx +17 -22
  1004. package/src/components/UNCardComponent/UNCardComponent.utils.ts +5 -4
  1005. package/src/components/UNCheckDepositComponent/UNCheckDepositComponent.tsx +14 -17
  1006. package/src/components/UNCheckDepositComponent/UNCheckDepositComponent.utils.ts +0 -1
  1007. package/src/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.tsx +8 -11
  1008. package/src/components/UNMultiFactorAuthenticationComponent/UNMultiFactorAuthenticationComponent.utils.ts +1 -3
  1009. package/src/components/UNMultipleCardsComponent/UNMultipleCardsComponent.tsx +24 -15
  1010. package/src/components/UNMultipleCardsComponent/UNMultipleCardsComponent.utils.ts +0 -1
  1011. package/src/components/UNNextRepaymentComponent/UNNextRepaymentComponent.tsx +7 -9
  1012. package/src/components/UNNextRepaymentComponent/UNNextRepaymentComponent.utils.ts +0 -1
  1013. package/src/components/UNPayeeManagementComponent/UNPayeeManagementComponent.tsx +29 -22
  1014. package/src/components/UNPayeeManagementComponent/UNPayeeManagementComponent.utils.ts +1 -2
  1015. package/src/components/UNProgramDetailsComponent/UNProgramDetailsComponent.tsx +7 -8
  1016. package/src/components/UNProgramDetailsComponent/UNProgramDetailsComponent.utils.ts +0 -1
  1017. package/src/components/UNWhiteLabelAppComponent/UNWhiteLabelAppComponent.tsx +8 -6
  1018. package/src/components/UNWhiteLabelAppComponent/UNWhiteLabelAppComponent.utils.ts +2 -2
  1019. package/src/components/UNWirePaymentComponent/UNWirePaymentComponent.tsx +10 -11
  1020. package/src/components/UNWirePaymentComponent/UNWirePaymentComponent.utils.ts +0 -1
  1021. package/src/components/index.ts +0 -1
  1022. package/src/flows/{UNFlows.ts → UNComponentsFlows.ts} +3 -3
  1023. package/src/helpers/BottomSheet/BottomSheet.tsx +9 -27
  1024. package/src/helpers/UNKeyboardAvoidingView/UNKeyboardAvoidingView.tsx +24 -0
  1025. package/src/helpers/pushProvisioningService/hooks/useCardWallet.ts +12 -10
  1026. package/src/helpers/pushProvisioningService/hooks/useLaunchInitialize.ts +2 -2
  1027. package/src/helpers/pushProvisioningService/startProvisioning.ts +2 -2
  1028. package/src/helpers/pushProvisioningService/types.ts +7 -0
  1029. package/src/hooks/useAppStateListener.ts +38 -4
  1030. package/src/hooks/useSnapshotProtection.ts +4 -4
  1031. package/src/index.tsx +1 -1
  1032. package/src/messages/webMessages/accountMessage.ts +2 -2
  1033. package/src/messages/webMessages/achCreditMessage.ts +3 -3
  1034. package/src/messages/webMessages/bookPaymentMessage.ts +3 -3
  1035. package/src/messages/webMessages/cardMessage.ts +3 -3
  1036. package/src/messages/webMessages/checkMessage.ts +7 -7
  1037. package/src/messages/webMessages/index.ts +5 -5
  1038. package/src/messages/webMessages/multipleCardsMessage.ts +2 -2
  1039. package/src/messages/webMessages/onLoadMessage.ts +17 -28
  1040. package/src/messages/webMessages/payeeManagementMessage.ts +4 -4
  1041. package/src/messages/webMessages/plaidMessages.ts +2 -2
  1042. package/src/messages/webMessages/{unitMessages.ts → unitComponentsMessages.ts} +5 -2
  1043. package/src/messages/webMessages/wirePaymentMessage.ts +5 -0
  1044. package/src/nativeComponents/UNAddToWallet/UNAddToWalletComponent/UNAddToWalletComponent.tsx +5 -5
  1045. package/src/nativeComponents/UNAddToWallet/UnitAddToWalletButtonNativeComponent.ts +14 -0
  1046. package/src/nativeComponents/UNBaseView/UNBaseView.tsx +19 -14
  1047. package/src/nativeComponents/UNSecureView/UNSecureViewNativeComponent.ts +10 -0
  1048. package/src/nativeModulesHelpers/RNShareFile/RNShareFile.ts +20 -0
  1049. package/src/nativeModulesHelpers/UNPermissionsHelper/UNPermissionsHelper.ts +20 -0
  1050. package/src/nativeModulesHelpers/UNSanpshotProtectionHelper/UNSnapshotProtectionHelper.ts +9 -4
  1051. package/src/nativeModulesHelpers/UNSecurityHelper.ts +7 -3
  1052. package/src/nativeModulesHelpers/UNStoreModuleHelper/UNStoreModuleHelper.ts +9 -0
  1053. package/src/networking/common/UNNetworkConstants.ts +4 -4
  1054. package/src/networking/requests/UNWalletPayloadRequest.ts +12 -12
  1055. package/src/scripts/html/bodyScript.ts +43 -28
  1056. package/src/slices/ConfigurationSlice.ts +5 -1
  1057. package/src/slices/SharedEventsSlice.ts +12 -11
  1058. package/src/styles/fonts.ts +3 -3
  1059. package/src/types/internal/bottomSheet.types.ts +10 -2
  1060. package/src/types/internal/errorHelpers.ts +7 -7
  1061. package/src/types/internal/webComponent.types.ts +0 -1
  1062. package/src/types/shared/account.types.ts +88 -51
  1063. package/src/types/shared/ach.types.ts +8 -0
  1064. package/src/types/shared/activity.types.ts +11 -4
  1065. package/src/types/shared/authorization.types.ts +30 -16
  1066. package/src/types/shared/card.types.ts +212 -45
  1067. package/src/types/shared/checkDeposit.types.ts +83 -40
  1068. package/src/types/shared/counterparty.types.ts +65 -0
  1069. package/src/types/shared/customer.types.ts +118 -0
  1070. package/src/types/shared/env.types.ts +1 -1
  1071. package/src/types/shared/error.types.ts +26 -25
  1072. package/src/types/shared/index.ts +8 -4
  1073. package/src/types/shared/multiFactorAuthentication.types.ts +7 -7
  1074. package/src/types/shared/multipleCards.types.ts +2 -2
  1075. package/src/types/shared/onLoadResponse.types.ts +5 -5
  1076. package/src/types/shared/payeeManagement.types.ts +4 -75
  1077. package/src/types/shared/payment/achPayment.types.ts +47 -0
  1078. package/src/types/shared/payment/billPayment.types.ts +33 -0
  1079. package/src/types/shared/payment/bookPayment.types.ts +48 -0
  1080. package/src/types/shared/payment/index.ts +5 -0
  1081. package/src/types/shared/payment/payments.types.ts +79 -0
  1082. package/src/types/shared/payment/wirePayment.types.ts +47 -0
  1083. package/src/types/shared/repayment.types.ts +12 -11
  1084. package/src/types/shared/securitySettings.ts +3 -3
  1085. package/src/types/shared/transaction/UNAccountLowBalanceClosureTransaction.ts +43 -0
  1086. package/src/types/shared/transaction/UNAdjustmentTransaction.ts +43 -0
  1087. package/src/types/shared/transaction/UNAtmTransaction.ts +48 -0
  1088. package/src/types/shared/transaction/UNBankRepaymentTransaction.ts +51 -0
  1089. package/src/types/shared/transaction/UNBillPayTransaction.ts +43 -0
  1090. package/src/types/shared/transaction/UNBookTransaction.ts +57 -0
  1091. package/src/types/shared/transaction/UNCardReversalTransaction.ts +50 -0
  1092. package/src/types/shared/transaction/UNCardTransaction.ts +51 -0
  1093. package/src/types/shared/transaction/UNCashDepositTransaction.ts +43 -0
  1094. package/src/types/shared/transaction/UNChargebackTransaction.ts +57 -0
  1095. package/src/types/shared/transaction/UNCheckDepositTransaction.ts +49 -0
  1096. package/src/types/shared/transaction/UNCustomerRepaymentReturnedTransaction.ts +50 -0
  1097. package/src/types/shared/transaction/UNCustomerRepaymentTransaction.ts +50 -0
  1098. package/src/types/shared/transaction/UNDishonoredAchTransaction.ts +51 -0
  1099. package/src/types/shared/transaction/UNDisputeSettlementTransaction.ts +43 -0
  1100. package/src/types/shared/transaction/UNDisputeTransaction.ts +43 -0
  1101. package/src/types/shared/transaction/UNFeeReversalTransaction.ts +49 -0
  1102. package/src/types/shared/transaction/UNFeeTransaction.ts +49 -0
  1103. package/src/types/shared/transaction/UNInterchangeShareTransaction.ts +43 -0
  1104. package/src/types/shared/transaction/UNInterestShareTransaction.ts +43 -0
  1105. package/src/types/shared/transaction/UNInterestTransaction.ts +43 -0
  1106. package/src/types/shared/transaction/UNNegativeBalanceCoverageTransaction.ts +43 -0
  1107. package/src/types/shared/transaction/UNOriginatedAchTransaction.ts +46 -0
  1108. package/src/types/shared/transaction/UNPaymentAdvanceTransaction.ts +50 -0
  1109. package/src/types/shared/transaction/UNPaymentCanceledTransaction.ts +43 -0
  1110. package/src/types/shared/transaction/UNPurchaseTransaction.ts +52 -0
  1111. package/src/types/shared/transaction/UNReceivedAchTransaction.ts +54 -0
  1112. package/src/types/shared/transaction/UNReleaseTransaction.ts +43 -0
  1113. package/src/types/shared/transaction/UNRepaidPaymentAdvanceTransaction.ts +56 -0
  1114. package/src/types/shared/transaction/UNReturnedAchTransaction.ts +47 -0
  1115. package/src/types/shared/transaction/UNReturnedCheckDepositTransaction.ts +43 -0
  1116. package/src/types/shared/transaction/UNReturnedReceivedAchTransaction.ts +53 -0
  1117. package/src/types/shared/transaction/UNRewardTransaction.ts +51 -0
  1118. package/src/types/shared/transaction/UNSettlementTransaction.ts +43 -0
  1119. package/src/types/shared/transaction/UNSponsoredInterestTransaction.ts +43 -0
  1120. package/src/types/shared/transaction/UNWireTransaction.ts +44 -0
  1121. package/src/types/shared/transaction/index.ts +37 -0
  1122. package/src/types/shared/transaction/transactions.types.ts +182 -0
  1123. package/src/types/shared/types.ts +17 -21
  1124. package/src/types/shared/versioning.types.ts +1 -1
  1125. package/src/{unitSdkManager/UnitSdk.api.ts → unitComponentsSdkManager/UnitComponentsSdk.api.ts} +4 -4
  1126. package/src/unitComponentsSdkManager/UnitComponentsSdk.constants.ts +17 -0
  1127. package/src/{unitSdkManager/UnitSdkManager.ts → unitComponentsSdkManager/UnitComponentsSdkManager.ts} +23 -28
  1128. package/src/{unitSdkManager/UnitSdkManager.utils.internal.ts → unitComponentsSdkManager/UnitComponentsSdkManager.utils.internal.ts} +6 -6
  1129. package/src/{unitSdkManager/unitHelpersManager/UnitHelpersManager.ts → unitComponentsSdkManager/unitComponentsHelpersManager/UnitComponentsHelpersManager.ts} +1 -1
  1130. package/src/unitComponentsSdkManager/unitComponentsUiManager/unitComponentsUiManager.ts +13 -0
  1131. package/src/utils/AppInfo.ts +8 -38
  1132. package/src/utils/webVersioningStrategy.utils.ts +10 -10
  1133. package/src/webComponent/WebComponent.tsx +29 -23
  1134. package/src/webComponent/WebComponent.utils.ts +6 -6
  1135. package/src/webComponent/html.ts +4 -1
  1136. package/ios/Camera/Camera.swift +0 -22
  1137. package/ios/Camera/CameraExportModule.m +0 -7
  1138. package/ios/UNAppInfo/IOSAppInfo.swift +0 -47
  1139. package/ios/UNStoreManager/UNStoreManager.swift +0 -28
  1140. package/lib/commonjs/components/UNFundAccountPaymentComponent/UNFundAccountPaymentComponent.js +0 -88
  1141. package/lib/commonjs/components/UNFundAccountPaymentComponent/UNFundAccountPaymentComponent.js.map +0 -1
  1142. package/lib/commonjs/components/UNFundAccountPaymentComponent/UNFundAccountPaymentComponent.utils.js +0 -30
  1143. package/lib/commonjs/components/UNFundAccountPaymentComponent/UNFundAccountPaymentComponent.utils.js.map +0 -1
  1144. package/lib/commonjs/components/UNFundAccountPaymentComponent/index.js +0 -21
  1145. package/lib/commonjs/components/UNFundAccountPaymentComponent/index.js.map +0 -1
  1146. package/lib/commonjs/flows/UNFlows.js.map +0 -1
  1147. package/lib/commonjs/messages/webMessages/fundAccountPaymentMessage.js.map +0 -1
  1148. package/lib/commonjs/messages/webMessages/unitMessages.js +0 -26
  1149. package/lib/commonjs/messages/webMessages/unitMessages.js.map +0 -1
  1150. package/lib/commonjs/nativeComponents/UNAddToWallet/UnitAddToWalletButton.js +0 -10
  1151. package/lib/commonjs/nativeComponents/UNAddToWallet/UnitAddToWalletButton.js.map +0 -1
  1152. package/lib/commonjs/nativeModulesHelpers/UNStoreManagerHelper/UNStoreManagerHelper.js +0 -23
  1153. package/lib/commonjs/nativeModulesHelpers/UNStoreManagerHelper/UNStoreManagerHelper.js.map +0 -1
  1154. package/lib/commonjs/types/shared/bookPayment.types.js.map +0 -1
  1155. package/lib/commonjs/types/shared/fundAccountPayment.types.js.map +0 -1
  1156. package/lib/commonjs/types/shared/payments.types.js.map +0 -1
  1157. package/lib/commonjs/types/shared/transactions.types.js +0 -50
  1158. package/lib/commonjs/types/shared/transactions.types.js.map +0 -1
  1159. package/lib/commonjs/unitSdkManager/UnitSdk.api.js.map +0 -1
  1160. package/lib/commonjs/unitSdkManager/UnitSdk.constants.js.map +0 -1
  1161. package/lib/commonjs/unitSdkManager/UnitSdkManager.js.map +0 -1
  1162. package/lib/commonjs/unitSdkManager/UnitSdkManager.utils.internal.js.map +0 -1
  1163. package/lib/commonjs/unitSdkManager/unitHelpersManager/UnitHelpersManager.js.map +0 -1
  1164. package/lib/commonjs/unitSdkManager/unitUiManager/unitUiManager.js +0 -18
  1165. package/lib/commonjs/unitSdkManager/unitUiManager/unitUiManager.js.map +0 -1
  1166. package/lib/module/components/UNFundAccountPaymentComponent/UNFundAccountPaymentComponent.js +0 -79
  1167. package/lib/module/components/UNFundAccountPaymentComponent/UNFundAccountPaymentComponent.js.map +0 -1
  1168. package/lib/module/components/UNFundAccountPaymentComponent/UNFundAccountPaymentComponent.utils.js +0 -22
  1169. package/lib/module/components/UNFundAccountPaymentComponent/UNFundAccountPaymentComponent.utils.js.map +0 -1
  1170. package/lib/module/components/UNFundAccountPaymentComponent/index.js +0 -2
  1171. package/lib/module/components/UNFundAccountPaymentComponent/index.js.map +0 -1
  1172. package/lib/module/flows/UNFlows.js.map +0 -1
  1173. package/lib/module/messages/webMessages/fundAccountPaymentMessage.js +0 -2
  1174. package/lib/module/messages/webMessages/fundAccountPaymentMessage.js.map +0 -1
  1175. package/lib/module/messages/webMessages/unitMessages.js +0 -20
  1176. package/lib/module/messages/webMessages/unitMessages.js.map +0 -1
  1177. package/lib/module/nativeComponents/UNAddToWallet/UnitAddToWalletButton.js +0 -4
  1178. package/lib/module/nativeComponents/UNAddToWallet/UnitAddToWalletButton.js.map +0 -1
  1179. package/lib/module/nativeModulesHelpers/UNStoreManagerHelper/UNStoreManagerHelper.js +0 -17
  1180. package/lib/module/nativeModulesHelpers/UNStoreManagerHelper/UNStoreManagerHelper.js.map +0 -1
  1181. package/lib/module/types/shared/achCredit.types.js +0 -2
  1182. package/lib/module/types/shared/achCredit.types.js.map +0 -1
  1183. package/lib/module/types/shared/bookPayment.types.js.map +0 -1
  1184. package/lib/module/types/shared/fundAccountPayment.types.js +0 -2
  1185. package/lib/module/types/shared/fundAccountPayment.types.js.map +0 -1
  1186. package/lib/module/types/shared/payments.types.js.map +0 -1
  1187. package/lib/module/types/shared/transactions.types.js +0 -44
  1188. package/lib/module/types/shared/transactions.types.js.map +0 -1
  1189. package/lib/module/types/shared/wirePayment.types.js.map +0 -1
  1190. package/lib/module/unitSdkManager/UnitSdk.api.js.map +0 -1
  1191. package/lib/module/unitSdkManager/UnitSdk.constants.js.map +0 -1
  1192. package/lib/module/unitSdkManager/UnitSdkManager.js.map +0 -1
  1193. package/lib/module/unitSdkManager/UnitSdkManager.utils.internal.js.map +0 -1
  1194. package/lib/module/unitSdkManager/unitHelpersManager/UnitHelpersManager.js.map +0 -1
  1195. package/lib/module/unitSdkManager/unitUiManager/unitUiManager.js +0 -11
  1196. package/lib/module/unitSdkManager/unitUiManager/unitUiManager.js.map +0 -1
  1197. package/lib/typescript/src/components/UNFundAccountPaymentComponent/UNFundAccountPaymentComponent.d.ts +0 -19
  1198. package/lib/typescript/src/components/UNFundAccountPaymentComponent/UNFundAccountPaymentComponent.d.ts.map +0 -1
  1199. package/lib/typescript/src/components/UNFundAccountPaymentComponent/UNFundAccountPaymentComponent.utils.d.ts +0 -4
  1200. package/lib/typescript/src/components/UNFundAccountPaymentComponent/UNFundAccountPaymentComponent.utils.d.ts.map +0 -1
  1201. package/lib/typescript/src/components/UNFundAccountPaymentComponent/index.d.ts +0 -2
  1202. package/lib/typescript/src/components/UNFundAccountPaymentComponent/index.d.ts.map +0 -1
  1203. package/lib/typescript/src/flows/UNFlows.d.ts.map +0 -1
  1204. package/lib/typescript/src/messages/webMessages/fundAccountPaymentMessage.d.ts +0 -6
  1205. package/lib/typescript/src/messages/webMessages/fundAccountPaymentMessage.d.ts.map +0 -1
  1206. package/lib/typescript/src/messages/webMessages/unitMessages.d.ts.map +0 -1
  1207. package/lib/typescript/src/nativeComponents/UNAddToWallet/UnitAddToWalletButton.d.ts +0 -7
  1208. package/lib/typescript/src/nativeComponents/UNAddToWallet/UnitAddToWalletButton.d.ts.map +0 -1
  1209. package/lib/typescript/src/nativeModulesHelpers/UNStoreManagerHelper/UNStoreManagerHelper.d.ts +0 -7
  1210. package/lib/typescript/src/nativeModulesHelpers/UNStoreManagerHelper/UNStoreManagerHelper.d.ts.map +0 -1
  1211. package/lib/typescript/src/types/shared/achCredit.types.d.ts +0 -38
  1212. package/lib/typescript/src/types/shared/achCredit.types.d.ts.map +0 -1
  1213. package/lib/typescript/src/types/shared/bookPayment.types.d.ts +0 -26
  1214. package/lib/typescript/src/types/shared/bookPayment.types.d.ts.map +0 -1
  1215. package/lib/typescript/src/types/shared/fundAccountPayment.types.d.ts +0 -38
  1216. package/lib/typescript/src/types/shared/fundAccountPayment.types.d.ts.map +0 -1
  1217. package/lib/typescript/src/types/shared/payments.types.d.ts +0 -59
  1218. package/lib/typescript/src/types/shared/payments.types.d.ts.map +0 -1
  1219. package/lib/typescript/src/types/shared/transactions.types.d.ts +0 -81
  1220. package/lib/typescript/src/types/shared/transactions.types.d.ts.map +0 -1
  1221. package/lib/typescript/src/types/shared/wirePayment.types.d.ts +0 -42
  1222. package/lib/typescript/src/types/shared/wirePayment.types.d.ts.map +0 -1
  1223. package/lib/typescript/src/unitSdkManager/UnitSdk.api.d.ts.map +0 -1
  1224. package/lib/typescript/src/unitSdkManager/UnitSdk.constants.d.ts +0 -11
  1225. package/lib/typescript/src/unitSdkManager/UnitSdk.constants.d.ts.map +0 -1
  1226. package/lib/typescript/src/unitSdkManager/UnitSdkManager.d.ts +0 -40
  1227. package/lib/typescript/src/unitSdkManager/UnitSdkManager.d.ts.map +0 -1
  1228. package/lib/typescript/src/unitSdkManager/UnitSdkManager.utils.internal.d.ts +0 -4
  1229. package/lib/typescript/src/unitSdkManager/UnitSdkManager.utils.internal.d.ts.map +0 -1
  1230. package/lib/typescript/src/unitSdkManager/unitHelpersManager/UnitHelpersManager.d.ts.map +0 -1
  1231. package/lib/typescript/src/unitSdkManager/unitUiManager/unitUiManager.d.ts +0 -7
  1232. package/lib/typescript/src/unitSdkManager/unitUiManager/unitUiManager.d.ts.map +0 -1
  1233. package/src/components/UNFundAccountPaymentComponent/UNFundAccountPaymentComponent.tsx +0 -111
  1234. package/src/components/UNFundAccountPaymentComponent/UNFundAccountPaymentComponent.utils.ts +0 -24
  1235. package/src/components/UNFundAccountPaymentComponent/index.ts +0 -1
  1236. package/src/messages/webMessages/fundAccountPaymentMessage.ts +0 -8
  1237. package/src/nativeComponents/UNAddToWallet/UnitAddToWalletButton.tsx +0 -12
  1238. package/src/nativeModulesHelpers/UNStoreManagerHelper/UNStoreManagerHelper.ts +0 -19
  1239. package/src/types/shared/achCredit.types.ts +0 -39
  1240. package/src/types/shared/bookPayment.types.ts +0 -26
  1241. package/src/types/shared/fundAccountPayment.types.ts +0 -38
  1242. package/src/types/shared/payments.types.ts +0 -69
  1243. package/src/types/shared/transactions.types.ts +0 -84
  1244. package/src/types/shared/wirePayment.types.ts +0 -43
  1245. package/src/unitSdkManager/UnitSdk.constants.ts +0 -17
  1246. package/src/unitSdkManager/unitUiManager/unitUiManager.ts +0 -13
  1247. /package/lib/commonjs/types/shared/{bookPayment.types.js → payment/bookPayment.types.js} +0 -0
  1248. /package/lib/commonjs/types/shared/{wirePayment.types.js → payment/wirePayment.types.js} +0 -0
  1249. /package/lib/module/types/shared/{bookPayment.types.js → payment/bookPayment.types.js} +0 -0
  1250. /package/lib/module/types/shared/{wirePayment.types.js → payment/wirePayment.types.js} +0 -0
@@ -1 +1 @@
1
- {"version":3,"names":["React","useEffect","Platform","View","requireNativeComponent","useIsJailbrokeDevice","useSnapshotProtection","UnitAndroidSecureView","UNBaseView","props","isJailbroke","onLoadError","errors","title","OS","createElement","_extends","filterTouchesWhenObscured"],"sourceRoot":"../../../../src","sources":["nativeComponents/UNBaseView/UNBaseView.tsx"],"mappings":";AAAA,OAAOA,KAAK,IAAIC,SAAS,QAAQ,OAAO;AACxC,SACEC,QAAQ,EAERC,IAAI,EAEJC,sBAAsB,QACjB,cAAc;AAErB,SAASC,oBAAoB,QAAQ,kCAAkC;AACvE,SAASC,qBAAqB,QAAQ,mCAAmC;AAczE,MAAMC,qBAAqB,GAAGH,sBAAsB,CAA6B,cAAc,CAAC;AAEhG,MAAMI,UAAU,GAAIC,KAA0B,IAAK;EACjDH,qBAAqB,CAAC,CAAC;EAEvB,MAAMI,WAAW,GAAGL,oBAAoB,CAAC,CAAC;EAC1CJ,SAAS,CAAC,MAAM;IACd,IAAIS,WAAW,EAAE;MACfD,KAAK,CAACE,WAAW,IAAIF,KAAK,CAACE,WAAW,CAAC;QAACC,MAAM,EAAE,CAAC;UAACC,KAAK,EAAE;QAAqB,CAAC;MAAC,CAAC,CAAC;IACpF;EACF,CAAC,EAAE,CAACJ,KAAK,EAAEC,WAAW,CAAC,CAAC;EAExB,IAAIA,WAAW,EAAE;IACf,OAAO,IAAI;EACb;EAEA,IAAIR,QAAQ,CAACY,EAAE,IAAI,SAAS,EAAE;IAC5B,oBAAOd,KAAA,CAAAe,aAAA,CAACR,qBAAqB,EAAAS,QAAA;MAACC,yBAAyB,EAAE;IAAK,GAAKR,KAAK,CAAE,CAAC;EAC7E,CAAC,MAAM;IACL,oBACET,KAAA,CAAAe,aAAA,CAACZ,IAAI,EAAKM,KAAQ,CAAC;EAEvB;AACF,CAAC;AAED,eAAeD,UAAU"}
1
+ {"version":3,"names":["React","useEffect","Platform","View","UNComponentsErrorCodes","useIsJailbrokeDevice","useSnapshotProtection","UnitAndroidSecureView","useSelector","UNBaseView","props","customerToken","state","configuration","isJailbroke","onLoadError","errors","title","code","MISSING_TOKEN","fallback","createElement","Fragment","OS","_extends","filterTouchesWhenObscured"],"sourceRoot":"../../../../src","sources":["nativeComponents/UNBaseView/UNBaseView.tsx"],"mappings":";AAAA,OAAOA,KAAK,IAAIC,SAAS,QAAQ,OAAO;AACxC,SACEC,QAAQ,EACRC,IAAI,QAEC,cAAc;AACrB,SAA4BC,sBAAsB,QAA+B,oBAAoB;AACrG,SAASC,oBAAoB,QAAQ,kCAAkC;AACvE,SAASC,qBAAqB,QAAQ,mCAAmC;AACzE,OAAOC,qBAAqB,MAAM,6CAA6C;AAE/E,SAASC,WAAW,QAAQ,aAAa;AASzC,MAAMC,UAAU,GAAIC,KAA0B,IAAK;EACjDJ,qBAAqB,CAAC,CAAC;EACvB,MAAMK,aAAa,GAAGH,WAAW,CAAEI,KAAgB,IAAKA,KAAK,CAACC,aAAa,CAACF,aAAa,CAAC;EAC1F,MAAMG,WAAW,GAAGT,oBAAoB,CAAC,CAAC;EAE1CJ,SAAS,CAAC,MAAM;IACd,IAAIa,WAAW,EAAE;MACfJ,KAAK,CAACK,WAAW,IAAIL,KAAK,CAACK,WAAW,CAAC;QAACC,MAAM,EAAE,CAAC;UAACC,KAAK,EAAE;QAAqB,CAAC;MAAC,CAAC,CAAC;IACpF;EACF,CAAC,EAAE,CAACP,KAAK,EAAEI,WAAW,CAAC,CAAC;EAExB,IAAIA,WAAW,EAAE;IACf,OAAO,IAAI;EACb;EACA,IAAIJ,KAAK,CAACK,WAAW,IAAI,CAACJ,aAAa,EAAE;IACvCD,KAAK,CAACK,WAAW,CACf;MACEC,MAAM,EAAE,CAAC;QAAEE,IAAI,EAAEd,sBAAsB,CAACe;MAAc,CAAC;IACzD,CACF,CAAC;IACD,IAAIT,KAAK,CAACU,QAAQ,EAAE;MAClB,oBAAOpB,KAAA,CAAAqB,aAAA,CAAArB,KAAA,CAAAsB,QAAA,QAAGZ,KAAK,CAACU,QAAW,CAAC;IAC9B;EACF;EAEA,IAAIlB,QAAQ,CAACqB,EAAE,IAAI,SAAS,EAAE;IAC5B,oBAAOvB,KAAA,CAAAqB,aAAA,CAACd,qBAAqB,EAAAiB,QAAA;MAACC,yBAAyB,EAAE;IAAK,GAAKf,KAAK,CAAE,CAAC;EAC7E,CAAC,MAAM;IACL,oBACEV,KAAA,CAAAqB,aAAA,CAAClB,IAAI,EAAKO,KAAQ,CAAC;EAEvB;AACF,CAAC;AAED,eAAeD,UAAU","ignoreList":[]}
@@ -1 +1 @@
1
- {"version":3,"names":["default","UNBaseView"],"sourceRoot":"../../../../src","sources":["nativeComponents/UNBaseView/index.ts"],"mappings":"AAAA,SAASA,OAAO,IAAIC,UAAU,QAAQ,cAAc"}
1
+ {"version":3,"names":["default","UNBaseView"],"sourceRoot":"../../../../src","sources":["nativeComponents/UNBaseView/index.ts"],"mappings":"AAAA,SAASA,OAAO,IAAIC,UAAU,QAAQ,cAAc","ignoreList":[]}
@@ -0,0 +1,3 @@
1
+ import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent';
2
+ export default codegenNativeComponent('UNSecureNativeView');
3
+ //# sourceMappingURL=UNSecureViewNativeComponent.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["codegenNativeComponent"],"sourceRoot":"../../../../src","sources":["nativeComponents/UNSecureView/UNSecureViewNativeComponent.ts"],"mappings":"AACA,OAAOA,sBAAsB,MAAM,yDAAyD;AAM5F,eAAeA,sBAAsB,CACnC,oBACF,CAAC","ignoreList":[]}
@@ -0,0 +1,14 @@
1
+ import { Platform, TurboModuleRegistry } from 'react-native';
2
+ let UNShareFileModule = null;
3
+ if (Platform.OS === 'android') {
4
+ UNShareFileModule = TurboModuleRegistry.getEnforcing('UNShareFileModule');
5
+ } else {
6
+ UNShareFileModule = {
7
+ requestAccess: async () => {
8
+ console.warn('Share file module is not available on iOS.');
9
+ return Promise.resolve('Share file module is not available');
10
+ }
11
+ };
12
+ }
13
+ export default UNShareFileModule;
14
+ //# sourceMappingURL=RNShareFile.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["Platform","TurboModuleRegistry","UNShareFileModule","OS","getEnforcing","requestAccess","console","warn","Promise","resolve"],"sourceRoot":"../../../../src","sources":["nativeModulesHelpers/RNShareFile/RNShareFile.ts"],"mappings":"AACA,SAAQA,QAAQ,EAAEC,mBAAmB,QAAO,cAAc;AAE1D,IAAIC,iBAAsB,GAAG,IAAI;AAEjC,IAAIF,QAAQ,CAACG,EAAE,KAAK,SAAS,EAAE;EAI7BD,iBAAiB,GAAGD,mBAAmB,CAACG,YAAY,CAAO,mBAAmB,CAAC;AACjF,CAAC,MAAM;EACLF,iBAAiB,GAAG;IAClBG,aAAa,EAAE,MAAAA,CAAA,KAAY;MACzBC,OAAO,CAACC,IAAI,CAAC,4CAA4C,CAAC;MAC1D,OAAOC,OAAO,CAACC,OAAO,CAAC,oCAAoC,CAAC;IAC9D;EACF,CAAC;AACH;AAEA,eAAeP,iBAAiB","ignoreList":[]}
@@ -0,0 +1,14 @@
1
+ import { Platform, TurboModuleRegistry } from 'react-native';
2
+ let UNPermissionsModule = null;
3
+ if (Platform.OS === 'ios') {
4
+ UNPermissionsModule = TurboModuleRegistry.getEnforcing('UNPermissionsModule');
5
+ } else {
6
+ UNPermissionsModule = {
7
+ camera: async () => {
8
+ console.warn('Permissions module is not available on Android.');
9
+ return Promise.resolve('Permissions module is not available');
10
+ }
11
+ };
12
+ }
13
+ export default UNPermissionsModule;
14
+ //# sourceMappingURL=UNPermissionsHelper.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["Platform","TurboModuleRegistry","UNPermissionsModule","OS","getEnforcing","camera","console","warn","Promise","resolve"],"sourceRoot":"../../../../src","sources":["nativeModulesHelpers/UNPermissionsHelper/UNPermissionsHelper.ts"],"mappings":"AACA,SAAQA,QAAQ,EAAEC,mBAAmB,QAAO,cAAc;AAE1D,IAAIC,mBAAwB,GAAG,IAAI;AAEnC,IAAIF,QAAQ,CAACG,EAAE,KAAK,KAAK,EAAE;EAIzBD,mBAAmB,GAAGD,mBAAmB,CAACG,YAAY,CAAO,qBAAqB,CAAC;AACrF,CAAC,MAAM;EACLF,mBAAmB,GAAG;IACpBG,MAAM,EAAE,MAAAA,CAAA,KAAY;MAClBC,OAAO,CAACC,IAAI,CAAC,iDAAiD,CAAC;MAC/D,OAAOC,OAAO,CAACC,OAAO,CAAC,qCAAqC,CAAC;IAC/D;EACF,CAAC;AACH;AAEA,eAAeP,mBAAmB","ignoreList":[]}
@@ -1,19 +1,17 @@
1
- import { NativeModules } from 'react-native';
2
- const {
3
- UNSnapshotProtectionManager
4
- } = NativeModules;
1
+ import { TurboModuleRegistry } from 'react-native';
2
+ const SnapshotProtectionModule = TurboModuleRegistry.getEnforcing('UNComponentsSnapshotProtectionModule');
5
3
  class UNSnapshotProtectionHelper {
6
4
  static setAndroidSecurity() {
7
5
  /**
8
6
  * Set secure flag on the activity's window (if it doesn't exist)
9
7
  */
10
- UNSnapshotProtectionManager.setSecureFlags();
8
+ SnapshotProtectionModule.setSecureFlags();
11
9
  }
12
10
  static setIosSecurity(shouldProtectFromSnapshot, style) {
13
11
  /**
14
12
  * Activate a Global native service for managing the snapshotProtection by the given arguments.
15
13
  */
16
- UNSnapshotProtectionManager.configureSnapshotProtectionStrategy(shouldProtectFromSnapshot, style);
14
+ SnapshotProtectionModule.configureSnapshotProtectionStrategy(shouldProtectFromSnapshot, style);
17
15
  }
18
16
  }
19
17
  export default UNSnapshotProtectionHelper;
@@ -1 +1 @@
1
- {"version":3,"names":["NativeModules","UNSnapshotProtectionManager","UNSnapshotProtectionHelper","setAndroidSecurity","setSecureFlags","setIosSecurity","shouldProtectFromSnapshot","style","configureSnapshotProtectionStrategy"],"sourceRoot":"../../../../src","sources":["nativeModulesHelpers/UNSanpshotProtectionHelper/UNSnapshotProtectionHelper.ts"],"mappings":"AAAA,SAASA,aAAa,QAAQ,cAAc;AAE5C,MAAM;EAAEC;AAA4B,CAAC,GAAGD,aAAa;AAErD,MAAME,0BAA0B,CAAC;EAC/B,OAAOC,kBAAkBA,CAAA,EAAG;IAC1B;AACJ;AACA;IACIF,2BAA2B,CAACG,cAAc,CAAC,CAAC;EAC9C;EAEA,OAAOC,cAAcA,CAACC,yBAAkC,EAAEC,KAAa,EAAE;IACvE;AACJ;AACA;IACIN,2BAA2B,CAACO,mCAAmC,CAACF,yBAAyB,EAAEC,KAAK,CAAC;EACnG;AACF;AAEA,eAAeL,0BAA0B"}
1
+ {"version":3,"names":["TurboModuleRegistry","SnapshotProtectionModule","getEnforcing","UNSnapshotProtectionHelper","setAndroidSecurity","setSecureFlags","setIosSecurity","shouldProtectFromSnapshot","style","configureSnapshotProtectionStrategy"],"sourceRoot":"../../../../src","sources":["nativeModulesHelpers/UNSanpshotProtectionHelper/UNSnapshotProtectionHelper.ts"],"mappings":"AAAA,SAAsBA,mBAAmB,QAAQ,cAAc;AAO/D,MAAMC,wBAAwB,GAAGD,mBAAmB,CAACE,YAAY,CAAO,sCAAsC,CAAC;AAE/G,MAAMC,0BAA0B,CAAC;EAC/B,OAAOC,kBAAkBA,CAAA,EAAG;IAC1B;AACJ;AACA;IACIH,wBAAwB,CAACI,cAAc,CAAC,CAAC;EAC3C;EAEA,OAAOC,cAAcA,CAACC,yBAAkC,EAAEC,KAAa,EAAE;IACvE;AACJ;AACA;IACIP,wBAAwB,CAACQ,mCAAmC,CAACF,yBAAyB,EAAEC,KAAK,CAAC;EAChG;AACF;AAEA,eAAeL,0BAA0B","ignoreList":[]}
@@ -1,13 +1,11 @@
1
- import { NativeModules } from 'react-native';
2
- const {
3
- UNSecurityHelper
4
- } = NativeModules;
1
+ import { TurboModuleRegistry } from 'react-native';
5
2
  var UNJailbrokeState = /*#__PURE__*/function (UNJailbrokeState) {
6
3
  UNJailbrokeState[UNJailbrokeState["Unknown"] = 0] = "Unknown";
7
4
  UNJailbrokeState[UNJailbrokeState["Jailbroke"] = 1] = "Jailbroke";
8
5
  UNJailbrokeState[UNJailbrokeState["NotJailbroke"] = 2] = "NotJailbroke";
9
6
  return UNJailbrokeState;
10
7
  }(UNJailbrokeState || {});
8
+ const UNSecurityHelper = TurboModuleRegistry.getEnforcing('UNSecurityHelperModule');
11
9
  class UNSecurityManagerHelper {
12
10
  static deviceJailbrokeState = UNJailbrokeState.Unknown;
13
11
  static async isDeviceJailbroke() {
@@ -1 +1 @@
1
- {"version":3,"names":["NativeModules","UNSecurityHelper","UNJailbrokeState","UNSecurityManagerHelper","deviceJailbrokeState","Unknown","isDeviceJailbroke","isCurrentStatusIsJailbroke","result","Jailbroke","NotJailbroke"],"sourceRoot":"../../../src","sources":["nativeModulesHelpers/UNSecurityHelper.ts"],"mappings":"AAAA,SAASA,aAAa,QAAQ,cAAc;AAE5C,MAAM;EAAEC;AAAiB,CAAC,GAAGD,aAAa;AAAC,IAEtCE,gBAAgB,0BAAhBA,gBAAgB;EAAhBA,gBAAgB,CAAhBA,gBAAgB;EAAhBA,gBAAgB,CAAhBA,gBAAgB;EAAhBA,gBAAgB,CAAhBA,gBAAgB;EAAA,OAAhBA,gBAAgB;AAAA,EAAhBA,gBAAgB;AAMrB,MAAMC,uBAAuB,CAAC;EAC5B,OAAOC,oBAAoB,GAAqBF,gBAAgB,CAACG,OAAO;EAExE,aAAaC,iBAAiBA,CAAA,EAAqB;IACjD,IAAI,IAAI,CAACF,oBAAoB,KAAKF,gBAAgB,CAACG,OAAO,EAAE;MAC1D,OAAO,IAAI,CAACE,0BAA0B,CAAC,CAAC;IAC1C;IACA,MAAMC,MAAe,GAAG,MAAMP,gBAAgB,CAACK,iBAAiB,CAAC,CAAC;IAClEH,uBAAuB,CAACC,oBAAoB,GAAGI,MAAM,GAAGN,gBAAgB,CAACO,SAAS,GAAGP,gBAAgB,CAACQ,YAAY;IAClH,OAAOF,MAAM;EACf;EAEA,OAAeD,0BAA0B,GAAGA,CAAA,KAAe;IACzD,QAAQ,IAAI,CAACH,oBAAoB;MAC/B,KAAKF,gBAAgB,CAACG,OAAO;QAC3B,OAAO,KAAK;MACd,KAAKH,gBAAgB,CAACO,SAAS;QAC7B,OAAO,IAAI;MACb,KAAKP,gBAAgB,CAACQ,YAAY;QAChC,OAAO,KAAK;IAChB;EACF,CAAC;AACH;AAEA,eAAeP,uBAAuB"}
1
+ {"version":3,"names":["TurboModuleRegistry","UNJailbrokeState","UNSecurityHelper","getEnforcing","UNSecurityManagerHelper","deviceJailbrokeState","Unknown","isDeviceJailbroke","isCurrentStatusIsJailbroke","result","Jailbroke","NotJailbroke"],"sourceRoot":"../../../src","sources":["nativeModulesHelpers/UNSecurityHelper.ts"],"mappings":"AAAA,SAAsBA,mBAAmB,QAAQ,cAAc;AAAC,IAE3DC,gBAAgB,0BAAhBA,gBAAgB;EAAhBA,gBAAgB,CAAhBA,gBAAgB;EAAhBA,gBAAgB,CAAhBA,gBAAgB;EAAhBA,gBAAgB,CAAhBA,gBAAgB;EAAA,OAAhBA,gBAAgB;AAAA,EAAhBA,gBAAgB;AAUrB,MAAMC,gBAAgB,GAAGF,mBAAmB,CAACG,YAAY,CAAO,wBAAwB,CAAC;AAEzF,MAAMC,uBAAuB,CAAC;EAC5B,OAAOC,oBAAoB,GAAqBJ,gBAAgB,CAACK,OAAO;EAExE,aAAaC,iBAAiBA,CAAA,EAAqB;IACjD,IAAI,IAAI,CAACF,oBAAoB,KAAKJ,gBAAgB,CAACK,OAAO,EAAE;MAC1D,OAAO,IAAI,CAACE,0BAA0B,CAAC,CAAC;IAC1C;IACA,MAAMC,MAAe,GAAG,MAAMP,gBAAgB,CAACK,iBAAiB,CAAC,CAAC;IAClEH,uBAAuB,CAACC,oBAAoB,GAAGI,MAAM,GAAGR,gBAAgB,CAACS,SAAS,GAAGT,gBAAgB,CAACU,YAAY;IAClH,OAAOF,MAAM;EACf;EAEA,OAAeD,0BAA0B,GAAGA,CAAA,KAAe;IACzD,QAAQ,IAAI,CAACH,oBAAoB;MAC/B,KAAKJ,gBAAgB,CAACK,OAAO;QAC3B,OAAO,KAAK;MACd,KAAKL,gBAAgB,CAACS,SAAS;QAC7B,OAAO,IAAI;MACb,KAAKT,gBAAgB,CAACU,YAAY;QAChC,OAAO,KAAK;IAChB;EACF,CAAC;AACH;AAEA,eAAeP,uBAAuB","ignoreList":[]}
@@ -0,0 +1,3 @@
1
+ import { TurboModuleRegistry } from 'react-native';
2
+ export default TurboModuleRegistry.getEnforcing('UNStoreModule');
3
+ //# sourceMappingURL=UNStoreModuleHelper.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["TurboModuleRegistry","getEnforcing"],"sourceRoot":"../../../../src","sources":["nativeModulesHelpers/UNStoreModuleHelper/UNStoreModuleHelper.ts"],"mappings":"AAAA,SAAsBA,mBAAmB,QAAQ,cAAc;AAQ/D,eAAeA,mBAAmB,CAACC,YAAY,CAAO,eAAe,CAAC","ignoreList":[]}
@@ -1,11 +1,11 @@
1
- import { UNEnvironment } from '../../types/shared/env.types';
1
+ import { UNComponentsEnvironment } from '../../types/shared/env.types';
2
2
  export const APIHeaders = {
3
3
  AUTHORIZATION: 'Authorization',
4
4
  CONTENT_TYPE: 'application/vnd.api+json'
5
5
  };
6
6
  export const UNIT_SECURE_URL = {
7
- [UNEnvironment.sandbox]: 'https://secure.api.s.unit.sh',
8
- [UNEnvironment.production]: 'https://secure.api.unit.co',
9
- [UNEnvironment.mock]: ''
7
+ [UNComponentsEnvironment.sandbox]: 'https://secure.api.s.unit.sh',
8
+ [UNComponentsEnvironment.production]: 'https://secure.api.unit.co',
9
+ [UNComponentsEnvironment.mock]: ''
10
10
  };
11
11
  //# sourceMappingURL=UNNetworkConstants.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["UNEnvironment","APIHeaders","AUTHORIZATION","CONTENT_TYPE","UNIT_SECURE_URL","sandbox","production","mock"],"sourceRoot":"../../../../src","sources":["networking/common/UNNetworkConstants.ts"],"mappings":"AAAA,SAASA,aAAa,QAAQ,8BAA8B;AAE5D,OAAO,MAAMC,UAAU,GAAG;EACxBC,aAAa,EAAE,eAAe;EAC9BC,YAAY,EAAE;AAChB,CAAC;AAED,OAAO,MAAMC,eAAe,GAAG;EAC7B,CAACJ,aAAa,CAACK,OAAO,GAAG,8BAA8B;EACvD,CAACL,aAAa,CAACM,UAAU,GAAG,4BAA4B;EACxD,CAACN,aAAa,CAACO,IAAI,GAAG;AACxB,CAAC"}
1
+ {"version":3,"names":["UNComponentsEnvironment","APIHeaders","AUTHORIZATION","CONTENT_TYPE","UNIT_SECURE_URL","sandbox","production","mock"],"sourceRoot":"../../../../src","sources":["networking/common/UNNetworkConstants.ts"],"mappings":"AAAA,SAASA,uBAAuB,QAAQ,8BAA8B;AAEtE,OAAO,MAAMC,UAAU,GAAG;EACxBC,aAAa,EAAE,eAAe;EAC9BC,YAAY,EAAE;AAChB,CAAC;AAED,OAAO,MAAMC,eAAe,GAAG;EAC7B,CAACJ,uBAAuB,CAACK,OAAO,GAAG,8BAA8B;EACjE,CAACL,uBAAuB,CAACM,UAAU,GAAG,4BAA4B;EAClE,CAACN,uBAAuB,CAACO,IAAI,GAAG;AAClC,CAAC","ignoreList":[]}
@@ -35,10 +35,10 @@ export const getMobileWalletPayload = async (customerToken, cardId, env, signedN
35
35
  return encryptedPayload;
36
36
  }
37
37
  } catch (error) {
38
- // Converts the error into a UNError
38
+ // Converts the error into a UNComponentsError
39
39
  if (axios.isAxiosError(error) && error.response) {
40
- const unErrors = error.response.data;
41
- throw unErrors;
40
+ const unComponentsErrors = error.response.data;
41
+ throw unComponentsErrors;
42
42
  } else if (error instanceof Error) {
43
43
  const unexpectedError = {
44
44
  title: 'Unexpected error',
@@ -1 +1 @@
1
- {"version":3,"names":["axios","APIHeaders","UNIT_SECURE_URL","isUNMobileWalletPayload","object","data","attributes","getMobileWalletPayload","customerToken","cardId","env","signedNonce","headers","CONTENT_TYPE","baseURL","response","post","error","title","status","encryptedPayload","payload","isAxiosError","unErrors","Error","unexpectedError"],"sourceRoot":"../../../../src","sources":["networking/requests/UNWalletPayloadRequest.ts"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,UAAU,EAAEC,eAAe,QAAQ,8BAA8B;AAK1E;AACA,MAAMC,uBAAuB,GAAIC,MAAW,IAAsC;EAChF,OAAO,MAAM,IAAIA,MAAM,IACrB,YAAY,IAAIA,MAAM,CAACC,IAAI,IAC3B,SAAS,IAAID,MAAM,CAACC,IAAI,CAACC,UAAU;AACvC,CAAC;;AAED;;AAEA,OAAO,MAAMC,sBAAsB,GAAG,MAAAA,CAAOC,aAAqB,EAAEC,MAAc,EAAEC,GAAkB,EAAEC,WAAmB,KAAK;EAC9H,IAAI,CAACA,WAAW,EAAE;EAElB,MAAMC,OAAO,GAAG;IACd,cAAc,EAAEX,UAAU,CAACY,YAAY;IACvC,eAAe,EAAG,UAASL,aAAc;EAC3C,CAAC;EAED,MAAMH,IAAI,GAAG;IACXA,IAAI,EAAE;MACJC,UAAU,EAAE;QACVK,WAAW,EAAEA;MACf;IACF;EACF,CAAC;EAED,MAAMG,OAAO,GAAI,GAAEZ,eAAe,CAACQ,GAAG,CAAgC,UAASD,MAAO,wBAAuB;EAC7G,IAAI;IACF,MAAMM,QAAQ,GAAG,MAAMf,KAAK,CAACgB,IAAI,CAC/BF,OAAO,EACPT,IAAI,EACJ;MACEO,OAAO,EAAEA;IACX,CAAC,CAAC;IACJ,IAAI,CAACT,uBAAuB,CAACY,QAAQ,CAACV,IAAI,CAAC,EAAE;MAC3C,MAAMY,KAAkB,GAAG;QAACC,KAAK,EAAG,8CAA6CH,QAAQ,CAACI,MAAO,kBAAiBJ,QAAQ,CAACV,IAAK;MAAC,CAAC;MAClI,MAAMY,KAAK;IACb,CAAC,MAAM;MACL,MAAMG,gBAAgB,GAAGL,QAAQ,CAACV,IAAI,CAACA,IAAI,CAACC,UAAU,CAACe,OAAO;MAC9D,OAAOD,gBAAgB;IACzB;EACF,CAAC,CAAC,OAAOH,KAAc,EAAE;IACvB;IACA,IAAIjB,KAAK,CAACsB,YAAY,CAAUL,KAAK,CAAC,IAAIA,KAAK,CAACF,QAAQ,EAAE;MACxD,MAAMQ,QAAQ,GAAGN,KAAK,CAACF,QAAQ,CAACV,IAAI;MACpC,MAAMkB,QAAQ;IAChB,CAAC,MAAM,IAAIN,KAAK,YAAYO,KAAK,EAAG;MAClC,MAAMC,eAA4B,GAAG;QAACP,KAAK,EAAE,kBAAkB;QAAED,KAAK,EAAEA;MAAK,CAAC;MAC9E,MAAMQ,eAAe;IACvB;IACA,MAAM;MAACP,KAAK,EAAG,qBAAoBD,KAAM;IAAC,CAAC;EAC7C;AACF,CAAC"}
1
+ {"version":3,"names":["axios","APIHeaders","UNIT_SECURE_URL","isUNMobileWalletPayload","object","data","attributes","getMobileWalletPayload","customerToken","cardId","env","signedNonce","headers","CONTENT_TYPE","baseURL","response","post","error","title","status","encryptedPayload","payload","isAxiosError","unComponentsErrors","Error","unexpectedError"],"sourceRoot":"../../../../src","sources":["networking/requests/UNWalletPayloadRequest.ts"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,SAASC,UAAU,EAAEC,eAAe,QAAQ,8BAA8B;AAK1E;AACA,MAAMC,uBAAuB,GAAIC,MAAW,IAAsC;EAChF,OAAO,MAAM,IAAIA,MAAM,IACrB,YAAY,IAAIA,MAAM,CAACC,IAAI,IAC3B,SAAS,IAAID,MAAM,CAACC,IAAI,CAACC,UAAU;AACvC,CAAC;;AAED;;AAEA,OAAO,MAAMC,sBAAsB,GAAG,MAAAA,CAAOC,aAAqB,EAAEC,MAAc,EAAEC,GAA4B,EAAEC,WAAmB,KAAK;EACxI,IAAI,CAACA,WAAW,EAAE;EAElB,MAAMC,OAAO,GAAG;IACd,cAAc,EAAEX,UAAU,CAACY,YAAY;IACvC,eAAe,EAAE,UAAUL,aAAa;EAC1C,CAAC;EAED,MAAMH,IAAI,GAAG;IACXA,IAAI,EAAE;MACJC,UAAU,EAAE;QACVK,WAAW,EAAEA;MACf;IACF;EACF,CAAC;EAED,MAAMG,OAAO,GAAG,GAAGZ,eAAe,CAACQ,GAAG,CAAyC,UAAUD,MAAM,wBAAwB;EACvH,IAAI;IACF,MAAMM,QAAQ,GAAG,MAAMf,KAAK,CAACgB,IAAI,CAC/BF,OAAO,EACPT,IAAI,EACJ;MACEO,OAAO,EAAEA;IACX,CAAC,CAAC;IACJ,IAAI,CAACT,uBAAuB,CAACY,QAAQ,CAACV,IAAI,CAAC,EAAE;MAC3C,MAAMY,KAA4B,GAAG;QAAEC,KAAK,EAAE,8CAA8CH,QAAQ,CAACI,MAAM,kBAAkBJ,QAAQ,CAACV,IAAI;MAAG,CAAC;MAC9I,MAAMY,KAAK;IACb,CAAC,MAAM;MACL,MAAMG,gBAAgB,GAAGL,QAAQ,CAACV,IAAI,CAACA,IAAI,CAACC,UAAU,CAACe,OAAO;MAC9D,OAAOD,gBAAgB;IACzB;EACF,CAAC,CAAC,OAAOH,KAAc,EAAE;IACvB;IACA,IAAIjB,KAAK,CAACsB,YAAY,CAAoBL,KAAK,CAAC,IAAIA,KAAK,CAACF,QAAQ,EAAE;MAClE,MAAMQ,kBAAkB,GAAGN,KAAK,CAACF,QAAQ,CAACV,IAAI;MAC9C,MAAMkB,kBAAkB;IAC1B,CAAC,MAAM,IAAIN,KAAK,YAAYO,KAAK,EAAE;MACjC,MAAMC,eAAsC,GAAG;QAAEP,KAAK,EAAE,kBAAkB;QAAED,KAAK,EAAEA;MAAM,CAAC;MAC1F,MAAMQ,eAAe;IACvB;IACA,MAAM;MAAEP,KAAK,EAAE,qBAAqBD,KAAK;IAAG,CAAC;EAC/C;AACF,CAAC","ignoreList":[]}
@@ -1 +1 @@
1
- {"version":3,"names":["PresentationMode","webViewId","getHtmlBody","unitComponent","unitComponentProps","presentationMode","currentComponent","CoverInjectedHeight","getCoverInjectedHeightBodyScript","Inherit","getInheritParentSizeScript","currentUnitScript"],"sourceRoot":"../../../../src","sources":["scripts/html/bodyHtml.ts"],"mappings":"AAAA,SAASA,gBAAgB,QAAQ,yCAAyC;AAE1E,OAAO,MAAMC,SAAS,GAAG,kBAAkB;AAE3C,OAAO,MAAMC,WAAW,GAAGA,CAACC,aAAqB,EAAEC,kBAA2B,EAAEC,gBAAmC,KAAK;EACtH,MAAMC,gBAAgB,GAAI,IAAGH,aAAc,IAAGC,kBAAkB,IAAI,EAAG,SAAQD,aAAc,GAAE;EAE/F,QAAQE,gBAAgB;IACtB,KAAKL,gBAAgB,CAACO,mBAAmB;MACvC,OAAOC,gCAAgC,CAACF,gBAAgB,CAAC;IAC3D,KAAKN,gBAAgB,CAACS,OAAO;MAC3B,OAAOC,0BAA0B,CAACJ,gBAAgB,CAAC;IACrD;MACE,OAAOA,gBAAgB;EAC3B;AACF,CAAC;AAED,MAAME,gCAAgC,GAAIG,iBAAyB,IAAK;EACtE,OAAQ;AACV,cAAcV,SAAU;AACxB;AACA,UAAUU,iBAAkB;AAC5B;AACA;AACA,GAAG;AACH,CAAC;AAED,MAAMD,0BAA0B,GAAIC,iBAAyB,IAAK;EAChE,OAAQ;AACV;AACA,QAAQA,iBAAkB;AAC1B;AACA,GAAG;AACH,CAAC"}
1
+ {"version":3,"names":["PresentationMode","webViewId","getHtmlBody","unitComponent","unitComponentProps","presentationMode","currentComponent","CoverInjectedHeight","getCoverInjectedHeightBodyScript","Inherit","getInheritParentSizeScript","currentUnitScript"],"sourceRoot":"../../../../src","sources":["scripts/html/bodyHtml.ts"],"mappings":"AAAA,SAASA,gBAAgB,QAAQ,yCAAyC;AAE1E,OAAO,MAAMC,SAAS,GAAG,kBAAkB;AAE3C,OAAO,MAAMC,WAAW,GAAGA,CAACC,aAAqB,EAAEC,kBAA2B,EAAEC,gBAAmC,KAAK;EACtH,MAAMC,gBAAgB,GAAG,IAAIH,aAAa,IAAIC,kBAAkB,IAAI,EAAE,SAASD,aAAa,GAAG;EAE/F,QAAQE,gBAAgB;IACtB,KAAKL,gBAAgB,CAACO,mBAAmB;MACvC,OAAOC,gCAAgC,CAACF,gBAAgB,CAAC;IAC3D,KAAKN,gBAAgB,CAACS,OAAO;MAC3B,OAAOC,0BAA0B,CAACJ,gBAAgB,CAAC;IACrD;MACE,OAAOA,gBAAgB;EAC3B;AACF,CAAC;AAED,MAAME,gCAAgC,GAAIG,iBAAyB,IAAK;EACtE,OAAO;AACT,cAAcV,SAAS;AACvB;AACA,UAAUU,iBAAiB;AAC3B;AACA;AACA,GAAG;AACH,CAAC;AAED,MAAMD,0BAA0B,GAAIC,iBAAyB,IAAK;EAChE,OAAO;AACT;AACA,QAAQA,iBAAiB;AACzB;AACA,GAAG;AACH,CAAC","ignoreList":[]}
@@ -1,7 +1,7 @@
1
1
  import { PaymentMessage } from '../../messages/webMessages/paymentsMessage';
2
2
  import { CardMessage } from '../../messages/webMessages/cardMessage';
3
3
  import { PageMessage } from '../../messages/webMessages/pageMessage';
4
- import { UnitMessage } from '../../messages/webMessages/unitMessages';
4
+ import { UnitComponentsMessage } from '../../messages/webMessages/unitComponentsMessages';
5
5
  import { AccountMessage } from '../../messages/webMessages/accountMessage';
6
6
  import { ActivityMessage } from '../../messages/webMessages/activityMessage';
7
7
  import { PlaidMessage } from '../../messages/webMessages/plaidMessages';
@@ -29,39 +29,47 @@ export const LISTENERS = {
29
29
  });
30
30
  `,
31
31
  requestRendering: `
32
- window.addEventListener("${UnitMessage.UNIT_REQUEST_RENDERING}", (e) => {
33
- postMessageToSDK({ type: "${UnitMessage.UNIT_REQUEST_RENDERING}", details: { data: e.detail }})
32
+ window.addEventListener("${UnitComponentsMessage.UNIT_REQUEST_RENDERING}", (e) => {
33
+ postMessageToSDK({ type: "${UnitComponentsMessage.UNIT_REQUEST_RENDERING}", details: { data: e.detail }})
34
34
  });
35
35
  `,
36
36
  requestRefresh: `
37
- window.addEventListener("${UnitMessage.UNIT_REQUEST_REFRESH}", (e) => {
37
+ window.addEventListener("${UnitComponentsMessage.UNIT_REQUEST_REFRESH}", (e) => {
38
38
  if (e.detail.fromSDK) { return }
39
- postMessageToSDK({ type: "${UnitMessage.UNIT_REQUEST_REFRESH}", details: e.detail })
39
+ postMessageToSDK({ type: "${UnitComponentsMessage.UNIT_REQUEST_REFRESH}", details: e.detail })
40
40
  });
41
41
  `,
42
42
  onLoad: `
43
- window.addEventListener("${UnitMessage.UNIT_ON_LOAD}", (e) => {
44
- postHeight()
45
- postMessageToSDK({ type: "${UnitMessage.UNIT_ON_LOAD}", details: e.detail })
43
+ window.addEventListener("${UnitComponentsMessage.UNIT_ON_LOAD}", (e) => {
44
+ if (document.querySelector("unit-elements-account") !== null) {
45
+ // 10 milliseconds delay to render AccountComponent correctly
46
+ setTimeout(() => {
47
+ postHeight()
48
+ }, 10);
49
+ } else {
50
+ postHeight()
51
+ }
52
+ postMessageToSDK({ type: "${UnitComponentsMessage.UNIT_ON_LOAD}", details: e.detail })
53
+
46
54
  });
47
55
  `,
48
56
  requestCloseFlow: `
49
- window.addEventListener("${UnitMessage.UNIT_REQUEST_CLOSE_FLOW}", (e) => {
57
+ window.addEventListener("${UnitComponentsMessage.UNIT_REQUEST_CLOSE_FLOW}", (e) => {
50
58
  // Add a delay of 200 milliseconds to allow the SDK to finish processing prior events that require a Promise before closing the flow
51
59
  setTimeout(() => {
52
- postMessageToSDK({ type: "${UnitMessage.UNIT_REQUEST_CLOSE_FLOW}" });
60
+ postMessageToSDK({ type: "${UnitComponentsMessage.UNIT_REQUEST_CLOSE_FLOW}" });
53
61
  }, 200);
54
62
 
55
63
  });
56
64
  `,
57
65
  requestOpenLink: `
58
- window.addEventListener("${UnitMessage.UNIT_REQUEST_OPEN_LINK}", (e) => {
59
- postMessageToSDK({ type: "${UnitMessage.UNIT_REQUEST_OPEN_LINK}", details: e.detail })
66
+ window.addEventListener("${UnitComponentsMessage.UNIT_REQUEST_OPEN_LINK}", (e) => {
67
+ postMessageToSDK({ type: "${UnitComponentsMessage.UNIT_REQUEST_OPEN_LINK}", details: e.detail })
60
68
  });
61
69
  `,
62
70
  unitRequestDownload: `
63
- window.addEventListener("${UnitMessage.UNIT_REQUEST_DOWNLOAD}", (e) => {
64
- postMessageToSDK({ type: "${UnitMessage.UNIT_REQUEST_DOWNLOAD}", details: e.detail })
71
+ window.addEventListener("${UnitComponentsMessage.UNIT_REQUEST_DOWNLOAD}", (e) => {
72
+ postMessageToSDK({ type: "${UnitComponentsMessage.UNIT_REQUEST_DOWNLOAD}", details: e.detail })
65
73
  });
66
74
  `,
67
75
  cardActivated: `
@@ -85,13 +93,13 @@ export const LISTENERS = {
85
93
  });
86
94
  `,
87
95
  unitRequestExternalSdk: `
88
- window.addEventListener("${UnitMessage.UNIT_REQUEST_EXTERNAL_SDK}", (e) => {
89
- postMessageToSDK({ type: "${UnitMessage.UNIT_REQUEST_EXTERNAL_SDK}", details: e.detail })
96
+ window.addEventListener("${UnitComponentsMessage.UNIT_REQUEST_EXTERNAL_SDK}", (e) => {
97
+ postMessageToSDK({ type: "${UnitComponentsMessage.UNIT_REQUEST_EXTERNAL_SDK}", details: e.detail })
90
98
  });
91
99
  `,
92
100
  unitRequestLeftToSpendDetails: `
93
- window.addEventListener("${UnitMessage.UNIT_REQUEST_LEFT_TO_SPEND_DETAILS}", (e) => {
94
- postMessageToSDK({ type: "${UnitMessage.UNIT_REQUEST_LEFT_TO_SPEND_DETAILS}", details: e.detail })
101
+ window.addEventListener("${UnitComponentsMessage.UNIT_REQUEST_LEFT_TO_SPEND_DETAILS}", (e) => {
102
+ postMessageToSDK({ type: "${UnitComponentsMessage.UNIT_REQUEST_LEFT_TO_SPEND_DETAILS}", details: e.detail })
95
103
  });
96
104
  `,
97
105
  unitPaymentCreated: `
@@ -140,7 +148,7 @@ export const LISTENERS = {
140
148
  });
141
149
  `,
142
150
  unitMultiFactorAuthFinished: `
143
- window.addEventListener("${UnitMessage.UNIT_MULTI_FACTOR_AUTH_FINISHED}", async (e) => {
151
+ window.addEventListener("${UnitComponentsMessage.UNIT_MULTI_FACTOR_AUTH_FINISHED}", async (e) => {
144
152
  const response = await e.detail.response;
145
153
  const unitVerifiedCustomerToken = {
146
154
  token: response.data.attributes.token,
@@ -155,22 +163,22 @@ export const LISTENERS = {
155
163
  eventToContinue: e.detail.eventToContinue
156
164
  }
157
165
 
158
- postMessageToSDK({ type: "${UnitMessage.UNIT_MULTI_FACTOR_AUTH_FINISHED}", details: data })
166
+ postMessageToSDK({ type: "${UnitComponentsMessage.UNIT_MULTI_FACTOR_AUTH_FINISHED}", details: data })
159
167
  });
160
168
  `,
161
169
  unitWhiteLabelAppOnLoad: `
162
- window.addEventListener("${UnitMessage.UNIT_WHITE_LABEL_APP_ON_LOAD}", async (event) => {
170
+ window.addEventListener("${UnitComponentsMessage.UNIT_WHITE_LABEL_APP_ON_LOAD}", async (event) => {
163
171
  const response = event.detail;
164
172
  response.then((data) => {
165
- postMessageToSDK({ type: "${UnitMessage.UNIT_WHITE_LABEL_APP_ON_LOAD}", details: data.data })
173
+ postMessageToSDK({ type: "${UnitComponentsMessage.UNIT_WHITE_LABEL_APP_ON_LOAD}", details: data.data })
166
174
  }).catch((e) => {
167
175
  console.log(e)
168
176
  })
169
177
  });
170
178
  `,
171
179
  unitUnauthorizedToken: `
172
- window.addEventListener("${UnitMessage.UNIT_UNAUTHORIZED_TOKEN}", (e) => {
173
- postMessageToSDK({ type: "${UnitMessage.UNIT_UNAUTHORIZED_TOKEN}", details: "Clean the current user tokens" })
180
+ window.addEventListener("${UnitComponentsMessage.UNIT_UNAUTHORIZED_TOKEN}", (e) => {
181
+ postMessageToSDK({ type: "${UnitComponentsMessage.UNIT_UNAUTHORIZED_TOKEN}", details: "Clean the current user tokens" })
174
182
  });
175
183
  `,
176
184
  unitConnectedAccountCreated: `
@@ -236,13 +244,19 @@ export const LISTENERS = {
236
244
  };
237
245
  export const DISPATCH_RENDERING_EVENT = `
238
246
  const dispatchRenderingEvent = (details) => {
239
- const event = new CustomEvent("${UnitMessage.UNIT_REQUEST_RENDERING}",{ detail: JSON.parse(details) })
247
+ const event = new CustomEvent("${UnitComponentsMessage.UNIT_REQUEST_RENDERING}",{ detail: JSON.parse(details) })
240
248
  window.dispatchEvent(event)
241
249
  }
242
250
  `;
243
251
  export const DISPATCH_EVENT_TO_CONTINUE = `
244
252
  const dispatchEventToContinue = (details) => {
245
- const event = new CustomEvent("${UnitMessage.UNIT_EVENT_TO_CONTINUE}",{ detail: JSON.parse(details) })
253
+ const event = new CustomEvent("${UnitComponentsMessage.UNIT_EVENT_TO_CONTINUE}",{ detail: JSON.parse(details) })
254
+ window.dispatchEvent(event)
255
+ }
256
+ `;
257
+ export const DISPATCH_CARD_STATUS_CHANGED = `
258
+ const dispatchCardStatueChanged = (details) => {
259
+ const event = new CustomEvent("${CardMessage.CARD_STATUS_CHANGED}",{ detail: JSON.parse(details) })
246
260
  window.dispatchEvent(event)
247
261
  }
248
262
  `;
@@ -251,9 +265,9 @@ export const DISPATCH_REQUEST_REFRESH = `
251
265
  let event;
252
266
  // we are adding "fromSDK" param to avoid infinite loop
253
267
  if (details) {
254
- event = new CustomEvent("${UnitMessage.UNIT_REQUEST_REFRESH}",{ detail: {...JSON.parse(details), fromSDK: true} });
268
+ event = new CustomEvent("${UnitComponentsMessage.UNIT_REQUEST_REFRESH}",{ detail: {...JSON.parse(details), fromSDK: true} });
255
269
  } else {
256
- event = new CustomEvent("${UnitMessage.UNIT_REQUEST_REFRESH}", { detail: { fromSDK: true }});
270
+ event = new CustomEvent("${UnitComponentsMessage.UNIT_REQUEST_REFRESH}", { detail: { fromSDK: true }});
257
271
  }
258
272
  window.dispatchEvent(event)
259
273
  }
@@ -1 +1 @@
1
- {"version":3,"names":["PaymentMessage","CardMessage","PageMessage","UnitMessage","AccountMessage","ActivityMessage","PlaidMessage","PayeeManagementMessage","POST_MESSAGE_TO_SDK","POST_PAGE_HEIGHT","PAGE_HEIGHT","LISTENERS","isPageLoaded","PAGE_LOADED","requestRendering","UNIT_REQUEST_RENDERING","requestRefresh","UNIT_REQUEST_REFRESH","onLoad","UNIT_ON_LOAD","requestCloseFlow","UNIT_REQUEST_CLOSE_FLOW","requestOpenLink","UNIT_REQUEST_OPEN_LINK","unitRequestDownload","UNIT_REQUEST_DOWNLOAD","cardActivated","CARD_ACTIVATED","cardStatusChange","CARD_STATUS_CHANGED","unitRequestExternalSdk","UNIT_REQUEST_EXTERNAL_SDK","unitRequestLeftToSpendDetails","UNIT_REQUEST_LEFT_TO_SPEND_DETAILS","unitPaymentCreated","PAYMENT_CREATED","unitPaymentInitialStageBackButtonClicked","INITIAL_STAGE_BACK_BUTTON_CLICKED","unitPaymentFinalStageDoneButtonClicked","FINAL_STAGE_DONE_BUTTON_CLICKED","unitPlaidTokenCreated","UNIT_PLAID_TOKEN_CREATED","unitAccountChanged","UNIT_ACCOUNT_CHANGED","unitActivityFiltersChanged","UNIT_ACTIVITY_FILTERS_CHANGED","unitMultiFactorAuthFinished","UNIT_MULTI_FACTOR_AUTH_FINISHED","unitWhiteLabelAppOnLoad","UNIT_WHITE_LABEL_APP_ON_LOAD","unitUnauthorizedToken","UNIT_UNAUTHORIZED_TOKEN","unitConnectedAccountCreated","UNIT_CONNECTED_ACCOUNT_CREATED","unitCounterpartyCreated","UNIT_COUNTERPARTY_CREATED","unitCounterpartyDeleted","UNIT_COUNTERPARTY_DELETED","unitMicroDepositConnectionCreated","UNIT_MICRO_DEPOSIT_CONNECTION_CREATED","unitMicroDepositConnectionRejected","UNIT_MICRO_DEPOSIT_CONNECTION_REJECTED","unitOpenPlaid","UNIT_OPEN_PLAID","DISPATCH_RENDERING_EVENT","DISPATCH_EVENT_TO_CONTINUE","UNIT_EVENT_TO_CONTINUE","DISPATCH_REQUEST_REFRESH","SET_ITEM_IN_WINDOW_UNIT_STORE","DISPATCH_ACTIVITY_FILTER_CHANGED_EVENT","DISPATCH_PLAID_RESPONSE","UNIT_PLAID_RESPONSE","DISPATCH_PLAID_EXIT","UNIT_PLAID_EXIT","DISPATCH_OPEN_PLAID","DISPATCH_OPEN_ACTIONS_MENU","DISPATCH_REQUEST_CARD_ACTION","DISPATCH_REQUEST_HIDE_SENSITIVE_DATA","DISPATCH_REQUEST_SHOW_SENSITIVE_DATA","DISPATCH_REQUEST_ACCOUNT_ACTION"],"sourceRoot":"../../../../src","sources":["scripts/html/bodyScript.ts"],"mappings":"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"}
1
+ {"version":3,"names":["PaymentMessage","CardMessage","PageMessage","UnitComponentsMessage","AccountMessage","ActivityMessage","PlaidMessage","PayeeManagementMessage","POST_MESSAGE_TO_SDK","POST_PAGE_HEIGHT","PAGE_HEIGHT","LISTENERS","isPageLoaded","PAGE_LOADED","requestRendering","UNIT_REQUEST_RENDERING","requestRefresh","UNIT_REQUEST_REFRESH","onLoad","UNIT_ON_LOAD","requestCloseFlow","UNIT_REQUEST_CLOSE_FLOW","requestOpenLink","UNIT_REQUEST_OPEN_LINK","unitRequestDownload","UNIT_REQUEST_DOWNLOAD","cardActivated","CARD_ACTIVATED","cardStatusChange","CARD_STATUS_CHANGED","unitRequestExternalSdk","UNIT_REQUEST_EXTERNAL_SDK","unitRequestLeftToSpendDetails","UNIT_REQUEST_LEFT_TO_SPEND_DETAILS","unitPaymentCreated","PAYMENT_CREATED","unitPaymentInitialStageBackButtonClicked","INITIAL_STAGE_BACK_BUTTON_CLICKED","unitPaymentFinalStageDoneButtonClicked","FINAL_STAGE_DONE_BUTTON_CLICKED","unitPlaidTokenCreated","UNIT_PLAID_TOKEN_CREATED","unitAccountChanged","UNIT_ACCOUNT_CHANGED","unitActivityFiltersChanged","UNIT_ACTIVITY_FILTERS_CHANGED","unitMultiFactorAuthFinished","UNIT_MULTI_FACTOR_AUTH_FINISHED","unitWhiteLabelAppOnLoad","UNIT_WHITE_LABEL_APP_ON_LOAD","unitUnauthorizedToken","UNIT_UNAUTHORIZED_TOKEN","unitConnectedAccountCreated","UNIT_CONNECTED_ACCOUNT_CREATED","unitCounterpartyCreated","UNIT_COUNTERPARTY_CREATED","unitCounterpartyDeleted","UNIT_COUNTERPARTY_DELETED","unitMicroDepositConnectionCreated","UNIT_MICRO_DEPOSIT_CONNECTION_CREATED","unitMicroDepositConnectionRejected","UNIT_MICRO_DEPOSIT_CONNECTION_REJECTED","unitOpenPlaid","UNIT_OPEN_PLAID","DISPATCH_RENDERING_EVENT","DISPATCH_EVENT_TO_CONTINUE","UNIT_EVENT_TO_CONTINUE","DISPATCH_CARD_STATUS_CHANGED","DISPATCH_REQUEST_REFRESH","SET_ITEM_IN_WINDOW_UNIT_STORE","DISPATCH_ACTIVITY_FILTER_CHANGED_EVENT","DISPATCH_PLAID_RESPONSE","UNIT_PLAID_RESPONSE","DISPATCH_PLAID_EXIT","UNIT_PLAID_EXIT","DISPATCH_OPEN_PLAID","DISPATCH_OPEN_ACTIONS_MENU","DISPATCH_REQUEST_CARD_ACTION","DISPATCH_REQUEST_HIDE_SENSITIVE_DATA","DISPATCH_REQUEST_SHOW_SENSITIVE_DATA","DISPATCH_REQUEST_ACCOUNT_ACTION"],"sourceRoot":"../../../../src","sources":["scripts/html/bodyScript.ts"],"mappings":"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","ignoreList":[]}
@@ -1 +1 @@
1
- {"version":3,"names":["Platform","getUrl","source","OS","fileName","relativeDirPath","assetDirRelativePath","getFontFace","fontFamily","fontWeight","sources","numOfSources","length","sourcesString","map","index","suffix","url","format","join","valueOf","getFontFacesString","fonts","fontFaces","Object","entries","forEach","familyName","familyFonts","fontData","push"],"sourceRoot":"../../../../src","sources":["scripts/html/fontFaces.ts"],"mappings":"AAAA,SAASA,QAAQ,QAAQ,cAAc;AAGvC,MAAMC,MAAM,GAAIC,MAAoB,IAAa;EAC/C,IAAIF,QAAQ,CAACG,EAAE,IAAI,KAAK,EAAE;IACxB,OAAQ,QAAOD,MAAM,CAACE,QAAS,IAAG;EACpC;;EAEA;EACA,IAAIC,eAAe,GAAGH,MAAM,CAACI,oBAAoB;EACjD,IAAIJ,MAAM,CAACI,oBAAoB,CAAC,CAAC,CAAC,CAAC,KAAK,GAAG,EAAE;IAC3CD,eAAe,GAAI,GAAEH,MAAM,CAACI,oBAAqB,GAAE;EACrD;EACA,IAAIJ,MAAM,CAACI,oBAAoB,CAAC,CAAC,CAAC,KAAK,GAAG,EAAE;IAC1CD,eAAe,GAAI,IAAGH,MAAM,CAACI,oBAAqB,EAAC;EACrD;EAEA,OAAQ,6BAA4BD,eAAgB,GAAEH,MAAM,CAACE,QAAS,IAAG;AAC3E,CAAC;AACD,MAAMG,WAAW,GAAGA,CAACC,UAAkB,EAAEC,UAAsB,EAAEC,OAAuB,KAAa;EACnG,MAAMC,YAAY,GAAGD,OAAO,CAACE,MAAM;EAEnC,MAAMC,aAAa,GAAGH,OAAO,CAC1BI,GAAG,CAAC,CAACZ,MAAM,EAAEa,KAAK,KAAK;IACtB,MAAMC,MAAM,GAAGD,KAAK,KAAKJ,YAAY,GAAG,CAAC,GAAG,GAAG,GAAG,GAAG;IACrD,MAAMM,GAAG,GAAGhB,MAAM,CAACC,MAAM,CAAC;IAC1B,MAAMgB,MAAM,GAAGhB,MAAM,EAAEgB,MAAM,GAAI,WAAUhB,MAAM,CAACgB,MAAO,IAAG,GAAG,EAAE;IACjE,OAAQ,GAAED,GAAI,IAAGC,MAAO,GAAEF,MAAO,EAAC;EACpC,CAAC,CAAC,CACDG,IAAI,CAAC,IAAI,CAAC;EAEb,OAAQ;AACV;AACA,sBAAsBX,UAAW;AACjC,aAAaK,aAAc;AAC3B,qBAAqBJ,UAAU,CAACW,OAAO,CAAC,CAAE;AAC1C;AACA,GAAG;AACH,CAAC;AAED,OAAO,MAAMC,kBAAkB,GAAIC,KAAe,IAAa;EAC7D,IAAI,CAACA,KAAK,EAAE,OAAO,EAAE;EAErB,MAAMC,SAAmB,GAAG,EAAE;;EAE9B;EACA;EACAC,MAAM,CAACC,OAAO,CAACH,KAAK,CAAC,CAACI,OAAO,CAAC,CAAC,CAACC,UAAU,EAAEC,WAAW,CAAC,KAAK;IAC3DA,WAAW,CAACF,OAAO,CAAEG,QAAoB,IAAK;MAC5CN,SAAS,CAACO,IAAI,CAACvB,WAAW,CAACoB,UAAU,EAAEE,QAAQ,CAACpB,UAAU,EAAEoB,QAAQ,CAACnB,OAAO,CAAC,CAAC;IAChF,CAAC,CAAC;EACJ,CAAC,CAAC;;EAEF;EACA,OAAOa,SAAS,CAACJ,IAAI,CAAC,IAAI,CAAC;AAC7B,CAAC"}
1
+ {"version":3,"names":["Platform","getUrl","source","OS","fileName","relativeDirPath","assetDirRelativePath","getFontFace","fontFamily","fontWeight","sources","numOfSources","length","sourcesString","map","index","suffix","url","format","join","valueOf","getFontFacesString","fonts","fontFaces","Object","entries","forEach","familyName","familyFonts","fontData","push"],"sourceRoot":"../../../../src","sources":["scripts/html/fontFaces.ts"],"mappings":"AAAA,SAASA,QAAQ,QAAQ,cAAc;AAGvC,MAAMC,MAAM,GAAIC,MAAoB,IAAa;EAC/C,IAAIF,QAAQ,CAACG,EAAE,IAAI,KAAK,EAAE;IACxB,OAAO,QAAQD,MAAM,CAACE,QAAQ,IAAI;EACpC;;EAEA;EACA,IAAIC,eAAe,GAAGH,MAAM,CAACI,oBAAoB;EACjD,IAAIJ,MAAM,CAACI,oBAAoB,CAAC,CAAC,CAAC,CAAC,KAAK,GAAG,EAAE;IAC3CD,eAAe,GAAG,GAAGH,MAAM,CAACI,oBAAoB,GAAG;EACrD;EACA,IAAIJ,MAAM,CAACI,oBAAoB,CAAC,CAAC,CAAC,KAAK,GAAG,EAAE;IAC1CD,eAAe,GAAG,IAAIH,MAAM,CAACI,oBAAoB,EAAE;EACrD;EAEA,OAAO,6BAA6BD,eAAe,GAAGH,MAAM,CAACE,QAAQ,IAAI;AAC3E,CAAC;AACD,MAAMG,WAAW,GAAGA,CAACC,UAAkB,EAAEC,UAAsB,EAAEC,OAAuB,KAAa;EACnG,MAAMC,YAAY,GAAGD,OAAO,CAACE,MAAM;EAEnC,MAAMC,aAAa,GAAGH,OAAO,CAC1BI,GAAG,CAAC,CAACZ,MAAM,EAAEa,KAAK,KAAK;IACtB,MAAMC,MAAM,GAAGD,KAAK,KAAKJ,YAAY,GAAG,CAAC,GAAG,GAAG,GAAG,GAAG;IACrD,MAAMM,GAAG,GAAGhB,MAAM,CAACC,MAAM,CAAC;IAC1B,MAAMgB,MAAM,GAAGhB,MAAM,EAAEgB,MAAM,GAAG,WAAWhB,MAAM,CAACgB,MAAM,IAAI,GAAG,EAAE;IACjE,OAAO,GAAGD,GAAG,IAAIC,MAAM,GAAGF,MAAM,EAAE;EACpC,CAAC,CAAC,CACDG,IAAI,CAAC,IAAI,CAAC;EAEb,OAAO;AACT;AACA,sBAAsBX,UAAU;AAChC,aAAaK,aAAa;AAC1B,qBAAqBJ,UAAU,CAACW,OAAO,CAAC,CAAC;AACzC;AACA,GAAG;AACH,CAAC;AAED,OAAO,MAAMC,kBAAkB,GAAIC,KAAe,IAAa;EAC7D,IAAI,CAACA,KAAK,EAAE,OAAO,EAAE;EAErB,MAAMC,SAAmB,GAAG,EAAE;;EAE9B;EACA;EACAC,MAAM,CAACC,OAAO,CAACH,KAAK,CAAC,CAACI,OAAO,CAAC,CAAC,CAACC,UAAU,EAAEC,WAAW,CAAC,KAAK;IAC3DA,WAAW,CAACF,OAAO,CAAEG,QAAoB,IAAK;MAC5CN,SAAS,CAACO,IAAI,CAACvB,WAAW,CAACoB,UAAU,EAAEE,QAAQ,CAACpB,UAAU,EAAEoB,QAAQ,CAACnB,OAAO,CAAC,CAAC;IAChF,CAAC,CAAC;EACJ,CAAC,CAAC;;EAEF;EACA,OAAOa,SAAS,CAACJ,IAAI,CAAC,IAAI,CAAC;AAC7B,CAAC","ignoreList":[]}
@@ -1 +1 @@
1
- {"version":3,"names":["createSlice","BottomSheetNativePlaceType","initialState","isBottomSheetActive","isComponentLoading","shouldShowBottomSheet","shouldEnableBottomSheetScroll","nativePlace","overFullScreen","componentHeight","BottomSheetSlice","name","reducers","setIsBottomSheetActive","state","action","payload","setIsComponentLoading","setShouldShowBottomSheet","setNativePlace","setComponentHeight","setShouldEnableBottomSheetScroll","setScrollState","scrollState","resetBottomSheetSlice","actions","selectConfiguration","bottomSheet","reducer"],"sourceRoot":"../../../src","sources":["slices/BottomSheetSlice.ts"],"mappings":"AAAA,SAASA,WAAW,QAAuB,kBAAkB;AAE7D,SAASC,0BAA0B,QAAqB,qCAAqC;AAY7F,MAAMC,YAA8B,GAAG;EACrCC,mBAAmB,EAAE,KAAK;EAC1BC,kBAAkB,EAAE,KAAK;EACzBC,qBAAqB,EAAE,KAAK;EAC5BC,6BAA6B,EAAE,IAAI;EACnCC,WAAW,EAAEN,0BAA0B,CAACO,cAAc;EACtDC,eAAe,EAAE;AACnB,CAAC;AAED,MAAMC,gBAAgB,GAAGV,WAAW,CAAC;EACnCW,IAAI,EAAE,aAAa;EACnBT,YAAY,EAAEA,YAAY;EAC1BU,QAAQ,EAAE;IACRC,sBAAsBA,CAACC,KAAK,EAAEC,MAA8B,EAAE;MAC5DD,KAAK,CAACX,mBAAmB,GAAGY,MAAM,CAACC,OAAO;IAC5C,CAAC;IACDC,qBAAqBA,CAACH,KAAK,EAAEC,MAA8B,EAAE;MAC3DD,KAAK,CAACV,kBAAkB,GAAGW,MAAM,CAACC,OAAO;IAC3C,CAAC;IACDE,wBAAwBA,CAACJ,KAAK,EAAEC,MAA8B,EAAE;MAC9DD,KAAK,CAACT,qBAAqB,GAAGU,MAAM,CAACC,OAAO;IAC9C,CAAC;IAEDG,cAAcA,CAACL,KAAK,EAAEC,MAAiD,EAAE;MACvED,KAAK,CAACP,WAAW,GAAGQ,MAAM,CAACC,OAAO;IACpC,CAAC;IACDI,kBAAkBA,CAACN,KAAK,EAAEC,MAA6B,EAAE;MACvDD,KAAK,CAACL,eAAe,GAAGM,MAAM,CAACC,OAAO;IACxC,CAAC;IACDK,gCAAgCA,CAACP,KAAK,EAAEC,MAA8B,EAAE;MACtED,KAAK,CAACR,6BAA6B,GAAGS,MAAM,CAACC,OAAO;IACtD,CAAC;IAEDM,cAAcA,CAACR,KAAK,EAAEC,MAAkC,EAAE;MACxDD,KAAK,CAACS,WAAW,GAAGR,MAAM,CAACC,OAAO;IACpC,CAAC;IAEDQ,qBAAqBA,CAACV,KAAK,EAAE;MAC3B;MACAA,KAAK,CAACV,kBAAkB,GAAGF,YAAY,CAACE,kBAAkB;MAC1DU,KAAK,CAACT,qBAAqB,GAAGH,YAAY,CAACG,qBAAqB;MAChES,KAAK,CAACP,WAAW,GAAGL,YAAY,CAACK,WAAW;MAC5CO,KAAK,CAACL,eAAe,GAAGP,YAAY,CAACO,eAAe;MACpDK,KAAK,CAACR,6BAA6B,GAAGJ,YAAY,CAACI,6BAA6B;MAChFQ,KAAK,CAACS,WAAW,GAAGrB,YAAY,CAACqB,WAAW;IAC9C;EACF;AAEF,CAAC,CAAC;AAEF,OAAO,MAAM;EACXV,sBAAsB;EAAEI,qBAAqB;EAC7CC,wBAAwB;EAAEC,cAAc;EACxCC,kBAAkB;EAClBC,gCAAgC;EAAEC,cAAc;EAAEE;AACpD,CAAC,GAAGd,gBAAgB,CAACe,OAAO;AAC5B,OAAO,MAAMC,mBAAmB,GAAIZ,KAAgB,IAAKA,KAAK,CAACa,WAAW;AAC1E,eAAejB,gBAAgB,CAACkB,OAAO"}
1
+ {"version":3,"names":["createSlice","BottomSheetNativePlaceType","initialState","isBottomSheetActive","isComponentLoading","shouldShowBottomSheet","shouldEnableBottomSheetScroll","nativePlace","overFullScreen","componentHeight","BottomSheetSlice","name","reducers","setIsBottomSheetActive","state","action","payload","setIsComponentLoading","setShouldShowBottomSheet","setNativePlace","setComponentHeight","setShouldEnableBottomSheetScroll","setScrollState","scrollState","resetBottomSheetSlice","actions","selectConfiguration","bottomSheet","reducer"],"sourceRoot":"../../../src","sources":["slices/BottomSheetSlice.ts"],"mappings":"AAAA,SAASA,WAAW,QAAuB,kBAAkB;AAE7D,SAASC,0BAA0B,QAAqB,qCAAqC;AAY7F,MAAMC,YAA8B,GAAG;EACrCC,mBAAmB,EAAE,KAAK;EAC1BC,kBAAkB,EAAE,KAAK;EACzBC,qBAAqB,EAAE,KAAK;EAC5BC,6BAA6B,EAAE,IAAI;EACnCC,WAAW,EAAEN,0BAA0B,CAACO,cAAc;EACtDC,eAAe,EAAE;AACnB,CAAC;AAED,MAAMC,gBAAgB,GAAGV,WAAW,CAAC;EACnCW,IAAI,EAAE,aAAa;EACnBT,YAAY,EAAEA,YAAY;EAC1BU,QAAQ,EAAE;IACRC,sBAAsBA,CAACC,KAAK,EAAEC,MAA8B,EAAE;MAC5DD,KAAK,CAACX,mBAAmB,GAAGY,MAAM,CAACC,OAAO;IAC5C,CAAC;IACDC,qBAAqBA,CAACH,KAAK,EAAEC,MAA8B,EAAE;MAC3DD,KAAK,CAACV,kBAAkB,GAAGW,MAAM,CAACC,OAAO;IAC3C,CAAC;IACDE,wBAAwBA,CAACJ,KAAK,EAAEC,MAA8B,EAAE;MAC9DD,KAAK,CAACT,qBAAqB,GAAGU,MAAM,CAACC,OAAO;IAC9C,CAAC;IAEDG,cAAcA,CAACL,KAAK,EAAEC,MAAiD,EAAE;MACvED,KAAK,CAACP,WAAW,GAAGQ,MAAM,CAACC,OAAO;IACpC,CAAC;IACDI,kBAAkBA,CAACN,KAAK,EAAEC,MAA6B,EAAE;MACvDD,KAAK,CAACL,eAAe,GAAGM,MAAM,CAACC,OAAO;IACxC,CAAC;IACDK,gCAAgCA,CAACP,KAAK,EAAEC,MAA8B,EAAE;MACtED,KAAK,CAACR,6BAA6B,GAAGS,MAAM,CAACC,OAAO;IACtD,CAAC;IAEDM,cAAcA,CAACR,KAAK,EAAEC,MAAkC,EAAE;MACxDD,KAAK,CAACS,WAAW,GAAGR,MAAM,CAACC,OAAO;IACpC,CAAC;IAEDQ,qBAAqBA,CAACV,KAAK,EAAE;MAC3B;MACAA,KAAK,CAACV,kBAAkB,GAAGF,YAAY,CAACE,kBAAkB;MAC1DU,KAAK,CAACT,qBAAqB,GAAGH,YAAY,CAACG,qBAAqB;MAChES,KAAK,CAACP,WAAW,GAAGL,YAAY,CAACK,WAAW;MAC5CO,KAAK,CAACL,eAAe,GAAGP,YAAY,CAACO,eAAe;MACpDK,KAAK,CAACR,6BAA6B,GAAGJ,YAAY,CAACI,6BAA6B;MAChFQ,KAAK,CAACS,WAAW,GAAGrB,YAAY,CAACqB,WAAW;IAC9C;EACF;AAEF,CAAC,CAAC;AAEF,OAAO,MAAM;EACXV,sBAAsB;EAAEI,qBAAqB;EAC7CC,wBAAwB;EAAEC,cAAc;EACxCC,kBAAkB;EAClBC,gCAAgC;EAAEC,cAAc;EAAEE;AACpD,CAAC,GAAGd,gBAAgB,CAACe,OAAO;AAC5B,OAAO,MAAMC,mBAAmB,GAAIZ,KAAgB,IAAKA,KAAK,CAACa,WAAW;AAC1E,eAAejB,gBAAgB,CAACkB,OAAO","ignoreList":[]}
@@ -12,13 +12,17 @@ const ConfigurationSlice = createSlice({
12
12
  },
13
13
  setLanguage(state, action) {
14
14
  state.language = action.payload;
15
+ },
16
+ setCustomerToken(state, action) {
17
+ state.customerToken = action.payload;
15
18
  }
16
19
  }
17
20
  });
18
21
  export const {
19
22
  setUnitScript,
20
23
  setLanguage,
21
- setTheme
24
+ setTheme,
25
+ setCustomerToken
22
26
  } = ConfigurationSlice.actions;
23
27
  export const selectConfiguration = state => state.configuration;
24
28
  export default ConfigurationSlice.reducer;
@@ -1 +1 @@
1
- {"version":3,"names":["createSlice","initialState","ConfigurationSlice","name","reducers","setUnitScript","state","action","unitScript","payload","setTheme","theme","setLanguage","language","actions","selectConfiguration","configuration","reducer"],"sourceRoot":"../../../src","sources":["slices/ConfigurationSlice.ts"],"mappings":"AAAA,SAASA,WAAW,QAAuB,kBAAkB;AAS7D,MAAMC,YAAgC,GAAG,CAAC,CAAC;AAE3C,MAAMC,kBAAkB,GAAGF,WAAW,CAAC;EACrCG,IAAI,EAAE,eAAe;EACrBF,YAAY,EAAEA,YAAY;EAC1BG,QAAQ,EAAE;IACRC,aAAaA,CAACC,KAAK,EAAEC,MAAyC,EAAE;MAC9DD,KAAK,CAACE,UAAU,GAAGD,MAAM,CAACE,OAAO;IACnC,CAAC;IACDC,QAAQA,CAACJ,KAAK,EAAEC,MAAyC,EAAE;MACzDD,KAAK,CAACK,KAAK,GAAGJ,MAAM,CAACE,OAAO;IAC9B,CAAC;IACDG,WAAWA,CAACN,KAAK,EAAEC,MAAyC,EAAE;MAC5DD,KAAK,CAACO,QAAQ,GAAGN,MAAM,CAACE,OAAO;IACjC;EACF;AACF,CAAC,CAAC;AAEF,OAAO,MAAM;EAAEJ,aAAa;EAAEO,WAAW;EAAEF;AAAS,CAAC,GAAGR,kBAAkB,CAACY,OAAO;AAClF,OAAO,MAAMC,mBAAmB,GAAIT,KAAgB,IAAKA,KAAK,CAACU,aAAa;AAC5E,eAAed,kBAAkB,CAACe,OAAO"}
1
+ {"version":3,"names":["createSlice","initialState","ConfigurationSlice","name","reducers","setUnitScript","state","action","unitScript","payload","setTheme","theme","setLanguage","language","setCustomerToken","customerToken","actions","selectConfiguration","configuration","reducer"],"sourceRoot":"../../../src","sources":["slices/ConfigurationSlice.ts"],"mappings":"AAAA,SAASA,WAAW,QAAuB,kBAAkB;AAU7D,MAAMC,YAAgC,GAAG,CAAC,CAAC;AAE3C,MAAMC,kBAAkB,GAAGF,WAAW,CAAC;EACrCG,IAAI,EAAE,eAAe;EACrBF,YAAY,EAAEA,YAAY;EAC1BG,QAAQ,EAAE;IACRC,aAAaA,CAACC,KAAK,EAAEC,MAAyC,EAAE;MAC9DD,KAAK,CAACE,UAAU,GAAGD,MAAM,CAACE,OAAO;IACnC,CAAC;IACDC,QAAQA,CAACJ,KAAK,EAAEC,MAAyC,EAAE;MACzDD,KAAK,CAACK,KAAK,GAAGJ,MAAM,CAACE,OAAO;IAC9B,CAAC;IACDG,WAAWA,CAACN,KAAK,EAAEC,MAAyC,EAAE;MAC5DD,KAAK,CAACO,QAAQ,GAAGN,MAAM,CAACE,OAAO;IACjC,CAAC;IACDK,gBAAgBA,CAACR,KAAK,EAAEC,MAAyC,EAAE;MACjED,KAAK,CAACS,aAAa,GAAGR,MAAM,CAACE,OAAO;IACtC;EACF;AACF,CAAC,CAAC;AAEF,OAAO,MAAM;EAAEJ,aAAa;EAAEO,WAAW;EAAEF,QAAQ;EAAEI;AAAiB,CAAC,GAAGZ,kBAAkB,CAACc,OAAO;AACpG,OAAO,MAAMC,mBAAmB,GAAIX,KAAgB,IAAKA,KAAK,CAACY,aAAa;AAC5E,eAAehB,kBAAkB,CAACiB,OAAO","ignoreList":[]}
@@ -1 +1 @@
1
- {"version":3,"names":["createSlice","initialState","SharedEventsSlice","name","reducers","setEvent","state","action","event","payload","actions","selectSharedEvents","sharedEvents","reducer"],"sourceRoot":"../../../src","sources":["slices/SharedEventsSlice.ts"],"mappings":"AAAA;;AAEA,SAASA,WAAW,QAAuB,kBAAkB;;AA8E7D;;AAmBA,MAAMC,YAA+B,GAAG,CAAC,CAAC;AAE1C,MAAMC,iBAAiB,GAAGF,WAAW,CAAC;EACpCG,IAAI,EAAE,cAAc;EACpBF,YAAY,EAAEA,YAAY;EAC1BG,QAAQ,EAAE;IACRC,QAAQA,CAACC,KAAK,EAAEC,MAAkC,EAAE;MAClDD,KAAK,CAACE,KAAK,GAAGD,MAAM,CAACE,OAAO;IAC9B;EACF;AAEF,CAAC,CAAC;AAEF,OAAO,MAAM;EAAEJ;AAAS,CAAC,GAAGH,iBAAiB,CAACQ,OAAO;AACrD,OAAO,MAAMC,kBAAkB,GAAIL,KAAgB,IAAKA,KAAK,CAACM,YAAY;AAC1E,eAAeV,iBAAiB,CAACW,OAAO"}
1
+ {"version":3,"names":["createSlice","initialState","SharedEventsSlice","name","reducers","setEvent","state","action","event","payload","actions","selectSharedEvents","sharedEvents","reducer"],"sourceRoot":"../../../src","sources":["slices/SharedEventsSlice.ts"],"mappings":"AAAA;;AAEA,SAASA,WAAW,QAAuB,kBAAkB;;AA+E7D;;AAmBA,MAAMC,YAA+B,GAAG,CAAC,CAAC;AAE1C,MAAMC,iBAAiB,GAAGF,WAAW,CAAC;EACpCG,IAAI,EAAE,cAAc;EACpBF,YAAY,EAAEA,YAAY;EAC1BG,QAAQ,EAAE;IACRC,QAAQA,CAACC,KAAK,EAAEC,MAAkC,EAAE;MAClDD,KAAK,CAACE,KAAK,GAAGD,MAAM,CAACE,OAAO;IAC9B;EACF;AAEF,CAAC,CAAC;AAEF,OAAO,MAAM;EAAEJ;AAAS,CAAC,GAAGH,iBAAiB,CAACQ,OAAO;AACrD,OAAO,MAAMC,kBAAkB,GAAIL,KAAgB,IAAKA,KAAK,CAACM,YAAY;AAC1E,eAAeV,iBAAiB,CAACW,OAAO","ignoreList":[]}
@@ -1 +1 @@
1
- {"version":3,"names":["createSlice","initialState","signedNonce","pushProvisioningSlice","name","reducers","setSignedNonce","state","action","payload","actions","selectWallet","wallet","reducer"],"sourceRoot":"../../../src","sources":["slices/pushProvisioningSlice.ts"],"mappings":"AAAA,SAASA,WAAW,QAAuB,kBAAkB;AAO7D,MAAMC,YAAmC,GAAG;EAC1CC,WAAW,EAAE;AACf,CAAC;AAED,MAAMC,qBAAqB,GAAGH,WAAW,CAAC;EACxCI,IAAI,EAAE,QAAQ;EACdH,YAAY,EAAEA,YAAY;EAC1BI,QAAQ,EAAE;IACRC,cAAcA,CAACC,KAAK,EAAEC,MAAoC,EAAE;MAC1DD,KAAK,CAACL,WAAW,GAAGM,MAAM,CAACC,OAAO;IACpC;EACF;AACF,CAAC,CAAC;AAEF,OAAO,MAAM;EAAEH;AAAe,CAAC,GAAGH,qBAAqB,CAACO,OAAO;AAC/D,OAAO,MAAMC,YAAY,GAAIJ,KAAgB,IAAKA,KAAK,CAACK,MAAM;AAC9D,eAAeT,qBAAqB,CAACU,OAAO"}
1
+ {"version":3,"names":["createSlice","initialState","signedNonce","pushProvisioningSlice","name","reducers","setSignedNonce","state","action","payload","actions","selectWallet","wallet","reducer"],"sourceRoot":"../../../src","sources":["slices/pushProvisioningSlice.ts"],"mappings":"AAAA,SAASA,WAAW,QAAuB,kBAAkB;AAO7D,MAAMC,YAAmC,GAAG;EAC1CC,WAAW,EAAE;AACf,CAAC;AAED,MAAMC,qBAAqB,GAAGH,WAAW,CAAC;EACxCI,IAAI,EAAE,QAAQ;EACdH,YAAY,EAAEA,YAAY;EAC1BI,QAAQ,EAAE;IACRC,cAAcA,CAACC,KAAK,EAAEC,MAAoC,EAAE;MAC1DD,KAAK,CAACL,WAAW,GAAGM,MAAM,CAACC,OAAO;IACpC;EACF;AACF,CAAC,CAAC;AAEF,OAAO,MAAM;EAAEH;AAAe,CAAC,GAAGH,qBAAqB,CAACO,OAAO;AAC/D,OAAO,MAAMC,YAAY,GAAIJ,KAAgB,IAAKA,KAAK,CAACK,MAAM;AAC9D,eAAeT,qBAAqB,CAACU,OAAO","ignoreList":[]}
@@ -1 +1 @@
1
- {"version":3,"names":[],"sourceRoot":"../../../src","sources":["store/index.ts"],"mappings":"AAAA,cAAc,SAAS"}
1
+ {"version":3,"names":[],"sourceRoot":"../../../src","sources":["store/index.ts"],"mappings":"AAAA,cAAc,SAAS","ignoreList":[]}
@@ -1 +1 @@
1
- {"version":3,"names":["configureStore","wallet","configuration","sharedEvents","bottomSheet","store","reducer"],"sourceRoot":"../../../src","sources":["store/store.ts"],"mappings":"AAAA,SAASA,cAAc,QAAQ,kBAAkB;AACjD,OAAOC,MAAM,MAAM,iCAAiC;AACpD,OAAOC,aAAa,MAAM,8BAA8B;AACxD,OAAOC,YAAY,MAAM,6BAA6B;AACtD,OAAOC,WAAW,MAAM,4BAA4B;AAEpD,OAAO,MAAMC,KAAK,GAAGL,cAAc,CAAC;EAClCM,OAAO,EAAE;IACPL,MAAM;IACNC,aAAa;IACbC,YAAY;IACZC;EACF;AACF,CAAC,CAAC"}
1
+ {"version":3,"names":["configureStore","wallet","configuration","sharedEvents","bottomSheet","store","reducer"],"sourceRoot":"../../../src","sources":["store/store.ts"],"mappings":"AAAA,SAASA,cAAc,QAAQ,kBAAkB;AACjD,OAAOC,MAAM,MAAM,iCAAiC;AACpD,OAAOC,aAAa,MAAM,8BAA8B;AACxD,OAAOC,YAAY,MAAM,6BAA6B;AACtD,OAAOC,WAAW,MAAM,4BAA4B;AAEpD,OAAO,MAAMC,KAAK,GAAGL,cAAc,CAAC;EAClCM,OAAO,EAAE;IACPL,MAAM;IACNC,aAAa;IACbC,YAAY;IACZC;EACF;AACF,CAAC,CAAC","ignoreList":[]}
@@ -1,5 +1,5 @@
1
1
  import { FontWeight } from '../types/shared';
2
- import { UnitSDK } from '../unitSdkManager/UnitSdkManager';
2
+ import { UnitComponentsSDK } from '../unitComponentsSdkManager/UnitComponentsSdkManager';
3
3
  const getFontWeightName = (familyFonts, fontWeight) => {
4
4
  /**
5
5
  * Given family variants and the required weight
@@ -50,7 +50,7 @@ export const getFontName = (fontFamily, fontWeight) => {
50
50
  * Then, return a possible font.
51
51
  */
52
52
 
53
- const fontsInApp = UnitSDK.getFonts();
53
+ const fontsInApp = UnitComponentsSDK.getFonts();
54
54
  if (!fontsInApp) {
55
55
  throw new Error('Fonts are not found in the app');
56
56
  }
@@ -1 +1 @@
1
- {"version":3,"names":["FontWeight","UnitSDK","getFontWeightName","familyFonts","fontWeight","fontWeightNumber","Number","selectedFontWeight","Regular","valueOf","minDistance","forEach","fontData","currDistance","Math","abs","Thin","ExtraLight","Light","Medium","SemiBold","Bold","ExtraBold","Black","getFontName","fontFamily","fontsInApp","getFonts","Error","fontWeightName"],"sourceRoot":"../../../src","sources":["styles/fonts.ts"],"mappings":"AAAA,SAASA,UAAU,QAAoB,iBAAiB;AACxD,SAASC,OAAO,QAAQ,kCAAkC;AAE1D,MAAMC,iBAAiB,GAAGA,CAACC,WAAyB,EAAEC,UAA4B,KAAK;EACrF;AACF;AACA;AACA;EACE,IAAI,CAACA,UAAU,IAAIA,UAAU,KAAK,QAAQ,EAAE,OAAO,SAAS;EAE5D,IAAIA,UAAU,KAAK,MAAM,EAAE,OAAO,MAAM;EAExC,MAAMC,gBAAgB,GAAGC,MAAM,CAACF,UAAU,CAAC;;EAE3C;EACA,IAAIG,kBAAkB,GAAGP,UAAU,CAACQ,OAAO,CAACC,OAAO,CAAC,CAAC;EACrD,IAAIC,WAAW,GAAG,IAAI;EAEtBP,WAAW,CAACQ,OAAO,CAAEC,QAAoB,IAAK;IAC5C,MAAMC,YAAY,GAAGC,IAAI,CAACC,GAAG,CAACH,QAAQ,CAACR,UAAU,GAAGC,gBAAgB,CAAC;IACrE,IAAIQ,YAAY,GAAGH,WAAW,EAAE;MAC9BA,WAAW,GAAGG,YAAY;MAC1BN,kBAAkB,GAAGK,QAAQ,CAACR,UAAU,CAACK,OAAO,CAAC,CAAC;IACpD;EACF,CAAC,CAAC;;EAEF;EACA,QAAQF,kBAAkB;IACxB,KAAKP,UAAU,CAACgB,IAAI;MAClB,OAAO,MAAM;IACf,KAAMhB,UAAU,CAACiB,UAAU;MACzB,OAAO,YAAY;IACrB,KAAKjB,UAAU,CAACkB,KAAK;MACnB,OAAO,OAAO;IAChB,KAAKlB,UAAU,CAACQ,OAAO;MACrB,OAAO,SAAS;IAClB,KAAKR,UAAU,CAACmB,MAAM;MACpB,OAAO,QAAQ;IACjB,KAAKnB,UAAU,CAACoB,QAAQ;MACtB,OAAO,UAAU;IACnB,KAAKpB,UAAU,CAACqB,IAAI;MAClB,OAAO,MAAM;IACf,KAAKrB,UAAU,CAACsB,SAAS;MACvB,OAAO,WAAW;IACpB,KAAKtB,UAAU,CAACuB,KAAK;MACnB,OAAO,OAAO;IAChB;MACE,OAAO,SAAS;EACpB;AACF,CAAC;AAED,OAAO,MAAMC,WAAW,GAAGA,CAACC,UAAkB,EAAErB,UAA2B,KAAa;EACtF;AACF;AACA;AACA;;EAEE,MAAMsB,UAAU,GAAGzB,OAAO,CAAC0B,QAAQ,CAAC,CAAC;EACrC,IAAI,CAACD,UAAU,EAAE;IACf,MAAM,IAAIE,KAAK,CAAC,gCAAgC,CAAC;EACnD;EAEA,MAAMzB,WAAW,GAAGuB,UAAU,CAACD,UAAU,CAAC;EAC1C,IAAI,CAACtB,WAAW,EAAE;IAChB,MAAM,IAAIyB,KAAK,CAAE,eAAcH,UAAW,+BAA8B,CAAC;EAC3E;EAEA,MAAMI,cAAc,GAAG3B,iBAAiB,CAACC,WAAW,EAAEC,UAAU,CAAC;EACjE,OAAQ,GAAEqB,UAAW,IAAGI,cAAe,EAAC;AAC1C,CAAC"}
1
+ {"version":3,"names":["FontWeight","UnitComponentsSDK","getFontWeightName","familyFonts","fontWeight","fontWeightNumber","Number","selectedFontWeight","Regular","valueOf","minDistance","forEach","fontData","currDistance","Math","abs","Thin","ExtraLight","Light","Medium","SemiBold","Bold","ExtraBold","Black","getFontName","fontFamily","fontsInApp","getFonts","Error","fontWeightName"],"sourceRoot":"../../../src","sources":["styles/fonts.ts"],"mappings":"AAAA,SAASA,UAAU,QAAoB,iBAAiB;AACxD,SAASC,iBAAiB,QAAQ,sDAAsD;AAExF,MAAMC,iBAAiB,GAAGA,CAACC,WAAyB,EAAEC,UAA4B,KAAK;EACrF;AACF;AACA;AACA;EACE,IAAI,CAACA,UAAU,IAAIA,UAAU,KAAK,QAAQ,EAAE,OAAO,SAAS;EAE5D,IAAIA,UAAU,KAAK,MAAM,EAAE,OAAO,MAAM;EAExC,MAAMC,gBAAgB,GAAGC,MAAM,CAACF,UAAU,CAAC;;EAE3C;EACA,IAAIG,kBAAkB,GAAGP,UAAU,CAACQ,OAAO,CAACC,OAAO,CAAC,CAAC;EACrD,IAAIC,WAAW,GAAG,IAAI;EAEtBP,WAAW,CAACQ,OAAO,CAAEC,QAAoB,IAAK;IAC5C,MAAMC,YAAY,GAAGC,IAAI,CAACC,GAAG,CAACH,QAAQ,CAACR,UAAU,GAAGC,gBAAgB,CAAC;IACrE,IAAIQ,YAAY,GAAGH,WAAW,EAAE;MAC9BA,WAAW,GAAGG,YAAY;MAC1BN,kBAAkB,GAAGK,QAAQ,CAACR,UAAU,CAACK,OAAO,CAAC,CAAC;IACpD;EACF,CAAC,CAAC;;EAEF;EACA,QAAQF,kBAAkB;IACxB,KAAKP,UAAU,CAACgB,IAAI;MAClB,OAAO,MAAM;IACf,KAAKhB,UAAU,CAACiB,UAAU;MACxB,OAAO,YAAY;IACrB,KAAKjB,UAAU,CAACkB,KAAK;MACnB,OAAO,OAAO;IAChB,KAAKlB,UAAU,CAACQ,OAAO;MACrB,OAAO,SAAS;IAClB,KAAKR,UAAU,CAACmB,MAAM;MACpB,OAAO,QAAQ;IACjB,KAAKnB,UAAU,CAACoB,QAAQ;MACtB,OAAO,UAAU;IACnB,KAAKpB,UAAU,CAACqB,IAAI;MAClB,OAAO,MAAM;IACf,KAAKrB,UAAU,CAACsB,SAAS;MACvB,OAAO,WAAW;IACpB,KAAKtB,UAAU,CAACuB,KAAK;MACnB,OAAO,OAAO;IAChB;MACE,OAAO,SAAS;EACpB;AACF,CAAC;AAED,OAAO,MAAMC,WAAW,GAAGA,CAACC,UAAkB,EAAErB,UAA2B,KAAa;EACtF;AACF;AACA;AACA;;EAEE,MAAMsB,UAAU,GAAGzB,iBAAiB,CAAC0B,QAAQ,CAAC,CAAC;EAC/C,IAAI,CAACD,UAAU,EAAE;IACf,MAAM,IAAIE,KAAK,CAAC,gCAAgC,CAAC;EACnD;EAEA,MAAMzB,WAAW,GAAGuB,UAAU,CAACD,UAAU,CAAC;EAC1C,IAAI,CAACtB,WAAW,EAAE;IAChB,MAAM,IAAIyB,KAAK,CAAC,eAAeH,UAAU,+BAA+B,CAAC;EAC3E;EAEA,MAAMI,cAAc,GAAG3B,iBAAiB,CAACC,WAAW,EAAEC,UAAU,CAAC;EACjE,OAAO,GAAGqB,UAAU,IAAII,cAAc,EAAE;AAC1C,CAAC","ignoreList":[]}
@@ -1 +1 @@
1
- {"version":3,"names":["VARIABLES","COLORS","WHITE","BLACK","BLUE","GREY","SILVER_FLAKE","PINK","PURPLE","GREEN"],"sourceRoot":"../../../src","sources":["styles/variables.ts"],"mappings":"AAAA,OAAO,MAAMA,SAAS,GAAG;EACvBC,MAAM,EAAE;IACNC,KAAK,EAAE,SAAS;IAChBC,KAAK,EAAE,SAAS;IAChBC,IAAI,EAAE,SAAS;IACfC,IAAI,EAAE,SAAS;IACfC,YAAY,EAAE,SAAS;IACvBC,IAAI,EAAE,SAAS;IACfC,MAAM,EAAE,SAAS;IACjBC,KAAK,EAAE;EACT;AACF,CAAC"}
1
+ {"version":3,"names":["VARIABLES","COLORS","WHITE","BLACK","BLUE","GREY","SILVER_FLAKE","PINK","PURPLE","GREEN"],"sourceRoot":"../../../src","sources":["styles/variables.ts"],"mappings":"AAAA,OAAO,MAAMA,SAAS,GAAG;EACvBC,MAAM,EAAE;IACNC,KAAK,EAAE,SAAS;IAChBC,KAAK,EAAE,SAAS;IAChBC,IAAI,EAAE,SAAS;IACfC,IAAI,EAAE,SAAS;IACfC,YAAY,EAAE,SAAS;IACvBC,IAAI,EAAE,SAAS;IACfC,MAAM,EAAE,SAAS;IACjBC,KAAK,EAAE;EACT;AACF,CAAC","ignoreList":[]}
@@ -6,8 +6,22 @@ export let BottomSheetNativePlaceType = /*#__PURE__*/function (BottomSheetNative
6
6
  return BottomSheetNativePlaceType;
7
7
  }({});
8
8
  export let ScrollState = /*#__PURE__*/function (ScrollState) {
9
+ /*
10
+ Web View ScrollState -
11
+ - Initialization:
12
+ 'onTop': for a scrollable webView.
13
+ (onTop means that the webview is onTop of the BottomSheet and we need to recognize the scroll direction).
14
+ Then, it recognize the scroll direction and update the scroll state as needed.
15
+ -'unScrollable': for an unscrollable webView
16
+ */
9
17
  ScrollState["onTop"] = "onTop";
10
18
  ScrollState["unScrollable"] = "unScrollable";
19
+ /*
20
+ These are only for maintain the bottom sheet scrollState (not an initialize scroll state).
21
+ It relates to the current scroll state.
22
+ onlyWebView means that now the scroll is on webview (only).
23
+ onlyBottomSheet means that now the scroll is on bottomSheet (only).
24
+ */
11
25
  ScrollState["onlyWebView"] = "webViewScroll";
12
26
  ScrollState["onlyBottomSheet"] = "onlyBottomSheet";
13
27
  return ScrollState;
@@ -23,6 +37,7 @@ export let BottomSheetNativeComponentType = /*#__PURE__*/function (BottomSheetNa
23
37
  BottomSheetNativeComponentType["ACHDebitComponent"] = "UNACHDebitComponent";
24
38
  BottomSheetNativeComponentType["CheckDepositComponent"] = "UNCheckDepositComponent";
25
39
  BottomSheetNativeComponentType["BookPaymentComponent"] = "UNBookPaymentComponent";
40
+ BottomSheetNativeComponentType["WirePaymentComponent"] = "UNWirePaymentComponent";
26
41
  return BottomSheetNativeComponentType;
27
42
  }({});
28
43
  //# sourceMappingURL=bottomSheet.types.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["BottomSheetNativePlaceType","ScrollState","BottomSheetRenderingType","BottomSheetNativeComponentType"],"sourceRoot":"../../../../src","sources":["types/internal/bottomSheet.types.ts"],"mappings":"AAUA,WAAYA,0BAA0B,0BAA1BA,0BAA0B;EAA1BA,0BAA0B;EAA1BA,0BAA0B;EAA1BA,0BAA0B;EAA1BA,0BAA0B;EAAA,OAA1BA,0BAA0B;AAAA;AAOtC,WAAYC,WAAW,0BAAXA,WAAW;EAAXA,WAAW;EAAXA,WAAW;EAAXA,WAAW;EAAXA,WAAW;EAAA,OAAXA,WAAW;AAAA;AAuBvB,WAAYC,wBAAwB,0BAAxBA,wBAAwB;EAAxBA,wBAAwB,CAAxBA,wBAAwB;EAAxBA,wBAAwB,CAAxBA,wBAAwB;EAAA,OAAxBA,wBAAwB;AAAA;AAKpC,WAAYC,8BAA8B,0BAA9BA,8BAA8B;EAA9BA,8BAA8B;EAA9BA,8BAA8B;EAA9BA,8BAA8B;EAA9BA,8BAA8B;EAA9BA,8BAA8B;EAAA,OAA9BA,8BAA8B;AAAA"}
1
+ {"version":3,"names":["BottomSheetNativePlaceType","ScrollState","BottomSheetRenderingType","BottomSheetNativeComponentType"],"sourceRoot":"../../../../src","sources":["types/internal/bottomSheet.types.ts"],"mappings":"AAWA,WAAYA,0BAA0B,0BAA1BA,0BAA0B;EAA1BA,0BAA0B;EAA1BA,0BAA0B;EAA1BA,0BAA0B;EAA1BA,0BAA0B;EAAA,OAA1BA,0BAA0B;AAAA;AAOtC,WAAYC,WAAW,0BAAXA,WAAW;EACrB;AACF;AACA;AACA;AACA;AACA;AACA;AACA;EARYA,WAAW;EAAXA,WAAW;EAarB;AACF;AACA;AACA;AACA;AACA;EAlBYA,WAAW;EAAXA,WAAW;EAAA,OAAXA,WAAW;AAAA;AAuBvB,WAAYC,wBAAwB,0BAAxBA,wBAAwB;EAAxBA,wBAAwB,CAAxBA,wBAAwB;EAAxBA,wBAAwB,CAAxBA,wBAAwB;EAAA,OAAxBA,wBAAwB;AAAA;AAKpC,WAAYC,8BAA8B,0BAA9BA,8BAA8B;EAA9BA,8BAA8B;EAA9BA,8BAA8B;EAA9BA,8BAA8B;EAA9BA,8BAA8B;EAA9BA,8BAA8B;EAA9BA,8BAA8B;EAAA,OAA9BA,8BAA8B;AAAA","ignoreList":[]}
@@ -1,12 +1,12 @@
1
1
  /* eslint-disable @typescript-eslint/no-explicit-any */
2
2
 
3
- const isUNErrorData = obj => {
3
+ const isUNComponentsErrorData = obj => {
4
4
  return typeof obj === 'object' && 'title' in obj;
5
5
  };
6
- export const isUNErrorDataArray = arr => {
7
- return Array.isArray(arr) && arr.every(item => isUNErrorData(item));
6
+ export const isUNComponentsErrorDataArray = arr => {
7
+ return Array.isArray(arr) && arr.every(item => isUNComponentsErrorData(item));
8
8
  };
9
- export const isUNError = error => {
10
- return 'errors' in error && isUNErrorDataArray(error.errors);
9
+ export const isUNComponentsError = error => {
10
+ return 'errors' in error && isUNComponentsErrorDataArray(error.errors);
11
11
  };
12
12
  //# sourceMappingURL=errorHelpers.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["isUNErrorData","obj","isUNErrorDataArray","arr","Array","isArray","every","item","isUNError","error","errors"],"sourceRoot":"../../../../src","sources":["types/internal/errorHelpers.ts"],"mappings":"AAAA;;AAKA,MAAMA,aAAa,GAAIC,GAAQ,IAAyB;EACtD,OACE,OAAOA,GAAG,KAAK,QAAQ,IACvB,OAAO,IAAIA,GAAG;AAElB,CAAC;AAED,OAAO,MAAMC,kBAAkB,GAAIC,GAAQ,IAA2B;EACpE,OACEC,KAAK,CAACC,OAAO,CAACF,GAAG,CAAC,IAClBA,GAAG,CAACG,KAAK,CAAEC,IAAI,IAAKP,aAAa,CAACO,IAAI,CAAC,CAAC;AAE5C,CAAC;AAED,OAAO,MAAMC,SAAS,GAAIC,KAAU,IAAuB;EACzD,OAAO,QAAQ,IAAIA,KAAK,IAAIP,kBAAkB,CAACO,KAAK,CAACC,MAAM,CAAC;AAC9D,CAAC"}
1
+ {"version":3,"names":["isUNComponentsErrorData","obj","isUNComponentsErrorDataArray","arr","Array","isArray","every","item","isUNComponentsError","error","errors"],"sourceRoot":"../../../../src","sources":["types/internal/errorHelpers.ts"],"mappings":"AAAA;;AAKA,MAAMA,uBAAuB,GAAIC,GAAQ,IAAmC;EAC1E,OACE,OAAOA,GAAG,KAAK,QAAQ,IACvB,OAAO,IAAIA,GAAG;AAElB,CAAC;AAED,OAAO,MAAMC,4BAA4B,GAAIC,GAAQ,IAAqC;EACxF,OACEC,KAAK,CAACC,OAAO,CAACF,GAAG,CAAC,IAClBA,GAAG,CAACG,KAAK,CAAEC,IAAI,IAAKP,uBAAuB,CAACO,IAAI,CAAC,CAAC;AAEtD,CAAC;AAED,OAAO,MAAMC,mBAAmB,GAAIC,KAAU,IAAiC;EAC7E,OAAO,QAAQ,IAAIA,KAAK,IAAIP,4BAA4B,CAACO,KAAK,CAACC,MAAM,CAAC;AACxE,CAAC","ignoreList":[]}