mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 09:07:09 +08:00
feat(connector): Introduce connector template code for Facilitapay (#7631)
This commit is contained in:
@ -80,6 +80,7 @@ pub enum RoutableConnectors {
|
||||
Dlocal,
|
||||
Ebanx,
|
||||
Elavon,
|
||||
// Facilitapay,
|
||||
Fiserv,
|
||||
Fiservemea,
|
||||
Fiuu,
|
||||
@ -223,6 +224,7 @@ pub enum Connector {
|
||||
Dlocal,
|
||||
Ebanx,
|
||||
Elavon,
|
||||
// Facilitapay,
|
||||
Fiserv,
|
||||
Fiservemea,
|
||||
Fiuu,
|
||||
@ -377,13 +379,14 @@ impl Connector {
|
||||
| Self::Cashtocode
|
||||
| Self::Chargebee
|
||||
| Self::Coinbase
|
||||
|Self::Coingate
|
||||
| Self::Coingate
|
||||
| Self::Cryptopay
|
||||
| Self::Deutschebank
|
||||
| Self::Digitalvirgo
|
||||
| Self::Dlocal
|
||||
| Self::Ebanx
|
||||
| Self::Elavon
|
||||
// | Self::Facilitapay
|
||||
| Self::Fiserv
|
||||
| Self::Fiservemea
|
||||
| Self::Fiuu
|
||||
@ -532,6 +535,7 @@ impl From<RoutableConnectors> for Connector {
|
||||
RoutableConnectors::Dlocal => Self::Dlocal,
|
||||
RoutableConnectors::Ebanx => Self::Ebanx,
|
||||
RoutableConnectors::Elavon => Self::Elavon,
|
||||
// RoutableConnectors::Facilitapay => Self::Facilitapay,
|
||||
RoutableConnectors::Fiserv => Self::Fiserv,
|
||||
RoutableConnectors::Fiservemea => Self::Fiservemea,
|
||||
RoutableConnectors::Fiuu => Self::Fiuu,
|
||||
@ -640,6 +644,7 @@ impl TryFrom<Connector> for RoutableConnectors {
|
||||
Connector::Dlocal => Ok(Self::Dlocal),
|
||||
Connector::Ebanx => Ok(Self::Ebanx),
|
||||
Connector::Elavon => Ok(Self::Elavon),
|
||||
// Connector::Facilitapay => Ok(Self::Facilitapay),
|
||||
Connector::Fiserv => Ok(Self::Fiserv),
|
||||
Connector::Fiservemea => Ok(Self::Fiservemea),
|
||||
Connector::Fiuu => Ok(Self::Fiuu),
|
||||
|
||||
Reference in New Issue
Block a user