mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 00:49:42 +08:00
refactor(core): refactor authentication core to fetch authentication only within it (#4138)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
@ -101,7 +101,6 @@ pub enum AuthenticationUpdate {
|
||||
message_version: common_utils::types::SemanticVersion,
|
||||
connector_metadata: Option<serde_json::Value>,
|
||||
authentication_status: common_enums::AuthenticationStatus,
|
||||
payment_method_id: Option<String>,
|
||||
acquirer_bin: Option<String>,
|
||||
acquirer_merchant_id: Option<String>,
|
||||
},
|
||||
@ -309,7 +308,6 @@ impl From<AuthenticationUpdate> for AuthenticationUpdateInternal {
|
||||
message_version,
|
||||
connector_metadata,
|
||||
authentication_status,
|
||||
payment_method_id,
|
||||
acquirer_bin,
|
||||
acquirer_merchant_id,
|
||||
} => Self {
|
||||
@ -321,7 +319,6 @@ impl From<AuthenticationUpdate> for AuthenticationUpdateInternal {
|
||||
message_version: Some(message_version),
|
||||
connector_metadata,
|
||||
authentication_status: Some(authentication_status),
|
||||
payment_method_id,
|
||||
acquirer_bin,
|
||||
acquirer_merchant_id,
|
||||
..Default::default()
|
||||
|
||||
Reference in New Issue
Block a user