feat: update CatalogueSearchResult types

This commit is contained in:
Zamitto
2025-06-03 16:22:21 -03:00
parent 0c379d6c49
commit 0b2d4e2ba0

View File

@@ -322,15 +322,11 @@ export interface CatalogueSearchPayload {
export type CatalogueSearchResult = { export type CatalogueSearchResult = {
id: string; id: string;
tags: string[];
genres: string[];
objectId: string; objectId: string;
shop: GameShop;
title: string; title: string;
installCount: number; shop: GameShop;
achievementCount: number; genres: string[];
shopData: string; } & Pick<ShopAssets, "libraryImageUrl">;
} & ShopAssets;
export type LibraryGame = Game & export type LibraryGame = Game &
Partial<ShopAssets> & { Partial<ShopAssets> & {