feat(connector): [Worldpayxml] add card payment (#8076)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
Co-authored-by: Jeeva Ramachandran <120017870+JeevaRamu0104@users.noreply.github.com>
This commit is contained in:
AkshayaFoiger
2025-05-27 14:39:55 +05:30
committed by GitHub
parent b3d47b650d
commit b8b68af4f8
20 changed files with 1928 additions and 217 deletions

View File

@ -151,7 +151,7 @@ pub enum RoutableConnectors {
Wise,
Worldline,
Worldpay,
// Worldpayxml,
Worldpayxml,
Xendit,
Zen,
Plaid,
@ -307,7 +307,7 @@ pub enum Connector {
Wise,
Worldline,
Worldpay,
// Worldpayxml,
Worldpayxml,
Signifyd,
Plaid,
Riskified,
@ -469,7 +469,7 @@ impl Connector {
| Self::Wise
| Self::Worldline
| Self::Worldpay
// | Self::Worldpayxml
| Self::Worldpayxml
| Self::Xendit
| Self::Zen
| Self::Zsl
@ -624,7 +624,7 @@ impl From<RoutableConnectors> for Connector {
RoutableConnectors::Wise => Self::Wise,
RoutableConnectors::Worldline => Self::Worldline,
RoutableConnectors::Worldpay => Self::Worldpay,
// RoutableConnectors::Worldpayxml => Self::Worldpayxml,
RoutableConnectors::Worldpayxml => Self::Worldpayxml,
RoutableConnectors::Zen => Self::Zen,
RoutableConnectors::Plaid => Self::Plaid,
RoutableConnectors::Zsl => Self::Zsl,
@ -737,7 +737,7 @@ impl TryFrom<Connector> for RoutableConnectors {
Connector::Wise => Ok(Self::Wise),
Connector::Worldline => Ok(Self::Worldline),
Connector::Worldpay => Ok(Self::Worldpay),
// Connector::Worldpayxml => Ok(Self::Worldpayxml),
Connector::Worldpayxml => Ok(Self::Worldpayxml),
Connector::Xendit => Ok(Self::Xendit),
Connector::Zen => Ok(Self::Zen),
Connector::Plaid => Ok(Self::Plaid),