update price display

This commit is contained in:
Jurgis Sakalauskas
2025-10-13 20:28:15 +03:00
parent 7bc38e9a6e
commit 3ac7e9183f
6 changed files with 3747 additions and 121 deletions
+8
View File
@@ -23,6 +23,14 @@ export interface ItemPriceSummary {
currency: string | null;
priceCount: number;
hasMixedCurrency: boolean;
newMinAmount: number | null;
newCount: number;
newCurrency: string | null;
newHasMixedCurrency: boolean;
usedMinAmount: number | null;
usedCount: number;
usedCurrency: string | null;
usedHasMixedCurrency: boolean;
}
interface ListResponseMeta {