@bigcommerce/checkout-sdk 1.235.0 → 1.235.1
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 +7 -0
- package/dist/checkout-button.js +1 -1
- package/dist/checkout-button.umd.js +1 -1
- package/dist/checkout-sdk.d.ts +12 -1
- package/dist/checkout-sdk.js +1 -1
- package/dist/checkout-sdk.js.map +1 -1
- package/dist/checkout-sdk.umd.js +2 -2
- package/dist/checkout-sdk.umd.js.map +1 -1
- package/docs/interfaces/adyenadditionalactionoptions.md +16 -0
- package/docs/interfaces/adyenv2paymentinitializeoptions.md +3 -3
- package/package.json +1 -1
package/dist/checkout-sdk.d.ts
CHANGED
|
@@ -68,6 +68,17 @@ declare interface AdyenAdditionalActionOptions extends AdyenAdditionalActionCall
|
|
|
68
68
|
* The location to insert the additional action component.
|
|
69
69
|
*/
|
|
70
70
|
containerId: string;
|
|
71
|
+
/**
|
|
72
|
+
* Specify Three3DS2Challenge Widget Size
|
|
73
|
+
*
|
|
74
|
+
* Values
|
|
75
|
+
* '01' = 250px x 400px
|
|
76
|
+
* '02' = 390px x 400px
|
|
77
|
+
* '03' = 500px x 600px
|
|
78
|
+
* '04' = 600px x 400px
|
|
79
|
+
* '05' = 100% x 100%
|
|
80
|
+
*/
|
|
81
|
+
widgetSize?: string;
|
|
71
82
|
}
|
|
72
83
|
|
|
73
84
|
declare interface AdyenAdditionalActionOptions_2 extends AdyenAdditionalActionCallbacks_2 {
|
|
@@ -336,7 +347,7 @@ declare interface AdyenV2PaymentInitializeOptions {
|
|
|
336
347
|
* @deprecated
|
|
337
348
|
* Use additionalActionOptions instead as this property will be removed in the future
|
|
338
349
|
*/
|
|
339
|
-
threeDS2Options
|
|
350
|
+
threeDS2Options?: AdyenThreeDS2Options;
|
|
340
351
|
/**
|
|
341
352
|
* A set of options that are required to initialize additional payment actions.
|
|
342
353
|
*/
|