@dhyasama/totem-models 6.8.8 → 6.8.9
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/Organization.js +1 -1
- package/package.json +1 -1
- package/.npmignore +0 -14
- package/package-lock.json +0 -1829
package/lib/Organization.js
CHANGED
|
@@ -1331,7 +1331,7 @@ module.exports = function(mongoose, config) {
|
|
|
1331
1331
|
query.populate('related', 'name logoUrl');
|
|
1332
1332
|
query.populate('chairs.first', 'name avatarUrl title');
|
|
1333
1333
|
query.populate('chairs.second', 'name avatarUrl title');
|
|
1334
|
-
query.populate('funds', 'name hexColorCode abbreviation closeDate');
|
|
1334
|
+
query.populate('funds', 'name shortName hexColorCode abbreviation closeDate');
|
|
1335
1335
|
query.populate('operating.acquired.public.by', 'name logoUrl');
|
|
1336
1336
|
query.populate('operating.acquired.private.by', 'name logoUrl');
|
|
1337
1337
|
query.populate(dealPopulateOptions);
|
package/package.json
CHANGED