@bigcommerce/checkout-sdk 1.571.0 → 1.572.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.
@@ -7210,7 +7210,7 @@ declare interface PayPalCommerceCreditPaymentInitializeOptions {
7210
7210
  /**
7211
7211
  * The CSS selector of a container where the payment widget should be inserted into.
7212
7212
  */
7213
- container: string;
7213
+ container?: string;
7214
7214
  /**
7215
7215
  * The location to insert the Pay Later Messages.
7216
7216
  */
@@ -7233,12 +7233,12 @@ declare interface PayPalCommerceCreditPaymentInitializeOptions {
7233
7233
  *
7234
7234
  * @returns reject() or resolve()
7235
7235
  */
7236
- onValidate(resolve: () => void, reject: () => void): Promise<void>;
7236
+ onValidate?(resolve: () => void, reject: () => void): Promise<void>;
7237
7237
  /**
7238
7238
  * A callback for submitting payment form that gets called
7239
7239
  * when buyer approved PayPal account.
7240
7240
  */
7241
- submitForm(): void;
7241
+ submitForm?(): void;
7242
7242
  }
7243
7243
 
7244
7244
  /**