diff --git a/types/2020-08-27/Accounts.d.ts b/types/2020-08-27/Accounts.d.ts index 0fd3ba5218..17b2786a7e 100644 --- a/types/2020-08-27/Accounts.d.ts +++ b/types/2020-08-27/Accounts.d.ts @@ -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; + /** * The individual's gender (International regulations require either "male" or "female"). */ @@ -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; + /** * The individual's gender (International regulations require either "male" or "female"). */ diff --git a/types/2020-08-27/Checkout/Sessions.d.ts b/types/2020-08-27/Checkout/Sessions.d.ts index 991bc36b35..989be203c7 100644 --- a/types/2020-08-27/Checkout/Sessions.d.ts +++ b/types/2020-08-27/Checkout/Sessions.d.ts @@ -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. */ diff --git a/types/2020-08-27/Persons.d.ts b/types/2020-08-27/Persons.d.ts index 8697e7c71e..04e1368671 100644 --- a/types/2020-08-27/Persons.d.ts +++ b/types/2020-08-27/Persons.d.ts @@ -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; + /** * Information about the upcoming new requirements for this person, including what information needs to be collected, and by when. */ @@ -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; + /** * The person's gender (International regulations require either "male" or "female"). */ @@ -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; + /** * The person's gender (International regulations require either "male" or "female"). */ diff --git a/types/2020-08-27/Tokens.d.ts b/types/2020-08-27/Tokens.d.ts index 539f102bb7..48a8a0d315 100644 --- a/types/2020-08-27/Tokens.d.ts +++ b/types/2020-08-27/Tokens.d.ts @@ -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; + /** * The individual's gender (International regulations require either "male" or "female"). */ @@ -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; + /** * The person's gender (International regulations require either "male" or "female"). */