refactor prices schema, add missing shared files

This commit is contained in:
Jurgis Sakalauskas
2025-10-14 13:30:44 +03:00
parent b20ab30ece
commit 1039c90918
13 changed files with 161 additions and 401 deletions
+14
View File
@@ -0,0 +1,14 @@
export type PriceCondition = 'new' | 'used';
export interface ItemPrice {
id: string;
itemId: string;
condition: PriceCondition;
amount: number;
currency: string;
sourceUrlId: string | null;
sourceUrl: string | null;
note: string | null;
createdAt: string;
updatedAt: string;
}