mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-03 13:19:16 -05:00
updated openapi generator
This commit is contained in:
@@ -84,7 +84,7 @@ export interface PatchedExportLog {
|
||||
/**
|
||||
* Check if a given object implements the PatchedExportLog interface.
|
||||
*/
|
||||
export function instanceOfPatchedExportLog(value: object): boolean {
|
||||
export function instanceOfPatchedExportLog(value: object): value is PatchedExportLog {
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -111,7 +111,7 @@ export function PatchedExportLogFromJSONTyped(json: any, ignoreDiscriminator: bo
|
||||
};
|
||||
}
|
||||
|
||||
export function PatchedExportLogToJSON(value?: PatchedExportLog | null): any {
|
||||
export function PatchedExportLogToJSON(value?: Omit<PatchedExportLog, 'created_by'|'created_at'> | null): any {
|
||||
if (value == null) {
|
||||
return value;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user