@stripe/stripe-react-native 0.57.3 → 0.59.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (233) hide show
  1. package/android/build.gradle +2 -0
  2. package/android/gradle.properties +1 -1
  3. package/android/src/main/AndroidManifest.xml +27 -1
  4. package/android/src/main/java/com/reactnativestripesdk/EmbeddedPaymentElementView.kt +0 -3
  5. package/android/src/main/java/com/reactnativestripesdk/EmbeddedPaymentElementViewManager.kt +7 -3
  6. package/android/src/main/java/com/reactnativestripesdk/EventEmitterCompat.kt +8 -0
  7. package/android/src/main/java/com/reactnativestripesdk/NavigationBarView.kt +12 -1
  8. package/android/src/main/java/com/reactnativestripesdk/PaymentElementConfig.kt +26 -0
  9. package/android/src/main/java/com/reactnativestripesdk/PaymentMethodMessagingElementConfig.kt +147 -0
  10. package/android/src/main/java/com/reactnativestripesdk/PaymentMethodMessagingElementView.kt +164 -0
  11. package/android/src/main/java/com/reactnativestripesdk/PaymentMethodMessagingElementViewManager.kt +65 -0
  12. package/android/src/main/java/com/reactnativestripesdk/PaymentSheetAppearance.kt +1 -1
  13. package/android/src/main/java/com/reactnativestripesdk/PaymentSheetManager.kt +60 -31
  14. package/android/src/main/java/com/reactnativestripesdk/StripeAbstractComposeView.kt +17 -5
  15. package/android/src/main/java/com/reactnativestripesdk/StripeConnectDeepLinkInterceptorActivity.kt +77 -0
  16. package/android/src/main/java/com/reactnativestripesdk/StripeSdkModule.kt +334 -24
  17. package/android/src/main/java/com/reactnativestripesdk/StripeSdkPackage.kt +1 -0
  18. package/android/src/main/java/com/reactnativestripesdk/customersheet/CustomerSheetManager.kt +3 -0
  19. package/android/src/main/java/com/reactnativestripesdk/utils/Errors.kt +8 -0
  20. package/android/src/main/java/com/reactnativestripesdk/utils/Mappers.kt +0 -2
  21. package/android/src/main/res/xml/file_paths.xml +4 -0
  22. package/android/src/oldarch/java/com/facebook/react/viewmanagers/PaymentMethodMessagingElementViewManagerDelegate.java +36 -0
  23. package/android/src/oldarch/java/com/facebook/react/viewmanagers/PaymentMethodMessagingElementViewManagerInterface.java +18 -0
  24. package/android/src/oldarch/java/com/reactnativestripesdk/NativeStripeSdkModuleSpec.java +20 -0
  25. package/android/src/test/java/com/reactnativestripesdk/PaymentElementConfigTest.kt +175 -1
  26. package/android/src/test/java/com/reactnativestripesdk/PaymentMethodMessagingElementConfigTest.kt +543 -0
  27. package/android/src/test/java/com/reactnativestripesdk/PaymentSheetManagerTest.kt +70 -0
  28. package/ios/ConnectAccountOnboarding/ConnectAccountOnboardingView.swift +13 -19
  29. package/ios/CustomerSheet/CustomerSheetUtils.swift +4 -0
  30. package/ios/OldArch/StripeSdkEventEmitterCompat.h +2 -0
  31. package/ios/OldArch/StripeSdkEventEmitterCompat.m +13 -1
  32. package/ios/PaymentMethodMessagingElementConfig.swift +116 -0
  33. package/ios/PaymentMethodMessagingElementHandler.m +9 -0
  34. package/ios/PaymentMethodMessagingElementView.swift +139 -0
  35. package/ios/StripeSdk.mm +40 -0
  36. package/ios/StripeSdkEmitter.swift +2 -0
  37. package/ios/StripeSdkImpl+CustomerSheet.swift +1 -0
  38. package/ios/StripeSdkImpl+Embedded.swift +8 -1
  39. package/ios/StripeSdkImpl+PaymentSheet.swift +44 -1
  40. package/ios/StripeSdkImpl.swift +158 -2
  41. package/jest/mock.js +26 -0
  42. package/jest/setup.js +30 -0
  43. package/lib/commonjs/components/AddToWalletButton.js +1 -1
  44. package/lib/commonjs/components/AddToWalletButton.js.map +1 -1
  45. package/lib/commonjs/components/AddressSheet.js +1 -1
  46. package/lib/commonjs/components/AddressSheet.js.map +1 -1
  47. package/lib/commonjs/components/AuBECSDebitForm.js +1 -1
  48. package/lib/commonjs/components/AuBECSDebitForm.js.map +1 -1
  49. package/lib/commonjs/components/CardField.js +1 -1
  50. package/lib/commonjs/components/CardField.js.map +1 -1
  51. package/lib/commonjs/components/CardForm.js +1 -1
  52. package/lib/commonjs/components/CardForm.js.map +1 -1
  53. package/lib/commonjs/components/PlatformPayButton.js +1 -1
  54. package/lib/commonjs/components/PlatformPayButton.js.map +1 -1
  55. package/lib/commonjs/components/StripeContainer.js +1 -1
  56. package/lib/commonjs/components/StripeContainer.js.map +1 -1
  57. package/lib/commonjs/connect/Components.js +1 -1
  58. package/lib/commonjs/connect/Components.js.map +1 -1
  59. package/lib/commonjs/connect/ConnectComponentsProvider.js +1 -1
  60. package/lib/commonjs/connect/ConnectComponentsProvider.js.map +1 -1
  61. package/lib/commonjs/connect/EmbeddedComponent.js +10 -5
  62. package/lib/commonjs/connect/EmbeddedComponent.js.map +1 -1
  63. package/lib/commonjs/connect/ModalCloseButton.js +1 -1
  64. package/lib/commonjs/connect/ModalCloseButton.js.map +1 -1
  65. package/lib/commonjs/connect/NavigationBar.js +1 -1
  66. package/lib/commonjs/connect/NavigationBar.js.map +1 -1
  67. package/lib/commonjs/connect/analytics/AnalyticsClient.js +2 -0
  68. package/lib/commonjs/connect/analytics/AnalyticsClient.js.map +1 -0
  69. package/lib/commonjs/connect/analytics/ComponentAnalyticsClient.js +2 -0
  70. package/lib/commonjs/connect/analytics/ComponentAnalyticsClient.js.map +1 -0
  71. package/lib/commonjs/connect/analytics/events.js +2 -0
  72. package/lib/commonjs/connect/analytics/events.js.map +1 -0
  73. package/lib/commonjs/connect/testUtils.js +2 -0
  74. package/lib/commonjs/connect/testUtils.js.map +1 -0
  75. package/lib/commonjs/events.js.map +1 -1
  76. package/lib/commonjs/functions.js +1 -1
  77. package/lib/commonjs/functions.js.map +1 -1
  78. package/lib/commonjs/helpers.js +1 -1
  79. package/lib/commonjs/hooks/useStripe.js +1 -1
  80. package/lib/commonjs/hooks/useStripe.js.map +1 -1
  81. package/lib/commonjs/specs/NativeAddToWalletButton.js +1 -1
  82. package/lib/commonjs/specs/NativeAddressSheet.js +1 -1
  83. package/lib/commonjs/specs/NativeApplePayButton.js +1 -1
  84. package/lib/commonjs/specs/NativeAuBECSDebitForm.js +1 -1
  85. package/lib/commonjs/specs/NativeCardField.js +1 -1
  86. package/lib/commonjs/specs/NativeCardField.js.map +1 -1
  87. package/lib/commonjs/specs/NativeCardForm.js +1 -1
  88. package/lib/commonjs/specs/NativeCardForm.js.map +1 -1
  89. package/lib/commonjs/specs/NativeConnectAccountOnboardingView.js +1 -1
  90. package/lib/commonjs/specs/NativeEmbeddedPaymentElement.js +1 -1
  91. package/lib/commonjs/specs/NativeEmbeddedPaymentElement.js.map +1 -1
  92. package/lib/commonjs/specs/NativeGooglePayButton.js +1 -1
  93. package/lib/commonjs/specs/NativeNavigationBar.js +1 -1
  94. package/lib/commonjs/specs/NativePaymentMethodMessagingElement.js +2 -0
  95. package/lib/commonjs/specs/NativePaymentMethodMessagingElement.js.map +1 -0
  96. package/lib/commonjs/specs/NativeStripeContainer.js +1 -1
  97. package/lib/commonjs/specs/NativeStripeSdkModule.js.map +1 -1
  98. package/lib/commonjs/types/EmbeddedPaymentElement.js +1 -1
  99. package/lib/commonjs/types/EmbeddedPaymentElement.js.map +1 -1
  100. package/lib/commonjs/types/Errors.js +1 -1
  101. package/lib/commonjs/types/Errors.js.map +1 -1
  102. package/lib/commonjs/types/FinancialConnections.js.map +1 -1
  103. package/lib/commonjs/types/PaymentSheet.js +1 -1
  104. package/lib/commonjs/types/PaymentSheet.js.map +1 -1
  105. package/lib/commonjs/types/components/PaymentMethodMessagingElementComponent.js +2 -0
  106. package/lib/commonjs/types/components/PaymentMethodMessagingElementComponent.js.map +1 -0
  107. package/lib/commonjs/types/index.js.map +1 -1
  108. package/lib/module/components/AddToWalletButton.js +1 -1
  109. package/lib/module/components/AddToWalletButton.js.map +1 -1
  110. package/lib/module/components/AddressSheet.js +1 -1
  111. package/lib/module/components/AddressSheet.js.map +1 -1
  112. package/lib/module/components/AuBECSDebitForm.js +1 -1
  113. package/lib/module/components/AuBECSDebitForm.js.map +1 -1
  114. package/lib/module/components/CardField.js +1 -1
  115. package/lib/module/components/CardField.js.map +1 -1
  116. package/lib/module/components/CardForm.js +1 -1
  117. package/lib/module/components/CardForm.js.map +1 -1
  118. package/lib/module/components/PlatformPayButton.js +1 -1
  119. package/lib/module/components/PlatformPayButton.js.map +1 -1
  120. package/lib/module/components/StripeContainer.js +1 -1
  121. package/lib/module/components/StripeContainer.js.map +1 -1
  122. package/lib/module/connect/Components.js +1 -1
  123. package/lib/module/connect/Components.js.map +1 -1
  124. package/lib/module/connect/ConnectComponentsProvider.js +1 -1
  125. package/lib/module/connect/ConnectComponentsProvider.js.map +1 -1
  126. package/lib/module/connect/EmbeddedComponent.js +10 -5
  127. package/lib/module/connect/EmbeddedComponent.js.map +1 -1
  128. package/lib/module/connect/ModalCloseButton.js +1 -1
  129. package/lib/module/connect/ModalCloseButton.js.map +1 -1
  130. package/lib/module/connect/NavigationBar.js +1 -1
  131. package/lib/module/connect/NavigationBar.js.map +1 -1
  132. package/lib/module/connect/analytics/AnalyticsClient.js +2 -0
  133. package/lib/module/connect/analytics/AnalyticsClient.js.map +1 -0
  134. package/lib/module/connect/analytics/ComponentAnalyticsClient.js +2 -0
  135. package/lib/module/connect/analytics/ComponentAnalyticsClient.js.map +1 -0
  136. package/lib/module/connect/analytics/events.js +2 -0
  137. package/lib/module/connect/analytics/events.js.map +1 -0
  138. package/lib/module/connect/testUtils.js +2 -0
  139. package/lib/module/connect/testUtils.js.map +1 -0
  140. package/lib/module/events.js.map +1 -1
  141. package/lib/module/functions.js +1 -1
  142. package/lib/module/functions.js.map +1 -1
  143. package/lib/module/helpers.js +1 -1
  144. package/lib/module/hooks/useStripe.js +1 -1
  145. package/lib/module/hooks/useStripe.js.map +1 -1
  146. package/lib/module/specs/NativeAddToWalletButton.js +1 -1
  147. package/lib/module/specs/NativeAddressSheet.js +1 -1
  148. package/lib/module/specs/NativeApplePayButton.js +1 -1
  149. package/lib/module/specs/NativeAuBECSDebitForm.js +1 -1
  150. package/lib/module/specs/NativeCardField.js +1 -1
  151. package/lib/module/specs/NativeCardField.js.map +1 -1
  152. package/lib/module/specs/NativeCardForm.js +1 -1
  153. package/lib/module/specs/NativeCardForm.js.map +1 -1
  154. package/lib/module/specs/NativeConnectAccountOnboardingView.js +1 -1
  155. package/lib/module/specs/NativeEmbeddedPaymentElement.js +1 -1
  156. package/lib/module/specs/NativeEmbeddedPaymentElement.js.map +1 -1
  157. package/lib/module/specs/NativeGooglePayButton.js +1 -1
  158. package/lib/module/specs/NativeNavigationBar.js +1 -1
  159. package/lib/module/specs/NativePaymentMethodMessagingElement.js +2 -0
  160. package/lib/module/specs/NativePaymentMethodMessagingElement.js.map +1 -0
  161. package/lib/module/specs/NativeStripeContainer.js +1 -1
  162. package/lib/module/specs/NativeStripeSdkModule.js.map +1 -1
  163. package/lib/module/types/EmbeddedPaymentElement.js +1 -1
  164. package/lib/module/types/EmbeddedPaymentElement.js.map +1 -1
  165. package/lib/module/types/Errors.js +1 -1
  166. package/lib/module/types/Errors.js.map +1 -1
  167. package/lib/module/types/FinancialConnections.js.map +1 -1
  168. package/lib/module/types/PaymentSheet.js +1 -1
  169. package/lib/module/types/PaymentSheet.js.map +1 -1
  170. package/lib/module/types/components/PaymentMethodMessagingElementComponent.js +2 -0
  171. package/lib/module/types/components/PaymentMethodMessagingElementComponent.js.map +1 -0
  172. package/lib/module/types/index.js.map +1 -1
  173. package/lib/typescript/src/connect/Components.d.ts +91 -0
  174. package/lib/typescript/src/connect/Components.d.ts.map +1 -1
  175. package/lib/typescript/src/connect/ConnectComponentsProvider.d.ts +61 -0
  176. package/lib/typescript/src/connect/ConnectComponentsProvider.d.ts.map +1 -1
  177. package/lib/typescript/src/connect/EmbeddedComponent.d.ts.map +1 -1
  178. package/lib/typescript/src/connect/analytics/AnalyticsClient.d.ts +32 -0
  179. package/lib/typescript/src/connect/analytics/AnalyticsClient.d.ts.map +1 -0
  180. package/lib/typescript/src/connect/analytics/ComponentAnalyticsClient.d.ts +94 -0
  181. package/lib/typescript/src/connect/analytics/ComponentAnalyticsClient.d.ts.map +1 -0
  182. package/lib/typescript/src/connect/analytics/events.d.ts +215 -0
  183. package/lib/typescript/src/connect/analytics/events.d.ts.map +1 -0
  184. package/lib/typescript/src/connect/connectTypes.d.ts +5 -1
  185. package/lib/typescript/src/connect/connectTypes.d.ts.map +1 -1
  186. package/lib/typescript/src/connect/testUtils.d.ts +45 -0
  187. package/lib/typescript/src/connect/testUtils.d.ts.map +1 -0
  188. package/lib/typescript/src/events.d.ts +2 -0
  189. package/lib/typescript/src/events.d.ts.map +1 -1
  190. package/lib/typescript/src/functions.d.ts +13 -1
  191. package/lib/typescript/src/functions.d.ts.map +1 -1
  192. package/lib/typescript/src/hooks/useStripe.d.ts +2 -1
  193. package/lib/typescript/src/hooks/useStripe.d.ts.map +1 -1
  194. package/lib/typescript/src/specs/NativePaymentMethodMessagingElement.d.ts +16 -0
  195. package/lib/typescript/src/specs/NativePaymentMethodMessagingElement.d.ts.map +1 -0
  196. package/lib/typescript/src/specs/NativeStripeSdkModule.d.ts +16 -1
  197. package/lib/typescript/src/specs/NativeStripeSdkModule.d.ts.map +1 -1
  198. package/lib/typescript/src/types/CustomerSheet.d.ts +5 -0
  199. package/lib/typescript/src/types/CustomerSheet.d.ts.map +1 -1
  200. package/lib/typescript/src/types/EmbeddedPaymentElement.d.ts +11 -1
  201. package/lib/typescript/src/types/EmbeddedPaymentElement.d.ts.map +1 -1
  202. package/lib/typescript/src/types/Errors.d.ts +4 -0
  203. package/lib/typescript/src/types/Errors.d.ts.map +1 -1
  204. package/lib/typescript/src/types/FinancialConnections.d.ts +2 -0
  205. package/lib/typescript/src/types/FinancialConnections.d.ts.map +1 -1
  206. package/lib/typescript/src/types/PaymentSheet.d.ts +35 -0
  207. package/lib/typescript/src/types/PaymentSheet.d.ts.map +1 -1
  208. package/lib/typescript/src/types/components/PaymentMethodMessagingElementComponent.d.ts +69 -0
  209. package/lib/typescript/src/types/components/PaymentMethodMessagingElementComponent.d.ts.map +1 -0
  210. package/lib/typescript/src/types/index.d.ts +8 -1
  211. package/lib/typescript/src/types/index.d.ts.map +1 -1
  212. package/package.json +4 -1
  213. package/src/connect/Components.tsx +109 -11
  214. package/src/connect/ConnectComponentsProvider.tsx +69 -2
  215. package/src/connect/EmbeddedComponent.tsx +458 -23
  216. package/src/connect/analytics/AnalyticsClient.ts +75 -0
  217. package/src/connect/analytics/ComponentAnalyticsClient.ts +315 -0
  218. package/src/connect/analytics/events.ts +253 -0
  219. package/src/connect/connectTypes.ts +5 -1
  220. package/src/connect/testUtils.ts +37 -0
  221. package/src/events.ts +2 -0
  222. package/src/functions.ts +10 -0
  223. package/src/hooks/useStripe.tsx +8 -0
  224. package/src/specs/NativePaymentMethodMessagingElement.ts +25 -0
  225. package/src/specs/NativeStripeSdkModule.ts +21 -1
  226. package/src/types/CustomerSheet.ts +5 -0
  227. package/src/types/EmbeddedPaymentElement.tsx +11 -1
  228. package/src/types/Errors.ts +5 -0
  229. package/src/types/FinancialConnections.ts +2 -0
  230. package/src/types/PaymentSheet.ts +38 -1
  231. package/src/types/components/PaymentMethodMessagingElementComponent.tsx +74 -0
  232. package/src/types/index.ts +11 -0
  233. package/stripe-react-native.podspec +1 -1
@@ -1,2 +1,2 @@
1
- var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.createError=createError;exports.unsupportedMethodMessage=exports.unregisterInput=exports.shouldAttributeExpo=exports.registerInput=exports.isiOS=exports.isAndroid=exports.focusInput=exports.currentlyFocusedInput=void 0;var _reactNative=require("react-native");var _TextInputState=_interopRequireDefault(require("react-native/Libraries/Components/TextInput/TextInputState"));var shouldAttributeExpo=exports.shouldAttributeExpo=function shouldAttributeExpo(){try{return!!_reactNative.NativeModules.NativeUnimoduleProxy;}catch(_unused){return false;}};var isiOS=exports.isiOS=_reactNative.Platform.OS==='ios';var isAndroid=exports.isAndroid=_reactNative.Platform.OS==='android';function createError(error){return{code:error.code,message:error.message,localizedMessage:error.localizedMessage,declineCode:error.declineCode,stripeErrorCode:error.stripeErrorCode,type:error.type};}var unsupportedMethodMessage=exports.unsupportedMethodMessage=function unsupportedMethodMessage(field){return`${field} method is not supported. Consider to upgrade react-native version to 0.63.x or higher`;};var focusInput=exports.focusInput=function focusInput(ref){if('focusInput'in _TextInputState.default){_TextInputState.default.focusInput(ref);}else{if(__DEV__){console.log(unsupportedMethodMessage('focusInput'));}}};var registerInput=exports.registerInput=function registerInput(ref){if('registerInput'in _TextInputState.default){_TextInputState.default.registerInput(ref);}else{if(__DEV__){console.log(unsupportedMethodMessage('registerInput'));}}};var unregisterInput=exports.unregisterInput=function unregisterInput(ref){if('unregisterInput'in _TextInputState.default){_TextInputState.default.unregisterInput(ref);}else{if(__DEV__){console.log(unsupportedMethodMessage('unregisterInput'));}}};var currentlyFocusedInput=exports.currentlyFocusedInput=function currentlyFocusedInput(){if('currentlyFocusedInput'in _TextInputState.default){return _TextInputState.default.currentlyFocusedInput();}else{if(__DEV__){console.log(unsupportedMethodMessage('currentlyFocusedInput'));}}};console.warn("Deep imports from the 'react-native' package are deprecated ('react-native/Libraries/Components/TextInput/TextInputState'). Source: /Users/davidestes/stripe/stripe-react-native/src/helpers.ts 6:0");
1
+ var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.createError=createError;exports.unsupportedMethodMessage=exports.unregisterInput=exports.shouldAttributeExpo=exports.registerInput=exports.isiOS=exports.isAndroid=exports.focusInput=exports.currentlyFocusedInput=void 0;var _reactNative=require("react-native");var _TextInputState=_interopRequireDefault(require("react-native/Libraries/Components/TextInput/TextInputState"));var shouldAttributeExpo=exports.shouldAttributeExpo=function shouldAttributeExpo(){try{return!!_reactNative.NativeModules.NativeUnimoduleProxy;}catch(_unused){return false;}};var isiOS=exports.isiOS=_reactNative.Platform.OS==='ios';var isAndroid=exports.isAndroid=_reactNative.Platform.OS==='android';function createError(error){return{code:error.code,message:error.message,localizedMessage:error.localizedMessage,declineCode:error.declineCode,stripeErrorCode:error.stripeErrorCode,type:error.type};}var unsupportedMethodMessage=exports.unsupportedMethodMessage=function unsupportedMethodMessage(field){return`${field} method is not supported. Consider to upgrade react-native version to 0.63.x or higher`;};var focusInput=exports.focusInput=function focusInput(ref){if('focusInput'in _TextInputState.default){_TextInputState.default.focusInput(ref);}else{if(__DEV__){console.log(unsupportedMethodMessage('focusInput'));}}};var registerInput=exports.registerInput=function registerInput(ref){if('registerInput'in _TextInputState.default){_TextInputState.default.registerInput(ref);}else{if(__DEV__){console.log(unsupportedMethodMessage('registerInput'));}}};var unregisterInput=exports.unregisterInput=function unregisterInput(ref){if('unregisterInput'in _TextInputState.default){_TextInputState.default.unregisterInput(ref);}else{if(__DEV__){console.log(unsupportedMethodMessage('unregisterInput'));}}};var currentlyFocusedInput=exports.currentlyFocusedInput=function currentlyFocusedInput(){if('currentlyFocusedInput'in _TextInputState.default){return _TextInputState.default.currentlyFocusedInput();}else{if(__DEV__){console.log(unsupportedMethodMessage('currentlyFocusedInput'));}}};console.warn("Deep imports from the 'react-native' package are deprecated ('react-native/Libraries/Components/TextInput/TextInputState'). Source: /Users/wooj/stripe/stripe-react-native/src/helpers.ts 6:0");
2
2
  //# sourceMappingURL=helpers.js.map
