@cendo/database-schemas 1.5.8 → 1.5.9

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/schemas/Order.js +5 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cendo/database-schemas",
3
- "version": "1.5.8",
3
+ "version": "1.5.9",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "keywords": [],
package/schemas/Order.js CHANGED
@@ -102,6 +102,11 @@ const Order = new Schema({
102
102
  index: true
103
103
  },
104
104
 
105
+ last_label: {
106
+ type: Schema.Types.ObjectId,
107
+ index: true,
108
+ },
109
+
105
110
  updated_at: {
106
111
  type: Date,
107
112
  default: Date.now