File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -389,7 +389,7 @@ export interface IApiTypesDetail {
389
389
keysToTest ?: Array < string > ;
390
390
}
391
391
392
- export type IAlternativePaymentMethod = Array < IExpressPayStripe | IExpressPayPaypal | IExpressPayBraintreeGoogle | IExpressPayBraintreeApple | IExpressPayPaypalCommercePlatform | IExpressPayPaypalCommercePlatformButton > ;
392
+ export type IAlternativePaymentMethod = Array < IExpressPayStripe | IExpressPayPaypal | IExpressPayBraintreeGoogle | IExpressPayBraintreeApple | IExpressPayPaypalCommercePlatform | IExpressPayPaypalCommercePlatformButton | IExpressPayBraintreePayPal | IExpressPayBraintreeFastlane > ;
393
393
export type IExternalPaymentGateways = Array < IExternalPaymentGateway > ;
394
394
395
395
export interface IOrderInitialData {
@@ -474,6 +474,7 @@ export interface IExpressPayPaypalCommercePlatform {
474
474
apple_pay_enabled : boolean ;
475
475
partner_id : string ;
476
476
merchant_id : string ;
477
+ fastlane_styles : Record < string , unknown >
477
478
}
478
479
479
480
export interface IExpressPayPaypalCommercePlatformButton {
@@ -510,6 +511,16 @@ export interface IExpressPayBraintreeApple extends IExpressPayBraintree {
510
511
apple_pay_enabled : boolean ;
511
512
}
512
513
514
+ export interface IExpressPayBraintreePayPal extends IExpressPayBraintree {
515
+ is_paylater_enabled : boolean ;
516
+ properties : Record < string , unknown >
517
+ }
518
+
519
+ export interface IExpressPayBraintreeFastlane extends IExpressPayBraintree {
520
+ fastlane_styles : Record < string , unknown >
521
+ }
522
+
523
+
513
524
export interface IExternalPaymentGateway {
514
525
is_test : boolean ;
515
526
iframe_url : string ;
You can’t perform that action at this time.
0 commit comments