mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-25 07:27:28 +00:00
* bugfix: airtable plugin support for personal access token (#8295) * fix: airtable plugin support for personal access token * fix: review comments fixed * Add new templates and remove old templates * Change onboarding page templates and fix CSS * Change Job application tracker template images * Implement dark mode for onbarding page templates * Fix templates with query issues * fix template creation * Remove redundant datasource options from templates --------- Co-authored-by: Ganesh Kumar <40178541+ganesh8056@users.noreply.github.com> Co-authored-by: Akshay <akshaysasidharan93@gmail.com>
39 lines
No EOL
1 KiB
JSON
39 lines
No EOL
1 KiB
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/manifest.schema.json",
|
|
"title": "Airtable datasource",
|
|
"description": "A schema defining airtable datasource",
|
|
"type": "api",
|
|
"source": {
|
|
"name": "Airtable",
|
|
"kind": "airtable",
|
|
"exposedVariables": {
|
|
"isLoading": false,
|
|
"data": {},
|
|
"rawData": {}
|
|
},
|
|
"options": {
|
|
"personal_access_token": {
|
|
"type": "string",
|
|
"encrypted": true
|
|
}
|
|
},
|
|
"customTesting": true
|
|
},
|
|
"defaults": {
|
|
"personal_access_token": {
|
|
"value": ""
|
|
}
|
|
},
|
|
"properties": {
|
|
"personal_access_token": {
|
|
"label": "Personal access token",
|
|
"key": "personal_access_token",
|
|
"type": "password",
|
|
"description": "Personal access token for airtable",
|
|
"helpText": "For generating personal access token, visit: <a href='https://airtable.com/account' target='_blank' rel='noreferrer'>Airtable account page</a>"
|
|
}
|
|
},
|
|
"required": [
|
|
"personal_access_token"
|
|
]
|
|
} |