@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 +18 -0
- package/models/Store.js +4 -0
- package/package.json +1 -1
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