@bigcommerce/checkout-sdk 1.358.0 → 1.358.1
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 +10 -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/StripeShippingEvent.md +37 -2
- package/package.json +1 -1
package/dist/checkout-sdk.d.ts
CHANGED
|
@@ -7183,6 +7183,7 @@ declare interface StripeEvent {
|
|
|
7183
7183
|
declare type StripeEventType = StripeShippingEvent | StripeCustomerEvent;
|
|
7184
7184
|
|
|
7185
7185
|
declare interface StripeShippingEvent extends StripeEvent {
|
|
7186
|
+
mode?: string;
|
|
7186
7187
|
isNewAddress?: boolean;
|
|
7187
7188
|
phoneFieldRequired: boolean;
|
|
7188
7189
|
value: {
|
|
@@ -7194,9 +7195,17 @@ declare interface StripeShippingEvent extends StripeEvent {
|
|
|
7194
7195
|
postal_code: string;
|
|
7195
7196
|
state: string;
|
|
7196
7197
|
};
|
|
7197
|
-
name
|
|
7198
|
+
name?: string;
|
|
7199
|
+
firstName?: string;
|
|
7200
|
+
lastName?: string;
|
|
7201
|
+
phone?: string;
|
|
7202
|
+
};
|
|
7203
|
+
fields?: {
|
|
7198
7204
|
phone: string;
|
|
7199
7205
|
};
|
|
7206
|
+
display?: {
|
|
7207
|
+
name: string;
|
|
7208
|
+
};
|
|
7200
7209
|
}
|
|
7201
7210
|
|
|
7202
7211
|
declare interface StripeUPECustomerInitializeOptions {
|