Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(connector): [INESPAY] Integrate Sepa Bank Debit #6755

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions api-reference-v2/openapi_spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -6622,6 +6622,7 @@
"gocardless",
"gpayments",
"helcim",
"inespay",
"iatapay",
"itaubank",
"jpmorgan",
Expand Down Expand Up @@ -19385,6 +19386,7 @@
"gocardless",
"helcim",
"iatapay",
"inespay",
"itaubank",
"jpmorgan",
"klarna",
Expand Down
2 changes: 2 additions & 0 deletions api-reference/openapi_spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -9275,6 +9275,7 @@
"gocardless",
"gpayments",
"helcim",
"inespay",
"iatapay",
"itaubank",
"jpmorgan",
Expand Down Expand Up @@ -23940,6 +23941,7 @@
"gocardless",
"helcim",
"iatapay",
"inespay",
"itaubank",
"jpmorgan",
"klarna",
Expand Down
3 changes: 3 additions & 0 deletions config/development.toml
Original file line number Diff line number Diff line change
Expand Up @@ -567,6 +567,9 @@ debit = { currency = "USD" }
[pm_filters.fiuu]
duit_now = { country = "MY", currency = "MYR" }

[pm_filters.inespay]
sepa = { currency = "EUR" }

[tokenization]
stripe = { long_lived_token = false, payment_method = "wallet", payment_method_type = { type = "disable_only", list = "google_pay" } }
checkout = { long_lived_token = false, payment_method = "wallet", apple_pay_pre_decrypt_flow = "network_tokenization" }
Expand Down
7 changes: 4 additions & 3 deletions crates/common_enums/src/connector_enums.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ pub enum RoutableConnectors {
Gocardless,
Helcim,
Iatapay,
// Inespay,
Inespay,
Itaubank,
Jpmorgan,
Klarna,
Expand Down Expand Up @@ -219,7 +219,7 @@ pub enum Connector {
Gocardless,
Gpayments,
Helcim,
// Inespay,
Inespay,
Iatapay,
Itaubank,
Jpmorgan,
Expand Down Expand Up @@ -367,7 +367,7 @@ impl Connector {
| Self::Gpayments
| Self::Helcim
| Self::Iatapay
// | Self::Inespay
| Self::Inespay
| Self::Itaubank
| Self::Jpmorgan
| Self::Klarna
Expand Down Expand Up @@ -537,6 +537,7 @@ impl From<RoutableConnectors> for Connector {
RoutableConnectors::Plaid => Self::Plaid,
RoutableConnectors::Zsl => Self::Zsl,
RoutableConnectors::Xendit => Self::Xendit,
RoutableConnectors::Inespay => Self::Inespay,
}
}
}
4 changes: 2 additions & 2 deletions crates/connector_configs/src/connector.rs
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ pub struct ConnectorConfig {
pub gocardless: Option<ConnectorTomlConfig>,
pub gpayments: Option<ConnectorTomlConfig>,
pub helcim: Option<ConnectorTomlConfig>,
// pub inespay: Option<ConnectorTomlConfig>,
pub inespay: Option<ConnectorTomlConfig>,
pub jpmorgan: Option<ConnectorTomlConfig>,
pub klarna: Option<ConnectorTomlConfig>,
pub mifinity: Option<ConnectorTomlConfig>,
Expand Down Expand Up @@ -358,7 +358,7 @@ impl ConnectorConfig {
Connector::Gocardless => Ok(connector_data.gocardless),
Connector::Gpayments => Ok(connector_data.gpayments),
Connector::Helcim => Ok(connector_data.helcim),
// Connector::Inespay => Ok(connector_data.inespay),
Connector::Inespay => Ok(connector_data.inespay),
Connector::Jpmorgan => Ok(connector_data.jpmorgan),
Connector::Klarna => Ok(connector_data.klarna),
Connector::Mifinity => Ok(connector_data.mifinity),
Expand Down
Loading
Loading