mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-27 19:46:48 +08:00
feat(connector): [payload] introduce no-3ds cards (#8545)
This commit is contained in:
@ -121,7 +121,7 @@ pub enum RoutableConnectors {
|
||||
// Payeezy, As psync and rsync are not supported by this connector, it is added as template code for future usage
|
||||
Paybox,
|
||||
Payme,
|
||||
// Payload,
|
||||
Payload,
|
||||
Payone,
|
||||
Paypal,
|
||||
Paystack,
|
||||
@ -284,7 +284,7 @@ pub enum Connector {
|
||||
Opennode,
|
||||
Paybox,
|
||||
// Payeezy, As psync and rsync are not supported by this connector, it is added as template code for future usage
|
||||
// Payload,
|
||||
Payload,
|
||||
Payme,
|
||||
Payone,
|
||||
Paypal,
|
||||
@ -459,7 +459,7 @@ impl Connector {
|
||||
| Self::Nuvei
|
||||
| Self::Opennode
|
||||
| Self::Paybox
|
||||
// | Self::Payload
|
||||
| Self::Payload
|
||||
| Self::Payme
|
||||
| Self::Payone
|
||||
| Self::Paypal
|
||||
@ -621,7 +621,7 @@ impl From<RoutableConnectors> for Connector {
|
||||
RoutableConnectors::Nuvei => Self::Nuvei,
|
||||
RoutableConnectors::Opennode => Self::Opennode,
|
||||
RoutableConnectors::Paybox => Self::Paybox,
|
||||
// RoutableConnectors::Paybox => Self::Payload,
|
||||
RoutableConnectors::Payload => Self::Payload,
|
||||
RoutableConnectors::Payme => Self::Payme,
|
||||
RoutableConnectors::Payone => Self::Payone,
|
||||
RoutableConnectors::Paypal => Self::Paypal,
|
||||
@ -742,7 +742,7 @@ impl TryFrom<Connector> for RoutableConnectors {
|
||||
Connector::Nuvei => Ok(Self::Nuvei),
|
||||
Connector::Opennode => Ok(Self::Opennode),
|
||||
Connector::Paybox => Ok(Self::Paybox),
|
||||
// Connector::Paybox => Ok(Self::Payload),
|
||||
Connector::Payload => Ok(Self::Payload),
|
||||
Connector::Payme => Ok(Self::Payme),
|
||||
Connector::Payone => Ok(Self::Payone),
|
||||
Connector::Paypal => Ok(Self::Paypal),
|
||||
|
||||
Reference in New Issue
Block a user