@cendo/database-schemas 2.0.9 → 2.1.1
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 +10 -0
package/package.json
CHANGED
package/schemas/Order.js
CHANGED
|
@@ -106,6 +106,11 @@ const Order = new Schema({
|
|
|
106
106
|
index: true
|
|
107
107
|
},
|
|
108
108
|
|
|
109
|
+
sync_count: {
|
|
110
|
+
type: Number,
|
|
111
|
+
default: 0,
|
|
112
|
+
},
|
|
113
|
+
|
|
109
114
|
nhanh_id: {
|
|
110
115
|
type: String,
|
|
111
116
|
trim: true,
|
|
@@ -175,6 +180,11 @@ const Order = new Schema({
|
|
|
175
180
|
trim: true,
|
|
176
181
|
},
|
|
177
182
|
|
|
183
|
+
pancake_system_id: {
|
|
184
|
+
type: String,
|
|
185
|
+
trim: true,
|
|
186
|
+
},
|
|
187
|
+
|
|
178
188
|
is_legacy: {
|
|
179
189
|
type: Boolean,
|
|
180
190
|
},
|