diff --git a/config/config.example.toml b/config/config.example.toml index 229dabfeef..4bbf5e1337 100644 --- a/config/config.example.toml +++ b/config/config.example.toml @@ -520,6 +520,12 @@ debit = { currency = "USD" } apple_pay = { currency = "USD" } google_pay = { currency = "USD" } +[pm_filters.cybersource] +credit = { currency = "USD,GBP,EUR" } +debit = { currency = "USD,GBP,EUR" } +apple_pay = { currency = "USD,GBP,EUR" } +google_pay = { currency = "USD,GBP,EUR" } + [pm_filters.stax] credit = { currency = "USD" } debit = { currency = "USD" } diff --git a/config/deployments/integration_test.toml b/config/deployments/integration_test.toml index 3d91e2dfda..a72145c542 100644 --- a/config/deployments/integration_test.toml +++ b/config/deployments/integration_test.toml @@ -294,10 +294,10 @@ klarna = { country = "AU,AT,BE,CA,CZ,DK,FI,FR,DE,GR,IE,IT,NL,NZ,NO,PL,PT,ES,SE,C sofort = { country = "AT,BE,DE,IT,NL,ES", currency = "EUR" } [pm_filters.cybersource] -credit = { currency = "USD" } -debit = { currency = "USD" } -apple_pay = { currency = "USD" } -google_pay = { currency = "USD" } +credit = { currency = "USD,GBP,EUR" } +debit = { currency = "USD,GBP,EUR" } +apple_pay = { currency = "USD,GBP,EUR" } +google_pay = { currency = "USD,GBP,EUR" } [pm_filters.volt] open_banking_uk = {country = "DE,GB,AT,BE,CY,EE,ES,FI,FR,GR,HR,IE,IT,LT,LU,LV,MT,NL,PT,SI,SK,BG,CZ,DK,HU,NO,PL,RO,SE,AU,BR", currency = "EUR,GBP,DKK,NOK,PLN,SEK,AUD,BRL"} diff --git a/config/deployments/production.toml b/config/deployments/production.toml index e33b4ece80..a8b90c448b 100644 --- a/config/deployments/production.toml +++ b/config/deployments/production.toml @@ -268,10 +268,10 @@ google_pay = { currency = "USD" } [pm_filters.cybersource] -credit = { currency = "USD" } -debit = { currency = "USD" } -apple_pay = { currency = "USD" } -google_pay = { currency = "USD" } +credit = { currency = "USD,GBP,EUR" } +debit = { currency = "USD,GBP,EUR" } +apple_pay = { currency = "USD,GBP,EUR" } +google_pay = { currency = "USD,GBP,EUR" } [pm_filters.braintree] paypal.currency = "AUD,BRL,CAD,CNY,CZK,DKK,EUR,HKD,HUF,ILS,JPY,MYR,MXN,TWD,NZD,NOK,PHP,PLN,GBP,RUB,SGD,SEK,CHF,THB,USD" diff --git a/config/deployments/sandbox.toml b/config/deployments/sandbox.toml index af249369a1..8cf772dde0 100644 --- a/config/deployments/sandbox.toml +++ b/config/deployments/sandbox.toml @@ -271,10 +271,10 @@ apple_pay = { currency = "USD" } google_pay = { currency = "USD" } [pm_filters.cybersource] -credit = { currency = "USD" } -debit = { currency = "USD" } -apple_pay = { currency = "USD" } -google_pay = { currency = "USD" } +credit = { currency = "USD,GBP,EUR" } +debit = { currency = "USD,GBP,EUR" } +apple_pay = { currency = "USD,GBP,EUR" } +google_pay = { currency = "USD,GBP,EUR" } [pm_filters.braintree] paypal.currency = "AUD,BRL,CAD,CNY,CZK,DKK,EUR,HKD,HUF,ILS,JPY,MYR,MXN,TWD,NZD,NOK,PHP,PLN,GBP,RUB,SGD,SEK,CHF,THB,USD" diff --git a/config/development.toml b/config/development.toml index 87f952508e..4a17e28757 100644 --- a/config/development.toml +++ b/config/development.toml @@ -435,10 +435,10 @@ google_pay = { currency = "USD" } [pm_filters.cybersource] -credit = { currency = "USD" } -debit = { currency = "USD" } -apple_pay = { currency = "USD" } -google_pay = { currency = "USD" } +credit = { currency = "USD,GBP,EUR" } +debit = { currency = "USD,GBP,EUR" } +apple_pay = { currency = "USD,GBP,EUR" } +google_pay = { currency = "USD,GBP,EUR" } [pm_filters.braintree] paypal = { currency = "AUD,BRL,CAD,CNY,CZK,DKK,EUR,HKD,HUF,ILS,JPY,MYR,MXN,TWD,NZD,NOK,PHP,PLN,GBP,RUB,SGD,SEK,CHF,THB,USD" } diff --git a/config/docker_compose.toml b/config/docker_compose.toml index 6bf009c19f..0a0ce8684b 100644 --- a/config/docker_compose.toml +++ b/config/docker_compose.toml @@ -401,6 +401,12 @@ debit = { currency = "USD" } apple_pay = { currency = "USD" } google_pay = { currency = "USD" } +[pm_filters.cybersource] +credit = { currency = "USD,GBP,EUR" } +debit = { currency = "USD,GBP,EUR" } +apple_pay = { currency = "USD,GBP,EUR" } +google_pay = { currency = "USD,GBP,EUR" } + [pm_filters.helcim] credit = { currency = "USD" } debit = { currency = "USD" }