@@ -1,2 +1,2 @@
1
- var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.useStripe=useStripe;var _asyncToGenerator2=_interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));var _react=require("react");var _functions=require("../functions");function useStripe(){var _createPaymentMethod=(0,_react.useCallback)(function(){var _ref=(0,_asyncToGenerator2.default)(function*(data){var options=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};return(0,_functions.createPaymentMethod)(data,options);});return function(_x){return _ref.apply(this,arguments);};}(),[]);var _createToken=(0,_react.useCallback)(function(){var _ref2=(0,_asyncToGenerator2.default)(function*(params){return(0,_functions.createToken)(params);});return function(_x2){return _ref2.apply(this,arguments);};}(),[]);var _retrievePaymentIntent=(0,_react.useCallback)(function(){var _ref3=(0,_asyncToGenerator2.default)(function*(clientSecret){return(0,_functions.retrievePaymentIntent)(clientSecret);});return function(_x3){return _ref3.apply(this,arguments);};}(),[]);var _retrieveSetupIntent=(0,_react.useCallback)(function(){var _ref4=(0,_asyncToGenerator2.default)(function*(clientSecret){return(0,_functions.retrieveSetupIntent)(clientSecret);});return function(_x4){return _ref4.apply(this,arguments);};}(),[]);var _confirmPayment=(0,_react.useCallback)(function(){var _ref5=(0,_asyncToGenerator2.default)(function*(paymentIntentClientSecret,data){var options=arguments.length>2&&arguments[2]!==undefined?arguments[2]:{};return(0,_functions.confirmPayment)(paymentIntentClientSecret,data,options);});return function(_x5,_x6){return _ref5.apply(this,arguments);};}(),[]);var _handleNextAction=(0,_react.useCallback)(function(){var _ref6=(0,_asyncToGenerator2.default)(function*(paymentIntentClientSecret,returnURL){return(0,_functions.handleNextAction)(paymentIntentClientSecret,returnURL);});return function(_x7,_x8){return _ref6.apply(this,arguments);};}(),[]);var _handleNextActionForSetup=(0,_react.useCallback)(function(){var _ref7=(0,_asyncToGenerator2.default)(function*(setupIntentClientSecret,returnURL){return(0,_functions.handleNextActionForSetup)(setupIntentClientSecret,returnURL);});return function(_x9,_x0){return _ref7.apply(this,arguments);};}(),[]);var _confirmSetupIntent=(0,_react.useCallback)(function(){var _ref8=(0,_asyncToGenerator2.default)(function*(paymentIntentClientSecret,data){var options=arguments.length>2&&arguments[2]!==undefined?arguments[2]:{};return(0,_functions.confirmSetupIntent)(paymentIntentClientSecret,data,options);});return function(_x1,_x10){return _ref8.apply(this,arguments);};}(),[]);var _createTokenForCVCUpdate=(0,_react.useCallback)(function(){var _ref9=(0,_asyncToGenerator2.default)(function*(cvc){return(0,_functions.createTokenForCVCUpdate)(cvc);});return function(_x11){return _ref9.apply(this,arguments);};}(),[]);var _initPaymentSheet=(0,_react.useCallback)(function(){var _ref0=(0,_asyncToGenerator2.default)(function*(params){return(0,_functions.initPaymentSheet)(params);});return function(_x12){return _ref0.apply(this,arguments);};}(),[]);var _presentPaymentSheet=(0,_react.useCallback)(function(){var _ref1=(0,_asyncToGenerator2.default)(function*(options){return(0,_functions.presentPaymentSheet)(options);});return function(_x13){return _ref1.apply(this,arguments);};}(),[]);var _confirmPaymentSheetPayment=(0,_react.useCallback)((0,_asyncToGenerator2.default)(function*(){return(0,_functions.confirmPaymentSheetPayment)();}),[]);var _handleURLCallback=(0,_react.useCallback)(function(){var _ref11=(0,_asyncToGenerator2.default)(function*(url){return(0,_functions.handleURLCallback)(url);});return function(_x14){return _ref11.apply(this,arguments);};}(),[]);var _collectBankAccountForPayment=(0,_react.useCallback)(function(){var _ref12=(0,_asyncToGenerator2.default)(function*(clientSecret,params){return(0,_functions.collectBankAccountForPayment)(clientSecret,params);});return function(_x15,_x16){return _ref12.apply(this,arguments);};}(),[]);var _collectBankAccountForSetup=(0,_react.useCallback)(function(){var _ref13=(0,_asyncToGenerator2.default)(function*(clientSecret,params){return(0,_functions.collectBankAccountForSetup)(clientSecret,params);});return function(_x17,_x18){return _ref13.apply(this,arguments);};}(),[]);var _verifyMicrodepositsForPayment=(0,_react.useCallback)(function(){var _ref14=(0,_asyncToGenerator2.default)(function*(clientSecret,params){return(0,_functions.verifyMicrodepositsForPayment)(clientSecret,params);});return function(_x19,_x20){return _ref14.apply(this,arguments);};}(),[]);var _verifyMicrodepositsForSetup=(0,_react.useCallback)(function(){var _ref15=(0,_asyncToGenerator2.default)(function*(clientSecret,params){return(0,_functions.verifyMicrodepositsForSetup)(clientSecret,params);});return function(_x21,_x22){return _ref15.apply(this,arguments);};}(),[]);var _canAddCardToWallet=(0,_react.useCallback)(function(){var _ref16=(0,_asyncToGenerator2.default)(function*(params){return(0,_functions.canAddCardToWallet)(params);});return function(_x23){return _ref16.apply(this,arguments);};}(),[]);var _collectBankAccountToken=(0,_react.useCallback)(function(){var _ref17=(0,_asyncToGenerator2.default)(function*(clientSecret,params){return(0,_functions.collectBankAccountToken)(clientSecret,params);});return function(_x24,_x25){return _ref17.apply(this,arguments);};}(),[]);var _collectFinancialConnectionsAccounts=(0,_react.useCallback)(function(){var _ref18=(0,_asyncToGenerator2.default)(function*(clientSecret,params){return(0,_functions.collectFinancialConnectionsAccounts)(clientSecret,params);});return function(_x26,_x27){return _ref18.apply(this,arguments);};}(),[]);var _resetPaymentSheetCustomer=(0,_react.useCallback)((0,_asyncToGenerator2.default)(function*(){return(0,_functions.resetPaymentSheetCustomer)();}),[]);var _isPlatformPaySupported=(0,_react.useCallback)(function(){var _ref20=(0,_asyncToGenerator2.default)(function*(params){return(0,_functions.isPlatformPaySupported)(params);});return function(_x28){return _ref20.apply(this,arguments);};}(),[]);var _confirmPlatformPaySetupIntent=(0,_react.useCallback)(function(){var _ref21=(0,_asyncToGenerator2.default)(function*(clientSecret,params){return(0,_functions.confirmPlatformPaySetupIntent)(clientSecret,params);});return function(_x29,_x30){return _ref21.apply(this,arguments);};}(),[]);var _confirmPlatformPayPayment=(0,_react.useCallback)(function(){var _ref22=(0,_asyncToGenerator2.default)(function*(clientSecret,params){return(0,_functions.confirmPlatformPayPayment)(clientSecret,params);});return function(_x31,_x32){return _ref22.apply(this,arguments);};}(),[]);var _dismissPlatformPay=(0,_react.useCallback)((0,_asyncToGenerator2.default)(function*(){return(0,_functions.dismissPlatformPay)();}),[]);var _createPlatformPayPaymentMethod=(0,_react.useCallback)(function(){var _ref24=(0,_asyncToGenerator2.default)(function*(params){return(0,_functions.createPlatformPayPaymentMethod)(params);});return function(_x33){return _ref24.apply(this,arguments);};}(),[]);var _createPlatformPayToken=(0,_react.useCallback)(function(){var _ref25=(0,_asyncToGenerator2.default)(function*(params){return(0,_functions.createPlatformPayToken)(params);});return function(_x34){return _ref25.apply(this,arguments);};}(),[]);var _updatePlatformPaySheet=(0,_react.useCallback)(function(){var _ref26=(0,_asyncToGenerator2.default)(function*(params){return(0,_functions.updatePlatformPaySheet)(params);});return function(_x35){return _ref26.apply(this,arguments);};}(),[]);var _openPlatformPaySetup=(0,_react.useCallback)((0,_asyncToGenerator2.default)(function*(){return(0,_functions.openPlatformPaySetup)();}),[]);return{retrievePaymentIntent:_retrievePaymentIntent,retrieveSetupIntent:_retrieveSetupIntent,confirmPayment:_confirmPayment,createPaymentMethod:_createPaymentMethod,handleNextAction:_handleNextAction,handleNextActionForSetup:_handleNextActionForSetup,confirmSetupIntent:_confirmSetupIntent,createTokenForCVCUpdate:_createTokenForCVCUpdate,handleURLCallback:_handleURLCallback,confirmPaymentSheetPayment:_confirmPaymentSheetPayment,presentPaymentSheet:_presentPaymentSheet,initPaymentSheet:_initPaymentSheet,createToken:_createToken,collectBankAccountForPayment:_collectBankAccountForPayment,collectBankAccountForSetup:_collectBankAccountForSetup,verifyMicrodepositsForPayment:_verifyMicrodepositsForPayment,verifyMicrodepositsForSetup:_verifyMicrodepositsForSetup,canAddCardToWallet:_canAddCardToWallet,collectBankAccountToken:_collectBankAccountToken,collectFinancialConnectionsAccounts:_collectFinancialConnectionsAccounts,resetPaymentSheetCustomer:_resetPaymentSheetCustomer,isPlatformPaySupported:_isPlatformPaySupported,confirmPlatformPaySetupIntent:_confirmPlatformPaySetupIntent,confirmPlatformPayPayment:_confirmPlatformPayPayment,dismissPlatformPay:_dismissPlatformPay,createPlatformPayPaymentMethod:_createPlatformPayPaymentMethod,createPlatformPayToken:_createPlatformPayToken,updatePlatformPaySheet:_updatePlatformPaySheet,openPlatformPaySetup:_openPlatformPaySetup};}
1
+ var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.useStripe=useStripe;var _asyncToGenerator2=_interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));var _react=require("react");var _functions=require("../functions");function useStripe(){var _createPaymentMethod=(0,_react.useCallback)(function(){var _ref=(0,_asyncToGenerator2.default)(function*(data){var options=arguments.length>1&&arguments[1]!==undefined?arguments[1]:{};return(0,_functions.createPaymentMethod)(data,options);});return function(_x){return _ref.apply(this,arguments);};}(),[]);var _createToken=(0,_react.useCallback)(function(){var _ref2=(0,_asyncToGenerator2.default)(function*(params){return(0,_functions.createToken)(params);});return function(_x2){return _ref2.apply(this,arguments);};}(),[]);var _retrievePaymentIntent=(0,_react.useCallback)(function(){var _ref3=(0,_asyncToGenerator2.default)(function*(clientSecret){return(0,_functions.retrievePaymentIntent)(clientSecret);});return function(_x3){return _ref3.apply(this,arguments);};}(),[]);var _retrieveSetupIntent=(0,_react.useCallback)(function(){var _ref4=(0,_asyncToGenerator2.default)(function*(clientSecret){return(0,_functions.retrieveSetupIntent)(clientSecret);});return function(_x4){return _ref4.apply(this,arguments);};}(),[]);var _confirmPayment=(0,_react.useCallback)(function(){var _ref5=(0,_asyncToGenerator2.default)(function*(paymentIntentClientSecret,data){var options=arguments.length>2&&arguments[2]!==undefined?arguments[2]:{};return(0,_functions.confirmPayment)(paymentIntentClientSecret,data,options);});return function(_x5,_x6){return _ref5.apply(this,arguments);};}(),[]);var _handleNextAction=(0,_react.useCallback)(function(){var _ref6=(0,_asyncToGenerator2.default)(function*(paymentIntentClientSecret,returnURL){return(0,_functions.handleNextAction)(paymentIntentClientSecret,returnURL);});return function(_x7,_x8){return _ref6.apply(this,arguments);};}(),[]);var _handleNextActionForSetup=(0,_react.useCallback)(function(){var _ref7=(0,_asyncToGenerator2.default)(function*(setupIntentClientSecret,returnURL){return(0,_functions.handleNextActionForSetup)(setupIntentClientSecret,returnURL);});return function(_x9,_x0){return _ref7.apply(this,arguments);};}(),[]);var _confirmSetupIntent=(0,_react.useCallback)(function(){var _ref8=(0,_asyncToGenerator2.default)(function*(paymentIntentClientSecret,data){var options=arguments.length>2&&arguments[2]!==undefined?arguments[2]:{};return(0,_functions.confirmSetupIntent)(paymentIntentClientSecret,data,options);});return function(_x1,_x10){return _ref8.apply(this,arguments);};}(),[]);var _createTokenForCVCUpdate=(0,_react.useCallback)(function(){var _ref9=(0,_asyncToGenerator2.default)(function*(cvc){return(0,_functions.createTokenForCVCUpdate)(cvc);});return function(_x11){return _ref9.apply(this,arguments);};}(),[]);var _initPaymentSheet=(0,_react.useCallback)(function(){var _ref0=(0,_asyncToGenerator2.default)(function*(params){return(0,_functions.initPaymentSheet)(params);});return function(_x12){return _ref0.apply(this,arguments);};}(),[]);var _presentPaymentSheet=(0,_react.useCallback)(function(){var _ref1=(0,_asyncToGenerator2.default)(function*(options){return(0,_functions.presentPaymentSheet)(options);});return function(_x13){return _ref1.apply(this,arguments);};}(),[]);var _confirmPaymentSheetPayment=(0,_react.useCallback)((0,_asyncToGenerator2.default)(function*(){return(0,_functions.confirmPaymentSheetPayment)();}),[]);var _handleURLCallback=(0,_react.useCallback)(function(){var _ref11=(0,_asyncToGenerator2.default)(function*(url){return(0,_functions.handleURLCallback)(url);});return function(_x14){return _ref11.apply(this,arguments);};}(),[]);var _collectBankAccountForPayment=(0,_react.useCallback)(function(){var _ref12=(0,_asyncToGenerator2.default)(function*(clientSecret,params){return(0,_functions.collectBankAccountForPayment)(clientSecret,params);});return function(_x15,_x16){return _ref12.apply(this,arguments);};}(),[]);var _collectBankAccountForSetup=(0,_react.useCallback)(function(){var _ref13=(0,_asyncToGenerator2.default)(function*(clientSecret,params){return(0,_functions.collectBankAccountForSetup)(clientSecret,params);});return function(_x17,_x18){return _ref13.apply(this,arguments);};}(),[]);var _verifyMicrodepositsForPayment=(0,_react.useCallback)(function(){var _ref14=(0,_asyncToGenerator2.default)(function*(clientSecret,params){return(0,_functions.verifyMicrodepositsForPayment)(clientSecret,params);});return function(_x19,_x20){return _ref14.apply(this,arguments);};}(),[]);var _verifyMicrodepositsForSetup=(0,_react.useCallback)(function(){var _ref15=(0,_asyncToGenerator2.default)(function*(clientSecret,params){return(0,_functions.verifyMicrodepositsForSetup)(clientSecret,params);});return function(_x21,_x22){return _ref15.apply(this,arguments);};}(),[]);var _canAddCardToWallet=(0,_react.useCallback)(function(){var _ref16=(0,_asyncToGenerator2.default)(function*(params){return(0,_functions.canAddCardToWallet)(params);});return function(_x23){return _ref16.apply(this,arguments);};}(),[]);var _collectBankAccountToken=(0,_react.useCallback)(function(){var _ref17=(0,_asyncToGenerator2.default)(function*(clientSecret,params){return(0,_functions.collectBankAccountToken)(clientSecret,params);});return function(_x24,_x25){return _ref17.apply(this,arguments);};}(),[]);var _collectFinancialConnectionsAccounts=(0,_react.useCallback)(function(){var _ref18=(0,_asyncToGenerator2.default)(function*(clientSecret,params){return(0,_functions.collectFinancialConnectionsAccounts)(clientSecret,params);});return function(_x26,_x27){return _ref18.apply(this,arguments);};}(),[]);var _resetPaymentSheetCustomer=(0,_react.useCallback)((0,_asyncToGenerator2.default)(function*(){return(0,_functions.resetPaymentSheetCustomer)();}),[]);var _isPlatformPaySupported=(0,_react.useCallback)(function(){var _ref20=(0,_asyncToGenerator2.default)(function*(params){return(0,_functions.isPlatformPaySupported)(params);});return function(_x28){return _ref20.apply(this,arguments);};}(),[]);var _confirmPlatformPaySetupIntent=(0,_react.useCallback)(function(){var _ref21=(0,_asyncToGenerator2.default)(function*(clientSecret,params){return(0,_functions.confirmPlatformPaySetupIntent)(clientSecret,params);});return function(_x29,_x30){return _ref21.apply(this,arguments);};}(),[]);var _confirmPlatformPayPayment=(0,_react.useCallback)(function(){var _ref22=(0,_asyncToGenerator2.default)(function*(clientSecret,params){return(0,_functions.confirmPlatformPayPayment)(clientSecret,params);});return function(_x31,_x32){return _ref22.apply(this,arguments);};}(),[]);var _dismissPlatformPay=(0,_react.useCallback)((0,_asyncToGenerator2.default)(function*(){return(0,_functions.dismissPlatformPay)();}),[]);var _createPlatformPayPaymentMethod=(0,_react.useCallback)(function(){var _ref24=(0,_asyncToGenerator2.default)(function*(params){return(0,_functions.createPlatformPayPaymentMethod)(params);});return function(_x33){return _ref24.apply(this,arguments);};}(),[]);var _createPlatformPayToken=(0,_react.useCallback)(function(){var _ref25=(0,_asyncToGenerator2.default)(function*(params){return(0,_functions.createPlatformPayToken)(params);});return function(_x34){return _ref25.apply(this,arguments);};}(),[]);var _updatePlatformPaySheet=(0,_react.useCallback)(function(){var _ref26=(0,_asyncToGenerator2.default)(function*(params){return(0,_functions.updatePlatformPaySheet)(params);});return function(_x35){return _ref26.apply(this,arguments);};}(),[]);var _openPlatformPaySetup=(0,_react.useCallback)((0,_asyncToGenerator2.default)(function*(){return(0,_functions.openPlatformPaySetup)();}),[]);var _createRadarSession=(0,_react.useCallback)((0,_asyncToGenerator2.default)(function*(){return(0,_functions.createRadarSession)();}),[]);return{retrievePaymentIntent:_retrievePaymentIntent,retrieveSetupIntent:_retrieveSetupIntent,confirmPayment:_confirmPayment,createPaymentMethod:_createPaymentMethod,handleNextAction:_handleNextAction,handleNextActionForSetup:_handleNextActionForSetup,confirmSetupIntent:_confirmSetupIntent,createTokenForCVCUpdate:_createTokenForCVCUpdate,handleURLCallback:_handleURLCallback,confirmPaymentSheetPayment:_confirmPaymentSheetPayment,presentPaymentSheet:_presentPaymentSheet,initPaymentSheet:_initPaymentSheet,createToken:_createToken,collectBankAccountForPayment:_collectBankAccountForPayment,collectBankAccountForSetup:_collectBankAccountForSetup,verifyMicrodepositsForPayment:_verifyMicrodepositsForPayment,verifyMicrodepositsForSetup:_verifyMicrodepositsForSetup,canAddCardToWallet:_canAddCardToWallet,collectBankAccountToken:_collectBankAccountToken,collectFinancialConnectionsAccounts:_collectFinancialConnectionsAccounts,resetPaymentSheetCustomer:_resetPaymentSheetCustomer,isPlatformPaySupported:_isPlatformPaySupported,confirmPlatformPaySetupIntent:_confirmPlatformPaySetupIntent,confirmPlatformPayPayment:_confirmPlatformPayPayment,dismissPlatformPay:_dismissPlatformPay,createPlatformPayPaymentMethod:_createPlatformPayPaymentMethod,createPlatformPayToken:_createPlatformPayToken,updatePlatformPaySheet:_updatePlatformPaySheet,openPlatformPaySetup:_openPlatformPaySetup,createRadarSession:_createRadarSession};}
2
2
  //# sourceMappingURL=useStripe.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["_react","require","_functions","useStripe","_createPaymentMethod","useCallback","_ref","_asyncToGenerator2","default","data","options","arguments","length","undefined","createPaymentMethod","_x","apply","_createToken","_ref2","params","createToken","_x2","_retrievePaymentIntent","_ref3","clientSecret","retrievePaymentIntent","_x3","_retrieveSetupIntent","_ref4","retrieveSetupIntent","_x4","_confirmPayment","_ref5","paymentIntentClientSecret","confirmPayment","_x5","_x6","_handleNextAction","_ref6","returnURL","handleNextAction","_x7","_x8","_handleNextActionForSetup","_ref7","setupIntentClientSecret","handleNextActionForSetup","_x9","_x0","_confirmSetupIntent","_ref8","confirmSetupIntent","_x1","_x10","_createTokenForCVCUpdate","_ref9","cvc","createTokenForCVCUpdate","_x11","_initPaymentSheet","_ref0","initPaymentSheet","_x12","_presentPaymentSheet","_ref1","presentPaymentSheet","_x13","_confirmPaymentSheetPayment","confirmPaymentSheetPayment","_handleURLCallback","_ref11","url","handleURLCallback","_x14","_collectBankAccountForPayment","_ref12","collectBankAccountForPayment","_x15","_x16","_collectBankAccountForSetup","_ref13","collectBankAccountForSetup","_x17","_x18","_verifyMicrodepositsForPayment","_ref14","verifyMicrodepositsForPayment","_x19","_x20","_verifyMicrodepositsForSetup","_ref15","verifyMicrodepositsForSetup","_x21","_x22","_canAddCardToWallet","_ref16","canAddCardToWallet","_x23","_collectBankAccountToken","_ref17","collectBankAccountToken","_x24","_x25","_collectFinancialConnectionsAccounts","_ref18","collectFinancialConnectionsAccounts","_x26","_x27","_resetPaymentSheetCustomer","resetPaymentSheetCustomer","_isPlatformPaySupported","_ref20","isPlatformPaySupported","_x28","_confirmPlatformPaySetupIntent","_ref21","confirmPlatformPaySetupIntent","_x29","_x30","_confirmPlatformPayPayment","_ref22","confirmPlatformPayPayment","_x31","_x32","_dismissPlatformPay","dismissPlatformPay","_createPlatformPayPaymentMethod","_ref24","createPlatformPayPaymentMethod","_x33","_createPlatformPayToken","_ref25","createPlatformPayToken","_x34","_updatePlatformPaySheet","_ref26","updatePlatformPaySheet","_x35","_openPlatformPaySetup","openPlatformPaySetup"],"sourceRoot":"../../../src","sources":["hooks/useStripe.tsx"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["_react","require","_functions","useStripe","_createPaymentMethod","useCallback","_ref","_asyncToGenerator2","default","data","options","arguments","length","undefined","createPaymentMethod","_x","apply","_createToken","_ref2","params","createToken","_x2","_retrievePaymentIntent","_ref3","clientSecret","retrievePaymentIntent","_x3","_retrieveSetupIntent","_ref4","retrieveSetupIntent","_x4","_confirmPayment","_ref5","paymentIntentClientSecret","confirmPayment","_x5","_x6","_handleNextAction","_ref6","returnURL","handleNextAction","_x7","_x8","_handleNextActionForSetup","_ref7","setupIntentClientSecret","handleNextActionForSetup","_x9","_x0","_confirmSetupIntent","_ref8","confirmSetupIntent","_x1","_x10","_createTokenForCVCUpdate","_ref9","cvc","createTokenForCVCUpdate","_x11","_initPaymentSheet","_ref0","initPaymentSheet","_x12","_presentPaymentSheet","_ref1","presentPaymentSheet","_x13","_confirmPaymentSheetPayment","confirmPaymentSheetPayment","_handleURLCallback","_ref11","url","handleURLCallback","_x14","_collectBankAccountForPayment","_ref12","collectBankAccountForPayment","_x15","_x16","_collectBankAccountForSetup","_ref13","collectBankAccountForSetup","_x17","_x18","_verifyMicrodepositsForPayment","_ref14","verifyMicrodepositsForPayment","_x19","_x20","_verifyMicrodepositsForSetup","_ref15","verifyMicrodepositsForSetup","_x21","_x22","_canAddCardToWallet","_ref16","canAddCardToWallet","_x23","_collectBankAccountToken","_ref17","collectBankAccountToken","_x24","_x25","_collectFinancialConnectionsAccounts","_ref18","collectFinancialConnectionsAccounts","_x26","_x27","_resetPaymentSheetCustomer","resetPaymentSheetCustomer","_isPlatformPaySupported","_ref20","isPlatformPaySupported","_x28","_confirmPlatformPaySetupIntent","_ref21","confirmPlatformPaySetupIntent","_x29","_x30","_confirmPlatformPayPayment","_ref22","confirmPlatformPayPayment","_x31","_x32","_dismissPlatformPay","dismissPlatformPay","_createPlatformPayPaymentMethod","_ref24","createPlatformPayPaymentMethod","_x33","_createPlatformPayToken","_ref25","createPlatformPayToken","_x34","_updatePlatformPaySheet","_ref26","updatePlatformPaySheet","_x35","_openPlatformPaySetup","openPlatformPaySetup","_createRadarSession","createRadarSession"],"sourceRoot":"../../../src","sources":["hooks/useStripe.tsx"],"mappings":"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","ignoreList":[]}
