n8n/packages/nodes-base/nodes/Notion/Notion.node.ts
Michael Kret 91d7e16c81
n8n-3867-progressively-apply-prettier-to-all (#3873)
* 🔨 formatting nodes with prettier
2022-08-17 17:50:24 +02:00

29 lines
797 B
TypeScript

import { INodeTypeBaseDescription, INodeVersionedType } from 'n8n-workflow';
import { NotionV1 } from './v1/NotionV1.node';
import { NotionV2 } from './v2/NotionV2.node';
import { NodeVersionedType } from '../../src/NodeVersionedType';
export class Notion extends NodeVersionedType {
constructor() {
const baseDescription: INodeTypeBaseDescription = {
displayName: 'Notion (Beta)',
name: 'notion',
icon: 'file:notion.svg',
group: ['output'],
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
description: 'Consume Notion API (Beta)',
defaultVersion: 2,
};
const nodeVersions: INodeVersionedType['nodeVersions'] = {
1: new NotionV1(baseDescription),
2: new NotionV2(baseDescription),
};
super(nodeVersions, baseDescription);
}
}