codegen - no more persons
This commit is contained in:
parent
ddad070eb7
commit
166dc04948
1 changed files with 5 additions and 15 deletions
|
|
@ -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: {
|
||||
|
|
|
|||
Loading…
Reference in a new issue