ToolJet/plugins/packages/appwrite/lib/manifest.json
blank0537 20c0f4918a
Appwrite plugin issue fixes and added features (#9285)
* Appwrite plugin issue fixes and added features

* update test connection, removed duplicate operations and updated types
2024-06-10 13:06:55 +05:30

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"]
}