feat(core): Add three_ds_requestor_app_url in business_profile (#7589)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
Debarati Ghatak
2025-03-24 16:27:36 +05:30
committed by GitHub
parent bc8b940918
commit 2ad2e508e6
7 changed files with 28 additions and 0 deletions

View File

@ -7740,6 +7740,7 @@ pub async fn payment_external_authentication<F: Clone + Sync>(
three_dsserver_trans_id: authentication_response.three_dsserver_trans_id,
acs_signed_content: authentication_response.acs_signed_content,
three_ds_requestor_url: authentication_details.three_ds_requestor_url,
three_ds_requestor_app_url: authentication_details.three_ds_requestor_app_url,
},
))
}

View File

@ -2016,6 +2016,7 @@ impl ForeignFrom<api_models::admin::AuthenticationConnectorDetails>
Self {
authentication_connectors: item.authentication_connectors,
three_ds_requestor_url: item.three_ds_requestor_url,
three_ds_requestor_app_url: item.three_ds_requestor_app_url,
}
}
}
@ -2027,6 +2028,7 @@ impl ForeignFrom<diesel_models::business_profile::AuthenticationConnectorDetails
Self {
authentication_connectors: item.authentication_connectors,
three_ds_requestor_url: item.three_ds_requestor_url,
three_ds_requestor_app_url: item.three_ds_requestor_app_url,
}
}
}