@pintahub/database-schemas 1.8.3 → 1.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": "1.8.3",
3
+ "version": "1.8.5",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schemas/Group.js CHANGED
@@ -32,6 +32,7 @@ const Group = new Schema({
32
32
  style: {
33
33
  type: String,
34
34
  trim: true,
35
+ default: 'popup'
35
36
  },
36
37
 
37
38
  status: {
@@ -162,6 +162,11 @@ const Product = new Schema({
162
162
  default: 'visible',
163
163
  },
164
164
 
165
+ short_description: {
166
+ type: String,
167
+ trim: true,
168
+ },
169
+
165
170
  updated_at: {
166
171
  type: Date,
167
172
  default: Date.now