This commit is contained in:
2025-06-16 15:53:57 +02:00
parent c7479b1aa6
commit 35575eda6f
9 changed files with 627 additions and 34 deletions

View File

@ -126,4 +126,34 @@ export type Currencies = {
sign: string;
active: boolean;
suffix: boolean;
}
export type FeatureValue = {
parent: number,
products_with_value: number,
value: string,
value_id: number,
}
export type Feature = {
feature: string,
feature_id: number,
feature_values: FeatureValue[],
products_with_feature: number,
}
export type ProductType = {
applied_tax_rate: number,
cover_picture_uuid: string,
description: string,
formatted_price: string,
id: number,
in_stock: number,
is_sale_active: boolean,
link_rewrite: string,
name: string,
price: number,
tax_name: string,
cart_item_id?: number
product_id?: number
}