mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-22 05:57:20 +00:00
* Added access token url headers option to open api * removing and adding code * add authentication in GraphQL as RestAPI (#6687) * add authentication in GraphQL as RestAPI * fix: remove double header check --------- Co-authored-by: Jean-Baptiste PIN <jeanbaptiste@idruide.com> * refactor auth flows for restapi, openapi & graphql * fix type errors * remove redundant declarations * fix openapi build error * update authUrl for OAuth * fix oauth check --------- Co-authored-by: Akshay Sasidharan <akshaysasidharan93@gmail.com> Co-authored-by: Jean-Baptiste PIN <jibet.pin@gmail.com> Co-authored-by: Jean-Baptiste PIN <jeanbaptiste@idruide.com>
23 lines
515 B
JSON
23 lines
515 B
JSON
{
|
|
"name": "@tooljet-plugins/common",
|
|
"version": "1.0.0",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"directories": {
|
|
"lib": "lib",
|
|
"test": "__tests__"
|
|
},
|
|
"scripts": {
|
|
"test": "echo \"Error: run tests from root\" && exit 1",
|
|
"build": "tsc -b",
|
|
"clean": "rimraf ./dist && rimraf tsconfig.tsbuildinfo"
|
|
},
|
|
"dependencies": {
|
|
"react": "^17.0.2",
|
|
"rimraf": "^3.0.2",
|
|
"tough-cookie": "^4.1.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/tough-cookie": "^4.0.2"
|
|
}
|
|
}
|