@bigcommerce/checkout-sdk 1.206.1 → 1.209.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.
@@ -71,6 +71,9 @@ declare interface AdyenComponent {
71
71
  componentRef?: {
72
72
  showValidation(): void;
73
73
  };
74
+ props?: {
75
+ type?: string;
76
+ };
74
77
  state?: CardState;
75
78
  mount(containerId: string): HTMLElement;
76
79
  unmount(): void;
@@ -5093,6 +5096,11 @@ declare interface PaymentInitializeOptions extends PaymentRequestOptions {
5093
5096
  * They can be omitted unless you need to support StripeV3.
5094
5097
  */
5095
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;
5096
5104
  /**
5097
5105
  * The options that are required to initialize the Mollie payment method.
5098
5106
  * They can be omitted unless you need to support Mollie.
@@ -6091,6 +6099,34 @@ declare interface StripeElementStyleVariant extends StripeElementCSSProperties {
6091
6099
  };
6092
6100
  }
6093
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
+
6094
6130
  /**
6095
6131
  * A set of options that are required to initialize the Stripe payment method.
6096
6132
  *