@francesco_ksh/app-ksh-mgd-schemas 2.2.8 → 2.3.0

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
@@ -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: {
@@ -459,6 +466,17 @@ const orderSchema = new Schema(
459
466
  shippingLabelLink: {
460
467
  type: String,
461
468
  },
469
+ parcelShippingMetadata: {
470
+ shipmentId: {
471
+ type: String,
472
+ },
473
+ trackingNumber: {
474
+ type: String,
475
+ },
476
+ serviceCode: {
477
+ type: String,
478
+ },
479
+ },
462
480
  bolLink: {
463
481
  type: String,
464
482
  },
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.8",
3
+ "version": "2.3.0",
4
4
  "description": "Mongoose schema definitions",
5
5
  "main": "index.js",
6
6
  "repository": {