@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.
package/dist/index.cjs CHANGED
@@ -5622,6 +5622,7 @@ var VENDOR_PRODUCT_LIST_FIELDS_FRAGMENT = gql`
5622
5622
  description
5623
5623
  name
5624
5624
  price
5625
+ priceMax
5625
5626
  priceUnit
5626
5627
  productGroups
5627
5628
  updatedAt
@@ -8972,6 +8973,11 @@ var schema7 = new MongooseSchema11(
8972
8973
  required: false,
8973
8974
  type: ResourceImageTypeSchema
8974
8975
  },
8976
+ coupon: {
8977
+ ref: "Coupon",
8978
+ required: false,
8979
+ type: import_mongoose11.default.Schema.Types.ObjectId
8980
+ },
8975
8981
  deletedAt: { default: null, required: false, type: Date },
8976
8982
  email: { required: true, type: String },
8977
8983
  emailSentFor: {
@@ -9205,6 +9211,7 @@ var vendorProductTypeSchema = new MongooseSchema14(
9205
9211
  description: { required: false, type: String },
9206
9212
  name: { required: true, type: String },
9207
9213
  price: { required: true, type: Number },
9214
+ priceMax: { required: false, type: Number },
9208
9215
  priceUnit: { required: true, type: String },
9209
9216
  productGroups: { required: false, type: [String] }
9210
9217
  },