2022-07-04 02:12:08 -07:00
/* eslint-disable n8n-nodes-base/node-filename-against-convention */
2023-01-27 03:22:44 -08:00
import type { INodeTypeDescription } from 'n8n-workflow' ;
2024-03-05 05:45:36 -08:00
import { databaseFields , databaseOperations } from '../shared/descriptions/DatabaseDescription' ;
2021-12-29 14:23:22 -08:00
2024-03-05 05:45:36 -08:00
import { userFields , userOperations } from '../shared/descriptions/UserDescription' ;
2021-12-29 14:23:22 -08:00
2024-03-05 05:45:36 -08:00
import { pageFields , pageOperations } from '../shared/descriptions/PageDescription' ;
2021-12-29 14:23:22 -08:00
2024-03-05 05:45:36 -08:00
import { blockFields , blockOperations } from '../shared/descriptions/BlockDescription' ;
2021-12-29 14:23:22 -08:00
2024-03-05 05:45:36 -08:00
import {
databasePageFields ,
databasePageOperations ,
} from '../shared/descriptions/DatabasePageDescription' ;
2021-12-29 14:23:22 -08:00
export const versionDescription : INodeTypeDescription = {
2023-01-20 04:49:02 -08:00
displayName : 'Notion' ,
2021-12-29 14:23:22 -08:00
name : 'notion' ,
icon : 'file:notion.svg' ,
group : [ 'output' ] ,
2024-03-13 04:57:17 -07:00
version : [ 2 , 2.1 , 2.2 ] ,
2021-12-29 14:23:22 -08:00
subtitle : '={{$parameter["operation"] + ": " + $parameter["resource"]}}' ,
2023-01-20 04:49:02 -08:00
description : 'Consume Notion API' ,
2021-12-29 14:23:22 -08:00
defaults : {
2023-05-18 09:33:08 -07:00
name : 'Notion' ,
2021-12-29 14:23:22 -08:00
} ,
inputs : [ 'main' ] ,
outputs : [ 'main' ] ,
credentials : [
{
name : 'notionApi' ,
required : true ,
// displayOptions: {
// show: {
// authentication: [
// 'apiKey',
// ],
// },
// },
} ,
// {
// name: 'notionOAuth2Api',
// required: true,
// displayOptions: {
// show: {
// authentication: [
// 'oAuth2',
// ],
// },
// },
// },
] ,
properties : [
// {
// displayName: 'Authentication',
// name: 'authentication',
// type: 'options',
// options: [
// {
// name: 'API Key',
// value: 'apiKey',
// },
// {
// name: 'OAuth2',
// value: 'oAuth2',
// },
// ],
// default: 'apiKey',
// description: 'The resource to operate on.',
// },
{
2023-01-20 04:49:02 -08:00
displayName :
'In Notion, make sure to <a href="https://www.notion.so/help/add-and-manage-connections-with-the-api" target="_blank">add your connection</a> to the pages you want to access.' ,
2021-12-29 14:23:22 -08:00
name : 'notionNotice' ,
type : 'notice' ,
default : '' ,
} ,
2023-11-13 03:11:16 -08:00
{
displayName : '' ,
name : 'Credentials' ,
type : 'credentials' ,
default : '' ,
} ,
2021-12-29 14:23:22 -08:00
{
displayName : 'Resource' ,
name : 'resource' ,
type : 'options' ,
2022-05-20 14:47:24 -07:00
noDataExpression : true ,
2021-12-29 14:23:22 -08:00
options : [
{
name : 'Block' ,
value : 'block' ,
} ,
{
name : 'Database' ,
value : 'database' ,
} ,
{
name : 'Database Page' ,
value : 'databasePage' ,
} ,
{
name : 'Page' ,
value : 'page' ,
} ,
{
name : 'User' ,
value : 'user' ,
} ,
] ,
default : 'page' ,
} ,
. . . blockOperations ,
. . . blockFields ,
. . . databaseOperations ,
. . . databaseFields ,
. . . databasePageOperations ,
. . . databasePageFields ,
. . . pageOperations ,
. . . pageFields ,
. . . userOperations ,
. . . userFields ,
] ,
} ;