Skip to content

Commit 1b697c9

Browse files
authored
Merge pull request #800 from Adyen/develop
Release 10.1.0
2 parents 26fcf54 + 829ecbd commit 1b697c9

File tree

89 files changed

+5194
-1817
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+5194
-1817
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ The Library supports all APIs under the following services:
2424
* [Local/Cloud-based Terminal API](https://docs.adyen.com/point-of-sale/terminal-api-reference): Our point-of-sale integration.
2525
* [BIN lookup API](https://docs.adyen.com/api-explorer/#/BinLookup/v50/overview): The BIN Lookup API provides endpoints for retrieving information based on a given BIN. Current supported version: **v50**
2626

27+
In addition it supports the following type collections:
28+
29+
* [Platforms Notifications Webhooks](https://docs.adyen.com/api-explorer/#/NotificationService/v6/overview) Current supported version: **v6**
30+
2731
For more information, refer to our [documentation](https://docs.adyen.com/) or the [API Explorer](https://docs.adyen.com/api-explorer/).
2832

2933
## Prerequisites

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@adyen/api-library",
3-
"version": "10.0.0",
3+
"version": "10.1.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",
@@ -37,8 +37,8 @@
3737
"devDependencies": {
3838
"@types/jest": "27.0.2",
3939
"@types/nock": "11.1.0",
40-
"@typescript-eslint/eslint-plugin": "4.31.2",
41-
"@typescript-eslint/parser": "4.31.2",
40+
"@typescript-eslint/eslint-plugin": "4.33.0",
41+
"@typescript-eslint/parser": "4.33.0",
4242
"acorn": "^8.0.1",
4343
"coveralls": "3.1.1",
4444
"dotenv": "^10.0.0",
@@ -47,7 +47,7 @@
4747
"jest-ts-auto-mock": "^2.0.0",
4848
"kind-of": "^6.0.3",
4949
"minimist": ">=1.2.3",
50-
"nock": "13.1.4",
50+
"nock": "13.2.0",
5151
"release-it": "14.11.6",
5252
"ts-auto-mock": "^3.3.5",
5353
"ts-jest": "^27.0.4",

src/typings/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* #############
1313
* ############
1414
* Adyen NodeJS API Library
15-
* Copyright (c) 2020 Adyen B.V.
15+
* Copyright (c) 2021 Adyen B.V.
1616
* This file is open source and available under the MIT license.
1717
* See the LICENSE file for more info.
1818
*/
@@ -30,10 +30,10 @@
3030
/// <reference path="platformsFund.ts" />
3131
/// <reference path="platformsHostedOnboardingPage.ts" />
3232
/// <reference path="platformsNotificationConfiguration.ts" />
33-
/// <reference path="platformsNotifications.ts" />
3433

3534
export * as checkout from './checkout/models';
36-
export * as recurring from './recurring/models'
3735
export * as notification from './notification/models';
36+
export * as platformsNotifications from './platformsNotifications/models';
3837
export * as platformsAccount from './platformsAccount/models';
38+
export * as recurring from './recurring/models'
3939
export * as terminal from './terminal/models';

0 commit comments

Comments
 (0)