gemcap-be-common 1.5.32 → 1.5.34
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.
|
@@ -27,6 +27,7 @@ export declare const EVENT_KEYS: {
|
|
|
27
27
|
*/
|
|
28
28
|
readonly crm: {
|
|
29
29
|
readonly PROSPECT_EMAILS_SEND_REQUESTED: "crm.prospect.emails.requested";
|
|
30
|
+
readonly PROSPECT_PAYMENT_MATCHED: "crm.prospect.payment-matched";
|
|
30
31
|
};
|
|
31
32
|
/**
|
|
32
33
|
* ========= FINANCE DOMAIN EVENTS =========
|
|
@@ -30,6 +30,7 @@ exports.EVENT_KEYS = {
|
|
|
30
30
|
*/
|
|
31
31
|
crm: {
|
|
32
32
|
PROSPECT_EMAILS_SEND_REQUESTED: 'crm.prospect.emails.requested',
|
|
33
|
+
PROSPECT_PAYMENT_MATCHED: 'crm.prospect.payment-matched',
|
|
33
34
|
},
|
|
34
35
|
/**
|
|
35
36
|
* ========= FINANCE DOMAIN EVENTS =========
|
|
@@ -59,5 +60,5 @@ exports.EVENT_KEYS = {
|
|
|
59
60
|
EMAIL_SEND_REQUESTED: 'notifications.email.send.requested',
|
|
60
61
|
EMAIL_SENT: 'notifications.email.sent',
|
|
61
62
|
EMAIL_FAILED: 'notifications.email.failed',
|
|
62
|
-
}
|
|
63
|
+
},
|
|
63
64
|
};
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
type TEventKey = (typeof EVENT_KEYS)[keyof typeof EVENT_KEYS][keyof (typeof EVENT_KEYS)[keyof typeof EVENT_KEYS]];
|
|
2
|
+
|
|
1
3
|
export const EVENT_KEYS = {
|
|
2
4
|
/**
|
|
3
5
|
* ========= AI DOMAIN EVENTS =========
|
|
@@ -30,6 +32,7 @@ export const EVENT_KEYS = {
|
|
|
30
32
|
*/
|
|
31
33
|
crm: {
|
|
32
34
|
PROSPECT_EMAILS_SEND_REQUESTED: 'crm.prospect.emails.requested',
|
|
35
|
+
PROSPECT_PAYMENT_MATCHED: 'crm.prospect.payment-matched',
|
|
33
36
|
},
|
|
34
37
|
|
|
35
38
|
/**
|
|
@@ -62,5 +65,5 @@ export const EVENT_KEYS = {
|
|
|
62
65
|
EMAIL_SEND_REQUESTED: 'notifications.email.send.requested',
|
|
63
66
|
EMAIL_SENT: 'notifications.email.sent',
|
|
64
67
|
EMAIL_FAILED: 'notifications.email.failed',
|
|
65
|
-
}
|
|
68
|
+
},
|
|
66
69
|
} as const;
|