mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-23 22:47:28 +00:00
* Started working on appwrite plugin
- Initialized appwrite plugin
- Added appwrite npm module
- Implemented appwrite authentication
- Working on operations
* Implemented some operations
- Only query collection left
* added query collection operation
* Added appwrite logo
* Edited docs of appwrite
* Edited some fields descriptions and placeholder texts
* Made some code changes
- Replaced JSON with JSON5
- Removed unwanted list option
* Fixed integer conversion bug
- Refactored some code
* Removed unrelated dependencies
44 lines
No EOL
1 KiB
JSON
44 lines
No EOL
1 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"
|
|
},
|
|
"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"]
|
|
} |