Merge pull request #300 from Hexastack/fix/event-emitter-preupdate

Fix/event emitter preupdate
This commit is contained in:
Med Marrouchi 2024-10-30 14:41:01 +01:00 committed by GitHub
commit 1792b125d3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

4
api/package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "hexabot",
"version": "2.0.8",
"version": "2.0.9",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "hexabot",
"version": "2.0.8",
"version": "2.0.9",
"hasInstallScript": true,
"license": "AGPL-3.0-only",
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "hexabot",
"version": "2.0.8",
"version": "2.0.9",
"description": "Hexabot is a solution for creating and managing chatbots across multiple channels, leveraging AI for advanced conversational capabilities. It provides a user-friendly interface for building, training, and deploying chatbots with integrated support for various messaging platforms.",
"author": "Hexastack",
"license": "AGPL-3.0-only",

View File

@ -251,7 +251,7 @@ declare module '@nestjs/event-emitter' {
[EHook.preCreate]: TPreCreate<T>;
}
| {
[EHook.preUpdate]: TPostUpdate<T>;
[EHook.preUpdate]: TPreUpdate<T>;
}
| {
[EHook.preDelete]: TPreDelete<T>;