mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-02 10:57:20 +00:00
* fixes: integrating plugins from marketplace to apps * clean up * update deps: markeplace to node 18 * adds plivo * updates plivo icon * fixes app crash on clicking sidebae datasources popup * fixes app crash for rendering selected ds form from leftsidebar * fixes app crash for loading installed plugins * fixes: updated correct plugin id to testconection * init * updates s3 plugin name * checking if marketplace flag is "true" * updates github svg * plugin icon fix * fixes:components werent rendering if marketplace plugin queries were used * github plugin: error message for invalid creds * fixes: typos * fixes multiple installation of the same plugin
58 lines
No EOL
1.3 KiB
JSON
58 lines
No EOL
1.3 KiB
JSON
|
|
{
|
|
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/manifest.schema.json",
|
|
"title": "Github datasource",
|
|
"description": "A schema defining Github datasource",
|
|
"type": "api",
|
|
"source": {
|
|
"name": "Github",
|
|
"kind": "github",
|
|
"exposedVariables": {
|
|
"isLoading": false,
|
|
"data": {},
|
|
"rawData": {}
|
|
},
|
|
"options": {
|
|
"auth_type": {
|
|
"type": "string"
|
|
},
|
|
"personal_token": {
|
|
"type": "string",
|
|
"encrypted": true
|
|
}
|
|
}
|
|
},
|
|
"defaults": {
|
|
"auth_type": {
|
|
"value": "personal_access_token"
|
|
},
|
|
"personal_token": {
|
|
"value": ""
|
|
}
|
|
},
|
|
"properties": {
|
|
"credentials": {
|
|
"label": "Authentication",
|
|
"key": "auth_type",
|
|
"type": "dropdown-component-flip",
|
|
"description": "Single select dropdown for choosing credentials",
|
|
"list": [
|
|
{
|
|
"value": "personal_access_token",
|
|
"name": "Use Personal Access Token"
|
|
}
|
|
]
|
|
|
|
},
|
|
"personal_access_token": {
|
|
"token": {
|
|
"label": "Token",
|
|
"key": "personal_token",
|
|
"type": "password",
|
|
"description": "Enter personal access token",
|
|
"hint": "You can generate a personal access token from your Github account settings."
|
|
}
|
|
}
|
|
},
|
|
"required": ["personal_token"]
|
|
} |