diff --git a/types/2020-08-27/Accounts.d.ts b/types/2020-08-27/Accounts.d.ts index 7121785a9f..f347fef129 100644 --- a/types/2020-08-27/Accounts.d.ts +++ b/types/2020-08-27/Accounts.d.ts @@ -943,7 +943,7 @@ declare module 'stripe' { /** * A publicly available website for handling support issues. */ - support_url?: string; + support_url?: Stripe.Emptyable; /** * The business's publicly available website. @@ -2037,7 +2037,7 @@ declare module 'stripe' { /** * A publicly available website for handling support issues. */ - support_url?: string; + support_url?: Stripe.Emptyable; /** * The business's publicly available website. diff --git a/types/2020-08-27/Charges.d.ts b/types/2020-08-27/Charges.d.ts index 00f272da53..4c3ab72c68 100644 --- a/types/2020-08-27/Charges.d.ts +++ b/types/2020-08-27/Charges.d.ts @@ -533,7 +533,7 @@ declare module 'stripe' { interface AfterpayClearpay { /** - * Order identifier shown to the customer in Afterpay's online portal. + * Order identifier shown to the merchant in Afterpay's online portal. */ reference: string | null; } diff --git a/types/2020-08-27/Files.d.ts b/types/2020-08-27/Files.d.ts index 4dc103a80d..e9d22b46e3 100644 --- a/types/2020-08-27/Files.d.ts +++ b/types/2020-08-27/Files.d.ts @@ -70,8 +70,11 @@ declare module 'stripe' { | 'business_logo' | 'customer_signature' | 'dispute_evidence' + | 'document_provider_identity_document' + | 'finance_report_run' | 'identity_document' | 'pci_document' + | 'sigma_scheduled_query' | 'tax_document_user_upload'; } diff --git a/types/2020-08-27/PaymentIntents.d.ts b/types/2020-08-27/PaymentIntents.d.ts index 9a495f8015..54e0122ca5 100644 --- a/types/2020-08-27/PaymentIntents.d.ts +++ b/types/2020-08-27/PaymentIntents.d.ts @@ -475,7 +475,7 @@ declare module 'stripe' { interface AfterpayClearpay { /** - * Order identifier shown to the customer in Afterpay's online portal. We recommend using a value that helps you answer any questions a customer might have about + * Order identifier shown to the merchant in Afterpay's online portal. We recommend using a value that helps you answer any questions a customer might have about * the payment. The identifier is limited to 128 characters and may contain only letters, digits, underscores, backslashes and dashes. */ reference: string | null; diff --git a/types/2020-08-27/Terminal/ConnectionTokens.d.ts b/types/2020-08-27/Terminal/ConnectionTokens.d.ts index ee68bbcafb..68e4349713 100644 --- a/types/2020-08-27/Terminal/ConnectionTokens.d.ts +++ b/types/2020-08-27/Terminal/ConnectionTokens.d.ts @@ -13,7 +13,7 @@ declare module 'stripe' { object: 'terminal.connection_token'; /** - * The id of the location that this connection token is scoped to. + * The id of the location that this connection token is scoped to. Note that location scoping only applies to internet-connected readers. For more details, see [the docs on scoping connection tokens](https://stripe.com/docs/terminal/readers/fleet-management#connection-tokens). */ location?: string; @@ -30,7 +30,7 @@ declare module 'stripe' { expand?: Array; /** - * The id of the location that this connection token is scoped to. If specified the connection token will only be usable with readers assigned to that location, otherwise the connection token will be usable with all readers. + * The id of the location that this connection token is scoped to. If specified the connection token will only be usable with readers assigned to that location, otherwise the connection token will be usable with all readers. Note that location scoping only applies to internet-connected readers. For more details, see [the docs on scoping connection tokens](https://stripe.com/docs/terminal/readers/fleet-management#connection-tokens). */ location?: string; }