mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-02 20:59:28 -05:00
updated openapi generator
This commit is contained in:
@@ -128,10 +128,12 @@ export interface PatchedOpenDataUnit {
|
||||
readonly createdBy?: string;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Check if a given object implements the PatchedOpenDataUnit interface.
|
||||
*/
|
||||
export function instanceOfPatchedOpenDataUnit(value: object): boolean {
|
||||
export function instanceOfPatchedOpenDataUnit(value: object): value is PatchedOpenDataUnit {
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -157,7 +159,7 @@ export function PatchedOpenDataUnitFromJSONTyped(json: any, ignoreDiscriminator:
|
||||
};
|
||||
}
|
||||
|
||||
export function PatchedOpenDataUnitToJSON(value?: PatchedOpenDataUnit | null): any {
|
||||
export function PatchedOpenDataUnitToJSON(value?: Omit<PatchedOpenDataUnit, 'created_by'> | null): any {
|
||||
if (value == null) {
|
||||
return value;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user