@chopkola/common 1.0.180 → 1.0.182

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.
@@ -1,6 +1,7 @@
1
1
  import { AddressI } from "./address";
2
2
  import { PromotionTypeEnum, VendorBusinessTypeEnum, VendorStatusEnum } from "./enum/collection";
3
3
  import { AddressPayloadType, UUID } from "./global";
4
+ import { MenuWithMeals } from "./menu_n_meal";
4
5
  export type CuisineType = "African" | "Asian" | "Continental" | "Mediterranean" | "American";
5
6
  export type AmbienceType = "Casual" | "Fine Dining" | "Family Friendly" | "Romantic" | "Outdoor" | "Rooftop";
6
7
  export type StoreType = "Supermarket" | "Organic Store" | "Wholesale" | "Convenience Store" | "Mini Mart";
@@ -97,6 +98,7 @@ export type VendorAggregateForWeb = VendorAggregate & {
97
98
  deliveryFee?: number;
98
99
  reviews?: number;
99
100
  rating?: number;
101
+ menus?: MenuWithMeals[];
100
102
  };
101
103
  export type CreateVendorInput = Omit<Vendor, "id" | "rating" | "review_count" | "business_status" | "approved_by" | "approved_on" | "created_at" | "updated_at"> & {
102
104
  address_payload: AddressPayloadType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chopkola/common",
3
- "version": "1.0.180",
3
+ "version": "1.0.182",
4
4
  "description": "",
5
5
  "license": "ISC",
6
6
  "author": "akrosoft technology ltd",