feat(connector): [Xendit] ADD Cards & Mandates Flow (#6966)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
awasthi21
2025-01-15 15:37:30 +05:30
committed by GitHub
parent 043cf8e0c1
commit bbf884460c
21 changed files with 1551 additions and 227 deletions

View File

@ -130,7 +130,7 @@ pub enum RoutableConnectors {
Wise,
Worldline,
Worldpay,
// Xendit,
Xendit,
Zen,
Plaid,
Zsl,
@ -268,7 +268,7 @@ pub enum Connector {
Signifyd,
Plaid,
Riskified,
// Xendit,
Xendit,
Zen,
Zsl,
}
@ -404,7 +404,7 @@ impl Connector {
| Self::Wise
| Self::Worldline
| Self::Worldpay
// | Self::Xendit
| Self::Xendit
| Self::Zen
| Self::Zsl
| Self::Signifyd
@ -536,6 +536,7 @@ impl From<RoutableConnectors> for Connector {
RoutableConnectors::Zen => Self::Zen,
RoutableConnectors::Plaid => Self::Plaid,
RoutableConnectors::Zsl => Self::Zsl,
RoutableConnectors::Xendit => Self::Xendit,
}
}
}