@bigcommerce/checkout-sdk 1.360.0 → 1.361.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.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 +7 -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/CheckoutStoreStatusSelector.md +21 -0
- package/package.json +1 -1
|
@@ -26,6 +26,7 @@ order and waiting for the request to complete.
|
|
|
26
26
|
- [isExecutingPaymentMethodCheckout](CheckoutStoreStatusSelector.md#isexecutingpaymentmethodcheckout)
|
|
27
27
|
- [isExecutingSpamCheck](CheckoutStoreStatusSelector.md#isexecutingspamcheck)
|
|
28
28
|
- [isFinalizingOrder](CheckoutStoreStatusSelector.md#isfinalizingorder)
|
|
29
|
+
- [isInitializedCustomer](CheckoutStoreStatusSelector.md#isinitializedcustomer)
|
|
29
30
|
- [isInitializingCustomer](CheckoutStoreStatusSelector.md#isinitializingcustomer)
|
|
30
31
|
- [isInitializingPayment](CheckoutStoreStatusSelector.md#isinitializingpayment)
|
|
31
32
|
- [isInitializingShipping](CheckoutStoreStatusSelector.md#isinitializingshipping)
|
|
@@ -271,6 +272,26 @@ True if the current order is finalizing, otherwise false.
|
|
|
271
272
|
|
|
272
273
|
___
|
|
273
274
|
|
|
275
|
+
### isInitializedCustomer
|
|
276
|
+
|
|
277
|
+
▸ **isInitializedCustomer**(`methodId?`): `boolean`
|
|
278
|
+
|
|
279
|
+
Checks whether a wallet button is initialized.
|
|
280
|
+
|
|
281
|
+
#### Parameters
|
|
282
|
+
|
|
283
|
+
| Name | Type | Description |
|
|
284
|
+
| :------ | :------ | :------ |
|
|
285
|
+
| `methodId?` | `string` | The identifier of the payment method to check. |
|
|
286
|
+
|
|
287
|
+
#### Returns
|
|
288
|
+
|
|
289
|
+
`boolean`
|
|
290
|
+
|
|
291
|
+
True if the wallet button method is initialized, otherwise false.
|
|
292
|
+
|
|
293
|
+
___
|
|
294
|
+
|
|
274
295
|
### isInitializingCustomer
|
|
275
296
|
|
|
276
297
|
▸ **isInitializingCustomer**(`methodId?`): `boolean`
|