|
|
@ -2030,7 +2030,7 @@ export interface NormalColumnRequestType { |
|
|
|
/** Column Default Value */ |
|
|
|
/** Column Default Value */ |
|
|
|
cdf?: StringOrNullOrBooleanOrNumberType; |
|
|
|
cdf?: StringOrNullOrBooleanOrNumberType; |
|
|
|
/** Column Name */ |
|
|
|
/** Column Name */ |
|
|
|
column_name: string; |
|
|
|
column_name?: string; |
|
|
|
/** Model for StringOrNull */ |
|
|
|
/** Model for StringOrNull */ |
|
|
|
csn?: StringOrNullType; |
|
|
|
csn?: StringOrNullType; |
|
|
|
/** Data Type */ |
|
|
|
/** Data Type */ |
|
|
@ -2052,7 +2052,7 @@ export interface NormalColumnRequestType { |
|
|
|
/** Is this column required? */ |
|
|
|
/** Is this column required? */ |
|
|
|
rqd?: BoolType; |
|
|
|
rqd?: BoolType; |
|
|
|
/** Column Title */ |
|
|
|
/** Column Title */ |
|
|
|
title?: string; |
|
|
|
title: string; |
|
|
|
/** UI Data Type */ |
|
|
|
/** UI Data Type */ |
|
|
|
uidt?: |
|
|
|
uidt?: |
|
|
|
| 'Attachment' |
|
|
|
| 'Attachment' |
|
|
@ -2691,7 +2691,7 @@ export interface TableType { |
|
|
|
/** Table Description */ |
|
|
|
/** Table Description */ |
|
|
|
description?: TextOrNullType; |
|
|
|
description?: TextOrNullType; |
|
|
|
/** Table Name. Prefix will be added for XCDB bases. */ |
|
|
|
/** Table Name. Prefix will be added for XCDB bases. */ |
|
|
|
table_name: string; |
|
|
|
table_name?: string; |
|
|
|
/** Currently not in use */ |
|
|
|
/** Currently not in use */ |
|
|
|
tags?: StringOrNullType; |
|
|
|
tags?: StringOrNullType; |
|
|
|
/** Table Title */ |
|
|
|
/** Table Title */ |
|
|
@ -2729,12 +2729,12 @@ export interface TableReqType { |
|
|
|
* Table name |
|
|
|
* Table name |
|
|
|
* @example my_table |
|
|
|
* @example my_table |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
table_name: string; |
|
|
|
table_name?: string; |
|
|
|
/** |
|
|
|
/** |
|
|
|
* Table title |
|
|
|
* Table title |
|
|
|
* @example My Table |
|
|
|
* @example My Table |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
title?: string; |
|
|
|
title: string; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
@ -6255,6 +6255,8 @@ export class Api< |
|
|
|
excludeData?: boolean; |
|
|
|
excludeData?: boolean; |
|
|
|
excludeViews?: boolean; |
|
|
|
excludeViews?: boolean; |
|
|
|
excludeHooks?: boolean; |
|
|
|
excludeHooks?: boolean; |
|
|
|
|
|
|
|
/** New table title */ |
|
|
|
|
|
|
|
title?: string; |
|
|
|
}; |
|
|
|
}; |
|
|
|
}, |
|
|
|
}, |
|
|
|
params: RequestParams = {} |
|
|
|
params: RequestParams = {} |
|
|
@ -10907,7 +10909,7 @@ export class Api< |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
feed: ( |
|
|
|
feed: ( |
|
|
|
query?: { |
|
|
|
query?: { |
|
|
|
type?: 'all' | 'github' | 'youtube'; |
|
|
|
type?: 'all' | 'github' | 'youtube' | 'cloud'; |
|
|
|
per_page?: number; |
|
|
|
per_page?: number; |
|
|
|
page?: number; |
|
|
|
page?: number; |
|
|
|
}, |
|
|
|
}, |
|
|
|