Browse Source

Merge pull request #9671 from nocodb/nc/4eb44ce9

chore: post-release sync
dependabot/npm_and_yarn/packages/noco-docs/multi-9f37c16f8f
Pranav C 1 month ago committed by GitHub
parent
commit
ac4560fc22
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      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. 4
      packages/nocodb/package.json
  7. 1129
      pnpm-lock.yaml

2
package.json

@ -47,7 +47,7 @@
"pnpm": { "pnpm": {
"overrides": { "overrides": {
"vue": "latest", "vue": "latest",
"typescript": "latest", "typescript": "~5.4.5",
"ajv@<6.12.3": ">=6.12.3", "ajv@<6.12.3": ">=6.12.3",
"node.extend@<1.1.7": ">=1.1.7", "node.extend@<1.1.7": ">=1.1.7",
"tough-cookie@<4.1.3": ">=4.1.3", "tough-cookie@<4.1.3": ">=4.1.3",

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;
}, },

4
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,7 +124,7 @@
"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": "workspace:^",
"nodemailer": "^6.9.13", "nodemailer": "^6.9.13",

1129
pnpm-lock.yaml

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