n8n-nodes-notion-advanced 1.2.1-beta → 1.2.3-beta

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,21 +1,18 @@
1
1
  {
2
2
  "name": "n8n-nodes-notion-advanced",
3
- "version": "1.2.1-beta",
3
+ "version": "1.2.3-beta",
4
4
  "description": "Advanced n8n Notion nodes: Full-featured workflow node + AI Agent Tool for intelligent Notion automation with 25+ block types (BETA)",
5
- "scripts": {
6
- "build": "echo 'Already built'",
7
- "prepublishOnly": "echo 'Files already built, ready to publish'"
8
- },
5
+ "scripts": {},
9
6
  "files": [
10
- "nodes/",
11
- "NotionAdvanced/",
12
- "package.json"
7
+ "dist",
8
+ "README.md",
9
+ "LICENSE"
13
10
  ],
14
11
  "n8n": {
15
12
  "n8nNodesApiVersion": 1,
16
13
  "nodes": [
17
- "nodes/NotionAdvanced/NotionAdvanced.node.js",
18
- "nodes/NotionAdvanced/NotionAITool.node.js"
14
+ "dist/nodes/NotionAdvanced/NotionAdvanced.node.js",
15
+ "dist/nodes/NotionAdvanced/NotionAITool.node.js"
19
16
  ]
20
17
  },
21
18
  "keywords": [
@@ -1,3 +0,0 @@
1
- <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M4.459 4.208c.746.606 1.026.56 2.428.466l13.215-.793c.28 0 .047-.28-.046-.326L17.86 1.968c-.42-.326-.981-.7-2.055-.607L3.533 2.221c-.466.047-.56.28-.374.466l1.3.979zM5.206 6.678v14.018c0 .746.373 1.027 1.214.98l14.523-.84c.841-.046.935-.56.935-1.167V6.305c0-.607-.28-.887-.747-.84l-15.177.887c-.56.047-.748.327-.748.746v-.42zm14.337.793c.093.42 0 .84-.42.888l-.7.14v10.264c-.608.327-1.168.514-1.635.514-.748 0-.935-.234-1.495-.933l-4.577-7.186v6.952L12.21 18s0 .84-1.168.84l-3.222.186c-.093-.186 0-.653.327-.746l.84-.233V9.854L7.822 9.76c-.094-.42.14-1.026.793-1.073l3.456-.233 4.764 7.279v-6.44l-1.215-.139c-.093-.514.28-.887.747-.933l3.176-.233z" fill="currentColor"/>
3
- </svg>
@@ -1,17 +0,0 @@
1
- import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription, IDataObject } from 'n8n-workflow';
2
- export declare class NotionAITool implements INodeType {
3
- description: INodeTypeDescription;
4
- execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
5
- static createPageWithContent(executeFunctions: IExecuteFunctions, itemIndex: number): Promise<IDataObject>;
6
- static addContentToPage(executeFunctions: IExecuteFunctions, itemIndex: number): Promise<IDataObject>;
7
- static searchPages(executeFunctions: IExecuteFunctions, itemIndex: number): Promise<IDataObject>;
8
- static updatePageProperties(executeFunctions: IExecuteFunctions, itemIndex: number): Promise<IDataObject>;
9
- static createDatabaseEntry(executeFunctions: IExecuteFunctions, itemIndex: number): Promise<IDataObject>;
10
- static queryDatabase(executeFunctions: IExecuteFunctions, itemIndex: number): Promise<IDataObject>;
11
- static parseContentToBlocks(content: string): IDataObject[];
12
- static processXmlTags(content: string, blocks: IDataObject[]): string;
13
- static getCalloutEmoji(type: string): string;
14
- static getCalloutColor(type: string): string;
15
- static parseBasicMarkdown(text: string): IDataObject[];
16
- static parsePropertiesToUpdate(propertiesString: string): IDataObject;
17
- }