@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 +1 -1
- package/lib/LimitedPartner.js +1 -1
- package/lib/Organization.js +1 -1
- package/lib/Person.js +1 -1
- package/package.json +1 -1
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
|
|
22
|
+
stakeholders: [{ type: String, unique: true, partialFilterExpression : { type :"string" }, trim: true }]
|
|
23
23
|
|
|
24
24
|
});
|
|
25
25
|
|
package/lib/LimitedPartner.js
CHANGED
|
@@ -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
|
|
111
|
+
stakeholders: [{ type: String, unique: true, partialFilterExpression : { type :"string" }, trim: true }]
|
|
112
112
|
|
|
113
113
|
});
|
|
114
114
|
|
package/lib/Organization.js
CHANGED
|
@@ -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
|
|
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
|
|
139
|
+
stakeholders: [{ type: String, unique: true, partialFilterExpression : { type :"string" }, trim: true }]
|
|
140
140
|
|
|
141
141
|
});
|
|
142
142
|
|