@bigcommerce/checkout-sdk 1.441.4 → 1.443.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/checkout-button.js +1 -1
- package/dist/checkout-button.umd.js +1 -1
- package/dist/checkout-sdk.d.ts +16 -0
- package/dist/checkout-sdk.js +1 -1
- package/dist/checkout-sdk.js.map +1 -1
- package/dist/checkout-sdk.umd.js +1 -1
- package/dist/checkout-sdk.umd.js.map +1 -1
- package/docs/README.md +1 -0
- package/docs/interfaces/BraintreeAcceleratedCheckoutInitializeOptions.md +20 -0
- package/docs/interfaces/ShippingInitializeOptions.md +10 -0
- package/package.json +1 -1
package/docs/README.md
CHANGED
|
@@ -119,6 +119,7 @@
|
|
|
119
119
|
- [BoltCustomerInitializeOptions](interfaces/BoltCustomerInitializeOptions.md)
|
|
120
120
|
- [BoltPaymentInitializeOptions](interfaces/BoltPaymentInitializeOptions.md)
|
|
121
121
|
- [BraintreeAcceleratedCheckoutCustomer](interfaces/BraintreeAcceleratedCheckoutCustomer.md)
|
|
122
|
+
- [BraintreeAcceleratedCheckoutInitializeOptions](interfaces/BraintreeAcceleratedCheckoutInitializeOptions.md)
|
|
122
123
|
- [BraintreeAcceleratedCheckoutPaymentInitializeOptions](interfaces/BraintreeAcceleratedCheckoutPaymentInitializeOptions.md)
|
|
123
124
|
- [BraintreeError](interfaces/BraintreeError.md)
|
|
124
125
|
- [BraintreeFormFieldCardTypeChangeEventData](interfaces/BraintreeFormFieldCardTypeChangeEventData.md)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
[@bigcommerce/checkout-sdk](../README.md) / BraintreeAcceleratedCheckoutInitializeOptions
|
|
2
|
+
|
|
3
|
+
# Interface: BraintreeAcceleratedCheckoutInitializeOptions
|
|
4
|
+
|
|
5
|
+
A set of options that are required to initialize the shipping step of
|
|
6
|
+
checkout in order to support Braintree Accelerated Checkout.
|
|
7
|
+
|
|
8
|
+
## Table of contents
|
|
9
|
+
|
|
10
|
+
### Properties
|
|
11
|
+
|
|
12
|
+
- [methodId](BraintreeAcceleratedCheckoutInitializeOptions.md#methodid)
|
|
13
|
+
|
|
14
|
+
## Properties
|
|
15
|
+
|
|
16
|
+
### methodId
|
|
17
|
+
|
|
18
|
+
• **methodId**: `string`
|
|
19
|
+
|
|
20
|
+
The identifier of the payment method.
|
|
@@ -28,6 +28,7 @@ step of checkout.
|
|
|
28
28
|
### Properties
|
|
29
29
|
|
|
30
30
|
- [amazonpay](ShippingInitializeOptions.md#amazonpay)
|
|
31
|
+
- [braintreeacceleratedcheckout](ShippingInitializeOptions.md#braintreeacceleratedcheckout)
|
|
31
32
|
- [methodId](ShippingInitializeOptions.md#methodid)
|
|
32
33
|
- [params](ShippingInitializeOptions.md#params)
|
|
33
34
|
- [stripeupe](ShippingInitializeOptions.md#stripeupe)
|
|
@@ -44,6 +45,15 @@ when using AmazonPayV2.
|
|
|
44
45
|
|
|
45
46
|
___
|
|
46
47
|
|
|
48
|
+
### braintreeacceleratedcheckout
|
|
49
|
+
|
|
50
|
+
• `Optional` **braintreeacceleratedcheckout**: [`BraintreeAcceleratedCheckoutInitializeOptions`](BraintreeAcceleratedCheckoutInitializeOptions.md)
|
|
51
|
+
|
|
52
|
+
The options that are required to initialize the shipping step of checkout
|
|
53
|
+
when using Braintree Accelerated Checkout.
|
|
54
|
+
|
|
55
|
+
___
|
|
56
|
+
|
|
47
57
|
### methodId
|
|
48
58
|
|
|
49
59
|
• `Optional` **methodId**: `string`
|