Skip to content

Commit

Permalink
Merge pull request #228 from Hexastack/227-bug-settings-events-types
Browse files Browse the repository at this point in the history
fix(api): settings types
  • Loading branch information
marrouchi authored Oct 18, 2024
2 parents 06f481c + 0766b92 commit f68ef8a
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 26 deletions.
44 changes: 22 additions & 22 deletions api/src/eventemitter.d.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import { type OnEventOptions } from '@nestjs/event-emitter/dist/interfaces';
import type { TFilterQuery, HydratedDocument, Query, Document } from 'mongoose';
import type { Document, HydratedDocument, Query, TFilterQuery } from 'mongoose';
import { type Socket } from 'socket.io';

import { type BotStats } from '@/analytics/schemas/bot-stats.schema';
import { type Attachment } from '@/attachment/schemas/attachment.schema';
import type EventWrapper from '@/channel/lib/EventWrapper';
import { type Block, BlockFull } from '@/chat/schemas/block.schema';
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';
Expand All @@ -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';
Expand Down Expand Up @@ -64,33 +64,33 @@ declare module '@nestjs/event-emitter' {
chatbot_settings: TDefinition<
object,
{
global_fallback: unknown;
fallback_block: unknown;
fallback_message: unknown;
global_fallback: Setting;
fallback_block: Setting;
fallback_message: Setting;
}
>;
contact: TDefinition<
object,
{
contact_email_recipient: unknown;
company_name: unknown;
company_phone: unknown;
company_email: unknown;
company_address1: unknown;
company_address2: unknown;
company_city: unknown;
company_zipcode: unknown;
company_state: unknown;
company_country: unknown;
contact_email_recipient: Setting;
company_name: Setting;
company_phone: Setting;
company_email: Setting;
company_address1: Setting;
company_address2: Setting;
company_city: Setting;
company_zipcode: Setting;
company_state: Setting;
company_country: Setting;
}
>;
nlp_settings: TDefinition<
object,
{
provider: unknown;
endpoint: unknown;
token: unknown;
threshold: number;
provider: Setting;
endpoint: Setting;
token: Setting;
threshold: Setting;
}
>;
}
Expand Down
12 changes: 8 additions & 4 deletions api/src/setting/repositories/setting.repository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@
*/

import { Injectable } from '@nestjs/common';
import { EventEmitter2 } from '@nestjs/event-emitter';
import {
EventEmitter2,
IHookSettingsGroupLabelOperationMap,
} from '@nestjs/event-emitter';
import { InjectModel } from '@nestjs/mongoose';
import { Document, Model, Query, Types } from 'mongoose';

Expand Down Expand Up @@ -78,9 +81,10 @@ export class SettingRepository extends BaseRepository<Setting> {
>,
setting: Setting,
) {
const group = setting.group as any;
const label = setting.label as string;
const group = setting.group as keyof IHookSettingsGroupLabelOperationMap;
const label = setting.label as '*';

// Sync global settings var
this.eventEmitter.emit(`hook:${group}:${label}`, setting as any);
this.eventEmitter.emit(`hook:${group}:${label}`, setting);
}
}

0 comments on commit f68ef8a

Please sign in to comment.