@dhyasama/totem-models 9.110.1 → 9.112.0
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/Investment.js +1 -0
- package/lib/Organization.js +4 -4
- package/package.json +1 -1
package/lib/Investment.js
CHANGED
|
@@ -33,6 +33,7 @@ module.exports = function(mongoose, config) {
|
|
|
33
33
|
premoney: { type: Number, required: false },
|
|
34
34
|
postmoney: { type: Number, required: false },
|
|
35
35
|
pricePerShare: { type: Number, required: false },
|
|
36
|
+
documents: { type: String, trim: true, required: false },
|
|
36
37
|
|
|
37
38
|
// Catch-all for customer specific key-value pairs from sheet that aren't supported by our schema
|
|
38
39
|
details: [{
|
package/lib/Organization.js
CHANGED
|
@@ -272,7 +272,7 @@ module.exports = function(mongoose, config) {
|
|
|
272
272
|
_id: false,
|
|
273
273
|
key: { type: String, trim: true },
|
|
274
274
|
label: { type: String, trim: true },
|
|
275
|
-
total: { type: String, enum: [null, 'sum', 'average', 'count'
|
|
275
|
+
total: { type: String, enum: [null, 'sum', 'average', 'count'] },
|
|
276
276
|
width: { type: Number, default: 150 }
|
|
277
277
|
}],
|
|
278
278
|
view: { type: String, trim: true }
|
|
@@ -400,7 +400,7 @@ module.exports = function(mongoose, config) {
|
|
|
400
400
|
_id: false,
|
|
401
401
|
key: { type: String, trim: true },
|
|
402
402
|
label: { type: String, trim: true },
|
|
403
|
-
total: { type: String, enum: [null, 'sum', 'average', 'count'
|
|
403
|
+
total: { type: String, enum: [null, 'sum', 'average', 'count'] },
|
|
404
404
|
width: { type: Number, default: 150 }
|
|
405
405
|
}],
|
|
406
406
|
view: { type: String, trim: true }
|
|
@@ -463,7 +463,7 @@ module.exports = function(mongoose, config) {
|
|
|
463
463
|
_id: false,
|
|
464
464
|
key: { type: String, trim: true },
|
|
465
465
|
label: { type: String, trim: true },
|
|
466
|
-
total: { type: String, enum: [null, 'sum', 'average', 'count'
|
|
466
|
+
total: { type: String, enum: [null, 'sum', 'average', 'count'] },
|
|
467
467
|
width: { type: Number, default: 150 }
|
|
468
468
|
}],
|
|
469
469
|
view: { type: String, trim: true }
|
|
@@ -528,7 +528,7 @@ module.exports = function(mongoose, config) {
|
|
|
528
528
|
_id: false,
|
|
529
529
|
key: { type: String, trim: true },
|
|
530
530
|
label: { type: String, trim: true },
|
|
531
|
-
total: { type: String, enum: [null, 'sum', 'average', 'count'
|
|
531
|
+
total: { type: String, enum: [null, 'sum', 'average', 'count'] },
|
|
532
532
|
width: { type: Number, default: 150 }
|
|
533
533
|
}],
|
|
534
534
|
view: { type: String, trim: true }
|