-
Notifications
You must be signed in to change notification settings - Fork 1.1k
StripeCryptoOnramp SDK: Better Cancellation Signaling #6322
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
mliberatore
merged 28 commits into
master
from
twigz/proper-payment-collection-cancellation
Apr 23, 2026
+26
−13
Merged
Changes from 27 commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
cfded06
Adds new result type for `collectPaymentMethod` to sometimes return K…
mliberatore bf2d135
Adds helper extensions for payment details → KycInfo
mliberatore 83dc992
Updates the CryptoOnrampCoordinator API and adapts the example app to…
mliberatore 68b4522
Updates README about the API behavior addition
mliberatore 30d5e8b
Also updates the ApplePay code path in PaymentView to maintain existi…
mliberatore 30ee2ee
Merge branch 'master' into mliberatore/crypto-onramp-apple-pay-kyc
mliberatore 43b06aa
Adds test code for testing the Apple Pay L0 KYC flow
mliberatore e0a517e
Revert "Adds test code for testing the Apple Pay L0 KYC flow"
mliberatore 3228106
Merge branch 'master' into mliberatore/crypto-onramp-apple-pay-kyc
mliberatore 3a61861
Adds docs to address extension
mliberatore caaca88
Adds unit test for billing contact → KycInfo conversion and Address.i…
mliberatore 21fab80
Merge branch 'master' into mliberatore/crypto-onramp-apple-pay-kyc
Twigz 6cb1cee
PR review cleanup, additional tests
Twigz 592046a
Merge branch 'master' into mliberatore/crypto-onramp-apple-pay-kyc
Twigz 90c1915
Fix linting
Twigz cbf48c3
Merge branch 'master' into mliberatore/crypto-onramp-apple-pay-kyc
Twigz fa2966c
Allow for proper cancellation of payment collection
Twigz c59f3d3
Merge branch 'master' into twigz/proper-payment-collection-cancellation
Twigz 922899d
Merge branch 'master' into twigz/proper-payment-collection-cancellation
Twigz b5cf8e5
Previous selectedPaymentSource for ApplePay
Twigz f718c6f
Update CryptoOnrampCoordinator.swift
Twigz 6a75425
Merge branch 'master' into twigz/proper-payment-collection-cancellation
mliberatore e0d0283
Renames `applePayPreviousPaymentSource` and adds clear docs
mliberatore a4615f7
Merge branch 'master' into twigz/proper-payment-collection-cancellation
mliberatore 9845044
Merge branch 'master' into twigz/proper-payment-collection-cancellation
Twigz 87ed9c1
Merge branch 'master' into twigz/proper-payment-collection-cancellation
Twigz 5834398
Merge branch 'master' into twigz/proper-payment-collection-cancellation
Twigz 73a636f
Applies Jean’s suggestion for reversing `paymentSourceBeforeApplePay`…
mliberatore File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Have we considered flipping the direction here? Instead of saving what we had before and restoring on cancel, we could use a
pendingApplePayPaymentSourcethat only gets promoted toselectedPaymentSourceindidCompleteWith(.success)- leaving it untouched on cancel/error, with nothing to restore. It'd also make cleanup symmetric: justpendingApplePayPaymentSource = nilat the end ofdidCompleteWithin all cases.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good idea, hadn't thought about it that way. It reduces the overall management of that state. I‘ve implemented the suggestion in 73a636f.