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

@@ -49,25 +49,25 @@ export interface PatchedAutomation {
* @type {string}
* @memberof PatchedAutomation
*/
description?: string;
description?: string | null;
/**
*
* @type {string}
* @memberof PatchedAutomation
*/
param1?: string;
param1?: string | null;
/**
*
* @type {string}
* @memberof PatchedAutomation
*/
param2?: string;
param2?: string | null;
/**
*
* @type {string}
* @memberof PatchedAutomation
*/
param3?: string;
param3?: string | null;
/**
*
* @type {number}
@@ -88,10 +88,12 @@ export interface PatchedAutomation {
readonly createdBy?: number;
}
/**
* Check if a given object implements the PatchedAutomation interface.
*/
export function instanceOfPatchedAutomation(value: object): boolean {
export function instanceOfPatchedAutomation(value: object): value is PatchedAutomation {
return true;
}
@@ -118,7 +120,7 @@ export function PatchedAutomationFromJSONTyped(json: any, ignoreDiscriminator: b
};
}
export function PatchedAutomationToJSON(value?: PatchedAutomation | null): any {
export function PatchedAutomationToJSON(value?: Omit<PatchedAutomation, 'created_by'> | null): any {
if (value == null) {
return value;
}