feat(connector): integrate netcetera connector with pre authentication flow (#4293)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
Hrithikesh
2024-04-16 15:54:06 +05:30
committed by GitHub
parent 00340a3369
commit d4dbaadb06
31 changed files with 1074 additions and 16 deletions

View File

@ -90,7 +90,7 @@ pub enum AuthenticationUpdate {
threeds_server_transaction_id: String,
maximum_supported_3ds_version: common_utils::types::SemanticVersion,
connector_authentication_id: String,
three_ds_method_data: String,
three_ds_method_data: Option<String>,
three_ds_method_url: Option<String>,
message_version: common_utils::types::SemanticVersion,
connector_metadata: Option<serde_json::Value>,
@ -310,7 +310,7 @@ impl From<AuthenticationUpdate> for AuthenticationUpdateInternal {
threeds_server_transaction_id: Some(threeds_server_transaction_id),
maximum_supported_version: Some(maximum_supported_3ds_version),
connector_authentication_id: Some(connector_authentication_id),
three_ds_method_data: Some(three_ds_method_data),
three_ds_method_data,
three_ds_method_url,
message_version: Some(message_version),
connector_metadata,