@francesco_ksh/app-ksh-mgd-schemas 2.3.5 → 2.3.7

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
@@ -21,7 +21,6 @@ const listingSchema = new Schema(
21
21
  priceAfterOffsetAndAutomatedDiscount: {
22
22
  type: Number,
23
23
  },
24
-
25
24
  pricingChanges: [
26
25
  {
27
26
  price: {
package/models/Order.js CHANGED
@@ -469,6 +469,9 @@ const orderSchema = new Schema(
469
469
  shippingLabelLink: {
470
470
  type: String,
471
471
  },
472
+ readyReturnsQrCodeLink: {
473
+ type: String,
474
+ },
472
475
  parcelShippingMetadata: {
473
476
  shipmentId: {
474
477
  type: String,
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.5",
3
+ "version": "2.3.7",
4
4
  "description": "Mongoose schema definitions",
5
5
  "main": "index.js",
6
6
  "repository": {