-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
feat(connector): [MIFINITY] Implement payment flows and Mifinity payment method #4592
Merged
Merged
Changes from all commits
Commits
Show all changes
49 commits
Select commit
Hold shift + click to select a range
c492f98
refactor: add template code for mifinity
swangi-kumari c7a161b
docs(openapi): re-generate OpenAPI specification
hyperswitch-bot[bot] 1b75cee
Merge branch 'main' into mifinity-template-code
swangi-kumari 90c4bd8
refactor: fix
swangi-kumari 21b4c61
docs(openapi): re-generate OpenAPI specification
hyperswitch-bot[bot] 9712441
Merge branch 'main' into mifinity-template-code
swangi-kumari 87ba8dd
feat: implement mifinity
swangi-kumari 8ffb2a4
Merge branch 'main' into mifinity-impl
swangi-kumari 6cccbf2
Merge branch 'main' into mifinity-impl
swangi-kumari 54a5703
refactor: payments
swangi-kumari 120320a
Merge branch 'main' into mifinity-impl
swangi-kumari 5631bac
feat: payments and sync
swangi-kumari 6d5004f
refactor: transaction_reference in psync
swangi-kumari 61544a9
chore: run formatter
hyperswitch-bot[bot] bc9924e
refactor: add brand_id for mifinity in metadata
swangi-kumari 78fdc58
Merge branch 'mifinity-impl' of https://github.com/juspay/hyperswitch…
swangi-kumari 4abddb7
refactor: solve clippy
swangi-kumari d547e85
Merge branch 'main' into mifinity-impl
swangi-kumari 8690792
refactor: clippy
swangi-kumari e746994
refactor: add dependency to support Date
swangi-kumari 9b2f176
time dependency added
KiranKBR c4b75c5
chore: run formatter
hyperswitch-bot[bot] e3eab66
transfermer status update
KiranKBR b597beb
Merge branch 'mifinity-impl' of https://github.com/juspay/hyperswitch…
swangi-kumari e3e502b
refactor: resolve clippy
swangi-kumari 4cc284d
feature enabled serde-human-readable
KiranKBR a424a3f
refactor: resolve clippy
swangi-kumari 7f12a42
Merge branch 'mifinity-impl' of https://github.com/juspay/hyperswitch…
swangi-kumari dadb522
refactor: opdate openapi
swangi-kumari 374c9e8
refactor: fix openapi
swangi-kumari c917034
Merge branch 'main' into mifinity-impl
swangi-kumari 7e7753f
refactor: resolve clippy
swangi-kumari 35fee25
refactor: solve open api
swangi-kumari ff6a76c
refactor: resolve comments and handle psync for no response scenario
swangi-kumari fc9b6e3
Merge branch 'main' into mifinity-impl
swangi-kumari 0ac186f
refactor: resolve conflicts
swangi-kumari 02c8dad
refactor: comments
swangi-kumari aca02c2
refactor: resolve comments
swangi-kumari 486c9f4
Merge branch 'main' into mifinity-impl
swangi-kumari 81844d0
docs(openapi): re-generate OpenAPI specification
hyperswitch-bot[bot] cdb990c
Merge branch 'mifinity-impl' of https://github.com/juspay/hyperswitch…
swangi-kumari e749d59
refactor: solve clippy
swangi-kumari 2adf3e7
refactor: add required fields
swangi-kumari b262b9f
Merge branch 'main' into mifinity-impl
swangi-kumari ba118d1
refactor: make trace_id as string
swangi-kumari 36e5d9b
refactor: resolce conflicts
swangi-kumari e8d7fb3
refactor: make brand id secrte in meta data
swangi-kumari 277f481
refactor: resolve cnflicts
swangi-kumari 0fe7493
refactor: resolve conflicts
swangi-kumari 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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 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 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 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 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 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 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 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 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 |
---|---|---|
|
@@ -90,6 +90,7 @@ pub enum WalletType { | |
Swish, | ||
Cashapp, | ||
Venmo, | ||
Mifinity, | ||
} | ||
|
||
#[derive( | ||
|
This file contains 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 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 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 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 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 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 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 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 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 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.
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.
Get it reviewed from @SanchithHegde , along with cargo changes