@dhyasama/totem-models 6.3.3 → 6.3.5

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.
Files changed (2) hide show
  1. package/lib/Organization.js +14 -14
  2. package/package.json +1 -1
@@ -220,39 +220,39 @@ module.exports = function(mongoose, config) {
220
220
  // order for standard fields only sets the order on the list page. their position is fixed on the org page deal section and edit form.
221
221
  // order is co-mingled with order for custom fields
222
222
  // colspan is for the number of columns the field should take up on the list page
223
- // filter controls whether values are extracted and used in filtering options on list page
224
- // list controls if the field will be on deal list page
223
+ // showOnFilter controls whether values are extracted and used in filtering options on list page
224
+ // showOnList controls if the field will be on deal list page
225
225
 
226
226
  fundraise: {
227
227
  active: { type: Boolean, default: true },
228
228
  order: { type: Number, default: 99 },
229
229
  colspan: { type: Number, default: 1 },
230
- filter: { type: Boolean, default: true },
231
- list: { type: Boolean, default: true }
230
+ showOnFilter: { type: Boolean, default: true },
231
+ showOnList: { type: Boolean, default: true }
232
232
  },
233
233
 
234
234
  sources: {
235
235
  active: { type: Boolean, default: true },
236
236
  order: { type: Number, default: 99 },
237
237
  colspan: { type: Number, default: 1 },
238
- filter: { type: Boolean, default: true },
239
- list: { type: Boolean, default: true }
238
+ showOnFilter: { type: Boolean, default: true },
239
+ showOnList: { type: Boolean, default: true }
240
240
  },
241
241
 
242
242
  referrers: {
243
243
  active: { type: Boolean, default: true },
244
244
  order: { type: Number, default: 99 },
245
245
  colspan: { type: Number, default: 1 },
246
- filter: { type: Boolean, default: true },
247
- list: { type: Boolean, default: true }
246
+ showOnFilter: { type: Boolean, default: true },
247
+ showOnList: { type: Boolean, default: true }
248
248
  },
249
249
 
250
250
  resources: {
251
251
  active: { type: Boolean, default: true },
252
252
  order: { type: Number, default: 99 },
253
253
  colspan: { type: Number, default: 1 },
254
- filter: { type: Boolean, default: true },
255
- list: { type: Boolean, default: true }
254
+ showOnFilter: { type: Boolean, default: true },
255
+ showOnList: { type: Boolean, default: true }
256
256
  },
257
257
 
258
258
  },
@@ -297,12 +297,12 @@ module.exports = function(mongoose, config) {
297
297
  // colspan is for the number of columns the field should take up on the list page
298
298
  colspan: { type: Number, default: 1 },
299
299
 
300
- // filter controls whether values are extracted and used in filtering options on list page
301
- filter: { type: Boolean, default: true },
300
+ // showFilter controls whether values are extracted and used in filtering options on list page
301
+ showOnFilter: { type: Boolean, default: true },
302
302
 
303
- // list controls if the field will be on deal list page
303
+ // showOnList controls if the field will be on deal list page
304
304
  // fields are always shown on org pages and in edit forms
305
- list: { type: Boolean, default: true }
305
+ showOnList: { type: Boolean, default: true }
306
306
 
307
307
  }
308
308
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dhyasama/totem-models",
3
- "version": "6.3.3",
3
+ "version": "6.3.5",
4
4
  "author": "Jason Reynolds",
5
5
  "license": "UNLICENSED",
6
6
  "description": "Models for Totem platform",