Browse Source

refactor(sdk): regenerate Api.ts

pull/5307/head
Wing-Kam Wong 2 years ago
parent
commit
32530b0fd4
  1. 31
      packages/nocodb-sdk/src/lib/Api.ts

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

@ -1777,6 +1777,24 @@ export interface ProjectReqType {
title: string; title: string;
} }
/**
* Model for Project Update Request
*/
export interface ProjectUpdateReqType {
/**
* Primary Theme Color
* @example #24716E
*/
color?: string;
/** Project Meta */
meta?: MetaType;
/**
* Project Title
* @example My Project
*/
title?: string;
}
/** /**
* Model for Project User Request * Model for Project User Request
*/ */
@ -3906,16 +3924,20 @@ export class Api<
* @name Update * @name Update
* @summary Update Project * @summary Update Project
* @request PATCH:/api/v1/db/meta/projects/{projectId} * @request PATCH:/api/v1/db/meta/projects/{projectId}
* @response `200` `void` OK * @response `200` `number` OK
* @response `400` `{ * @response `400` `{
\** @example BadRequest [Error]: <ERROR MESSAGE> *\ \** @example BadRequest [Error]: <ERROR MESSAGE> *\
msg: string, msg: string,
}` }`
*/ */
update: (projectId: IdType, data: number, params: RequestParams = {}) => update: (
projectId: IdType,
data: ProjectUpdateReqType,
params: RequestParams = {}
) =>
this.request< this.request<
void, number,
{ {
/** @example BadRequest [Error]: <ERROR MESSAGE> */ /** @example BadRequest [Error]: <ERROR MESSAGE> */
msg: string; msg: string;
@ -3925,6 +3947,7 @@ export class Api<
method: 'PATCH', method: 'PATCH',
body: data, body: data,
type: ContentType.Json, type: ContentType.Json,
format: 'json',
...params, ...params,
}), }),
@ -8321,6 +8344,7 @@ export class Api<
ee?: boolean, ee?: boolean,
ncAttachmentFieldSize?: number, ncAttachmentFieldSize?: number,
ncMaxAttachmentsAllowed?: number, ncMaxAttachmentsAllowed?: number,
isCloud?: boolean,
}` OK }` OK
* @response `400` `{ * @response `400` `{
@ -8349,6 +8373,7 @@ export class Api<
ee?: boolean; ee?: boolean;
ncAttachmentFieldSize?: number; ncAttachmentFieldSize?: number;
ncMaxAttachmentsAllowed?: number; ncMaxAttachmentsAllowed?: number;
isCloud?: boolean;
}, },
{ {
/** @example BadRequest [Error]: <ERROR MESSAGE> */ /** @example BadRequest [Error]: <ERROR MESSAGE> */

Loading…
Cancel
Save