|
|
@ -262,19 +262,19 @@ export interface BaseListType { |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
export interface ViewType { |
|
|
|
export interface ViewType { |
|
|
|
/** Unique ID for View */ |
|
|
|
/** Unique ID for View */ |
|
|
|
id: IdType; |
|
|
|
id?: IdType; |
|
|
|
/** Unique Base ID */ |
|
|
|
/** Unique Base ID */ |
|
|
|
base_id: IdType; |
|
|
|
base_id?: IdType; |
|
|
|
/** Unique Project ID */ |
|
|
|
/** Unique Project ID */ |
|
|
|
project_id: IdType; |
|
|
|
project_id?: IdType; |
|
|
|
/** Unique Model ID */ |
|
|
|
/** Unique Model ID */ |
|
|
|
fk_model_id: IdType; |
|
|
|
fk_model_id: IdType; |
|
|
|
/** View Title */ |
|
|
|
/** View Title */ |
|
|
|
title: string; |
|
|
|
title: string; |
|
|
|
/** View Type */ |
|
|
|
/** View Type */ |
|
|
|
type?: number; |
|
|
|
type: number; |
|
|
|
/** If this view is shown? */ |
|
|
|
/** If this view is shown? */ |
|
|
|
show?: BoolType; |
|
|
|
show: BoolType; |
|
|
|
/** The rder of the list of views */ |
|
|
|
/** The rder of the list of views */ |
|
|
|
order?: number; |
|
|
|
order?: number; |
|
|
|
/** UUID of the view */ |
|
|
|
/** UUID of the view */ |
|
|
|