feat(connector): Recurly incoming webhook support (#7439)

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: CHALLA NISHANTH BABU <115225644+NISHANTH1221@users.noreply.github.com>
Co-authored-by: Aniket Burman <aniket.burman@Aniket-Burman-JDXHW2PH34.local>
Co-authored-by: Aniket Burman <aniket.burman@192.168.1.5>
Co-authored-by: Aniket Burman <aniket.burman@192.168.1.4>
This commit is contained in:
Aniket Burman
2025-03-17 14:37:27 +05:30
committed by GitHub
parent fc596eaf1c
commit 2d17dad25d
14 changed files with 144 additions and 19 deletions

View File

@ -117,7 +117,7 @@ pub enum RoutableConnectors {
Prophetpay,
Rapyd,
Razorpay,
// Recurly,
Recurly,
// Redsys,
Riskified,
Shift4,
@ -263,7 +263,7 @@ pub enum Connector {
Prophetpay,
Rapyd,
Razorpay,
//Recurly,
Recurly,
// Redsys,
Shift4,
Square,
@ -415,7 +415,7 @@ impl Connector {
| Self::Powertranz
| Self::Prophetpay
| Self::Rapyd
// | Self::Recurly
| Self::Recurly
// | Self::Redsys
| Self::Shift4
| Self::Square
@ -552,7 +552,7 @@ impl From<RoutableConnectors> for Connector {
RoutableConnectors::Prophetpay => Self::Prophetpay,
RoutableConnectors::Rapyd => Self::Rapyd,
RoutableConnectors::Razorpay => Self::Razorpay,
// RoutableConnectors::Recurly => Self::Recurly,
RoutableConnectors::Recurly => Self::Recurly,
RoutableConnectors::Riskified => Self::Riskified,
RoutableConnectors::Shift4 => Self::Shift4,
RoutableConnectors::Signifyd => Self::Signifyd,