gemcap-be-common 1.4.136 → 1.4.138
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 +5 -0
- package/microservice/events.constants.js +5 -0
- package/microservice/events.constants.ts +5 -0
- package/microservice/queues.constants.d.ts +21 -0
- package/microservice/queues.constants.js +24 -0
- package/microservice/queues.constants.ts +21 -0
- package/microservice/task-envelope.type.d.ts +6 -0
- package/microservice/task-envelope.type.js +2 -0
- package/microservice/task-envelope.type.ts +6 -0
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -2,6 +2,11 @@ export declare const EVENT_KEYS: {
|
|
|
2
2
|
readonly email: {
|
|
3
3
|
readonly INBOUND_RECEIVED: "email.inbound.received";
|
|
4
4
|
};
|
|
5
|
+
readonly compliance: {
|
|
6
|
+
readonly FIND_MATCH_REQUESTED: "compliance.find-match.requested";
|
|
7
|
+
readonly SUMMARY_REQUESTED: "compliance.summary.requested";
|
|
8
|
+
readonly SUMMARY_GENERATED: "compliance.summary.generated";
|
|
9
|
+
};
|
|
5
10
|
readonly finance: {
|
|
6
11
|
readonly REPORT_PER_ACCOUNT_REQUESTED: "finance.report.account.requested";
|
|
7
12
|
readonly REPORT_CONSOLIDATED_REQUESTED: "finance.report.consolidated.requested";
|
|
@@ -5,6 +5,11 @@ exports.EVENT_KEYS = {
|
|
|
5
5
|
email: {
|
|
6
6
|
INBOUND_RECEIVED: 'email.inbound.received',
|
|
7
7
|
},
|
|
8
|
+
compliance: {
|
|
9
|
+
FIND_MATCH_REQUESTED: 'compliance.find-match.requested',
|
|
10
|
+
SUMMARY_REQUESTED: 'compliance.summary.requested',
|
|
11
|
+
SUMMARY_GENERATED: 'compliance.summary.generated',
|
|
12
|
+
},
|
|
8
13
|
finance: {
|
|
9
14
|
REPORT_PER_ACCOUNT_REQUESTED: 'finance.report.account.requested',
|
|
10
15
|
REPORT_CONSOLIDATED_REQUESTED: 'finance.report.consolidated.requested',
|
|
@@ -2,6 +2,11 @@ export const EVENT_KEYS = {
|
|
|
2
2
|
email: {
|
|
3
3
|
INBOUND_RECEIVED: 'email.inbound.received',
|
|
4
4
|
},
|
|
5
|
+
compliance: {
|
|
6
|
+
FIND_MATCH_REQUESTED: 'compliance.find-match.requested',
|
|
7
|
+
SUMMARY_REQUESTED: 'compliance.summary.requested',
|
|
8
|
+
SUMMARY_GENERATED: 'compliance.summary.generated',
|
|
9
|
+
},
|
|
5
10
|
finance: {
|
|
6
11
|
REPORT_PER_ACCOUNT_REQUESTED: 'finance.report.account.requested',
|
|
7
12
|
REPORT_CONSOLIDATED_REQUESTED: 'finance.report.consolidated.requested',
|
|
@@ -0,0 +1,21 @@
|
|
|
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 email: {
|
|
11
|
+
readonly inbound: {
|
|
12
|
+
readonly processing: "email.inbound.processing";
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
readonly finance: {
|
|
16
|
+
readonly reports: {
|
|
17
|
+
readonly perAccount: "finance.report.per-account";
|
|
18
|
+
readonly consolidated: "finance.report.consolidated";
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
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
|
+
email: {
|
|
14
|
+
inbound: {
|
|
15
|
+
processing: 'email.inbound.processing',
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
finance: {
|
|
19
|
+
reports: {
|
|
20
|
+
perAccount: 'finance.report.per-account',
|
|
21
|
+
consolidated: 'finance.report.consolidated',
|
|
22
|
+
},
|
|
23
|
+
},
|
|
24
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
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
|
+
email: {
|
|
11
|
+
inbound: {
|
|
12
|
+
processing: 'email.inbound.processing',
|
|
13
|
+
},
|
|
14
|
+
},
|
|
15
|
+
finance: {
|
|
16
|
+
reports: {
|
|
17
|
+
perAccount: 'finance.report.per-account',
|
|
18
|
+
consolidated: 'finance.report.consolidated',
|
|
19
|
+
},
|
|
20
|
+
},
|
|
21
|
+
} as const;
|