@bigcommerce/checkout-sdk 1.600.1 → 1.601.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.
@@ -2002,9 +2002,18 @@ declare interface Cart {
2002
2002
  email: string;
2003
2003
  isTaxIncluded: boolean;
2004
2004
  baseAmount: number;
2005
+ /**
2006
+ * This is the total amount of discount applied on line_items.
2007
+ */
2005
2008
  discountAmount: number;
2006
2009
  cartAmount: number;
2010
+ /**
2011
+ * This is an array of all applied coupons.
2012
+ */
2007
2013
  coupons: Coupon[];
2014
+ /**
2015
+ * This is the total amount of discount applied on cart including coupons and line_items discounts.
2016
+ */
2008
2017
  discounts: Discount[];
2009
2018
  lineItems: LineItemMap;
2010
2019
  createdTime: string;