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.
- package/microservice/channels.constants.d.ts +5 -0
- package/microservice/channels.constants.js +8 -0
- package/microservice/channels.constants.ts +5 -0
- package/microservice/event-map.d.ts +0 -3
- package/microservice/event-map.js +0 -3
- package/microservice/event-map.ts +0 -3
- package/microservice/events.constants.d.ts +14 -0
- package/microservice/events.constants.js +17 -0
- package/microservice/events.constants.ts +14 -0
- package/microservice/queues.constants.d.ts +16 -0
- package/microservice/queues.constants.js +19 -0
- package/microservice/queues.constants.ts +16 -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
|
@@ -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
|
};
|
|
@@ -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;
|