stripe 8.200.0 → 8.201.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -0
- package/VERSION +1 -1
- package/lib/StripeResource.js +1 -1
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## 8.201.0 - 2022-01-28
|
|
4
|
+
* [#1342](https://github.com/stripe/stripe-node/pull/1342) Bump nanoid from 3.1.20 to 3.2.0.
|
|
5
|
+
* [#1335](https://github.com/stripe/stripe-node/pull/1335) Fix StripeResource to successfully import TIMEOUT_ERROR_CODE.
|
|
6
|
+
* [#1339](https://github.com/stripe/stripe-node/pull/1339) Bump node-fetch from 2.6.2 to 2.6.7
|
|
7
|
+
|
|
3
8
|
## 8.200.0 - 2022-01-25
|
|
4
9
|
* [#1338](https://github.com/stripe/stripe-node/pull/1338) API Updates
|
|
5
10
|
* Change `Checkout.Session.payment_link` to be required
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
8.
|
|
1
|
+
8.201.0
|
package/lib/StripeResource.js
CHANGED
|
@@ -12,7 +12,7 @@ const {
|
|
|
12
12
|
StripeAPIError,
|
|
13
13
|
} = require('./Error');
|
|
14
14
|
|
|
15
|
-
const HttpClient = require('./net/HttpClient');
|
|
15
|
+
const {HttpClient} = require('./net/HttpClient');
|
|
16
16
|
|
|
17
17
|
// Provide extension mechanism for Stripe Resource Sub-Classes
|
|
18
18
|
StripeResource.extend = utils.protoExtend;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stripe",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.201.0",
|
|
4
4
|
"description": "Stripe API wrapper",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"stripe",
|
|
@@ -44,7 +44,8 @@
|
|
|
44
44
|
"typescript": "^3.7.2"
|
|
45
45
|
},
|
|
46
46
|
"resolutions": {
|
|
47
|
-
"ansi-regex": "5.0.1"
|
|
47
|
+
"ansi-regex": "5.0.1",
|
|
48
|
+
"nanoid": "3.2.0"
|
|
48
49
|
},
|
|
49
50
|
"dependencies": {
|
|
50
51
|
"@types/node": ">=8.1.0",
|