@bigcommerce/checkout-sdk 1.345.1 → 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.
@@ -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