@bigcommerce/checkout-sdk 1.320.1 → 1.321.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 +7 -0
- package/dist/checkout-button.js +1 -1
- package/dist/checkout-button.umd.js +1 -1
- package/dist/checkout-sdk.d.ts +2 -1
- 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/BoltCustomerInitializeOptions.md +2 -1
- package/package.json +1 -1
package/dist/checkout-sdk.d.ts
CHANGED
|
@@ -1498,8 +1498,9 @@ declare interface BoltCustomerInitializeOptions {
|
|
|
1498
1498
|
* A callback that gets called on initialize the strategy
|
|
1499
1499
|
*
|
|
1500
1500
|
* @param hasBoltAccount - The hasBoltAccount variable handle the result of checking user account availability on Bolt.
|
|
1501
|
+
* @param email - Email address which was used for checking user account availability on Bolt.
|
|
1501
1502
|
*/
|
|
1502
|
-
onInit?(hasBoltAccount: boolean): void;
|
|
1503
|
+
onInit?(hasBoltAccount: boolean, email?: string): void;
|
|
1503
1504
|
}
|
|
1504
1505
|
|
|
1505
1506
|
/**
|