@bigcommerce/checkout-sdk 1.588.0 → 1.589.1

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/docs/README.md CHANGED
@@ -113,12 +113,12 @@
113
113
  - [BoltBuyNowInitializeOptions](interfaces/BoltBuyNowInitializeOptions.md)
114
114
  - [BoltCustomerInitializeOptions](interfaces/BoltCustomerInitializeOptions.md)
115
115
  - [BoltPaymentInitializeOptions](interfaces/BoltPaymentInitializeOptions.md)
116
- - [BraintreeAcceleratedCheckoutShippingInitializeOptions](interfaces/BraintreeAcceleratedCheckoutShippingInitializeOptions.md)
117
116
  - [BraintreeAchInitializeOptions](interfaces/BraintreeAchInitializeOptions.md)
118
117
  - [BraintreeAnalyticTrackerService](interfaces/BraintreeAnalyticTrackerService.md)
119
118
  - [BraintreeError](interfaces/BraintreeError.md)
120
119
  - [BraintreeFastlaneCustomerInitializeOptions](interfaces/BraintreeFastlaneCustomerInitializeOptions.md)
121
120
  - [BraintreeFastlanePaymentInitializeOptions](interfaces/BraintreeFastlanePaymentInitializeOptions.md)
121
+ - [BraintreeFastlaneShippingInitializeOptions](interfaces/BraintreeFastlaneShippingInitializeOptions.md)
122
122
  - [BraintreeFormFieldCardTypeChangeEventData](interfaces/BraintreeFormFieldCardTypeChangeEventData.md)
123
123
  - [BraintreeFormFieldKeyboardEventData](interfaces/BraintreeFormFieldKeyboardEventData.md)
124
124
  - [BraintreeFormFieldOptions](interfaces/BraintreeFormFieldOptions.md)
@@ -351,6 +351,7 @@
351
351
  - [PayPalCommerceCustomerInitializeOptions](interfaces/PayPalCommerceCustomerInitializeOptions.md)
352
352
  - [PayPalCommerceFastlaneCustomerInitializeOptions](interfaces/PayPalCommerceFastlaneCustomerInitializeOptions.md)
353
353
  - [PayPalCommerceFastlanePaymentInitializeOptions](interfaces/PayPalCommerceFastlanePaymentInitializeOptions.md)
354
+ - [PayPalCommerceFastlaneShippingInitializeOptions](interfaces/PayPalCommerceFastlaneShippingInitializeOptions.md)
354
355
  - [PayPalCommerceFieldsStyleOptions](interfaces/PayPalCommerceFieldsStyleOptions.md)
355
356
  - [PayPalCommercePaymentInitializeOptions](interfaces/PayPalCommercePaymentInitializeOptions.md)
356
357
  - [PayPalCommerceVenmoButtonInitializeOptions](interfaces/PayPalCommerceVenmoButtonInitializeOptions.md)
