This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

refactor: update WorkerServices interface with sagaStateStore

Co-authored-by: aider (anthropic/claude-sonnet-4-20250514) <aider@aider.chat>

+2 -1
+2 -1
src/shared/infrastructure/http/factories/ServiceFactory.ts
··· 53 53 import { CookieService } from '../services/CookieService'; 54 54 import { InMemorySagaStateStore } from '../../../../modules/feeds/infrastructure/InMemorySagaStateStore'; 55 55 import { RedisSagaStateStore } from '../../../../modules/feeds/infrastructure/RedisSagaStateStore'; 56 + import { ISagaStateStore } from 'src/modules/feeds/application/sagas/ISagaStateStore'; 56 57 57 58 // Shared services needed by both web app and workers 58 59 export interface SharedServices { ··· 86 87 redisConnection: Redis | null; 87 88 eventPublisher: IEventPublisher; 88 89 createEventSubscriber: (queueName: QueueName) => IEventSubscriber; 89 - cardCollectionSaga: CardCollectionSaga; 90 + sagaStateStore: ISagaStateStore; 90 91 } 91 92 92 93 // Legacy interface for backward compatibility