feat(dashboard_metadata): Add ReconStatus in dashboard_metadata#7595
Merged
likhinbopanna merged 7 commits intomainfrom Mar 26, 2025
Merged
feat(dashboard_metadata): Add ReconStatus in dashboard_metadata#7595likhinbopanna merged 7 commits intomainfrom
ReconStatus in dashboard_metadata#7595likhinbopanna merged 7 commits intomainfrom
Conversation
Changed Files
|
Riddhiagrawal001
previously approved these changes
Mar 21, 2025
apoorvdixit88
previously approved these changes
Mar 21, 2025
bdc7341
Comment on lines
+108
to
+109
| #[derive(Debug, serde::Deserialize, serde::Serialize, Clone)] | ||
| pub struct ReconStatus { |
Member
There was a problem hiding this comment.
Nit: This can also derive Copy for now (because all fields are bools).
Optional change, by the way.
| data, | ||
| ) | ||
| .await | ||
| .change_context(UserErrors::InternalServerError); |
Member
There was a problem hiding this comment.
Please add context message.
Contributor
Author
There was a problem hiding this comment.
Removed the change context here. Added a context message in the inner function call.
apoorvdixit88
approved these changes
Mar 24, 2025
SanchithHegde
approved these changes
Mar 24, 2025
JeevaRamu0104
approved these changes
Mar 24, 2025
pixincreate
added a commit
that referenced
this pull request
Mar 26, 2025
…acilitapay * 'main' of github.com:juspay/hyperswitch: chore(cypress): bump cypress to `v14.2.0` (#7640) feat(connector): [BRAINTREE] Pass connector request reference id (#7609) fix(connector): [GlobalPay] Address `5xx` when cancelling a paypal transaction (#7605) feat(dashboard_metadata): Add `ReconStatus` in `dashboard_metadata` (#7595) fix(connectors): [Adyen] remove redundant enums (#7601) feat: add routing support for v2 sdk session flow (#6763) chore(version): 2025.03.26.0 feat(connector): [Coingate] add wasm changes for coingate metadata (#7632) feat(connector): [TRUSTPAY] implement Banktransfer PaymentMethod (#7575) feat(connector): [BANKOFAMERICA] Implement Samsung Pay (#6888) fix(connector): add Nomupay in payout_connector_list for all environment (#7521) chore(version): 2025.03.25.0
pixincreate
added a commit
that referenced
this pull request
Mar 27, 2025
…e-status-check * 'main' of github.com:juspay/hyperswitch: build(docker): specify user for runner stage (#7641) chore(version): 2025.03.27.0 fix(connector): [Nexixpay] update status mapping nexixpay (#7612) refactor(connector): [TrustPay] Fix status and wasm changes (#7649) fix(connector): [redsys] psync transaction type mapping (#7628) feat(themes): Add email configuration support for themes (#7580) feat(core): add profile level config for debit routing feature (#7470) fix(connector): [CYBERSOURCE] change ucaf_collection_indicator for mastercard payments via netcetera (#7623) fix(connector): fix required fields for mandates supported connectors (#6930) chore(cypress): bump cypress to `v14.2.0` (#7640) feat(connector): [BRAINTREE] Pass connector request reference id (#7609) fix(connector): [GlobalPay] Address `5xx` when cancelling a paypal transaction (#7605) feat(dashboard_metadata): Add `ReconStatus` in `dashboard_metadata` (#7595) fix(connectors): [Adyen] remove redundant enums (#7601) feat: add routing support for v2 sdk session flow (#6763)
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Type of Change
Description
This PR will add a new variant in Dashboard Metadata for storing the recon state.
Additional Changes
Motivation and Context
Closes #2647
How did you test it?
The above API will give 200 OK.
Response:
{ "ReconStatus": { "is_order_data_set": true, "is_processor_data_set": true } }Checklist
cargo +nightly fmt --allcargo clippy