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