@bigcommerce/checkout-sdk 1.206.2 → 1.207.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.
@@ -5096,6 +5096,11 @@ declare interface PaymentInitializeOptions extends PaymentRequestOptions {
5096
5096
  * They can be omitted unless you need to support StripeV3.
5097
5097
  */
5098
5098
  stripev3?: StripeV3PaymentInitializeOptions;
5099
+ /**
5100
+ * The options that are required to initialize the StripeUPE payment method.
5101
+ * They can be omitted unless you need to support StripeUPE.
5102
+ */
5103
+ stripeupe?: StripeUPEPaymentInitializeOptions;
5099
5104
  /**
5100
5105
  * The options that are required to initialize the Mollie payment method.
5101
5106
  * They can be omitted unless you need to support Mollie.
@@ -6094,6 +6099,34 @@ declare interface StripeElementStyleVariant extends StripeElementCSSProperties {
6094
6099
  };
6095
6100
  }
6096
6101
 
6102
+ /**
6103
+ * A set of options that are required to initialize the Stripe payment method.
6104
+ *
6105
+ * Once Stripe payment is initialized, credit card form fields, provided by the
6106
+ * payment provider as iframes, will be inserted into the current page. These
6107
+ * options provide a location and styling for each of the form fields.
6108
+ *
6109
+ * ```html
6110
+ * <!-- This is where the credit card component will be inserted -->
6111
+ * <div id="container"></div>
6112
+ * ```
6113
+ *
6114
+ * ```js
6115
+ * service.initializePayment({
6116
+ * methodId: 'stripeupe',
6117
+ * stripeupe {
6118
+ * containerId: 'container',
6119
+ * },
6120
+ * });
6121
+ * ```
6122
+ */
6123
+ declare interface StripeUPEPaymentInitializeOptions {
6124
+ /**
6125
+ * The location to insert the credit card number form field.
6126
+ */
6127
+ containerId: string;
6128
+ }
6129
+
6097
6130
  /**
6098
6131
  * A set of options that are required to initialize the Stripe payment method.
6099
6132
  *