@francesco_ksh/app-ksh-mgd-schemas 2.3.0 → 2.3.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/Listing.js CHANGED
@@ -136,6 +136,7 @@ const listingSchema = new Schema(
136
136
  type: Number,
137
137
  },
138
138
  },
139
+
139
140
  tags: {
140
141
  type: Array,
141
142
  },
package/models/Order.js CHANGED
@@ -375,6 +375,9 @@ const orderSchema = new Schema(
375
375
  deliveryPricePaidByKashew: {
376
376
  type: Number,
377
377
  },
378
+ moverrProjectId: {
379
+ type: String,
380
+ },
378
381
  uShipListing: {
379
382
  listingId: {
380
383
  type: String,
package/models/User.js CHANGED
@@ -7,6 +7,9 @@ const userSchema = new Schema(
7
7
  type: String,
8
8
  required: true,
9
9
  },
10
+ accountNotClaimed: {
11
+ type: Boolean,
12
+ },
10
13
  eligibleForEarlyPayout: {
11
14
  isTrue: {
12
15
  type: Boolean,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@francesco_ksh/app-ksh-mgd-schemas",
3
- "version": "2.3.0",
3
+ "version": "2.3.2",
4
4
  "description": "Mongoose schema definitions",
5
5
  "main": "index.js",
6
6
  "repository": {