@bigcommerce/checkout-sdk 1.358.0 → 1.359.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.
@@ -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: string;
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 {