diff --git a/lib/const/gateway-constants.js b/lib/const/gateway-constants.js index ccd974d01..ed164263a 100644 --- a/lib/const/gateway-constants.js +++ b/lib/const/gateway-constants.js @@ -1 +1 @@ -export const BRAINTREE_CLIENT_VERSION = '3.96.0'; +export const BRAINTREE_CLIENT_VERSION = '3.96.1'; diff --git a/lib/recurly/venmo/strategy/braintree.js b/lib/recurly/venmo/strategy/braintree.js index f95fb5b67..6b5f9f021 100644 --- a/lib/recurly/venmo/strategy/braintree.js +++ b/lib/recurly/venmo/strategy/braintree.js @@ -69,7 +69,13 @@ export class BraintreeStrategy extends VenmoStrategy { if (error) return this.fail('venmo-braintree-api-error', { cause: error }); debug('Device data collector created'); this.deviceFingerprint = collector.deviceData; - braintree.venmo.create({ client, allowDesktop: true }, (error, venmo) => { + console.log('creating venmo client'); + braintree.venmo.create({ + client, + allowDesktop: true, + collectCustomerBillingAddress: true, + collectCustomerShippingAddress: true, + }, (error, venmo) => { if (error) return this.fail('venmo-braintree-api-error', { cause: error }); debug('Venmo client created'); this.venmo = venmo;