mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +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>
25 lines
586 B
JSON
25 lines
586 B
JSON
{
|
|
"name": "@tooljet-plugins/openapi",
|
|
"version": "1.0.0",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"directories": {
|
|
"lib": "lib",
|
|
"test": "__tests__"
|
|
},
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"scripts": {
|
|
"test": "echo \"Error: run tests from root\" && exit 1",
|
|
"build": "tsc -b",
|
|
"clean": "rimraf ./dist && rimraf tsconfig.tsbuildinfo"
|
|
},
|
|
"homepage": "https://github.com/tooljet/tooljet#readme",
|
|
"dependencies": {
|
|
"@tooljet-plugins/common": "file:../common",
|
|
"got": "^11.8.6",
|
|
"react": "^17.0.2",
|
|
"tough-cookie": "^4.1.2"
|
|
}
|
|
}
|