Skip to content

Commit

Permalink
Release braintree-web 3.107.1 source
Browse files Browse the repository at this point in the history
Co-authored-by: corydavis <[email protected]>
  • Loading branch information
braintreeps and CJGlitter committed Sep 11, 2024
1 parent b5d4d09 commit 7fad75a
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## 3.107.1
- Hosted Fields
- Fix passing through a sessionId value

## 3.107.0

- Hosted Fields
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "braintree-web",
"version": "3.107.0",
"version": "3.107.1",
"license": "MIT",
"main": "src/index.js",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion src/client/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ Client.initialize = function (options) {
);
}

promise = getGatewayConfiguration(authData).then(function (configuration) {
promise = getGatewayConfiguration(authData, options.sessionId).then(function (configuration) {
if (options.debug) {
configuration.isDebug = true;
}
Expand Down
2 changes: 1 addition & 1 deletion src/hosted-fields/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,8 @@ var VERSION = process.env.npm_package_version;
* @param {fieldOptions} options.fields A {@link module:braintree-web/hosted-fields~fieldOptions set of options for each field}.
* @param {styleOptions} [options.styles] {@link module:braintree-web/hosted-fields~styleOptions Styles} applied to each field.
* @param {boolean} [options.preventAutofill=false] When true, browsers will not try to prompt the customer to autofill their credit card information.
* @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.
* @param {string} [options.sessionId] Used in specific cases where associating SDK events with a specific external id is required.
* @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.
* @returns {void}
* @example
* braintree.hostedFields.create({
Expand Down
3 changes: 3 additions & 0 deletions src/three-d-secure/external/three-d-secure.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,9 @@ var FRAMEWORKS = require("./frameworks");
* - `04` Add card
* - `05` Maintain card
* - `06` Cardholder verification as part of EMV token ID&V
* - `08` Split Shipment
* - `09` Delayed Shipment
* - `85` Payment with multiple merchants
* @property {string} [installment] An integer value greater than 1 indicating the maximum number of permitted authorizations for installment payments. (maximum length 3)
* @property {string} [purchaseDate] The 14-digit number (format: YYYYMMDDHHMMSS) indicating the date in UTC of original purchase.
* @property {string} [recurringEnd] The 8-digit number (format: YYYYMMDD) indicating the date after which no further recurring authorizations should be performed.
Expand Down

0 comments on commit 7fad75a

Please sign in to comment.