@bigcommerce/checkout-sdk 1.345.0 → 1.346.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 -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/StripeShippingEvent.md +8 -0
- package/package.json +1 -1
package/dist/checkout-sdk.d.ts
CHANGED
|
@@ -7192,6 +7192,7 @@ declare type StripeEventType = StripeShippingEvent | StripeCustomerEvent;
|
|
|
7192
7192
|
|
|
7193
7193
|
declare interface StripeShippingEvent extends StripeEvent {
|
|
7194
7194
|
isNewAddress?: boolean;
|
|
7195
|
+
phoneFieldRequired: boolean;
|
|
7195
7196
|
value: {
|
|
7196
7197
|
address: {
|
|
7197
7198
|
city: string;
|
|
@@ -7202,6 +7203,7 @@ declare interface StripeShippingEvent extends StripeEvent {
|
|
|
7202
7203
|
state: string;
|
|
7203
7204
|
};
|
|
7204
7205
|
name: string;
|
|
7206
|
+
phone: string;
|
|
7205
7207
|
};
|
|
7206
7208
|
}
|
|
7207
7209
|
|