Compare commits

...

11 Commits

Author SHA1 Message Date
Ricardo Ambrogi
ed3a10911f Merge branch 'develop' of github.com:Adyen/adyen-node-api-library into release/3.0.0 2020-02-17 15:19:29 +01:00
Ricardo Ambrogi
a3438a2925 mend 2020-02-17 14:17:38 +00:00
Ricardo Ambrogi
2b73dddda4 update api version 2020-02-17 14:16:13 +00:00
Ricardo Ambrogi
0004e28ee2 merge develop 2020-02-10 07:55:44 +01:00
Ricardo Ambrogi
81f3cdcdd1 fix major release breaking change 2020-02-10 06:39:14 +00:00
Ricardo Ambrogi
0ee8afa94a remove babel deps 2020-01-27 14:13:43 +01:00
Ricardo Ambrogi
91c3316b4f Merge branch 'develop' of github.com:Adyen/adyen-node-api-library into hotfix/remove-babel-dep 2020-01-27 14:13:20 +01:00
Ricardo Ambrogi
ebd6c04702 run tests on future versions and not only stable 2020-01-27 11:22:40 +01:00
Ricardo Ambrogi
bac350abe5 drop support from node lt 10 2020-01-27 11:17:23 +01:00
Ricardo Ambrogi
4b2e64aa7a Merge branch 'develop' of github.com:Adyen/adyen-node-api-library into develop 2020-01-27 11:14:06 +01:00
Ricardo Ambrogi
605e364082 Bundle type definitions with package 2020-01-15 12:51:57 +00:00
2 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@adyen/api-library",
"version": "3.0.0",
"version": "3.0.1-rc.0",
"description": "The Adyen API Library for NodeJS enables you to work with Adyen APIs.",
"main": "dist/lib/src/index.js",
"types": "dist/lib/src/index.d.ts",

View File

@@ -54,7 +54,7 @@ class Client {
public static HPP_LIVE = "https://live.adyen.com/hpp";
public static MARKETPAY_ENDPOINT_TEST = "https://cal-test.adyen.com/cal/services";
public static MARKETPAY_ENDPOINT_LIVE = "https://cal-live.adyen.com/cal/services";
public static API_VERSION = "v51";
public static API_VERSION = "v52";
public static RECURRING_API_VERSION = "v49";
public static MARKETPAY_ACCOUNT_API_VERSION = "v5";
public static MARKETPAY_FUND_API_VERSION = "v5";
@@ -63,7 +63,7 @@ class Client {
public static LIB_VERSION: string = version;
public static CHECKOUT_ENDPOINT_TEST = "https://checkout-test.adyen.com/checkout";
public static CHECKOUT_ENDPOINT_LIVE_SUFFIX = "-checkout-live.adyenpayments.com/checkout";
public static CHECKOUT_API_VERSION = "v51";
public static CHECKOUT_API_VERSION = "v52";
public static BIN_LOOKUP_PAL_SUFFIX = "/pal/servlet/BinLookup/";
public static BIN_LOOKUP_API_VERSION = "v50";
public static CHECKOUT_UTILITY_API_VERSION = "v1";