@pintahub/database-schemas 1.5.0 → 1.5.1

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.5.0",
3
+ "version": "1.5.1",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -111,6 +111,12 @@ const Product = new Schema({
111
111
  index: true,
112
112
  },
113
113
 
114
+ is_imported: {
115
+ type: Boolean,
116
+ default: false,
117
+ index: true,
118
+ },
119
+
114
120
  updated_at: {
115
121
  type: Date,
116
122
  default: Date.now