mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 09:28:31 +00:00
* feat: add FedEx plugin with datasource integration, implemented testConnection function * feat: implement run function to enable query operations * feat: add base_url option to FedEx plugin for configurable API endpoints * chore: update plugin icon * fix: correct capitalization of FedEx plugin name in plugins.json * fix: set allowed_scope_field to false in FedEx plugin manifest * feat: enhance FedEx plugin to support child key and secret, and update customer type handling to support standard customers in the selection dropdown * fix: remove duplicate child_key from FedEx plugin manifest and clean up defaults * fix: enhance error response handling in FedEx plugin abstracting potentially sensitive information from the error responses * fix: remove duplicate child_secret field from FedEx plugin manifest * fix: correct customer type dropdown label case * fix: update child key description in FedEx plugin manifest
27 lines
633 B
JSON
27 lines
633 B
JSON
{
|
|
"name": "@tooljet-marketplace/fedex",
|
|
"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": "ncc build lib/index.ts -o dist",
|
|
"watch": "ncc build lib/index.ts -o dist --watch"
|
|
},
|
|
"homepage": "https://github.com/tooljet/tooljet#readme",
|
|
"dependencies": {
|
|
"@tooljet-marketplace/common": "^1.0.0",
|
|
"got": "^14.4.8"
|
|
},
|
|
"devDependencies": {
|
|
"@vercel/ncc": "^0.34.0",
|
|
"typescript": "^4.7.4"
|
|
}
|
|
}
|