feat(connector): integrate netcetera connector with pre authentication flow (#4293)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
Hrithikesh
2024-04-16 15:54:06 +05:30
committed by GitHub
parent 00340a3369
commit d4dbaadb06
31 changed files with 1074 additions and 16 deletions

View File

@ -100,6 +100,7 @@ pub enum Connector {
Klarna,
Mollie,
Multisafepay,
Netcetera,
Nexinets,
Nmi,
Noon,
@ -213,6 +214,7 @@ impl Connector {
| Self::Plaid
| Self::Riskified
| Self::Threedsecureio
| Self::Netcetera
| Self::Cybersource
| Self::Noon
| Self::Stripe => false,
@ -273,6 +275,7 @@ impl Connector {
| Self::Threedsecureio
| Self::Cybersource
| Self::Noon
| Self::Netcetera
| Self::Stripe => false,
Self::Checkout => true,
}
@ -296,6 +299,7 @@ impl Connector {
#[strum(serialize_all = "snake_case")]
pub enum AuthenticationConnectors {
Threedsecureio,
Netcetera,
}
#[cfg(feature = "payouts")]