@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.
@@ -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
  /**