@dhyasama/totem-models 11.112.0 → 11.113.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
@@ -88,6 +88,8 @@ module.exports = function(mongoose, config) {
88
88
  form: [{
89
89
  name: { type: String, trim: true },
90
90
  type: { type: String, enum: [null, 'header', 'block', 'document', 'metric', 'question'] },
91
+ budget: { type: Number },
92
+ forecast: { type: Number },
91
93
  required: { type: Boolean, default: false }
92
94
  }],
93
95
 
@@ -101,6 +103,8 @@ module.exports = function(mongoose, config) {
101
103
  _id: false,
102
104
  name: { type: String, trim: true },
103
105
  actual: { type: Number },
106
+ budget: { type: Number },
107
+ forecast: { type: Number },
104
108
  breakdown: { type: Schema.Types.Mixed }
105
109
  }],
106
110
 
@@ -203,11 +207,7 @@ module.exports = function(mongoose, config) {
203
207
 
204
208
  }
205
209
 
206
- }],
207
-
208
- projections: [
209
-
210
- ]
210
+ }]
211
211
 
212
212
  });
213
213
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dhyasama/totem-models",
3
- "version": "11.112.0",
3
+ "version": "11.113.0",
4
4
  "author": "Jason Reynolds",
5
5
  "license": "UNLICENSED",
6
6
  "description": "Models for Totem platform",