@pintahub/database-schemas 1.9.7 → 1.9.9

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.9.7",
3
+ "version": "1.9.9",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -180,6 +180,12 @@ const Product = new Schema({
180
180
  type: ProductSource,
181
181
  },
182
182
 
183
+ is_primary: {
184
+ type: Boolean,
185
+ default: true,
186
+ index: true,
187
+ },
188
+
183
189
  updated_at: {
184
190
  type: Date,
185
191
  default: Date.now