@@ -0,0 +1,24 @@
1
+ [@bigcommerce/checkout-sdk](../README.md) / BraintreeFastlaneShippingInitializeOptions
2
+
3
+ # Interface: BraintreeFastlaneShippingInitializeOptions
4
+
5
+ A set of options that are required to initialize the shipping step of
6
+ checkout in order to support Braintree Fastlane.
7
+
8
+ ## Table of contents
9
+
10
+ ### Properties
11
+
12
+ - [styles](BraintreeFastlaneShippingInitializeOptions.md#styles)
13
+
14
+ ## Properties
15
+
16
+ ### styles
17
+
18
+ • `Optional` **styles**: `BraintreeConnectStylesOption`
19
+
20
+ Is a stylisation options for customizing PayPal Fastlane components
21
+
22
+ Note: the styles for all Braintree Fastlane strategies should be the same,
23
+ because they will be provided to PayPal library only for the first strategy initialization
24
+ no matter what strategy was initialised first
@@ -0,0 +1,24 @@
1
+ [@bigcommerce/checkout-sdk](../README.md) / PayPalCommerceFastlaneShippingInitializeOptions
2
+
3
+ # Interface: PayPalCommerceFastlaneShippingInitializeOptions
4
+
5
+ A set of options that are required to initialize the shipping step of
6
+ checkout in order to support PayPal Commerce Fastlane.
7
+
8
+ ## Table of contents
9
+
10
+ ### Properties
11
+
12
+ - [styles](PayPalCommerceFastlaneShippingInitializeOptions.md#styles)
13
+
14
+ ## Properties
15
+
16
+ ### styles
17
+
18
+ • `Optional` **styles**: `PayPalFastlaneStylesOption`
19
+
20
+ Is a stylisation options for customizing PayPal Fastlane components
21
+
22
+ Note: the styles for all PayPal Commerce Fastlane strategies should be the same,
23
+ because they will be provided to PayPal library only for the first strategy initialization
24
+ no matter what strategy was initialised first
@@ -28,9 +28,10 @@ step of checkout.
28
28
  ### Properties
29
29
 
30
30
  - [amazonpay](ShippingInitializeOptions.md#amazonpay)
31
- - [braintreeacceleratedcheckout](ShippingInitializeOptions.md#braintreeacceleratedcheckout)
31
+ - [braintreefastlane](ShippingInitializeOptions.md#braintreefastlane)
32
32
  - [methodId](ShippingInitializeOptions.md#methodid)
33
33
  - [params](ShippingInitializeOptions.md#params)
34
+ - [paypalcommercefastlane](ShippingInitializeOptions.md#paypalcommercefastlane)
34
35
  - [stripeupe](ShippingInitializeOptions.md#stripeupe)
35
36
  - [timeout](ShippingInitializeOptions.md#timeout)
36
37
 
@@ -45,12 +46,12 @@ when using AmazonPayV2.
45
46
 
46
47
  ___
47
48
 
48
- ### braintreeacceleratedcheckout
49
+ ### braintreefastlane
49
50
 
50
- • `Optional` **braintreeacceleratedcheckout**: [`BraintreeAcceleratedCheckoutShippingInitializeOptions`](BraintreeAcceleratedCheckoutShippingInitializeOptions.md)
51
+ • `Optional` **braintreefastlane**: [`BraintreeFastlaneShippingInitializeOptions`](BraintreeFastlaneShippingInitializeOptions.md)
51
52
 
52
53
  The options that are required to initialize the shipping step of checkout
53
- when using Braintree Accelerated Checkout.
54
+ when using Braintree Fastlane.
54
55
 
55
56
  ___
56
57
 
@@ -76,6 +77,15 @@ The parameters of the request, if required.
76
77
 
77
78
  ___
78
79
 
80
+ ### paypalcommercefastlane
81
+
82
+ • `Optional` **paypalcommercefastlane**: [`PayPalCommerceFastlaneShippingInitializeOptions`](PayPalCommerceFastlaneShippingInitializeOptions.md)
83
+
84
+ The options that are required to initialize the shipping step of checkout
85
+ when using PayPal Commerce Fastlane.
86
+
87
+ ___
88
+
79
89
  ### stripeupe
80
90
 
81
91
  • `Optional` **stripeupe**: [`StripeUPEShippingInitializeOptions`](StripeUPEShippingInitializeOptions.md)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigcommerce/checkout-sdk",
3
- "version": "1.588.0",
3
+ "version": "1.589.1",
4
4
  "description": "BigCommerce Checkout JavaScript SDK",
5
5
  "license": "MIT",
6
6
  "main": "dist/checkout-sdk.js",
@@ -1,33 +0,0 @@
1
- [@bigcommerce/checkout-sdk](../README.md) / BraintreeAcceleratedCheckoutShippingInitializeOptions
2
-
3
- # Interface: BraintreeAcceleratedCheckoutShippingInitializeOptions
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](BraintreeAcceleratedCheckoutShippingInitializeOptions.md#methodid)
13
- - [styles](BraintreeAcceleratedCheckoutShippingInitializeOptions.md#styles)
14
-
15
- ## Properties
16
-
17
- ### methodId
18
-
19
- • **methodId**: `string`
20
-
21
- The identifier of the payment method.
22
-
23
- ___
24
-
25
- ### styles
26
-
27
- • `Optional` **styles**: `BraintreeConnectStylesOption`
28
-
29
- Is a stylisation options for customizing PayPal Connect components
30
-
31
- Note: the styles for all Braintree Accelerated Checkout strategies should be the same,
32
- because they will be provided to PayPal library only for the first strategy initialization
33
- no matter what strategy was initialised first