mirror of
https://github.com/sakaljurgis/best-choice.git
synced 2026-07-08 21:47:40 +00:00
refactor prices schema, add missing shared files
This commit is contained in:
Vendored
+14
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user