@cendo/database-schemas 2.0.2 → 2.0.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/schemas/Order.js +6 -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.3",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "keywords": [],
package/schemas/Order.js CHANGED
@@ -168,6 +168,12 @@ const Order = new Schema({
168
168
  type: Boolean,
169
169
  },
170
170
 
171
+ is_marketplace: {
172
+ type: Boolean,
173
+ default: false,
174
+ index: true
175
+ },
176
+
171
177
  pushed_at: {
172
178
  type: Date,
173
179
  index: true