@bigcommerce/checkout-sdk 1.633.0 → 1.634.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/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/dist/hosted-form-v2-iframe-host.js +1 -1
- package/dist/hosted-form-v2-iframe-host.umd.js +1 -1
- package/docs/interfaces/CardDataPaymentMethodState.md +14 -0
- package/package.json +1 -1
package/dist/checkout-sdk.d.ts
CHANGED
|
@@ -1779,6 +1779,10 @@ declare interface CardDataPaymentMethodState {
|
|
|
1779
1779
|
|
|
1780
1780
|
declare interface CardDataPaymentMethodState {
|
|
1781
1781
|
paymentMethod: CardPaymentMethodState;
|
|
1782
|
+
installments?: {
|
|
1783
|
+
value: number;
|
|
1784
|
+
plan?: 'string';
|
|
1785
|
+
};
|
|
1782
1786
|
}
|
|
1783
1787
|
|
|
1784
1788
|
declare interface CardElementOptions extends BaseElementOptions_2 {
|