add image

This commit is contained in:
Jurgis Sakalauskas
2025-10-16 09:33:41 +03:00
parent cea323ec3b
commit 9cdcd23fd9
16 changed files with 906 additions and 47 deletions
+4
View File
@@ -16,6 +16,8 @@ export interface ItemPriceSummary {
usedHasMixedCurrency: boolean;
}
import type { ItemImage } from './item-image';
export interface Item {
id: string;
projectId: string;
@@ -23,10 +25,12 @@ export interface Item {
model: string;
sourceUrlId: string | null;
sourceUrl: string | null;
defaultImageId: string | null;
status: ItemStatus;
note: string | null;
attributes: Record<string, unknown>;
createdAt: string;
updatedAt: string;
priceSummary: ItemPriceSummary | null;
images?: ItemImage[];
}