lib/active_merchant/billing/gateways/adyen.rb in activemerchant-1.92.0 vs lib/active_merchant/billing/gateways/adyen.rb in activemerchant-1.93.0

- old
+ new

@@ -2,11 +2,11 @@ module Billing #:nodoc: class AdyenGateway < Gateway # we recommend setting up merchant-specific endpoints. # https://docs.adyen.com/developers/api-manual#apiendpoints - self.test_url = 'https://pal-test.adyen.com/pal/servlet/Payment/v18' - self.live_url = 'https://pal-live.adyen.com/pal/servlet/Payment/v18' + self.test_url = 'https://pal-test.adyen.com/pal/servlet/Payment/v40' + self.live_url = 'https://pal-live.adyen.com/pal/servlet/Payment/v40' self.supported_countries = ['AT', 'AU', 'BE', 'BG', 'BR', 'CH', 'CY', 'CZ', 'DE', 'DK', 'EE', 'ES', 'FI', 'FR', 'GB', 'GI', 'GR', 'HK', 'HU', 'IE', 'IS', 'IT', 'LI', 'LT', 'LU', 'LV', 'MC', 'MT', 'MX', 'NL', 'NO', 'PL', 'PT', 'RO', 'SE', 'SG', 'SK', 'SI', 'US'] self.default_currency = 'USD' self.supported_cardtypes = [:visa, :master, :american_express, :diners_club, :jcb, :dankort, :maestro, :discover, :elo]