Skip to content

Commit

Permalink
Codegen for openapi 9c7c84c (#1158)
Browse files Browse the repository at this point in the history
  • Loading branch information
richardm-stripe authored May 11, 2021
1 parent 24040c8 commit 0c67cd3
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
4 changes: 2 additions & 2 deletions types/2020-08-27/Accounts.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -943,7 +943,7 @@ declare module 'stripe' {
/**
* A publicly available website for handling support issues.
*/
support_url?: string;
support_url?: Stripe.Emptyable<string>;

/**
* The business's publicly available website.
Expand Down Expand Up @@ -2037,7 +2037,7 @@ declare module 'stripe' {
/**
* A publicly available website for handling support issues.
*/
support_url?: string;
support_url?: Stripe.Emptyable<string>;

/**
* The business's publicly available website.
Expand Down
2 changes: 1 addition & 1 deletion types/2020-08-27/Charges.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
3 changes: 3 additions & 0 deletions types/2020-08-27/Files.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
}

Expand Down
2 changes: 1 addition & 1 deletion types/2020-08-27/PaymentIntents.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions types/2020-08-27/Terminal/ConnectionTokens.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand All @@ -30,7 +30,7 @@ declare module 'stripe' {
expand?: Array<string>;

/**
* 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;
}
Expand Down

0 comments on commit 0c67cd3

Please sign in to comment.