Browse Source

refactor(sdk): regenerate Api.ts

pull/5269/head
Wing-Kam Wong 2 years ago
parent
commit
b80ad023f8
  1. 68
      packages/nocodb-sdk/src/lib/Api.ts

68
packages/nocodb-sdk/src/lib/Api.ts

@ -961,6 +961,16 @@ export interface GalleryReqType {
title: string; title: string;
} }
/**
* Model for Gallery View Update Request
*/
export interface GalleryViewUpdateReqType {
/** The id of the column that contains the cover image */
fk_cover_image_col_id?: StringOrNullType;
/** Meta Info */
meta?: MetaType;
}
/** /**
* Model for Geo Location * Model for Geo Location
*/ */
@ -1052,6 +1062,19 @@ export interface GridColumnReqType {
width?: string; width?: string;
} }
/**
* Model for Grid View Update
*/
export interface GridViewUpdateReqType {
/**
* Row Height
* @example 1
*/
row_height?: number;
/** Meta Info for grid view */
meta?: MetaType;
}
/** /**
* Model for Grid Request * Model for Grid Request
*/ */
@ -1316,6 +1339,10 @@ export interface KanbanReqType {
export interface KanbanUpdateReqType { export interface KanbanUpdateReqType {
/** Foreign Key to Grouping Field Column */ /** Foreign Key to Grouping Field Column */
fk_grp_col_id?: StringOrNullType; fk_grp_col_id?: StringOrNullType;
/** Foreign Key to Cover Image Column */
fk_cover_image_col_id?: StringOrNullType;
/** Meta Info */
meta?: MetaType;
} }
/** /**
@ -1446,6 +1473,19 @@ export interface MapType {
title?: string; title?: string;
} }
/**
* Model for Map
*/
export interface MapViewUpdateReqType {
/**
* Foreign Key to GeoData Column
* @example cl_8iw2o4ejzvdyna
*/
fk_geo_data_col_id?: string;
/** Meta data for this view */
meta?: MetaType;
}
/** /**
* Model for Map Column * Model for Map Column
*/ */
@ -5058,7 +5098,11 @@ export class Api<
}` }`
*/ */
update: (viewId: IdType, data: any, params: RequestParams = {}) => update: (
viewId: IdType,
data: ViewUpdateReqType,
params: RequestParams = {}
) =>
this.request< this.request<
ViewType, ViewType,
{ {
@ -5350,7 +5394,11 @@ export class Api<
}` }`
*/ */
gridUpdate: (viewId: string, data: GridType, params: RequestParams = {}) => gridUpdate: (
viewId: string,
data: GridViewUpdateReqType,
params: RequestParams = {}
) =>
this.request< this.request<
number, number,
{ {
@ -5478,7 +5526,7 @@ export class Api<
*/ */
galleryUpdate: ( galleryUpdate: (
galleryViewId: string, galleryViewId: string,
data: GalleryReqType, data: GalleryViewUpdateReqType,
params: RequestParams = {} params: RequestParams = {}
) => ) =>
this.request< this.request<
@ -5668,7 +5716,11 @@ export class Api<
}` }`
*/ */
mapUpdate: (mapViewId: string, data: MapType, params: RequestParams = {}) => mapUpdate: (
mapViewId: string,
data: MapViewUpdateReqType,
params: RequestParams = {}
) =>
this.request< this.request<
number, number,
{ {
@ -6500,7 +6552,7 @@ export class Api<
* @name GroupedDataList * @name GroupedDataList
* @summary Table Group by Column * @summary Table Group by Column
* @request GET:/api/v1/db/data/{orgs}/{projectName}/{tableName}/group/{columnId} * @request GET:/api/v1/db/data/{orgs}/{projectName}/{tableName}/group/{columnId}
* @response `200` `object` OK * @response `200` `(any)[]` OK
* @response `400` `{ * @response `400` `{
\** @example BadRequest [Error]: <ERROR MESSAGE> *\ \** @example BadRequest [Error]: <ERROR MESSAGE> *\
msg?: string, msg?: string,
@ -6522,7 +6574,7 @@ export class Api<
params: RequestParams = {} params: RequestParams = {}
) => ) =>
this.request< this.request<
object, any[],
{ {
/** @example BadRequest [Error]: <ERROR MESSAGE> */ /** @example BadRequest [Error]: <ERROR MESSAGE> */
msg?: string; msg?: string;
@ -7094,7 +7146,7 @@ export class Api<
* @name GroupedDataList * @name GroupedDataList
* @summary Table Group by Column * @summary Table Group by Column
* @request GET:/api/v1/db/data/{orgs}/{projectName}/{tableName}/views/{viewName}/group/{columnId} * @request GET:/api/v1/db/data/{orgs}/{projectName}/{tableName}/views/{viewName}/group/{columnId}
* @response `200` `object` OK * @response `200` `(any)[]` OK
* @response `400` `{ * @response `400` `{
\** @example BadRequest [Error]: <ERROR MESSAGE> *\ \** @example BadRequest [Error]: <ERROR MESSAGE> *\
msg?: string, msg?: string,
@ -7117,7 +7169,7 @@ export class Api<
params: RequestParams = {} params: RequestParams = {}
) => ) =>
this.request< this.request<
object, any[],
{ {
/** @example BadRequest [Error]: <ERROR MESSAGE> */ /** @example BadRequest [Error]: <ERROR MESSAGE> */
msg?: string; msg?: string;

Loading…
Cancel
Save