UNPKG

@scuticode/shop-sdk

Version:

ScutiCode shop sdk

23 lines (22 loc) 458 B
export interface CatalogItem { id: number; name: string; description: string; price: number; pictures: CatalogPicture[]; TypeId: number; type: string; brandId: number; brand: string; availableStock: number; restockThreshold: number; maxStockThreshold: number; onReorder: boolean; } export interface CatalogPicture { id: number; url: string; } export interface GetItemsRequest { text: string; }