@@ -1,2 +1,2 @@
1
- var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.default=exports.__INTERNAL_VIEW_CONFIG=void 0;var _codegenNativeComponent=_interopRequireDefault(require("react-native/Libraries/Utilities/codegenNativeComponent"));var NativeComponentRegistry=require('react-native/Libraries/NativeComponent/NativeComponentRegistry');var _require=require('react-native/Libraries/NativeComponent/ViewConfigIgnore'),ConditionallyIgnoredEventHandlers=_require.ConditionallyIgnoredEventHandlers;var nativeComponentName='AddToWalletButton';var __INTERNAL_VIEW_CONFIG=exports.__INTERNAL_VIEW_CONFIG={uiViewClassName:"AddToWalletButton",directEventTypes:{topCompleteAction:{registrationName:"onCompleteAction"}},validAttributes:Object.assign({iOSButtonStyle:true,androidAssetSource:{process:function(req){return'default'in req?req.default:req;}(require('react-native/Libraries/Image/resolveAssetSource'))},testEnv:true,cardDetails:true,token:true,ephemeralKey:true},ConditionallyIgnoredEventHandlers({onCompleteAction:true}))};var _default=exports.default=NativeComponentRegistry.get(nativeComponentName,function(){return __INTERNAL_VIEW_CONFIG;});console.warn("Deep imports from the 'react-native' package are deprecated ('react-native/Libraries/Utilities/codegenNativeComponent'). Source: /Users/davidestes/stripe/stripe-react-native/src/specs/NativeAddToWalletButton.ts 6:0");
1
+ var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.default=exports.__INTERNAL_VIEW_CONFIG=void 0;var _codegenNativeComponent=_interopRequireDefault(require("react-native/Libraries/Utilities/codegenNativeComponent"));var NativeComponentRegistry=require('react-native/Libraries/NativeComponent/NativeComponentRegistry');var _require=require('react-native/Libraries/NativeComponent/ViewConfigIgnore'),ConditionallyIgnoredEventHandlers=_require.ConditionallyIgnoredEventHandlers;var nativeComponentName='AddToWalletButton';var __INTERNAL_VIEW_CONFIG=exports.__INTERNAL_VIEW_CONFIG={uiViewClassName:"AddToWalletButton",directEventTypes:{topCompleteAction:{registrationName:"onCompleteAction"}},validAttributes:Object.assign({iOSButtonStyle:true,androidAssetSource:{process:function(req){return'default'in req?req.default:req;}(require('react-native/Libraries/Image/resolveAssetSource'))},testEnv:true,cardDetails:true,token:true,ephemeralKey:true},ConditionallyIgnoredEventHandlers({onCompleteAction:true}))};var _default=exports.default=NativeComponentRegistry.get(nativeComponentName,function(){return __INTERNAL_VIEW_CONFIG;});console.warn("Deep imports from the 'react-native' package are deprecated ('react-native/Libraries/Utilities/codegenNativeComponent'). Source: /Users/wooj/stripe/stripe-react-native/src/specs/NativeAddToWalletButton.ts 6:0");
2
2
  //# sourceMappingURL=NativeAddToWalletButton.js.map
@@ -1,2 +1,2 @@
1
- var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.default=exports.__INTERNAL_VIEW_CONFIG=void 0;var _codegenNativeComponent=_interopRequireDefault(require("react-native/Libraries/Utilities/codegenNativeComponent"));var NativeComponentRegistry=require('react-native/Libraries/NativeComponent/NativeComponentRegistry');var _require=require('react-native/Libraries/NativeComponent/ViewConfigIgnore'),ConditionallyIgnoredEventHandlers=_require.ConditionallyIgnoredEventHandlers;var nativeComponentName='AddressSheetView';var __INTERNAL_VIEW_CONFIG=exports.__INTERNAL_VIEW_CONFIG={uiViewClassName:"AddressSheetView",directEventTypes:{topSubmitAction:{registrationName:"onSubmitAction"},topErrorAction:{registrationName:"onErrorAction"}},validAttributes:Object.assign({visible:true,presentationStyle:true,animationStyle:true,appearance:true,defaultValues:true,additionalFields:true,allowedCountries:true,autocompleteCountries:true,primaryButtonTitle:true,sheetTitle:true,googlePlacesApiKey:true},ConditionallyIgnoredEventHandlers({onSubmitAction:true,onErrorAction:true}))};var _default=exports.default=NativeComponentRegistry.get(nativeComponentName,function(){return __INTERNAL_VIEW_CONFIG;});console.warn("Deep imports from the 'react-native' package are deprecated ('react-native/Libraries/Utilities/codegenNativeComponent'). Source: /Users/davidestes/stripe/stripe-react-native/src/specs/NativeAddressSheet.ts 6:0");
1
+ var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.default=exports.__INTERNAL_VIEW_CONFIG=void 0;var _codegenNativeComponent=_interopRequireDefault(require("react-native/Libraries/Utilities/codegenNativeComponent"));var NativeComponentRegistry=require('react-native/Libraries/NativeComponent/NativeComponentRegistry');var _require=require('react-native/Libraries/NativeComponent/ViewConfigIgnore'),ConditionallyIgnoredEventHandlers=_require.ConditionallyIgnoredEventHandlers;var nativeComponentName='AddressSheetView';var __INTERNAL_VIEW_CONFIG=exports.__INTERNAL_VIEW_CONFIG={uiViewClassName:"AddressSheetView",directEventTypes:{topSubmitAction:{registrationName:"onSubmitAction"},topErrorAction:{registrationName:"onErrorAction"}},validAttributes:Object.assign({visible:true,presentationStyle:true,animationStyle:true,appearance:true,defaultValues:true,additionalFields:true,allowedCountries:true,autocompleteCountries:true,primaryButtonTitle:true,sheetTitle:true,googlePlacesApiKey:true},ConditionallyIgnoredEventHandlers({onSubmitAction:true,onErrorAction:true}))};var _default=exports.default=NativeComponentRegistry.get(nativeComponentName,function(){return __INTERNAL_VIEW_CONFIG;});console.warn("Deep imports from the 'react-native' package are deprecated ('react-native/Libraries/Utilities/codegenNativeComponent'). Source: /Users/wooj/stripe/stripe-react-native/src/specs/NativeAddressSheet.ts 6:0");
2
2
  //# sourceMappingURL=NativeAddressSheet.js.map
@@ -1,2 +1,2 @@
1
- var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.default=exports.__INTERNAL_VIEW_CONFIG=void 0;var _codegenNativeComponent=_interopRequireDefault(require("react-native/Libraries/Utilities/codegenNativeComponent"));var NativeComponentRegistry=require('react-native/Libraries/NativeComponent/NativeComponentRegistry');var _require=require('react-native/Libraries/NativeComponent/ViewConfigIgnore'),ConditionallyIgnoredEventHandlers=_require.ConditionallyIgnoredEventHandlers;var nativeComponentName='ApplePayButton';var __INTERNAL_VIEW_CONFIG=exports.__INTERNAL_VIEW_CONFIG={uiViewClassName:"ApplePayButton",directEventTypes:{topShippingMethodSelectedAction:{registrationName:"onShippingMethodSelectedAction"},topShippingContactSelectedAction:{registrationName:"onShippingContactSelectedAction"},topCouponCodeEnteredAction:{registrationName:"onCouponCodeEnteredAction"},topOrderTrackingAction:{registrationName:"onOrderTrackingAction"}},validAttributes:Object.assign({disabled:true,type:true,buttonStyle:true,buttonBorderRadius:true,hasShippingMethodCallback:true,hasShippingContactCallback:true,hasCouponCodeCallback:true,hasOrderTrackingCallback:true},ConditionallyIgnoredEventHandlers({onShippingMethodSelectedAction:true,onShippingContactSelectedAction:true,onCouponCodeEnteredAction:true,onOrderTrackingAction:true}))};var _default=exports.default=NativeComponentRegistry.get(nativeComponentName,function(){return __INTERNAL_VIEW_CONFIG;});console.warn("Deep imports from the 'react-native' package are deprecated ('react-native/Libraries/Utilities/codegenNativeComponent'). Source: /Users/davidestes/stripe/stripe-react-native/src/specs/NativeApplePayButton.ts 7:0");
1
+ var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.default=exports.__INTERNAL_VIEW_CONFIG=void 0;var _codegenNativeComponent=_interopRequireDefault(require("react-native/Libraries/Utilities/codegenNativeComponent"));var NativeComponentRegistry=require('react-native/Libraries/NativeComponent/NativeComponentRegistry');var _require=require('react-native/Libraries/NativeComponent/ViewConfigIgnore'),ConditionallyIgnoredEventHandlers=_require.ConditionallyIgnoredEventHandlers;var nativeComponentName='ApplePayButton';var __INTERNAL_VIEW_CONFIG=exports.__INTERNAL_VIEW_CONFIG={uiViewClassName:"ApplePayButton",directEventTypes:{topShippingMethodSelectedAction:{registrationName:"onShippingMethodSelectedAction"},topShippingContactSelectedAction:{registrationName:"onShippingContactSelectedAction"},topCouponCodeEnteredAction:{registrationName:"onCouponCodeEnteredAction"},topOrderTrackingAction:{registrationName:"onOrderTrackingAction"}},validAttributes:Object.assign({disabled:true,type:true,buttonStyle:true,buttonBorderRadius:true,hasShippingMethodCallback:true,hasShippingContactCallback:true,hasCouponCodeCallback:true,hasOrderTrackingCallback:true},ConditionallyIgnoredEventHandlers({onShippingMethodSelectedAction:true,onShippingContactSelectedAction:true,onCouponCodeEnteredAction:true,onOrderTrackingAction:true}))};var _default=exports.default=NativeComponentRegistry.get(nativeComponentName,function(){return __INTERNAL_VIEW_CONFIG;});console.warn("Deep imports from the 'react-native' package are deprecated ('react-native/Libraries/Utilities/codegenNativeComponent'). Source: /Users/wooj/stripe/stripe-react-native/src/specs/NativeApplePayButton.ts 7:0");
2
2
  //# sourceMappingURL=NativeApplePayButton.js.map
@@ -1,2 +1,2 @@
1
- var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.default=exports.__INTERNAL_VIEW_CONFIG=void 0;var _codegenNativeComponent=_interopRequireDefault(require("react-native/Libraries/Utilities/codegenNativeComponent"));var NativeComponentRegistry=require('react-native/Libraries/NativeComponent/NativeComponentRegistry');var _require=require('react-native/Libraries/NativeComponent/ViewConfigIgnore'),ConditionallyIgnoredEventHandlers=_require.ConditionallyIgnoredEventHandlers;var nativeComponentName='AuBECSDebitForm';var __INTERNAL_VIEW_CONFIG=exports.__INTERNAL_VIEW_CONFIG={uiViewClassName:"AuBECSDebitForm",directEventTypes:{topCompleteAction:{registrationName:"onCompleteAction"}},validAttributes:Object.assign({companyName:true,formStyle:true},ConditionallyIgnoredEventHandlers({onCompleteAction:true}))};var _default=exports.default=NativeComponentRegistry.get(nativeComponentName,function(){return __INTERNAL_VIEW_CONFIG;});console.warn("Deep imports from the 'react-native' package are deprecated ('react-native/Libraries/Utilities/codegenNativeComponent'). Source: /Users/davidestes/stripe/stripe-react-native/src/specs/NativeAuBECSDebitForm.ts 3:0");
1
+ var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.default=exports.__INTERNAL_VIEW_CONFIG=void 0;var _codegenNativeComponent=_interopRequireDefault(require("react-native/Libraries/Utilities/codegenNativeComponent"));var NativeComponentRegistry=require('react-native/Libraries/NativeComponent/NativeComponentRegistry');var _require=require('react-native/Libraries/NativeComponent/ViewConfigIgnore'),ConditionallyIgnoredEventHandlers=_require.ConditionallyIgnoredEventHandlers;var nativeComponentName='AuBECSDebitForm';var __INTERNAL_VIEW_CONFIG=exports.__INTERNAL_VIEW_CONFIG={uiViewClassName:"AuBECSDebitForm",directEventTypes:{topCompleteAction:{registrationName:"onCompleteAction"}},validAttributes:Object.assign({companyName:true,formStyle:true},ConditionallyIgnoredEventHandlers({onCompleteAction:true}))};var _default=exports.default=NativeComponentRegistry.get(nativeComponentName,function(){return __INTERNAL_VIEW_CONFIG;});console.warn("Deep imports from the 'react-native' package are deprecated ('react-native/Libraries/Utilities/codegenNativeComponent'). Source: /Users/wooj/stripe/stripe-react-native/src/specs/NativeAuBECSDebitForm.ts 3:0");
2
2
  //# sourceMappingURL=NativeAuBECSDebitForm.js.map
@@ -1,2 +1,2 @@
1
- var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.default=exports.__INTERNAL_VIEW_CONFIG=exports.Commands=void 0;var _codegenNativeCommands=_interopRequireDefault(require("react-native/Libraries/Utilities/codegenNativeCommands"));var _codegenNativeComponent=_interopRequireDefault(require("react-native/Libraries/Utilities/codegenNativeComponent"));var NativeComponentRegistry=require('react-native/Libraries/NativeComponent/NativeComponentRegistry');var _require=require('react-native/Libraries/NativeComponent/ViewConfigIgnore'),ConditionallyIgnoredEventHandlers=_require.ConditionallyIgnoredEventHandlers;var _require2=require("react-native/Libraries/ReactNative/RendererProxy"),dispatchCommand=_require2.dispatchCommand;var nativeComponentName='CardField';var __INTERNAL_VIEW_CONFIG=exports.__INTERNAL_VIEW_CONFIG={uiViewClassName:"CardField",directEventTypes:{topCardChange:{registrationName:"onCardChange"},topFocusChange:{registrationName:"onFocusChange"}},validAttributes:Object.assign({autofocus:true,cardStyle:true,countryCode:true,dangerouslyGetFullCardDetails:true,disabled:true,onBehalfOf:true,placeholders:true,postalCodeEnabled:true,preferredNetworks:true},ConditionallyIgnoredEventHandlers({onCardChange:true,onFocusChange:true}))};var _default=exports.default=NativeComponentRegistry.get(nativeComponentName,function(){return __INTERNAL_VIEW_CONFIG;});var Commands=exports.Commands={blur:function blur(ref){dispatchCommand(ref,"blur",[]);},focus:function focus(ref){dispatchCommand(ref,"focus",[]);},clear:function clear(ref){dispatchCommand(ref,"clear",[]);}};console.warn("Deep imports from the 'react-native' package are deprecated ('react-native/Libraries/Utilities/codegenNativeCommands'). Source: /Users/davidestes/stripe/stripe-react-native/src/specs/NativeCardField.ts 6:0");console.warn("Deep imports from the 'react-native' package are deprecated ('react-native/Libraries/Utilities/codegenNativeComponent'). Source: /Users/davidestes/stripe/stripe-react-native/src/specs/NativeCardField.ts 7:0");
1
+ var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.default=exports.__INTERNAL_VIEW_CONFIG=exports.Commands=void 0;var _codegenNativeCommands=_interopRequireDefault(require("react-native/Libraries/Utilities/codegenNativeCommands"));var _codegenNativeComponent=_interopRequireDefault(require("react-native/Libraries/Utilities/codegenNativeComponent"));var NativeComponentRegistry=require('react-native/Libraries/NativeComponent/NativeComponentRegistry');var _require=require('react-native/Libraries/NativeComponent/ViewConfigIgnore'),ConditionallyIgnoredEventHandlers=_require.ConditionallyIgnoredEventHandlers;var _require2=require("react-native/Libraries/ReactNative/RendererProxy"),dispatchCommand=_require2.dispatchCommand;var nativeComponentName='CardField';var __INTERNAL_VIEW_CONFIG=exports.__INTERNAL_VIEW_CONFIG={uiViewClassName:"CardField",directEventTypes:{topCardChange:{registrationName:"onCardChange"},topFocusChange:{registrationName:"onFocusChange"}},validAttributes:Object.assign({autofocus:true,cardStyle:true,countryCode:true,dangerouslyGetFullCardDetails:true,disabled:true,onBehalfOf:true,placeholders:true,postalCodeEnabled:true,preferredNetworks:true},ConditionallyIgnoredEventHandlers({onCardChange:true,onFocusChange:true}))};var _default=exports.default=NativeComponentRegistry.get(nativeComponentName,function(){return __INTERNAL_VIEW_CONFIG;});var Commands=exports.Commands={blur:function blur(ref){dispatchCommand(ref,"blur",[]);},focus:function focus(ref){dispatchCommand(ref,"focus",[]);},clear:function clear(ref){dispatchCommand(ref,"clear",[]);}};console.warn("Deep imports from the 'react-native' package are deprecated ('react-native/Libraries/Utilities/codegenNativeCommands'). Source: /Users/wooj/stripe/stripe-react-native/src/specs/NativeCardField.ts 6:0");console.warn("Deep imports from the 'react-native' package are deprecated ('react-native/Libraries/Utilities/codegenNativeComponent'). Source: /Users/wooj/stripe/stripe-react-native/src/specs/NativeCardField.ts 7:0");
2
2
  //# sourceMappingURL=NativeCardField.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["_codegenNativeCommands","_interopRequireDefault","require","_codegenNativeComponent","NativeComponentRegistry","_require","ConditionallyIgnoredEventHandlers","_require2","dispatchCommand","nativeComponentName","__INTERNAL_VIEW_CONFIG","exports","uiViewClassName","directEventTypes","topCardChange","registrationName","topFocusChange","validAttributes","Object","assign","autofocus","cardStyle","countryCode","dangerouslyGetFullCardDetails","disabled","onBehalfOf","placeholders","postalCodeEnabled","preferredNetworks","onCardChange","onFocusChange","_default","default","get","Commands","blur","ref","focus","clear","console","warn"],"sourceRoot":"../../../src","sources":["specs/NativeCardField.ts"],"mappings":"mNAKA,IAAAA,sBAAA,CAAAC,sBAAA,CAAAC,OAAA,4DACA,IAAAC,uBAAA,CAAAF,sBAAA,CAAAC,OAAA,6DA0CA,IAAAE,uBAEmB,CAFnBF,OAEmB,CAFnB,gEAEkB,CAAC,CAFnB,IAAAG,QAAA,CAAAH,OAEmB,CAFnB,yDAEkB,CAAC,CAFnBI,iCAEmB,CAAAD,QAAA,CAFnBC,iCAEmB,CAFnB,IAAAC,SAAA,CAAAL,OAEmB,CAFnB,kDAEkB,CAAC,CAFnBM,eAEmB,CAAAD,SAAA,CAFnBC,eAEmB,CAFnB,IAAAC,mBAEmB,CAFnB,WAEmB,CAFnB,IAAAC,sBAEmB,CAAAC,OAAA,CAAAD,sBAAA,CAFnB,CAAAE,eAEmB,CAFnB,WAEmB,CAFnBC,gBAEmB,CAFnB,CAAAC,aAEmB,CAFnB,CAAAC,gBAEmB,CAFnB,cAEkB,CAAC,CAFnBC,cAEmB,CAFnB,CAAAD,gBAEmB,CAFnB,eAEkB,EAAC,CAFnBE,eAEmB,CAAAC,MAAA,CAAAC,MAAA,EAFnBC,SAEmB,CAFnB,IAEmB,CAFnBC,SAEmB,CAFnB,IAEmB,CAFnBC,WAEmB,CAFnB,IAEmB,CAFnBC,6BAEmB,CAFnB,IAEmB,CAFnBC,QAEmB,CAFnB,IAEmB,CAFnBC,UAEmB,CAFnB,IAEmB,CAFnBC,YAEmB,CAFnB,IAEmB,CAFnBC,iBAEmB,CAFnB,IAEmB,CAFnBC,iBAEmB,CAFnB,IAEmB,EAFnBtB,iCAEmB,CAFnB,CAAAuB,YAEmB,CAFnB,IAEmB,CAFnBC,aAEmB,CAFnB,IAEkB,EAAC,CAAD,CAAC,KAAAC,QAAA,CAAApB,OAAA,CAAAqB,OAAA,CAFnB5B,uBAEmB,CAFnB6B,GAEmB,CAFnBxB,mBAEmB,CAFnB,kBAAAC,sBAEmB,EAAD,CAAC,CAFnB,IAAAwB,QAEmB,CAAAvB,OAAA,CAAAuB,QAAA,CAFnB,CAAAC,IAEmB,SAFnB,CAAAA,IAEmBA,CAFnBC,GAEmB,CAFnB,CAAA5B,eAEmB,CAFnB4B,GAEmB,CAFnB,MAEmB,CAFnB,EAEkB,CAAC,CAAD,CAAC,CAFnBC,KAEmB,SAFnB,CAAAA,KAEmBA,CAFnBD,GAEmB,CAFnB,CAAA5B,eAEmB,CAFnB4B,GAEmB,CAFnB,OAEmB,CAFnB,EAEkB,CAAC,CAAD,CAAC,CAFnBE,KAEmB,SAFnB,CAAAA,KAEmBA,CAFnBF,GAEmB,CAFnB,CAAA5B,eAEmB,CAFnB4B,GAEmB,CAFnB,OAEmB,CAFnB,EAEkB,CAAC,CAAD,EAAC,CA7CnBG,OAAA,CAAAC,IAAA,kNACAD,OAAA,CAAAC,IAAA","ignoreList":[]}
1
+ {"version":3,"names":["_codegenNativeCommands","_interopRequireDefault","require","_codegenNativeComponent","NativeComponentRegistry","_require","ConditionallyIgnoredEventHandlers","_require2","dispatchCommand","nativeComponentName","__INTERNAL_VIEW_CONFIG","exports","uiViewClassName","directEventTypes","topCardChange","registrationName","topFocusChange","validAttributes","Object","assign","autofocus","cardStyle","countryCode","dangerouslyGetFullCardDetails","disabled","onBehalfOf","placeholders","postalCodeEnabled","preferredNetworks","onCardChange","onFocusChange","_default","default","get","Commands","blur","ref","focus","clear","console","warn"],"sourceRoot":"../../../src","sources":["specs/NativeCardField.ts"],"mappings":"mNAKA,IAAAA,sBAAA,CAAAC,sBAAA,CAAAC,OAAA,4DACA,IAAAC,uBAAA,CAAAF,sBAAA,CAAAC,OAAA,6DA0CA,IAAAE,uBAEmB,CAFnBF,OAEmB,CAFnB,gEAEkB,CAAC,CAFnB,IAAAG,QAAA,CAAAH,OAEmB,CAFnB,yDAEkB,CAAC,CAFnBI,iCAEmB,CAAAD,QAAA,CAFnBC,iCAEmB,CAFnB,IAAAC,SAAA,CAAAL,OAEmB,CAFnB,kDAEkB,CAAC,CAFnBM,eAEmB,CAAAD,SAAA,CAFnBC,eAEmB,CAFnB,IAAAC,mBAEmB,CAFnB,WAEmB,CAFnB,IAAAC,sBAEmB,CAAAC,OAAA,CAAAD,sBAAA,CAFnB,CAAAE,eAEmB,CAFnB,WAEmB,CAFnBC,gBAEmB,CAFnB,CAAAC,aAEmB,CAFnB,CAAAC,gBAEmB,CAFnB,cAEkB,CAAC,CAFnBC,cAEmB,CAFnB,CAAAD,gBAEmB,CAFnB,eAEkB,EAAC,CAFnBE,eAEmB,CAAAC,MAAA,CAAAC,MAAA,EAFnBC,SAEmB,CAFnB,IAEmB,CAFnBC,SAEmB,CAFnB,IAEmB,CAFnBC,WAEmB,CAFnB,IAEmB,CAFnBC,6BAEmB,CAFnB,IAEmB,CAFnBC,QAEmB,CAFnB,IAEmB,CAFnBC,UAEmB,CAFnB,IAEmB,CAFnBC,YAEmB,CAFnB,IAEmB,CAFnBC,iBAEmB,CAFnB,IAEmB,CAFnBC,iBAEmB,CAFnB,IAEmB,EAFnBtB,iCAEmB,CAFnB,CAAAuB,YAEmB,CAFnB,IAEmB,CAFnBC,aAEmB,CAFnB,IAEkB,EAAC,CAAD,CAAC,KAAAC,QAAA,CAAApB,OAAA,CAAAqB,OAAA,CAFnB5B,uBAEmB,CAFnB6B,GAEmB,CAFnBxB,mBAEmB,CAFnB,kBAAAC,sBAEmB,EAAD,CAAC,CAFnB,IAAAwB,QAEmB,CAAAvB,OAAA,CAAAuB,QAAA,CAFnB,CAAAC,IAEmB,SAFnB,CAAAA,IAEmBA,CAFnBC,GAEmB,CAFnB,CAAA5B,eAEmB,CAFnB4B,GAEmB,CAFnB,MAEmB,CAFnB,EAEkB,CAAC,CAAD,CAAC,CAFnBC,KAEmB,SAFnB,CAAAA,KAEmBA,CAFnBD,GAEmB,CAFnB,CAAA5B,eAEmB,CAFnB4B,GAEmB,CAFnB,OAEmB,CAFnB,EAEkB,CAAC,CAAD,CAAC,CAFnBE,KAEmB,SAFnB,CAAAA,KAEmBA,CAFnBF,GAEmB,CAFnB,CAAA5B,eAEmB,CAFnB4B,GAEmB,CAFnB,OAEmB,CAFnB,EAEkB,CAAC,CAAD,EAAC,CA7CnBG,OAAA,CAAAC,IAAA,4MACAD,OAAA,CAAAC,IAAA","ignoreList":[]}
@@ -1,2 +1,2 @@
1
- var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.default=exports.__INTERNAL_VIEW_CONFIG=exports.Commands=void 0;var _codegenNativeCommands=_interopRequireDefault(require("react-native/Libraries/Utilities/codegenNativeCommands"));var _codegenNativeComponent=_interopRequireDefault(require("react-native/Libraries/Utilities/codegenNativeComponent"));var NativeComponentRegistry=require('react-native/Libraries/NativeComponent/NativeComponentRegistry');var _require=require('react-native/Libraries/NativeComponent/ViewConfigIgnore'),ConditionallyIgnoredEventHandlers=_require.ConditionallyIgnoredEventHandlers;var _require2=require("react-native/Libraries/ReactNative/RendererProxy"),dispatchCommand=_require2.dispatchCommand;var nativeComponentName='CardForm';var __INTERNAL_VIEW_CONFIG=exports.__INTERNAL_VIEW_CONFIG={uiViewClassName:"CardForm",directEventTypes:{topFocusChange:{registrationName:"onFocusChange"},topFormComplete:{registrationName:"onFormComplete"}},validAttributes:Object.assign({autofocus:true,cardStyle:true,dangerouslyGetFullCardDetails:true,defaultValues:true,disabled:true,placeholders:true,postalCodeEnabled:true,preferredNetworks:true},ConditionallyIgnoredEventHandlers({onFocusChange:true,onFormComplete:true}))};var _default=exports.default=NativeComponentRegistry.get(nativeComponentName,function(){return __INTERNAL_VIEW_CONFIG;});var Commands=exports.Commands={blur:function blur(ref){dispatchCommand(ref,"blur",[]);},focus:function focus(ref){dispatchCommand(ref,"focus",[]);}};console.warn("Deep imports from the 'react-native' package are deprecated ('react-native/Libraries/Utilities/codegenNativeCommands'). Source: /Users/davidestes/stripe/stripe-react-native/src/specs/NativeCardForm.ts 6:0");console.warn("Deep imports from the 'react-native' package are deprecated ('react-native/Libraries/Utilities/codegenNativeComponent'). Source: /Users/davidestes/stripe/stripe-react-native/src/specs/NativeCardForm.ts 7:0");
1
+ var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.default=exports.__INTERNAL_VIEW_CONFIG=exports.Commands=void 0;var _codegenNativeCommands=_interopRequireDefault(require("react-native/Libraries/Utilities/codegenNativeCommands"));var _codegenNativeComponent=_interopRequireDefault(require("react-native/Libraries/Utilities/codegenNativeComponent"));var NativeComponentRegistry=require('react-native/Libraries/NativeComponent/NativeComponentRegistry');var _require=require('react-native/Libraries/NativeComponent/ViewConfigIgnore'),ConditionallyIgnoredEventHandlers=_require.ConditionallyIgnoredEventHandlers;var _require2=require("react-native/Libraries/ReactNative/RendererProxy"),dispatchCommand=_require2.dispatchCommand;var nativeComponentName='CardForm';var __INTERNAL_VIEW_CONFIG=exports.__INTERNAL_VIEW_CONFIG={uiViewClassName:"CardForm",directEventTypes:{topFocusChange:{registrationName:"onFocusChange"},topFormComplete:{registrationName:"onFormComplete"}},validAttributes:Object.assign({autofocus:true,cardStyle:true,dangerouslyGetFullCardDetails:true,defaultValues:true,disabled:true,placeholders:true,postalCodeEnabled:true,preferredNetworks:true},ConditionallyIgnoredEventHandlers({onFocusChange:true,onFormComplete:true}))};var _default=exports.default=NativeComponentRegistry.get(nativeComponentName,function(){return __INTERNAL_VIEW_CONFIG;});var Commands=exports.Commands={blur:function blur(ref){dispatchCommand(ref,"blur",[]);},focus:function focus(ref){dispatchCommand(ref,"focus",[]);}};console.warn("Deep imports from the 'react-native' package are deprecated ('react-native/Libraries/Utilities/codegenNativeCommands'). Source: /Users/wooj/stripe/stripe-react-native/src/specs/NativeCardForm.ts 6:0");console.warn("Deep imports from the 'react-native' package are deprecated ('react-native/Libraries/Utilities/codegenNativeComponent'). Source: /Users/wooj/stripe/stripe-react-native/src/specs/NativeCardForm.ts 7:0");
2
2
  //# sourceMappingURL=NativeCardForm.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["_codegenNativeCommands","_interopRequireDefault","require","_codegenNativeComponent","NativeComponentRegistry","_require","ConditionallyIgnoredEventHandlers","_require2","dispatchCommand","nativeComponentName","__INTERNAL_VIEW_CONFIG","exports","uiViewClassName","directEventTypes","topFocusChange","registrationName","topFormComplete","validAttributes","Object","assign","autofocus","cardStyle","dangerouslyGetFullCardDetails","defaultValues","disabled","placeholders","postalCodeEnabled","preferredNetworks","onFocusChange","onFormComplete","_default","default","get","Commands","blur","ref","focus","console","warn"],"sourceRoot":"../../../src","sources":["specs/NativeCardForm.ts"],"mappings":"mNAKA,IAAAA,sBAAA,CAAAC,sBAAA,CAAAC,OAAA,4DACA,IAAAC,uBAAA,CAAAF,sBAAA,CAAAC,OAAA,6DAoCA,IAAAE,uBAAgF,CAAhFF,OAAgF,CAAhF,gEAA+E,CAAC,CAAhF,IAAAG,QAAA,CAAAH,OAAgF,CAAhF,yDAA+E,CAAC,CAAhFI,iCAAgF,CAAAD,QAAA,CAAhFC,iCAAgF,CAAhF,IAAAC,SAAA,CAAAL,OAAgF,CAAhF,kDAA+E,CAAC,CAAhFM,eAAgF,CAAAD,SAAA,CAAhFC,eAAgF,CAAhF,IAAAC,mBAAgF,CAAhF,UAAgF,CAAhF,IAAAC,sBAAgF,CAAAC,OAAA,CAAAD,sBAAA,CAAhF,CAAAE,eAAgF,CAAhF,UAAgF,CAAhFC,gBAAgF,CAAhF,CAAAC,cAAgF,CAAhF,CAAAC,gBAAgF,CAAhF,eAA+E,CAAC,CAAhFC,eAAgF,CAAhF,CAAAD,gBAAgF,CAAhF,gBAA+E,EAAC,CAAhFE,eAAgF,CAAAC,MAAA,CAAAC,MAAA,EAAhFC,SAAgF,CAAhF,IAAgF,CAAhFC,SAAgF,CAAhF,IAAgF,CAAhFC,6BAAgF,CAAhF,IAAgF,CAAhFC,aAAgF,CAAhF,IAAgF,CAAhFC,QAAgF,CAAhF,IAAgF,CAAhFC,YAAgF,CAAhF,IAAgF,CAAhFC,iBAAgF,CAAhF,IAAgF,CAAhFC,iBAAgF,CAAhF,IAAgF,EAAhFrB,iCAAgF,CAAhF,CAAAsB,aAAgF,CAAhF,IAAgF,CAAhFC,cAAgF,CAAhF,IAA+E,EAAC,CAAD,CAAC,KAAAC,QAAA,CAAAnB,OAAA,CAAAoB,OAAA,CAAhF3B,uBAAgF,CAAhF4B,GAAgF,CAAhFvB,mBAAgF,CAAhF,kBAAAC,sBAAgF,EAAD,CAAC,CAAhF,IAAAuB,QAAgF,CAAAtB,OAAA,CAAAsB,QAAA,CAAhF,CAAAC,IAAgF,SAAhF,CAAAA,IAAgFA,CAAhFC,GAAgF,CAAhF,CAAA3B,eAAgF,CAAhF2B,GAAgF,CAAhF,MAAgF,CAAhF,EAA+E,CAAC,CAAD,CAAC,CAAhFC,KAAgF,SAAhF,CAAAA,KAAgFA,CAAhFD,GAAgF,CAAhF,CAAA3B,eAAgF,CAAhF2B,GAAgF,CAAhF,OAAgF,CAAhF,EAA+E,CAAC,CAAD,EAAC,CArChFE,OAAA,CAAAC,IAAA,iNACAD,OAAA,CAAAC,IAAA","ignoreList":[]}
1
+ {"version":3,"names":["_codegenNativeCommands","_interopRequireDefault","require","_codegenNativeComponent","NativeComponentRegistry","_require","ConditionallyIgnoredEventHandlers","_require2","dispatchCommand","nativeComponentName","__INTERNAL_VIEW_CONFIG","exports","uiViewClassName","directEventTypes","topFocusChange","registrationName","topFormComplete","validAttributes","Object","assign","autofocus","cardStyle","dangerouslyGetFullCardDetails","defaultValues","disabled","placeholders","postalCodeEnabled","preferredNetworks","onFocusChange","onFormComplete","_default","default","get","Commands","blur","ref","focus","console","warn"],"sourceRoot":"../../../src","sources":["specs/NativeCardForm.ts"],"mappings":"mNAKA,IAAAA,sBAAA,CAAAC,sBAAA,CAAAC,OAAA,4DACA,IAAAC,uBAAA,CAAAF,sBAAA,CAAAC,OAAA,6DAoCA,IAAAE,uBAAgF,CAAhFF,OAAgF,CAAhF,gEAA+E,CAAC,CAAhF,IAAAG,QAAA,CAAAH,OAAgF,CAAhF,yDAA+E,CAAC,CAAhFI,iCAAgF,CAAAD,QAAA,CAAhFC,iCAAgF,CAAhF,IAAAC,SAAA,CAAAL,OAAgF,CAAhF,kDAA+E,CAAC,CAAhFM,eAAgF,CAAAD,SAAA,CAAhFC,eAAgF,CAAhF,IAAAC,mBAAgF,CAAhF,UAAgF,CAAhF,IAAAC,sBAAgF,CAAAC,OAAA,CAAAD,sBAAA,CAAhF,CAAAE,eAAgF,CAAhF,UAAgF,CAAhFC,gBAAgF,CAAhF,CAAAC,cAAgF,CAAhF,CAAAC,gBAAgF,CAAhF,eAA+E,CAAC,CAAhFC,eAAgF,CAAhF,CAAAD,gBAAgF,CAAhF,gBAA+E,EAAC,CAAhFE,eAAgF,CAAAC,MAAA,CAAAC,MAAA,EAAhFC,SAAgF,CAAhF,IAAgF,CAAhFC,SAAgF,CAAhF,IAAgF,CAAhFC,6BAAgF,CAAhF,IAAgF,CAAhFC,aAAgF,CAAhF,IAAgF,CAAhFC,QAAgF,CAAhF,IAAgF,CAAhFC,YAAgF,CAAhF,IAAgF,CAAhFC,iBAAgF,CAAhF,IAAgF,CAAhFC,iBAAgF,CAAhF,IAAgF,EAAhFrB,iCAAgF,CAAhF,CAAAsB,aAAgF,CAAhF,IAAgF,CAAhFC,cAAgF,CAAhF,IAA+E,EAAC,CAAD,CAAC,KAAAC,QAAA,CAAAnB,OAAA,CAAAoB,OAAA,CAAhF3B,uBAAgF,CAAhF4B,GAAgF,CAAhFvB,mBAAgF,CAAhF,kBAAAC,sBAAgF,EAAD,CAAC,CAAhF,IAAAuB,QAAgF,CAAAtB,OAAA,CAAAsB,QAAA,CAAhF,CAAAC,IAAgF,SAAhF,CAAAA,IAAgFA,CAAhFC,GAAgF,CAAhF,CAAA3B,eAAgF,CAAhF2B,GAAgF,CAAhF,MAAgF,CAAhF,EAA+E,CAAC,CAAD,CAAC,CAAhFC,KAAgF,SAAhF,CAAAA,KAAgFA,CAAhFD,GAAgF,CAAhF,CAAA3B,eAAgF,CAAhF2B,GAAgF,CAAhF,OAAgF,CAAhF,EAA+E,CAAC,CAAD,EAAC,CArChFE,OAAA,CAAAC,IAAA,2MACAD,OAAA,CAAAC,IAAA","ignoreList":[]}
@@ -1,2 +1,2 @@
1
- var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.default=exports.__INTERNAL_VIEW_CONFIG=void 0;var _codegenNativeComponent=_interopRequireDefault(require("react-native/Libraries/Utilities/codegenNativeComponent"));var NativeComponentRegistry=require('react-native/Libraries/NativeComponent/NativeComponentRegistry');var _require=require('react-native/Libraries/NativeComponent/ViewConfigIgnore'),ConditionallyIgnoredEventHandlers=_require.ConditionallyIgnoredEventHandlers;var nativeComponentName='ConnectAccountOnboardingView';var __INTERNAL_VIEW_CONFIG=exports.__INTERNAL_VIEW_CONFIG={uiViewClassName:"ConnectAccountOnboardingView",directEventTypes:{topExitAction:{registrationName:"onExitAction"}},validAttributes:Object.assign({visible:true,title:true,backgroundColor:true,textColor:true},ConditionallyIgnoredEventHandlers({onExitAction:true}))};var _default=exports.default=NativeComponentRegistry.get(nativeComponentName,function(){return __INTERNAL_VIEW_CONFIG;});console.warn("Deep imports from the 'react-native' package are deprecated ('react-native/Libraries/Utilities/codegenNativeComponent'). Source: /Users/davidestes/stripe/stripe-react-native/src/specs/NativeConnectAccountOnboardingView.ts 3:0");
1
+ var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.default=exports.__INTERNAL_VIEW_CONFIG=void 0;var _codegenNativeComponent=_interopRequireDefault(require("react-native/Libraries/Utilities/codegenNativeComponent"));var NativeComponentRegistry=require('react-native/Libraries/NativeComponent/NativeComponentRegistry');var _require=require('react-native/Libraries/NativeComponent/ViewConfigIgnore'),ConditionallyIgnoredEventHandlers=_require.ConditionallyIgnoredEventHandlers;var nativeComponentName='ConnectAccountOnboardingView';var __INTERNAL_VIEW_CONFIG=exports.__INTERNAL_VIEW_CONFIG={uiViewClassName:"ConnectAccountOnboardingView",directEventTypes:{topExitAction:{registrationName:"onExitAction"}},validAttributes:Object.assign({visible:true,title:true,backgroundColor:true,textColor:true},ConditionallyIgnoredEventHandlers({onExitAction:true}))};var _default=exports.default=NativeComponentRegistry.get(nativeComponentName,function(){return __INTERNAL_VIEW_CONFIG;});console.warn("Deep imports from the 'react-native' package are deprecated ('react-native/Libraries/Utilities/codegenNativeComponent'). Source: /Users/wooj/stripe/stripe-react-native/src/specs/NativeConnectAccountOnboardingView.ts 3:0");
2
2
  //# sourceMappingURL=NativeConnectAccountOnboardingView.js.map
