@pintahub/database-schemas 3.3.5 → 3.3.7

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.3.5",
3
+ "version": "3.3.7",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -257,6 +257,11 @@ const Product = new Schema({
257
257
  index: true,
258
258
  },
259
259
 
260
+ template: {
261
+ type: String,
262
+ trim: true,
263
+ },
264
+
260
265
  featured_stats: {
261
266
  type: String,
262
267
  trim: true,
@@ -91,6 +91,7 @@ const StoreSetting = new Schema({
91
91
  tags_mode: {
92
92
  typ: String,
93
93
  trim: true,
94
+ enum: ['show', 'hide']
94
95
  },
95
96
 
96
97
  updated_at: {