From e5ba2ae31a3d705dc73eebeae75f7f2f51d9d835 Mon Sep 17 00:00:00 2001 From: joffrey Date: Thu, 11 Jan 2024 10:10:44 -0800 Subject: [PATCH] Update ApplePayPaymentAuthorizedEvent type to match actual object shape --- types/lib/apple-pay/native.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/lib/apple-pay/native.d.ts b/types/lib/apple-pay/native.d.ts index 979e129a2..86455df74 100644 --- a/types/lib/apple-pay/native.d.ts +++ b/types/lib/apple-pay/native.d.ts @@ -362,6 +362,7 @@ export type ApplePayPayment = { * The shipping contact selected by the user for this transaction. */ shippingContact: ApplePayPaymentContact; + recurlyToken: TokenPayload; }; /** @@ -374,5 +375,4 @@ export type ApplePayPaymentAuthorizedEvent = { payment: ApplePayPayment; gatewayToken?: string; - recurlyToken: TokenPayload; };