mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-30 01:47:16 +00:00
* Feature Pocketbase datasource plugin implementation * Resolved comments and added multicondition component for sorting and filters * resolved nitpicks
39 lines
No EOL
965 B
JSON
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"]
|
|
} |