@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.
- package/package.json +1 -1
- package/schemas/Order.js +11 -0
package/package.json
CHANGED
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
|