gemcap-be-common 1.4.59 → 1.4.61

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.
@@ -31,6 +31,7 @@ export declare const EventMap: {
31
31
  readonly NOTIFY_NEW_UNDERWRITERS: "crm_report#NOTIFY_NEW_UNDERWRITERS";
32
32
  readonly NOTIFY_PROSPECT_UPDATES: "crm_report#NOTIFY_PROSPECT_UPDATES";
33
33
  readonly FILE_LINKS: "crm_report#FILE_LINKS";
34
+ readonly FILE_LINKS_UNDERWRITERS: "crm_report#FILE_LINKS_UNDERWRITERS";
34
35
  };
35
36
  readonly notification: {
36
37
  readonly SEND_EMAIL: "notification#SEND_EMAIL";
@@ -34,6 +34,7 @@ exports.EventMap = {
34
34
  NOTIFY_NEW_UNDERWRITERS: 'crm_report#NOTIFY_NEW_UNDERWRITERS',
35
35
  NOTIFY_PROSPECT_UPDATES: 'crm_report#NOTIFY_PROSPECT_UPDATES',
36
36
  FILE_LINKS: 'crm_report#FILE_LINKS',
37
+ FILE_LINKS_UNDERWRITERS: 'crm_report#FILE_LINKS_UNDERWRITERS',
37
38
  },
38
39
  notification: {
39
40
  SEND_EMAIL: 'notification#SEND_EMAIL',
@@ -31,6 +31,7 @@ export const EventMap = {
31
31
  NOTIFY_NEW_UNDERWRITERS: 'crm_report#NOTIFY_NEW_UNDERWRITERS',
32
32
  NOTIFY_PROSPECT_UPDATES: 'crm_report#NOTIFY_PROSPECT_UPDATES',
33
33
  FILE_LINKS: 'crm_report#FILE_LINKS',
34
+ FILE_LINKS_UNDERWRITERS: 'crm_report#FILE_LINKS_UNDERWRITERS',
34
35
  },
35
36
  notification: {
36
37
  SEND_EMAIL: 'notification#SEND_EMAIL',
@@ -45,6 +45,7 @@ export interface IProspectFile {
45
45
  sharepointFolderId?: string;
46
46
  sharepointDriveId?: string;
47
47
  sharepointWebUrl?: string;
48
+ sharepointPath?: string;
48
49
  isAccepted?: boolean;
49
50
  log?: string;
50
51
  }
@@ -77,6 +77,9 @@ exports.ProspectFileSchema = new mongoose_1.default.Schema({
77
77
  sharepointWebUrl: {
78
78
  type: String,
79
79
  },
80
+ sharepointPath: {
81
+ type: String,
82
+ },
80
83
  log: {
81
84
  type: String,
82
85
  },
@@ -25,6 +25,7 @@ export interface IProspectFile {
25
25
  sharepointFolderId?: string;
26
26
  sharepointDriveId?: string;
27
27
  sharepointWebUrl?: string;
28
+ sharepointPath?: string;
28
29
  isAccepted?: boolean;
29
30
  log?: string;
30
31
  }
@@ -114,6 +115,9 @@ export const ProspectFileSchema = new mongoose.Schema<IProspectFileDoc>({
114
115
  sharepointWebUrl: {
115
116
  type: String,
116
117
  },
118
+ sharepointPath: {
119
+ type: String,
120
+ },
117
121
  log: {
118
122
  type: String,
119
123
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gemcap-be-common",
3
- "version": "1.4.59",
3
+ "version": "1.4.61",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {