-
Notifications
You must be signed in to change notification settings - Fork 4.2k
feat(core): billing_details inclusion in Payment Intent #5090
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
+212
−144
Merged
Changes from 21 commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
551e52f
feat: addition of billing_address_details in Payment Intent
prajjwalkumar17 69e23eb
feat: addition of billing_address_details in Payment Intent
prajjwalkumar17 73c29dd
chore: run formatter
hyperswitch-bot[bot] fb2371b
Merge branch 'main' into feat/business_address_in_payment_intent
prajjwalkumar17 e0bffab
chore: clippy corrections
prajjwalkumar17 60c5579
Merge branch 'feat/business_address_in_payment_intent' of https://git…
prajjwalkumar17 9a6f846
chore: run formatter
hyperswitch-bot[bot] 6892f35
chore: clippy corrections
prajjwalkumar17 89cb79e
Merge branch 'feat/business_address_in_payment_intent' of https://git…
prajjwalkumar17 801c8e6
chore: using Address struct instead of BusinessDetails
prajjwalkumar17 19000a5
chore: run formatter
hyperswitch-bot[bot] 144f5c6
chore: replacing null constructor with default implemetation
prajjwalkumar17 c6f9ad2
chore: minor code beautifications
prajjwalkumar17 5fb6287
chore: run formatter
hyperswitch-bot[bot] 6974c11
chore: merge main
prajjwalkumar17 4e0a13e
chore: code beautification
prajjwalkumar17 17305b2
chore: run formatter
hyperswitch-bot[bot] c3fc514
chore: addressing comments
prajjwalkumar17 417469c
chore: run formatter
hyperswitch-bot[bot] af27990
chore: addition of billing address in payment_confirm and update flows
prajjwalkumar17 fa76433
chore: run formatter
hyperswitch-bot[bot] df7bff1
chore: addressal of comments
prajjwalkumar17 1e874d7
chore: merge conflicts
prajjwalkumar17 e54fe58
chore: schema changes
prajjwalkumar17 0c7ac06
chore: spell checks addressed of some old change
prajjwalkumar17 b49b186
chore: renamed the col to billing_details
prajjwalkumar17 b5ecb0c
chore: run formatter
hyperswitch-bot[bot] ba888ba
Merge branch 'main' into feat/business_address_in_payment_intent
prajjwalkumar17 cfcad51
chore: clippy lints fixed
prajjwalkumar17 38319c8
chore: run formatter
hyperswitch-bot[bot] 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
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
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
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
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
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
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
2 changes: 2 additions & 0 deletions
2
migrations/2024-06-23-200642_add_billing_address_details_in_payment_intent/down.sql
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
-- This file should undo anything in `up.sql` | ||
ALTER TABLE payment_intent DROP COLUMN IF EXISTS billing_address_details; |
2 changes: 2 additions & 0 deletions
2
migrations/2024-06-23-200642_add_billing_address_details_in_payment_intent/up.sql
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
-- Your SQL goes here | ||
ALTER TABLE payment_intent ADD COLUMN IF NOT EXISTS billing_address_details BYTEA DEFAULT NULL; |
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.
Uh oh!
There was an error while loading. Please reload this page.