mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-01 19:42:27 +08:00
feat(tokenio): Add Template PR (#8095)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
@ -32,12 +32,13 @@ pub use hyperswitch_connectors::connectors::{
|
||||
recurly::Recurly, redsys, redsys::Redsys, riskified, riskified::Riskified, shift4,
|
||||
shift4::Shift4, signifyd, signifyd::Signifyd, square, square::Square, stax, stax::Stax, stripe,
|
||||
stripe::Stripe, stripebilling, stripebilling::Stripebilling, taxjar, taxjar::Taxjar,
|
||||
threedsecureio, threedsecureio::Threedsecureio, thunes, thunes::Thunes, trustpay,
|
||||
trustpay::Trustpay, tsys, tsys::Tsys, unified_authentication_service,
|
||||
unified_authentication_service::UnifiedAuthenticationService, vgs, vgs::Vgs, volt, volt::Volt,
|
||||
wellsfargo, wellsfargo::Wellsfargo, wellsfargopayout, wellsfargopayout::Wellsfargopayout, wise,
|
||||
wise::Wise, worldline, worldline::Worldline, worldpay, worldpay::Worldpay, worldpayxml,
|
||||
worldpayxml::Worldpayxml, xendit, xendit::Xendit, zen, zen::Zen, zsl, zsl::Zsl,
|
||||
threedsecureio, threedsecureio::Threedsecureio, thunes, thunes::Thunes, tokenio,
|
||||
tokenio::Tokenio, trustpay, trustpay::Trustpay, tsys, tsys::Tsys,
|
||||
unified_authentication_service, unified_authentication_service::UnifiedAuthenticationService,
|
||||
vgs, vgs::Vgs, volt, volt::Volt, wellsfargo, wellsfargo::Wellsfargo, wellsfargopayout,
|
||||
wellsfargopayout::Wellsfargopayout, wise, wise::Wise, worldline, worldline::Worldline,
|
||||
worldpay, worldpay::Worldpay, worldpayxml, worldpayxml::Worldpayxml, xendit, xendit::Xendit,
|
||||
zen, zen::Zen, zsl, zsl::Zsl,
|
||||
};
|
||||
|
||||
#[cfg(feature = "dummy_connector")]
|
||||
|
||||
@ -1689,6 +1689,10 @@ impl ConnectorAuthTypeAndMetadataValidation<'_> {
|
||||
trustpay::transformers::TrustpayAuthType::try_from(self.auth_type)?;
|
||||
Ok(())
|
||||
}
|
||||
// api_enums::Connector::Tokenio => {
|
||||
// tokenio::transformers::TokenioAuthType::try_from(self.auth_type)?;
|
||||
// Ok(())
|
||||
// }
|
||||
api_enums::Connector::Tsys => {
|
||||
tsys::transformers::TsysAuthType::try_from(self.auth_type)?;
|
||||
Ok(())
|
||||
|
||||
@ -592,6 +592,7 @@ impl ConnectorData {
|
||||
Ok(ConnectorEnum::Old(Box::new(connector::Paystack::new())))
|
||||
}
|
||||
// enums::Connector::Thunes => Ok(ConnectorEnum::Old(Box::new(connector::Thunes))),
|
||||
// enums::Connector::Tokenio => Ok(ConnectorEnum::Old(Box::new(connector::Tokenio))),
|
||||
enums::Connector::Trustpay => {
|
||||
Ok(ConnectorEnum::Old(Box::new(connector::Trustpay::new())))
|
||||
}
|
||||
|
||||
@ -323,6 +323,7 @@ impl ForeignTryFrom<api_enums::Connector> for common_enums::RoutableConnectors {
|
||||
api_enums::Connector::Stripebilling => Self::Stripebilling,
|
||||
// api_enums::Connector::Taxjar => Self::Taxjar,
|
||||
// api_enums::Connector::Thunes => Self::Thunes,
|
||||
// api_enums::Connector::Tokenio => Self::Tokenio,
|
||||
api_enums::Connector::Trustpay => Self::Trustpay,
|
||||
api_enums::Connector::Tsys => Self::Tsys,
|
||||
// api_enums::Connector::UnifiedAuthenticationService => {
|
||||
|
||||
Reference in New Issue
Block a user