@pintahub/database-schemas 2.7.8 → 2.8.0

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.7.8",
3
+ "version": "2.8.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schemas/Order.js CHANGED
@@ -125,6 +125,11 @@ const Order = new Schema({
125
125
  trim: true,
126
126
  },
127
127
 
128
+ browser_ip: {
129
+ type: String,
130
+ trim: true,
131
+ },
132
+
128
133
  updated_at: {
129
134
  type: Date,
130
135
  default: Date.now
@@ -84,6 +84,11 @@ const ProductFeature = new Schema({
84
84
  trim: true,
85
85
  },
86
86
 
87
+ google_product_category: {
88
+ type: String,
89
+ trim: true,
90
+ },
91
+
87
92
  reviews_count: {
88
93
  type: Number,
89
94
  default: 0,