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

Codegen for openapi 3723465 #1074

Merged
merged 1 commit into from
Nov 19, 2020
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions types/2020-08-27/PaymentMethods.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -519,11 +519,13 @@ declare module 'stripe' {
| 'bacs_debit'
| 'bancontact'
| 'card'
| 'card_present'
| 'eps'
| 'fpx'
| 'giropay'
| 'grabpay'
| 'ideal'
| 'interac_present'
| 'oxxo'
| 'p24'
| 'sepa_debit'
Expand Down
41 changes: 37 additions & 4 deletions types/2020-08-27/SetupIntents.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,13 @@ declare module 'stripe' {
type RequestThreeDSecure = 'any' | 'automatic' | 'challenge_only';
}

interface SepaDebit {}
interface SepaDebit {
mandate_options?: SepaDebit.MandateOptions;
}

namespace SepaDebit {
interface MandateOptions {}
}
}

type Status =
Expand Down Expand Up @@ -438,7 +444,16 @@ declare module 'stripe' {
type RequestThreeDSecure = 'any' | 'automatic';
}

interface SepaDebit {}
interface SepaDebit {
/**
* Additional fields for Mandate creation
*/
mandate_options?: SepaDebit.MandateOptions;
}

namespace SepaDebit {
interface MandateOptions {}
}
}

interface SingleUse {
Expand Down Expand Up @@ -539,7 +554,16 @@ declare module 'stripe' {
type RequestThreeDSecure = 'any' | 'automatic';
}

interface SepaDebit {}
interface SepaDebit {
/**
* Additional fields for Mandate creation
*/
mandate_options?: SepaDebit.MandateOptions;
}

namespace SepaDebit {
interface MandateOptions {}
}
}
}

Expand Down Expand Up @@ -731,7 +755,16 @@ declare module 'stripe' {
type RequestThreeDSecure = 'any' | 'automatic';
}

interface SepaDebit {}
interface SepaDebit {
/**
* Additional fields for Mandate creation
*/
mandate_options?: SepaDebit.MandateOptions;
}

namespace SepaDebit {
interface MandateOptions {}
}
}
}

Expand Down