n8n-nodes-agnicwallet 1.0.12 → 1.0.14

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,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-agnicwallet",
3
- "version": "1.0.12",
3
+ "version": "1.0.14",
4
4
  "description": "n8n community node for AgnicWallet - automated Web3 payments for X402 APIs",
5
5
  "keywords": [
6
6
  "n8n-community-node-package",
@@ -35,8 +35,10 @@
35
35
  },
36
36
  "main": "index.js",
37
37
  "scripts": {
38
- "build": "tsc && gulp build:icons",
38
+ "build": "node esbuild.config.js && gulp build:icons",
39
39
  "dev": "tsc --watch",
40
+ "lint": "eslint nodes credentials --ext .ts",
41
+ "lint:fix": "eslint nodes credentials --ext .ts --fix",
40
42
  "format": "prettier nodes credentials --write",
41
43
  "format:check": "prettier nodes credentials --check",
42
44
  "prepublishOnly": "npm run build"
@@ -57,26 +59,27 @@
57
59
  "dist/nodes/AgnicMCPTool/AgnicMCPTool.node.js"
58
60
  ]
59
61
  },
60
- "dependencies": {
61
- "@modelcontextprotocol/sdk": "^1.24.0",
62
- "@n8n/json-schema-to-zod": "^1.6.0",
63
- "zod": "^3.23.0"
64
- },
65
62
  "devDependencies": {
66
63
  "@langchain/core": "^0.3.68",
67
64
  "@langchain/openai": "^0.6.16",
65
+ "@modelcontextprotocol/sdk": "^1.24.0",
66
+ "@n8n/json-schema-to-zod": "^1.6.0",
68
67
  "@types/node": "^20.10.0",
69
68
  "@typescript-eslint/parser": "^6.13.0",
69
+ "esbuild": "^0.27.2",
70
70
  "eslint": "^8.54.0",
71
71
  "eslint-plugin-n8n-nodes-base": "^1.16.1",
72
+ "glob": "^13.0.0",
72
73
  "gulp": "^4.0.2",
73
74
  "langchain": "^0.3.33",
74
75
  "n8n-workflow": "^1.40.0",
75
76
  "prettier": "^3.1.0",
76
- "typescript": "^5.3.0"
77
+ "typescript": "^5.3.0",
78
+ "zod": "^3.23.0"
77
79
  },
78
80
  "peerDependencies": {
79
81
  "@langchain/core": ">=0.2.0",
82
+ "@n8n/json-schema-to-zod": "*",
80
83
  "n8n-workflow": "*"
81
84
  }
82
85
  }
@@ -1,22 +0,0 @@
1
- import { INodeType, INodeTypeDescription, ISupplyDataFunctions, IExecuteFunctions, SupplyData, INodeExecutionData } from "n8n-workflow";
2
- /**
3
- * AgnicMCPTool - MCP Client for AgnicPay
4
- *
5
- * This is a supply-only AI tool node that connects to the AgnicPay MCP server
6
- * and provides X402 payment tools to AI Agents via the MCP protocol.
7
- *
8
- * This node cannot be executed directly - it only supplies tools to AI Agents.
9
- */
10
- export declare class AgnicMCPTool implements INodeType {
11
- description: INodeTypeDescription;
12
- /**
13
- * Execute method for direct tool invocation.
14
- * This is called when input data is passed directly to this node.
15
- */
16
- execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
17
- /**
18
- * Supply MCP tools to AI Agent.
19
- * This is the main method that provides tools to the AI Agent.
20
- */
21
- supplyData(this: ISupplyDataFunctions, itemIndex: number): Promise<SupplyData>;
22
- }