@dhyasama/totem-models 1.13.1 → 1.13.2
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/Round.js +2 -2
- package/package.json +1 -1
package/lib/Round.js
CHANGED
|
@@ -529,7 +529,7 @@ module.exports = function(mongoose, config) {
|
|
|
529
529
|
self
|
|
530
530
|
.find({ 'vehicles.fund': fundId })
|
|
531
531
|
.select('organization vehicles preMoneyValuation')
|
|
532
|
-
.populate('organization', 'name logoUrl description')
|
|
532
|
+
.populate('organization', 'name logoUrl description contact industries status ipo closed acquired operating')
|
|
533
533
|
.populate('vehicles.fund')
|
|
534
534
|
.populate('vehicles.investments')
|
|
535
535
|
.exec(function(err, rounds) {
|
|
@@ -556,7 +556,7 @@ module.exports = function(mongoose, config) {
|
|
|
556
556
|
self
|
|
557
557
|
.find({ 'vehicles.fund': { $in: fundIds } })
|
|
558
558
|
.select('organization vehicles preMoneyValuation')
|
|
559
|
-
.populate('organization', 'name logoUrl description contact industries')
|
|
559
|
+
.populate('organization', 'name logoUrl description contact industries status ipo closed acquired operating')
|
|
560
560
|
.populate('vehicles.fund')
|
|
561
561
|
.populate('vehicles.investments')
|
|
562
562
|
.exec(function(err, rounds) {
|