@pintahub/database-schemas 2.5.9 → 2.6.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pintahub/database-schemas",
3
- "version": "2.5.9",
3
+ "version": "2.6.1",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schemas/Order.js CHANGED
@@ -95,6 +95,10 @@ const Order = new Schema({
95
95
  index: true,
96
96
  },
97
97
 
98
+ items_count: {
99
+ type: Number,
100
+ },
101
+
98
102
  updated_at: {
99
103
  type: Date,
100
104
  default: Date.now
@@ -257,6 +257,11 @@ const Product = new Schema({
257
257
  trim: true,
258
258
  },
259
259
 
260
+ private_note: {
261
+ type: String,
262
+ trim: true,
263
+ },
264
+
260
265
  updated_at: {
261
266
  type: Date,
262
267
  default: Date.now