@pintahub/database-schemas 3.7.1 → 3.7.2

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.7.1",
3
+ "version": "3.7.2",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -293,6 +293,11 @@ const Product = new Schema({
293
293
  trim: true,
294
294
  },
295
295
 
296
+ external_id: {//For id when import from external source
297
+ type: String,
298
+ trim: true,
299
+ },
300
+
296
301
  deleted_at: {
297
302
  type: Date,
298
303
  },