From e58286a46ae71fde53a454649589dd36f49b6b18 Mon Sep 17 00:00:00 2001 From: Kara Armstrong Date: Fri, 2 Aug 2024 09:21:31 -0400 Subject: [PATCH] [INTER-4387] Update braintree fastlane version (#36) --- src/fastlane/initFastlane.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fastlane/initFastlane.ts b/src/fastlane/initFastlane.ts index 053b97a..75aef81 100644 --- a/src/fastlane/initFastlane.ts +++ b/src/fastlane/initFastlane.ts @@ -27,7 +27,7 @@ interface BraintreeTokenResponse extends TokenResponse { } export async function initFastlane(options?: IFastlaneOptions): Promise { - const {clientJsURL, dataCollectorJsURL, fastlaneJsURL} = getBraintreeJsUrls('3.101.0-fastlane-beta.7.2'); + const {clientJsURL, dataCollectorJsURL, fastlaneJsURL} = getBraintreeJsUrls('3.104.0'); const {alternative_payment_methods} = getOrderInitialData(); const payment = alternative_payment_methods .find(payment => payment.type === alternatePaymentMethodType.PPCP) as IExpressPayPaypalCommercePlatformButton | undefined;