@bigcommerce/checkout-sdk 1.274.0 → 1.275.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/docs/README.md CHANGED
@@ -8,6 +8,7 @@
8
8
 
9
9
  - [AdyenV2CardFields](enums/AdyenV2CardFields.md)
10
10
  - [AdyenV3CardFields](enums/AdyenV3CardFields.md)
11
+ - [AmazonPayV2ButtonColor](enums/AmazonPayV2ButtonColor.md)
11
12
  - [AmazonPayV2CheckoutLanguage](enums/AmazonPayV2CheckoutLanguage.md)
12
13
  - [AmazonPayV2LedgerCurrency](enums/AmazonPayV2LedgerCurrency.md)
13
14
  - [AmazonPayV2PayOptions](enums/AmazonPayV2PayOptions.md)
@@ -76,9 +77,12 @@
76
77
  - [AmazonPayOrderReference](interfaces/AmazonPayOrderReference.md)
77
78
  - [AmazonPayPaymentInitializeOptions](interfaces/AmazonPayPaymentInitializeOptions.md)
78
79
  - [AmazonPayShippingInitializeOptions](interfaces/AmazonPayShippingInitializeOptions.md)
80
+ - [AmazonPayV2ButtonConfig](interfaces/AmazonPayV2ButtonConfig.md)
79
81
  - [AmazonPayV2ButtonParams](interfaces/AmazonPayV2ButtonParams.md)
80
82
  - [AmazonPayV2CheckoutSession](interfaces/AmazonPayV2CheckoutSession.md)
83
+ - [AmazonPayV2CheckoutSessionConfig](interfaces/AmazonPayV2CheckoutSessionConfig.md)
81
84
  - [AmazonPayV2CustomerInitializeOptions](interfaces/AmazonPayV2CustomerInitializeOptions.md)
85
+ - [AmazonPayV2NewButtonParams](interfaces/AmazonPayV2NewButtonParams.md)
82
86
  - [AmazonPayV2PaymentInitializeOptions](interfaces/AmazonPayV2PaymentInitializeOptions.md)
83
87
  - [AmazonPayV2ShippingInitializeOptions](interfaces/AmazonPayV2ShippingInitializeOptions.md)
84
88
  - [AmazonPayWidgetError](interfaces/AmazonPayWidgetError.md)
