@bigcommerce/checkout-sdk 1.744.1 → 1.745.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 +13 -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/dist/hosted-form-v2-iframe-host.js +1 -1
- package/dist/hosted-form-v2-iframe-host.umd.js +1 -1
- package/docs/README.md +1 -0
- package/docs/interfaces/BasePaymentInitializeOptions.md +10 -0
- package/docs/interfaces/BraintreeVenmoInitializeOptions.md +18 -0
- package/package.json +1 -1
package/docs/README.md
CHANGED
|
@@ -160,6 +160,7 @@
|
|
|
160
160
|
- [BraintreeStoredCardFieldOptions](interfaces/BraintreeStoredCardFieldOptions.md)
|
|
161
161
|
- [BraintreeStoredCardFieldsMap](interfaces/BraintreeStoredCardFieldsMap.md)
|
|
162
162
|
- [BraintreeThreeDSecureOptions](interfaces/BraintreeThreeDSecureOptions.md)
|
|
163
|
+
- [BraintreeVenmoInitializeOptions](interfaces/BraintreeVenmoInitializeOptions.md)
|
|
163
164
|
- [BraintreeVerifyPayload](interfaces/BraintreeVerifyPayload.md)
|
|
164
165
|
- [BraintreeVisaCheckoutPaymentInitializeOptions](interfaces/BraintreeVisaCheckoutPaymentInitializeOptions.md)
|
|
165
166
|
- [BrowserInfo](interfaces/BrowserInfo.md)
|
|
@@ -17,6 +17,7 @@ current checkout flow.
|
|
|
17
17
|
|
|
18
18
|
- [bluesnapv2](BasePaymentInitializeOptions.md#bluesnapv2)
|
|
19
19
|
- [braintree](BasePaymentInitializeOptions.md#braintree)
|
|
20
|
+
- [braintreevenmo](BasePaymentInitializeOptions.md#braintreevenmo)
|
|
20
21
|
- [braintreevisacheckout](BasePaymentInitializeOptions.md#braintreevisacheckout)
|
|
21
22
|
- [creditCard](BasePaymentInitializeOptions.md#creditcard)
|
|
22
23
|
- [digitalriver](BasePaymentInitializeOptions.md#digitalriver)
|
|
@@ -47,6 +48,15 @@ They can be omitted unless you need to support Braintree.
|
|
|
47
48
|
|
|
48
49
|
___
|
|
49
50
|
|
|
51
|
+
### braintreevenmo
|
|
52
|
+
|
|
53
|
+
• `Optional` **braintreevenmo**: [`BraintreeVenmoInitializeOptions`](BraintreeVenmoInitializeOptions.md)
|
|
54
|
+
|
|
55
|
+
The options that are required to initialize the Braintree Venmo payment method.
|
|
56
|
+
They can be omitted unless you need to support Braintree Venmo.
|
|
57
|
+
|
|
58
|
+
___
|
|
59
|
+
|
|
50
60
|
### braintreevisacheckout
|
|
51
61
|
|
|
52
62
|
• `Optional` **braintreevisacheckout**: [`BraintreeVisaCheckoutPaymentInitializeOptions`](BraintreeVisaCheckoutPaymentInitializeOptions.md)
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[@bigcommerce/checkout-sdk](../README.md) / BraintreeVenmoInitializeOptions
|
|
2
|
+
|
|
3
|
+
# Interface: BraintreeVenmoInitializeOptions
|
|
4
|
+
|
|
5
|
+
## Table of contents
|
|
6
|
+
|
|
7
|
+
### Properties
|
|
8
|
+
|
|
9
|
+
- [allowDesktop](BraintreeVenmoInitializeOptions.md#allowdesktop)
|
|
10
|
+
|
|
11
|
+
## Properties
|
|
12
|
+
|
|
13
|
+
### allowDesktop
|
|
14
|
+
|
|
15
|
+
• `Optional` **allowDesktop**: `boolean`
|
|
16
|
+
|
|
17
|
+
An option that can provide different payment authorization methods, for more information use the following link: https://developer.paypal.com/braintree/docs/guides/venmo/client-side/javascript/v3/#desktop-qr-code
|
|
18
|
+
If no value is specified, it will be true
|