mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-23 06:27:57 +00:00
* Feature: Prometheus plugin (#13161) * prometheus plugin * added existing props * Host and database can be dynamically configured in query builder for PostgreSQL and MySQL data sources (#13163) * Fix: Postgresql datasource tries to connect via ssl even when ssl toggle is off (#13167) * The ability to provide a partition key for deleting items in CosmosDB datasource has been enabled (#13166) * Feature: Ability to configure the database name in Redis datasource (#13165) * Fix: Avoid setting Content-Type header for requests without body and configure different host for all environments in OpenAPI [PRE-RELEASE] (#13230) * Send content-type only with body in request * Persist OpenAPI parameters per operation only * Configure different host * Add disable styles to the select input * Feat: New fields 'client id' and 'client secret' have been introduced in the Slack datasource configuration page in pre-release (#13162) * Update slack frontend * Update slack backend to handle custom creds * Add backfill migrations * Dynamically change dropdown according to versions * Change migration file name * Correctly access scope in chat:write logic --------- Co-authored-by: Akshay Sasidharan <akshaysasidharan93@gmail.com> Co-authored-by: Parth <108089718+parthy007@users.noreply.github.com> Co-authored-by: Akshay <akshaysasidrn@gmail.com>
121 lines
No EOL
2.1 KiB
JSON
121 lines
No EOL
2.1 KiB
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/manifest.schema.json",
|
|
"title": "OpenAPI datasource",
|
|
"description": "A schema defining OpenAPI datasource",
|
|
"type": "api",
|
|
"source": {
|
|
"name": "OpenAPI",
|
|
"kind": "openapi",
|
|
"exposedVariables": {
|
|
"isLoading": false,
|
|
"data": {},
|
|
"rawData": {}
|
|
},
|
|
"options": {
|
|
"password": {
|
|
"encrypted": true
|
|
},
|
|
"bearer_token": {
|
|
"encrypted": true
|
|
},
|
|
"client_secret": {
|
|
"encrypted": true
|
|
},
|
|
"host": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"customTesting": true
|
|
},
|
|
"defaults": {
|
|
"format": {
|
|
"value": "json"
|
|
},
|
|
"definition": {
|
|
"value": ""
|
|
},
|
|
"username": {
|
|
"value": ""
|
|
},
|
|
"password": {
|
|
"value": ""
|
|
},
|
|
"bearer_token": {
|
|
"value": ""
|
|
},
|
|
"grant_type": {
|
|
"value": "authorization_code"
|
|
},
|
|
"add_token_to": {
|
|
"value": "header"
|
|
},
|
|
"header_prefix": {
|
|
"value": "Bearer "
|
|
},
|
|
"client_id": {
|
|
"value": ""
|
|
},
|
|
"client_secret": {
|
|
"value": ""
|
|
},
|
|
"auth_url": {
|
|
"value": ""
|
|
},
|
|
"access_token_url": {
|
|
"value": ""
|
|
},
|
|
"headers": {
|
|
"value": [
|
|
[
|
|
"",
|
|
""
|
|
]
|
|
]
|
|
},
|
|
"custom_query_params": {
|
|
"value": [
|
|
[
|
|
"",
|
|
""
|
|
]
|
|
]
|
|
},
|
|
"custom_auth_params": {
|
|
"value": [
|
|
[
|
|
"",
|
|
""
|
|
]
|
|
]
|
|
},
|
|
"client_auth": {
|
|
"value": "header"
|
|
},
|
|
"access_token_custom_headers": {
|
|
"value": [
|
|
[
|
|
"",
|
|
""
|
|
]
|
|
]
|
|
}
|
|
},
|
|
"properties": {
|
|
"host": {
|
|
"label": "Host",
|
|
"key": "host",
|
|
"type": "text",
|
|
"description": "Enter host",
|
|
"helpText": "Overrides the host defined in the OpenAPI spec"
|
|
},
|
|
"format": {
|
|
"label": "Format",
|
|
"key": "format",
|
|
"type": "react-component-openapi-validator",
|
|
"description": "Format of definition"
|
|
}
|
|
},
|
|
"required": [
|
|
"definition"
|
|
]
|
|
} |