@@ -1,2 +1,2 @@
1
- var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.default=exports.__INTERNAL_VIEW_CONFIG=exports.Commands=void 0;var _codegenNativeCommands=_interopRequireDefault(require("react-native/Libraries/Utilities/codegenNativeCommands"));var _codegenNativeComponent=_interopRequireDefault(require("react-native/Libraries/Utilities/codegenNativeComponent"));var NativeComponentRegistry=require('react-native/Libraries/NativeComponent/NativeComponentRegistry');var _require=require("react-native/Libraries/ReactNative/RendererProxy"),dispatchCommand=_require.dispatchCommand;var nativeComponentName='EmbeddedPaymentElementView';var __INTERNAL_VIEW_CONFIG=exports.__INTERNAL_VIEW_CONFIG={uiViewClassName:"EmbeddedPaymentElementView",validAttributes:{configuration:true,intentConfiguration:true}};var _default=exports.default=NativeComponentRegistry.get(nativeComponentName,function(){return __INTERNAL_VIEW_CONFIG;});var Commands=exports.Commands={confirm:function confirm(ref){dispatchCommand(ref,"confirm",[]);},clearPaymentOption:function clearPaymentOption(ref){dispatchCommand(ref,"clearPaymentOption",[]);},update:function update(ref,intentConfigurationJson){dispatchCommand(ref,"update",[intentConfigurationJson]);}};console.warn("Deep imports from the 'react-native' package are deprecated ('react-native/Libraries/Utilities/codegenNativeCommands'). Source: /Users/davidestes/stripe/stripe-react-native/src/specs/NativeEmbeddedPaymentElement.ts 2:0");console.warn("Deep imports from the 'react-native' package are deprecated ('react-native/Libraries/Utilities/codegenNativeComponent'). Source: /Users/davidestes/stripe/stripe-react-native/src/specs/NativeEmbeddedPaymentElement.ts 3:0");
1
+ var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.default=exports.__INTERNAL_VIEW_CONFIG=exports.Commands=void 0;var _codegenNativeCommands=_interopRequireDefault(require("react-native/Libraries/Utilities/codegenNativeCommands"));var _codegenNativeComponent=_interopRequireDefault(require("react-native/Libraries/Utilities/codegenNativeComponent"));var NativeComponentRegistry=require('react-native/Libraries/NativeComponent/NativeComponentRegistry');var _require=require("react-native/Libraries/ReactNative/RendererProxy"),dispatchCommand=_require.dispatchCommand;var nativeComponentName='EmbeddedPaymentElementView';var __INTERNAL_VIEW_CONFIG=exports.__INTERNAL_VIEW_CONFIG={uiViewClassName:"EmbeddedPaymentElementView",validAttributes:{configuration:true,intentConfiguration:true}};var _default=exports.default=NativeComponentRegistry.get(nativeComponentName,function(){return __INTERNAL_VIEW_CONFIG;});var Commands=exports.Commands={confirm:function confirm(ref){dispatchCommand(ref,"confirm",[]);},clearPaymentOption:function clearPaymentOption(ref){dispatchCommand(ref,"clearPaymentOption",[]);},update:function update(ref,intentConfigurationJson){dispatchCommand(ref,"update",[intentConfigurationJson]);}};console.warn("Deep imports from the 'react-native' package are deprecated ('react-native/Libraries/Utilities/codegenNativeCommands'). Source: /Users/wooj/stripe/stripe-react-native/src/specs/NativeEmbeddedPaymentElement.ts 2:0");console.warn("Deep imports from the 'react-native' package are deprecated ('react-native/Libraries/Utilities/codegenNativeComponent'). Source: /Users/wooj/stripe/stripe-react-native/src/specs/NativeEmbeddedPaymentElement.ts 3:0");
2
2
  //# sourceMappingURL=NativeEmbeddedPaymentElement.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["_codegenNativeCommands","_interopRequireDefault","require","_codegenNativeComponent","NativeComponentRegistry","_require","dispatchCommand","nativeComponentName","__INTERNAL_VIEW_CONFIG","exports","uiViewClassName","validAttributes","configuration","intentConfiguration","_default","default","get","Commands","confirm","ref","clearPaymentOption","update","intentConfigurationJson","console","warn"],"sourceRoot":"../../../src","sources":["specs/NativeEmbeddedPaymentElement.ts"],"mappings":"mNACA,IAAAA,sBAAA,CAAAC,sBAAA,CAAAC,OAAA,4DACA,IAAAC,uBAAA,CAAAF,sBAAA,CAAAC,OAAA,6DA2BA,IAAAE,uBAEmB,CAFnBF,OAEmB,CAFnB,gEAEkB,CAAC,CAFnB,IAAAG,QAAA,CAAAH,OAEmB,CAFnB,kDAEkB,CAAC,CAFnBI,eAEmB,CAAAD,QAAA,CAFnBC,eAEmB,CAFnB,IAAAC,mBAEmB,CAFnB,4BAEmB,CAFnB,IAAAC,sBAEmB,CAAAC,OAAA,CAAAD,sBAAA,CAFnB,CAAAE,eAEmB,CAFnB,4BAEmB,CAFnBC,eAEmB,CAFnB,CAAAC,aAEmB,CAFnB,IAEmB,CAFnBC,mBAEmB,CAFnB,IAEkB,EAAC,KAAAC,QAAA,CAAAL,OAAA,CAAAM,OAAA,CAFnBX,uBAEmB,CAFnBY,GAEmB,CAFnBT,mBAEmB,CAFnB,kBAAAC,sBAEmB,EAAD,CAAC,CAFnB,IAAAS,QAEmB,CAAAR,OAAA,CAAAQ,QAAA,CAFnB,CAAAC,OAEmB,SAFnB,CAAAA,OAEmBA,CAFnBC,GAEmB,CAFnB,CAAAb,eAEmB,CAFnBa,GAEmB,CAFnB,SAEmB,CAFnB,EAEkB,CAAC,CAAD,CAAC,CAFnBC,kBAEmB,SAFnB,CAAAA,kBAEmBA,CAFnBD,GAEmB,CAFnB,CAAAb,eAEmB,CAFnBa,GAEmB,CAFnB,oBAEmB,CAFnB,EAEkB,CAAC,CAAD,CAAC,CAFnBE,MAEmB,SAFnB,CAAAA,MAEmBA,CAFnBF,GAEmB,CAFnBG,uBAEmB,CAFnB,CAAAhB,eAEmB,CAFnBa,GAEmB,CAFnB,QAEmB,CAFnB,CAAAG,uBAEmB,CAAD,CAAC,CAAD,EAAC,CA9BnBC,OAAA,CAAAC,IAAA,+NACAD,OAAA,CAAAC,IAAA","ignoreList":[]}
1
+ {"version":3,"names":["_codegenNativeCommands","_interopRequireDefault","require","_codegenNativeComponent","NativeComponentRegistry","_require","dispatchCommand","nativeComponentName","__INTERNAL_VIEW_CONFIG","exports","uiViewClassName","validAttributes","configuration","intentConfiguration","_default","default","get","Commands","confirm","ref","clearPaymentOption","update","intentConfigurationJson","console","warn"],"sourceRoot":"../../../src","sources":["specs/NativeEmbeddedPaymentElement.ts"],"mappings":"mNACA,IAAAA,sBAAA,CAAAC,sBAAA,CAAAC,OAAA,4DACA,IAAAC,uBAAA,CAAAF,sBAAA,CAAAC,OAAA,6DA2BA,IAAAE,uBAEmB,CAFnBF,OAEmB,CAFnB,gEAEkB,CAAC,CAFnB,IAAAG,QAAA,CAAAH,OAEmB,CAFnB,kDAEkB,CAAC,CAFnBI,eAEmB,CAAAD,QAAA,CAFnBC,eAEmB,CAFnB,IAAAC,mBAEmB,CAFnB,4BAEmB,CAFnB,IAAAC,sBAEmB,CAAAC,OAAA,CAAAD,sBAAA,CAFnB,CAAAE,eAEmB,CAFnB,4BAEmB,CAFnBC,eAEmB,CAFnB,CAAAC,aAEmB,CAFnB,IAEmB,CAFnBC,mBAEmB,CAFnB,IAEkB,EAAC,KAAAC,QAAA,CAAAL,OAAA,CAAAM,OAAA,CAFnBX,uBAEmB,CAFnBY,GAEmB,CAFnBT,mBAEmB,CAFnB,kBAAAC,sBAEmB,EAAD,CAAC,CAFnB,IAAAS,QAEmB,CAAAR,OAAA,CAAAQ,QAAA,CAFnB,CAAAC,OAEmB,SAFnB,CAAAA,OAEmBA,CAFnBC,GAEmB,CAFnB,CAAAb,eAEmB,CAFnBa,GAEmB,CAFnB,SAEmB,CAFnB,EAEkB,CAAC,CAAD,CAAC,CAFnBC,kBAEmB,SAFnB,CAAAA,kBAEmBA,CAFnBD,GAEmB,CAFnB,CAAAb,eAEmB,CAFnBa,GAEmB,CAFnB,oBAEmB,CAFnB,EAEkB,CAAC,CAAD,CAAC,CAFnBE,MAEmB,SAFnB,CAAAA,MAEmBA,CAFnBF,GAEmB,CAFnBG,uBAEmB,CAFnB,CAAAhB,eAEmB,CAFnBa,GAEmB,CAFnB,QAEmB,CAFnB,CAAAG,uBAEmB,CAAD,CAAC,CAAD,EAAC,CA9BnBC,OAAA,CAAAC,IAAA,yNACAD,OAAA,CAAAC,IAAA","ignoreList":[]}
@@ -1,2 +1,2 @@
1
- var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.default=exports.__INTERNAL_VIEW_CONFIG=void 0;var _codegenNativeComponent=_interopRequireDefault(require("react-native/Libraries/Utilities/codegenNativeComponent"));var NativeComponentRegistry=require('react-native/Libraries/NativeComponent/NativeComponentRegistry');var nativeComponentName='GooglePayButton';var __INTERNAL_VIEW_CONFIG=exports.__INTERNAL_VIEW_CONFIG={uiViewClassName:"GooglePayButton",validAttributes:{type:true,appearance:true,borderRadius:true}};var _default=exports.default=NativeComponentRegistry.get(nativeComponentName,function(){return __INTERNAL_VIEW_CONFIG;});console.warn("Deep imports from the 'react-native' package are deprecated ('react-native/Libraries/Utilities/codegenNativeComponent'). Source: /Users/davidestes/stripe/stripe-react-native/src/specs/NativeGooglePayButton.ts 6:0");
1
+ var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.default=exports.__INTERNAL_VIEW_CONFIG=void 0;var _codegenNativeComponent=_interopRequireDefault(require("react-native/Libraries/Utilities/codegenNativeComponent"));var NativeComponentRegistry=require('react-native/Libraries/NativeComponent/NativeComponentRegistry');var nativeComponentName='GooglePayButton';var __INTERNAL_VIEW_CONFIG=exports.__INTERNAL_VIEW_CONFIG={uiViewClassName:"GooglePayButton",validAttributes:{type:true,appearance:true,borderRadius:true}};var _default=exports.default=NativeComponentRegistry.get(nativeComponentName,function(){return __INTERNAL_VIEW_CONFIG;});console.warn("Deep imports from the 'react-native' package are deprecated ('react-native/Libraries/Utilities/codegenNativeComponent'). Source: /Users/wooj/stripe/stripe-react-native/src/specs/NativeGooglePayButton.ts 6:0");
2
2
  //# sourceMappingURL=NativeGooglePayButton.js.map
@@ -1,2 +1,2 @@
1
- var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.default=exports.__INTERNAL_VIEW_CONFIG=void 0;var _codegenNativeComponent=_interopRequireDefault(require("react-native/Libraries/Utilities/codegenNativeComponent"));var NativeComponentRegistry=require('react-native/Libraries/NativeComponent/NativeComponentRegistry');var _require=require('react-native/Libraries/NativeComponent/ViewConfigIgnore'),ConditionallyIgnoredEventHandlers=_require.ConditionallyIgnoredEventHandlers;var nativeComponentName='NavigationBar';var __INTERNAL_VIEW_CONFIG=exports.__INTERNAL_VIEW_CONFIG={uiViewClassName:"NavigationBar",directEventTypes:{topCloseButtonPress:{registrationName:"onCloseButtonPress"}},validAttributes:Object.assign({title:true},ConditionallyIgnoredEventHandlers({onCloseButtonPress:true}))};var _default=exports.default=NativeComponentRegistry.get(nativeComponentName,function(){return __INTERNAL_VIEW_CONFIG;});console.warn("Deep imports from the 'react-native' package are deprecated ('react-native/Libraries/Utilities/codegenNativeComponent'). Source: /Users/davidestes/stripe/stripe-react-native/src/specs/NativeNavigationBar.ts 3:0");
1
+ var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.default=exports.__INTERNAL_VIEW_CONFIG=void 0;var _codegenNativeComponent=_interopRequireDefault(require("react-native/Libraries/Utilities/codegenNativeComponent"));var NativeComponentRegistry=require('react-native/Libraries/NativeComponent/NativeComponentRegistry');var _require=require('react-native/Libraries/NativeComponent/ViewConfigIgnore'),ConditionallyIgnoredEventHandlers=_require.ConditionallyIgnoredEventHandlers;var nativeComponentName='NavigationBar';var __INTERNAL_VIEW_CONFIG=exports.__INTERNAL_VIEW_CONFIG={uiViewClassName:"NavigationBar",directEventTypes:{topCloseButtonPress:{registrationName:"onCloseButtonPress"}},validAttributes:Object.assign({title:true},ConditionallyIgnoredEventHandlers({onCloseButtonPress:true}))};var _default=exports.default=NativeComponentRegistry.get(nativeComponentName,function(){return __INTERNAL_VIEW_CONFIG;});console.warn("Deep imports from the 'react-native' package are deprecated ('react-native/Libraries/Utilities/codegenNativeComponent'). Source: /Users/wooj/stripe/stripe-react-native/src/specs/NativeNavigationBar.ts 3:0");
2
2
  //# sourceMappingURL=NativeNavigationBar.js.map
@@ -0,0 +1,2 @@
1
+ var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.default=exports.__INTERNAL_VIEW_CONFIG=void 0;var _codegenNativeComponent=_interopRequireDefault(require("react-native/Libraries/Utilities/codegenNativeComponent"));var NativeComponentRegistry=require('react-native/Libraries/NativeComponent/NativeComponentRegistry');var _require=require('react-native/Libraries/NativeComponent/ViewConfigIgnore'),ConditionallyIgnoredEventHandlers=_require.ConditionallyIgnoredEventHandlers;var nativeComponentName='PaymentMethodMessagingElementView';var __INTERNAL_VIEW_CONFIG=exports.__INTERNAL_VIEW_CONFIG={uiViewClassName:"PaymentMethodMessagingElementView",directEventTypes:{topStateChange:{registrationName:"onStateChange"}},validAttributes:Object.assign({appearance:true,configuration:true},ConditionallyIgnoredEventHandlers({onStateChange:true}))};var _default=exports.default=NativeComponentRegistry.get(nativeComponentName,function(){return __INTERNAL_VIEW_CONFIG;});console.warn("Deep imports from the 'react-native' package are deprecated ('react-native/Libraries/Utilities/codegenNativeComponent'). Source: /Users/wooj/stripe/stripe-react-native/src/specs/NativePaymentMethodMessagingElement.ts 3:0");
2
+ //# sourceMappingURL=NativePaymentMethodMessagingElement.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_codegenNativeComponent","_interopRequireDefault","require","NativeComponentRegistry","_require","ConditionallyIgnoredEventHandlers","nativeComponentName","__INTERNAL_VIEW_CONFIG","exports","uiViewClassName","directEventTypes","topStateChange","registrationName","validAttributes","Object","assign","appearance","configuration","onStateChange","_default","default","get","console","warn"],"sourceRoot":"../../../src","sources":["specs/NativePaymentMethodMessagingElement.ts"],"mappings":"kMAEA,IAAAA,uBAAA,CAAAC,sBAAA,CAAAC,OAAA,6DAoBA,IAAAC,uBAEmB,CAFnBD,OAEmB,CAFnB,gEAEkB,CAAC,CAFnB,IAAAE,QAAA,CAAAF,OAEmB,CAFnB,yDAEkB,CAAC,CAFnBG,iCAEmB,CAAAD,QAAA,CAFnBC,iCAEmB,CAFnB,IAAAC,mBAEmB,CAFnB,mCAEmB,CAFnB,IAAAC,sBAEmB,CAAAC,OAAA,CAAAD,sBAAA,CAFnB,CAAAE,eAEmB,CAFnB,mCAEmB,CAFnBC,gBAEmB,CAFnB,CAAAC,cAEmB,CAFnB,CAAAC,gBAEmB,CAFnB,eAEkB,EAAC,CAFnBC,eAEmB,CAAAC,MAAA,CAAAC,MAAA,EAFnBC,UAEmB,CAFnB,IAEmB,CAFnBC,aAEmB,CAFnB,IAEmB,EAFnBZ,iCAEmB,CAFnB,CAAAa,aAEmB,CAFnB,IAEkB,EAAC,CAAD,CAAC,KAAAC,QAAA,CAAAX,OAAA,CAAAY,OAAA,CAFnBjB,uBAEmB,CAFnBkB,GAEmB,CAFnBf,mBAEmB,CAFnB,kBAAAC,sBAEmB,EAAD,CAAC,CAtBnBe,OAAA,CAAAC,IAAA","ignoreList":[]}
@@ -1,2 +1,2 @@
1
- var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.default=exports.__INTERNAL_VIEW_CONFIG=void 0;var _codegenNativeComponent=_interopRequireDefault(require("react-native/Libraries/Utilities/codegenNativeComponent"));var NativeComponentRegistry=require('react-native/Libraries/NativeComponent/NativeComponentRegistry');var nativeComponentName='StripeContainer';var __INTERNAL_VIEW_CONFIG=exports.__INTERNAL_VIEW_CONFIG={uiViewClassName:"StripeContainer",validAttributes:{keyboardShouldPersistTaps:true}};var _default=exports.default=NativeComponentRegistry.get(nativeComponentName,function(){return __INTERNAL_VIEW_CONFIG;});console.warn("Deep imports from the 'react-native' package are deprecated ('react-native/Libraries/Utilities/codegenNativeComponent'). Source: /Users/davidestes/stripe/stripe-react-native/src/specs/NativeStripeContainer.ts 2:0");
1
+ var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.default=exports.__INTERNAL_VIEW_CONFIG=void 0;var _codegenNativeComponent=_interopRequireDefault(require("react-native/Libraries/Utilities/codegenNativeComponent"));var NativeComponentRegistry=require('react-native/Libraries/NativeComponent/NativeComponentRegistry');var nativeComponentName='StripeContainer';var __INTERNAL_VIEW_CONFIG=exports.__INTERNAL_VIEW_CONFIG={uiViewClassName:"StripeContainer",validAttributes:{keyboardShouldPersistTaps:true}};var _default=exports.default=NativeComponentRegistry.get(nativeComponentName,function(){return __INTERNAL_VIEW_CONFIG;});console.warn("Deep imports from the 'react-native' package are deprecated ('react-native/Libraries/Utilities/codegenNativeComponent'). Source: /Users/wooj/stripe/stripe-react-native/src/specs/NativeStripeContainer.ts 2:0");
2
2
  //# sourceMappingURL=NativeStripeContainer.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["_reactNative","require","_default","exports","default","TurboModuleRegistry","getEnforcing"],"sourceRoot":"../../../src","sources":["specs/NativeStripeSdkModule.ts"],"mappings":"gFAAA,IAAAA,YAAA,CAAAC,OAAA,iBAAmD,IAAAC,QAAA,CAAAC,OAAA,CAAAC,OAAA,CAgNpCC,gCAAmB,CAACC,YAAY,CAAO,WAAW,CAAC","ignoreList":[]}
