feat(core): add support for consuming eci for AuthNResponse in Authentication flow (#8225)

Co-authored-by: Debarati Ghatak <debarati.ghatak@Debarati-Ghatak-FW569NC29L.local>
This commit is contained in:
Debarati Ghatak
2025-06-03 17:48:33 +05:30
committed by GitHub
parent e6482fbe84
commit 33cd60e642
9 changed files with 16 additions and 4 deletions

View File

@ -95,6 +95,7 @@ pub async fn update_trackers<F: Clone, Req>(
trans_status,
connector_metadata,
ds_trans_id,
eci,
} => {
authentication_value
.async_map(|auth_val| {
@ -123,6 +124,7 @@ pub async fn update_trackers<F: Clone, Req>(
authentication_status,
connector_metadata,
ds_trans_id,
eci,
}
}
AuthenticationResponseData::PostAuthNResponse {

View File

@ -217,6 +217,7 @@ pub async fn external_authentication_update_trackers<F: Clone, Req>(
authentication_status,
connector_metadata: authentication_details.connector_metadata,
ds_trans_id: authentication_details.ds_trans_id,
eci: authentication_details.eci,
},
)
}