@timardex/cluemart-server-shared 1.1.17 → 1.1.18

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.
@@ -5595,6 +5595,7 @@ var VENDOR_PRODUCT_LIST_FIELDS_FRAGMENT = gql`
5595
5595
  description
5596
5596
  name
5597
5597
  price
5598
+ priceMax
5598
5599
  priceUnit
5599
5600
  productGroups
5600
5601
  updatedAt
@@ -8897,6 +8898,11 @@ var schema7 = new MongooseSchema11(
8897
8898
  required: false,
8898
8899
  type: ResourceImageTypeSchema
8899
8900
  },
8901
+ coupon: {
8902
+ ref: "Coupon",
8903
+ required: false,
8904
+ type: import_mongoose11.default.Schema.Types.ObjectId
8905
+ },
8900
8906
  deletedAt: { default: null, required: false, type: Date },
8901
8907
  email: { required: true, type: String },
8902
8908
  emailSentFor: {
@@ -9130,6 +9136,7 @@ var vendorProductTypeSchema = new MongooseSchema14(
9130
9136
  description: { required: false, type: String },
9131
9137
  name: { required: true, type: String },
9132
9138
  price: { required: true, type: Number },
9139
+ priceMax: { required: false, type: Number },
9133
9140
  priceUnit: { required: true, type: String },
9134
9141
  productGroups: { required: false, type: [String] }
9135
9142
  },