feat(connector): [Novalnet] add Payment flows for cards (#5726)

Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
Co-authored-by: Chikke Srujan <chikke.srujan@Chikke-Srujan-N7WRTY72X7.local>
This commit is contained in:
Debarati Ghatak
2024-09-12 12:17:38 +05:30
committed by GitHub
parent 09bf1f8bd9
commit 246fdc8406
24 changed files with 1717 additions and 144 deletions

View File

@ -46,7 +46,6 @@ pub enum RoutingAlgorithm {
#[serde(rename_all = "snake_case")]
#[strum(serialize_all = "snake_case")]
pub enum Connector {
// Novalnet,
// Nexixpay,
Adyenplatform,
#[cfg(feature = "dummy_connector")]
@ -117,6 +116,7 @@ pub enum Connector {
Nexinets,
Nmi,
Noon,
Novalnet,
Nuvei,
// Opayo, added as template code for future usage
Opennode,
@ -214,7 +214,6 @@ impl Connector {
| Self::DummyConnector7 => false,
Self::Aci
// Add Separate authentication support for connectors
// | Self::Novalnet
// | Self::Nexixpay
// | Self::Fiuu
| Self::Adyen
@ -251,6 +250,7 @@ impl Connector {
| Self::Mollie
| Self::Multisafepay
| Self::Nexinets
| Self::Novalnet
| Self::Nuvei
| Self::Opennode
| Self::Paybox
@ -515,6 +515,8 @@ pub enum FieldType {
UserCpf,
UserCnpj,
UserIban,
BrowserLanguage,
BrowserIp,
}
impl FieldType {