@bigcommerce/checkout-sdk 1.402.1 → 1.404.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.
@@ -6070,6 +6070,7 @@ declare interface Order {
6070
6070
  taxes: Tax[];
6071
6071
  taxTotal: number;
6072
6072
  channelId: number;
6073
+ fees: OrderFee[];
6073
6074
  }
6074
6075
 
6075
6076
  declare interface OrderBillingAddress extends Address {
@@ -6080,6 +6081,14 @@ declare interface OrderConsignment {
6080
6081
  shipping: OrderShippingConsignment[];
6081
6082
  }
6082
6083
 
6084
+ declare interface OrderFee {
6085
+ id: number;
6086
+ type: string;
6087
+ customerDisplayName: string;
6088
+ cost: number;
6089
+ source: string;
6090
+ }
6091
+
6083
6092
  declare interface OrderPayment {
6084
6093
  providerId: string;
6085
6094
  gatewayId?: string;
@@ -7036,7 +7045,7 @@ declare interface SepaPlaceHolder_2 {
7036
7045
  }
7037
7046
 
7038
7047
  declare interface SetIframeStylePayload {
7039
- type: ExtensionCommand.ReloadCheckout;
7048
+ type: ExtensionCommand.SetIframeStyle;
7040
7049
  payload: {
7041
7050
  extensionId: string;
7042
7051
  style: {
@@ -7104,7 +7113,7 @@ declare interface ShopperCurrency extends StoreCurrency {
7104
7113
  }
7105
7114
 
7106
7115
  declare interface ShowLoadingIndicatorEvent {
7107
- type: ExtensionCommand.ReloadCheckout;
7116
+ type: ExtensionCommand.ShowLoadingIndicator;
7108
7117
  payload: {
7109
7118
  extensionId: string;
7110
7119
  show: boolean;