@bigcommerce/checkout-sdk 1.322.0 → 1.323.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/CHANGELOG.md +22 -0
- package/dist/checkout-button.d.ts +6 -0
- 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 +6 -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/interfaces/GooglePayButtonInitializeOptions.md +15 -0
- package/package.json +1 -1
package/dist/checkout-sdk.d.ts
CHANGED
|
@@ -4964,6 +4964,12 @@ declare interface GooglePayButtonInitializeOptions {
|
|
|
4964
4964
|
* short: Google Pay payment button without the "Buy with" text.
|
|
4965
4965
|
*/
|
|
4966
4966
|
buttonType?: ButtonType;
|
|
4967
|
+
/**
|
|
4968
|
+
* The options that are required to initialize Buy Now functionality.
|
|
4969
|
+
*/
|
|
4970
|
+
buyNowInitializeOptions?: {
|
|
4971
|
+
getBuyNowCartRequestBody?(): BuyNowCartRequestBody | void;
|
|
4972
|
+
};
|
|
4967
4973
|
}
|
|
4968
4974
|
|
|
4969
4975
|
declare interface GooglePayCustomerInitializeOptions {
|