From 65ca5f12da54715e5db785d122e2ec9714147c68 Mon Sep 17 00:00:00 2001 From: Arjun Karthik Date: Sat, 7 Oct 2023 13:09:23 +0530 Subject: [PATCH] chore: env changes for gocardless mandate (#2485) --- config/config.example.toml | 1 + config/development.toml | 1 + config/docker_compose.toml | 1 + loadtest/config/development.toml | 9 +++++++++ 4 files changed, 12 insertions(+) diff --git a/config/config.example.toml b/config/config.example.toml index 3fe9c19f4411..e980ea4fffdb 100644 --- a/config/config.example.toml +++ b/config/config.example.toml @@ -346,6 +346,7 @@ discord_invite_url = "https://www.example.com/" # Discord invite url for hypersw card.credit = {connector_list = "stripe,adyen"} # Mandate supported payment method type and connector for card wallet.paypal = {connector_list = "adyen"} # Mandate supported payment method type and connector for wallets pay_later.klarna = {connector_list = "adyen"} # Mandate supported payment method type and connector for pay_later +bank_debit.ach = { connector_list = "gocardless"} # Mandate supported payment method type and connector for bank_debit # Required fields info used while listing the payment_method_data [required_fields.pay_later] # payment_method = "pay_later" diff --git a/config/development.toml b/config/development.toml index 941b9d9524d6..395b7f2eea03 100644 --- a/config/development.toml +++ b/config/development.toml @@ -418,6 +418,7 @@ wallet.apple_pay = { connector_list = "stripe,adyen" } wallet.paypal = { connector_list = "adyen" } card.credit = { connector_list = "stripe,adyen,authorizedotnet,globalpay,worldpay,multisafepay,nmi,nexinets,noon" } card.debit = { connector_list = "stripe,adyen,authorizedotnet,globalpay,worldpay,multisafepay,nmi,nexinets,noon" } +bank_debit.ach = { connector_list = "gocardless"} [connector_request_reference_id_config] merchant_ids_send_payment_id_as_connector_request_id = [] diff --git a/config/docker_compose.toml b/config/docker_compose.toml index 8a7b96b4e6d2..b1483327ee0c 100644 --- a/config/docker_compose.toml +++ b/config/docker_compose.toml @@ -296,6 +296,7 @@ wallet.apple_pay = {connector_list = "stripe,adyen"} wallet.paypal = {connector_list = "adyen"} card.credit = {connector_list = "stripe,adyen,authorizedotnet,globalpay,worldpay,multisafepay,nmi,nexinets,noon"} card.debit = {connector_list = "stripe,adyen,authorizedotnet,globalpay,worldpay,multisafepay,nmi,nexinets,noon"} +bank_debit.ach = { connector_list = "gocardless"} [connector_customer] connector_list = "gocardless,stax,stripe" diff --git a/loadtest/config/development.toml b/loadtest/config/development.toml index 6f3b53fba040..db6ed0850c8d 100644 --- a/loadtest/config/development.toml +++ b/loadtest/config/development.toml @@ -219,3 +219,12 @@ payout_eligibility = true [multiple_api_version_supported_connectors] supported_connectors = "braintree" + +[mandates.supported_payment_methods] +pay_later.klarna = {connector_list = "adyen"} +wallet.google_pay = {connector_list = "stripe,adyen"} +wallet.apple_pay = {connector_list = "stripe,adyen"} +wallet.paypal = {connector_list = "adyen"} +card.credit = {connector_list = "stripe,adyen,authorizedotnet,globalpay,worldpay,multisafepay,nmi,nexinets,noon"} +card.debit = {connector_list = "stripe,adyen,authorizedotnet,globalpay,worldpay,multisafepay,nmi,nexinets,noon"} +bank_debit.ach = { connector_list = "gocardless"}