Skip to content

Commit f5f220b

Browse files
authored
Merge pull request #705 from Adyen/develop
Release 8.1.1
2 parents a2b4465 + 2656571 commit f5f220b

File tree

9 files changed

+450
-189
lines changed

9 files changed

+450
-189
lines changed

.github/CODEOWNERS

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

.npmignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ src/
77
tsconfig.json
88
jest.config.js
99
tslint.json
10-
webpack.config.js
10+
webpack.config.js
11+
.github

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ client.httpClient = httpClient;
111111

112112
### Example integration
113113

114-
For a closer look at how our PHP library works, clone our [example integration](https://github.com/adyen-examples/adyen-node-online-payments). This includes commented code, highlighting key features and concepts, and examples of API calls that can be made using the library.
114+
For a closer look at how our NodeJS library works, clone our [example integration](https://github.com/adyen-examples/adyen-node-online-payments). This includes commented code, highlighting key features and concepts, and examples of API calls that can be made using the library.
115115

116116
## Contributing
117117
We strongly encourage you to join us in contributing to this repository so everyone can benefit from:
@@ -128,4 +128,4 @@ If you have a feature request, or spotted a bug or a technical problem, create a
128128
This repository is available under the [MIT license](LICENSE).
129129

130130
## See also
131-
* [example integration](https://github.com/adyen-examples/adyen-node-online-payments)
131+
* [example integration](https://github.com/adyen-examples/adyen-node-online-payments)

package-lock.json

Lines changed: 66 additions & 79 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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": "8.1.0",
3+
"version": "8.1.1",
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",
@@ -41,14 +41,14 @@
4141
"@typescript-eslint/parser": "2.34.0",
4242
"acorn": "^8.0.1",
4343
"coveralls": "3.1.0",
44-
"dotenv": "^9.0.0",
44+
"dotenv": "^10.0.0",
4545
"eslint": "6.8.0",
4646
"jest": "25.5.4",
4747
"jest-ts-auto-mock": "^2.0.0",
4848
"kind-of": "^6.0.3",
4949
"minimist": ">=1.2.3",
50-
"nock": "13.0.11",
51-
"release-it": "14.6.1",
50+
"nock": "13.1.0",
51+
"release-it": "14.7.0",
5252
"ts-auto-mock": "^2.6.5",
5353
"ts-jest": "25.5.1",
5454
"ts-loader": "8.0.10",

src/__mocks__/base.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,11 @@ const saleData: SaleData = {
8383
version: "1",
8484
name: "test"
8585
}
86-
}
86+
},
87+
metadata: {
88+
someMetaDataKey1: "YOUR_VALUE",
89+
someMetaDataKey2: "YOUR_VALUE"
90+
},
8791
}
8892
};
8993

0 commit comments

Comments
 (0)