@dhyasama/totem-models 11.45.0 → 11.47.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.
@@ -24,6 +24,14 @@ module.exports = function(mongoose, config) {
24
24
  },
25
25
  notes: [ { type: Schema.ObjectId, ref: 'Note' } ],
26
26
  documents: [ { type: Schema.ObjectId, ref: 'Document' } ],
27
+ transcript: { type: String, required: false, default: null, trim: true },
28
+ analysis: {
29
+ summary: { type: String },
30
+ insights: [{
31
+ text: { type: String },
32
+ category: { type: String, enum: ['highlight', 'lowlight', 'goal', 'ask'] }
33
+ }]
34
+ },
27
35
 
28
36
  // handy for querying data that was updated on a recent pull
29
37
  updatedOn: { type: Date, default: Date.now }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dhyasama/totem-models",
3
- "version": "11.45.0",
3
+ "version": "11.47.0",
4
4
  "author": "Jason Reynolds",
5
5
  "license": "UNLICENSED",
6
6
  "description": "Models for Totem platform",