mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-25 00:55:21 +00:00
fix: sync dependencies
This commit is contained in:
@@ -3112,6 +3112,11 @@ export interface LinkToAnotherRecordType {
|
||||
ur?: string;
|
||||
/** Model for Bool */
|
||||
virtual?: BoolType;
|
||||
fk_related_base_id?: string;
|
||||
fk_mm_base_id?: string;
|
||||
base_id?: string;
|
||||
fk_related_source_id?: string;
|
||||
fk_mm_source_id?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -7770,6 +7775,39 @@ export class Api<
|
||||
...params,
|
||||
}),
|
||||
};
|
||||
dbLinks = {
|
||||
/**
|
||||
* @description Read the table metadata by linked column ID and table ID
|
||||
*
|
||||
* @tags DB Links
|
||||
* @name TableRead
|
||||
* @summary Read Partial Linked Table
|
||||
* @request GET:/api/v1/db/internal/links/{linkColumnId}/tables/{tableId}
|
||||
* @response `200` `TableType` OK
|
||||
* @response `400` `{
|
||||
\** @example BadRequest [Error]: <ERROR MESSAGE> *\
|
||||
msg: string,
|
||||
|
||||
}`
|
||||
*/
|
||||
tableRead: (
|
||||
linkColumnId: IdType,
|
||||
tableId: IdType,
|
||||
params: RequestParams = {}
|
||||
) =>
|
||||
this.request<
|
||||
TableType,
|
||||
{
|
||||
/** @example BadRequest [Error]: <ERROR MESSAGE> */
|
||||
msg: string;
|
||||
}
|
||||
>({
|
||||
path: `/api/v1/db/internal/links/${linkColumnId}/tables/${tableId}`,
|
||||
method: 'GET',
|
||||
format: 'json',
|
||||
...params,
|
||||
}),
|
||||
};
|
||||
dbTableColumn = {
|
||||
/**
|
||||
* @description Create a new column in a given Table
|
||||
|
||||
@@ -27,11 +27,11 @@
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"@nestjs/common": "^10.3.8",
|
||||
"@nestjs/core": "^10.3.8",
|
||||
"@nestjs/common": "^10.4.17",
|
||||
"@nestjs/core": "^10.4.17",
|
||||
"cors": "^2.8.5",
|
||||
"express": "^4.18.3",
|
||||
"nocodb": "0.204.9"
|
||||
"express": "^4.21.2",
|
||||
"nocodb": "0.263.4"
|
||||
},
|
||||
"overrides": {
|
||||
"sqlite3": "5.1.6"
|
||||
|
||||
Reference in New Issue
Block a user