@pintahub/database-schemas 2.8.3 → 2.8.5

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.8.3",
3
+ "version": "2.8.5",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schemas/Group.js CHANGED
@@ -47,6 +47,11 @@ const Group = new Schema({
47
47
  index: true
48
48
  },
49
49
 
50
+ meta: {
51
+ type: Schema.Types.Mixed,
52
+ default: {}
53
+ },
54
+
50
55
  updated_at: {
51
56
  type: Date,
52
57
  default: Date.now
@@ -267,6 +267,11 @@ const Product = new Schema({
267
267
  trim: true,
268
268
  },
269
269
 
270
+ show_description: {
271
+ type: Boolean,
272
+ default: false,
273
+ },
274
+
270
275
  updated_at: {
271
276
  type: Date,
272
277
  default: Date.now