@cendo/database-schemas 2.0.2 → 2.0.4

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 +11 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cendo/database-schemas",
3
- "version": "2.0.2",
3
+ "version": "2.0.4",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "keywords": [],
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: []
@@ -168,6 +173,12 @@ const Order = new Schema({
168
173
  type: Boolean,
169
174
  },
170
175
 
176
+ is_marketplace: {
177
+ type: Boolean,
178
+ default: false,
179
+ index: true
180
+ },
181
+
171
182
  pushed_at: {
172
183
  type: Date,
173
184
  index: true