@bigcommerce/checkout-sdk 1.304.0 → 1.305.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.
@@ -1453,9 +1453,23 @@ declare interface BlueSnapV2StyleProps {
1453
1453
  width?: string;
1454
1454
  }
1455
1455
 
1456
+ declare interface BodlEventsPayload {
1457
+ [key: string]: unknown;
1458
+ }
1459
+
1456
1460
  declare interface BodlService {
1457
1461
  checkoutBegin(): void;
1458
1462
  orderPurchased(): void;
1463
+ stepCompleted(step?: string): void;
1464
+ customerEmailEntry(email?: string): void;
1465
+ customerSuggestionExecute(): void;
1466
+ customerPaymentMethodExecuted(payload?: BodlEventsPayload): void;
1467
+ showShippingMethods(): void;
1468
+ selectedPaymentMethod(methodName?: string): void;
1469
+ clickPayButton(payload?: BodlEventsPayload): void;
1470
+ paymentRejected(): void;
1471
+ paymentComplete(): void;
1472
+ exitCheckout(): void;
1459
1473
  }
1460
1474
 
1461
1475
  declare interface BodyStyles {
@@ -2351,6 +2365,10 @@ declare interface CheckoutPayment {
2351
2365
  gatewayId?: string;
2352
2366
  }
2353
2367
 
2368
+ declare interface CheckoutPaymentMethodExecutedOptions {
2369
+ hasBoltAccount?: boolean;
2370
+ }
2371
+
2354
2372
  declare interface CheckoutRequestBody {
2355
2373
  customerMessage: string;
2356
2374
  }
@@ -4816,6 +4834,7 @@ declare interface EmbeddedContentOptions {
4816
4834
  *
4817
4835
  */
4818
4836
  declare interface ExecutePaymentMethodCheckoutOptions extends CustomerRequestOptions {
4837
+ checkoutPaymentMethodExecuted?(data?: CheckoutPaymentMethodExecutedOptions): void;
4819
4838
  continueWithCheckoutCallback?(): void;
4820
4839
  }
4821
4840