This repository has no description
0

Configure Feed

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

minor type update to repo implementation

+2 -1
+2 -1
src/modules/cards/infrastructure/repositories/DrizzleCardQueryRepository.ts
··· 8 8 UrlCardViewDTO, 9 9 LibraryForUrlDTO, 10 10 NoteCardForUrlRawDTO, 11 + UrlCardView, 11 12 } from '../../domain/ICardQueryRepository'; 12 13 import { UrlCardQueryService } from './query-services/UrlCardQueryService'; 13 14 import { CollectionCardQueryService } from './query-services/CollectionCardQueryService'; ··· 61 62 async getUrlCardBasic( 62 63 cardId: string, 63 64 callingUserId?: string, 64 - ): Promise<UrlCardViewDTO | null> { 65 + ): Promise<UrlCardView | null> { 65 66 return this.urlCardQueryService.getUrlCardBasic(cardId, callingUserId); 66 67 } 67 68