gemcap-be-common 1.4.22 → 1.4.23
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/event-map.d.ts +3 -0
- package/microservice/event-map.js +3 -0
- package/microservice/event-map.ts +3 -0
- package/microservice/queue-map.d.ts +1 -0
- package/microservice/queue-map.js +1 -0
- package/microservice/queue-map.ts +1 -0
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -52,6 +52,9 @@ export declare const EventMap: {
|
|
|
52
52
|
readonly SET_NEW_PASSWORD: "auth#SET_NEW_PASSWORD";
|
|
53
53
|
readonly TWO_FA_RESET: "auth#TWO_FA_RESET";
|
|
54
54
|
};
|
|
55
|
+
readonly finance: {
|
|
56
|
+
readonly GENERATE_BANK_UPLOAD_REPORT: "finance#GENERATE_BANK_UPLOAD_REPORT";
|
|
57
|
+
};
|
|
55
58
|
};
|
|
56
59
|
export type EventMapType = typeof EventMap;
|
|
57
60
|
export type EventName = {
|
|
@@ -52,6 +52,9 @@ export const EventMap = {
|
|
|
52
52
|
SET_NEW_PASSWORD: 'auth#SET_NEW_PASSWORD',
|
|
53
53
|
TWO_FA_RESET: 'auth#TWO_FA_RESET',
|
|
54
54
|
},
|
|
55
|
+
finance: {
|
|
56
|
+
GENERATE_BANK_UPLOAD_REPORT: 'finance#GENERATE_BANK_UPLOAD_REPORT',
|
|
57
|
+
},
|
|
55
58
|
} as const;
|
|
56
59
|
|
|
57
60
|
export type EventMapType = typeof EventMap;
|
|
@@ -3,6 +3,7 @@ export declare const QueueMap: {
|
|
|
3
3
|
readonly main_delay: "goat_ms_queue_delay";
|
|
4
4
|
readonly legacy: "goat_ms_legacy_queue";
|
|
5
5
|
readonly auth: "goat_ms_auth";
|
|
6
|
+
readonly finance: "goat_ms_finance";
|
|
6
7
|
};
|
|
7
8
|
export type QueueMapType = typeof QueueMap;
|
|
8
9
|
export type QueueName = QueueMapType[keyof QueueMapType];
|
|
@@ -3,6 +3,7 @@ export const QueueMap = {
|
|
|
3
3
|
main_delay: 'goat_ms_queue_delay', // goat_recalc_delay
|
|
4
4
|
legacy: 'goat_ms_legacy_queue', // goat_legacy_queue
|
|
5
5
|
auth: 'goat_ms_auth', // goat_ms_auth
|
|
6
|
+
finance: 'goat_ms_finance', // goat_ms_finance
|
|
6
7
|
} as const;
|
|
7
8
|
|
|
8
9
|
export type QueueMapType = typeof QueueMap;
|