@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/docs/README.md
CHANGED
|
@@ -97,6 +97,7 @@
|
|
|
97
97
|
* [BraintreeVerifyPayload](interfaces/braintreeverifypayload.md)
|
|
98
98
|
* [BraintreeVisaCheckoutCustomerInitializeOptions](interfaces/braintreevisacheckoutcustomerinitializeoptions.md)
|
|
99
99
|
* [BraintreeVisaCheckoutPaymentInitializeOptions](interfaces/braintreevisacheckoutpaymentinitializeoptions.md)
|
|
100
|
+
* [BrowserInfo](interfaces/browserinfo.md)
|
|
100
101
|
* [ButtonResponse](interfaces/buttonresponse.md)
|
|
101
102
|
* [ButtonStyles](interfaces/buttonstyles.md)
|
|
102
103
|
* [CardCvcElementOptions](interfaces/cardcvcelementoptions.md)
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
[@bigcommerce/checkout-sdk](../README.md) › [BrowserInfo](browserinfo.md)
|
|
2
|
+
|
|
3
|
+
# Interface: BrowserInfo
|
|
4
|
+
|
|
5
|
+
## Hierarchy
|
|
6
|
+
|
|
7
|
+
* **BrowserInfo**
|
|
8
|
+
|
|
9
|
+
## Index
|
|
10
|
+
|
|
11
|
+
### Properties
|
|
12
|
+
|
|
13
|
+
* [color_depth](browserinfo.md#color_depth)
|
|
14
|
+
* [java_enabled](browserinfo.md#java_enabled)
|
|
15
|
+
* [language](browserinfo.md#language)
|
|
16
|
+
* [screen_height](browserinfo.md#screen_height)
|
|
17
|
+
* [screen_width](browserinfo.md#screen_width)
|
|
18
|
+
* [time_zone_offset](browserinfo.md#time_zone_offset)
|
|
19
|
+
|
|
20
|
+
## Properties
|
|
21
|
+
|
|
22
|
+
### color_depth
|
|
23
|
+
|
|
24
|
+
• **color_depth**: *number*
|
|
25
|
+
|
|
26
|
+
___
|
|
27
|
+
|
|
28
|
+
### java_enabled
|
|
29
|
+
|
|
30
|
+
• **java_enabled**: *boolean*
|
|
31
|
+
|
|
32
|
+
___
|
|
33
|
+
|
|
34
|
+
### language
|
|
35
|
+
|
|
36
|
+
• **language**: *string*
|
|
37
|
+
|
|
38
|
+
___
|
|
39
|
+
|
|
40
|
+
### screen_height
|
|
41
|
+
|
|
42
|
+
• **screen_height**: *number*
|
|
43
|
+
|
|
44
|
+
___
|
|
45
|
+
|
|
46
|
+
### screen_width
|
|
47
|
+
|
|
48
|
+
• **screen_width**: *number*
|
|
49
|
+
|
|
50
|
+
___
|
|
51
|
+
|
|
52
|
+
### time_zone_offset
|
|
53
|
+
|
|
54
|
+
• **time_zone_offset**: *string*
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
|
|
11
11
|
### Properties
|
|
12
12
|
|
|
13
|
+
* [browser_info](creditcardinstrument.md#optional-browser_info)
|
|
13
14
|
* [ccCustomerCode](creditcardinstrument.md#optional-cccustomercode)
|
|
14
15
|
* [ccCvv](creditcardinstrument.md#optional-cccvv)
|
|
15
16
|
* [ccExpiry](creditcardinstrument.md#ccexpiry)
|
|
@@ -22,6 +23,12 @@
|
|
|
22
23
|
|
|
23
24
|
## Properties
|
|
24
25
|
|
|
26
|
+
### `Optional` browser_info
|
|
27
|
+
|
|
28
|
+
• **browser_info**? : *[BrowserInfo](browserinfo.md)*
|
|
29
|
+
|
|
30
|
+
___
|
|
31
|
+
|
|
25
32
|
### `Optional` ccCustomerCode
|
|
26
33
|
|
|
27
34
|
• **ccCustomerCode**? : *undefined | string*
|