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 = {
id: string;
tags: string[];
genres: string[];
objectId: string;
shop: GameShop;
title: string;
installCount: number;
achievementCount: number;
shopData: string;
} & ShopAssets;
shop: GameShop;
genres: string[];
} & Pick<ShopAssets, "libraryImageUrl">;
export type LibraryGame = Game &
Partial<ShopAssets> & {