Browse Source

[create-pull-request] automated change

Signed-off-by: GitHub <noreply@github.com>
pull/9670/head
pranavxc 1 month ago committed by GitHub
parent
commit
4a5a4b9988
  1. 2
      packages/nc-gui/package.json
  2. 2
      packages/nc-lib-gui/package.json
  3. 2
      packages/nocodb-sdk/package.json
  4. 5481
      packages/nocodb-sdk/pnpm-lock.yaml
  5. 14
      packages/nocodb-sdk/src/lib/Api.ts
  6. 6
      packages/nocodb/package.json
  7. 917
      pnpm-lock.yaml

2
packages/nc-gui/package.json

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

2
packages/nc-lib-gui/package.json

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

2
packages/nocodb-sdk/package.json

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

5481
packages/nocodb-sdk/pnpm-lock.yaml

File diff suppressed because it is too large Load Diff

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

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

6
packages/nocodb/package.json

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

917
pnpm-lock.yaml

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save