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?: 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: {