@dhyasama/totem-models 6.3.7 → 6.3.8
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 +7 -1
- package/package.json +1 -1
- package/.npmignore +0 -14
- package/package-lock.json +0 -1829
package/lib/Organization.js
CHANGED
|
@@ -526,10 +526,12 @@ module.exports = function(mongoose, config) {
|
|
|
526
526
|
if (standardFields.fundraise.showOnList) {
|
|
527
527
|
result.push({
|
|
528
528
|
name: 'Fundraise Amount',
|
|
529
|
+
type: 'Standard',
|
|
529
530
|
order: standardFields.fundraise.order * 10,
|
|
530
|
-
colspan: standardFields.fundraise.colspan
|
|
531
|
+
colspan: standardFields.fundraise.colspan,
|
|
531
532
|
}, {
|
|
532
533
|
name: 'Fundraise Valuation',
|
|
534
|
+
type: 'Standard',
|
|
533
535
|
order: standardFields.fundraise.order * 10 + 1,
|
|
534
536
|
colspan: standardFields.fundraise.colspan
|
|
535
537
|
});
|
|
@@ -538,6 +540,7 @@ module.exports = function(mongoose, config) {
|
|
|
538
540
|
if (standardFields.sources.showOnList) {
|
|
539
541
|
result.push({
|
|
540
542
|
name: 'Source',
|
|
543
|
+
type: 'Standard',
|
|
541
544
|
order: standardFields.sources.order * 10,
|
|
542
545
|
colspan: standardFields.fundraise.colspan
|
|
543
546
|
});
|
|
@@ -546,6 +549,7 @@ module.exports = function(mongoose, config) {
|
|
|
546
549
|
if (standardFields.referrers.showOnList) {
|
|
547
550
|
result.push({
|
|
548
551
|
name: 'Referrers',
|
|
552
|
+
type: 'Standard',
|
|
549
553
|
order: standardFields.referrers.order * 10,
|
|
550
554
|
colspan: standardFields.fundraise.colspan
|
|
551
555
|
});
|
|
@@ -556,6 +560,8 @@ module.exports = function(mongoose, config) {
|
|
|
556
560
|
if (field.display.showOnList) {
|
|
557
561
|
result.push({
|
|
558
562
|
name: field.label,
|
|
563
|
+
type: field.type,
|
|
564
|
+
key: field.key,
|
|
559
565
|
order: field.display.order * 10,
|
|
560
566
|
colspan: field.display.colspan
|
|
561
567
|
});
|
package/package.json
CHANGED