Browse Source

chore: add missing dependencies

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/7268/head
Pranav C 7 months ago
parent
commit
46882e056e
  1. 7
      packages/nocodb-sdk/package.json
  2. 6
      packages/nocodb-sdk/src/lib/Api.ts
  3. 440
      pnpm-lock.yaml

7
packages/nocodb-sdk/package.json

@ -30,6 +30,7 @@
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:lint": "eslint src --ext .ts --fix",
"test": "run-s build test:*",
"test:unit": "ENV_FILE=./config/.env.test jest",
"test:lint": "eslint src --ext .ts",
"test:prettier": "prettier \"src/**/*.ts\" --list-different",
"test:spelling": "cspell \"{README.md,.github/*.md,src/**/*.ts}\"",
@ -45,6 +46,7 @@
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@types/jest": "^29.5.2",
"cspell": "^4.2.8",
"eslint": "^8.54.0",
"eslint-config-prettier": "^8.10.0",
@ -56,7 +58,8 @@
"prettier": "^2.8.8",
"rimraf": "^5.0.5",
"tsc-alias": "^1.8.8",
"typescript": "^5.3.3"
"typescript": "^5.3.3",
"ts-jest": "^29.1.1"
},
"files": [
"build/main",
@ -70,4 +73,4 @@
"prettier": {
"singleQuote": true
}
}
}

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

@ -3341,7 +3341,7 @@ export class Api<
}),
/**
* @description Regenerate user refresh token
* @description Creates a new refresh token and JWT auth token for the user. The refresh token is sent as a cookie, while the JWT auth token is included in the response body.
*
* @tags Auth
* @name TokenRefresh
@ -3349,7 +3349,7 @@ export class Api<
* @request POST:/api/v1/auth/token/refresh
* @response `200` `{
\**
* New access token for user
* New JWT auth token for user
* @example 96751db2d53fb834382b682268874a2ea9ee610e4d904e688d1513f11d3c30d62d36d9e05dec0d63
*\
token?: string,
@ -3365,7 +3365,7 @@ export class Api<
this.request<
{
/**
* New access token for user
* New JWT auth token for user
* @example 96751db2d53fb834382b682268874a2ea9ee610e4d904e688d1513f11d3c30d62d36d9e05dec0d63
*/
token?: string;

440
pnpm-lock.yaml

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