@bigcommerce/checkout-sdk 1.320.0 → 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 +14 -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
|
@@ -15,7 +15,7 @@ checkout to support Bolt.
|
|
|
15
15
|
|
|
16
16
|
### onInit
|
|
17
17
|
|
|
18
|
-
▸ `Optional` **onInit**(`hasBoltAccount`): `void`
|
|
18
|
+
▸ `Optional` **onInit**(`hasBoltAccount`, `email?`): `void`
|
|
19
19
|
|
|
20
20
|
A callback that gets called on initialize the strategy
|
|
21
21
|
|
|
@@ -24,6 +24,7 @@ A callback that gets called on initialize the strategy
|
|
|
24
24
|
| Name | Type | Description |
|
|
25
25
|
| :------ | :------ | :------ |
|
|
26
26
|
| `hasBoltAccount` | `boolean` | The hasBoltAccount variable handle the result of checking user account availability on Bolt. |
|
|
27
|
+
| `email?` | `string` | Email address which was used for checking user account availability on Bolt. |
|
|
27
28
|
|
|
28
29
|
#### Returns
|
|
29
30
|
|