Vorschläge
This commit is contained in:
@@ -60,6 +60,17 @@ export interface AddListItemRequest {
|
||||
required?: boolean;
|
||||
}
|
||||
|
||||
export interface ListItemSuggestion {
|
||||
title: string;
|
||||
notes?: string;
|
||||
quantity?: number;
|
||||
required: boolean;
|
||||
}
|
||||
|
||||
export interface ListItemSuggestionsResponse {
|
||||
suggestions: ListItemSuggestion[];
|
||||
}
|
||||
|
||||
export interface UpdateListItemRequest {
|
||||
title?: string;
|
||||
notes?: string;
|
||||
|
||||
Reference in New Issue
Block a user