* Add Enrich to frontend * Naive backend implementation * Add work email check * Rename Enrich to Quick Action * Refactor logic to a separate service * Refacto to separate IntelligenceService * Small fixes * Missing Break statement * Address PR comments * Create company interface * Improve edge case handling * Use httpService instead of Axios * Fix server tests
16 lines
400 B
TypeScript
16 lines
400 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { HttpModule } from '@nestjs/axios';
|
|
|
|
import { AnalyticsService } from './analytics.service';
|
|
import { AnalyticsResolver } from './analytics.resolver';
|
|
|
|
@Module({
|
|
providers: [AnalyticsResolver, AnalyticsService],
|
|
imports: [
|
|
HttpModule.register({
|
|
baseURL: 'https://t.twenty.com/api/v1/s2s',
|
|
}),
|
|
],
|
|
})
|
|
export class AnalyticsModule {}
|