feat(router): add capability to force challenge for 3DS Payments through Netcetera and send few optional fields#7429
Merged
Gnanasundari24 merged 9 commits intomainfrom Mar 6, 2025
Conversation
14 tasks
swangi-kumari
previously approved these changes
Mar 5, 2025
crates/common_utils/src/types.rs
Outdated
| self.0.major | ||
| } | ||
|
|
||
| /// returns major version number |
Contributor
There was a problem hiding this comment.
Suggested change
| /// returns major version number | |
| /// returns minor version number |
| pub is_clear_pan_retries_enabled: Option<bool>, | ||
|
|
||
| /// Indicates if 3ds challenge is forced | ||
| pub force_3ds_challenge: Option<bool>, |
Contributor
There was a problem hiding this comment.
Instead of optional, can we have this as bool only and make is false by default ?
| pub card_testing_guard_config: Option<CardTestingGuardConfig>, | ||
| pub card_testing_secret_key: OptionalEncryptableName, | ||
| pub is_clear_pan_retries_enabled: bool, | ||
| pub force_3ds_challenge: Option<bool>, |
| @@ -0,0 +1,2 @@ | |||
| ALTER TABLE business_profile | |||
Contributor
There was a problem hiding this comment.
Query will also change if you are making it a mandatory field.
ShankarSinghC
approved these changes
Mar 6, 2025
swangi-kumari
approved these changes
Mar 6, 2025
Sakilmostak
added a commit
that referenced
this pull request
Mar 6, 2025
…ugh Netcetera and send few optional fields (#7429) Co-authored-by: Sk Sakil Mostak <skmahim71@gmail.com> Co-authored-by: Sakil Mostak <73734619+Sakilmostak@users.noreply.github.com>
14 tasks
pixincreate
added a commit
that referenced
this pull request
Mar 7, 2025
* 'main' of github.com:juspay/hyperswitch: feat(hipay): Add Template PR (#7360) chore(version): 2025.03.07.0 chore(postman): update Postman collection files feat(analytics): add new filters, dimensions and metrics for authentication analytics (#7451) feat(router): add capability to force challenge for 3DS Payments through Netcetera and send few optional fields (#7429) feat(analytics): refactor and rewrite authentication related analytics (#7433) refactor(core): Added payment id in authentication router data (#7441) feat(connector): Added ThreeDs server integration template pr (#7424) fix(xendit): Fix wasm changes (#7419) chore(postman): postman tests fixes (#7159) ci(cypress): move customer acceptance in configs to a const within commons (#7435) feat(core): add additional revenue recovery call flow (#7402) chore(version): 2025.03.06.0 feat(payment_link): expose payment link configs for SDK UI rules and payment button (#7427)
pixincreate
added a commit
that referenced
this pull request
Mar 7, 2025
…juspay/hyperswitch into connector/gpay-mandates-authorizedotnet * 'connector/gpay-mandates-authorizedotnet' of github.com:juspay/hyperswitch: (25 commits) ci(cypress): address lints and refactor redirection handler (#7437) chore: make v1 merchant account forward compatible (#7426) fix(dashboard): Added auth key to juspay threeds server (#7457) feat(hipay): Add Template PR (#7360) chore(version): 2025.03.07.0 chore(postman): update Postman collection files feat(analytics): add new filters, dimensions and metrics for authentication analytics (#7451) feat(router): add capability to force challenge for 3DS Payments through Netcetera and send few optional fields (#7429) feat(analytics): refactor and rewrite authentication related analytics (#7433) refactor(core): Added payment id in authentication router data (#7441) feat(connector): Added ThreeDs server integration template pr (#7424) fix(xendit): Fix wasm changes (#7419) chore(postman): postman tests fixes (#7159) ci(cypress): move customer acceptance in configs to a const within commons (#7435) feat(core): add additional revenue recovery call flow (#7402) chore(version): 2025.03.06.0 feat(payment_link): expose payment link configs for SDK UI rules and payment button (#7427) feat(connector): [EFT] Add EFT as a payment method (#7304) chore(version): 2025.03.05.1 feat(connector): [Moneris] Implement mandate for Moneris (#7322) ...
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
add capability to force challenge for 3DS Payments through Netcetera and send few optional fields
force_3ds_challengewhich would request netcetera for challenge flowAdditional Changes
Motivation and Context
How did you test it?
Tested Manually
Perform a External 3DS payment by enabling force_3ds_challenge at profile level, and observe ThreeDSRequestorChallengeInd being sent "04" to netcetera connector
CURL
Response
Checklist
cargo +nightly fmt --allcargo clippy