gemcap-be-common 1.4.135 → 1.4.137

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.
@@ -0,0 +1,5 @@
1
+ export declare const MESSAGE_CHANNELS: {
2
+ readonly AI: "ai.exchange";
3
+ readonly EMAIL: "email.exchange";
4
+ readonly FINANCE: "finance.exchange";
5
+ };
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MESSAGE_CHANNELS = void 0;
4
+ exports.MESSAGE_CHANNELS = {
5
+ AI: 'ai.exchange',
6
+ EMAIL: 'email.exchange',
7
+ FINANCE: 'finance.exchange',
8
+ };
@@ -0,0 +1,5 @@
1
+ export const MESSAGE_CHANNELS = {
2
+ AI: 'ai.exchange',
3
+ EMAIL: 'email.exchange',
4
+ FINANCE: 'finance.exchange',
5
+ } as const;
@@ -44,9 +44,6 @@ export declare const EventMap: {
44
44
  readonly BACKUP: "database#BACKUP";
45
45
  readonly RESTORE: "database#RESTORE";
46
46
  };
47
- readonly finance: {
48
- readonly GENERATE_BANK_UPLOAD_REPORT: "finance#GENERATE_BANK_UPLOAD_REPORT";
49
- };
50
47
  readonly notification: {
51
48
  readonly SEND_EMAIL: "notification#SEND_EMAIL";
52
49
  };
@@ -47,9 +47,6 @@ exports.EventMap = {
47
47
  BACKUP: 'database#BACKUP',
48
48
  RESTORE: 'database#RESTORE',
49
49
  },
50
- finance: {
51
- GENERATE_BANK_UPLOAD_REPORT: 'finance#GENERATE_BANK_UPLOAD_REPORT',
52
- },
53
50
  notification: {
54
51
  SEND_EMAIL: 'notification#SEND_EMAIL',
55
52
  },
@@ -44,9 +44,6 @@ export const EventMap = {
44
44
  BACKUP: 'database#BACKUP',
45
45
  RESTORE: 'database#RESTORE',
46
46
  },
47
- finance: {
48
- GENERATE_BANK_UPLOAD_REPORT: 'finance#GENERATE_BANK_UPLOAD_REPORT',
49
- },
50
47
  notification: {
51
48
  SEND_EMAIL: 'notification#SEND_EMAIL',
52
49
  },
@@ -0,0 +1,14 @@
1
+ export declare const EVENT_KEYS: {
2
+ readonly email: {
3
+ readonly INBOUND_RECEIVED: "email.inbound.received";
4
+ };
5
+ readonly finance: {
6
+ readonly REPORT_PER_ACCOUNT_REQUESTED: "finance.report.account.requested";
7
+ readonly REPORT_CONSOLIDATED_REQUESTED: "finance.report.consolidated.requested";
8
+ };
9
+ readonly compliance: {
10
+ readonly FIND_MATCH_REQUESTED: "compliance.find-match.requested";
11
+ readonly SUMMARY_REQUESTED: "compliance.summary.requested";
12
+ readonly SUMMARY_GENERATED: "compliance.summary.generated";
13
+ };
14
+ };
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.EVENT_KEYS = void 0;
4
+ exports.EVENT_KEYS = {
5
+ email: {
6
+ INBOUND_RECEIVED: 'email.inbound.received',
7
+ },
8
+ finance: {
9
+ REPORT_PER_ACCOUNT_REQUESTED: 'finance.report.account.requested',
10
+ REPORT_CONSOLIDATED_REQUESTED: 'finance.report.consolidated.requested',
11
+ },
12
+ compliance: {
13
+ FIND_MATCH_REQUESTED: 'compliance.find-match.requested',
14
+ SUMMARY_REQUESTED: 'compliance.summary.requested',
15
+ SUMMARY_GENERATED: 'compliance.summary.generated',
16
+ },
17
+ };
@@ -0,0 +1,14 @@
1
+ export const EVENT_KEYS = {
2
+ email: {
3
+ INBOUND_RECEIVED: 'email.inbound.received',
4
+ },
5
+ finance: {
6
+ REPORT_PER_ACCOUNT_REQUESTED: 'finance.report.account.requested',
7
+ REPORT_CONSOLIDATED_REQUESTED: 'finance.report.consolidated.requested',
8
+ },
9
+ compliance: {
10
+ FIND_MATCH_REQUESTED: 'compliance.find-match.requested',
11
+ SUMMARY_REQUESTED: 'compliance.summary.requested',
12
+ SUMMARY_GENERATED: 'compliance.summary.generated',
13
+ },
14
+ } as const;
@@ -0,0 +1,16 @@
1
+ export declare const QUEUES: {
2
+ readonly ai: {
3
+ readonly compliance: {
4
+ readonly main: "ai.compliance.main";
5
+ readonly findMatch: "ai.compliance.find-match";
6
+ readonly summary: "ai.compliance.summary";
7
+ readonly summaryResults: "ai.compliance.summary-results";
8
+ };
9
+ };
10
+ readonly finance: {
11
+ readonly reports: {
12
+ readonly perAccount: "finance.report.per-account";
13
+ readonly consolidated: "finance.report.consolidated";
14
+ };
15
+ };
16
+ };
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.QUEUES = void 0;
4
+ exports.QUEUES = {
5
+ ai: {
6
+ compliance: {
7
+ main: 'ai.compliance.main',
8
+ findMatch: 'ai.compliance.find-match',
9
+ summary: 'ai.compliance.summary',
10
+ summaryResults: 'ai.compliance.summary-results',
11
+ },
12
+ },
13
+ finance: {
14
+ reports: {
15
+ perAccount: 'finance.report.per-account',
16
+ consolidated: 'finance.report.consolidated',
17
+ },
18
+ },
19
+ };
@@ -0,0 +1,16 @@
1
+ export const QUEUES = {
2
+ ai: {
3
+ compliance: {
4
+ main: 'ai.compliance.main',
5
+ findMatch: 'ai.compliance.find-match',
6
+ summary: 'ai.compliance.summary',
7
+ summaryResults: 'ai.compliance.summary-results',
8
+ },
9
+ },
10
+ finance: {
11
+ reports: {
12
+ perAccount: 'finance.report.per-account',
13
+ consolidated: 'finance.report.consolidated',
14
+ },
15
+ },
16
+ } as const;
@@ -0,0 +1,6 @@
1
+ export type TTaskEnvelope<T> = {
2
+ taskId: string;
3
+ createdAt: string;
4
+ source: string;
5
+ payload: T;
6
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,6 @@
1
+ export type TTaskEnvelope<T> = {
2
+ taskId: string;
3
+ createdAt: string;
4
+ source: string;
5
+ payload: T;
6
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gemcap-be-common",
3
- "version": "1.4.135",
3
+ "version": "1.4.137",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {