@francesco_ksh/app-ksh-mgd-schemas 2.2.3 → 2.2.4
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 +17 -0
- package/package.json +1 -1
package/models/Listing.js
CHANGED
|
@@ -259,6 +259,23 @@ const listingSchema = new Schema(
|
|
|
259
259
|
type: Schema.Types.ObjectId,
|
|
260
260
|
ref: 'Store',
|
|
261
261
|
},
|
|
262
|
+
cannotShipWith: {
|
|
263
|
+
fedEx: {
|
|
264
|
+
type: Boolean,
|
|
265
|
+
},
|
|
266
|
+
uShip: {
|
|
267
|
+
type: Boolean,
|
|
268
|
+
},
|
|
269
|
+
goShare: {
|
|
270
|
+
type: Boolean,
|
|
271
|
+
},
|
|
272
|
+
freightClub: {
|
|
273
|
+
type: Boolean,
|
|
274
|
+
},
|
|
275
|
+
kashew: {
|
|
276
|
+
type: Boolean,
|
|
277
|
+
},
|
|
278
|
+
},
|
|
262
279
|
condition: {
|
|
263
280
|
type: String,
|
|
264
281
|
default: 'Good',
|