fixed api client generation

This commit is contained in:
vabene1111
2024-04-22 19:33:09 +02:00
parent c47e46263c
commit 12cf9da8fc
145 changed files with 914 additions and 175 deletions

View File

@@ -62,6 +62,12 @@ export interface PatchedRecipeBookRequest {
* @memberof PatchedRecipeBookRequest
*/
order?: number;
/**
*
* @type {number}
* @memberof PatchedRecipeBookRequest
*/
id?: number;
}
/**
@@ -86,6 +92,7 @@ export function PatchedRecipeBookRequestFromJSONTyped(json: any, ignoreDiscrimin
'shared': json['shared'] == null ? undefined : ((json['shared'] as Array<any>).map(UserRequestFromJSON)),
'filter': json['filter'] == null ? undefined : CustomFilterRequestFromJSON(json['filter']),
'order': json['order'] == null ? undefined : json['order'],
'id': json['id'] == null ? undefined : json['id'],
};
}
@@ -100,6 +107,7 @@ export function PatchedRecipeBookRequestToJSON(value?: PatchedRecipeBookRequest
'shared': value['shared'] == null ? undefined : ((value['shared'] as Array<any>).map(UserRequestToJSON)),
'filter': CustomFilterRequestToJSON(value['filter']),
'order': value['order'],
'id': value['id'],
};
}