mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 09:28:31 +00:00
* ee commit * merge commit * feat: updated openapi operation component * updated query operation sepctype * fix: updated query dropdown style * feat: config dropdown update * feat: add Gmail plugin with API integration and initial setup * refactor: enhance type definitions * refactor: clean up code and refactor variable names * fix: update Gmail OAuth scope to allow full access to Gmail * feat: standardize error handling for Gmail plugin * fix: include oauth_type handling in Gmail plugin for cloud environment * fix: update spec_url for Gmail operations * refactor: remove unused fields in gmail manifest.json * fix: update Content-Type header to application/x-www-form-urlencoded for token requests * feat: add environment variable prefix for Gmail in OAuth handling * fix: remove encryption requirement for client_id in Gmail manifest * fix: update Gmail plugin to use form data for token requests and simplify response handling * fix: add Gmail to OAuth data sources in DataSourceManager * fix: encode path parameters in Gmail plugin URL construction * fix: add back margin to Client ID label in CommonOAuthFields component * fix: adjust width of input field in RenderParameterFields for better alignment * fix: set response type to 'json' in requestOptions for Gmail service --------- Co-authored-by: Devanshu Gupta <devanshuguptaknp@gmail.com>
27 lines
633 B
JSON
27 lines
633 B
JSON
{
|
|
"name": "@tooljet-marketplace/gmail",
|
|
"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.7"
|
|
},
|
|
"devDependencies": {
|
|
"@vercel/ncc": "^0.34.0",
|
|
"typescript": "^4.7.4"
|
|
}
|
|
}
|