@francesco_ksh/app-ksh-mgd-schemas 2.2.1 → 2.2.3

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/models/Listing.js CHANGED
@@ -258,7 +258,6 @@ const listingSchema = new Schema(
258
258
  store: {
259
259
  type: Schema.Types.ObjectId,
260
260
  ref: 'Store',
261
- required: true,
262
261
  },
263
262
  condition: {
264
263
  type: String,
package/models/Store.js CHANGED
@@ -9,6 +9,9 @@ const storeSchema = new Schema(
9
9
  type: String,
10
10
  },
11
11
 
12
+ longDistanceDeliveryPriceMultiplier: {
13
+ type: Number,
14
+ },
12
15
  inventoryDetails: {
13
16
  isLiquidation: {
14
17
  type: Boolean,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@francesco_ksh/app-ksh-mgd-schemas",
3
- "version": "2.2.1",
3
+ "version": "2.2.3",
4
4
  "description": "Mongoose schema definitions",
5
5
  "main": "index.js",
6
6
  "repository": {