applied custom openapi generator fix for omit generation

This commit is contained in:
vabene1111
2025-03-16 15:38:37 +01:00
parent e9f87bb475
commit 8eb2ba9512
166 changed files with 1125 additions and 1519 deletions

View File

@@ -79,15 +79,10 @@ export function SyncLogFromJSONTyped(json: any, ignoreDiscriminator: boolean): S
};
}
export function SyncLogToJSON(json: any): SyncLog {
return SyncLogToJSONTyped(json, false);
}
export function SyncLogToJSONTyped(value?: Omit<SyncLog, 'created_at'> | null, ignoreDiscriminator: boolean = false): any {
export function SyncLogToJSON(value?: Omit<SyncLog, 'createdAt'> | null): any {
if (value == null) {
return value;
}
return {
'id': value['id'],