ToolJet/marketplace/plugins/plivo/lib/manifest.json
Arpit f098f447d1
fixes: integrating plugins from marketplace (#5678)
* fixes: integrating plugins from marketplace to apps

* clean up

* update deps: markeplace to node 18

* adds plivo

* updates plivo icon

* fixes app crash on clicking sidebae datasources popup

* fixes app crash for rendering selected ds form from leftsidebar

* fixes app crash for loading installed plugins

* fixes: updated correct plugin id to testconection

* init

* updates s3 plugin name

* checking if marketplace flag is "true"

* updates github svg

* plugin icon fix

* fixes:components werent rendering if marketplace plugin queries were used

* github plugin: error message for invalid creds

* fixes: typos

* fixes multiple installation of the same plugin
2023-03-16 18:17:25 +05:30

48 lines
No EOL
1.2 KiB
JSON

{
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/manifest.schema.json",
"title": "Plivo datasource",
"description": "A schema defining Plivo datasource",
"type": "api",
"source": {
"name": "Plivo",
"kind": "plivo",
"exposedVariables": {
"isLoading": false,
"data": {},
"rawData": {}
},
"options": {
"authId": {
"type": "string"
},
"authToken": {
"type": "string",
"encrypted": true
}
},
"customTesting": true
},
"defaults": {
"authToken": {
"value": ""
}
},
"properties": {
"authToken": {
"label": "Auth Token",
"key": "authToken",
"type": "password",
"description": "Auth Token for plivo",
"helpText": "For generating Auth Token, visit: <a href='https://console.plivo.com/' target='_blank' rel='noreferrer'>Plivo Console</a>"
},
"authId": {
"label": "Auth ID",
"key": "authId",
"type": "text",
"description": "Auth id for plivo",
"helpText": "For generating Auth ID, visit: <a href='https://console.plivo.com/' target='_blank' rel='noreferrer'>Plivo Console</a>"
}
},
"required": []
}