@bigcommerce/checkout-sdk 1.402.1 → 1.403.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;