@francesco_ksh/app-ksh-mgd-schemas 2.4.2 → 2.4.3
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/Order.js +17 -0
- package/package.json +1 -1
package/models/Order.js
CHANGED
|
@@ -655,6 +655,23 @@ const orderSchema = new Schema(
|
|
|
655
655
|
removedFromUShip: {
|
|
656
656
|
type: Boolean,
|
|
657
657
|
},
|
|
658
|
+
reopening: {
|
|
659
|
+
requested: {
|
|
660
|
+
type: Boolean,
|
|
661
|
+
},
|
|
662
|
+
expired: {
|
|
663
|
+
type: Boolean,
|
|
664
|
+
},
|
|
665
|
+
date: {
|
|
666
|
+
type: Date,
|
|
667
|
+
},
|
|
668
|
+
offerAmount: {
|
|
669
|
+
type: Number,
|
|
670
|
+
},
|
|
671
|
+
expiresAt: {
|
|
672
|
+
type: Date,
|
|
673
|
+
},
|
|
674
|
+
},
|
|
658
675
|
dates: {
|
|
659
676
|
approvedDate: {
|
|
660
677
|
type: Date,
|