Skip to content

Commit

Permalink
Merge pull request #800 from Adyen/develop
Browse files Browse the repository at this point in the history
Release 10.1.0
  • Loading branch information
wboereboom committed Nov 10, 2021
2 parents 26fcf54 + 829ecbd commit 1b697c9
Show file tree
Hide file tree
Showing 89 changed files with 5,194 additions and 1,817 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ The Library supports all APIs under the following services:
* [Local/Cloud-based Terminal API](https://docs.adyen.com/point-of-sale/terminal-api-reference): Our point-of-sale integration.
* [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**

In addition it supports the following type collections:

* [Platforms Notifications Webhooks](https://docs.adyen.com/api-explorer/#/NotificationService/v6/overview) Current supported version: **v6**

For more information, refer to our [documentation](https://docs.adyen.com/) or the [API Explorer](https://docs.adyen.com/api-explorer/).

## Prerequisites
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@adyen/api-library",
"version": "10.0.0",
"version": "10.1.0",
"description": "The Adyen API Library for NodeJS enables you to work with Adyen APIs.",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
Expand Down Expand Up @@ -37,8 +37,8 @@
"devDependencies": {
"@types/jest": "27.0.2",
"@types/nock": "11.1.0",
"@typescript-eslint/eslint-plugin": "4.31.2",
"@typescript-eslint/parser": "4.31.2",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"acorn": "^8.0.1",
"coveralls": "3.1.1",
"dotenv": "^10.0.0",
Expand All @@ -47,7 +47,7 @@
"jest-ts-auto-mock": "^2.0.0",
"kind-of": "^6.0.3",
"minimist": ">=1.2.3",
"nock": "13.1.4",
"nock": "13.2.0",
"release-it": "14.11.6",
"ts-auto-mock": "^3.3.5",
"ts-jest": "^27.0.4",
Expand Down
6 changes: 3 additions & 3 deletions src/typings/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* #############
* ############
* Adyen NodeJS API Library
* Copyright (c) 2020 Adyen B.V.
* Copyright (c) 2021 Adyen B.V.
* This file is open source and available under the MIT license.
* See the LICENSE file for more info.
*/
Expand All @@ -30,10 +30,10 @@
/// <reference path="platformsFund.ts" />
/// <reference path="platformsHostedOnboardingPage.ts" />
/// <reference path="platformsNotificationConfiguration.ts" />
/// <reference path="platformsNotifications.ts" />

export * as checkout from './checkout/models';
export * as recurring from './recurring/models'
export * as notification from './notification/models';
export * as platformsNotifications from './platformsNotifications/models';
export * as platformsAccount from './platformsAccount/models';
export * as recurring from './recurring/models'
export * as terminal from './terminal/models';

0 comments on commit 1b697c9

Please sign in to comment.