@francesco_ksh/app-ksh-mgd-schemas 2.3.4 → 2.3.6

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
@@ -9,6 +9,9 @@ const listingSchema = new Schema(
9
9
  firstUploadPrice: {
10
10
  type: Number,
11
11
  },
12
+ secondLatestUploadPrice: {
13
+ type: Number,
14
+ },
12
15
  latestUploadPrice: {
13
16
  type: Number,
14
17
  },
@@ -18,7 +21,6 @@ const listingSchema = new Schema(
18
21
  priceAfterOffsetAndAutomatedDiscount: {
19
22
  type: Number,
20
23
  },
21
-
22
24
  pricingChanges: [
23
25
  {
24
26
  price: {
package/models/Store.js CHANGED
@@ -368,6 +368,10 @@ const storeSchema = new Schema(
368
368
  type: Boolean,
369
369
  default: true,
370
370
  },
371
+ readyCloud: {
372
+ type: Boolean,
373
+ default: false,
374
+ },
371
375
  fedExAllowedCategory: {
372
376
  isAll: {
373
377
  type: Boolean,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@francesco_ksh/app-ksh-mgd-schemas",
3
- "version": "2.3.4",
3
+ "version": "2.3.6",
4
4
  "description": "Mongoose schema definitions",
5
5
  "main": "index.js",
6
6
  "repository": {