mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-30 17:47:54 +08:00
Merge branch 'main' of https://github.com/juspay/hyperswitch into diff-fork
This commit is contained in:
@ -586,6 +586,10 @@ impl ConnectorAuthTypeAndMetadataValidation<'_> {
|
||||
paytm::transformers::PaytmAuthType::try_from(self.auth_type)?;
|
||||
Ok(())
|
||||
}
|
||||
api_enums::Connector::Finix => {
|
||||
finix::transformers::FinixAuthType::try_from(self.auth_type)?;
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -1250,6 +1250,8 @@ fn create_paypal_sdk_session_token(
|
||||
sdk_next_action: payment_types::SdkNextAction {
|
||||
next_action: payment_types::NextActionCall::PostSessionTokens,
|
||||
},
|
||||
client_token: None,
|
||||
transaction_info: None,
|
||||
},
|
||||
)),
|
||||
}),
|
||||
|
||||
@ -254,6 +254,9 @@ impl ConnectorData {
|
||||
enums::Connector::Facilitapay => {
|
||||
Ok(ConnectorEnum::Old(Box::new(connector::Facilitapay::new())))
|
||||
}
|
||||
enums::Connector::Finix => {
|
||||
Ok(ConnectorEnum::Old(Box::new(connector::Finix::new())))
|
||||
}
|
||||
enums::Connector::Fiserv => {
|
||||
Ok(ConnectorEnum::Old(Box::new(connector::Fiserv::new())))
|
||||
}
|
||||
|
||||
@ -169,6 +169,9 @@ impl FeatureMatrixConnectorData {
|
||||
enums::Connector::Facilitapay => {
|
||||
Ok(ConnectorEnum::Old(Box::new(connector::Facilitapay::new())))
|
||||
}
|
||||
enums::Connector::Finix => {
|
||||
Ok(ConnectorEnum::Old(Box::new(connector::Finix::new())))
|
||||
}
|
||||
enums::Connector::Fiserv => {
|
||||
Ok(ConnectorEnum::Old(Box::new(connector::Fiserv::new())))
|
||||
}
|
||||
|
||||
@ -61,6 +61,7 @@ impl ForeignTryFrom<api_enums::Connector> for common_enums::RoutableConnectors {
|
||||
api_enums::Connector::Ebanx => Self::Ebanx,
|
||||
api_enums::Connector::Elavon => Self::Elavon,
|
||||
api_enums::Connector::Facilitapay => Self::Facilitapay,
|
||||
api_enums::Connector::Finix => Self::Finix,
|
||||
api_enums::Connector::Fiserv => Self::Fiserv,
|
||||
api_enums::Connector::Fiservemea => Self::Fiservemea,
|
||||
api_enums::Connector::Fiuu => Self::Fiuu,
|
||||
|
||||
Reference in New Issue
Block a user