vhp-mongo-models 1.3.5 → 1.3.6

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.
@@ -1,7 +1,9 @@
1
1
  module.exports=[
2
2
  {
3
3
  id: { type: String, default: '' },
4
- cat: { type: String, default: '' },
4
+ hhid:{type:String,default:''},
5
+ cat: { type: String, default: '' }, //used to describe the collection
6
+ tags: {type:Array,default:[]},
5
7
  html: { type: Array, default: [] },
6
8
  css: { type: Array, default: [] },
7
9
  filename: { type: String, default: '' },
@@ -1,10 +1,12 @@
1
1
  module.exports=[
2
2
  {
3
3
  id: { type: String, default: '' },
4
- cat: { type: String, default: '' },
4
+ hhid:{type:String,default:''},
5
+ cat: { type: String, default: '' }, //used to describe the collection
6
+ tags: {type:Array,default:[]},
5
7
  html: { type: Array, default: [] },
6
8
  css: { type: Array, default: [] },
7
- filename: { type: String, default: '' },
9
+ filename: { type: String, default: '' },//does not have to be unique right now, but try to
8
10
  type: { type: String, default: '' },
9
11
  contentType: { type: String, default: 'application/pdf' }
10
12
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vhp-mongo-models",
3
- "version": "1.3.5",
3
+ "version": "1.3.6",
4
4
  "productName": "VHP Mongo Models",
5
5
  "description": "Mongo Models library to setup Mongoose Schemas",
6
6
  "author": "VHPim",