@dhyasama/totem-models 11.71.0 → 11.72.0

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.
@@ -21,7 +21,7 @@ module.exports = function(mongoose, config) {
21
21
  internal: [{ type: Schema.ObjectId, ref: 'Person', index: true }], // people from customer
22
22
  external: [{ type: Schema.ObjectId, ref: 'Person', index: true }] // everyone else
23
23
  },
24
- comments: { type: String, trim: true },
24
+ notes: { type: String, trim: true },
25
25
  analysis: {
26
26
  overview: { type: String },
27
27
  notes: [{
package/lib/Message.js CHANGED
@@ -10,7 +10,7 @@ module.exports = function(mongoose, config) {
10
10
  _ = require('underscore'),
11
11
  moment = require('moment'),
12
12
  helpers = require('../helpers'),
13
- Document = mongoose.model('Document'),
13
+ Document = mongoose.model('Document');
14
14
 
15
15
  let Message = new Schema({
16
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dhyasama/totem-models",
3
- "version": "11.71.0",
3
+ "version": "11.72.0",
4
4
  "author": "Jason Reynolds",
5
5
  "license": "UNLICENSED",
6
6
  "description": "Models for Totem platform",