Skip to content

Commit 7fad75a

Browse files
Release braintree-web 3.107.1 source
Co-authored-by: corydavis <corydavis@paypal.com>
1 parent b5d4d09 commit 7fad75a

File tree

6 files changed

+11
-4
lines changed

6 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## 3.107.1
4+
- Hosted Fields
5+
- Fix passing through a sessionId value
6+
37
## 3.107.0
48

59
- Hosted Fields

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "braintree-web",
3-
"version": "3.107.0",
3+
"version": "3.107.1",
44
"license": "MIT",
55
"main": "src/index.js",
66
"private": true,

src/client/client.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ Client.initialize = function (options) {
117117
);
118118
}
119119

120-
promise = getGatewayConfiguration(authData).then(function (configuration) {
120+
promise = getGatewayConfiguration(authData, options.sessionId).then(function (configuration) {
121121
if (options.debug) {
122122
configuration.isDebug = true;
123123
}

src/hosted-fields/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,8 @@ var VERSION = process.env.npm_package_version;
131131
* @param {fieldOptions} options.fields A {@link module:braintree-web/hosted-fields~fieldOptions set of options for each field}.
132132
* @param {styleOptions} [options.styles] {@link module:braintree-web/hosted-fields~styleOptions Styles} applied to each field.
133133
* @param {boolean} [options.preventAutofill=false] When true, browsers will not try to prompt the customer to autofill their credit card information.
134-
* @param {callback} [callback] The second argument, `data`, is the {@link HostedFields} instance. If no callback is provided, `create` returns a promise that resolves with the {@link HostedFields} instance.
135134
* @param {string} [options.sessionId] Used in specific cases where associating SDK events with a specific external id is required.
135+
* @param {callback} [callback] The second argument, `data`, is the {@link HostedFields} instance. If no callback is provided, `create` returns a promise that resolves with the {@link HostedFields} instance.
136136
* @returns {void}
137137
* @example
138138
* braintree.hostedFields.create({

src/three-d-secure/external/three-d-secure.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,9 @@ var FRAMEWORKS = require("./frameworks");
234234
* - `04` Add card
235235
* - `05` Maintain card
236236
* - `06` Cardholder verification as part of EMV token ID&V
237+
* - `08` Split Shipment
238+
* - `09` Delayed Shipment
239+
* - `85` Payment with multiple merchants
237240
* @property {string} [installment] An integer value greater than 1 indicating the maximum number of permitted authorizations for installment payments. (maximum length 3)
238241
* @property {string} [purchaseDate] The 14-digit number (format: YYYYMMDDHHMMSS) indicating the date in UTC of original purchase.
239242
* @property {string} [recurringEnd] The 8-digit number (format: YYYYMMDD) indicating the date after which no further recurring authorizations should be performed.

0 commit comments

Comments
 (0)