@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.
- package/CHANGELOG.md +11 -0
- package/dist/checkout-button.js +1 -1
- package/dist/checkout-button.js.map +1 -1
- package/dist/checkout-button.umd.js +3 -3
- package/dist/checkout-button.umd.js.map +1 -1
- package/dist/checkout-sdk.d.ts +10 -0
- package/dist/checkout-sdk.js +1 -1
- package/dist/checkout-sdk.js.map +1 -1
- package/dist/checkout-sdk.umd.js +6 -6
- package/dist/checkout-sdk.umd.js.map +1 -1
- package/dist/embedded-checkout.js +1 -1
- package/dist/embedded-checkout.umd.js +3 -3
- package/dist/embedded-checkout.umd.js.map +1 -1
- package/dist/hosted-form.js +1 -1
- package/dist/hosted-form.umd.js +2 -2
- package/dist/hosted-form.umd.js.map +1 -1
- package/docs/README.md +1 -0
- package/docs/interfaces/browserinfo.md +54 -0
- package/docs/interfaces/creditcardinstrument.md +7 -0
- package/package.json +1 -1
package/dist/checkout-sdk.d.ts
CHANGED
|
@@ -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
|
/**
|