Merge pull request #9670 from nocodb/release/0.257.2

This commit is contained in:
github-actions[bot]
2024-10-16 12:51:26 +00:00
committed by GitHub
7 changed files with 5953 additions and 473 deletions

View File

@@ -81,7 +81,7 @@
"marked": "^4.3.0",
"monaco-editor": "^0.50.0",
"monaco-sql-languages": "^0.11.0",
"nocodb-sdk": "workspace:^",
"nocodb-sdk": "0.257.2",
"papaparse": "^5.4.1",
"parse-github-url": "^1.0.2",
"pdfobject": "^2.3.0",

View File

@@ -1,6 +1,6 @@
{
"name": "nc-lib-gui",
"version": "0.257.0",
"version": "0.257.2",
"description": "NocoDB GUI",
"author": {
"name": "NocoDB",

View File

@@ -1,6 +1,6 @@
{
"name": "nocodb-sdk",
"version": "0.257.0",
"version": "0.257.2",
"description": "NocoDB SDK",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",

5481
packages/nocodb-sdk/pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -2030,7 +2030,7 @@ export interface NormalColumnRequestType {
/** Column Default Value */
cdf?: StringOrNullOrBooleanOrNumberType;
/** Column Name */
column_name: string;
column_name?: string;
/** Model for StringOrNull */
csn?: StringOrNullType;
/** Data Type */
@@ -2052,7 +2052,7 @@ export interface NormalColumnRequestType {
/** Is this column required? */
rqd?: BoolType;
/** Column Title */
title?: string;
title: string;
/** UI Data Type */
uidt?:
| 'Attachment'
@@ -2691,7 +2691,7 @@ export interface TableType {
/** Table Description */
description?: TextOrNullType;
/** Table Name. Prefix will be added for XCDB bases. */
table_name: string;
table_name?: string;
/** Currently not in use */
tags?: StringOrNullType;
/** Table Title */
@@ -2729,12 +2729,12 @@ export interface TableReqType {
* Table name
* @example my_table
*/
table_name: string;
table_name?: string;
/**
* Table title
* @example My Table
*/
title?: string;
title: string;
}
/**
@@ -6255,6 +6255,8 @@ export class Api<
excludeData?: boolean;
excludeViews?: boolean;
excludeHooks?: boolean;
/** New table title */
title?: string;
};
},
params: RequestParams = {}
@@ -10907,7 +10909,7 @@ export class Api<
*/
feed: (
query?: {
type?: 'all' | 'github' | 'youtube';
type?: 'all' | 'github' | 'youtube' | 'cloud';
per_page?: number;
page?: number;
},

View File

@@ -1,6 +1,6 @@
{
"name": "nocodb",
"version": "0.257.0",
"version": "0.257.2",
"description": "NocoDB Backend",
"main": "dist/bundle.js",
"author": {
@@ -124,9 +124,9 @@
"multer": "^1.4.5-lts.1",
"mysql2": "^3.9.7",
"nanoid": "^3.3.7",
"nc-lib-gui": "0.257.0",
"nc-lib-gui": "0.257.2",
"nestjs-throttler-storage-redis": "^0.4.4",
"nocodb-sdk": "workspace:^",
"nocodb-sdk": "0.257.2",
"nodemailer": "^6.9.13",
"object-hash": "^3.0.0",
"object-sizeof": "^2.6.4",
@@ -197,4 +197,4 @@
"typescript": "^5.3.3",
"webpack-cli": "^5.1.4"
}
}
}

917
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff