Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Addition of new connector "NEXIXPAY" #1569

Merged
merged 2 commits into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions public/hyperswitch/Gateway/NEXIXPAY.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/screens/Connectors/ConnectorTypes.res
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ type processorTypes =
| FIUU
| NOVALNET
| DEUTSCHEBANK
| NEXIXPAY

type threeDsAuthenticatorTypes = THREEDSECUREIO | NETCETERA

Expand Down
9 changes: 8 additions & 1 deletion src/screens/Connectors/ConnectorUtils.res
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ let connectorList: array<connectorTypes> = [
Processors(WELLSFARGO),
Processors(NOVALNET),
Processors(DEUTSCHEBANK),
Processors(NEXIXPAY),
]

let connectorListForLive: array<connectorTypes> = [
Expand Down Expand Up @@ -492,7 +493,9 @@ let deutscheBankInfo = {
let taxJarInfo = {
description: "TaxJar is reimagining how businesses manage sales tax compliance. Its cloud-based platform automates the entire sales tax life cycle across all sales channels — from calculations and nexus tracking to reporting and filing.",
}

let nexixpayInfo = {
description : "Nexi's latest generation virtual POS is designed for those who, through a website, want to sell goods or services by managing payments online."
}
let signifydInfo = {
description: "One platform to protect the entire shopper journey end-to-end",
validate: [
Expand Down Expand Up @@ -597,6 +600,7 @@ let getConnectorNameString = (connector: processorTypes) =>
| FIUU => "fiuu"
| NOVALNET => "novalnet"
| DEUTSCHEBANK => "deutschebank"
| NEXIXPAY => "nexixpay"
}

let getThreeDsAuthenticatorNameString = (threeDsAuthenticator: threeDsAuthenticatorTypes) =>
Expand Down Expand Up @@ -712,6 +716,7 @@ let getConnectorNameTypeFromString = (connector, ~connectorType=ConnectorTypes.P
| "fiuu" => Processors(FIUU)
| "novalnet" => Processors(NOVALNET)
| "deutschebank" => Processors(DEUTSCHEBANK)
| "nexixpay" => Processors(NEXIXPAY)
| _ => UnknownConnector("Not known")
}
| ThreeDsAuthenticator =>
Expand Down Expand Up @@ -811,6 +816,7 @@ let getProcessorInfo = connector => {
| FIUU => fiuuInfo
| NOVALNET => novalnetInfo
| DEUTSCHEBANK => deutscheBankInfo
| NEXIXPAY => nexixpayInfo
}
}
let getThreedsAuthenticatorInfo = threeDsAuthenticator =>
Expand Down Expand Up @@ -1639,6 +1645,7 @@ let getDisplayNameForProcessor = connector =>
| FIUU => "Fiuu"
| NOVALNET => "Novalnet"
| DEUTSCHEBANK => "Deutsche Bank"
| NEXIXPAY => "Nexixpay"
}

let getDisplayNameForThreedsAuthenticator = threeDsAuthenticator =>
Expand Down
Loading