@bigcommerce/checkout-sdk 1.740.0 → 1.741.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.
@@ -2939,6 +2939,7 @@ declare class CheckoutService {
2939
2939
  private _subscriptionsActionCreator;
2940
2940
  private _formFieldsActionCreator;
2941
2941
  private _extensionActionCreator;
2942
+ private _workerExtensionMessenger;
2942
2943
  private _errorTransformer;
2943
2944
  /**
2944
2945
  * Returns a snapshot of the current checkout state.
@@ -5597,7 +5598,7 @@ declare interface Extension {
5597
5598
  name: string;
5598
5599
  region: ExtensionRegion;
5599
5600
  url: string;
5600
- type?: 'iframe' | 'worker';
5601
+ type: ExtensionType;
5601
5602
  }
5602
5603
 
5603
5604
  declare interface ExtensionCommandMap {
@@ -5650,6 +5651,11 @@ declare interface ExtensionSelector {
5650
5651
  isLoading(): boolean;
5651
5652
  }
5652
5653
 
5654
+ declare const enum ExtensionType {
5655
+ Iframe = "iframe",
5656
+ Worker = "worker"
5657
+ }
5658
+
5653
5659
  declare interface Fee {
5654
5660
  id: string;
5655
5661
  type: string;