gemcap-be-common 1.4.91 → 1.4.92

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.
@@ -35,7 +35,6 @@ export interface IBorrowerNote {
35
35
  subjectId: mongoose.Types.ObjectId;
36
36
  text: string;
37
37
  attachments: IBorrowerNoteAttachment[];
38
- deletedAt?: Date;
39
38
  createdBy: string;
40
39
  updatedBy?: string;
41
40
  }
@@ -29,9 +29,6 @@ const BorrowerNoteAttachmentSchema = new mongoose_1.default.Schema({
29
29
  },
30
30
  });
31
31
  exports.BorrowerNoteSchema = new mongoose_1.default.Schema({
32
- deletedAt: {
33
- type: Date,
34
- },
35
32
  borrowerId: {
36
33
  type: mongoose_1.default.Schema.Types.ObjectId,
37
34
  ref: _models_1.MODEL_NAMES.borrowers,
@@ -15,7 +15,6 @@ export interface IBorrowerNote {
15
15
  subjectId: mongoose.Types.ObjectId,
16
16
  text: string,
17
17
  attachments: IBorrowerNoteAttachment[],
18
- deletedAt?: Date,
19
18
  createdBy: string,
20
19
  updatedBy?: string,
21
20
  }
@@ -73,9 +72,6 @@ const BorrowerNoteAttachmentSchema = new mongoose.Schema<IBorrowerNoteAttachment
73
72
  });
74
73
 
75
74
  export const BorrowerNoteSchema = new mongoose.Schema<IBorrowerNoteDoc>({
76
- deletedAt: {
77
- type: Date,
78
- },
79
75
  borrowerId: {
80
76
  type: mongoose.Schema.Types.ObjectId,
81
77
  ref: MODEL_NAMES.borrowers,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gemcap-be-common",
3
- "version": "1.4.91",
3
+ "version": "1.4.92",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {