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. 6
      packages/nocodb/package.json
  7. 1129
      pnpm-lock.yaml

2
package.json

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

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

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

2
packages/nocodb-sdk/package.json

@ -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

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

6
packages/nocodb/package.json

@ -1,6 +1,6 @@
{
"name": "nocodb",
"version": "0.257.0",
"version": "0.257.2",
"description": "NocoDB Backend",
"main": "dist/bundle.js",
"author": {
@ -124,7 +124,7 @@
"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:^",
"nodemailer": "^6.9.13",
@ -197,4 +197,4 @@
"typescript": "^5.3.3",
"webpack-cli": "^5.1.4"
}
}
}

1129
pnpm-lock.yaml

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