1
+ {"version":3,"names":["_reactNative","require","_default","exports","default","TurboModuleRegistry","getEnforcing"],"sourceRoot":"../../../src","sources":["specs/NativeStripeSdkModule.ts"],"mappings":"gFAAA,IAAAA,YAAA,CAAAC,OAAA,iBAAmD,IAAAC,QAAA,CAAAC,OAAA,CAAAC,OAAA,CAoOpCC,gCAAmB,CAACC,YAAY,CAAO,WAAW,CAAC","ignoreList":[]}
@@ -1,2 +1,2 @@
1
- var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.useEmbeddedPaymentElement=useEmbeddedPaymentElement;var _slicedToArray2=_interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));var _asyncToGenerator2=_interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));var _classCallCheck2=_interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));var _createClass2=_interopRequireDefault(require("@babel/runtime/helpers/createClass"));var _reactNative=require("react-native");var _NativeStripeSdkModule=_interopRequireDefault(require("../specs/NativeStripeSdkModule"));var _react=_interopRequireWildcard(require("react"));var _events=require("../events");var _NativeEmbeddedPaymentElement=_interopRequireWildcard(require("../specs/NativeEmbeddedPaymentElement"));var _jsxRuntime=require("react/jsx-runtime");var _jsxFileName="/Users/davidestes/stripe/stripe-react-native/src/types/EmbeddedPaymentElement.tsx";function _interopRequireWildcard(e,t){if("function"==typeof WeakMap)var r=new WeakMap(),n=new WeakMap();return(_interopRequireWildcard=function _interopRequireWildcard(e,t){if(!t&&e&&e.__esModule)return e;var o,i,f={__proto__:null,default:e};if(null===e||"object"!=typeof e&&"function"!=typeof e)return f;if(o=t?n:r){if(o.has(e))return o.get(e);o.set(e,f);}for(var _t in e)"default"!==_t&&{}.hasOwnProperty.call(e,_t)&&((i=(o=Object.defineProperty)&&Object.getOwnPropertyDescriptor(e,_t))&&(i.get||i.set)?o(f,_t,i):f[_t]=e[_t]);return f;})(e,t);}var EmbeddedPaymentElement=function(){function EmbeddedPaymentElement(){(0,_classCallCheck2.default)(this,EmbeddedPaymentElement);}return(0,_createClass2.default)(EmbeddedPaymentElement,[{key:"update",value:(function(){var _update=(0,_asyncToGenerator2.default)(function*(intentConfig){var result=yield _NativeStripeSdkModule.default.updateEmbeddedPaymentElement(intentConfig);return result;});function update(_x){return _update.apply(this,arguments);}return update;}())},{key:"confirm",value:(function(){var _confirm=(0,_asyncToGenerator2.default)(function*(){var result=yield _NativeStripeSdkModule.default.confirmEmbeddedPaymentElement(-1);return result;});function confirm(){return _confirm.apply(this,arguments);}return confirm;}())},{key:"clearPaymentOption",value:function clearPaymentOption(){_NativeStripeSdkModule.default.clearEmbeddedPaymentOption(-1);}}]);}();var confirmHandlerCallback=null;var confirmationTokenHandlerCallback=null;var formSheetActionConfirmCallback=null;var customPaymentMethodConfirmCallback=null;var rowSelectionCallback=null;function createEmbeddedPaymentElement(_x2,_x3){return _createEmbeddedPaymentElement.apply(this,arguments);}function _createEmbeddedPaymentElement(){_createEmbeddedPaymentElement=(0,_asyncToGenerator2.default)(function*(intentConfig,configuration){setupConfirmAndSelectionHandlers(intentConfig,configuration);yield _NativeStripeSdkModule.default.createEmbeddedPaymentElement(intentConfig,configuration);return new EmbeddedPaymentElement();});return _createEmbeddedPaymentElement.apply(this,arguments);}function setupConfirmAndSelectionHandlers(intentConfig,configuration){var _configuration$formSh,_configuration$rowSel;var confirmHandler=intentConfig.confirmHandler;if(confirmHandler){var _confirmHandlerCallba;(_confirmHandlerCallba=confirmHandlerCallback)==null||_confirmHandlerCallba.remove();confirmHandlerCallback=(0,_events.addListener)('onConfirmHandlerCallback',function(_ref){var paymentMethod=_ref.paymentMethod,shouldSavePaymentMethod=_ref.shouldSavePaymentMethod;confirmHandler(paymentMethod,shouldSavePaymentMethod,_NativeStripeSdkModule.default.intentCreationCallback);});}var confirmationTokenConfirmHandler=intentConfig.confirmationTokenConfirmHandler;if(confirmationTokenConfirmHandler){var _confirmationTokenHan;(_confirmationTokenHan=confirmationTokenHandlerCallback)==null||_confirmationTokenHan.remove();confirmationTokenHandlerCallback=(0,_events.addListener)('onConfirmationTokenHandlerCallback',function(_ref2){var confirmationToken=_ref2.confirmationToken;confirmationTokenConfirmHandler(confirmationToken,_NativeStripeSdkModule.default.confirmationTokenCreationCallback);});}if(((_configuration$formSh=configuration.formSheetAction)==null?void 0:_configuration$formSh.type)==='confirm'){var confirmFormSheetHandler=configuration.formSheetAction.onFormSheetConfirmComplete;if(confirmFormSheetHandler){var _formSheetActionConfi;(_formSheetActionConfi=formSheetActionConfirmCallback)==null||_formSheetActionConfi.remove();formSheetActionConfirmCallback=(0,_events.addListener)('embeddedPaymentElementFormSheetConfirmComplete',function(result){confirmFormSheetHandler(result);});}}if(configuration.customPaymentMethodConfiguration){var customPaymentMethodHandler=configuration.customPaymentMethodConfiguration.confirmCustomPaymentMethodCallback;if(customPaymentMethodHandler){var _customPaymentMethodC;(_customPaymentMethodC=customPaymentMethodConfirmCallback)==null||_customPaymentMethodC.remove();customPaymentMethodConfirmCallback=(0,_events.addListener)('onCustomPaymentMethodConfirmHandlerCallback',function(_ref3){var customPaymentMethod=_ref3.customPaymentMethod,billingDetails=_ref3.billingDetails;customPaymentMethodHandler(customPaymentMethod,billingDetails,function(result){_NativeStripeSdkModule.default.customPaymentMethodResultCallback(result);});});}}if(((_configuration$rowSel=configuration.rowSelectionBehavior)==null?void 0:_configuration$rowSel.type)==='immediateAction'){var rowSelectionHandler=configuration.rowSelectionBehavior.onSelectPaymentOption;if(rowSelectionHandler){var _rowSelectionCallback;(_rowSelectionCallback=rowSelectionCallback)==null||_rowSelectionCallback.remove();rowSelectionCallback=(0,_events.addListener)('embeddedPaymentElementRowSelectionImmediateAction',function(){rowSelectionHandler();});}}}function useEmbeddedPaymentElement(intentConfig,configuration){var _this=this;var isAndroid=_reactNative.Platform.OS==='android';var elementRef=(0,_react.useRef)(null);var _useState=(0,_react.useState)(null),_useState2=(0,_slicedToArray2.default)(_useState,2),element=_useState2[0],setElement=_useState2[1];var _useState3=(0,_react.useState)(null),_useState4=(0,_slicedToArray2.default)(_useState3,2),paymentOption=_useState4[0],setPaymentOption=_useState4[1];var _useState5=(0,_react.useState)(),_useState6=(0,_slicedToArray2.default)(_useState5,2),height=_useState6[0],setHeight=_useState6[1];var viewRef=(0,_react.useRef)(null);var _useState7=(0,_react.useState)(null),_useState8=(0,_slicedToArray2.default)(_useState7,2),loadingError=_useState8[0],setLoadingError=_useState8[1];var isLoaded=(0,_react.useMemo)(function(){return height!==undefined&&height>1;},[height]);function getElementOrThrow(ref){if(!ref.current){throw new Error('EmbeddedPaymentElement is not ready yet – wait until it finishes loading before calling this API.');}return ref.current;}(0,_react.useEffect)(function(){var active=true;(0,_asyncToGenerator2.default)(function*(){var el=yield createEmbeddedPaymentElement(intentConfig,configuration);if(!active)return;elementRef.current=el;setElement(el);})();return function(){active=false;elementRef.current=null;setElement(null);};},[intentConfig,configuration,viewRef,isAndroid]);(0,_react.useEffect)(function(){var sub=(0,_events.addListener)('embeddedPaymentElementDidUpdatePaymentOption',function(_ref5){var opt=_ref5.paymentOption;return setPaymentOption(opt!=null?opt:null);});return function(){return sub.remove();};});(0,_react.useEffect)(function(){var sub=(0,_events.addListener)('embeddedPaymentElementDidUpdateHeight',function(_ref6){var h=_ref6.height;if(h>0||isAndroid&&h===0){_reactNative.LayoutAnimation.configureNext(_reactNative.LayoutAnimation.Presets.easeInEaseOut);setHeight(h);}});return function(){return sub.remove();};},[isAndroid]);(0,_react.useEffect)(function(){var sub=(0,_events.addListener)('embeddedPaymentElementLoadingFailed',function(nativeError){setLoadingError(new Error(nativeError.message));});return function(){return sub.remove();};},[]);var embeddedPaymentElementView=(0,_react.useMemo)(function(){if(isAndroid&&configuration&&intentConfig){return(0,_jsxRuntime.jsx)(_NativeEmbeddedPaymentElement.default,{ref:viewRef,style:[{width:'100%',height:height}],configuration:configuration,intentConfiguration:intentConfig});}if(!element)return null;return(0,_jsxRuntime.jsx)(_NativeEmbeddedPaymentElement.default,{ref:viewRef,style:{width:'100%',height:height},configuration:configuration,intentConfiguration:intentConfig});},[configuration,element,height,intentConfig,isAndroid]);var confirm=(0,_react.useCallback)(function(){var currentRef=viewRef.current;if(isAndroid){if(currentRef){var promise=new Promise(function(resolve){var sub=(0,_events.addListener)('embeddedPaymentElementFormSheetConfirmComplete',function(result){sub.remove();resolve(result);});});_NativeEmbeddedPaymentElement.Commands.confirm(currentRef);return promise;}else{return Promise.reject(new Error('Unable to find Android embedded payment element view!'));}}return getElementOrThrow(elementRef).confirm();},[isAndroid]);var update=(0,_react.useCallback)(function(cfg){if(isAndroid){var currentRef=viewRef.current;if(currentRef){return new Promise(function(resolve){var sub=(0,_events.addListener)('embeddedPaymentElementUpdateComplete',function(result){sub.remove();resolve(result);});_NativeEmbeddedPaymentElement.Commands.update(currentRef,JSON.stringify(cfg));});}return Promise.reject(new Error('Unable to find Android embedded payment element view!'));}return getElementOrThrow(elementRef).update(cfg);},[isAndroid]);var clearPaymentOption=(0,_react.useCallback)(function(){if(isAndroid){var tag=(0,_reactNative.findNodeHandle)(viewRef.current);if(tag==null){return Promise.reject(new Error('Unable to find Android view handle'));}return _NativeStripeSdkModule.default.clearEmbeddedPaymentOption(tag);}getElementOrThrow(elementRef).clearPaymentOption();return Promise.resolve();},[isAndroid]);return{embeddedPaymentElementView:embeddedPaymentElementView,paymentOption:paymentOption,confirm:confirm,update:update,clearPaymentOption:clearPaymentOption,loadingError:loadingError,isLoaded:isLoaded};}
1
+ var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");Object.defineProperty(exports,"__esModule",{value:true});exports.useEmbeddedPaymentElement=useEmbeddedPaymentElement;var _slicedToArray2=_interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));var _asyncToGenerator2=_interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));var _classCallCheck2=_interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));var _createClass2=_interopRequireDefault(require("@babel/runtime/helpers/createClass"));var _reactNative=require("react-native");var _NativeStripeSdkModule=_interopRequireDefault(require("../specs/NativeStripeSdkModule"));var _react=_interopRequireWildcard(require("react"));var _events=require("../events");var _NativeEmbeddedPaymentElement=_interopRequireWildcard(require("../specs/NativeEmbeddedPaymentElement"));var _jsxRuntime=require("react/jsx-runtime");var _jsxFileName="/Users/wooj/stripe/stripe-react-native/src/types/EmbeddedPaymentElement.tsx";function _interopRequireWildcard(e,t){if("function"==typeof WeakMap)var r=new WeakMap(),n=new WeakMap();return(_interopRequireWildcard=function _interopRequireWildcard(e,t){if(!t&&e&&e.__esModule)return e;var o,i,f={__proto__:null,default:e};if(null===e||"object"!=typeof e&&"function"!=typeof e)return f;if(o=t?n:r){if(o.has(e))return o.get(e);o.set(e,f);}for(var _t in e)"default"!==_t&&{}.hasOwnProperty.call(e,_t)&&((i=(o=Object.defineProperty)&&Object.getOwnPropertyDescriptor(e,_t))&&(i.get||i.set)?o(f,_t,i):f[_t]=e[_t]);return f;})(e,t);}var EmbeddedPaymentElement=function(){function EmbeddedPaymentElement(){(0,_classCallCheck2.default)(this,EmbeddedPaymentElement);}return(0,_createClass2.default)(EmbeddedPaymentElement,[{key:"update",value:(function(){var _update=(0,_asyncToGenerator2.default)(function*(intentConfig){var result=yield _NativeStripeSdkModule.default.updateEmbeddedPaymentElement(intentConfig);return result;});function update(_x){return _update.apply(this,arguments);}return update;}())},{key:"confirm",value:(function(){var _confirm=(0,_asyncToGenerator2.default)(function*(){var result=yield _NativeStripeSdkModule.default.confirmEmbeddedPaymentElement(-1);return result;});function confirm(){return _confirm.apply(this,arguments);}return confirm;}())},{key:"clearPaymentOption",value:function clearPaymentOption(){_NativeStripeSdkModule.default.clearEmbeddedPaymentOption(-1);}}]);}();var confirmHandlerCallback=null;var confirmationTokenHandlerCallback=null;var formSheetActionConfirmCallback=null;var customPaymentMethodConfirmCallback=null;var rowSelectionCallback=null;function createEmbeddedPaymentElement(_x2,_x3){return _createEmbeddedPaymentElement.apply(this,arguments);}function _createEmbeddedPaymentElement(){_createEmbeddedPaymentElement=(0,_asyncToGenerator2.default)(function*(intentConfig,configuration){setupConfirmAndSelectionHandlers(intentConfig,configuration);yield _NativeStripeSdkModule.default.createEmbeddedPaymentElement(intentConfig,configuration);return new EmbeddedPaymentElement();});return _createEmbeddedPaymentElement.apply(this,arguments);}function setupConfirmAndSelectionHandlers(intentConfig,configuration){var _configuration$formSh,_configuration$rowSel;var confirmHandler=intentConfig.confirmHandler;if(confirmHandler){var _confirmHandlerCallba;(_confirmHandlerCallba=confirmHandlerCallback)==null||_confirmHandlerCallba.remove();confirmHandlerCallback=(0,_events.addListener)('onConfirmHandlerCallback',function(_ref){var paymentMethod=_ref.paymentMethod,shouldSavePaymentMethod=_ref.shouldSavePaymentMethod;confirmHandler(paymentMethod,shouldSavePaymentMethod,_NativeStripeSdkModule.default.intentCreationCallback);});}var confirmationTokenConfirmHandler=intentConfig.confirmationTokenConfirmHandler;if(confirmationTokenConfirmHandler){var _confirmationTokenHan;(_confirmationTokenHan=confirmationTokenHandlerCallback)==null||_confirmationTokenHan.remove();confirmationTokenHandlerCallback=(0,_events.addListener)('onConfirmationTokenHandlerCallback',function(_ref2){var confirmationToken=_ref2.confirmationToken;confirmationTokenConfirmHandler(confirmationToken,_NativeStripeSdkModule.default.confirmationTokenCreationCallback);});}if(((_configuration$formSh=configuration.formSheetAction)==null?void 0:_configuration$formSh.type)==='confirm'){var confirmFormSheetHandler=configuration.formSheetAction.onFormSheetConfirmComplete;if(confirmFormSheetHandler){var _formSheetActionConfi;(_formSheetActionConfi=formSheetActionConfirmCallback)==null||_formSheetActionConfi.remove();formSheetActionConfirmCallback=(0,_events.addListener)('embeddedPaymentElementFormSheetConfirmComplete',function(result){confirmFormSheetHandler(result);});}}if(configuration.customPaymentMethodConfiguration){var customPaymentMethodHandler=configuration.customPaymentMethodConfiguration.confirmCustomPaymentMethodCallback;if(customPaymentMethodHandler){var _customPaymentMethodC;(_customPaymentMethodC=customPaymentMethodConfirmCallback)==null||_customPaymentMethodC.remove();customPaymentMethodConfirmCallback=(0,_events.addListener)('onCustomPaymentMethodConfirmHandlerCallback',function(_ref3){var customPaymentMethod=_ref3.customPaymentMethod,billingDetails=_ref3.billingDetails;customPaymentMethodHandler(customPaymentMethod,billingDetails,function(result){_NativeStripeSdkModule.default.customPaymentMethodResultCallback(result);});});}}if(((_configuration$rowSel=configuration.rowSelectionBehavior)==null?void 0:_configuration$rowSel.type)==='immediateAction'){var rowSelectionHandler=configuration.rowSelectionBehavior.onSelectPaymentOption;if(rowSelectionHandler){var _rowSelectionCallback;(_rowSelectionCallback=rowSelectionCallback)==null||_rowSelectionCallback.remove();rowSelectionCallback=(0,_events.addListener)('embeddedPaymentElementRowSelectionImmediateAction',function(){rowSelectionHandler();});}}}function useEmbeddedPaymentElement(intentConfig,configuration){var _this=this;var isAndroid=_reactNative.Platform.OS==='android';var elementRef=(0,_react.useRef)(null);var _useState=(0,_react.useState)(null),_useState2=(0,_slicedToArray2.default)(_useState,2),element=_useState2[0],setElement=_useState2[1];var _useState3=(0,_react.useState)(null),_useState4=(0,_slicedToArray2.default)(_useState3,2),paymentOption=_useState4[0],setPaymentOption=_useState4[1];var _useState5=(0,_react.useState)(),_useState6=(0,_slicedToArray2.default)(_useState5,2),height=_useState6[0],setHeight=_useState6[1];var viewRef=(0,_react.useRef)(null);var _useState7=(0,_react.useState)(null),_useState8=(0,_slicedToArray2.default)(_useState7,2),loadingError=_useState8[0],setLoadingError=_useState8[1];var isLoaded=(0,_react.useMemo)(function(){return height!==undefined&&height>1;},[height]);function getElementOrThrow(ref){if(!ref.current){throw new Error('EmbeddedPaymentElement is not ready yet – wait until it finishes loading before calling this API.');}return ref.current;}(0,_react.useEffect)(function(){var active=true;(0,_asyncToGenerator2.default)(function*(){var el=yield createEmbeddedPaymentElement(intentConfig,configuration);if(!active)return;elementRef.current=el;setElement(el);})();return function(){active=false;elementRef.current=null;setElement(null);};},[intentConfig,configuration,viewRef,isAndroid]);(0,_react.useEffect)(function(){var sub=(0,_events.addListener)('embeddedPaymentElementDidUpdatePaymentOption',function(_ref5){var opt=_ref5.paymentOption;return setPaymentOption(opt!=null?opt:null);});return function(){return sub.remove();};});(0,_react.useEffect)(function(){var sub=(0,_events.addListener)('embeddedPaymentElementDidUpdateHeight',function(_ref6){var h=_ref6.height;if(h>0||isAndroid&&h===0){_reactNative.LayoutAnimation.configureNext(_reactNative.LayoutAnimation.Presets.easeInEaseOut);setHeight(h);}});return function(){return sub.remove();};},[isAndroid]);(0,_react.useEffect)(function(){var sub=(0,_events.addListener)('embeddedPaymentElementLoadingFailed',function(nativeError){setLoadingError(new Error(nativeError.message));});return function(){return sub.remove();};},[]);var embeddedPaymentElementView=(0,_react.useMemo)(function(){if(isAndroid&&configuration&&intentConfig){return(0,_jsxRuntime.jsx)(_NativeEmbeddedPaymentElement.default,{ref:viewRef,style:[{width:'100%',height:height}],configuration:configuration,intentConfiguration:intentConfig});}if(!element)return null;return(0,_jsxRuntime.jsx)(_NativeEmbeddedPaymentElement.default,{ref:viewRef,style:{width:'100%',height:height},configuration:configuration,intentConfiguration:intentConfig});},[configuration,element,height,intentConfig,isAndroid]);var confirm=(0,_react.useCallback)(function(){var currentRef=viewRef.current;if(isAndroid){if(currentRef){var promise=new Promise(function(resolve){var sub=(0,_events.addListener)('embeddedPaymentElementFormSheetConfirmComplete',function(result){sub.remove();resolve(result);});});_NativeEmbeddedPaymentElement.Commands.confirm(currentRef);return promise;}else{return Promise.reject(new Error('Unable to find Android embedded payment element view!'));}}return getElementOrThrow(elementRef).confirm();},[isAndroid]);var update=(0,_react.useCallback)(function(cfg){if(isAndroid){var currentRef=viewRef.current;if(currentRef){return new Promise(function(resolve){var sub=(0,_events.addListener)('embeddedPaymentElementUpdateComplete',function(result){sub.remove();resolve(result);});_NativeEmbeddedPaymentElement.Commands.update(currentRef,JSON.stringify(cfg));});}return Promise.reject(new Error('Unable to find Android embedded payment element view!'));}return getElementOrThrow(elementRef).update(cfg);},[isAndroid]);var clearPaymentOption=(0,_react.useCallback)(function(){if(isAndroid){var tag=(0,_reactNative.findNodeHandle)(viewRef.current);if(tag==null){return Promise.reject(new Error('Unable to find Android view handle'));}return _NativeStripeSdkModule.default.clearEmbeddedPaymentOption(tag);}getElementOrThrow(elementRef).clearPaymentOption();return Promise.resolve();},[isAndroid]);return{embeddedPaymentElementView:embeddedPaymentElementView,paymentOption:paymentOption,confirm:confirm,update:update,clearPaymentOption:clearPaymentOption,loadingError:loadingError,isLoaded:isLoaded};}
2
2
  //# sourceMappingURL=EmbeddedPaymentElement.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["_reactNative","require","_NativeStripeSdkModule","_interopRequireDefault","_react","_interopRequireWildcard","_events","_NativeEmbeddedPaymentElement","_jsxRuntime","_jsxFileName","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","_t","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","EmbeddedPaymentElement","_classCallCheck2","_createClass2","key","value","_update","_asyncToGenerator2","intentConfig","result","NativeStripeSdkModule","updateEmbeddedPaymentElement","update","_x","apply","arguments","_confirm","confirmEmbeddedPaymentElement","confirm","clearPaymentOption","clearEmbeddedPaymentOption","confirmHandlerCallback","confirmationTokenHandlerCallback","formSheetActionConfirmCallback","customPaymentMethodConfirmCallback","rowSelectionCallback","createEmbeddedPaymentElement","_x2","_x3","_createEmbeddedPaymentElement","configuration","setupConfirmAndSelectionHandlers","_configuration$formSh","_configuration$rowSel","confirmHandler","_confirmHandlerCallba","remove","addListener","_ref","paymentMethod","shouldSavePaymentMethod","intentCreationCallback","confirmationTokenConfirmHandler","_confirmationTokenHan","_ref2","confirmationToken","confirmationTokenCreationCallback","formSheetAction","type","confirmFormSheetHandler","onFormSheetConfirmComplete","_formSheetActionConfi","customPaymentMethodConfiguration","customPaymentMethodHandler","confirmCustomPaymentMethodCallback","_customPaymentMethodC","_ref3","customPaymentMethod","billingDetails","customPaymentMethodResultCallback","rowSelectionBehavior","rowSelectionHandler","onSelectPaymentOption","_rowSelectionCallback","useEmbeddedPaymentElement","_this","isAndroid","Platform","OS","elementRef","useRef","_useState","useState","_useState2","_slicedToArray2","element","setElement","_useState3","_useState4","paymentOption","setPaymentOption","_useState5","_useState6","height","setHeight","viewRef","_useState7","_useState8","loadingError","setLoadingError","isLoaded","useMemo","undefined","getElementOrThrow","ref","current","Error","useEffect","active","el","sub","_ref5","opt","_ref6","h","LayoutAnimation","configureNext","Presets","easeInEaseOut","nativeError","message","embeddedPaymentElementView","jsx","style","width","intentConfiguration","useCallback","currentRef","promise","Promise","resolve","Commands","reject","cfg","JSON","stringify","tag","findNodeHandle"],"sourceRoot":"../../../src","sources":["types/EmbeddedPaymentElement.tsx"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["_reactNative","require","_NativeStripeSdkModule","_interopRequireDefault","_react","_interopRequireWildcard","_events","_NativeEmbeddedPaymentElement","_jsxRuntime","_jsxFileName","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","_t","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","EmbeddedPaymentElement","_classCallCheck2","_createClass2","key","value","_update","_asyncToGenerator2","intentConfig","result","NativeStripeSdkModule","updateEmbeddedPaymentElement","update","_x","apply","arguments","_confirm","confirmEmbeddedPaymentElement","confirm","clearPaymentOption","clearEmbeddedPaymentOption","confirmHandlerCallback","confirmationTokenHandlerCallback","formSheetActionConfirmCallback","customPaymentMethodConfirmCallback","rowSelectionCallback","createEmbeddedPaymentElement","_x2","_x3","_createEmbeddedPaymentElement","configuration","setupConfirmAndSelectionHandlers","_configuration$formSh","_configuration$rowSel","confirmHandler","_confirmHandlerCallba","remove","addListener","_ref","paymentMethod","shouldSavePaymentMethod","intentCreationCallback","confirmationTokenConfirmHandler","_confirmationTokenHan","_ref2","confirmationToken","confirmationTokenCreationCallback","formSheetAction","type","confirmFormSheetHandler","onFormSheetConfirmComplete","_formSheetActionConfi","customPaymentMethodConfiguration","customPaymentMethodHandler","confirmCustomPaymentMethodCallback","_customPaymentMethodC","_ref3","customPaymentMethod","billingDetails","customPaymentMethodResultCallback","rowSelectionBehavior","rowSelectionHandler","onSelectPaymentOption","_rowSelectionCallback","useEmbeddedPaymentElement","_this","isAndroid","Platform","OS","elementRef","useRef","_useState","useState","_useState2","_slicedToArray2","element","setElement","_useState3","_useState4","paymentOption","setPaymentOption","_useState5","_useState6","height","setHeight","viewRef","_useState7","_useState8","loadingError","setLoadingError","isLoaded","useMemo","undefined","getElementOrThrow","ref","current","Error","useEffect","active","el","sub","_ref5","opt","_ref6","h","LayoutAnimation","configureNext","Presets","easeInEaseOut","nativeError","message","embeddedPaymentElementView","jsx","style","width","intentConfiguration","useCallback","currentRef","promise","Promise","resolve","Commands","reject","cfg","JSON","stringify","tag","findNodeHandle"],"sourceRoot":"../../../src","sources":["types/EmbeddedPaymentElement.tsx"],"mappings":"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","ignoreList":[]}
