From 0766b92eb6b7b65d6c5de0042a240f8abd2491e2 Mon Sep 17 00:00:00 2001 From: yassinedorbozgithub Date: Thu, 17 Oct 2024 06:55:51 +0100 Subject: [PATCH] fix(api): add missing type import --- api/src/eventemitter.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api/src/eventemitter.d.ts b/api/src/eventemitter.d.ts index 6f07012..ba286f4 100644 --- a/api/src/eventemitter.d.ts +++ b/api/src/eventemitter.d.ts @@ -9,7 +9,7 @@ import { BlockFull, type Block } from '@/chat/schemas/block.schema'; import { type Category } from '@/chat/schemas/category.schema'; import { type ContextVar } from '@/chat/schemas/context-var.schema'; import { type Conversation } from '@/chat/schemas/conversation.schema'; -import { LabelDocument, type Label } from '@/chat/schemas/label.schema'; +import type { Label, LabelDocument } from '@/chat/schemas/label.schema'; import { type Message } from '@/chat/schemas/message.schema'; import { type Subscriber } from '@/chat/schemas/subscriber.schema'; import { type ContentType } from '@/cms/schemas/content-type.schema'; @@ -23,9 +23,9 @@ import type { } from '@/nlp/schemas/nlp-entity.schema'; import { type NlpSampleEntity } from '@/nlp/schemas/nlp-sample-entity.schema'; import { type NlpSample } from '@/nlp/schemas/nlp-sample.schema'; -import { +import type { + NlpValue, NlpValueDocument, - type NlpValue, } from '@/nlp/schemas/nlp-value.schema'; import { type Setting } from '@/setting/schemas/setting.schema'; import type { CheckboxSetting, TextSetting } from '@/setting/schemas/types';