@bigcommerce/checkout-sdk 1.713.0 → 1.713.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/dist/checkout-button.js +1 -1
- package/dist/checkout-button.umd.js +1 -1
- package/dist/checkout-sdk.d.ts +9 -1
- 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/StripeUPEShippingInitializeOptions.md +24 -1
- package/package.json +1 -1
package/dist/checkout-sdk.d.ts
CHANGED
|
@@ -8063,7 +8063,15 @@ declare interface StripeUPEShippingInitializeOptions {
|
|
|
8063
8063
|
* @param country
|
|
8064
8064
|
* @param state
|
|
8065
8065
|
*/
|
|
8066
|
-
getStripeState(country: string, state: string): string;
|
|
8066
|
+
getStripeState(country: string, state: string, isStripeStateMappingDisabledForES?: boolean): string;
|
|
8067
|
+
/**
|
|
8068
|
+
* Set the Stripe experiments to be used in checkout-js components;
|
|
8069
|
+
* Stripe specific experiments broadcasts to SDK from payment provider configs request.
|
|
8070
|
+
*
|
|
8071
|
+
* @param experiments
|
|
8072
|
+
* @returns void
|
|
8073
|
+
*/
|
|
8074
|
+
setStripeExperiments?(experiments: Record<string, boolean>): void;
|
|
8067
8075
|
}
|
|
8068
8076
|
|
|
8069
8077
|
/**
|