Skip to content

Commit

Permalink
feat: itaubank connector addition (#1042)
Browse files Browse the repository at this point in the history
  • Loading branch information
gitanjli525 authored Jul 22, 2024
1 parent be4b048 commit 2880ab1
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
3 changes: 3 additions & 0 deletions public/hyperswitch/Gateway/ITAUBANK.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 @@ -86,6 +86,7 @@ type processorTypes =
| MIFINITY
| RAZORPAY
| BAMBORA_APAC
| ITAUBANK

type threeDsAuthenticatorTypes = THREEDSECUREIO | NETCETERA

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

let connectorListForLive: array<connectorTypes> = [
Expand Down Expand Up @@ -433,6 +434,10 @@ let bamboraApacInfo = {
description: "Bambora offers the ability to securely and efficiently process online, real-time transactions via an API, our user-friendly interface. The API web service accepts and processes SOAP requests from a remote location over TCP/IP. Transaction results are returned in real-time via the API.",
}

let itauBankInfo = {
description: "The Banking as a Service (BaaS) solution allows non-financial companies to offer services with the ecosystem that banking institutions have. Itaú as a Service (IaaS) is the ideal tool for your company to improve your customers' experience, offering a whole new portfolio of products, with Itaú's technology and security.",
}

let signifydInfo = {
description: "One platform to protect the entire shopper journey end-to-end",
validate: [
Expand Down Expand Up @@ -527,6 +532,7 @@ let getConnectorNameString = (connector: processorTypes) =>
| ZSL => "zsl"
| RAZORPAY => "razorpay"
| BAMBORA_APAC => "bamboraapac"
| ITAUBANK => "itaubank"
}

let getThreeDsAuthenticatorNameString = (threeDsAuthenticator: threeDsAuthenticatorTypes) =>
Expand Down Expand Up @@ -615,6 +621,7 @@ let getConnectorNameTypeFromString = (connector, ~connectorType=ConnectorTypes.P
| "zsl" => Processors(ZSL)
| "razorpay" => Processors(RAZORPAY)
| "bamboraapac" => Processors(BAMBORA_APAC)
| "itaubank" => Processors(ITAUBANK)
| _ => UnknownConnector("Not known")
}
| ThreeDsAuthenticator =>
Expand Down Expand Up @@ -694,6 +701,7 @@ let getProcessorInfo = connector => {
| ZSL => zslInfo
| RAZORPAY => razorpayInfo
| BAMBORA_APAC => bamboraApacInfo
| ITAUBANK => itauBankInfo
}
}
let getThreedsAuthenticatorInfo = threeDsAuthenticator =>
Expand Down Expand Up @@ -1457,6 +1465,7 @@ let getDisplayNameForProcessor = connector =>
| ZSL => "ZSL"
| RAZORPAY => "Razorpay"
| BAMBORA_APAC => "Bambora Apac"
| ITAUBANK => "Itaubank"
}

let getDisplayNameForThreedsAuthenticator = threeDsAuthenticator =>
Expand Down

0 comments on commit 2880ab1

Please sign in to comment.