gemcap-be-common 1.5.96 → 1.5.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.
@@ -7,6 +7,9 @@ export declare const EVENT_KEYS: {
7
7
  readonly COMPLIANCE_SUMMARY_REQUESTED: "ai.compliance.summary.requested";
8
8
  readonly COMPLIANCE_FIND_MATCH_REQUESTED: "ai.compliance.find-match.requested";
9
9
  readonly PORTFOLIO_NOTE_SUMMARY_REQUESTED: "ai.portfolio.note.summary.requested";
10
+ readonly GENERATION_REQUESTED: "ai.memo.generation.requested";
11
+ readonly GENERATION_COMPLETED: "ai.memo.generation.completed";
12
+ readonly GENERATION_FAILED: "ai.memo.generation.failed";
10
13
  };
11
14
  /**
12
15
  * ========= AUTH DOMAIN EVENTS =========
@@ -28,6 +31,7 @@ export declare const EVENT_KEYS: {
28
31
  readonly crm: {
29
32
  readonly PROSPECT_EMAILS_SEND_REQUESTED: "crm.prospect.emails.requested";
30
33
  readonly PROSPECT_PAYMENT_MATCHED: "crm.prospect.payment-matched";
34
+ readonly FILES_PREPARED: "crm.memo.files.prepared";
31
35
  };
32
36
  /**
33
37
  * ========= FINANCE DOMAIN EVENTS =========
@@ -10,6 +10,9 @@ exports.EVENT_KEYS = {
10
10
  COMPLIANCE_SUMMARY_REQUESTED: 'ai.compliance.summary.requested',
11
11
  COMPLIANCE_FIND_MATCH_REQUESTED: 'ai.compliance.find-match.requested',
12
12
  PORTFOLIO_NOTE_SUMMARY_REQUESTED: 'ai.portfolio.note.summary.requested',
13
+ GENERATION_REQUESTED: 'ai.memo.generation.requested',
14
+ GENERATION_COMPLETED: 'ai.memo.generation.completed',
15
+ GENERATION_FAILED: 'ai.memo.generation.failed',
13
16
  },
14
17
  /**
15
18
  * ========= AUTH DOMAIN EVENTS =========
@@ -31,6 +34,7 @@ exports.EVENT_KEYS = {
31
34
  crm: {
32
35
  PROSPECT_EMAILS_SEND_REQUESTED: 'crm.prospect.emails.requested',
33
36
  PROSPECT_PAYMENT_MATCHED: 'crm.prospect.payment-matched',
37
+ FILES_PREPARED: 'crm.memo.files.prepared',
34
38
  },
35
39
  /**
36
40
  * ========= FINANCE DOMAIN EVENTS =========
@@ -7,6 +7,9 @@ export const EVENT_KEYS = {
7
7
  COMPLIANCE_SUMMARY_REQUESTED: 'ai.compliance.summary.requested',
8
8
  COMPLIANCE_FIND_MATCH_REQUESTED: 'ai.compliance.find-match.requested',
9
9
  PORTFOLIO_NOTE_SUMMARY_REQUESTED: 'ai.portfolio.note.summary.requested',
10
+ GENERATION_REQUESTED: 'ai.memo.generation.requested',
11
+ GENERATION_COMPLETED: 'ai.memo.generation.completed',
12
+ GENERATION_FAILED: 'ai.memo.generation.failed',
10
13
  },
11
14
 
12
15
  /**
@@ -31,6 +34,7 @@ export const EVENT_KEYS = {
31
34
  crm: {
32
35
  PROSPECT_EMAILS_SEND_REQUESTED: 'crm.prospect.emails.requested',
33
36
  PROSPECT_PAYMENT_MATCHED: 'crm.prospect.payment-matched',
37
+ FILES_PREPARED: 'crm.memo.files.prepared',
34
38
  },
35
39
 
36
40
  /**
@@ -12,6 +12,9 @@ export declare const QUEUES: {
12
12
  readonly summary: "ai.portfolio.note.summary";
13
13
  };
14
14
  };
15
+ readonly memo: {
16
+ readonly generation: "ai.memo.generation";
17
+ };
15
18
  };
16
19
  readonly auth: {
17
20
  readonly password: {
@@ -26,6 +29,11 @@ export declare const QUEUES: {
26
29
  readonly crm: {
27
30
  readonly prospectEmailsSend: "crm.prospect.emails.send";
28
31
  readonly incomingPaymentsDetected: "crm.incoming-payments-detected";
32
+ readonly memo: {
33
+ readonly generation: {
34
+ readonly requested: "crm.memo.generation.requested";
35
+ };
36
+ };
29
37
  };
30
38
  readonly finance: {
31
39
  readonly reports: {
@@ -14,7 +14,10 @@ exports.QUEUES = {
14
14
  note: {
15
15
  summary: 'ai.portfolio.note.summary',
16
16
  },
17
- }
17
+ },
18
+ memo: {
19
+ generation: 'ai.memo.generation',
20
+ },
18
21
  },
19
22
  auth: {
20
23
  password: {
@@ -29,6 +32,11 @@ exports.QUEUES = {
29
32
  crm: {
30
33
  prospectEmailsSend: 'crm.prospect.emails.send',
31
34
  incomingPaymentsDetected: 'crm.incoming-payments-detected',
35
+ memo: {
36
+ generation: {
37
+ requested: 'crm.memo.generation.requested',
38
+ }
39
+ }
32
40
  },
33
41
  finance: {
34
42
  reports: {
@@ -11,7 +11,10 @@ export const QUEUES = {
11
11
  note: {
12
12
  summary: 'ai.portfolio.note.summary',
13
13
  },
14
- }
14
+ },
15
+ memo: {
16
+ generation: 'ai.memo.generation',
17
+ },
15
18
  },
16
19
  auth: {
17
20
  password: {
@@ -26,6 +29,11 @@ export const QUEUES = {
26
29
  crm: {
27
30
  prospectEmailsSend: 'crm.prospect.emails.send',
28
31
  incomingPaymentsDetected: 'crm.incoming-payments-detected',
32
+ memo: {
33
+ generation: {
34
+ requested: 'crm.memo.generation.requested',
35
+ }
36
+ }
29
37
  },
30
38
  finance: {
31
39
  reports: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gemcap-be-common",
3
- "version": "1.5.96",
3
+ "version": "1.5.98",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {