@dhyasama/totem-models 6.3.7 → 6.3.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.
@@ -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,9 @@ 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,
565
+ options: field.options,
559
566
  order: field.display.order * 10,
560
567
  colspan: field.display.colspan
561
568
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dhyasama/totem-models",
3
- "version": "6.3.7",
3
+ "version": "6.3.9",
4
4
  "author": "Jason Reynolds",
5
5
  "license": "UNLICENSED",
6
6
  "description": "Models for Totem platform",
package/.npmignore DELETED
@@ -1,14 +0,0 @@
1
- lib-cov
2
- *.seed
3
- *.log
4
- *.csv
5
- *.dat
6
- *.out
7
- *.pid
8
- *.gz
9
-
10
- npm-debug.log
11
- node_modules
12
-
13
- .DS_Store
14
- .idea