@chopkola/common 1.0.205 → 1.0.206

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.
@@ -100,3 +100,14 @@ export interface GroceryCart extends BaseCart<ProductCartItem> {
100
100
  total_estimate?: MoneyString;
101
101
  }
102
102
  export type CartAggregate = RestaurantCart | GroceryCart;
103
+ export interface HydratedCartItem {
104
+ id: string;
105
+ cart_item_id: UUID;
106
+ name: string;
107
+ image: string;
108
+ unit_price: MoneyString;
109
+ total_price: MoneyString;
110
+ quantity: number;
111
+ item_type: CartItemTypeEnum;
112
+ options_summary?: string;
113
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chopkola/common",
3
- "version": "1.0.205",
3
+ "version": "1.0.206",
4
4
  "description": "",
5
5
  "license": "ISC",
6
6
  "author": "akrosoft technology ltd",