gemcap-be-common 1.4.183 → 1.4.185
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 +2 -0
- package/microservice/channels.constants.js +2 -0
- package/microservice/channels.constants.ts +2 -0
- package/microservice/events.constants.d.ts +8 -0
- package/microservice/events.constants.js +8 -0
- package/microservice/events.constants.ts +9 -0
- package/microservice/queue-map.d.ts +1 -0
- package/microservice/queue-map.js +1 -0
- package/microservice/queue-map.ts +1 -0
- package/microservice/queues.constants.d.ts +5 -0
- package/microservice/queues.constants.js +5 -0
- package/microservice/queues.constants.ts +5 -0
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -30,5 +30,13 @@ export declare const EVENT_KEYS: {
|
|
|
30
30
|
readonly SUMMARY_GENERATED: "portfolio.summary.generated";
|
|
31
31
|
readonly NOTE_SUMMARY_REQUESTED: "portfolio.note.summary.requested";
|
|
32
32
|
readonly NOTE_SUMMARY_GENERATED: "portfolio.note.summary.generated";
|
|
33
|
+
readonly BORROWER_REMINDERS_OVERDUE: "portfolio.borrower.reminders.overdue";
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* ========= NOTIFICATIONS DOMAIN EVENTS =========
|
|
37
|
+
*/
|
|
38
|
+
readonly notifications: {
|
|
39
|
+
readonly BORROWER_REMINDER_EMAIL_SENT: "notifications.borrower.reminder.email.sent";
|
|
40
|
+
readonly BORROWER_REMINDER_EMAIL_FAILED: "notifications.borrower.reminder.email.failed";
|
|
33
41
|
};
|
|
34
42
|
};
|
|
@@ -33,5 +33,13 @@ exports.EVENT_KEYS = {
|
|
|
33
33
|
SUMMARY_GENERATED: 'portfolio.summary.generated',
|
|
34
34
|
NOTE_SUMMARY_REQUESTED: 'portfolio.note.summary.requested',
|
|
35
35
|
NOTE_SUMMARY_GENERATED: 'portfolio.note.summary.generated',
|
|
36
|
+
BORROWER_REMINDERS_OVERDUE: 'portfolio.borrower.reminders.overdue',
|
|
36
37
|
},
|
|
38
|
+
/**
|
|
39
|
+
* ========= NOTIFICATIONS DOMAIN EVENTS =========
|
|
40
|
+
*/
|
|
41
|
+
notifications: {
|
|
42
|
+
BORROWER_REMINDER_EMAIL_SENT: 'notifications.borrower.reminder.email.sent',
|
|
43
|
+
BORROWER_REMINDER_EMAIL_FAILED: 'notifications.borrower.reminder.email.failed',
|
|
44
|
+
}
|
|
37
45
|
};
|
|
@@ -33,5 +33,14 @@ export const EVENT_KEYS = {
|
|
|
33
33
|
SUMMARY_GENERATED: 'portfolio.summary.generated',
|
|
34
34
|
NOTE_SUMMARY_REQUESTED: 'portfolio.note.summary.requested',
|
|
35
35
|
NOTE_SUMMARY_GENERATED: 'portfolio.note.summary.generated',
|
|
36
|
+
BORROWER_REMINDERS_OVERDUE: 'portfolio.borrower.reminders.overdue',
|
|
36
37
|
},
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* ========= NOTIFICATIONS DOMAIN EVENTS =========
|
|
41
|
+
*/
|
|
42
|
+
notifications: {
|
|
43
|
+
BORROWER_REMINDER_EMAIL_SENT: 'notifications.borrower.reminder.email.sent',
|
|
44
|
+
BORROWER_REMINDER_EMAIL_FAILED: 'notifications.borrower.reminder.email.failed',
|
|
45
|
+
}
|
|
37
46
|
} as const;
|
|
@@ -7,6 +7,7 @@ export declare const QueueMap: {
|
|
|
7
7
|
readonly portfolio: "goat_ms_portfolio";
|
|
8
8
|
readonly search: "goat_ms_search";
|
|
9
9
|
readonly ai: "goat_ms_ai";
|
|
10
|
+
readonly notifications: "goat_ms_notifications";
|
|
10
11
|
};
|
|
11
12
|
export type QueueMapType = typeof QueueMap;
|
|
12
13
|
export type QueueName = QueueMapType[keyof QueueMapType];
|
|
@@ -7,6 +7,7 @@ export const QueueMap = {
|
|
|
7
7
|
portfolio: 'goat_ms_portfolio', // goat_ms_portfolio
|
|
8
8
|
search: 'goat_ms_search', // goat_ms_search
|
|
9
9
|
ai: 'goat_ms_ai', // goat_ms_ai
|
|
10
|
+
notifications: 'goat_ms_notifications', // goat_ms_notifications
|
|
10
11
|
} as const;
|
|
11
12
|
|
|
12
13
|
export type QueueMapType = typeof QueueMap;
|