* create empty service * getting threads is working * insert message channel * save threads in the db * clean * fetch messages * create a service to fetch a batch of messages * batch messages * use httpService instead * parse batch * base 64 decoding working * solve parsing bug * saving messages is working * bug to fix in fetchAllByBatches * fetching all messages is working but not saving yet * fecth 500 messages and threads is working * remove unused package and console log * set direction to incoming * fix bug after merging main
15 lines
739 B
TypeScript
15 lines
739 B
TypeScript
import { Module } from '@nestjs/common';
|
|
|
|
import { TypeORMModule } from 'src/database/typeorm/typeorm.module';
|
|
import { EnvironmentModule } from 'src/integrations/environment/environment.module';
|
|
import { DataSourceModule } from 'src/metadata/data-source/data-source.module';
|
|
import { FetchBatchMessagesService } from 'src/workspace/messaging/services/fetch-batch-messages.service';
|
|
import { FetchWorkspaceMessagesService } from 'src/workspace/messaging/services/fetch-workspace-messages.service';
|
|
|
|
@Module({
|
|
imports: [TypeORMModule, DataSourceModule, EnvironmentModule],
|
|
providers: [FetchWorkspaceMessagesService, FetchBatchMessagesService],
|
|
exports: [FetchWorkspaceMessagesService],
|
|
})
|
|
export class FetchWorkspaceMessagesModule {}
|