Browse Source

chore(sdk): generate Api.ts

pull/7581/head
աɨռɢӄաօռɢ 8 months ago
parent
commit
207c76f187
  1. 25
      packages/nocodb-sdk/src/lib/Api.ts

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

@ -2063,6 +2063,12 @@ export interface ProjectUpdateReqType {
status?: StringOrNullType; status?: StringOrNullType;
/** List of Linked Database Base IDs (only used for Dashboard Projects so far) */ /** List of Linked Database Base IDs (only used for Dashboard Projects so far) */
linked_db_project_ids?: string[]; linked_db_project_ids?: string[];
/**
* The order of the list of projects.
* @min 0
* @example 1
*/
order?: number;
} }
/** /**
@ -9908,6 +9914,25 @@ export class Api<
format: 'json', format: 'json',
...params, ...params,
}), }),
/**
* @description Get dynamic command palette suggestions based on scope
*
* @tags Utils
* @name CommandPalette
* @summary Get command palette suggestions
* @request POST:/api/v1/command_palette
* @response `200` `any` OK
*/
commandPalette: (data: any, params: RequestParams = {}) =>
this.request<any, any>({
path: `/api/v1/command_palette`,
method: 'POST',
body: data,
type: ContentType.Json,
format: 'json',
...params,
}),
}; };
dbTableWebhook = { dbTableWebhook = {
/** /**

Loading…
Cancel
Save