mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-21 09:03:02 +00:00
refactor: make characteristic a seperate type to allow additional images
This commit is contained in:
committed by
Jovan Krunić
parent
5aaa679d30
commit
d5a0c6ba11
@@ -46,7 +46,7 @@ export interface SCDishWithoutReferences
|
||||
/**
|
||||
* Characteristics of the dish
|
||||
*/
|
||||
characteristics?: string[];
|
||||
characteristics?: Characteristic[];
|
||||
|
||||
/**
|
||||
* Nutrition information (calories and nutrients with amounts)
|
||||
@@ -90,6 +90,28 @@ export interface SCDishTranslatableProperties
|
||||
extends SCThingWithCategoriesTranslatableProperties, SCThingThatCanBeOfferedTranslatableProperties {
|
||||
}
|
||||
|
||||
/**
|
||||
* Composition of properties of a food characteristic
|
||||
*/
|
||||
export interface Characteristic{
|
||||
|
||||
/**
|
||||
* Name of the characteristic
|
||||
*/
|
||||
name: string;
|
||||
|
||||
/**
|
||||
* The superscript text, that will be shown as a reference to this Characteristic
|
||||
*/
|
||||
superscriptText?: string;
|
||||
|
||||
/**
|
||||
* Image of the characteristic
|
||||
*/
|
||||
image?: string;
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Dish meta data
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user