diff --git a/public/hyperswitch/Gateway/PLACETOPAY.svg b/public/hyperswitch/Gateway/PLACETOPAY.svg
new file mode 100644
index 000000000..0108a48b1
--- /dev/null
+++ b/public/hyperswitch/Gateway/PLACETOPAY.svg
@@ -0,0 +1,11 @@
+
diff --git a/src/screens/Connectors/ConnectorTypes.res b/src/screens/Connectors/ConnectorTypes.res
index ae9000a43..3445d56a3 100644
--- a/src/screens/Connectors/ConnectorTypes.res
+++ b/src/screens/Connectors/ConnectorTypes.res
@@ -77,6 +77,7 @@ type processorTypes =
| VOLT
| PROPHETPAY
| HELCIM
+ | PLACETOPAY
type threeDsAuthenticatorTypes = THREEDSECUREIO
diff --git a/src/screens/Connectors/ConnectorUtils.res b/src/screens/Connectors/ConnectorUtils.res
index e3df65c48..e49a1864c 100644
--- a/src/screens/Connectors/ConnectorUtils.res
+++ b/src/screens/Connectors/ConnectorUtils.res
@@ -66,6 +66,7 @@ let connectorList: array = [
Processors(WORLDLINE),
Processors(WORLDPAY),
Processors(ZEN),
+ Processors(PLACETOPAY),
]
let connectorListForLive: array = [
@@ -360,6 +361,10 @@ let bankOfAmericaInfo = {
description: "A top financial firm offering banking, investing, and risk solutions to individuals and businesses.",
}
+let placetopay = {
+ description: "Reliable payment processor facilitating secure transactions online for businesses, ensuring seamless transactions.",
+}
+
let getConnectorNameString = (connector: processorTypes) =>
switch connector {
| ADYEN => "adyen"
@@ -413,6 +418,7 @@ let getConnectorNameString = (connector: processorTypes) =>
| PROPHETPAY => "prophetpay"
| BANKOFAMERICA => "bankofamerica"
| HELCIM => "helcim"
+ | PLACETOPAY => "placetopay"
}
let getThreeDsAuthenticatorNameString = (threeDsAuthenticator: threeDsAuthenticatorTypes) =>
@@ -484,6 +490,7 @@ let getConnectorNameTypeFromString = (connector, ~connectorType=ConnectorTypes.C
| "bankofamerica" => Processors(BANKOFAMERICA)
| "prophetpay" => Processors(PROPHETPAY)
| "helcim" => Processors(HELCIM)
+ | "placetopay" => Processors(PLACETOPAY)
| _ => UnknownConnector("Not known")
}
| ThreeDsAuthenticator =>
@@ -548,6 +555,7 @@ let getProcessorInfo = connector => {
| PROPHETPAY => prophetpayInfo
| BANKOFAMERICA => bankOfAmericaInfo
| HELCIM => helcimInfo
+ | PLACETOPAY => placetopay
}
}
let getThreedsAuthenticatorInfo = threeDsAuthenticator =>
@@ -1289,6 +1297,7 @@ let getDisplayNameForConnector = connector =>
| PROPHETPAY => "Prophet Pay"
| BANKOFAMERICA => "Bank of America"
| HELCIM => "Helcim"
+ | PLACETOPAY => "Placetopay"
}
let getDisplayNameForThreedsAuthenticator = threeDsAuthenticator =>