summary refs log tree commit diff
path: root/src/schemas/responses
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2025-07-27 13:50:42 +0200
committerRory& <root@rory.gay>2025-12-17 11:46:31 +0100
commit681efaa2159c875ab8bfaedc61883424e6113fe9 (patch)
treec5f1689543e097d655cc83fdabcd35c91260ef41 /src/schemas/responses
parentSetting protos support (diff)
downloadserver-ts-github/emma/schema-updates_wip.tar.xz
Diffstat (limited to 'src/schemas/responses')
-rw-r--r--src/schemas/responses/CollectiblesShopResponse.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/schemas/responses/CollectiblesShopResponse.ts b/src/schemas/responses/CollectiblesShopResponse.ts

index b739fe0c..fadc6e48 100644 --- a/src/schemas/responses/CollectiblesShopResponse.ts +++ b/src/schemas/responses/CollectiblesShopResponse.ts
@@ -25,12 +25,12 @@ export interface CollectiblesShopResponse { export type AnyShopBlock = ItemRowShopBlock | BundleTileRowShopBlock | ItemCollectionShopBlock; -export interface BaseShopBlock { +export class BaseShopBlock { type: number; } -export interface ItemRowShopBlock extends BaseShopBlock { - type: 0; +export class ItemRowShopBlock extends BaseShopBlock { + declare type: 0; category_sku_id: string; name: string; category_store_listing_id: string;