@francesco_ksh/app-ksh-mgd-schemas 2.2.3 → 2.2.5

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
@@ -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',
package/models/Order.js CHANGED
@@ -534,7 +534,6 @@ const orderSchema = new Schema(
534
534
  sellerAlreadyPaidOut: {
535
535
  type: Boolean,
536
536
  },
537
-
538
537
  deliveryUpgrade: {
539
538
  deliveryType: {
540
539
  type: String,
package/models/User.js CHANGED
@@ -7,6 +7,14 @@ const userSchema = new Schema(
7
7
  type: String,
8
8
  required: true,
9
9
  },
10
+ eligibleForEarlyPayout: {
11
+ isTrue: {
12
+ type: Boolean,
13
+ },
14
+ optedIn: {
15
+ type: Boolean,
16
+ },
17
+ },
10
18
  slug: {
11
19
  type: String,
12
20
  unique: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@francesco_ksh/app-ksh-mgd-schemas",
3
- "version": "2.2.3",
3
+ "version": "2.2.5",
4
4
  "description": "Mongoose schema definitions",
5
5
  "main": "index.js",
6
6
  "repository": {