stripe 8.186.0 → 8.186.1
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 +6 -0
- package/VERSION +1 -1
- package/package.json +1 -1
- package/types/2020-08-27/Tokens.d.ts +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## 8.186.1 - 2021-11-04
|
|
4
|
+
* [#1284](https://github.com/stripe/stripe-node/pull/1284) API Updates
|
|
5
|
+
* Remove support for `ownership_declaration_shown_and_signed` on `TokenCreateParams.account`. This API was unused.
|
|
6
|
+
* Add support for `ownership_declaration_shown_and_signed` on `TokenCreateParams.account.company`
|
|
7
|
+
|
|
8
|
+
|
|
3
9
|
## 8.186.0 - 2021-11-01
|
|
4
10
|
* [#1283](https://github.com/stripe/stripe-node/pull/1283) API Updates
|
|
5
11
|
* Add support for `ownership_declaration` on `AccountUpdateParams.company`, `AccountCreateParams.company`, `Account.company`, and `TokenCreateParams.account.company`
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
8.186.
|
|
1
|
+
8.186.1
|
package/package.json
CHANGED
|
@@ -118,11 +118,6 @@ declare module 'stripe' {
|
|
|
118
118
|
*/
|
|
119
119
|
individual?: Account.Individual;
|
|
120
120
|
|
|
121
|
-
/**
|
|
122
|
-
* Whether the user described by the data in the token has been shown the Ownership Declaration and indicated that it is correct.
|
|
123
|
-
*/
|
|
124
|
-
ownership_declaration_shown_and_signed?: boolean;
|
|
125
|
-
|
|
126
121
|
/**
|
|
127
122
|
* Whether the user described by the data in the token has been shown [the Stripe Connected Account Agreement](https://stripe.com/docs/connect/account-tokens#stripe-connected-account-agreement). When creating an account token to create a new Connect account, this value must be `true`.
|
|
128
123
|
*/
|
|
@@ -187,6 +182,11 @@ declare module 'stripe' {
|
|
|
187
182
|
*/
|
|
188
183
|
ownership_declaration?: Company.OwnershipDeclaration;
|
|
189
184
|
|
|
185
|
+
/**
|
|
186
|
+
* Whether the user described by the data in the token has been shown the Ownership Declaration and indicated that it is correct.
|
|
187
|
+
*/
|
|
188
|
+
ownership_declaration_shown_and_signed?: boolean;
|
|
189
|
+
|
|
190
190
|
/**
|
|
191
191
|
* The company's phone number (used for verification).
|
|
192
192
|
*/
|