Fix OpenAPI types

Signed-off-by: solimant <solimant@users.noreply.github.com>
This commit is contained in:
solimant
2024-12-11 22:45:23 +00:00
parent 0976e117fa
commit e2fa65af59
8 changed files with 21 additions and 12 deletions
@@ -24,5 +24,6 @@ import { SerializedTask } from '../models/SerializedTask.model';
* @public
*/
export interface ListTasksResponse {
tasks?: Array<SerializedTask>;
tasks: Array<SerializedTask>;
totalTasks?: number;
}
@@ -26,7 +26,7 @@ export interface TaskSpecV1beta3User {
/**
* The decorated entity from the Catalog
*/
entity?: { [key: string]: any };
entity?: any;
/**
* An entity ref for the author of the task
*/
@@ -24,5 +24,5 @@ import { EntityMeta } from '../models/EntityMeta.model';
* @public
*/
export interface TemplateInfoEntity {
metadata?: EntityMeta;
metadata: EntityMeta;
}