ToolJet/plugins/packages/restapi/package.json
Marc Meszaros d98121cd75
feat: Support multipart/form-data body when file like objects are specified in restapi datasource (#6622)
* 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>
2023-11-17 10:47:35 +05:30

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"
}
}