Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

API Updates #1248

Merged
merged 1 commit into from
Sep 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions types/2020-08-27/Accounts.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1698,6 +1698,11 @@ declare module 'stripe' {
*/
first_name_kanji?: string;

/**
* A list of alternate names or aliases that the individual is known by.
*/
full_name_aliases?: Array<string>;

/**
* The individual's gender (International regulations require either "male" or "female").
*/
Expand Down Expand Up @@ -2680,6 +2685,11 @@ declare module 'stripe' {
*/
first_name_kanji?: string;

/**
* A list of alternate names or aliases that the individual is known by.
*/
full_name_aliases?: Array<string>;

/**
* The individual's gender (International regulations require either "male" or "female").
*/
Expand Down
2 changes: 1 addition & 1 deletion types/2020-08-27/Checkout/Sessions.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1004,7 +1004,7 @@ declare module 'stripe' {
allow_promotion_codes?: boolean;

/**
* If `true`, a recovery url will be generated to recover this Checkout Session if it
* If `true`, a recovery URL will be generated to recover this Checkout Session if it
* expires before a successful transaction is completed. It will be attached to the
* Checkout Session object upon expiration.
*/
Expand Down
15 changes: 15 additions & 0 deletions types/2020-08-27/Persons.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,11 @@ declare module 'stripe' {
*/
first_name_kanji?: string | null;

/**
* A list of alternate names or aliases that the person is known by.
*/
full_name_aliases?: Array<string>;

/**
* Information about the upcoming new requirements for this person, including what information needs to be collected, and by when.
*/
Expand Down Expand Up @@ -624,6 +629,11 @@ declare module 'stripe' {
*/
first_name_kanji?: string;

/**
* A list of alternate names or aliases that the person is known by.
*/
full_name_aliases?: Array<string>;

/**
* The person's gender (International regulations require either "male" or "female").
*/
Expand Down Expand Up @@ -886,6 +896,11 @@ declare module 'stripe' {
*/
first_name_kanji?: string;

/**
* A list of alternate names or aliases that the person is known by.
*/
full_name_aliases?: Array<string>;

/**
* The person's gender (International regulations require either "male" or "female").
*/
Expand Down
10 changes: 10 additions & 0 deletions types/2020-08-27/Tokens.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,11 @@ declare module 'stripe' {
*/
first_name_kanji?: string;

/**
* A list of alternate names or aliases that the individual is known by.
*/
full_name_aliases?: Array<string>;

/**
* The individual's gender (International regulations require either "male" or "female").
*/
Expand Down Expand Up @@ -545,6 +550,11 @@ declare module 'stripe' {
*/
first_name_kanji?: string;

/**
* A list of alternate names or aliases that the person is known by.
*/
full_name_aliases?: Array<string>;

/**
* The person's gender (International regulations require either "male" or "female").
*/
Expand Down