gemcap-be-common 1.5.33 → 1.5.35
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.ts +2 -0
- package/microservice/events.constants.d.ts +1 -0
- package/microservice/events.constants.js +1 -1
- package/microservice/events.constants.ts +3 -1
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
export 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 =========
|
|
@@ -63,5 +65,5 @@ export const EVENT_KEYS = {
|
|
|
63
65
|
EMAIL_SEND_REQUESTED: 'notifications.email.send.requested',
|
|
64
66
|
EMAIL_SENT: 'notifications.email.sent',
|
|
65
67
|
EMAIL_FAILED: 'notifications.email.failed',
|
|
66
|
-
}
|
|
68
|
+
},
|
|
67
69
|
} as const;
|