mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-24 15:07:23 +00:00
* init
* cosmos db icon
* manifest file
* adds azure package
* test connection
* operations: list databases
* operation: read item, insert items with a lookup function
* operation: delete item
* operation: query database using SQL-like syntax
* adds unit tests
* adds unit test: query db
* clean up
* docs: cosmosdb
* docs: cleanup
* typo
* updated the image(docs)
* updated inserting operation: field: placeholder
* item id for delete operation
* Revert "item id for delete operation"
This reverts commit bc2d1b87e4.
* item id for delete operation
48 lines
No EOL
992 B
JSON
48 lines
No EOL
992 B
JSON
|
|
{
|
|
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/manifest.schema.json",
|
|
"title": "CosmosDB datasource",
|
|
"description": "A schema defining CosmosDB datasource",
|
|
"type": "database",
|
|
"source": {
|
|
"name": "CosmosDB",
|
|
"kind": "cosmosdb",
|
|
"exposedVariables": {
|
|
"isLoading": false,
|
|
"data": {},
|
|
"rawData": {}
|
|
},
|
|
"options": {
|
|
"endpoint": {
|
|
"type": "string"
|
|
},
|
|
"key": {
|
|
"type": "string",
|
|
"encrypted": true
|
|
}
|
|
}
|
|
},
|
|
"defaults": {
|
|
"endpoint": {
|
|
"value": ""
|
|
},
|
|
"key": {
|
|
"value": ""
|
|
}
|
|
},
|
|
"properties": {
|
|
"endPoint": {
|
|
"label": "End point",
|
|
"key": "endpoint",
|
|
"type": "text",
|
|
"description": "https://your-account.documents.azure.com"
|
|
},
|
|
"key": {
|
|
"label": "Key",
|
|
"key": "key",
|
|
"type": "password",
|
|
"description": "Enter your key"
|
|
}
|
|
},
|
|
"required": ["endpoint", "key"]
|
|
} |