Skip to content

Commit

Permalink
API Updates (#1248)
Browse files Browse the repository at this point in the history
  • Loading branch information
dcr-stripe authored Sep 16, 2021
1 parent d180692 commit a66969b
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 1 deletion.
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

0 comments on commit a66969b

Please sign in to comment.