@@ -1,2 +1,2 @@
1
- Object.defineProperty(exports,"__esModule",{value:true});exports.VerifyMicrodepositsError=exports.RetrieveSetupIntentError=exports.RetrievePaymentIntentError=exports.PlatformPayError=exports.PaymentSheetError=exports.OnrampError=exports.MissingRoutingNumber=exports.GooglePayError=exports.CustomerSheetError=exports.CreateTokenError=exports.CreatePaymentMethodError=exports.ConfirmSetupIntentError=exports.ConfirmPaymentError=exports.CollectBankAccountError=exports.CardActionError=exports.ApplePayError=exports.AddressSheetError=void 0;var ConfirmPaymentError=exports.ConfirmPaymentError=function(ConfirmPaymentError){ConfirmPaymentError["Canceled"]="Canceled";ConfirmPaymentError["Failed"]="Failed";ConfirmPaymentError["Unknown"]="Unknown";return ConfirmPaymentError;}({});var CardActionError=exports.CardActionError=function(CardActionError){CardActionError["Canceled"]="Canceled";CardActionError["Failed"]="Failed";CardActionError["Unknown"]="Unknown";return CardActionError;}({});var ConfirmSetupIntentError=exports.ConfirmSetupIntentError=function(ConfirmSetupIntentError){ConfirmSetupIntentError["Canceled"]="Canceled";ConfirmSetupIntentError["Failed"]="Failed";ConfirmSetupIntentError["Unknown"]="Unknown";return ConfirmSetupIntentError;}({});var CreatePaymentMethodError=exports.CreatePaymentMethodError=function(CreatePaymentMethodError){CreatePaymentMethodError["Failed"]="Failed";return CreatePaymentMethodError;}({});var CreateTokenError=exports.CreateTokenError=function(CreateTokenError){CreateTokenError["Failed"]="Failed";return CreateTokenError;}({});var RetrievePaymentIntentError=exports.RetrievePaymentIntentError=function(RetrievePaymentIntentError){RetrievePaymentIntentError["Unknown"]="Unknown";return RetrievePaymentIntentError;}({});var RetrieveSetupIntentError=exports.RetrieveSetupIntentError=function(RetrieveSetupIntentError){RetrieveSetupIntentError["Unknown"]="Unknown";return RetrieveSetupIntentError;}({});var ApplePayError=exports.ApplePayError=function(ApplePayError){ApplePayError["Canceled"]="Canceled";ApplePayError["Failed"]="Failed";ApplePayError["Unknown"]="Unknown";return ApplePayError;}({});var PaymentSheetError=exports.PaymentSheetError=function(PaymentSheetError){PaymentSheetError["Failed"]="Failed";PaymentSheetError["Canceled"]="Canceled";PaymentSheetError["Timeout"]="Timeout";return PaymentSheetError;}({});var OnrampError=exports.OnrampError=function(OnrampError){OnrampError["Failed"]="Failed";OnrampError["Canceled"]="Canceled";OnrampError["Unknown"]="Unknown";return OnrampError;}({});var GooglePayError=exports.GooglePayError=function(GooglePayError){GooglePayError["Failed"]="Failed";GooglePayError["Canceled"]="Canceled";GooglePayError["Unknown"]="Unknown";return GooglePayError;}({});var MissingRoutingNumber=exports.MissingRoutingNumber={code:CreateTokenError.Failed,message:'You must provide a routing number for US bank accounts. This should be the ACH routing number.'};var VerifyMicrodepositsError=exports.VerifyMicrodepositsError=function(VerifyMicrodepositsError){VerifyMicrodepositsError["Canceled"]="Canceled";VerifyMicrodepositsError["Failed"]="Failed";VerifyMicrodepositsError["Unknown"]="Unknown";return VerifyMicrodepositsError;}({});var CollectBankAccountError=exports.CollectBankAccountError=function(CollectBankAccountError){CollectBankAccountError["Canceled"]="Canceled";CollectBankAccountError["Failed"]="Failed";CollectBankAccountError["Unknown"]="Unknown";return CollectBankAccountError;}({});var AddressSheetError=exports.AddressSheetError=function(AddressSheetError){AddressSheetError["Failed"]="Failed";AddressSheetError["Canceled"]="Canceled";return AddressSheetError;}({});var CustomerSheetError=exports.CustomerSheetError=function(CustomerSheetError){CustomerSheetError["Failed"]="Failed";CustomerSheetError["Canceled"]="Canceled";return CustomerSheetError;}({});var PlatformPayError=exports.PlatformPayError=function(PlatformPayError){PlatformPayError["Canceled"]="Canceled";PlatformPayError["Failed"]="Failed";PlatformPayError["Unknown"]="Unknown";return PlatformPayError;}({});
1
+ Object.defineProperty(exports,"__esModule",{value:true});exports.VerifyMicrodepositsError=exports.RetrieveSetupIntentError=exports.RetrievePaymentIntentError=exports.RadarError=exports.PlatformPayError=exports.PaymentSheetError=exports.OnrampError=exports.MissingRoutingNumber=exports.GooglePayError=exports.CustomerSheetError=exports.CreateTokenError=exports.CreatePaymentMethodError=exports.ConfirmSetupIntentError=exports.ConfirmPaymentError=exports.CollectBankAccountError=exports.CardActionError=exports.ApplePayError=exports.AddressSheetError=void 0;var ConfirmPaymentError=exports.ConfirmPaymentError=function(ConfirmPaymentError){ConfirmPaymentError["Canceled"]="Canceled";ConfirmPaymentError["Failed"]="Failed";ConfirmPaymentError["Unknown"]="Unknown";return ConfirmPaymentError;}({});var CardActionError=exports.CardActionError=function(CardActionError){CardActionError["Canceled"]="Canceled";CardActionError["Failed"]="Failed";CardActionError["Unknown"]="Unknown";return CardActionError;}({});var ConfirmSetupIntentError=exports.ConfirmSetupIntentError=function(ConfirmSetupIntentError){ConfirmSetupIntentError["Canceled"]="Canceled";ConfirmSetupIntentError["Failed"]="Failed";ConfirmSetupIntentError["Unknown"]="Unknown";return ConfirmSetupIntentError;}({});var CreatePaymentMethodError=exports.CreatePaymentMethodError=function(CreatePaymentMethodError){CreatePaymentMethodError["Failed"]="Failed";return CreatePaymentMethodError;}({});var CreateTokenError=exports.CreateTokenError=function(CreateTokenError){CreateTokenError["Failed"]="Failed";return CreateTokenError;}({});var RetrievePaymentIntentError=exports.RetrievePaymentIntentError=function(RetrievePaymentIntentError){RetrievePaymentIntentError["Unknown"]="Unknown";return RetrievePaymentIntentError;}({});var RetrieveSetupIntentError=exports.RetrieveSetupIntentError=function(RetrieveSetupIntentError){RetrieveSetupIntentError["Unknown"]="Unknown";return RetrieveSetupIntentError;}({});var ApplePayError=exports.ApplePayError=function(ApplePayError){ApplePayError["Canceled"]="Canceled";ApplePayError["Failed"]="Failed";ApplePayError["Unknown"]="Unknown";return ApplePayError;}({});var PaymentSheetError=exports.PaymentSheetError=function(PaymentSheetError){PaymentSheetError["Failed"]="Failed";PaymentSheetError["Canceled"]="Canceled";PaymentSheetError["Timeout"]="Timeout";return PaymentSheetError;}({});var OnrampError=exports.OnrampError=function(OnrampError){OnrampError["Failed"]="Failed";OnrampError["Canceled"]="Canceled";OnrampError["Unknown"]="Unknown";return OnrampError;}({});var GooglePayError=exports.GooglePayError=function(GooglePayError){GooglePayError["Failed"]="Failed";GooglePayError["Canceled"]="Canceled";GooglePayError["Unknown"]="Unknown";return GooglePayError;}({});var MissingRoutingNumber=exports.MissingRoutingNumber={code:CreateTokenError.Failed,message:'You must provide a routing number for US bank accounts. This should be the ACH routing number.'};var VerifyMicrodepositsError=exports.VerifyMicrodepositsError=function(VerifyMicrodepositsError){VerifyMicrodepositsError["Canceled"]="Canceled";VerifyMicrodepositsError["Failed"]="Failed";VerifyMicrodepositsError["Unknown"]="Unknown";return VerifyMicrodepositsError;}({});var CollectBankAccountError=exports.CollectBankAccountError=function(CollectBankAccountError){CollectBankAccountError["Canceled"]="Canceled";CollectBankAccountError["Failed"]="Failed";CollectBankAccountError["Unknown"]="Unknown";return CollectBankAccountError;}({});var AddressSheetError=exports.AddressSheetError=function(AddressSheetError){AddressSheetError["Failed"]="Failed";AddressSheetError["Canceled"]="Canceled";return AddressSheetError;}({});var CustomerSheetError=exports.CustomerSheetError=function(CustomerSheetError){CustomerSheetError["Failed"]="Failed";CustomerSheetError["Canceled"]="Canceled";return CustomerSheetError;}({});var PlatformPayError=exports.PlatformPayError=function(PlatformPayError){PlatformPayError["Canceled"]="Canceled";PlatformPayError["Failed"]="Failed";PlatformPayError["Unknown"]="Unknown";return PlatformPayError;}({});var RadarError=exports.RadarError=function(RadarError){RadarError["Failed"]="Failed";RadarError["Unknown"]="Unknown";return RadarError;}({});
2
2
  //# sourceMappingURL=Errors.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["ConfirmPaymentError","exports","CardActionError","ConfirmSetupIntentError","CreatePaymentMethodError","CreateTokenError","RetrievePaymentIntentError","RetrieveSetupIntentError","ApplePayError","PaymentSheetError","OnrampError","GooglePayError","MissingRoutingNumber","code","Failed","message","VerifyMicrodepositsError","CollectBankAccountError","AddressSheetError","CustomerSheetError","PlatformPayError"],"sourceRoot":"../../../src","sources":["types/Errors.ts"],"mappings":"4hBAAY,CAAAA,mBAAmB,CAAAC,OAAA,CAAAD,mBAAA,UAAnBA,mBAAmB,EAAnBA,mBAAmB,wBAAnBA,mBAAmB,oBAAnBA,mBAAmB,4BAAnB,CAAAA,mBAAmB,UAMnB,CAAAE,eAAe,CAAAD,OAAA,CAAAC,eAAA,UAAfA,eAAe,EAAfA,eAAe,wBAAfA,eAAe,oBAAfA,eAAe,4BAAf,CAAAA,eAAe,UAMf,CAAAC,uBAAuB,CAAAF,OAAA,CAAAE,uBAAA,UAAvBA,uBAAuB,EAAvBA,uBAAuB,wBAAvBA,uBAAuB,oBAAvBA,uBAAuB,4BAAvB,CAAAA,uBAAuB,UAMvB,CAAAC,wBAAwB,CAAAH,OAAA,CAAAG,wBAAA,UAAxBA,wBAAwB,EAAxBA,wBAAwB,0BAAxB,CAAAA,wBAAwB,UAIxB,CAAAC,gBAAgB,CAAAJ,OAAA,CAAAI,gBAAA,UAAhBA,gBAAgB,EAAhBA,gBAAgB,0BAAhB,CAAAA,gBAAgB,UAIhB,CAAAC,0BAA0B,CAAAL,OAAA,CAAAK,0BAAA,UAA1BA,0BAA0B,EAA1BA,0BAA0B,4BAA1B,CAAAA,0BAA0B,UAI1B,CAAAC,wBAAwB,CAAAN,OAAA,CAAAM,wBAAA,UAAxBA,wBAAwB,EAAxBA,wBAAwB,4BAAxB,CAAAA,wBAAwB,UAIxB,CAAAC,aAAa,CAAAP,OAAA,CAAAO,aAAA,UAAbA,aAAa,EAAbA,aAAa,wBAAbA,aAAa,oBAAbA,aAAa,4BAAb,CAAAA,aAAa,UAMb,CAAAC,iBAAiB,CAAAR,OAAA,CAAAQ,iBAAA,UAAjBA,iBAAiB,EAAjBA,iBAAiB,oBAAjBA,iBAAiB,wBAAjBA,iBAAiB,4BAAjB,CAAAA,iBAAiB,UAMjB,CAAAC,WAAW,CAAAT,OAAA,CAAAS,WAAA,UAAXA,WAAW,EAAXA,WAAW,oBAAXA,WAAW,wBAAXA,WAAW,4BAAX,CAAAA,WAAW,UAwBX,CAAAC,cAAc,CAAAV,OAAA,CAAAU,cAAA,UAAdA,cAAc,EAAdA,cAAc,oBAAdA,cAAc,wBAAdA,cAAc,4BAAd,CAAAA,cAAc,OAMnB,GAAM,CAAAC,oBAAoB,CAAAX,OAAA,CAAAW,oBAAA,CAAG,CAClCC,IAAI,CAAER,gBAAgB,CAACS,MAAM,CAC7BC,OAAO,CACL,gGACJ,CAAC,CAAC,GAEU,CAAAC,wBAAwB,CAAAf,OAAA,CAAAe,wBAAA,UAAxBA,wBAAwB,EAAxBA,wBAAwB,wBAAxBA,wBAAwB,oBAAxBA,wBAAwB,4BAAxB,CAAAA,wBAAwB,UAMxB,CAAAC,uBAAuB,CAAAhB,OAAA,CAAAgB,uBAAA,UAAvBA,uBAAuB,EAAvBA,uBAAuB,wBAAvBA,uBAAuB,oBAAvBA,uBAAuB,4BAAvB,CAAAA,uBAAuB,UAMvB,CAAAC,iBAAiB,CAAAjB,OAAA,CAAAiB,iBAAA,UAAjBA,iBAAiB,EAAjBA,iBAAiB,oBAAjBA,iBAAiB,8BAAjB,CAAAA,iBAAiB,UAKjB,CAAAC,kBAAkB,CAAAlB,OAAA,CAAAkB,kBAAA,UAAlBA,kBAAkB,EAAlBA,kBAAkB,oBAAlBA,kBAAkB,8BAAlB,CAAAA,kBAAkB,UAKlB,CAAAC,gBAAgB,CAAAnB,OAAA,CAAAmB,gBAAA,UAAhBA,gBAAgB,EAAhBA,gBAAgB,wBAAhBA,gBAAgB,oBAAhBA,gBAAgB,4BAAhB,CAAAA,gBAAgB","ignoreList":[]}