@@ -364,6 +368,7 @@
364
368
  - [AdyenComponentState](README.md#adyencomponentstate)
365
369
  - [AdyenV3ComponentState](README.md#adyenv3componentstate)
366
370
  - [AmazonPayV2ButtonInitializeOptions](README.md#amazonpayv2buttoninitializeoptions)
371
+ - [AmazonPayV2ButtonParameters](README.md#amazonpayv2buttonparameters)
367
372
  - [AnalyticStepType](README.md#analyticsteptype)
368
373
  - [BraintreeFormFieldBlurEventData](README.md#braintreeformfieldblureventdata)
369
374
  - [BraintreeFormFieldEnterEventData](README.md#braintreeformfieldentereventdata)
@@ -441,12 +446,18 @@ ___
441
446
 
442
447
  ### AmazonPayV2ButtonInitializeOptions
443
448
 
444
- Ƭ **AmazonPayV2ButtonInitializeOptions**: [`AmazonPayV2ButtonParams`](interfaces/AmazonPayV2ButtonParams.md)
449
+ Ƭ **AmazonPayV2ButtonInitializeOptions**: [`AmazonPayV2ButtonParameters`](README.md#amazonpayv2buttonparameters)
445
450
 
446
451
  The required config to render the AmazonPayV2 buttton.
447
452
 
448
453
  ___
449
454
 
455
+ ### AmazonPayV2ButtonParameters
456
+
457
+ Ƭ **AmazonPayV2ButtonParameters**: [`AmazonPayV2ButtonParams`](interfaces/AmazonPayV2ButtonParams.md) \| [`AmazonPayV2NewButtonParams`](interfaces/AmazonPayV2NewButtonParams.md)
458
+
459
+ ___
460
+
450
461
  ### AnalyticStepType
451
462
 
452
463
  Ƭ **AnalyticStepType**: ``"customer"`` \| ``"shipping"`` \| ``"billing"`` \| ``"payment"``
@@ -0,0 +1,29 @@
1
+ [@bigcommerce/checkout-sdk](../README.md) / AmazonPayV2ButtonColor
2
+
3
+ # Enumeration: AmazonPayV2ButtonColor
4
+
5
+ ## Table of contents
6
+
7
+ ### Enumeration members
8
+
9
+ - [DarkGray](AmazonPayV2ButtonColor.md#darkgray)
10
+ - [Gold](AmazonPayV2ButtonColor.md#gold)
11
+ - [LightGray](AmazonPayV2ButtonColor.md#lightgray)
12
+
13
+ ## Enumeration members
14
+
15
+ ### DarkGray
16
+
17
+ • **DarkGray** = `"DarkGray"`
18
+
19
+ ___
20
+
21
+ ### Gold
22
+
23
+ • **Gold** = `"Gold"`
24
+
25
+ ___
26
+
27
+ ### LightGray
28
+
29
+ • **LightGray** = `"LightGray"`
@@ -0,0 +1,80 @@
1
+ [@bigcommerce/checkout-sdk](../README.md) / AmazonPayV2ButtonConfig
2
+
3
+ # Interface: AmazonPayV2ButtonConfig
4
+
5
+ ## Hierarchy
6
+
7
+ - **`AmazonPayV2ButtonConfig`**
8
+
9
+ ↳ [`AmazonPayV2ButtonParams`](AmazonPayV2ButtonParams.md)
10
+
11
+ ↳ [`AmazonPayV2NewButtonParams`](AmazonPayV2NewButtonParams.md)
12
+
13
+ ## Table of contents
14
+
15
+ ### Properties
16
+
17
+ - [buttonColor](AmazonPayV2ButtonConfig.md#buttoncolor)
18
+ - [checkoutLanguage](AmazonPayV2ButtonConfig.md#checkoutlanguage)
19
+ - [ledgerCurrency](AmazonPayV2ButtonConfig.md#ledgercurrency)
20
+ - [merchantId](AmazonPayV2ButtonConfig.md#merchantid)
21
+ - [placement](AmazonPayV2ButtonConfig.md#placement)
22
+ - [productType](AmazonPayV2ButtonConfig.md#producttype)
23
+ - [sandbox](AmazonPayV2ButtonConfig.md#sandbox)
24
+
25
+ ## Properties
26
+
27
+ ### buttonColor
28
+
29
+ • `Optional` **buttonColor**: [`Gold`](../enums/AmazonPayV2ButtonColor.md#gold) \| [`LightGray`](../enums/AmazonPayV2ButtonColor.md#lightgray) \| [`DarkGray`](../enums/AmazonPayV2ButtonColor.md#darkgray)
30
+
31
+ Color of the Amazon Pay button.
32
+
33
+ ___
34
+
35
+ ### checkoutLanguage
36
+
37
+ • `Optional` **checkoutLanguage**: [`en_US`](../enums/AmazonPayV2CheckoutLanguage.md#en_us) \| [`en_GB`](../enums/AmazonPayV2CheckoutLanguage.md#en_gb) \| [`de_DE`](../enums/AmazonPayV2CheckoutLanguage.md#de_de) \| [`fr_FR`](../enums/AmazonPayV2CheckoutLanguage.md#fr_fr) \| [`it_IT`](../enums/AmazonPayV2CheckoutLanguage.md#it_it) \| [`es_ES`](../enums/AmazonPayV2CheckoutLanguage.md#es_es) \| [`ja_JP`](../enums/AmazonPayV2CheckoutLanguage.md#ja_jp)
38
+
39
+ Language used to render the button and text on Amazon Pay hosted pages.
40
+
41
+ ___
42
+
43
+ ### ledgerCurrency
44
+
45
+ • **ledgerCurrency**: [`AmazonPayV2LedgerCurrency`](../enums/AmazonPayV2LedgerCurrency.md)
46
+
47
+ Ledger currency provided during registration for the given merchant identifier.
48
+
49
+ ___
50
+
51
+ ### merchantId
52
+
53
+ • **merchantId**: `string`
54
+
55
+ Amazon Pay merchant account identifier.
56
+
57
+ ___
58
+
59
+ ### placement
60
+
61
+ • **placement**: [`AmazonPayV2Placement`](../enums/AmazonPayV2Placement.md)
62
+
63
+ Placement of the Amazon Pay button on your website.
64
+
65
+ ___
66
+
67
+ ### productType
68
+
69
+ • `Optional` **productType**: [`PayAndShip`](../enums/AmazonPayV2PayOptions.md#payandship) \| [`PayOnly`](../enums/AmazonPayV2PayOptions.md#payonly)
70
+
71
+ Product type selected for checkout. Default is 'PayAndShip'.
72
+
73
+ ___
74
+
75
+ ### sandbox
76
+
77
+ • `Optional` **sandbox**: `boolean`
78
+
79
+ Sets button to Sandbox environment. You do not have to set this parameter
80
+ if your `publicKeyId` has an environment prefix. Default is false.
@@ -2,10 +2,17 @@
2
2
 
3
3
  # Interface: AmazonPayV2ButtonParams
4
4
 
5
+ ## Hierarchy
6
+
7
+ - [`AmazonPayV2ButtonConfig`](AmazonPayV2ButtonConfig.md)
8
+
9
+ ↳ **`AmazonPayV2ButtonParams`**
10
+
5
11
  ## Table of contents
6
12
 
7
13
  ### Properties
8
14
 
15
+ - [buttonColor](AmazonPayV2ButtonParams.md#buttoncolor)
9
16
  - [checkoutLanguage](AmazonPayV2ButtonParams.md#checkoutlanguage)
10
17
  - [createCheckoutSession](AmazonPayV2ButtonParams.md#createcheckoutsession)
11
18
  - [ledgerCurrency](AmazonPayV2ButtonParams.md#ledgercurrency)
@@ -16,12 +23,28 @@
16
23
 
17
24
  ## Properties
18
25
 
26
+ ### buttonColor
27
+
28
+ • `Optional` **buttonColor**: [`Gold`](../enums/AmazonPayV2ButtonColor.md#gold) \| [`LightGray`](../enums/AmazonPayV2ButtonColor.md#lightgray) \| [`DarkGray`](../enums/AmazonPayV2ButtonColor.md#darkgray)
29
+
30
+ Color of the Amazon Pay button.
31
+
32
+ #### Inherited from
33
+
34
+ [AmazonPayV2ButtonConfig](AmazonPayV2ButtonConfig.md).[buttonColor](AmazonPayV2ButtonConfig.md#buttoncolor)
35
+
36
+ ___
37
+
19
38
  ### checkoutLanguage
20
39
 
21
40
  • `Optional` **checkoutLanguage**: [`en_US`](../enums/AmazonPayV2CheckoutLanguage.md#en_us) \| [`en_GB`](../enums/AmazonPayV2CheckoutLanguage.md#en_gb) \| [`de_DE`](../enums/AmazonPayV2CheckoutLanguage.md#de_de) \| [`fr_FR`](../enums/AmazonPayV2CheckoutLanguage.md#fr_fr) \| [`it_IT`](../enums/AmazonPayV2CheckoutLanguage.md#it_it) \| [`es_ES`](../enums/AmazonPayV2CheckoutLanguage.md#es_es) \| [`ja_JP`](../enums/AmazonPayV2CheckoutLanguage.md#ja_jp)
22
41
 
23
42
  Language used to render the button and text on Amazon Pay hosted pages.
24
43
 
44
+ #### Inherited from
45
+
46
+ [AmazonPayV2ButtonConfig](AmazonPayV2ButtonConfig.md).[checkoutLanguage](AmazonPayV2ButtonConfig.md#checkoutlanguage)
47
+
25
48
  ___
26
49
 
27
50
  ### createCheckoutSession
@@ -38,6 +61,10 @@ ___
38
61
 
39
62
  Ledger currency provided during registration for the given merchant identifier.
40
63
 
64
+ #### Inherited from
65
+
66
+ [AmazonPayV2ButtonConfig](AmazonPayV2ButtonConfig.md).[ledgerCurrency](AmazonPayV2ButtonConfig.md#ledgercurrency)
67
+
41
68
  ___
42
69
 
43
70
  ### merchantId
@@ -46,6 +73,10 @@ ___
46
73
 
47
74
  Amazon Pay merchant account identifier.
48
75
 
76
+ #### Inherited from
77
+
78
+ [AmazonPayV2ButtonConfig](AmazonPayV2ButtonConfig.md).[merchantId](AmazonPayV2ButtonConfig.md#merchantid)
79
+
49
80
  ___
50
81
 
51
82
  ### placement
@@ -54,6 +85,10 @@ ___
54
85
 
55
86
  Placement of the Amazon Pay button on your website.
56
87
 
88
+ #### Inherited from
89
+
90
+ [AmazonPayV2ButtonConfig](AmazonPayV2ButtonConfig.md).[placement](AmazonPayV2ButtonConfig.md#placement)
91
+
57
92
  ___
58
93
 
59
94
  ### productType
@@ -62,10 +97,19 @@ ___
62
97
 
63
98
  Product type selected for checkout. Default is 'PayAndShip'.
64
99
 
100
+ #### Inherited from
101
+
102
+ [AmazonPayV2ButtonConfig](AmazonPayV2ButtonConfig.md).[productType](AmazonPayV2ButtonConfig.md#producttype)
103
+
65
104
  ___
66
105
 
67
106
  ### sandbox
68
107
 
69
108
  • `Optional` **sandbox**: `boolean`
70
109
 
71
- Sets button to Sandbox environment. Default is false.
110
+ Sets button to Sandbox environment. You do not have to set this parameter
111
+ if your `publicKeyId` has an environment prefix. Default is false.
112
+
113
+ #### Inherited from
114
+
115
+ [AmazonPayV2ButtonConfig](AmazonPayV2ButtonConfig.md).[sandbox](AmazonPayV2ButtonConfig.md#sandbox)
@@ -0,0 +1,36 @@
1
+ [@bigcommerce/checkout-sdk](../README.md) / AmazonPayV2CheckoutSessionConfig
2
+
3
+ # Interface: AmazonPayV2CheckoutSessionConfig
4
+
5
+ ## Table of contents
6
+
7
+ ### Properties
8
+
9
+ - [payloadJSON](AmazonPayV2CheckoutSessionConfig.md#payloadjson)
10
+ - [publicKeyId](AmazonPayV2CheckoutSessionConfig.md#publickeyid)
11
+ - [signature](AmazonPayV2CheckoutSessionConfig.md#signature)
12
+
13
+ ## Properties
14
+
15
+ ### payloadJSON
16
+
17
+ • **payloadJSON**: `string`
18
+
19
+ A payload that Amazon Pay will use to create a Checkout Session object.
20
+
21
+ ___
22
+
23
+ ### publicKeyId
24
+
25
+ • `Optional` **publicKeyId**: `string`
26
+
27
+ Credential provided by Amazon Pay. You do not have to set this parameter
28
+ if your `publicKeyId` has an environment prefix.
29
+
30
+ ___
31
+
32
+ ### signature
33
+
34
+ • **signature**: `string`
35
+
36
+ Payload's signature.
@@ -0,0 +1,125 @@
1
+ [@bigcommerce/checkout-sdk](../README.md) / AmazonPayV2NewButtonParams
2
+
3
+ # Interface: AmazonPayV2NewButtonParams
4
+
5
+ ## Hierarchy
6
+
7
+ - [`AmazonPayV2ButtonConfig`](AmazonPayV2ButtonConfig.md)
8
+
9
+ ↳ **`AmazonPayV2NewButtonParams`**
10
+
11
+ ## Table of contents
12
+
13
+ ### Properties
14
+
15
+ - [buttonColor](AmazonPayV2NewButtonParams.md#buttoncolor)
16
+ - [checkoutLanguage](AmazonPayV2NewButtonParams.md#checkoutlanguage)
17
+ - [createCheckoutSessionConfig](AmazonPayV2NewButtonParams.md#createcheckoutsessionconfig)
18
+ - [ledgerCurrency](AmazonPayV2NewButtonParams.md#ledgercurrency)
19
+ - [merchantId](AmazonPayV2NewButtonParams.md#merchantid)
20
+ - [placement](AmazonPayV2NewButtonParams.md#placement)
21
+ - [productType](AmazonPayV2NewButtonParams.md#producttype)
22
+ - [publicKeyId](AmazonPayV2NewButtonParams.md#publickeyid)
23
+ - [sandbox](AmazonPayV2NewButtonParams.md#sandbox)
24
+
25
+ ## Properties
26
+
27
+ ### buttonColor
28
+
29
+ • `Optional` **buttonColor**: [`Gold`](../enums/AmazonPayV2ButtonColor.md#gold) \| [`LightGray`](../enums/AmazonPayV2ButtonColor.md#lightgray) \| [`DarkGray`](../enums/AmazonPayV2ButtonColor.md#darkgray)
30
+
31
+ Color of the Amazon Pay button.
32
+
33
+ #### Inherited from
34
+
35
+ [AmazonPayV2ButtonConfig](AmazonPayV2ButtonConfig.md).[buttonColor](AmazonPayV2ButtonConfig.md#buttoncolor)
36
+
37
+ ___
38
+
39
+ ### checkoutLanguage
40
+
41
+ • `Optional` **checkoutLanguage**: [`en_US`](../enums/AmazonPayV2CheckoutLanguage.md#en_us) \| [`en_GB`](../enums/AmazonPayV2CheckoutLanguage.md#en_gb) \| [`de_DE`](../enums/AmazonPayV2CheckoutLanguage.md#de_de) \| [`fr_FR`](../enums/AmazonPayV2CheckoutLanguage.md#fr_fr) \| [`it_IT`](../enums/AmazonPayV2CheckoutLanguage.md#it_it) \| [`es_ES`](../enums/AmazonPayV2CheckoutLanguage.md#es_es) \| [`ja_JP`](../enums/AmazonPayV2CheckoutLanguage.md#ja_jp)
42
+
43
+ Language used to render the button and text on Amazon Pay hosted pages.
44
+
45
+ #### Inherited from
46
+
47
+ [AmazonPayV2ButtonConfig](AmazonPayV2ButtonConfig.md).[checkoutLanguage](AmazonPayV2ButtonConfig.md#checkoutlanguage)
48
+
49
+ ___
50
+
51
+ ### createCheckoutSessionConfig
52
+
53
+ • **createCheckoutSessionConfig**: [`AmazonPayV2CheckoutSessionConfig`](AmazonPayV2CheckoutSessionConfig.md)
54
+
55
+ Create Checkout Session configuration.
56
+
57
+ ___
58
+
59
+ ### ledgerCurrency
60
+
61
+ • **ledgerCurrency**: [`AmazonPayV2LedgerCurrency`](../enums/AmazonPayV2LedgerCurrency.md)
62
+
63
+ Ledger currency provided during registration for the given merchant identifier.
64
+
65
+ #### Inherited from
66
+
67
+ [AmazonPayV2ButtonConfig](AmazonPayV2ButtonConfig.md).[ledgerCurrency](AmazonPayV2ButtonConfig.md#ledgercurrency)
68
+
69
+ ___
70
+
71
+ ### merchantId
72
+
73
+ • **merchantId**: `string`
74
+
75
+ Amazon Pay merchant account identifier.
76
+
77
+ #### Inherited from
78
+
79
+ [AmazonPayV2ButtonConfig](AmazonPayV2ButtonConfig.md).[merchantId](AmazonPayV2ButtonConfig.md#merchantid)
80
+
81
+ ___
82
+
83
+ ### placement
84
+
85
+ • **placement**: [`AmazonPayV2Placement`](../enums/AmazonPayV2Placement.md)
86
+
87
+ Placement of the Amazon Pay button on your website.
88
+
89
+ #### Inherited from
90
+
91
+ [AmazonPayV2ButtonConfig](AmazonPayV2ButtonConfig.md).[placement](AmazonPayV2ButtonConfig.md#placement)
92
+
93
+ ___
94
+
95
+ ### productType
96
+
97
+ • `Optional` **productType**: [`PayAndShip`](../enums/AmazonPayV2PayOptions.md#payandship) \| [`PayOnly`](../enums/AmazonPayV2PayOptions.md#payonly)
98
+
99
+ Product type selected for checkout. Default is 'PayAndShip'.
100
+
101
+ #### Inherited from
102
+
103
+ [AmazonPayV2ButtonConfig](AmazonPayV2ButtonConfig.md).[productType](AmazonPayV2ButtonConfig.md#producttype)
104
+
105
+ ___
106
+
107
+ ### publicKeyId
108
+
109
+ • `Optional` **publicKeyId**: `string`
110
+
111
+ Credential provided by Amazon Pay. You must also set the `sandbox`
112
+ parameter if your `publicKeyId` does not have an environment prefix.
113
+
114
+ ___
115
+
116
+ ### sandbox
117
+
118
+ • `Optional` **sandbox**: `boolean`
119
+
120
+ Sets button to Sandbox environment. You do not have to set this parameter
121
+ if your `publicKeyId` has an environment prefix. Default is false.
122
+
123
+ #### Inherited from
124
+
125
+ [AmazonPayV2ButtonConfig](AmazonPayV2ButtonConfig.md).[sandbox](AmazonPayV2ButtonConfig.md#sandbox)
@@ -39,7 +39,7 @@
39
39
 
40
40
  ### amazonpay
41
41
 
42
- • `Optional` **amazonpay**: [`AmazonPayV2ButtonParams`](AmazonPayV2ButtonParams.md)
42
+ • `Optional` **amazonpay**: [`AmazonPayV2ButtonParams`](AmazonPayV2ButtonParams.md) \| [`AmazonPayV2NewButtonParams`](AmazonPayV2NewButtonParams.md)
43
43
 
44
44
  The options that are required to facilitate AmazonPayV2. They can be
45
45
  omitted unless you need to support AmazonPayV2.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigcommerce/checkout-sdk",
3
- "version": "1.274.0",
3
+ "version": "1.275.0",
4
4
  "description": "BigCommerce Checkout JavaScript SDK",
5
5
  "license": "MIT",
6
6
  "main": "dist/checkout-sdk.js",