@stripe/stripe-react-native 0.5.0 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +61 -0
- package/README.md +2 -2
- package/android/build.gradle +11 -2
- package/android/gradle.properties +1 -0
- package/android/src/main/java/com/reactnativestripesdk/AuBECSDebitFormViewManager.kt +0 -2
- package/android/src/main/java/com/reactnativestripesdk/CardFieldView.kt +48 -34
- package/android/src/main/java/com/reactnativestripesdk/CardFieldViewManager.kt +3 -8
- package/android/src/main/java/com/reactnativestripesdk/CardFormView.kt +98 -29
- package/android/src/main/java/com/reactnativestripesdk/CardFormViewManager.kt +4 -8
- package/android/src/main/java/com/reactnativestripesdk/CollectBankAccountLauncherFragment.kt +84 -0
- package/android/src/main/java/com/reactnativestripesdk/Constants.kt +0 -1
- package/android/src/main/java/com/reactnativestripesdk/Errors.kt +16 -6
- package/android/src/main/java/com/reactnativestripesdk/GooglePayButtonManager.kt +0 -1
- package/android/src/main/java/com/reactnativestripesdk/GooglePayFragment.kt +0 -3
- package/android/src/main/java/com/reactnativestripesdk/GooglePayPaymentMethodLauncherFragment.kt +3 -2
- package/android/src/main/java/com/reactnativestripesdk/Mappers.kt +119 -34
- package/android/src/main/java/com/reactnativestripesdk/PaymentLauncherFragment.kt +92 -30
- package/android/src/main/java/com/reactnativestripesdk/PaymentMethodCreateParamsFactory.kt +113 -28
- package/android/src/main/java/com/reactnativestripesdk/StripeContainerManager.kt +0 -1
- package/android/src/main/java/com/reactnativestripesdk/StripeSdkModule.kt +228 -120
- package/android/src/main/java/com/reactnativestripesdk/StripeSdkPackage.kt +9 -1
- package/android/src/main/java/com/reactnativestripesdk/pushprovisioning/AddToWalletButtonManager.kt +60 -0
- package/android/src/main/java/com/reactnativestripesdk/pushprovisioning/AddToWalletButtonView.kt +152 -0
- package/android/src/main/java/com/reactnativestripesdk/pushprovisioning/AddToWalletCompleteEvent.kt +22 -0
- package/android/src/main/java/com/reactnativestripesdk/pushprovisioning/EphemeralKeyProvider.kt +35 -0
- package/android/src/main/java/com/reactnativestripesdk/pushprovisioning/PushProvisioningProxy.kt +117 -0
- package/android/src/main/java/com/reactnativestripesdk/pushprovisioning/TapAndPayProxy.kt +129 -0
- package/ios/CardFieldManager.m +1 -1
- package/ios/CardFieldView.swift +6 -6
- package/ios/CardFormView.swift +1 -1
- package/ios/Errors.swift +9 -35
- package/ios/Mappers.swift +158 -24
- package/ios/PaymentMethodFactory.swift +61 -13
- package/ios/StripeSdk.m +19 -0
- package/ios/StripeSdk.swift +330 -121
- package/ios/pushprovisioning/AddToWalletButtonManager.m +21 -0
- package/ios/pushprovisioning/AddToWalletButtonManager.swift +19 -0
- package/ios/pushprovisioning/AddToWalletButtonView.swift +147 -0
- package/lib/commonjs/NativeStripeSdk.js.map +1 -1
- package/lib/commonjs/components/AddToWalletButton.js +2 -0
- package/lib/commonjs/components/AddToWalletButton.js.map +1 -0
- package/lib/commonjs/components/ApplePayButton.js +1 -1
- package/lib/commonjs/components/ApplePayButton.js.map +1 -1
- package/lib/commonjs/components/AuBECSDebitForm.js +1 -1
- package/lib/commonjs/components/AuBECSDebitForm.js.map +1 -1
- package/lib/commonjs/components/CardField.js +1 -1
- package/lib/commonjs/components/CardField.js.map +1 -1
- package/lib/commonjs/components/CardForm.js +1 -1
- package/lib/commonjs/components/CardForm.js.map +1 -1
- package/lib/commonjs/components/GooglePayButton.js +1 -1
- package/lib/commonjs/components/GooglePayButton.js.map +1 -1
- package/lib/commonjs/components/StripeContainer.js +1 -1
- package/lib/commonjs/components/StripeContainer.js.map +1 -1
- package/lib/commonjs/components/StripeProvider.js +1 -1
- package/lib/commonjs/components/StripeProvider.js.map +1 -1
- package/lib/commonjs/functions.js +1 -1
- package/lib/commonjs/functions.js.map +1 -1
- package/lib/commonjs/helpers.js.map +1 -1
- package/lib/commonjs/hooks/useConfirmPayment.js.map +1 -1
- package/lib/commonjs/hooks/useConfirmSetupIntent.js.map +1 -1
- package/lib/commonjs/hooks/useGooglePay.js.map +1 -1
- package/lib/commonjs/hooks/useStripe.js +1 -1
- package/lib/commonjs/hooks/useStripe.js.map +1 -1
- package/lib/commonjs/index.js +1 -1
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/types/ApplePay.js +1 -1
- package/lib/commonjs/types/ApplePay.js.map +1 -1
- package/lib/commonjs/types/Common.js +2 -0
- package/lib/commonjs/types/Common.js.map +1 -0
- package/lib/commonjs/types/Errors.js +1 -1
- package/lib/commonjs/types/Errors.js.map +1 -1
- package/lib/commonjs/types/GooglePay.js +1 -1
- package/lib/commonjs/types/GooglePay.js.map +1 -1
- package/lib/commonjs/types/NextAction.js +2 -0
- package/lib/commonjs/types/NextAction.js.map +1 -0
- package/lib/commonjs/types/PaymentIntent.js +2 -0
- package/lib/commonjs/types/PaymentIntent.js.map +1 -0
- package/lib/commonjs/types/PaymentMethod.js +2 -0
- package/lib/commonjs/types/PaymentMethod.js.map +1 -0
- package/lib/commonjs/types/PaymentSheet.js +1 -1
- package/lib/commonjs/types/SetupIntent.js +1 -1
- package/lib/commonjs/types/SetupIntent.js.map +1 -1
- package/lib/commonjs/types/ThreeDSecure.js +1 -1
- package/lib/commonjs/types/ThreeDSecure.js.map +1 -1
- package/lib/commonjs/types/Token.js +2 -0
- package/lib/commonjs/types/Token.js.map +1 -0
- package/lib/commonjs/types/components/ApplePayButtonComponent.js +1 -1
- package/lib/commonjs/types/components/ApplePayButtonComponent.js.map +1 -1
- package/lib/commonjs/types/components/AuBECSDebitFormComponent.js +2 -0
- package/lib/commonjs/types/components/AuBECSDebitFormComponent.js.map +1 -0
- package/lib/commonjs/types/components/CardFieldInput.js +1 -1
- package/lib/commonjs/types/components/CardFieldInput.js.map +1 -1
- package/lib/commonjs/types/components/CardFormView.js +1 -1
- package/lib/commonjs/types/components/CardFormView.js.map +1 -1
- package/lib/commonjs/types/index.js +1 -1
- package/lib/commonjs/types/index.js.map +1 -1
- package/lib/module/NativeStripeSdk.js.map +1 -1
- package/lib/module/components/AddToWalletButton.js +2 -0
- package/lib/module/components/AddToWalletButton.js.map +1 -0
- package/lib/module/components/ApplePayButton.js +1 -1
- package/lib/module/components/ApplePayButton.js.map +1 -1
- package/lib/module/components/AuBECSDebitForm.js +1 -1
- package/lib/module/components/AuBECSDebitForm.js.map +1 -1
- package/lib/module/components/CardField.js +1 -1
- package/lib/module/components/CardField.js.map +1 -1
- package/lib/module/components/CardForm.js +1 -1
- package/lib/module/components/CardForm.js.map +1 -1
- package/lib/module/components/GooglePayButton.js +1 -1
- package/lib/module/components/GooglePayButton.js.map +1 -1
- package/lib/module/components/StripeContainer.js +1 -1
- package/lib/module/components/StripeContainer.js.map +1 -1
- package/lib/module/components/StripeProvider.js +1 -1
- package/lib/module/components/StripeProvider.js.map +1 -1
- package/lib/module/functions.js +1 -1
- package/lib/module/functions.js.map +1 -1
- package/lib/module/helpers.js.map +1 -1
- package/lib/module/hooks/useConfirmPayment.js.map +1 -1
- package/lib/module/hooks/useConfirmSetupIntent.js.map +1 -1
- package/lib/module/hooks/useGooglePay.js.map +1 -1
- package/lib/module/hooks/useStripe.js +1 -1
- package/lib/module/hooks/useStripe.js.map +1 -1
- package/lib/module/index.js +1 -1
- package/lib/module/index.js.map +1 -1
- package/lib/module/types/ApplePay.js +1 -1
- package/lib/module/types/ApplePay.js.map +1 -1
- package/lib/module/types/Common.js +2 -0
- package/lib/module/types/Common.js.map +1 -0
- package/lib/module/types/Errors.js +1 -1
- package/lib/module/types/Errors.js.map +1 -1
- package/lib/module/types/GooglePay.js +1 -1
- package/lib/module/types/GooglePay.js.map +1 -1
- package/lib/module/types/NextAction.js +2 -0
- package/lib/module/types/NextAction.js.map +1 -0
- package/lib/module/types/PaymentIntent.js +2 -0
- package/lib/module/types/PaymentIntent.js.map +1 -0
- package/lib/module/types/PaymentMethod.js +2 -0
- package/lib/module/types/PaymentMethod.js.map +1 -0
- package/lib/module/types/PaymentSheet.js +1 -1
- package/lib/module/types/SetupIntent.js +1 -1
- package/lib/module/types/SetupIntent.js.map +1 -1
- package/lib/module/types/ThreeDSecure.js +1 -1
- package/lib/module/types/ThreeDSecure.js.map +1 -1
- package/lib/module/types/Token.js +2 -0
- package/lib/module/types/Token.js.map +1 -0
- package/lib/module/types/components/ApplePayButtonComponent.js +1 -1
- package/lib/module/types/components/ApplePayButtonComponent.js.map +1 -1
- package/lib/module/types/components/AuBECSDebitFormComponent.js +2 -0
- package/lib/module/types/components/AuBECSDebitFormComponent.js.map +1 -0
- package/lib/module/types/components/CardFieldInput.js +1 -1
- package/lib/module/types/components/CardFieldInput.js.map +1 -1
- package/lib/module/types/components/CardFormView.js +1 -1
- package/lib/module/types/components/CardFormView.js.map +1 -1
- package/lib/module/types/index.js +1 -1
- package/lib/module/types/index.js.map +1 -1
- package/lib/typescript/e2e/helpers.d.ts +1 -0
- package/lib/typescript/e2e/screenObject/BasicPaymentScreen.d.ts +1 -0
- package/lib/typescript/e2e/screenObject/HomeScreen.d.ts +1 -1
- package/lib/typescript/example/src/App.d.ts +2 -0
- package/lib/typescript/example/src/screens/ACHPaymentScreen.d.ts +1 -0
- package/lib/typescript/example/src/screens/ACHSetupScreen.d.ts +1 -0
- package/lib/typescript/src/NativeStripeSdk.d.ts +18 -7
- package/lib/typescript/src/components/AddToWalletButton.d.ts +58 -0
- package/lib/typescript/src/components/ApplePayButton.d.ts +2 -2
- package/lib/typescript/src/components/CardField.d.ts +3 -3
- package/lib/typescript/src/components/CardForm.d.ts +3 -0
- package/lib/typescript/src/components/StripeProvider.d.ts +1 -1
- package/lib/typescript/src/functions.d.ts +20 -11
- package/lib/typescript/src/helpers.d.ts +2 -1
- package/lib/typescript/src/hooks/useConfirmPayment.d.ts +2 -2
- package/lib/typescript/src/hooks/useConfirmSetupIntent.d.ts +2 -2
- package/lib/typescript/src/hooks/useGooglePay.d.ts +2 -2
- package/lib/typescript/src/hooks/useStripe.d.ts +11 -8
- package/lib/typescript/src/index.d.ts +1 -0
- package/lib/typescript/src/types/ApplePay.d.ts +48 -50
- package/lib/typescript/src/types/Common.d.ts +14 -0
- package/lib/typescript/src/types/Errors.d.ts +10 -0
- package/lib/typescript/src/types/GooglePay.d.ts +45 -50
- package/lib/typescript/src/types/NextAction.d.ts +32 -0
- package/lib/typescript/src/types/PaymentIntent.d.ts +46 -0
- package/lib/typescript/src/types/PaymentMethod.d.ts +210 -0
- package/lib/typescript/src/types/PaymentSheet.d.ts +41 -55
- package/lib/typescript/src/types/SetupIntent.d.ts +24 -56
- package/lib/typescript/src/types/ThreeDSecure.d.ts +62 -68
- package/lib/typescript/src/types/Token.d.ts +50 -0
- package/lib/typescript/src/types/components/ApplePayButtonComponent.d.ts +8 -10
- package/{src/types/components/AuBECSDebitForm.ts → lib/typescript/src/types/components/AuBECSDebitFormComponent.d.ts} +8 -13
- package/lib/typescript/src/types/components/CardFieldInput.d.ts +62 -65
- package/lib/typescript/src/types/components/CardFormView.d.ts +52 -44
- package/lib/typescript/src/types/index.d.ts +77 -54
- package/package.json +9 -5
- package/src/NativeStripeSdk.tsx +28 -14
- package/src/components/AddToWalletButton.tsx +86 -0
- package/src/components/ApplePayButton.tsx +4 -4
- package/src/components/CardField.tsx +9 -9
- package/src/components/CardForm.tsx +20 -11
- package/src/components/StripeProvider.tsx +1 -4
- package/src/functions.ts +188 -76
- package/src/helpers.ts +3 -2
- package/src/hooks/useConfirmPayment.tsx +3 -3
- package/src/hooks/useConfirmSetupIntent.tsx +3 -3
- package/src/hooks/useGooglePay.tsx +2 -2
- package/src/hooks/useStripe.tsx +65 -13
- package/src/index.tsx +4 -0
- package/src/types/ApplePay.ts +60 -62
- package/src/types/Common.ts +15 -0
- package/src/types/Errors.ts +12 -0
- package/src/types/GooglePay.ts +67 -73
- package/src/types/NextAction.ts +44 -0
- package/src/types/PaymentIntent.ts +53 -0
- package/src/types/PaymentMethod.ts +281 -0
- package/src/types/PaymentSheet.ts +49 -63
- package/src/types/SetupIntent.ts +32 -77
- package/src/types/ThreeDSecure.ts +63 -69
- package/src/types/Token.ts +74 -0
- package/src/types/components/ApplePayButtonComponent.ts +25 -27
- package/src/types/components/AuBECSDebitFormComponent.ts +29 -0
- package/src/types/components/CardFieldInput.ts +65 -67
- package/src/types/components/CardFormView.ts +58 -51
- package/src/types/index.ts +114 -57
- package/stripe-react-native.podspec +3 -2
- package/android/build/.transforms/06225d218c14d1720edd690e5aad3666/results.bin +0 -0
- package/android/build/.transforms/31ceac6fb5d33b3621129bf6bacef38e/results.bin +0 -1
- package/android/build/.transforms/31ceac6fb5d33b3621129bf6bacef38e/transformed/classes/classes.dex +0 -0
- package/android/build/.transforms/48791259e8e16eb93ec0e1ee5c2320d3/results.bin +0 -1
- package/android/build/.transforms/48791259e8e16eb93ec0e1ee5c2320d3/transformed/classes/classes.dex +0 -0
- package/android/build/.transforms/74570cf3214a596c51ea9185f02b2c7f/results.bin +0 -1
- package/android/build/.transforms/74570cf3214a596c51ea9185f02b2c7f/transformed/classes/classes.dex +0 -0
- package/android/build/.transforms/82928fc3901d2ce5cedef114e23b9dd5/results.bin +0 -1
- package/android/build/.transforms/82928fc3901d2ce5cedef114e23b9dd5/transformed/classes/classes.dex +0 -0
- package/android/build/.transforms/9338bfb74c726e5746db5e10b980917a/results.bin +0 -1
- package/android/build/.transforms/9338bfb74c726e5746db5e10b980917a/transformed/classes/classes.dex +0 -0
- package/android/build/.transforms/c731e6bf5b480f659bf1c341f3f0657c/results.bin +0 -1
- package/android/build/.transforms/c731e6bf5b480f659bf1c341f3f0657c/transformed/classes/classes.dex +0 -0
- package/android/build/.transforms/d42db6dbe74ca8dbcb5922d32e8646c4/results.bin +0 -1
- package/android/build/.transforms/d42db6dbe74ca8dbcb5922d32e8646c4/transformed/classes/classes.dex +0 -0
- package/android/build/.transforms/d436978a4beecbc35d07543a01fe4a5c/results.bin +0 -1
- package/android/build/.transforms/d436978a4beecbc35d07543a01fe4a5c/transformed/classes/classes.dex +0 -0
- package/android/build/generated/data_binding_base_class_source_out/debug/out/com/reactnativestripesdk/databinding/GooglepayButtonBinding.java +0 -52
- package/android/build/generated/data_binding_base_class_source_out/debug/out/com/reactnativestripesdk/databinding/GooglepayButtonNoShadowBinding.java +0 -52
- package/android/build/generated/data_binding_base_class_source_out/debug/out/com/reactnativestripesdk/databinding/PayWithGooglepayButtonBinding.java +0 -52
- package/android/build/generated/data_binding_base_class_source_out/debug/out/com/reactnativestripesdk/databinding/PayWithGooglepayButtonNoShadowBinding.java +0 -52
- package/android/build/generated/data_binding_base_class_source_out/release/out/com/reactnativestripesdk/databinding/GooglepayButtonBinding.java +0 -52
- package/android/build/generated/data_binding_base_class_source_out/release/out/com/reactnativestripesdk/databinding/GooglepayButtonNoShadowBinding.java +0 -52
- package/android/build/generated/data_binding_base_class_source_out/release/out/com/reactnativestripesdk/databinding/PayWithGooglepayButtonBinding.java +0 -52
- package/android/build/generated/data_binding_base_class_source_out/release/out/com/reactnativestripesdk/databinding/PayWithGooglepayButtonNoShadowBinding.java +0 -52
- package/android/build/generated/source/buildConfig/debug/com/reactnativestripesdk/BuildConfig.java +0 -10
- package/android/build/generated/source/buildConfig/release/com/reactnativestripesdk/BuildConfig.java +0 -10
- package/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml +0 -9
- package/android/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output-metadata.json +0 -16
- package/android/build/intermediates/aapt_friendly_merged_manifests/release/aapt/AndroidManifest.xml +0 -9
- package/android/build/intermediates/aapt_friendly_merged_manifests/release/aapt/output-metadata.json +0 -16
- package/android/build/intermediates/aar_metadata/debug/aar-metadata.properties +0 -2
- package/android/build/intermediates/aar_metadata/release/aar-metadata.properties +0 -2
- package/android/build/intermediates/annotation_processor_list/debug/annotationProcessors.json +0 -1
- package/android/build/intermediates/annotation_processor_list/release/annotationProcessors.json +0 -1
- package/android/build/intermediates/compile_library_classes_jar/debug/classes.jar +0 -0
- package/android/build/intermediates/compile_library_classes_jar/release/classes.jar +0 -0
- package/android/build/intermediates/compile_r_class_jar/debug/R.jar +0 -0
- package/android/build/intermediates/compile_r_class_jar/release/R.jar +0 -0
- package/android/build/intermediates/compile_symbol_list/debug/R.txt +0 -7540
- package/android/build/intermediates/compile_symbol_list/release/R.txt +0 -7540
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ar-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ar_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-bg-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-bg_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ca-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ca_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-cs-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-cs_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-da-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-da_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-de-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-de_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-el-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-el_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-es-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-es_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-et-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-et_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-fi-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-fi_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-fr-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-fr_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-hdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-hdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-hdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-hdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-hdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-hdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-hr-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-hr_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-id-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-id_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-it-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-it_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ja-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ja_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ko-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ko_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-mdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-mdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-mdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-mdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-mdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-mdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ms-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ms_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-hdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-hdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-mdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-mdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-v21_googlepay_button_background.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-v21_googlepay_button_no_shadow_background.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-v8_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-v8_googlepay_button_overlay.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-xhdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-xhdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-xxhdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-xxhdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-xxxhdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-night-xxxhdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-nl-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-nl_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-no-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-no_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-pl-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-pl_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-pt-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-pt_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ru-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-ru_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-sk-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-sk_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-sl-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-sl_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-sr-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-sr_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-sv-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-sv_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-th-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-th_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-tr-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-tr_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-uk-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-uk_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-v21_googlepay_button_background.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-v21_googlepay_button_no_shadow_background.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xhdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xhdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xhdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xhdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xhdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xhdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxhdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxhdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxhdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxhdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxhdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxhdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxxhdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxxhdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxxhdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxxhdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxxhdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-xxxhdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable-zh_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable_googlepay_button_overlay.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/drawable_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/layout-night-v8_googlepay_button.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/layout-night-v8_pay_with_googlepay_button.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/layout_googlepay_button.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/layout_googlepay_button_no_shadow.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/layout_pay_with_googlepay_button.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/debug/out/layout_pay_with_googlepay_button_no_shadow.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-ar-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-ar_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-bg-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-bg_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-ca-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-ca_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-cs-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-cs_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-da-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-da_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-de-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-de_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-el-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-el_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-es-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-es_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-et-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-et_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-fi-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-fi_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-fr-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-fr_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-hdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-hdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-hdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-hdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-hdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-hdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-hr-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-hr_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-id-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-id_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-it-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-it_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-ja-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-ja_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-ko-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-ko_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-mdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-mdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-mdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-mdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-mdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-mdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-ms-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-ms_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-hdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-hdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-mdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-mdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-v21_googlepay_button_background.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-v21_googlepay_button_no_shadow_background.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-v8_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-v8_googlepay_button_overlay.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-xhdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-xhdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-xxhdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-xxhdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-xxxhdpi-v8_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-night-xxxhdpi-v8_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-nl-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-nl_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-no-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-no_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-pl-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-pl_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-pt-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-pt_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-ru-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-ru_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-sk-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-sk_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-sl-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-sl_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-sr-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-sr_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-sv-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-sv_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-th-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-th_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-tr-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-tr_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-uk-night-v8_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-uk_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-v21_googlepay_button_background.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-v21_googlepay_button_no_shadow_background.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xhdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xhdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xhdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xhdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xhdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xhdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxhdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxhdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxhdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxhdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxhdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxhdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxxhdpi-v4_googlepay_button_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxxhdpi-v4_googlepay_button_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxxhdpi-v4_googlepay_button_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxxhdpi-v4_googlepay_button_no_shadow_background_image.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxxhdpi-v4_googlepay_button_no_shadow_background_image_focused.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-xxxhdpi-v4_googlepay_button_no_shadow_background_image_pressed.9.png.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable-zh_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable_googlepay_button_overlay.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/drawable_pay_with_googlepay_button_content.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/layout-night-v8_googlepay_button.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/layout-night-v8_pay_with_googlepay_button.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/layout_googlepay_button.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/layout_googlepay_button_no_shadow.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/layout_pay_with_googlepay_button.xml.flat +0 -0
- package/android/build/intermediates/compiled_local_resources/release/out/layout_pay_with_googlepay_button_no_shadow.xml.flat +0 -0
- package/android/build/intermediates/data_binding_base_class_log_artifact/debug/out/com.reactnativestripesdk-binding_classes.json +0 -0
- package/android/build/intermediates/data_binding_base_class_log_artifact/release/out/com.reactnativestripesdk-binding_classes.json +0 -0
- package/android/build/intermediates/data_binding_layout_info_type_package/debug/out/googlepay_button-layout-night.xml +0 -1
- package/android/build/intermediates/data_binding_layout_info_type_package/debug/out/googlepay_button-layout.xml +0 -1
- package/android/build/intermediates/data_binding_layout_info_type_package/debug/out/googlepay_button_no_shadow-layout.xml +0 -1
- package/android/build/intermediates/data_binding_layout_info_type_package/debug/out/pay_with_googlepay_button-layout-night.xml +0 -1
- package/android/build/intermediates/data_binding_layout_info_type_package/debug/out/pay_with_googlepay_button-layout.xml +0 -1
- package/android/build/intermediates/data_binding_layout_info_type_package/debug/out/pay_with_googlepay_button_no_shadow-layout.xml +0 -1
- package/android/build/intermediates/data_binding_layout_info_type_package/release/out/googlepay_button-layout-night.xml +0 -1
- package/android/build/intermediates/data_binding_layout_info_type_package/release/out/googlepay_button-layout.xml +0 -1
- package/android/build/intermediates/data_binding_layout_info_type_package/release/out/googlepay_button_no_shadow-layout.xml +0 -1
- package/android/build/intermediates/data_binding_layout_info_type_package/release/out/pay_with_googlepay_button-layout-night.xml +0 -1
- package/android/build/intermediates/data_binding_layout_info_type_package/release/out/pay_with_googlepay_button-layout.xml +0 -1
- package/android/build/intermediates/data_binding_layout_info_type_package/release/out/pay_with_googlepay_button_no_shadow-layout.xml +0 -1
- package/android/build/intermediates/incremental/dataBindingGenBaseClassesDebug/base_builder_log.json +0 -0
- package/android/build/intermediates/incremental/dataBindingGenBaseClassesRelease/base_builder_log.json +0 -0
- package/android/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml +0 -2
- package/android/build/intermediates/incremental/mergeDebugShaders/merger.xml +0 -2
- package/android/build/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml +0 -2
- package/android/build/intermediates/incremental/mergeReleaseShaders/merger.xml +0 -2
- package/android/build/intermediates/incremental/packageDebugAssets/merger.xml +0 -2
- package/android/build/intermediates/incremental/packageDebugResources/compile-file-map.properties +0 -116
- package/android/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml +0 -12
- package/android/build/intermediates/incremental/packageDebugResources/merged.dir/values-night-v8/values-night-v8.xml +0 -12
- package/android/build/intermediates/incremental/packageDebugResources/merger.xml +0 -2
- package/android/build/intermediates/incremental/packageDebugResources/stripped.dir/layout/googlepay_button.xml +0 -31
- package/android/build/intermediates/incremental/packageDebugResources/stripped.dir/layout/googlepay_button_no_shadow.xml +0 -31
- package/android/build/intermediates/incremental/packageDebugResources/stripped.dir/layout/pay_with_googlepay_button.xml +0 -31
- package/android/build/intermediates/incremental/packageDebugResources/stripped.dir/layout/pay_with_googlepay_button_no_shadow.xml +0 -31
- package/android/build/intermediates/incremental/packageDebugResources/stripped.dir/layout-night-v8/googlepay_button.xml +0 -31
- package/android/build/intermediates/incremental/packageDebugResources/stripped.dir/layout-night-v8/pay_with_googlepay_button.xml +0 -31
- package/android/build/intermediates/incremental/packageReleaseAssets/merger.xml +0 -2
- package/android/build/intermediates/incremental/packageReleaseResources/compile-file-map.properties +0 -116
- package/android/build/intermediates/incremental/packageReleaseResources/merged.dir/values/values.xml +0 -12
- package/android/build/intermediates/incremental/packageReleaseResources/merged.dir/values-night-v8/values-night-v8.xml +0 -12
- package/android/build/intermediates/incremental/packageReleaseResources/merger.xml +0 -2
- package/android/build/intermediates/incremental/packageReleaseResources/stripped.dir/layout/googlepay_button.xml +0 -31
- package/android/build/intermediates/incremental/packageReleaseResources/stripped.dir/layout/googlepay_button_no_shadow.xml +0 -31
- package/android/build/intermediates/incremental/packageReleaseResources/stripped.dir/layout/pay_with_googlepay_button.xml +0 -31
- package/android/build/intermediates/incremental/packageReleaseResources/stripped.dir/layout/pay_with_googlepay_button_no_shadow.xml +0 -31
- package/android/build/intermediates/incremental/packageReleaseResources/stripped.dir/layout-night-v8/googlepay_button.xml +0 -31
- package/android/build/intermediates/incremental/packageReleaseResources/stripped.dir/layout-night-v8/pay_with_googlepay_button.xml +0 -31
- package/android/build/intermediates/javac/debug/classes/com/reactnativestripesdk/BuildConfig.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/reactnativestripesdk/databinding/GooglepayButtonBinding.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/reactnativestripesdk/databinding/GooglepayButtonNoShadowBinding.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/reactnativestripesdk/databinding/PayWithGooglepayButtonBinding.class +0 -0
- package/android/build/intermediates/javac/debug/classes/com/reactnativestripesdk/databinding/PayWithGooglepayButtonNoShadowBinding.class +0 -0
- package/android/build/intermediates/javac/release/classes/com/reactnativestripesdk/BuildConfig.class +0 -0
- package/android/build/intermediates/javac/release/classes/com/reactnativestripesdk/databinding/GooglepayButtonBinding.class +0 -0
- package/android/build/intermediates/javac/release/classes/com/reactnativestripesdk/databinding/GooglepayButtonNoShadowBinding.class +0 -0
- package/android/build/intermediates/javac/release/classes/com/reactnativestripesdk/databinding/PayWithGooglepayButtonBinding.class +0 -0
- package/android/build/intermediates/javac/release/classes/com/reactnativestripesdk/databinding/PayWithGooglepayButtonNoShadowBinding.class +0 -0
- package/android/build/intermediates/library_java_res/debug/res.jar +0 -0
- package/android/build/intermediates/library_java_res/release/res.jar +0 -0
- package/android/build/intermediates/local_only_symbol_list/debug/R-def.txt +0 -26
- package/android/build/intermediates/local_only_symbol_list/release/R-def.txt +0 -26
- package/android/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt +0 -11
- package/android/build/intermediates/manifest_merge_blame_file/release/manifest-merger-blame-release-report.txt +0 -11
- package/android/build/intermediates/merged_manifest/debug/AndroidManifest.xml +0 -9
- package/android/build/intermediates/merged_manifest/release/AndroidManifest.xml +0 -9
- package/android/build/intermediates/navigation_json/debug/navigation.json +0 -1
- package/android/build/intermediates/navigation_json/release/navigation.json +0 -1
- package/android/build/intermediates/packaged_manifests/debug/output-metadata.json +0 -16
- package/android/build/intermediates/packaged_manifests/release/output-metadata.json +0 -16
- package/android/build/intermediates/packaged_res/debug/drawable/googlepay_button_content.xml +0 -48
- package/android/build/intermediates/packaged_res/debug/drawable/googlepay_button_overlay.xml +0 -11
- package/android/build/intermediates/packaged_res/debug/drawable/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-ar/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-ar-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-bg/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-bg-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-ca/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-ca-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-cs/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-cs-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-da/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-da-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-de/pay_with_googlepay_button_content.xml +0 -15
- package/android/build/intermediates/packaged_res/debug/drawable-de-night-v8/pay_with_googlepay_button_content.xml +0 -15
- package/android/build/intermediates/packaged_res/debug/drawable-el/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-el-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-es/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-es-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-et/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-et-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-fi/pay_with_googlepay_button_content.xml +0 -15
- package/android/build/intermediates/packaged_res/debug/drawable-fi-night-v8/pay_with_googlepay_button_content.xml +0 -15
- package/android/build/intermediates/packaged_res/debug/drawable-fr/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-fr-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-hdpi-v4/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-hdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-hdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-hdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-hdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-hdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-hr/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-hr-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-id/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-id-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-it/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-it-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-ja/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-ja-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-ko/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-ko-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-mdpi-v4/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-mdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-mdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-mdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-mdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-mdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-ms/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-ms-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-night-hdpi-v8/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-night-hdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-night-mdpi-v8/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-night-mdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-night-v21/googlepay_button_background.xml +0 -7
- package/android/build/intermediates/packaged_res/debug/drawable-night-v21/googlepay_button_no_shadow_background.xml +0 -7
- package/android/build/intermediates/packaged_res/debug/drawable-night-v8/googlepay_button_content.xml +0 -48
- package/android/build/intermediates/packaged_res/debug/drawable-night-v8/googlepay_button_overlay.xml +0 -12
- package/android/build/intermediates/packaged_res/debug/drawable-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-night-xhdpi-v8/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-night-xhdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-night-xxhdpi-v8/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-night-xxhdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-night-xxxhdpi-v8/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-night-xxxhdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-nl/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-nl-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-no/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-no-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-pl/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-pl-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-pt/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-pt-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-ru/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-ru-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-sk/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-sk-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-sl/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-sl-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-sr/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-sr-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-sv/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-sv-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-th/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-th-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-tr/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-tr-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-uk/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-uk-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/debug/drawable-v21/googlepay_button_background.xml +0 -21
- package/android/build/intermediates/packaged_res/debug/drawable-v21/googlepay_button_no_shadow_background.xml +0 -21
- package/android/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-xxhdpi-v4/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-xxhdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-xxhdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-xxhdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-xxhdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-xxhdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-xxxhdpi-v4/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-xxxhdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-xxxhdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-xxxhdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-xxxhdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-xxxhdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/debug/drawable-zh/pay_with_googlepay_button_content.xml +0 -15
- package/android/build/intermediates/packaged_res/debug/layout/googlepay_button.xml +0 -31
- package/android/build/intermediates/packaged_res/debug/layout/googlepay_button_no_shadow.xml +0 -31
- package/android/build/intermediates/packaged_res/debug/layout/pay_with_googlepay_button.xml +0 -31
- package/android/build/intermediates/packaged_res/debug/layout/pay_with_googlepay_button_no_shadow.xml +0 -31
- package/android/build/intermediates/packaged_res/debug/layout-night-v8/googlepay_button.xml +0 -31
- package/android/build/intermediates/packaged_res/debug/layout-night-v8/pay_with_googlepay_button.xml +0 -31
- package/android/build/intermediates/packaged_res/debug/values/values.xml +0 -12
- package/android/build/intermediates/packaged_res/debug/values-night-v8/values-night-v8.xml +0 -12
- package/android/build/intermediates/packaged_res/release/drawable/googlepay_button_content.xml +0 -48
- package/android/build/intermediates/packaged_res/release/drawable/googlepay_button_overlay.xml +0 -11
- package/android/build/intermediates/packaged_res/release/drawable/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-ar/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-ar-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-bg/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-bg-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-ca/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-ca-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-cs/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-cs-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-da/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-da-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-de/pay_with_googlepay_button_content.xml +0 -15
- package/android/build/intermediates/packaged_res/release/drawable-de-night-v8/pay_with_googlepay_button_content.xml +0 -15
- package/android/build/intermediates/packaged_res/release/drawable-el/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-el-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-es/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-es-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-et/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-et-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-fi/pay_with_googlepay_button_content.xml +0 -15
- package/android/build/intermediates/packaged_res/release/drawable-fi-night-v8/pay_with_googlepay_button_content.xml +0 -15
- package/android/build/intermediates/packaged_res/release/drawable-fr/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-fr-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-hdpi-v4/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-hdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-hdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-hdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-hdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-hdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-hr/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-hr-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-id/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-id-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-it/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-it-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-ja/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-ja-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-ko/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-ko-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-mdpi-v4/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-mdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-mdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-mdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-mdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-mdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-ms/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-ms-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-night-hdpi-v8/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-night-hdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-night-mdpi-v8/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-night-mdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-night-v21/googlepay_button_background.xml +0 -7
- package/android/build/intermediates/packaged_res/release/drawable-night-v21/googlepay_button_no_shadow_background.xml +0 -7
- package/android/build/intermediates/packaged_res/release/drawable-night-v8/googlepay_button_content.xml +0 -48
- package/android/build/intermediates/packaged_res/release/drawable-night-v8/googlepay_button_overlay.xml +0 -12
- package/android/build/intermediates/packaged_res/release/drawable-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-night-xhdpi-v8/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-night-xhdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-night-xxhdpi-v8/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-night-xxhdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-night-xxxhdpi-v8/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-night-xxxhdpi-v8/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-nl/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-nl-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-no/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-no-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-pl/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-pl-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-pt/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-pt-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-ru/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-ru-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-sk/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-sk-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-sl/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-sl-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-sr/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-sr-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-sv/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-sv-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-th/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-th-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-tr/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-tr-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-uk/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-uk-night-v8/pay_with_googlepay_button_content.xml +0 -14
- package/android/build/intermediates/packaged_res/release/drawable-v21/googlepay_button_background.xml +0 -21
- package/android/build/intermediates/packaged_res/release/drawable-v21/googlepay_button_no_shadow_background.xml +0 -21
- package/android/build/intermediates/packaged_res/release/drawable-xhdpi-v4/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-xhdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-xhdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-xhdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-xhdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-xhdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-xxhdpi-v4/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-xxhdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-xxhdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-xxhdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-xxhdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-xxhdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-xxxhdpi-v4/googlepay_button_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-xxxhdpi-v4/googlepay_button_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-xxxhdpi-v4/googlepay_button_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-xxxhdpi-v4/googlepay_button_no_shadow_background_image.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-xxxhdpi-v4/googlepay_button_no_shadow_background_image_focused.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-xxxhdpi-v4/googlepay_button_no_shadow_background_image_pressed.9.png +0 -0
- package/android/build/intermediates/packaged_res/release/drawable-zh/pay_with_googlepay_button_content.xml +0 -15
- package/android/build/intermediates/packaged_res/release/layout/googlepay_button.xml +0 -31
- package/android/build/intermediates/packaged_res/release/layout/googlepay_button_no_shadow.xml +0 -31
- package/android/build/intermediates/packaged_res/release/layout/pay_with_googlepay_button.xml +0 -31
- package/android/build/intermediates/packaged_res/release/layout/pay_with_googlepay_button_no_shadow.xml +0 -31
- package/android/build/intermediates/packaged_res/release/layout-night-v8/googlepay_button.xml +0 -31
- package/android/build/intermediates/packaged_res/release/layout-night-v8/pay_with_googlepay_button.xml +0 -31
- package/android/build/intermediates/packaged_res/release/values/values.xml +0 -12
- package/android/build/intermediates/packaged_res/release/values-night-v8/values-night-v8.xml +0 -12
- package/android/build/intermediates/runtime_library_classes_jar/debug/classes.jar +0 -0
- package/android/build/intermediates/runtime_library_classes_jar/release/classes.jar +0 -0
- package/android/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt +0 -5613
- package/android/build/intermediates/symbol_list_with_package_name/release/package-aware-r.txt +0 -5613
- package/android/build/kotlin/compileDebugKotlin/build-history.bin +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.values +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.s +0 -1
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.values.at +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.values.at +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.s +0 -1
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/counters.tab +0 -2
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.values.at +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.values +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.values.at +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.values.s +0 -1
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i +0 -0
- package/android/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i.len +0 -0
- package/android/build/kotlin/compileDebugKotlin/last-build.bin +0 -0
- package/android/build/kotlin/compileReleaseKotlin/build-history.bin +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab.keystream +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab.values.at +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab_i +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab_i.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.values.at +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab_i +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/package-parts.tab +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/package-parts.tab.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/package-parts.tab.values.at +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab_i +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/counters.tab +0 -2
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab.keystream +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab.values.at +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab_i +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab_i.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab.keystream +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab.values.at +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab_i +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab_i.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.keystream +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.keystream.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.values +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.values.at +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.values.s +0 -1
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab_i +0 -0
- package/android/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab_i.len +0 -0
- package/android/build/kotlin/compileReleaseKotlin/last-build.bin +0 -0
- package/android/build/outputs/logs/manifest-merger-debug-report.txt +0 -25
- package/android/build/outputs/logs/manifest-merger-release-report.txt +0 -25
- package/android/build/tmp/compileDebugJavaWithJavac/source-classes-mapping.txt +0 -10
- package/android/build/tmp/compileReleaseJavaWithJavac/source-classes-mapping.txt +0 -10
- package/android/build/tmp/kotlin-classes/debug/META-INF/reactnativestripesdk_debug.kotlin_module +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/AuBECSDebitFormView$setListeners$1.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/AuBECSDebitFormView.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/AuBECSDebitFormViewManager.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardChangedEvent$Companion.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardChangedEvent.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFieldView$setListeners$2.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFieldView$setListeners$3.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFieldView$setListeners$4.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFieldView$setListeners$5.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFieldView$setListeners$6.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFieldView.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFieldViewManager.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFocusEvent$Companion.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFocusEvent.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFormCompleteEvent$Companion.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFormCompleteEvent.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFormView.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CardFormViewManager.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/ConfirmPaymentErrorType.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/ConfirmSetupIntentErrorType.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/ConstantsKt.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/CreateTokenErrorType.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/ErrorsKt.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/ExtensionsKt.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/FormCompleteEvent$Companion.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/FormCompleteEvent.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayButtonManager$Companion.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayButtonManager.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayButtonView.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayErrorType.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayFragment$onViewCreated$1.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayFragment$onViewCreated$2.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayFragment$onViewCreated$3.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayFragment$onViewCreated$4.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayFragment.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/GooglePayPaymentMethodLauncherFragment.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/MappersKt$WhenMappings.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/MappersKt.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/NextPaymentActionErrorType.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentLauncherFragment$WhenMappings.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentLauncherFragment$retrievePaymentIntent$1$WhenMappings.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentLauncherFragment$retrievePaymentIntent$1.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentLauncherFragment.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentMethodCreateParamsException.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentMethodCreateParamsFactory$WhenMappings.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentMethodCreateParamsFactory.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentSheetErrorType.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentSheetFragment.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/PaymentSheetFragmentKt.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/RetrievePaymentIntentErrorType.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/RetrieveSetupIntentErrorType.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeContainerManager.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeContainerView.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$Companion.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$createPaymentMethod$1.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$createTokenForCVCUpdate$1.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$createTokenFromBankAccount$1.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$createTokenFromCard$1.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$googlePayReceiver$1.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$mActivityEventListener$1$onActivityResult$2$WhenMappings.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$mActivityEventListener$1$onActivityResult$2.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$mActivityEventListener$1.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$mPaymentSheetReceiver$1.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$retrievePaymentIntent$1.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule$retrieveSetupIntent$1.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkModule.class +0 -0
- package/android/build/tmp/kotlin-classes/debug/com/reactnativestripesdk/StripeSdkPackage.class +0 -0
- package/android/build/tmp/kotlin-classes/release/META-INF/reactnativestripesdk_release.kotlin_module +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/AuBECSDebitFormView$setListeners$1.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/AuBECSDebitFormView.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/AuBECSDebitFormViewManager.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardChangedEvent$Companion.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardChangedEvent.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFieldView$setListeners$2.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFieldView$setListeners$3.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFieldView$setListeners$4.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFieldView$setListeners$5.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFieldView$setListeners$6.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFieldView.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFieldViewManager.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFocusEvent$Companion.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFocusEvent.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFormCompleteEvent$Companion.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFormCompleteEvent.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFormView.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CardFormViewManager.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/ConfirmPaymentErrorType.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/ConfirmSetupIntentErrorType.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/ConstantsKt.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/CreateTokenErrorType.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/ErrorsKt.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/ExtensionsKt.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/FormCompleteEvent$Companion.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/FormCompleteEvent.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayButtonManager$Companion.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayButtonManager.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayButtonView.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayErrorType.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayFragment$onViewCreated$1.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayFragment$onViewCreated$2.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayFragment$onViewCreated$3.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayFragment$onViewCreated$4.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayFragment.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/GooglePayPaymentMethodLauncherFragment.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/MappersKt$WhenMappings.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/MappersKt.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/NextPaymentActionErrorType.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentLauncherFragment$retrievePaymentIntent$1$WhenMappings.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentLauncherFragment$retrievePaymentIntent$1.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentLauncherFragment.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentMethodCreateParamsException.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentMethodCreateParamsFactory$WhenMappings.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentMethodCreateParamsFactory.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentSheetErrorType.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentSheetFragment.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/PaymentSheetFragmentKt.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/RetrievePaymentIntentErrorType.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/RetrieveSetupIntentErrorType.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeContainerManager.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeContainerView.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$Companion.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$createPaymentMethod$1.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$createTokenForCVCUpdate$1.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$createTokenFromBankAccount$1.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$createTokenFromCard$1.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$googlePayReceiver$1.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$mActivityEventListener$1$onActivityResult$2$WhenMappings.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$mActivityEventListener$1$onActivityResult$2.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$mActivityEventListener$1.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$mPaymentSheetReceiver$1.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$retrievePaymentIntent$1.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule$retrieveSetupIntent$1.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkModule.class +0 -0
- package/android/build/tmp/kotlin-classes/release/com/reactnativestripesdk/StripeSdkPackage.class +0 -0
- package/lib/commonjs/types/Card.js +0 -2
- package/lib/commonjs/types/Card.js.map +0 -1
- package/lib/commonjs/types/PaymentIntents.js +0 -2
- package/lib/commonjs/types/PaymentIntents.js.map +0 -1
- package/lib/commonjs/types/PaymentMethods.js +0 -2
- package/lib/commonjs/types/PaymentMethods.js.map +0 -1
- package/lib/commonjs/types/components/AuBECSDebitForm.js +0 -2
- package/lib/commonjs/types/components/AuBECSDebitForm.js.map +0 -1
- package/lib/module/types/Card.js +0 -2
- package/lib/module/types/Card.js.map +0 -1
- package/lib/module/types/PaymentIntents.js +0 -2
- package/lib/module/types/PaymentIntents.js.map +0 -1
- package/lib/module/types/PaymentMethods.js +0 -2
- package/lib/module/types/PaymentMethods.js.map +0 -1
- package/lib/module/types/components/AuBECSDebitForm.js +0 -2
- package/lib/module/types/components/AuBECSDebitForm.js.map +0 -1
- package/lib/typescript/src/types/Card.d.ts +0 -42
- package/lib/typescript/src/types/PaymentIntents.d.ts +0 -50
- package/lib/typescript/src/types/PaymentMethods.d.ts +0 -167
- package/lib/typescript/src/types/components/AuBECSDebitForm.d.ts +0 -28
- package/src/types/Card.ts +0 -61
- package/src/types/PaymentIntents.ts +0 -56
- package/src/types/PaymentMethods.ts +0 -235
|
@@ -1,51 +1,49 @@
|
|
|
1
|
-
export declare
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
detail?: string;
|
|
11
|
-
}
|
|
12
|
-
interface PostalAddress {
|
|
13
|
-
city?: string;
|
|
14
|
-
country?: string;
|
|
15
|
-
postalCode?: string;
|
|
16
|
-
state?: string;
|
|
17
|
-
street?: string;
|
|
18
|
-
isoCountryCode?: string;
|
|
19
|
-
subAdministrativeArea?: string;
|
|
20
|
-
subLocality?: string;
|
|
21
|
-
}
|
|
22
|
-
interface ContactName {
|
|
23
|
-
familyName?: string;
|
|
24
|
-
namePrefix?: string;
|
|
25
|
-
nameSuffix?: string;
|
|
26
|
-
givenName?: string;
|
|
27
|
-
middleName?: string;
|
|
28
|
-
nickname?: string;
|
|
29
|
-
}
|
|
30
|
-
export interface ShippingContact {
|
|
31
|
-
emailAddress?: string;
|
|
32
|
-
name: ContactName;
|
|
33
|
-
phoneNumber?: number;
|
|
34
|
-
postalAddress: PostalAddress;
|
|
35
|
-
}
|
|
36
|
-
export interface CartSummaryItem {
|
|
37
|
-
label: string;
|
|
38
|
-
amount: string;
|
|
39
|
-
type?: CartSummaryItemType;
|
|
40
|
-
}
|
|
41
|
-
export interface PresentParams {
|
|
42
|
-
cartItems: CartSummaryItem[];
|
|
43
|
-
country: string;
|
|
44
|
-
currency: string;
|
|
45
|
-
requiredShippingAddressFields?: ContactFieldsType[];
|
|
46
|
-
requiredBillingContactFields?: ContactFieldsType[];
|
|
47
|
-
shippingMethods?: ShippingMethod[];
|
|
48
|
-
jcbEnabled?: boolean;
|
|
49
|
-
}
|
|
50
|
-
export {};
|
|
1
|
+
export declare type CartSummaryItemType = 'final' | 'pending';
|
|
2
|
+
export declare type ContactFieldsType = 'emailAddress' | 'name' | 'phoneNumber' | 'phoneticName' | 'postalAddress';
|
|
3
|
+
export declare type AddressFields = 'street' | 'city' | 'subAdministrativeArea' | 'state' | 'postalCode' | 'country' | 'countryCode' | 'subLocality';
|
|
4
|
+
export interface ShippingMethod {
|
|
5
|
+
label: string;
|
|
6
|
+
amount: string;
|
|
7
|
+
type?: CartSummaryItemType;
|
|
8
|
+
identifier: string;
|
|
9
|
+
detail?: string;
|
|
51
10
|
}
|
|
11
|
+
interface PostalAddress {
|
|
12
|
+
city?: string;
|
|
13
|
+
country?: string;
|
|
14
|
+
postalCode?: string;
|
|
15
|
+
state?: string;
|
|
16
|
+
street?: string;
|
|
17
|
+
isoCountryCode?: string;
|
|
18
|
+
subAdministrativeArea?: string;
|
|
19
|
+
subLocality?: string;
|
|
20
|
+
}
|
|
21
|
+
interface ContactName {
|
|
22
|
+
familyName?: string;
|
|
23
|
+
namePrefix?: string;
|
|
24
|
+
nameSuffix?: string;
|
|
25
|
+
givenName?: string;
|
|
26
|
+
middleName?: string;
|
|
27
|
+
nickname?: string;
|
|
28
|
+
}
|
|
29
|
+
export interface ShippingContact {
|
|
30
|
+
emailAddress?: string;
|
|
31
|
+
name: ContactName;
|
|
32
|
+
phoneNumber?: number;
|
|
33
|
+
postalAddress: PostalAddress;
|
|
34
|
+
}
|
|
35
|
+
export interface CartSummaryItem {
|
|
36
|
+
label: string;
|
|
37
|
+
amount: string;
|
|
38
|
+
type?: CartSummaryItemType;
|
|
39
|
+
}
|
|
40
|
+
export interface PresentParams {
|
|
41
|
+
cartItems: CartSummaryItem[];
|
|
42
|
+
country: string;
|
|
43
|
+
currency: string;
|
|
44
|
+
requiredShippingAddressFields?: ContactFieldsType[];
|
|
45
|
+
requiredBillingContactFields?: ContactFieldsType[];
|
|
46
|
+
shippingMethods?: ShippingMethod[];
|
|
47
|
+
jcbEnabled?: boolean;
|
|
48
|
+
}
|
|
49
|
+
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export interface BillingDetails {
|
|
2
|
+
email?: string;
|
|
3
|
+
phone?: string;
|
|
4
|
+
name?: string;
|
|
5
|
+
address?: Address;
|
|
6
|
+
}
|
|
7
|
+
export interface Address {
|
|
8
|
+
city?: string;
|
|
9
|
+
country?: string;
|
|
10
|
+
line1?: string;
|
|
11
|
+
line2?: string;
|
|
12
|
+
postalCode?: string;
|
|
13
|
+
state?: string;
|
|
14
|
+
}
|
|
@@ -52,3 +52,13 @@ export declare const MissingRoutingNumber: {
|
|
|
52
52
|
code: CreateTokenError;
|
|
53
53
|
message: string;
|
|
54
54
|
};
|
|
55
|
+
export declare enum VerifyMicrodepositsError {
|
|
56
|
+
Canceled = "Canceled",
|
|
57
|
+
Failed = "Failed",
|
|
58
|
+
Unknown = "Unknown"
|
|
59
|
+
}
|
|
60
|
+
export declare enum CollectBankAccountError {
|
|
61
|
+
Canceled = "Canceled",
|
|
62
|
+
Failed = "Failed",
|
|
63
|
+
Unknown = "Unknown"
|
|
64
|
+
}
|
|
@@ -1,51 +1,46 @@
|
|
|
1
|
-
export declare
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
}
|
|
47
|
-
interface CreatePaymentMethodParams {
|
|
48
|
-
currencyCode: string;
|
|
49
|
-
amount: number;
|
|
50
|
-
}
|
|
1
|
+
export declare type PresentParams = PresentType & {
|
|
2
|
+
clientSecret: string;
|
|
3
|
+
};
|
|
4
|
+
export declare type PresentType = {
|
|
5
|
+
forSetupIntent?: true;
|
|
6
|
+
currencyCode: string;
|
|
7
|
+
} | {
|
|
8
|
+
forSetupIntent?: false;
|
|
9
|
+
};
|
|
10
|
+
export declare type InitParams = {
|
|
11
|
+
merchantName: string;
|
|
12
|
+
countryCode: string;
|
|
13
|
+
/**
|
|
14
|
+
* Billing address collection configuration.
|
|
15
|
+
*/
|
|
16
|
+
billingAddressConfig?: BillingAddressConfig;
|
|
17
|
+
/**
|
|
18
|
+
* Flag to indicate whether Google Pay collect the customer's email address.
|
|
19
|
+
*
|
|
20
|
+
* Default to `false`.
|
|
21
|
+
*/
|
|
22
|
+
isEmailRequired?: boolean;
|
|
23
|
+
} & IsSupportedParams;
|
|
24
|
+
export declare type IsSupportedParams = {
|
|
25
|
+
testEnv?: boolean;
|
|
26
|
+
/**
|
|
27
|
+
* If `true`, Google Pay is considered ready if the customer's Google Pay wallet
|
|
28
|
+
* has an existing payment method.
|
|
29
|
+
*/
|
|
30
|
+
existingPaymentMethodRequired?: boolean;
|
|
31
|
+
};
|
|
32
|
+
export interface BillingAddressConfig {
|
|
33
|
+
isRequired?: boolean;
|
|
34
|
+
/**
|
|
35
|
+
* Billing address format required to complete the transaction.
|
|
36
|
+
*/
|
|
37
|
+
format?: 'FULL' | 'MIN';
|
|
38
|
+
/**
|
|
39
|
+
* Set to true if a phone number is required to process the transaction.
|
|
40
|
+
*/
|
|
41
|
+
isPhoneNumberRequired?: boolean;
|
|
42
|
+
}
|
|
43
|
+
export interface CreatePaymentMethodParams {
|
|
44
|
+
currencyCode: string;
|
|
45
|
+
amount: number;
|
|
51
46
|
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
export declare type NextAction = VerifyWithMicrodepositsAction | UrlRedirectAction | WeChatRedirectAction | AlipayRedirectAction | BoletoVoucherAction | OxxoVoucherAction;
|
|
2
|
+
export declare type VerifyWithMicrodepositsAction = {
|
|
3
|
+
type: 'verifyWithMicrodeposits';
|
|
4
|
+
redirectUrl: string;
|
|
5
|
+
microdepositType: string;
|
|
6
|
+
arrivalDate: string;
|
|
7
|
+
};
|
|
8
|
+
export declare type UrlRedirectAction = {
|
|
9
|
+
type: 'urlRedirect';
|
|
10
|
+
redirectUrl: string;
|
|
11
|
+
};
|
|
12
|
+
export declare type WeChatRedirectAction = {
|
|
13
|
+
type: 'weChatRedirect';
|
|
14
|
+
redirectUrl: string;
|
|
15
|
+
};
|
|
16
|
+
export declare type AlipayRedirectAction = {
|
|
17
|
+
type: 'alipayRedirect';
|
|
18
|
+
redirectUrl: string;
|
|
19
|
+
nativeRedirectUrl: string;
|
|
20
|
+
};
|
|
21
|
+
export declare type BoletoVoucherAction = {
|
|
22
|
+
type: 'boletoVoucher';
|
|
23
|
+
expiration: number;
|
|
24
|
+
voucherURL: string;
|
|
25
|
+
voucherNumber: string;
|
|
26
|
+
};
|
|
27
|
+
export declare type OxxoVoucherAction = {
|
|
28
|
+
type: 'oxxoVoucher';
|
|
29
|
+
expiration: number;
|
|
30
|
+
voucherURL: string;
|
|
31
|
+
voucherNumber: string;
|
|
32
|
+
};
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import type { StripeError } from '.';
|
|
2
|
+
import type { Address } from './Common';
|
|
3
|
+
import type { Result as PaymentMethodResult } from './PaymentMethod';
|
|
4
|
+
import type { NextAction } from './NextAction';
|
|
5
|
+
import type * as PaymentMethod from './PaymentMethod';
|
|
6
|
+
export interface Result {
|
|
7
|
+
id: string;
|
|
8
|
+
amount: number;
|
|
9
|
+
created: string;
|
|
10
|
+
currency: string;
|
|
11
|
+
status: Status;
|
|
12
|
+
description: string | null;
|
|
13
|
+
receiptEmail: string | null;
|
|
14
|
+
canceledAt: string | null;
|
|
15
|
+
clientSecret: string;
|
|
16
|
+
livemode: boolean;
|
|
17
|
+
paymentMethodId: string;
|
|
18
|
+
captureMethod: 'Automatic' | 'Manual';
|
|
19
|
+
confirmationMethod: 'Automatic' | 'Manual';
|
|
20
|
+
lastPaymentError: LastPaymentError | null;
|
|
21
|
+
shipping: ShippingDetails | null;
|
|
22
|
+
nextAction: NextAction | null;
|
|
23
|
+
}
|
|
24
|
+
export declare type ConfirmParams = PaymentMethod.CreateParams;
|
|
25
|
+
export declare type ConfirmOptions = PaymentMethod.ConfirmOptions;
|
|
26
|
+
export declare type LastPaymentError = StripeError<string> & {
|
|
27
|
+
paymentMethod: PaymentMethodResult;
|
|
28
|
+
};
|
|
29
|
+
export declare type FutureUsage = 'OffSession' | 'OnSession';
|
|
30
|
+
export interface ShippingDetails {
|
|
31
|
+
address: Required<Address>;
|
|
32
|
+
name: string;
|
|
33
|
+
carrier: string;
|
|
34
|
+
phone: string;
|
|
35
|
+
trackingNumber: string;
|
|
36
|
+
}
|
|
37
|
+
export declare enum Status {
|
|
38
|
+
Succeeded = "Succeeded",
|
|
39
|
+
RequiresPaymentMethod = "RequiresPaymentMethod",
|
|
40
|
+
RequiresConfirmation = "RequiresConfirmation",
|
|
41
|
+
Canceled = "Canceled",
|
|
42
|
+
Processing = "Processing",
|
|
43
|
+
RequiresAction = "RequiresAction",
|
|
44
|
+
RequiresCapture = "RequiresCapture",
|
|
45
|
+
Unknown = "Unknown"
|
|
46
|
+
}
|
|
@@ -0,0 +1,210 @@
|
|
|
1
|
+
import type { FormDetails } from './components/AuBECSDebitFormComponent';
|
|
2
|
+
import type { CardBrand, BankAcccountHolderType, BankAcccountType } from './Token';
|
|
3
|
+
import type { FutureUsage } from './PaymentIntent';
|
|
4
|
+
import type { Address, BillingDetails } from './Common';
|
|
5
|
+
export interface Result {
|
|
6
|
+
id: string;
|
|
7
|
+
liveMode: boolean;
|
|
8
|
+
customerId: string;
|
|
9
|
+
billingDetails: BillingDetails;
|
|
10
|
+
paymentMethodType: Type;
|
|
11
|
+
AuBecsDebit: AuBecsDebitResult;
|
|
12
|
+
BacsDebit: BacsDebitResult;
|
|
13
|
+
Card: CardResult;
|
|
14
|
+
Fpx: FpxResult;
|
|
15
|
+
Ideal: IdealResult;
|
|
16
|
+
SepaDebit: SepaDebitResult;
|
|
17
|
+
Sofort: SofortResult;
|
|
18
|
+
Upi: UpiResult;
|
|
19
|
+
USBankAccount: USBankAccountResult;
|
|
20
|
+
}
|
|
21
|
+
export declare type CreateParams = CardParams | IdealParams | OxxoParams | P24Params | AlipayParams | GiropayParams | SepaParams | EpsParams | AuBecsDebitParams | SofortParams | GrabPayParams | FPXParams | AfterpayClearpayParams | KlarnaParams | BancontactParams | USBankAccountParams;
|
|
22
|
+
export declare type ConfirmParams = CreateParams;
|
|
23
|
+
export declare type CreateOptions = {
|
|
24
|
+
setupFutureUsage?: FutureUsage;
|
|
25
|
+
};
|
|
26
|
+
export declare type ConfirmOptions = CreateOptions;
|
|
27
|
+
export declare type ShippingDetails = BillingDetails;
|
|
28
|
+
export declare type CardParams = {
|
|
29
|
+
paymentMethodType: 'Card';
|
|
30
|
+
paymentMethodData?: {
|
|
31
|
+
token?: string;
|
|
32
|
+
billingDetails?: BillingDetails;
|
|
33
|
+
};
|
|
34
|
+
} | {
|
|
35
|
+
paymentMethodType: 'Card';
|
|
36
|
+
paymentMethodData: {
|
|
37
|
+
paymentMethodId: string;
|
|
38
|
+
cvc?: string;
|
|
39
|
+
billingDetails?: BillingDetails;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export interface IdealParams {
|
|
43
|
+
paymentMethodType: 'Ideal';
|
|
44
|
+
paymentMethodData?: {
|
|
45
|
+
bankName?: string;
|
|
46
|
+
billingDetails?: BillingDetails;
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
export interface FPXParams {
|
|
50
|
+
paymentMethodType: 'Fpx';
|
|
51
|
+
paymentMethodData?: {
|
|
52
|
+
testOfflineBank?: boolean;
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
export interface AlipayParams {
|
|
56
|
+
paymentMethodType: 'Alipay';
|
|
57
|
+
}
|
|
58
|
+
export interface OxxoParams {
|
|
59
|
+
paymentMethodType: 'Oxxo';
|
|
60
|
+
paymentMethodData: {
|
|
61
|
+
billingDetails: BillingDetails;
|
|
62
|
+
};
|
|
63
|
+
}
|
|
64
|
+
export interface SofortParams {
|
|
65
|
+
paymentMethodType: 'Sofort';
|
|
66
|
+
paymentMethodData: {
|
|
67
|
+
country: string;
|
|
68
|
+
billingDetails: BillingDetails;
|
|
69
|
+
};
|
|
70
|
+
}
|
|
71
|
+
export interface GrabPayParams {
|
|
72
|
+
paymentMethodType: 'GrabPay';
|
|
73
|
+
paymentMethodData?: {
|
|
74
|
+
billingDetails?: BillingDetails;
|
|
75
|
+
};
|
|
76
|
+
}
|
|
77
|
+
export interface BancontactParams {
|
|
78
|
+
paymentMethodType: 'Bancontact';
|
|
79
|
+
paymentMethodData: {
|
|
80
|
+
billingDetails: BillingDetails;
|
|
81
|
+
};
|
|
82
|
+
}
|
|
83
|
+
export interface SepaParams {
|
|
84
|
+
paymentMethodType: 'SepaDebit';
|
|
85
|
+
paymentMethodData: {
|
|
86
|
+
iban: string;
|
|
87
|
+
billingDetails: BillingDetails;
|
|
88
|
+
};
|
|
89
|
+
}
|
|
90
|
+
export interface GiropayParams {
|
|
91
|
+
paymentMethodType: 'Giropay';
|
|
92
|
+
paymentMethodData: {
|
|
93
|
+
billingDetails: BillingDetails;
|
|
94
|
+
};
|
|
95
|
+
}
|
|
96
|
+
export interface AfterpayClearpayParams {
|
|
97
|
+
paymentMethodType: 'AfterpayClearpay';
|
|
98
|
+
paymentMethodData: {
|
|
99
|
+
shippingDetails: ShippingDetails;
|
|
100
|
+
billingDetails: BillingDetails;
|
|
101
|
+
};
|
|
102
|
+
}
|
|
103
|
+
export declare type KlarnaParams = {
|
|
104
|
+
paymentMethodType: 'Klarna';
|
|
105
|
+
paymentMethodData: {
|
|
106
|
+
billingDetails: Pick<Required<BillingDetails>, 'email'> & {
|
|
107
|
+
address: Pick<Required<Address>, 'country'>;
|
|
108
|
+
} & BillingDetails;
|
|
109
|
+
};
|
|
110
|
+
};
|
|
111
|
+
export interface EpsParams {
|
|
112
|
+
paymentMethodType: 'Eps';
|
|
113
|
+
paymentMethodData: {
|
|
114
|
+
billingDetails: BillingDetails;
|
|
115
|
+
};
|
|
116
|
+
}
|
|
117
|
+
export interface P24Params {
|
|
118
|
+
paymentMethodType: 'P24';
|
|
119
|
+
paymentMethodData: {
|
|
120
|
+
billingDetails: BillingDetails;
|
|
121
|
+
};
|
|
122
|
+
}
|
|
123
|
+
export interface WeChatPayParams {
|
|
124
|
+
paymentMethodType: 'WeChatPay';
|
|
125
|
+
paymentMethodData: {
|
|
126
|
+
appId: string;
|
|
127
|
+
billingDetails?: BillingDetails;
|
|
128
|
+
};
|
|
129
|
+
}
|
|
130
|
+
export interface AuBecsDebitParams {
|
|
131
|
+
paymentMethodType: 'AuBecsDebit';
|
|
132
|
+
paymentMethodData: {
|
|
133
|
+
formDetails: FormDetails;
|
|
134
|
+
};
|
|
135
|
+
}
|
|
136
|
+
/**
|
|
137
|
+
* If paymentMethodData is null, it is assumed that the bank account details have already been attached
|
|
138
|
+
* via `collectBankAccountForPayment` or `collectBankAccountForSetup`.
|
|
139
|
+
*/
|
|
140
|
+
export declare type USBankAccountParams = {
|
|
141
|
+
paymentMethodType: 'USBankAccount';
|
|
142
|
+
paymentMethodData?: {
|
|
143
|
+
billingDetails: Pick<Required<BillingDetails>, 'name'> & BillingDetails;
|
|
144
|
+
accountNumber: string;
|
|
145
|
+
routingNumber: string;
|
|
146
|
+
/** Defaults to Individual */
|
|
147
|
+
accountHolderType?: BankAcccountHolderType;
|
|
148
|
+
/** Defaults to Checking */
|
|
149
|
+
accountType?: BankAcccountType;
|
|
150
|
+
};
|
|
151
|
+
};
|
|
152
|
+
export interface AuBecsDebitResult {
|
|
153
|
+
fingerprint?: string;
|
|
154
|
+
last4?: string;
|
|
155
|
+
bsbNumber?: string;
|
|
156
|
+
}
|
|
157
|
+
export interface BacsDebitResult {
|
|
158
|
+
sortCode?: string;
|
|
159
|
+
last4?: string;
|
|
160
|
+
fingerprint?: string;
|
|
161
|
+
}
|
|
162
|
+
export interface CardResult {
|
|
163
|
+
brand?: CardBrand;
|
|
164
|
+
country?: string;
|
|
165
|
+
expYear?: number;
|
|
166
|
+
expMonth?: number;
|
|
167
|
+
fingerprint?: string;
|
|
168
|
+
funding?: string;
|
|
169
|
+
last4?: string;
|
|
170
|
+
}
|
|
171
|
+
export interface FpxResult {
|
|
172
|
+
bank?: string;
|
|
173
|
+
}
|
|
174
|
+
export interface IdealResult {
|
|
175
|
+
bankIdentifierCode?: string;
|
|
176
|
+
bank?: string;
|
|
177
|
+
}
|
|
178
|
+
export interface SepaDebitResult {
|
|
179
|
+
bankCode?: string;
|
|
180
|
+
country?: string;
|
|
181
|
+
fingerprint?: string;
|
|
182
|
+
last4?: string;
|
|
183
|
+
}
|
|
184
|
+
export interface SofortResult {
|
|
185
|
+
country?: string;
|
|
186
|
+
}
|
|
187
|
+
export interface UpiResult {
|
|
188
|
+
vpa?: string;
|
|
189
|
+
}
|
|
190
|
+
export declare type USBankAccountResult = {
|
|
191
|
+
routingNumber?: string;
|
|
192
|
+
accountHolderType?: BankAcccountHolderType;
|
|
193
|
+
accountType?: BankAcccountType;
|
|
194
|
+
last4?: string;
|
|
195
|
+
bankName?: string;
|
|
196
|
+
linkedAccount?: string;
|
|
197
|
+
fingerprint?: string;
|
|
198
|
+
preferredNetwork?: string;
|
|
199
|
+
supportedNetworks?: string[];
|
|
200
|
+
};
|
|
201
|
+
export declare type Type = 'AfterpayClearpay' | 'Card' | 'Alipay' | 'GrabPay' | 'Ideal' | 'Fpx' | 'CardPresent' | 'SepaDebit' | 'AuBecsDebit' | 'BacsDebit' | 'Giropay' | 'P24' | 'Eps' | 'Bancontact' | 'Oxxo' | 'Sofort' | 'Upi' | 'USBankAccount' | 'Unknown';
|
|
202
|
+
export declare type CollectBankAccountParams = {
|
|
203
|
+
paymentMethodType: 'USBankAccount';
|
|
204
|
+
paymentMethodData: {
|
|
205
|
+
billingDetails: {
|
|
206
|
+
name: string;
|
|
207
|
+
email?: string;
|
|
208
|
+
};
|
|
209
|
+
};
|
|
210
|
+
};
|
|
@@ -1,56 +1,42 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
line1?: string;
|
|
42
|
-
line2?: string;
|
|
43
|
-
postalCode?: string;
|
|
44
|
-
state?: string;
|
|
45
|
-
}
|
|
46
|
-
interface BillingDetails {
|
|
47
|
-
address: Address;
|
|
48
|
-
name?: string;
|
|
49
|
-
email?: string;
|
|
50
|
-
phone?: string;
|
|
51
|
-
}
|
|
52
|
-
interface PaymentOption {
|
|
53
|
-
label: string;
|
|
54
|
-
image: string;
|
|
55
|
-
}
|
|
1
|
+
import type { BillingDetails } from './Common';
|
|
2
|
+
export declare type SetupParams = ClientSecretParams & GooglePayParams & ApplePayParams & {
|
|
3
|
+
customerId?: string;
|
|
4
|
+
customerEphemeralKeySecret?: string;
|
|
5
|
+
customFlow?: boolean;
|
|
6
|
+
merchantDisplayName?: string;
|
|
7
|
+
style?: 'alwaysLight' | 'alwaysDark' | 'automatic';
|
|
8
|
+
returnURL?: string;
|
|
9
|
+
primaryButtonColor?: string;
|
|
10
|
+
defaultBillingDetails?: BillingDetails;
|
|
11
|
+
allowsDelayedPaymentMethods?: boolean;
|
|
12
|
+
};
|
|
13
|
+
declare type ClientSecretParams = {
|
|
14
|
+
paymentIntentClientSecret: string;
|
|
15
|
+
setupIntentClientSecret?: undefined;
|
|
16
|
+
} | {
|
|
17
|
+
setupIntentClientSecret: string;
|
|
18
|
+
paymentIntentClientSecret?: undefined;
|
|
19
|
+
};
|
|
20
|
+
declare type ApplePayParams = {
|
|
21
|
+
applePay?: true;
|
|
22
|
+
merchantCountryCode: string;
|
|
23
|
+
} | {
|
|
24
|
+
applePay?: false;
|
|
25
|
+
merchantCountryCode?: string;
|
|
26
|
+
};
|
|
27
|
+
declare type GooglePayParams = {
|
|
28
|
+
googlePay?: true;
|
|
29
|
+
merchantCountryCode: string;
|
|
30
|
+
currencyCode?: string;
|
|
31
|
+
testEnv?: boolean;
|
|
32
|
+
} | {
|
|
33
|
+
googlePay?: false;
|
|
34
|
+
merchantCountryCode?: string;
|
|
35
|
+
currencyCode?: string;
|
|
36
|
+
testEnv?: boolean;
|
|
37
|
+
};
|
|
38
|
+
export interface PaymentOption {
|
|
39
|
+
label: string;
|
|
40
|
+
image: string;
|
|
56
41
|
}
|
|
42
|
+
export {};
|