vhp-mongo-models 2.1.74 → 2.1.75

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.
@@ -18,6 +18,7 @@ module.exports = [
18
18
  lastTransaction: { type: String, default: '' },
19
19
  lastInteraction: { type: String, default: '' },
20
20
  salesRep: { type: String, default: '' },
21
+ notes: {type: String, default:''},
21
22
 
22
23
  //remove
23
24
  contactName:{type:String,default:''},
@@ -16,6 +16,8 @@ module.exports = [{
16
16
  jonascodes: {type:Array, default: []}, //new add
17
17
  billto: {type:Boolean,default: false}, //if it is a billing address for other homes
18
18
  salesRep:{type:String,default:''},
19
+
20
+ notes:{type:String,default:''},
19
21
 
20
22
  location: {
21
23
  type: Object, default: {
@@ -54,7 +54,8 @@ let info = {
54
54
  * - id - {unique:true,name:"id"}
55
55
  */
56
56
  module.exports = [
57
- {
57
+ {
58
+ cleanTag: {type:Object,default:{}},
58
59
  id: { type: String, default: '' },
59
60
  name: { type: String, default: '' },
60
61
  coid: { type: String, default: '' },
@@ -6,6 +6,8 @@ module.exports = {
6
6
  contactemail:{type:String,default:''},
7
7
  customername:{type:String,default:''},
8
8
  descr:{type:String,default:''},
9
+ dispatchnotes:{type:String,default:''},
10
+ technotes:{type:String,default:''},
9
11
  street:{type:String,default:''},
10
12
  cityzip:{type:String,default:''},
11
13
  unit:{type:String,default:''},
@@ -83,7 +83,7 @@ module.exports = {
83
83
  logs:{type:Array,default:[]}, //match with project datelog. Would like it to stay as "logs" though
84
84
 
85
85
  //Remove
86
- contract: { type: Object, default: {} }, // the contract attached to the client. Should move off of WO into separate query
86
+ // contract: { type: Object, default: {} }, // the contract attached to the client. Should move off of WO into separate query
87
87
  // office: { type: Object, default: {} },//any todo items for the office
88
88
  // field: {type:Object,default:{}},//any todo items for the field
89
89
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vhp-mongo-models",
3
- "version": "2.1.74",
3
+ "version": "2.1.75",
4
4
  "productName": "VHP Mongo Models",
5
5
  "description": "Mongo Models library to setup Mongoose Schemas",
6
6
  "author": "VHPim",