@bigcommerce/checkout-sdk 1.284.0 → 1.284.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/CHANGELOG.md +7 -0
- package/dist/checkout-button.d.ts +3 -14
- package/dist/checkout-button.js +1 -1
- package/dist/checkout-button.js.map +1 -1
- package/dist/checkout-button.umd.js +1 -1
- package/dist/checkout-button.umd.js.map +1 -1
- package/dist/checkout-sdk.d.ts +3 -14
- 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 +0 -1
- package/docs/interfaces/BaseCheckoutButtonInitializeOptions.md +1 -1
- package/docs/interfaces/PaypalCommerceButtonInitializeOptions.md +4 -4
- package/package.json +1 -1
- package/docs/interfaces/PaypalCommerceV2ButtonInitializeOptions.md +0 -26
package/dist/checkout-sdk.d.ts
CHANGED
|
@@ -1053,7 +1053,7 @@ declare interface BaseCheckoutButtonInitializeOptions extends CheckoutButtonOpti
|
|
|
1053
1053
|
* The options that are required to facilitate PayPal Commerce V2. They can be omitted
|
|
1054
1054
|
* unless you need to support Paypal Commerce.
|
|
1055
1055
|
*/
|
|
1056
|
-
paypalcommerce?:
|
|
1056
|
+
paypalcommerce?: PaypalCommerceButtonInitializeOptions;
|
|
1057
1057
|
/**
|
|
1058
1058
|
* The options that are required to facilitate PayPal Commerce. They can be omitted
|
|
1059
1059
|
* unless you need to support PayPal Commerce Credit / PayLater.
|
|
@@ -6086,9 +6086,9 @@ declare interface PaypalCommerceButtonInitializeOptions {
|
|
|
6086
6086
|
*/
|
|
6087
6087
|
style?: PaypalButtonStyleOptions_2;
|
|
6088
6088
|
/**
|
|
6089
|
-
*
|
|
6089
|
+
* Flag which helps to detect that the strategy initializes on Checkout page
|
|
6090
6090
|
*/
|
|
6091
|
-
|
|
6091
|
+
initializesOnCheckoutPage?: boolean;
|
|
6092
6092
|
}
|
|
6093
6093
|
|
|
6094
6094
|
declare interface PaypalCommerceCreditButtonInitializeOptions {
|
|
@@ -6466,17 +6466,6 @@ declare interface PaypalCommerceStoredCardFieldsMap {
|
|
|
6466
6466
|
[PaypalCommerceFormFieldType.CardNumberVerification]?: PaypalCommerceStoredCardFieldOptions;
|
|
6467
6467
|
}
|
|
6468
6468
|
|
|
6469
|
-
declare interface PaypalCommerceV2ButtonInitializeOptions {
|
|
6470
|
-
/**
|
|
6471
|
-
* A set of styling options for the checkout button.
|
|
6472
|
-
*/
|
|
6473
|
-
style?: PaypalButtonStyleOptions_2;
|
|
6474
|
-
/**
|
|
6475
|
-
* Flag which helps to detect that the strategy initializes on Checkout page
|
|
6476
|
-
*/
|
|
6477
|
-
initializesOnCheckoutPage?: boolean;
|
|
6478
|
-
}
|
|
6479
|
-
|
|
6480
6469
|
declare interface PaypalCommerceVenmoButtonInitializeOptions {
|
|
6481
6470
|
/**
|
|
6482
6471
|
* A set of styling options for the checkout button.
|