updated openapi generator

This commit is contained in:
vabene1111
2024-09-23 13:57:37 +02:00
parent 7e77e56e7f
commit 12e0c7fd7b
151 changed files with 1274 additions and 1142 deletions

View File

@@ -30,7 +30,7 @@ export interface PatchedBookmarkletImport {
* @type {string}
* @memberof PatchedBookmarkletImport
*/
url?: string;
url?: string | null;
/**
*
* @type {string}
@@ -54,7 +54,7 @@ export interface PatchedBookmarkletImport {
/**
* Check if a given object implements the PatchedBookmarkletImport interface.
*/
export function instanceOfPatchedBookmarkletImport(value: object): boolean {
export function instanceOfPatchedBookmarkletImport(value: object): value is PatchedBookmarkletImport {
return true;
}
@@ -76,7 +76,7 @@ export function PatchedBookmarkletImportFromJSONTyped(json: any, ignoreDiscrimin
};
}
export function PatchedBookmarkletImportToJSON(value?: PatchedBookmarkletImport | null): any {
export function PatchedBookmarkletImportToJSON(value?: Omit<PatchedBookmarkletImport, 'created_by'|'created_at'> | null): any {
if (value == null) {
return value;
}