mirror of
https://github.com/nocodb/nocodb.git
synced 2026-02-02 02:47:29 +00:00
fix: sync dependencies
This commit is contained in:
@@ -2906,6 +2906,30 @@ export interface KanbanUpdateReqType {
|
||||
meta?: MetaType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Model for MCP Token
|
||||
*/
|
||||
export interface MCPTokenType {
|
||||
/** Unique ID */
|
||||
id?: string;
|
||||
/** Title of the MCP Token */
|
||||
title?: string;
|
||||
/** Order of the Script */
|
||||
order?: number;
|
||||
/** MCP Token */
|
||||
token?: string;
|
||||
/** Workspace ID */
|
||||
fk_workspace_id?: IdType;
|
||||
/** Base ID */
|
||||
base_id?: IdType;
|
||||
/** User ID of the creator */
|
||||
fk_user_id?: IdType;
|
||||
/** Last updated time */
|
||||
updated_at?: string;
|
||||
/** Creation time */
|
||||
created_at?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* Model for Calendar
|
||||
*/
|
||||
@@ -10765,6 +10789,8 @@ export class Api<
|
||||
viewName: string,
|
||||
query: {
|
||||
from_date: string;
|
||||
prev_date: string;
|
||||
next_date: string;
|
||||
to_date: string;
|
||||
fields?: any[];
|
||||
sort?: any[];
|
||||
@@ -10795,6 +10821,8 @@ export class Api<
|
||||
query: {
|
||||
from_date: string;
|
||||
to_date: string;
|
||||
prev_date: string;
|
||||
next_date: string;
|
||||
fields?: any[];
|
||||
sort?: any[];
|
||||
where?: string;
|
||||
@@ -10869,6 +10897,8 @@ export class Api<
|
||||
query: {
|
||||
from_date: string;
|
||||
to_date: string;
|
||||
prev_date: string;
|
||||
next_date: string;
|
||||
sort?: any[];
|
||||
where?: string;
|
||||
/** @min 1 */
|
||||
@@ -10911,6 +10941,8 @@ export class Api<
|
||||
sharedViewUuid: string,
|
||||
query: {
|
||||
from_date: string;
|
||||
prev_date: string;
|
||||
next_date: string;
|
||||
to_date: string;
|
||||
sort?: any[];
|
||||
where?: string;
|
||||
|
||||
@@ -57,6 +57,7 @@
|
||||
"@aws-sdk/s3-request-presigner": "^3.743.0",
|
||||
"@google-cloud/storage": "^7.15.0",
|
||||
"@jm18457/kafkajs-msk-iam-authentication-mechanism": "^3.1.2",
|
||||
"@modelcontextprotocol/sdk": "^1.11.1",
|
||||
"@nest-lab/throttler-storage-redis": "^1.1.0",
|
||||
"@nestjs/bull": "^10.2.3",
|
||||
"@nestjs/common": "^10.4.15",
|
||||
@@ -147,6 +148,7 @@
|
||||
"passport-http": "^0.3.0",
|
||||
"passport-jwt": "^4.0.1",
|
||||
"passport-local": "^1.0.0",
|
||||
"pdf-parse": "^1.1.1",
|
||||
"pg": "^8.13.1",
|
||||
"react": "^19.0.0",
|
||||
"react-dom": "^19.0.0",
|
||||
@@ -166,7 +168,8 @@
|
||||
"twilio": "^4.23.0",
|
||||
"uuid": "^9.0.1",
|
||||
"validator": "^13.12.0",
|
||||
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
|
||||
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz",
|
||||
"zod": "^3.24.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@nestjs/cli": "^10.4.9",
|
||||
|
||||
698
pnpm-lock.yaml
generated
698
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user