@francesco_ksh/app-ksh-mgd-schemas 2.2.9 → 2.3.1

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
@@ -196,6 +196,12 @@ const orderSchema = new Schema(
196
196
  type: {
197
197
  type: String,
198
198
  },
199
+ luggQuote: {
200
+ type: Object,
201
+ },
202
+ luggBooking: {
203
+ type: Object,
204
+ },
199
205
  deliveryType: {
200
206
  type: String,
201
207
  // enum: [
@@ -207,6 +213,7 @@ const orderSchema = new Schema(
207
213
  // 'ups',
208
214
  // 'usps',
209
215
  // 'dhl',
216
+ // 'lugg',
210
217
  // ],
211
218
  },
212
219
  fcDeliveryId: {
@@ -368,6 +375,9 @@ const orderSchema = new Schema(
368
375
  deliveryPricePaidByKashew: {
369
376
  type: Number,
370
377
  },
378
+ moverrProjectId: {
379
+ type: String,
380
+ },
371
381
  uShipListing: {
372
382
  listingId: {
373
383
  type: String,
package/models/Store.js CHANGED
@@ -364,6 +364,10 @@ const storeSchema = new Schema(
364
364
  type: Boolean,
365
365
  default: true,
366
366
  },
367
+ lugg: {
368
+ type: Boolean,
369
+ default: true,
370
+ },
367
371
  fedExAllowedCategory: {
368
372
  isAll: {
369
373
  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.9",
3
+ "version": "2.3.1",
4
4
  "description": "Mongoose schema definitions",
5
5
  "main": "index.js",
6
6
  "repository": {