From 06785458fc5fa40a25b59643178e849f6482c152 Mon Sep 17 00:00:00 2001 From: Sagar naik Date: Tue, 27 Aug 2024 18:46:42 +0530 Subject: [PATCH] feat: paybox wellsfargo connector added (#1202) Co-authored-by: Riddhiagrawal001 <50551695+Riddhiagrawal001@users.noreply.github.com> --- public/hyperswitch/Gateway/PAYBOX.svg | 11 +++++++++++ public/hyperswitch/Gateway/WELLSFARGO.svg | 11 +++++++++++ src/screens/Connectors/ConnectorTypes.res | 2 ++ src/screens/Connectors/ConnectorUtils.res | 17 +++++++++++++++++ 4 files changed, 41 insertions(+) create mode 100644 public/hyperswitch/Gateway/PAYBOX.svg create mode 100644 public/hyperswitch/Gateway/WELLSFARGO.svg diff --git a/public/hyperswitch/Gateway/PAYBOX.svg b/public/hyperswitch/Gateway/PAYBOX.svg new file mode 100644 index 000000000..ff943988d --- /dev/null +++ b/public/hyperswitch/Gateway/PAYBOX.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/public/hyperswitch/Gateway/WELLSFARGO.svg b/public/hyperswitch/Gateway/WELLSFARGO.svg new file mode 100644 index 000000000..54c681966 --- /dev/null +++ b/public/hyperswitch/Gateway/WELLSFARGO.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/screens/Connectors/ConnectorTypes.res b/src/screens/Connectors/ConnectorTypes.res index fa61123c2..0817748a4 100644 --- a/src/screens/Connectors/ConnectorTypes.res +++ b/src/screens/Connectors/ConnectorTypes.res @@ -89,6 +89,8 @@ type processorTypes = | ITAUBANK | DATATRANS | PLAID + | PAYBOX + | WELLSFARGO type threeDsAuthenticatorTypes = THREEDSECUREIO | NETCETERA diff --git a/src/screens/Connectors/ConnectorUtils.res b/src/screens/Connectors/ConnectorUtils.res index 373073613..a08ea6220 100644 --- a/src/screens/Connectors/ConnectorUtils.res +++ b/src/screens/Connectors/ConnectorUtils.res @@ -90,6 +90,7 @@ let connectorList: array = [ Processors(BAMBORA_APAC), Processors(ITAUBANK), Processors(PLAID), + Processors(PAYBOX), ] let connectorListForLive: array = [ @@ -449,6 +450,14 @@ let plaidInfo = { description: "Plaid Link makes it easy for users to connect their financial accounts securely and quickly, giving you the best growth for your business.", } +let payboxInfo = { + description: "Paybox, operated by Verifone, offers secure online payment solutions for e-commerce businesses. It supports a wide range of payment methods and provides features like one-click payments, recurring payments, and omnichannel payment processing. Their services cater to merchants, web agencies, integrators, and financial institutions, helping them accept various forms of payment", +} + +let wellsfargoInfo = { + description: "WellsFargo is a leading American financial services company providing a comprehensive range of banking, investment, and mortgage products. With a focus on personal, small business, and commercial banking, Wells Fargo offers services such as checking and savings accounts, loans, credit cards, wealth management, and payment processing solutions.", +} + let signifydInfo = { description: "One platform to protect the entire shopper journey end-to-end", validate: [ @@ -546,6 +555,8 @@ let getConnectorNameString = (connector: processorTypes) => | ITAUBANK => "itaubank" | DATATRANS => "datatrans" | PLAID => "plaid" + | PAYBOX => "paybox" + | WELLSFARGO => "wellsfargo" } let getThreeDsAuthenticatorNameString = (threeDsAuthenticator: threeDsAuthenticatorTypes) => @@ -647,6 +658,8 @@ let getConnectorNameTypeFromString = (connector, ~connectorType=ConnectorTypes.P | "itaubank" => Processors(ITAUBANK) | "datatrans" => Processors(DATATRANS) | "plaid" => Processors(PLAID) + | "paybox" => Processors(PAYBOX) + | "wellsfargo" => Processors(WELLSFARGO) | _ => UnknownConnector("Not known") } | ThreeDsAuthenticator => @@ -734,6 +747,8 @@ let getProcessorInfo = connector => { | ITAUBANK => itauBankInfo | DATATRANS => dataTransInfo | PLAID => plaidInfo + | PAYBOX => payboxInfo + | WELLSFARGO => wellsfargoInfo } } let getThreedsAuthenticatorInfo = threeDsAuthenticator => @@ -1531,6 +1546,8 @@ let getDisplayNameForProcessor = connector => | ITAUBANK => "Itaubank" | DATATRANS => "Datatrans" | PLAID => "Plaid" + | PAYBOX => "Paybox" + | WELLSFARGO => "Wells Fargo" } let getDisplayNameForThreedsAuthenticator = threeDsAuthenticator =>