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

Multiple API changes #924

Merged
merged 1 commit into from
Jun 18, 2020
Merged
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
32 changes: 21 additions & 11 deletions types/2020-03-02/AccountLinks.d.ts
Original file line number Diff line number Diff line change
@@ -31,16 +31,6 @@ declare module 'stripe' {
*/
account: string;

/**
* The URL that the user will be redirected to if the account link is no longer valid.
*/
failure_url: string;

/**
* The URL that the user will be redirected to upon leaving or completing the linked flow successfully.
*/
success_url: string;

/**
* The type of account link the user is requesting. Possible values are `custom_account_verification` or `custom_account_update`.
*/
@@ -55,6 +45,26 @@ declare module 'stripe' {
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;

/**
* Alternate name for refresh_url to ensure backwards compatibility
*/
failure_url?: string;

/**
* The URL that the user will be redirected to if the account link is no longer valid. Your `refresh_url` should trigger a method on your server to create a new account link using this API, with the same parameters, and redirect the user to the new account link.
*/
refresh_url?: string;

/**
* The URL that the user will be redirected to upon leaving or completing the linked flow.
*/
return_url?: string;

/**
* Alternate name for return_url to ensure backwards compatibility
*/
success_url?: string;
}

namespace AccountLinkCreateParams {
@@ -65,7 +75,7 @@ declare module 'stripe' {

class AccountLinksResource {
/**
* Creates an AccountLink object that returns a single-use Stripe URL that the user can redirect their user to in order to take them through the Connect Onboarding flow.
* Creates an AccountLink object that includes a single-use Stripe URL that the platform can redirect their user to in order to take them through the Connect Onboarding flow.
*/
create(
params: AccountLinkCreateParams,
2 changes: 1 addition & 1 deletion types/2020-03-02/Products.d.ts
Original file line number Diff line number Diff line change
@@ -160,7 +160,7 @@ declare module 'stripe' {
active?: boolean;

/**
* A list of up to 5 alphanumeric attributes.
* A list of up to 5 alphanumeric attributes. Should only be set if type=`good`.
*/
attributes?: Array<string>;

2 changes: 1 addition & 1 deletion types/2020-03-02/Tokens.d.ts
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@ declare module 'stripe' {
* destinations on `Account` objects for [Custom accounts](https://stripe.com/docs/connect/custom-accounts).
* They can be bank accounts or debit cards as well, and are documented in the links above.
*
* Related guide: [Processing ACH & Bank Transfers](https://stripe.com/docs/payments/ach-bank-transfers).
* Related guide: [Bank Debits and Transfers](https://stripe.com/docs/payments/bank-debits-transfers).
*/
bank_account?: Stripe.BankAccount;

12 changes: 9 additions & 3 deletions types/2020-03-02/WebhookEndpoints.d.ts
Original file line number Diff line number Diff line change
@@ -32,7 +32,7 @@ declare module 'stripe' {
deleted?: void;

/**
* An optional description of what the wehbook is used for.
* An optional description of what the webhook is used for.
*/
description: string | null;

@@ -109,7 +109,7 @@ declare module 'stripe' {
connect?: boolean;

/**
* An optional description of what the wehbook is used for.
* An optional description of what the webhook is used for.
*/
description?: string;

@@ -298,6 +298,9 @@ declare module 'stripe' {
| 'issuing_card.updated'
| 'issuing_cardholder.created'
| 'issuing_cardholder.updated'
| 'issuing_dispute.created'
| 'issuing_dispute.funds_reinstated'
| 'issuing_dispute.updated'
| 'issuing_transaction.created'
| 'issuing_transaction.updated'
| 'mandate.updated'
@@ -388,7 +391,7 @@ declare module 'stripe' {

interface WebhookEndpointUpdateParams {
/**
* An optional description of what the wehbook is used for.
* An optional description of what the webhook is used for.
*/
description?: string;

@@ -495,6 +498,9 @@ declare module 'stripe' {
| 'issuing_card.updated'
| 'issuing_cardholder.created'
| 'issuing_cardholder.updated'
| 'issuing_dispute.created'
| 'issuing_dispute.funds_reinstated'
| 'issuing_dispute.updated'
| 'issuing_transaction.created'
| 'issuing_transaction.updated'
| 'mandate.updated'