Browse Source

refactor(sdk): regenerate Api.ts

pull/5317/head
Wing-Kam Wong 2 years ago
parent
commit
6bb09250ad
  1. 6
      packages/nocodb-sdk/src/lib/Api.ts

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

@ -8747,16 +8747,16 @@ export class Api<
* @name Create * @name Create
* @summary Create Table Hook * @summary Create Table Hook
* @request POST:/api/v1/db/meta/tables/{tableId}/hooks * @request POST:/api/v1/db/meta/tables/{tableId}/hooks
* @response `200` `HookReqType` OK * @response `200` `HookType` OK
* @response `400` `{ * @response `400` `{
\** @example BadRequest [Error]: <ERROR MESSAGE> *\ \** @example BadRequest [Error]: <ERROR MESSAGE> *\
msg: string, msg: string,
}` }`
*/ */
create: (tableId: IdType, data: AuditType, params: RequestParams = {}) => create: (tableId: IdType, data: HookReqType, params: RequestParams = {}) =>
this.request< this.request<
HookReqType, HookType,
{ {
/** @example BadRequest [Error]: <ERROR MESSAGE> */ /** @example BadRequest [Error]: <ERROR MESSAGE> */
msg: string; msg: string;

Loading…
Cancel
Save