mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-22 22:17:55 +00:00
* Appwrite plugin issue fixes and added features * update test connection, removed duplicate operations and updated types
50 lines
No EOL
1.2 KiB
JSON
50 lines
No EOL
1.2 KiB
JSON
|
|
{
|
|
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/manifest.schema.json",
|
|
"title": "Appwrite datasource",
|
|
"description": "A schema defining Appwrite datasource",
|
|
"type": "api",
|
|
"source": {
|
|
"name": "Appwrite",
|
|
"kind": "appwrite",
|
|
"exposedVariables": {
|
|
"isLoading": false,
|
|
"data": {},
|
|
"rawData": {}
|
|
},
|
|
"options": {
|
|
"secret_key":{
|
|
"encrypted":true
|
|
}
|
|
}
|
|
},
|
|
"defaults": {},
|
|
"properties": {
|
|
"host": {
|
|
"label": "Host",
|
|
"key": "host",
|
|
"type": "text",
|
|
"description": "Appwrite database host/endpoint"
|
|
},
|
|
"project_id": {
|
|
"label": "Project ID",
|
|
"key": "project_id",
|
|
"type": "text",
|
|
"description": "Appwrite project id"
|
|
},
|
|
"database_id": {
|
|
"label": "Database ID",
|
|
"key": "database_id",
|
|
"type": "text",
|
|
"description": "Appwrite Database id"
|
|
},
|
|
"secret_key": {
|
|
"label": "Secret Key",
|
|
"key": "secret_key",
|
|
"type": "textarea",
|
|
"encrypted": true,
|
|
"description": "Enter api key secret for appwrite account"
|
|
}
|
|
},
|
|
"required": ["host","secret_key","project_id"]
|
|
} |