@dhyasama/totem-models 10.2.0 → 10.2.1

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/lib/Fund.js CHANGED
@@ -19,7 +19,7 @@ module.exports = function(mongoose, config) {
19
19
  customFields: { type: Schema.Types.Mixed },
20
20
 
21
21
  // the stakeholders names we match to on cap tables
22
- stakeholders: [{ type: String, unique: true, partialFilterExpression : { type :"string" }, trim: true, lowercase: true }]
22
+ stakeholders: [{ type: String, unique: true, partialFilterExpression : { type :"string" }, trim: true }]
23
23
 
24
24
  });
25
25
 
@@ -108,7 +108,7 @@ module.exports = function(mongoose, config) {
108
108
  documents: [ { type: Schema.ObjectId, ref: 'Document' } ],
109
109
 
110
110
  // the stakeholders names we match to on cap tables
111
- stakeholders: [{ type: String, unique: true, partialFilterExpression : { type :"string" }, trim: true, lowercase: true }]
111
+ stakeholders: [{ type: String, unique: true, partialFilterExpression : { type :"string" }, trim: true }]
112
112
 
113
113
  });
114
114
 
@@ -602,7 +602,7 @@ module.exports = function(mongoose, config) {
602
602
  }],
603
603
 
604
604
  // the stakeholders names we match to on cap tables
605
- stakeholders: [{ type: String, unique: true, partialFilterExpression : { type :"string" }, trim: true, lowercase: true }]
605
+ stakeholders: [{ type: String, unique: true, partialFilterExpression : { type :"string" }, trim: true }]
606
606
 
607
607
  });
608
608
 
package/lib/Person.js CHANGED
@@ -136,7 +136,7 @@ const _ = require("underscore");
136
136
  doNotDisplay: { type: Boolean, default: false },
137
137
 
138
138
  // the stakeholders names we match to on cap tables
139
- stakeholders: [{ type: String, unique: true, partialFilterExpression : { type :"string" }, trim: true, lowercase: true }]
139
+ stakeholders: [{ type: String, unique: true, partialFilterExpression : { type :"string" }, trim: true }]
140
140
 
141
141
  });
142
142
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dhyasama/totem-models",
3
- "version": "10.2.0",
3
+ "version": "10.2.1",
4
4
  "author": "Jason Reynolds",
5
5
  "license": "UNLICENSED",
6
6
  "description": "Models for Totem platform",