mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-25 15:37:37 +00:00
* initialized the plugin * Added token field and notion svg icon * added notion js client * Added token authentication * Added database query and retrieve operations * Working on other operations of database and page * Added archive page & get single property operations * Resolved an issue & changed placeholders * Added operations of block * Added start cursor to page & database * Added operations of user endpoint * changed icon & cover from object to fields * Updated documentation
36 lines
No EOL
706 B
JSON
36 lines
No EOL
706 B
JSON
|
|
{
|
|
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/manifest.schema.json",
|
|
"title": "Notion datasource",
|
|
"description": "A schema defining Notion datasource",
|
|
"type": "api",
|
|
"source": {
|
|
"name": "Notion",
|
|
"kind": "notion",
|
|
"exposedVariables": {
|
|
"isLoading": false,
|
|
"data": {},
|
|
"rawData": {}
|
|
},
|
|
"options": {
|
|
"token":{
|
|
"encrypted": true
|
|
}
|
|
}
|
|
},
|
|
"defaults": {
|
|
"token":{
|
|
"value": ""
|
|
}
|
|
},
|
|
"properties": {
|
|
"token": {
|
|
"label": "Token",
|
|
"key": "token",
|
|
"type": "text",
|
|
"description": "Enter token here",
|
|
"encrypted": true
|
|
}
|
|
},
|
|
"required": []
|
|
} |