@cendo/database-schemas 2.0.3 → 2.0.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cendo/database-schemas",
3
- "version": "2.0.3",
3
+ "version": "2.0.5",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "keywords": [],
package/schemas/Label.js CHANGED
@@ -35,6 +35,12 @@ const Label = new Schema({
35
35
  trim: true,
36
36
  },
37
37
 
38
+ status: {
39
+ type: String,
40
+ trim: true,
41
+ index: true,
42
+ },
43
+
38
44
  is_pushed: {
39
45
  type: Boolean,
40
46
  default: false,
package/schemas/Order.js CHANGED
@@ -137,6 +137,11 @@ const Order = new Schema({
137
137
  default: {}
138
138
  },
139
139
 
140
+ label_location: {
141
+ type: String,
142
+ trim: true,
143
+ },
144
+
140
145
  attachments: {
141
146
  type: [AttachmentObject],
142
147
  default: []