Skip to content

Commit e133499

Browse files
Update generated code for v1723
1 parent 659c5e8 commit e133499

File tree

3 files changed

+58
-1
lines changed

3 files changed

+58
-1
lines changed

OPENAPI_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1722
1+
v1723

types/PaymentIntents.d.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1815,6 +1815,8 @@ declare module 'stripe' {
18151815

18161816
samsung_pay?: PaymentMethodOptions.SamsungPay;
18171817

1818+
satispay?: PaymentMethodOptions.Satispay;
1819+
18181820
sepa_debit?: PaymentMethodOptions.SepaDebit;
18191821

18201822
shopeepay?: PaymentMethodOptions.Shopeepay;
@@ -3128,6 +3130,13 @@ declare module 'stripe' {
31283130
capture_method?: 'manual';
31293131
}
31303132

3133+
interface Satispay {
3134+
/**
3135+
* Controls when the funds will be captured from the customer's account.
3136+
*/
3137+
capture_method?: 'manual';
3138+
}
3139+
31313140
interface SepaDebit {
31323141
mandate_options?: SepaDebit.MandateOptions;
31333142

types/PaymentIntentsResource.d.ts

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2055,6 +2055,11 @@ declare module 'stripe' {
20552055
*/
20562056
samsung_pay?: Stripe.Emptyable<PaymentMethodOptions.SamsungPay>;
20572057

2058+
/**
2059+
* If this is a `satispay` PaymentMethod, this sub-hash contains details about the Satispay payment method options.
2060+
*/
2061+
satispay?: Stripe.Emptyable<PaymentMethodOptions.Satispay>;
2062+
20582063
/**
20592064
* If this is a `sepa_debit` PaymentIntent, this sub-hash contains details about the SEPA Debit payment method options.
20602065
*/
@@ -3705,6 +3710,17 @@ declare module 'stripe' {
37053710
capture_method?: Stripe.Emptyable<'manual'>;
37063711
}
37073712

3713+
interface Satispay {
3714+
/**
3715+
* Controls when the funds are captured from the customer's account.
3716+
*
3717+
* If provided, this parameter overrides the behavior of the top-level [capture_method](https://stripe.com/api/payment_intents/update#update_payment_intent-capture_method) for this payment method type when finalizing the payment with this payment method type.
3718+
*
3719+
* If `capture_method` is already set on the PaymentIntent, providing an empty value for this parameter unsets the stored value for this payment method type.
3720+
*/
3721+
capture_method?: Stripe.Emptyable<'manual'>;
3722+
}
3723+
37083724
interface SepaDebit {
37093725
/**
37103726
* Additional fields for Mandate creation
@@ -6054,6 +6070,11 @@ declare module 'stripe' {
60546070
*/
60556071
samsung_pay?: Stripe.Emptyable<PaymentMethodOptions.SamsungPay>;
60566072

6073+
/**
6074+
* If this is a `satispay` PaymentMethod, this sub-hash contains details about the Satispay payment method options.
6075+
*/
6076+
satispay?: Stripe.Emptyable<PaymentMethodOptions.Satispay>;
6077+
60576078
/**
60586079
* If this is a `sepa_debit` PaymentIntent, this sub-hash contains details about the SEPA Debit payment method options.
60596080
*/
@@ -7704,6 +7725,17 @@ declare module 'stripe' {
77047725
capture_method?: Stripe.Emptyable<'manual'>;
77057726
}
77067727

7728+
interface Satispay {
7729+
/**
7730+
* Controls when the funds are captured from the customer's account.
7731+
*
7732+
* If provided, this parameter overrides the behavior of the top-level [capture_method](https://stripe.com/api/payment_intents/update#update_payment_intent-capture_method) for this payment method type when finalizing the payment with this payment method type.
7733+
*
7734+
* If `capture_method` is already set on the PaymentIntent, providing an empty value for this parameter unsets the stored value for this payment method type.
7735+
*/
7736+
capture_method?: Stripe.Emptyable<'manual'>;
7737+
}
7738+
77077739
interface SepaDebit {
77087740
/**
77097741
* Additional fields for Mandate creation
@@ -10815,6 +10847,11 @@ declare module 'stripe' {
1081510847
*/
1081610848
samsung_pay?: Stripe.Emptyable<PaymentMethodOptions.SamsungPay>;
1081710849

10850+
/**
10851+
* If this is a `satispay` PaymentMethod, this sub-hash contains details about the Satispay payment method options.
10852+
*/
10853+
satispay?: Stripe.Emptyable<PaymentMethodOptions.Satispay>;
10854+
1081810855
/**
1081910856
* If this is a `sepa_debit` PaymentIntent, this sub-hash contains details about the SEPA Debit payment method options.
1082010857
*/
@@ -12465,6 +12502,17 @@ declare module 'stripe' {
1246512502
capture_method?: Stripe.Emptyable<'manual'>;
1246612503
}
1246712504

12505+
interface Satispay {
12506+
/**
12507+
* Controls when the funds are captured from the customer's account.
12508+
*
12509+
* If provided, this parameter overrides the behavior of the top-level [capture_method](https://stripe.com/api/payment_intents/update#update_payment_intent-capture_method) for this payment method type when finalizing the payment with this payment method type.
12510+
*
12511+
* If `capture_method` is already set on the PaymentIntent, providing an empty value for this parameter unsets the stored value for this payment method type.
12512+
*/
12513+
capture_method?: Stripe.Emptyable<'manual'>;
12514+
}
12515+
1246812516
interface SepaDebit {
1246912517
/**
1247012518
* Additional fields for Mandate creation

0 commit comments

Comments
 (0)