@bigcommerce/checkout-sdk 1.306.0 → 1.307.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 +14 -0
- package/dist/checkout-button.js +1 -1
- package/dist/checkout-button.umd.js +1 -1
- package/dist/checkout-sdk.d.ts +4 -0
- 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/docs/interfaces/BaseElementOptions.md +9 -0
- package/package.json +1 -1
package/dist/checkout-sdk.d.ts
CHANGED
|
@@ -1185,6 +1185,10 @@ declare interface BaseElementOptions {
|
|
|
1185
1185
|
* Set custom class names on the container DOM element when the Digital River element is in a particular state.
|
|
1186
1186
|
*/
|
|
1187
1187
|
classes?: DigitalRiverElementClasses;
|
|
1188
|
+
/**
|
|
1189
|
+
* Use disabledPaymentMethods to disable specific payment methods.
|
|
1190
|
+
*/
|
|
1191
|
+
disabledPaymentMethods?: string[];
|
|
1188
1192
|
}
|
|
1189
1193
|
|
|
1190
1194
|
declare interface BaseElementOptions_2 {
|