feat: add ci support for mock server (#8742)

Co-authored-by: yashasvi.kapil <yashasvi.kapil@juspay.in>
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
Co-authored-by: iemyashasvi <iemyashasvi@gmail.com>
Co-authored-by: chikke srujan <121822803+srujanchikke@users.noreply.github.com>
This commit is contained in:
Pa1NarK
2025-08-01 18:13:23 +05:30
committed by GitHub
parent c749bd9c51
commit 03bdcfea67
15 changed files with 2692 additions and 138 deletions

View File

@ -145,6 +145,7 @@ pub enum RoutableConnectors {
Santander,
Shift4,
Signifyd,
Silverflow,
Square,
Stax,
Stripe,
@ -315,6 +316,7 @@ pub enum Connector {
Redsys,
Santander,
Shift4,
Silverflow,
Square,
Stax,
Stripe,
@ -495,6 +497,7 @@ impl Connector {
| Self::Redsys
| Self::Santander
| Self::Shift4
| Self::Silverflow
| Self::Square
| Self::Stax
| Self::Stripebilling
@ -668,6 +671,7 @@ impl From<RoutableConnectors> for Connector {
RoutableConnectors::Santander => Self::Santander,
RoutableConnectors::Shift4 => Self::Shift4,
RoutableConnectors::Signifyd => Self::Signifyd,
RoutableConnectors::Silverflow => Self::Silverflow,
RoutableConnectors::Square => Self::Square,
RoutableConnectors::Stax => Self::Stax,
RoutableConnectors::Stripe => Self::Stripe,
@ -795,6 +799,7 @@ impl TryFrom<Connector> for RoutableConnectors {
Connector::Santander => Ok(Self::Santander),
Connector::Shift4 => Ok(Self::Shift4),
Connector::Signifyd => Ok(Self::Signifyd),
Connector::Silverflow => Ok(Self::Silverflow),
Connector::Square => Ok(Self::Square),
Connector::Stax => Ok(Self::Stax),
Connector::Stripe => Ok(Self::Stripe),