Fix OpenAPI types
Signed-off-by: solimant <solimant@users.noreply.github.com>
This commit is contained in:
+2
-1
@@ -24,5 +24,6 @@ import { SerializedTask } from '../models/SerializedTask.model';
|
||||
* @public
|
||||
*/
|
||||
export interface ListTasksResponse {
|
||||
tasks?: Array<SerializedTask>;
|
||||
tasks: Array<SerializedTask>;
|
||||
totalTasks?: number;
|
||||
}
|
||||
|
||||
+1
-1
@@ -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
|
||||
*/
|
||||
|
||||
+1
-1
@@ -24,5 +24,5 @@ import { EntityMeta } from '../models/EntityMeta.model';
|
||||
* @public
|
||||
*/
|
||||
export interface TemplateInfoEntity {
|
||||
metadata?: EntityMeta;
|
||||
metadata: EntityMeta;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user