1
+ {"version":3,"names":["ConfirmPaymentError","exports","CardActionError","ConfirmSetupIntentError","CreatePaymentMethodError","CreateTokenError","RetrievePaymentIntentError","RetrieveSetupIntentError","ApplePayError","PaymentSheetError","OnrampError","GooglePayError","MissingRoutingNumber","code","Failed","message","VerifyMicrodepositsError","CollectBankAccountError","AddressSheetError","CustomerSheetError","PlatformPayError","RadarError"],"sourceRoot":"../../../src","sources":["types/Errors.ts"],"mappings":"+iBAAY,CAAAA,mBAAmB,CAAAC,OAAA,CAAAD,mBAAA,UAAnBA,mBAAmB,EAAnBA,mBAAmB,wBAAnBA,mBAAmB,oBAAnBA,mBAAmB,4BAAnB,CAAAA,mBAAmB,UAMnB,CAAAE,eAAe,CAAAD,OAAA,CAAAC,eAAA,UAAfA,eAAe,EAAfA,eAAe,wBAAfA,eAAe,oBAAfA,eAAe,4BAAf,CAAAA,eAAe,UAMf,CAAAC,uBAAuB,CAAAF,OAAA,CAAAE,uBAAA,UAAvBA,uBAAuB,EAAvBA,uBAAuB,wBAAvBA,uBAAuB,oBAAvBA,uBAAuB,4BAAvB,CAAAA,uBAAuB,UAMvB,CAAAC,wBAAwB,CAAAH,OAAA,CAAAG,wBAAA,UAAxBA,wBAAwB,EAAxBA,wBAAwB,0BAAxB,CAAAA,wBAAwB,UAIxB,CAAAC,gBAAgB,CAAAJ,OAAA,CAAAI,gBAAA,UAAhBA,gBAAgB,EAAhBA,gBAAgB,0BAAhB,CAAAA,gBAAgB,UAIhB,CAAAC,0BAA0B,CAAAL,OAAA,CAAAK,0BAAA,UAA1BA,0BAA0B,EAA1BA,0BAA0B,4BAA1B,CAAAA,0BAA0B,UAI1B,CAAAC,wBAAwB,CAAAN,OAAA,CAAAM,wBAAA,UAAxBA,wBAAwB,EAAxBA,wBAAwB,4BAAxB,CAAAA,wBAAwB,UAIxB,CAAAC,aAAa,CAAAP,OAAA,CAAAO,aAAA,UAAbA,aAAa,EAAbA,aAAa,wBAAbA,aAAa,oBAAbA,aAAa,4BAAb,CAAAA,aAAa,UAMb,CAAAC,iBAAiB,CAAAR,OAAA,CAAAQ,iBAAA,UAAjBA,iBAAiB,EAAjBA,iBAAiB,oBAAjBA,iBAAiB,wBAAjBA,iBAAiB,4BAAjB,CAAAA,iBAAiB,UAMjB,CAAAC,WAAW,CAAAT,OAAA,CAAAS,WAAA,UAAXA,WAAW,EAAXA,WAAW,oBAAXA,WAAW,wBAAXA,WAAW,4BAAX,CAAAA,WAAW,UAwBX,CAAAC,cAAc,CAAAV,OAAA,CAAAU,cAAA,UAAdA,cAAc,EAAdA,cAAc,oBAAdA,cAAc,wBAAdA,cAAc,4BAAd,CAAAA,cAAc,OAMnB,GAAM,CAAAC,oBAAoB,CAAAX,OAAA,CAAAW,oBAAA,CAAG,CAClCC,IAAI,CAAER,gBAAgB,CAACS,MAAM,CAC7BC,OAAO,CACL,gGACJ,CAAC,CAAC,GAEU,CAAAC,wBAAwB,CAAAf,OAAA,CAAAe,wBAAA,UAAxBA,wBAAwB,EAAxBA,wBAAwB,wBAAxBA,wBAAwB,oBAAxBA,wBAAwB,4BAAxB,CAAAA,wBAAwB,UAMxB,CAAAC,uBAAuB,CAAAhB,OAAA,CAAAgB,uBAAA,UAAvBA,uBAAuB,EAAvBA,uBAAuB,wBAAvBA,uBAAuB,oBAAvBA,uBAAuB,4BAAvB,CAAAA,uBAAuB,UAMvB,CAAAC,iBAAiB,CAAAjB,OAAA,CAAAiB,iBAAA,UAAjBA,iBAAiB,EAAjBA,iBAAiB,oBAAjBA,iBAAiB,8BAAjB,CAAAA,iBAAiB,UAKjB,CAAAC,kBAAkB,CAAAlB,OAAA,CAAAkB,kBAAA,UAAlBA,kBAAkB,EAAlBA,kBAAkB,oBAAlBA,kBAAkB,8BAAlB,CAAAA,kBAAkB,UAKlB,CAAAC,gBAAgB,CAAAnB,OAAA,CAAAmB,gBAAA,UAAhBA,gBAAgB,EAAhBA,gBAAgB,wBAAhBA,gBAAgB,oBAAhBA,gBAAgB,4BAAhB,CAAAA,gBAAgB,UAMhB,CAAAC,UAAU,CAAApB,OAAA,CAAAoB,UAAA,UAAVA,UAAU,EAAVA,UAAU,oBAAVA,UAAU,4BAAV,CAAAA,UAAU","ignoreList":[]}
@@ -1 +1 @@
1
- {"version":3,"names":["FinancialConnectionsSheetError","exports","FinancialConnectionsEventName","FinancialConnectionsEventErrorCode"],"sourceRoot":"../../../src","sources":["types/FinancialConnections.ts"],"mappings":"2LAkIY,CAAAA,8BAA8B,CAAAC,OAAA,CAAAD,8BAAA,UAA9BA,8BAA8B,EAA9BA,8BAA8B,oBAA9BA,8BAA8B,8BAA9B,CAAAA,8BAA8B,UAY9B,CAAAE,6BAA6B,CAAAD,OAAA,CAAAC,6BAAA,UAA7BA,6BAA6B,EAA7BA,6BAA6B,gBAA7BA,6BAA6B,kDAA7BA,6BAA6B,uCAA7BA,6BAA6B,uCAA7BA,6BAA6B,+CAA7BA,6BAA6B,mDAA7BA,6BAA6B,yCAA7BA,6BAA6B,sBAA7BA,6BAA6B,kBAA7BA,6BAA6B,oBAA7BA,6BAA6B,2DAA7B,CAAAA,6BAA6B,UAkC7B,CAAAC,kCAAkC,CAAAF,OAAA,CAAAE,kCAAA,UAAlCA,kCAAkC,EAAlCA,kCAAkC,4DAAlCA,kCAAkC,+CAAlCA,kCAAkC,8CAAlCA,kCAAkC,+CAAlCA,kCAAkC,oEAAlCA,kCAAkC,wEAAlCA,kCAAkC,6CAAlCA,kCAAkC,uCAAlCA,kCAAkC,qCAAlCA,kCAAkC,oDAAlC,CAAAA,kCAAkC","ignoreList":[]}
1
+ {"version":3,"names":["FinancialConnectionsSheetError","exports","FinancialConnectionsEventName","FinancialConnectionsEventErrorCode"],"sourceRoot":"../../../src","sources":["types/FinancialConnections.ts"],"mappings":"2LAoIY,CAAAA,8BAA8B,CAAAC,OAAA,CAAAD,8BAAA,UAA9BA,8BAA8B,EAA9BA,8BAA8B,oBAA9BA,8BAA8B,8BAA9B,CAAAA,8BAA8B,UAY9B,CAAAE,6BAA6B,CAAAD,OAAA,CAAAC,6BAAA,UAA7BA,6BAA6B,EAA7BA,6BAA6B,gBAA7BA,6BAA6B,kDAA7BA,6BAA6B,uCAA7BA,6BAA6B,uCAA7BA,6BAA6B,+CAA7BA,6BAA6B,mDAA7BA,6BAA6B,yCAA7BA,6BAA6B,sBAA7BA,6BAA6B,kBAA7BA,6BAA6B,oBAA7BA,6BAA6B,2DAA7B,CAAAA,6BAA6B,UAkC7B,CAAAC,kCAAkC,CAAAF,OAAA,CAAAE,kCAAA,UAAlCA,kCAAkC,EAAlCA,kCAAkC,4DAAlCA,kCAAkC,+CAAlCA,kCAAkC,8CAAlCA,kCAAkC,+CAAlCA,kCAAkC,oEAAlCA,kCAAkC,wEAAlCA,kCAAkC,6CAAlCA,kCAAkC,uCAAlCA,kCAAkC,qCAAlCA,kCAAkC,oDAAlC,CAAAA,kCAAkC","ignoreList":[]}
@@ -1,2 +1,2 @@
1
- Object.defineProperty(exports,"__esModule",{value:true});exports.RowStyle=exports.PaymentMethodLayout=exports.NavigationBarStyle=exports.LinkDisplay=exports.CustomPaymentMethodResultStatus=exports.CollectionMode=exports.CardBrandCategory=exports.CardBrandAcceptanceFilter=exports.CaptureMethod=exports.AddressCollectionMode=void 0;var LinkDisplay=exports.LinkDisplay=function(LinkDisplay){LinkDisplay["AUTOMATIC"]="automatic";LinkDisplay["NEVER"]="never";return LinkDisplay;}({});var NavigationBarStyle=exports.NavigationBarStyle=function(NavigationBarStyle){NavigationBarStyle["Plain"]="plain";NavigationBarStyle["Glass"]="glass";return NavigationBarStyle;}({});var RowStyle=exports.RowStyle=function(RowStyle){RowStyle["FlatWithRadio"]="flatWithRadio";RowStyle["FloatingButton"]="floatingButton";RowStyle["FlatWithCheckmark"]="flatWithCheckmark";RowStyle["FlatWithDisclosure"]="flatWithDisclosure";return RowStyle;}({});var CollectionMode=exports.CollectionMode=function(CollectionMode){CollectionMode["AUTOMATIC"]="automatic";CollectionMode["NEVER"]="never";CollectionMode["ALWAYS"]="always";return CollectionMode;}({});var AddressCollectionMode=exports.AddressCollectionMode=function(AddressCollectionMode){AddressCollectionMode["AUTOMATIC"]="automatic";AddressCollectionMode["NEVER"]="never";AddressCollectionMode["FULL"]="full";return AddressCollectionMode;}({});var CaptureMethod=exports.CaptureMethod=function(CaptureMethod){CaptureMethod["Automatic"]="Automatic";CaptureMethod["Manual"]="Manual";CaptureMethod["AutomaticAsync"]="AutomaticAsync";return CaptureMethod;}({});var PaymentMethodLayout=exports.PaymentMethodLayout=function(PaymentMethodLayout){PaymentMethodLayout["Horizontal"]="Horizontal";PaymentMethodLayout["Vertical"]="Vertical";PaymentMethodLayout["Automatic"]="Automatic";return PaymentMethodLayout;}({});var CardBrandCategory=exports.CardBrandCategory=function(CardBrandCategory){CardBrandCategory["Visa"]="visa";CardBrandCategory["Mastercard"]="mastercard";CardBrandCategory["Amex"]="amex";CardBrandCategory["Discover"]="discover";return CardBrandCategory;}({});var CardBrandAcceptanceFilter=exports.CardBrandAcceptanceFilter=function(CardBrandAcceptanceFilter){CardBrandAcceptanceFilter["All"]="all";CardBrandAcceptanceFilter["Allowed"]="allowed";CardBrandAcceptanceFilter["Disallowed"]="disallowed";return CardBrandAcceptanceFilter;}({});var CustomPaymentMethodResultStatus=exports.CustomPaymentMethodResultStatus=function(CustomPaymentMethodResultStatus){CustomPaymentMethodResultStatus["Completed"]="completed";CustomPaymentMethodResultStatus["Canceled"]="canceled";CustomPaymentMethodResultStatus["Failed"]="failed";return CustomPaymentMethodResultStatus;}({});
1
+ Object.defineProperty(exports,"__esModule",{value:true});exports.RowStyle=exports.PaymentMethodLayout=exports.NavigationBarStyle=exports.LinkDisplay=exports.CustomPaymentMethodResultStatus=exports.CollectionMode=exports.CardFundingType=exports.CardBrandCategory=exports.CardBrandAcceptanceFilter=exports.CaptureMethod=exports.AddressCollectionMode=void 0;var LinkDisplay=exports.LinkDisplay=function(LinkDisplay){LinkDisplay["AUTOMATIC"]="automatic";LinkDisplay["NEVER"]="never";return LinkDisplay;}({});var NavigationBarStyle=exports.NavigationBarStyle=function(NavigationBarStyle){NavigationBarStyle["Plain"]="plain";NavigationBarStyle["Glass"]="glass";return NavigationBarStyle;}({});var RowStyle=exports.RowStyle=function(RowStyle){RowStyle["FlatWithRadio"]="flatWithRadio";RowStyle["FloatingButton"]="floatingButton";RowStyle["FlatWithCheckmark"]="flatWithCheckmark";RowStyle["FlatWithDisclosure"]="flatWithDisclosure";return RowStyle;}({});var CollectionMode=exports.CollectionMode=function(CollectionMode){CollectionMode["AUTOMATIC"]="automatic";CollectionMode["NEVER"]="never";CollectionMode["ALWAYS"]="always";return CollectionMode;}({});var AddressCollectionMode=exports.AddressCollectionMode=function(AddressCollectionMode){AddressCollectionMode["AUTOMATIC"]="automatic";AddressCollectionMode["NEVER"]="never";AddressCollectionMode["FULL"]="full";return AddressCollectionMode;}({});var CaptureMethod=exports.CaptureMethod=function(CaptureMethod){CaptureMethod["Automatic"]="Automatic";CaptureMethod["Manual"]="Manual";CaptureMethod["AutomaticAsync"]="AutomaticAsync";return CaptureMethod;}({});var PaymentMethodLayout=exports.PaymentMethodLayout=function(PaymentMethodLayout){PaymentMethodLayout["Horizontal"]="Horizontal";PaymentMethodLayout["Vertical"]="Vertical";PaymentMethodLayout["Automatic"]="Automatic";return PaymentMethodLayout;}({});var CardFundingType=exports.CardFundingType=function(CardFundingType){CardFundingType["Debit"]="debit";CardFundingType["Credit"]="credit";CardFundingType["Prepaid"]="prepaid";CardFundingType["Unknown"]="unknown";return CardFundingType;}({});var CardBrandCategory=exports.CardBrandCategory=function(CardBrandCategory){CardBrandCategory["Visa"]="visa";CardBrandCategory["Mastercard"]="mastercard";CardBrandCategory["Amex"]="amex";CardBrandCategory["Discover"]="discover";return CardBrandCategory;}({});var CardBrandAcceptanceFilter=exports.CardBrandAcceptanceFilter=function(CardBrandAcceptanceFilter){CardBrandAcceptanceFilter["All"]="all";CardBrandAcceptanceFilter["Allowed"]="allowed";CardBrandAcceptanceFilter["Disallowed"]="disallowed";return CardBrandAcceptanceFilter;}({});var CustomPaymentMethodResultStatus=exports.CustomPaymentMethodResultStatus=function(CustomPaymentMethodResultStatus){CustomPaymentMethodResultStatus["Completed"]="completed";CustomPaymentMethodResultStatus["Canceled"]="canceled";CustomPaymentMethodResultStatus["Failed"]="failed";return CustomPaymentMethodResultStatus;}({});
2
2
  //# sourceMappingURL=PaymentSheet.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["LinkDisplay","exports","NavigationBarStyle","RowStyle","CollectionMode","AddressCollectionMode","CaptureMethod","PaymentMethodLayout","CardBrandCategory","CardBrandAcceptanceFilter","CustomPaymentMethodResultStatus"],"sourceRoot":"../../../src","sources":["types/PaymentSheet.ts"],"mappings":"8UA8KY,CAAAA,WAAW,CAAAC,OAAA,CAAAD,WAAA,UAAXA,WAAW,EAAXA,WAAW,0BAAXA,WAAW,wBAAX,CAAAA,WAAW,UA0DX,CAAAE,kBAAkB,CAAAD,OAAA,CAAAC,kBAAA,UAAlBA,kBAAkB,EAAlBA,kBAAkB,kBAAlBA,kBAAkB,wBAAlB,CAAAA,kBAAkB,UA2JlB,CAAAC,QAAQ,CAAAF,OAAA,CAAAE,QAAA,UAARA,QAAQ,EAARA,QAAQ,kCAARA,QAAQ,oCAARA,QAAQ,0CAARA,QAAQ,kDAAR,CAAAA,QAAQ,UAkJR,CAAAC,cAAc,CAAAH,OAAA,CAAAG,cAAA,UAAdA,cAAc,EAAdA,cAAc,0BAAdA,cAAc,kBAAdA,cAAc,0BAAd,CAAAA,cAAc,UASd,CAAAC,qBAAqB,CAAAJ,OAAA,CAAAI,qBAAA,UAArBA,qBAAqB,EAArBA,qBAAqB,0BAArBA,qBAAqB,kBAArBA,qBAAqB,sBAArB,CAAAA,qBAAqB,UAyErB,CAAAC,aAAa,CAAAL,OAAA,CAAAK,aAAA,UAAbA,aAAa,EAAbA,aAAa,0BAAbA,aAAa,oBAAbA,aAAa,0CAAb,CAAAA,aAAa,UAgDb,CAAAC,mBAAmB,CAAAN,OAAA,CAAAM,mBAAA,UAAnBA,mBAAmB,EAAnBA,mBAAmB,4BAAnBA,mBAAmB,wBAAnBA,mBAAmB,gCAAnB,CAAAA,mBAAmB,UAoBnB,CAAAC,iBAAiB,CAAAP,OAAA,CAAAO,iBAAA,UAAjBA,iBAAiB,EAAjBA,iBAAiB,gBAAjBA,iBAAiB,4BAAjBA,iBAAiB,gBAAjBA,iBAAiB,8BAAjB,CAAAA,iBAAiB,UAejB,CAAAC,yBAAyB,CAAAR,OAAA,CAAAQ,yBAAA,UAAzBA,yBAAyB,EAAzBA,yBAAyB,cAAzBA,yBAAyB,sBAAzBA,yBAAyB,kCAAzB,CAAAA,yBAAyB,UA+CzB,CAAAC,+BAA+B,CAAAT,OAAA,CAAAS,+BAAA,UAA/BA,+BAA+B,EAA/BA,+BAA+B,0BAA/BA,+BAA+B,wBAA/BA,+BAA+B,0BAA/B,CAAAA,+BAA+B","ignoreList":[]}
1
+ {"version":3,"names":["LinkDisplay","exports","NavigationBarStyle","RowStyle","CollectionMode","AddressCollectionMode","CaptureMethod","PaymentMethodLayout","CardFundingType","CardBrandCategory","CardBrandAcceptanceFilter","CustomPaymentMethodResultStatus"],"sourceRoot":"../../../src","sources":["types/PaymentSheet.ts"],"mappings":"sWAwLY,CAAAA,WAAW,CAAAC,OAAA,CAAAD,WAAA,UAAXA,WAAW,EAAXA,WAAW,0BAAXA,WAAW,wBAAX,CAAAA,WAAW,UA0DX,CAAAE,kBAAkB,CAAAD,OAAA,CAAAC,kBAAA,UAAlBA,kBAAkB,EAAlBA,kBAAkB,kBAAlBA,kBAAkB,wBAAlB,CAAAA,kBAAkB,UA2JlB,CAAAC,QAAQ,CAAAF,OAAA,CAAAE,QAAA,UAARA,QAAQ,EAARA,QAAQ,kCAARA,QAAQ,oCAARA,QAAQ,0CAARA,QAAQ,kDAAR,CAAAA,QAAQ,UAkJR,CAAAC,cAAc,CAAAH,OAAA,CAAAG,cAAA,UAAdA,cAAc,EAAdA,cAAc,0BAAdA,cAAc,kBAAdA,cAAc,0BAAd,CAAAA,cAAc,UASd,CAAAC,qBAAqB,CAAAJ,OAAA,CAAAI,qBAAA,UAArBA,qBAAqB,EAArBA,qBAAqB,0BAArBA,qBAAqB,kBAArBA,qBAAqB,sBAArB,CAAAA,qBAAqB,UAyErB,CAAAC,aAAa,CAAAL,OAAA,CAAAK,aAAA,UAAbA,aAAa,EAAbA,aAAa,0BAAbA,aAAa,oBAAbA,aAAa,0CAAb,CAAAA,aAAa,UAgDb,CAAAC,mBAAmB,CAAAN,OAAA,CAAAM,mBAAA,UAAnBA,mBAAmB,EAAnBA,mBAAmB,4BAAnBA,mBAAmB,wBAAnBA,mBAAmB,gCAAnB,CAAAA,mBAAmB,UAuBnB,CAAAC,eAAe,CAAAP,OAAA,CAAAO,eAAA,UAAfA,eAAe,EAAfA,eAAe,kBAAfA,eAAe,oBAAfA,eAAe,sBAAfA,eAAe,4BAAf,CAAAA,eAAe,UAwBf,CAAAC,iBAAiB,CAAAR,OAAA,CAAAQ,iBAAA,UAAjBA,iBAAiB,EAAjBA,iBAAiB,gBAAjBA,iBAAiB,4BAAjBA,iBAAiB,gBAAjBA,iBAAiB,8BAAjB,CAAAA,iBAAiB,UAejB,CAAAC,yBAAyB,CAAAT,OAAA,CAAAS,yBAAA,UAAzBA,yBAAyB,EAAzBA,yBAAyB,cAAzBA,yBAAyB,sBAAzBA,yBAAyB,kCAAzB,CAAAA,yBAAyB,UA+CzB,CAAAC,+BAA+B,CAAAV,OAAA,CAAAU,+BAAA,UAA/BA,+BAA+B,EAA/BA,+BAA+B,0BAA/BA,+BAA+B,wBAA/BA,+BAA+B,0BAA/B,CAAAA,+BAA+B","ignoreList":[]}
@@ -0,0 +1,2 @@
1
+ Object.defineProperty(exports,"__esModule",{value:true});exports.PaymentMethodMessagingElementStyle=void 0;var PaymentMethodMessagingElementStyle=exports.PaymentMethodMessagingElementStyle=function(PaymentMethodMessagingElementStyle){PaymentMethodMessagingElementStyle["Flat"]="flat";PaymentMethodMessagingElementStyle["Dark"]="dark";PaymentMethodMessagingElementStyle["Light"]="light";return PaymentMethodMessagingElementStyle;}({});
2
+ //# sourceMappingURL=PaymentMethodMessagingElementComponent.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["PaymentMethodMessagingElementStyle","exports"],"sourceRoot":"../../../../src","sources":["types/components/PaymentMethodMessagingElementComponent.tsx"],"mappings":"8GAkBY,CAAAA,kCAAkC,CAAAC,OAAA,CAAAD,kCAAA,UAAlCA,kCAAkC,EAAlCA,kCAAkC,gBAAlCA,kCAAkC,gBAAlCA,kCAAkC,wBAAlC,CAAAA,kCAAkC","ignoreList":[]}
@@ -1 +1 @@
1
- {"version":3,"names":["ApplePay","_interopRequireWildcard","require","exports","PaymentIntent","PaymentMethod","PaymentSheet","SetupIntent","ThreeDSecure","AuBECSDebitFormComponent","CardFieldInput","CardFormView","Token","FinancialConnections","PlatformPay","Onramp","ConfirmationToken","_PushProvisioning","Object","keys","forEach","key","prototype","hasOwnProperty","call","_exportNames","defineProperty","enumerable","get","_Errors","_CustomerSheet","_Common","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","set","_t","getOwnPropertyDescriptor"],"sourceRoot":"../../../src","sources":["types/index.ts"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"names":["ApplePay","_interopRequireWildcard","require","exports","PaymentIntent","PaymentMethod","PaymentSheet","SetupIntent","ThreeDSecure","AuBECSDebitFormComponent","CardFieldInput","CardFormView","Token","FinancialConnections","PlatformPay","Onramp","ConfirmationToken","_PushProvisioning","Object","keys","forEach","key","prototype","hasOwnProperty","call","_exportNames","defineProperty","enumerable","get","_Errors","_CustomerSheet","_Common","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","set","_t","getOwnPropertyDescriptor"],"sourceRoot":"../../../src","sources":["types/index.ts"],"mappings":"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","ignoreList":[]}