File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -108,6 +108,7 @@ export interface IAlternatePaymentMethodType {
108
108
BRAINTREE_GOOGLE : string ;
109
109
BRAINTREE_APPLE : string ;
110
110
PPCP_APPLE : string ;
111
+ PPCP_GOOGLE : string ;
111
112
PPCP : string ;
112
113
}
113
114
@@ -481,6 +482,7 @@ export interface IExpressPayPaypalCommercePlatform {
481
482
is_test : boolean ;
482
483
public_id : string ;
483
484
apple_pay_enabled : boolean ;
485
+ google_pay_enabled : boolean ;
484
486
partner_id : string ;
485
487
merchant_id : string ;
486
488
fastlane_styles : Record < string , unknown >
@@ -493,6 +495,7 @@ export interface IExpressPayPaypalCommercePlatformButton {
493
495
'is_3ds_enabled' : boolean ,
494
496
'style' : Record < string , unknown > ,
495
497
'apple_pay_enabled' : boolean ,
498
+ 'google_pay_enabled' : boolean ;
496
499
'type' : string ,
497
500
'merchant_country' : string ,
498
501
'payment_types' : Record < string , unknown > ,
Original file line number Diff line number Diff line change @@ -96,6 +96,7 @@ export const alternatePaymentMethodType: IAlternatePaymentMethodType = {
96
96
BRAINTREE_GOOGLE : 'braintree' ,
97
97
BRAINTREE_APPLE : 'braintree-apple' ,
98
98
PPCP_APPLE : 'paypal_commerce_platform-apple' ,
99
+ PPCP_GOOGLE : 'paypal_commerce_platform-google' ,
99
100
PPCP : 'paypal_commerce_platform' ,
100
101
} ;
101
102
You can’t perform that action at this time.
0 commit comments