@bigcommerce/checkout-sdk 1.213.1 → 1.214.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.
@@ -1095,6 +1095,15 @@ declare interface BraintreeVisaCheckoutPaymentInitializeOptions {
1095
1095
  onPaymentSelect?(): void;
1096
1096
  }
1097
1097
 
1098
+ declare interface BrowserInfo {
1099
+ color_depth: number;
1100
+ java_enabled: boolean;
1101
+ language: string;
1102
+ screen_height: number;
1103
+ screen_width: number;
1104
+ time_zone_offset: string;
1105
+ }
1106
+
1098
1107
  declare enum ButtonColor {
1099
1108
  Default = "default",
1100
1109
  Black = "black",
@@ -3412,6 +3421,7 @@ declare interface CreditCardInstrument {
3412
3421
  shouldSetAsDefaultInstrument?: boolean;
3413
3422
  extraData?: any;
3414
3423
  threeDSecure?: ThreeDSecure | ThreeDSecureToken;
3424
+ browser_info?: BrowserInfo;
3415
3425
  }
3416
3426
 
3417
3427
  /**