|
|
@ -307,7 +307,7 @@ export interface ColumnType { |
|
|
|
/** Column Comment */ |
|
|
|
/** Column Comment */ |
|
|
|
cc?: string; |
|
|
|
cc?: string; |
|
|
|
/** Column Default */ |
|
|
|
/** Column Default */ |
|
|
|
cdf?: string; |
|
|
|
cdf?: StringOrNullType; |
|
|
|
/** Character Maximum Length */ |
|
|
|
/** Character Maximum Length */ |
|
|
|
clen?: number | null | string; |
|
|
|
clen?: number | null | string; |
|
|
|
/** Column Options */ |
|
|
|
/** Column Options */ |
|
|
@ -331,11 +331,8 @@ export interface ColumnType { |
|
|
|
column_name?: string; |
|
|
|
column_name?: string; |
|
|
|
/** Column Ordinal Position */ |
|
|
|
/** Column Ordinal Position */ |
|
|
|
cop?: string; |
|
|
|
cop?: string; |
|
|
|
/** |
|
|
|
/** Character Set Name */ |
|
|
|
* Character Set Name |
|
|
|
csn?: StringOrNullType; |
|
|
|
* @example utf8mb4 |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
csn?: string; |
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* Column Type |
|
|
|
* Column Type |
|
|
|
* @example varchar(45) |
|
|
|
* @example varchar(45) |
|
|
@ -1885,11 +1882,8 @@ export interface SharedViewListType { |
|
|
|
export interface SharedViewReqType { |
|
|
|
export interface SharedViewReqType { |
|
|
|
/** Meta data passing to Shared View such as if download is allowed or not. */ |
|
|
|
/** Meta data passing to Shared View such as if download is allowed or not. */ |
|
|
|
meta?: MetaType; |
|
|
|
meta?: MetaType; |
|
|
|
/** |
|
|
|
/** Password to restrict access */ |
|
|
|
* Password to restrict access |
|
|
|
password?: StringOrNullType; |
|
|
|
* @example 123456789 |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
password?: string; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
@ -2004,7 +1998,7 @@ export interface TableType { |
|
|
|
/** Table Name. Prefix will be added for XCDB projects. */ |
|
|
|
/** Table Name. Prefix will be added for XCDB projects. */ |
|
|
|
table_name: string; |
|
|
|
table_name: string; |
|
|
|
/** Currently not in use */ |
|
|
|
/** Currently not in use */ |
|
|
|
tags?: string; |
|
|
|
tags?: StringOrNullType; |
|
|
|
/** Table Title */ |
|
|
|
/** Table Title */ |
|
|
|
title: string; |
|
|
|
title: string; |
|
|
|
/** Table Type */ |
|
|
|
/** Table Type */ |
|
|
@ -2142,7 +2136,7 @@ export interface ViewType { |
|
|
|
/** View Type */ |
|
|
|
/** View Type */ |
|
|
|
type: number; |
|
|
|
type: number; |
|
|
|
/** UUID of the view */ |
|
|
|
/** UUID of the view */ |
|
|
|
uuid?: string; |
|
|
|
uuid?: StringOrNullType; |
|
|
|
/** Associated View Model */ |
|
|
|
/** Associated View Model */ |
|
|
|
view?: |
|
|
|
view?: |
|
|
|
| FormType |
|
|
|
| FormType |
|
|
|