fix: add available_from/available_until to Product type in ProductsClient

This commit is contained in:
2026-06-04 20:26:10 +00:00
parent 0b748adfaa
commit fd9d6424d5
+2
View File
@@ -21,6 +21,8 @@ type Product = {
image_url?: string | null; image_url?: string | null;
brand_id: string; brand_id: string;
is_taxable: boolean; is_taxable: boolean;
available_from?: string | null;
available_until?: string | null;
}; };
type ViewMode = "table" | "cards"; type ViewMode = "table" | "cards";