@pintahub/database-schemas 3.8.3 → 3.8.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pintahub/database-schemas",
3
- "version": "3.8.3",
3
+ "version": "3.8.4",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -216,6 +216,12 @@ const Product = new Schema({
216
216
  index: true,
217
217
  },
218
218
 
219
+ favorites_count: {
220
+ type: Number,
221
+ default: 0,
222
+ index: true,
223
+ },
224
+
219
225
  source: {
220
226
  type: ProductSource,
221
227
  },