gemcap-be-common 1.4.97 → 1.4.98

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.
@@ -41,6 +41,8 @@ export interface IBorrowerNote {
41
41
  type: 'manual' | 'email';
42
42
  emailFrom?: string;
43
43
  emailTo?: string;
44
+ emailText?: string;
45
+ emailHtml?: string;
44
46
  };
45
47
  }
46
48
  export interface IBorrowerNoteDoc extends IBorrowerNote, Document {
@@ -61,6 +61,8 @@ exports.BorrowerNoteSchema = new mongoose_1.default.Schema({
61
61
  },
62
62
  emailFrom: { type: String },
63
63
  emailTo: { type: String },
64
+ emailText: { type: String },
65
+ emailHtml: { type: String },
64
66
  },
65
67
  }, {
66
68
  timestamps: true,
@@ -21,6 +21,8 @@ export interface IBorrowerNote {
21
21
  type: 'manual' | 'email';
22
22
  emailFrom?: string;
23
23
  emailTo?: string;
24
+ emailText?: string;
25
+ emailHtml?: string;
24
26
  };
25
27
  }
26
28
 
@@ -111,6 +113,8 @@ export const BorrowerNoteSchema = new mongoose.Schema<IBorrowerNoteDoc>({
111
113
  },
112
114
  emailFrom: { type: String },
113
115
  emailTo: { type: String },
116
+ emailText: { type: String },
117
+ emailHtml: { type: String },
114
118
  },
115
119
  }, {
116
120
  timestamps: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gemcap-be-common",
3
- "version": "1.4.97",
3
+ "version": "1.4.98",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {