@francesco_ksh/app-ksh-mgd-schemas 2.1.9 → 2.2.2

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/Order.js CHANGED
@@ -610,7 +610,9 @@ const orderSchema = new Schema(
610
610
  type: Date,
611
611
  default: moment().add(3, 'days'),
612
612
  },
613
-
613
+ removedFromUShip: {
614
+ type: Boolean,
615
+ },
614
616
  dates: {
615
617
  approvedDate: {
616
618
  type: Date,
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.1.9",
3
+ "version": "2.2.2",
4
4
  "description": "Mongoose schema definitions",
5
5
  "main": "index.js",
6
6
  "repository": {