gemcap-be-common 1.4.54 → 1.4.56

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.
@@ -40,6 +40,7 @@ export interface IProspectFile {
40
40
  fileId?: string;
41
41
  filename: string;
42
42
  uploadedAt: Date;
43
+ uploadedBy?: string;
43
44
  sharepointId?: string;
44
45
  sharepointFolderId?: string;
45
46
  sharepointDriveId?: string;
@@ -61,6 +61,10 @@ exports.ProspectFileSchema = new mongoose_1.default.Schema({
61
61
  type: Date,
62
62
  required: true,
63
63
  },
64
+ uploadedBy: {
65
+ type: String,
66
+ required: false,
67
+ },
64
68
  sharepointId: {
65
69
  type: String,
66
70
  },
@@ -20,6 +20,7 @@ export interface IProspectFile {
20
20
  fileId?: string;
21
21
  filename: string;
22
22
  uploadedAt: Date;
23
+ uploadedBy?: string;
23
24
  sharepointId?: string;
24
25
  sharepointFolderId?: string;
25
26
  sharepointDriveId?: string;
@@ -97,6 +98,10 @@ export const ProspectFileSchema = new mongoose.Schema<IProspectFileDoc>({
97
98
  type: Date,
98
99
  required: true,
99
100
  },
101
+ uploadedBy: {
102
+ type: String,
103
+ required: false,
104
+ },
100
105
  sharepointId: {
101
106
  type: String,
102
107
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gemcap-be-common",
3
- "version": "1.4.54",
3
+ "version": "1.4.56",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {