gemcap-be-common 1.4.248 → 1.4.249
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.
- package/microservice/channels.constants.d.ts +1 -0
- package/microservice/channels.constants.js +1 -0
- package/microservice/channels.constants.ts +1 -0
- package/microservice/events.constants.d.ts +6 -0
- package/microservice/events.constants.js +6 -0
- package/microservice/events.constants.ts +7 -0
- package/microservice/queues.constants.d.ts +3 -0
- package/microservice/queues.constants.js +3 -0
- package/microservice/queues.constants.ts +3 -0
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export declare const MESSAGE_CHANNELS: {
|
|
2
2
|
readonly AI: "ai.exchange";
|
|
3
3
|
readonly COMPLIANCE: "compliance.exchange";
|
|
4
|
+
readonly CRM: "crm.exchange";
|
|
4
5
|
readonly FINANCE: "finance.exchange";
|
|
5
6
|
readonly PORTFOLIO: "portfolio.exchange";
|
|
6
7
|
readonly NOTIFICATIONS: "notifications.exchange";
|
|
@@ -15,6 +15,12 @@ export declare const EVENT_KEYS: {
|
|
|
15
15
|
readonly SUMMARY_GENERATED: "compliance.summary.generated";
|
|
16
16
|
readonly FIND_MATCH_COMPLETED: "compliance.find-match.completed";
|
|
17
17
|
};
|
|
18
|
+
/**
|
|
19
|
+
* ========= CRM DOMAIN EVENTS =========
|
|
20
|
+
*/
|
|
21
|
+
readonly crm: {
|
|
22
|
+
readonly PROSPECT_EMAILS_REQUESTED: "crm.prospect.emails.requested";
|
|
23
|
+
};
|
|
18
24
|
/**
|
|
19
25
|
* ========= FINANCE DOMAIN EVENTS =========
|
|
20
26
|
*/
|
|
@@ -18,6 +18,12 @@ exports.EVENT_KEYS = {
|
|
|
18
18
|
SUMMARY_GENERATED: 'compliance.summary.generated',
|
|
19
19
|
FIND_MATCH_COMPLETED: 'compliance.find-match.completed',
|
|
20
20
|
},
|
|
21
|
+
/**
|
|
22
|
+
* ========= CRM DOMAIN EVENTS =========
|
|
23
|
+
*/
|
|
24
|
+
crm: {
|
|
25
|
+
PROSPECT_EMAILS_REQUESTED: 'crm.prospect.emails.requested',
|
|
26
|
+
},
|
|
21
27
|
/**
|
|
22
28
|
* ========= FINANCE DOMAIN EVENTS =========
|
|
23
29
|
*/
|
|
@@ -17,6 +17,13 @@ export const EVENT_KEYS = {
|
|
|
17
17
|
FIND_MATCH_COMPLETED: 'compliance.find-match.completed',
|
|
18
18
|
},
|
|
19
19
|
|
|
20
|
+
/**
|
|
21
|
+
* ========= CRM DOMAIN EVENTS =========
|
|
22
|
+
*/
|
|
23
|
+
crm: {
|
|
24
|
+
PROSPECT_EMAILS_SEND_REQUESTED: 'crm.prospect.emails.requested',
|
|
25
|
+
},
|
|
26
|
+
|
|
20
27
|
/**
|
|
21
28
|
* ========= FINANCE DOMAIN EVENTS =========
|
|
22
29
|
*/
|
|
@@ -17,6 +17,9 @@ export declare const QUEUES: {
|
|
|
17
17
|
readonly summaryReady: "compliance.summary.ready";
|
|
18
18
|
readonly findMatchReady: "compliance.find-match.ready";
|
|
19
19
|
};
|
|
20
|
+
readonly crm: {
|
|
21
|
+
readonly prospectEmailsSend: "crm.prospect.emails.send";
|
|
22
|
+
};
|
|
20
23
|
readonly finance: {
|
|
21
24
|
readonly reports: {
|
|
22
25
|
readonly perAccount: "finance.report.per-account";
|
|
@@ -20,6 +20,9 @@ exports.QUEUES = {
|
|
|
20
20
|
summaryReady: 'compliance.summary.ready',
|
|
21
21
|
findMatchReady: 'compliance.find-match.ready',
|
|
22
22
|
},
|
|
23
|
+
crm: {
|
|
24
|
+
prospectEmailsSend: 'crm.prospect.emails.send',
|
|
25
|
+
},
|
|
23
26
|
finance: {
|
|
24
27
|
reports: {
|
|
25
28
|
perAccount: 'finance.report.per-account',
|
|
@@ -17,6 +17,9 @@ export const QUEUES = {
|
|
|
17
17
|
summaryReady: 'compliance.summary.ready',
|
|
18
18
|
findMatchReady: 'compliance.find-match.ready',
|
|
19
19
|
},
|
|
20
|
+
crm: {
|
|
21
|
+
prospectEmailsSend: 'crm.prospect.emails.send',
|
|
22
|
+
},
|
|
20
23
|
finance: {
|
|
21
24
|
reports: {
|
|
22
25
|
perAccount: 'finance.report.per-account',
|