@bigcommerce/checkout-sdk 1.277.0 → 1.278.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 +8 -0
- package/dist/checkout-button.js +1 -1
- package/dist/checkout-button.js.map +1 -1
- package/dist/checkout-button.umd.js +1 -1
- package/dist/checkout-button.umd.js.map +1 -1
- package/dist/checkout-sdk.d.ts +5 -2
- package/dist/checkout-sdk.js +1 -1
- package/dist/checkout-sdk.js.map +1 -1
- package/dist/checkout-sdk.umd.js +1 -1
- package/dist/checkout-sdk.umd.js.map +1 -1
- package/dist/embedded-checkout.js +1 -1
- package/docs/README.md +1 -1
- package/docs/interfaces/AmazonPayV2PaymentInitializeOptions.md +1 -0
- package/docs/interfaces/BasePaymentInitializeOptions.md +1 -1
- package/docs/interfaces/BlueSnapV2PaymentInitializeOptions.md +1 -0
- package/docs/interfaces/MolliePaymentInitializeOptions.md +1 -0
- package/docs/interfaces/{WorldpayPaymentInitializeOptions.md → WorldpayAccessPaymentInitializeOptions.md} +3 -3
- package/package.json +1 -1
package/dist/checkout-sdk.d.ts
CHANGED
|
@@ -786,6 +786,7 @@ declare enum AmazonPayV2PayOptions {
|
|
|
786
786
|
* editButtonId: 'edit-button',
|
|
787
787
|
* },
|
|
788
788
|
* });
|
|
789
|
+
* ```
|
|
789
790
|
*/
|
|
790
791
|
declare interface AmazonPayV2PaymentInitializeOptions {
|
|
791
792
|
/**
|
|
@@ -1333,7 +1334,7 @@ declare interface BasePaymentInitializeOptions extends PaymentRequestOptions {
|
|
|
1333
1334
|
* The options that are required to initialize the Worldpay payment method.
|
|
1334
1335
|
* They can be omitted unless you need to support Worldpay.
|
|
1335
1336
|
*/
|
|
1336
|
-
worldpay?:
|
|
1337
|
+
worldpay?: WorldpayAccessPaymentInitializeOptions;
|
|
1337
1338
|
}
|
|
1338
1339
|
|
|
1339
1340
|
declare interface BillingAddress extends Address {
|
|
@@ -1382,6 +1383,7 @@ declare interface BlockElementStyles extends InlineElementStyles {
|
|
|
1382
1383
|
* },
|
|
1383
1384
|
* },
|
|
1384
1385
|
* });
|
|
1386
|
+
* ```
|
|
1385
1387
|
*/
|
|
1386
1388
|
declare interface BlueSnapV2PaymentInitializeOptions {
|
|
1387
1389
|
/**
|
|
@@ -5526,6 +5528,7 @@ declare interface MasterpassPaymentInitializeOptions {
|
|
|
5526
5528
|
* }
|
|
5527
5529
|
* }
|
|
5528
5530
|
* });
|
|
5531
|
+
* ```
|
|
5529
5532
|
*/
|
|
5530
5533
|
declare interface MolliePaymentInitializeOptions {
|
|
5531
5534
|
/**
|
|
@@ -7230,7 +7233,7 @@ declare interface WithMollieIssuerInstrument {
|
|
|
7230
7233
|
shopper_locale: string;
|
|
7231
7234
|
}
|
|
7232
7235
|
|
|
7233
|
-
declare interface
|
|
7236
|
+
declare interface WorldpayAccessPaymentInitializeOptions {
|
|
7234
7237
|
/**
|
|
7235
7238
|
* A callback that gets called when the iframe is ready to be added to the
|
|
7236
7239
|
* current page. It is responsible for determining where the iframe should
|