diff --git a/config/config.example.toml b/config/config.example.toml index ef845c834c..7f32d23783 100644 --- a/config/config.example.toml +++ b/config/config.example.toml @@ -303,6 +303,7 @@ refund_retrieve_tolerance = 100 # Fake delay tolerance for dummy connector refu [mandates.supported_payment_methods] 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 # Required fields info used while listing the payment_method_data diff --git a/config/development.toml b/config/development.toml index 231699ac81..1c6864b5ca 100644 --- a/config/development.toml +++ b/config/development.toml @@ -335,6 +335,7 @@ connectors_with_delayed_session_response = "trustpay" 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"} diff --git a/config/docker_compose.toml b/config/docker_compose.toml index 4851d1034a..fde85bf21c 100644 --- a/config/docker_compose.toml +++ b/config/docker_compose.toml @@ -211,3 +211,11 @@ adyen.banks = "affin_bank,agro_bank,alliance_bank,am_bank,bank_islam,bank_muamal [bank_config.online_banking_thailand] adyen.banks = "bangkok_bank,krungsri_bank,krung_thai_bank,the_siam_commercial_bank,kasikorn_bank" + +[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"}