ToolJet/plugins/packages/notion/lib/manifest.json
Muhsin Shah C P 22991ae900
[Feature] Notion plugin 🚀 (#2853)
* 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
2022-04-26 14:58:48 +05:30

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": []
}