ToolJet/marketplace/plugins/pocketbase/lib/manifest.json
blank0537 cf5a9f7160
Feature Pocketbase datasource plugin implementation (#9145)
* Feature Pocketbase datasource plugin implementation

* Resolved comments and added multicondition component for sorting and filters

* resolved nitpicks
2024-04-01 11:50:15 +05:30

39 lines
No EOL
965 B
JSON

{
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/manifest.schema.json",
"title": "PocketBase datasource",
"description": "A schema defining PocketBase datasource",
"type": "api",
"source": {
"name": "PocketBase",
"kind": "pocketbase",
"exposedVariables": {
"isLoading": false,
"data": {},
"rawData": {}
},
"options": {}
},
"defaults": {},
"properties": {
"host": {
"label": "Host",
"key": "host",
"type": "text",
"description": "Enter PocketBase host api - e.g -> http://127.0.0.1:8090"
},
"email": {
"label": "Email",
"key": "email",
"type": "text",
"description": "Enter PocketBase admin email"
},
"password": {
"label": "Password",
"key": "password",
"type": "password",
"description": "Enter PocketBase admin password"
}
},
"required": ["host", "email", "password"]
}