A social knowledge tool for researchers built on ATProto

update return type of GetUrlCardsResponse to be just UrlCard (without collection info)

Changed files
+1 -1
src
types
src
+1 -1
src/types/src/api/responses.ts
··· 128 128 export interface GetProfileResponse extends User {} 129 129 130 130 export interface GetUrlCardsResponse { 131 - cards: UrlCardWithCollections[]; 131 + cards: UrlCard[]; 132 132 pagination: Pagination; 133 133 sorting: CardSorting; 134 134 }