Skip to content

Commit 5bd522b

Browse files
authored
Merge pull request #640 from Adyen/PW-3895v2
Release v7.0.0
2 parents a1977ff + bd3c8a0 commit 5bd522b

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @KadoBOT @zaiddreakh @maassenbas @msilvagarcia @AlexandrosMor
1+
* @zaiddreakh @maassenbas @msilvagarcia @AlexandrosMor @peterojo

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@adyen/api-library",
3-
"version": "6.0.3",
3+
"version": "7.0.0",
44
"description": "The Adyen API Library for NodeJS enables you to work with Adyen APIs.",
55
"main": "lib/src/index.js",
66
"types": "lib/src/index.d.ts",

src/__tests__/checkout.spec.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,6 @@ export function createPaymentsCheckoutRequest(): ICheckout.PaymentRequest {
6767
paymentMethod: paymentMethodDetails,
6868
reference,
6969
returnUrl: "https://your-company.com/...",
70-
enableRecurring: true,
71-
enableOneClick: true,
7270
shopperReference: "shopperReference",
7371
storePaymentMethod: true
7472
};

src/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ class Client {
5252
public static HPP_LIVE = "https://live.adyen.com/hpp";
5353
public static MARKETPAY_ENDPOINT_TEST = "https://cal-test.adyen.com/cal/services";
5454
public static MARKETPAY_ENDPOINT_LIVE = "https://cal-live.adyen.com/cal/services";
55+
public static CHECKOUT_API_VERSION = "v66";
5556
public static API_VERSION = "v64";
5657
public static RECURRING_API_VERSION = "v49";
5758
public static MARKETPAY_ACCOUNT_API_VERSION = "v6";
@@ -63,7 +64,6 @@ class Client {
6364
public static LIB_VERSION: string = version;
6465
public static CHECKOUT_ENDPOINT_TEST = "https://checkout-test.adyen.com/checkout";
6566
public static CHECKOUT_ENDPOINT_LIVE_SUFFIX = "-checkout-live.adyenpayments.com/checkout";
66-
public static CHECKOUT_API_VERSION = "v64";
6767
public static BIN_LOOKUP_PAL_SUFFIX = "/pal/servlet/BinLookup/";
6868
public static BIN_LOOKUP_API_VERSION = "v50";
6969
public static TERMINAL_API_ENDPOINT_TEST = "https://terminal-api-test.adyen.com";

0 commit comments

Comments
 (0)