mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
* Automatically convert restapi datasource request body to multipart/form-data if a file object is detected (#6621) * Improve fileobject check function in restapi datasource and guard against bad file data (#6621) * Avoid null or undefined in restapi datasource form-data payload * update keyboard shortcuts page (#8143) --------- Co-authored-by: Karan Rathod <karan.altcampus@gmail.com> Co-authored-by: Akshay <akshaysasidharan93@gmail.com>
26 lines
570 B
JSON
26 lines
570 B
JSON
{
|
|
"name": "@tooljet-plugins/restapi",
|
|
"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"
|
|
},
|
|
"dependencies": {
|
|
"@tooljet-plugins/common": "file:../common",
|
|
"form-data": "^4.0.0",
|
|
"got": "^11.8.6",
|
|
"react": "^17.0.2",
|
|
"rimraf": "^3.0.2",
|
|
"url": "^0.11.0"
|
|
}
|
|
}
|