feat: add call lookup endpoint with lead matching + AI enrichment, token passthrough on platform service

This commit is contained in:
2026-03-18 09:11:15 +05:30
parent ccb4bc4ea6
commit 22ac383107
5 changed files with 192 additions and 2 deletions

View File

@@ -3,9 +3,11 @@ import { PlatformModule } from '../platform/platform.module';
import { AiModule } from '../ai/ai.module';
import { CallEventsService } from './call-events.service';
import { CallEventsGateway } from './call-events.gateway';
import { CallLookupController } from './call-lookup.controller';
@Module({
imports: [PlatformModule, AiModule],
controllers: [CallLookupController],
providers: [CallEventsService, CallEventsGateway],
exports: [CallEventsService, CallEventsGateway],
})