diff --git a/public/hyperswitch/Gateway/ELAVON.svg b/public/hyperswitch/Gateway/ELAVON.svg new file mode 100644 index 000000000..414057f80 --- /dev/null +++ b/public/hyperswitch/Gateway/ELAVON.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/screens/Connectors/ConnectorTypes.res b/src/screens/Connectors/ConnectorTypes.res index 13dd7b6e9..d380378ca 100644 --- a/src/screens/Connectors/ConnectorTypes.res +++ b/src/screens/Connectors/ConnectorTypes.res @@ -42,6 +42,7 @@ type processorTypes = | WORLDPAY | CYBERSOURCE | EBANX + | ELAVON | ACI | WORLDLINE | FISERV diff --git a/src/screens/Connectors/ConnectorUtils.res b/src/screens/Connectors/ConnectorUtils.res index 50311c26e..c4c8d3cbb 100644 --- a/src/screens/Connectors/ConnectorUtils.res +++ b/src/screens/Connectors/ConnectorUtils.res @@ -59,6 +59,7 @@ let connectorList: array = [ Processors(CYBERSOURCE), Processors(DATATRANS), Processors(DLOCAL), + Processors(ELAVON), Processors(FISERV), Processors(FISERVIPG), Processors(FORTE), @@ -263,6 +264,10 @@ let ebanxInfo = { description: "Ebanx enables global organizations to grow exponentially in Rising Markets by leveraging a platform of end-to-end localized payment and financial solutions.", } +let elavonInfo = { + description: "Elavon is a global payment processing company that provides businesses with secure and reliable payment solutions. As a subsidiary of U.S. Bank, Elavon serves merchants in various industries, offering services such as credit card processing, mobile payments, e-commerce solutions, and fraud prevention tools.", +} + let aciInfo = { description: "Trusted processor offering a wide range of payment solutions, including cards, digital wallets, and real-time bank transfers.", } @@ -546,6 +551,7 @@ let getConnectorNameString = (connector: processorTypes) => | WORLDPAY => "worldpay" | CYBERSOURCE => "cybersource" | EBANX => "ebanx" + | ELAVON => "elavon" | ACI => "aci" | WORLDLINE => "worldline" | FISERV => "fiserv" @@ -662,6 +668,7 @@ let getConnectorNameTypeFromString = (connector, ~connectorType=ConnectorTypes.P | "worldpay" => Processors(WORLDPAY) | "cybersource" => Processors(CYBERSOURCE) | "ebanx" => Processors(EBANX) + | "elavon" => Processors(ELAVON) | "aci" => Processors(ACI) | "worldline" => Processors(WORLDLINE) | "fiserv" => Processors(FISERV) @@ -763,6 +770,7 @@ let getProcessorInfo = connector => { | WORLDPAY => worldpayInfo | CYBERSOURCE => cybersourceInfo | EBANX => ebanxInfo + | ELAVON => elavonInfo | ACI => aciInfo | WORLDLINE => worldlineInfo | FISERV => fiservInfo @@ -1589,6 +1597,7 @@ let getDisplayNameForProcessor = connector => | WORLDPAY => "Worldpay" | CYBERSOURCE => "Cybersource" | EBANX => "Ebanx" + | ELAVON => "Elavon" | ACI => "ACI Worldwide" | WORLDLINE => "Worldline" | FISERV => "Fiserv Commerce Hub"