n8n-nodes-notion-advanced
Version:
Advanced n8n Notion nodes: Full-featured workflow node + AI Agent Tool for intelligent Notion automation with 25+ block types (BETA)
26 lines (25 loc) • 783 B
TypeScript
import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
export declare class NotionAdvanced implements INodeType {
description: INodeTypeDescription;
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
private executePage;
private executeBlock;
private executeDatabase;
private executeUser;
private createPage;
private getPage;
private updatePage;
private archivePage;
private searchPages;
private createBlocks;
private getBlock;
private updateBlock;
private deleteBlock;
private getBlockChildren;
private appendBlockChildren;
private getDatabase;
private queryDatabase;
private createDatabase;
private getUser;
private listUsers;
}