diff --git a/src/api/types.ts b/src/api/types.ts index 631050b..d9d8dee 100644 --- a/src/api/types.ts +++ b/src/api/types.ts @@ -597,11 +597,11 @@ export interface components { /** Consumeddate */ consumedDate?: string | null; /** Chefs */ - chefs?: components["schemas"]["Person"][]; + chefs?: components["schemas"]["MemberRef"][]; /** Cleanup */ - cleanup?: components["schemas"]["Person"][]; + cleanup?: components["schemas"]["MemberRef"][]; /** Consumers */ - consumers?: components["schemas"]["Person"][]; + consumers?: components["schemas"]["MemberRef"][]; /** Recipes */ recipes?: components["schemas"]["MealRecipe"][]; /** Extraingredients */ @@ -721,16 +721,6 @@ export interface components { */ total: number; }; - /** Person */ - Person: { - /** - * Id - * @default -1 - */ - id: number; - /** Name */ - name: string; - }; /** ProblemDetails */ ProblemDetails: { /** @@ -821,12 +811,12 @@ export interface components { dateCreated?: string; /** Createdbyid */ createdById: number; - createdBy?: components["schemas"]["Person"] | null; + createdBy?: components["schemas"]["MemberRef"] | null; /** Datehidden */ dateHidden?: string | null; /** Hiddenbyid */ hiddenById?: number | null; - hiddenBy?: components["schemas"]["Person"] | null; + hiddenBy?: components["schemas"]["MemberRef"] | null; }; /** RecipeCreate */ RecipeCreate: {