feat(connector): Add recovery support for stripebilling (#7461)

Co-authored-by: Nishanth Challa <nishanth.challa@Nishanth-Challa-C0WGKCFHLF.local>
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
Co-authored-by: Aniket Burman <93077964+aniketburman014@users.noreply.github.com>
This commit is contained in:
CHALLA NISHANTH BABU
2025-04-02 12:48:19 +05:30
committed by GitHub
parent 7358b3a3b9
commit cfe226943d
34 changed files with 1252 additions and 528 deletions

View File

@ -129,7 +129,7 @@ pub enum RoutableConnectors {
Square,
Stax,
Stripe,
//Stripebilling,
Stripebilling,
// Taxjar,
Trustpay,
// Thunes
@ -275,7 +275,7 @@ pub enum Connector {
Square,
Stax,
Stripe,
// Stripebilling,
Stripebilling,
Taxjar,
Threedsecureio,
//Thunes,
@ -430,7 +430,7 @@ impl Connector {
| Self::Shift4
| Self::Square
| Self::Stax
// | Self::Stripebilling
| Self::Stripebilling
| Self::Taxjar
// | Self::Thunes
| Self::Trustpay
@ -582,7 +582,7 @@ impl From<RoutableConnectors> for Connector {
RoutableConnectors::Square => Self::Square,
RoutableConnectors::Stax => Self::Stax,
RoutableConnectors::Stripe => Self::Stripe,
// RoutableConnectors::Stripebilling => Self::Stripebilling,
RoutableConnectors::Stripebilling => Self::Stripebilling,
RoutableConnectors::Trustpay => Self::Trustpay,
RoutableConnectors::Tsys => Self::Tsys,
RoutableConnectors::Volt => Self::Volt,
@ -688,6 +688,7 @@ impl TryFrom<Connector> for RoutableConnectors {
Connector::Square => Ok(Self::Square),
Connector::Stax => Ok(Self::Stax),
Connector::Stripe => Ok(Self::Stripe),
Connector::Stripebilling => Ok(Self::Stripebilling),
Connector::Trustpay => Ok(Self::Trustpay),
Connector::Tsys => Ok(Self::Tsys),
Connector::Volt => Ok(Self::Volt),