Skip to content

Commit

Permalink
feat: paybox wellsfargo connector added (#1202)
Browse files Browse the repository at this point in the history
Co-authored-by: Riddhiagrawal001 <[email protected]>
  • Loading branch information
sagarnaikjuspay and Riddhiagrawal001 authored Aug 27, 2024
1 parent 34f0890 commit 0678545
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 0 deletions.
11 changes: 11 additions & 0 deletions public/hyperswitch/Gateway/PAYBOX.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions public/hyperswitch/Gateway/WELLSFARGO.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/screens/Connectors/ConnectorTypes.res
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,8 @@ type processorTypes =
| ITAUBANK
| DATATRANS
| PLAID
| PAYBOX
| WELLSFARGO

type threeDsAuthenticatorTypes = THREEDSECUREIO | NETCETERA

Expand Down
17 changes: 17 additions & 0 deletions src/screens/Connectors/ConnectorUtils.res
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ let connectorList: array<connectorTypes> = [
Processors(BAMBORA_APAC),
Processors(ITAUBANK),
Processors(PLAID),
Processors(PAYBOX),
]

let connectorListForLive: array<connectorTypes> = [
Expand Down Expand Up @@ -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: [
Expand Down Expand Up @@ -546,6 +555,8 @@ let getConnectorNameString = (connector: processorTypes) =>
| ITAUBANK => "itaubank"
| DATATRANS => "datatrans"
| PLAID => "plaid"
| PAYBOX => "paybox"
| WELLSFARGO => "wellsfargo"
}

let getThreeDsAuthenticatorNameString = (threeDsAuthenticator: threeDsAuthenticatorTypes) =>
Expand Down Expand Up @@ -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 =>
Expand Down Expand Up @@ -734,6 +747,8 @@ let getProcessorInfo = connector => {
| ITAUBANK => itauBankInfo
| DATATRANS => dataTransInfo
| PLAID => plaidInfo
| PAYBOX => payboxInfo
| WELLSFARGO => wellsfargoInfo
}
}
let getThreedsAuthenticatorInfo = threeDsAuthenticator =>
Expand Down Expand Up @@ -1531,6 +1546,8 @@ let getDisplayNameForProcessor = connector =>
| ITAUBANK => "Itaubank"
| DATATRANS => "Datatrans"
| PLAID => "Plaid"
| PAYBOX => "Paybox"
| WELLSFARGO => "Wells Fargo"
}

let getDisplayNameForThreedsAuthenticator = threeDsAuthenticator =>
Expand Down

0 comments on commit 0678545

Please sign in to comment.