@dhyasama/totem-models 11.66.0 → 11.67.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/Financials.js CHANGED
@@ -86,6 +86,9 @@ module.exports = function(mongoose, config) {
86
86
  form: [{
87
87
  name: { type: String, trim: true },
88
88
  type: { type: String, enum: [null, 'header', 'block', 'document', 'metric', 'question'] },
89
+ actual: { type: Boolean, default: false },
90
+ budget: { type: Boolean, default: false },
91
+ forecast: { type: Boolean, default: false },
89
92
  required: { type: Boolean, default: false }
90
93
  }],
91
94
 
@@ -320,6 +320,9 @@ module.exports = function(mongoose, config) {
320
320
  _id: false,
321
321
  name: { type: String, trim: true },
322
322
  type: { type: String, enum: [null, 'header', 'block', 'document', 'metric', 'question'] },
323
+ actual: { type: Boolean, default: false },
324
+ budget: { type: Boolean, default: false },
325
+ forecast: { type: Boolean, default: false },
323
326
  required: { type: Boolean, default: false }
324
327
  }]
325
328
  }],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dhyasama/totem-models",
3
- "version": "11.66.0",
3
+ "version": "11.67.0",
4
4
  "author": "Jason Reynolds",
5
5
  "license": "UNLICENSED",
6
6
  "description": "Models for Totem platform",