codegen - no more persons

This commit is contained in:
jableader 2025-11-01 19:57:58 +11:00
parent ddad070eb7
commit 166dc04948

View file

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