n8nac 1.6.2-next.2 → 1.6.2
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.
|
@@ -74,6 +74,8 @@ export interface WorkflowDecoratorOptions {
|
|
|
74
74
|
export interface NodeDecoratorOptions {
|
|
75
75
|
/** Unique identifier of the node (matches workflow JSON) */
|
|
76
76
|
id?: string;
|
|
77
|
+
/** Stable webhook ID assigned by n8n to webhook nodes */
|
|
78
|
+
webhookId?: string;
|
|
77
79
|
/** Display name shown in n8n UI */
|
|
78
80
|
name: string;
|
|
79
81
|
/** Node type identifier (e.g. "n8n-nodes-base.httpRequest") */
|
|
@@ -204,6 +206,8 @@ declare module '@n8n-as-code/transformer' {
|
|
|
204
206
|
export interface NodeDecoratorOptions {
|
|
205
207
|
/** Unique identifier of the node (matches workflow JSON) */
|
|
206
208
|
id?: string;
|
|
209
|
+
/** Stable webhook ID assigned by n8n to webhook nodes */
|
|
210
|
+
webhookId?: string;
|
|
207
211
|
/** Display name shown in n8n UI */
|
|
208
212
|
name: string;
|
|
209
213
|
/** Node type identifier (e.g. "n8n-nodes-base.httpRequest") */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8nac",
|
|
3
|
-
"version": "1.6.2
|
|
3
|
+
"version": "1.6.2",
|
|
4
4
|
"description": "Unified CLI for n8n-as-code — manage workflows and access AI tools",
|
|
5
5
|
"main": "./dist/lib.js",
|
|
6
6
|
"types": "./dist/lib.d.ts",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"test:coverage": "vitest run --coverage"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@n8n-as-code/skills": "1.8.2
|
|
25
|
+
"@n8n-as-code/skills": "1.8.2",
|
|
26
26
|
"@n8n-as-code/transformer": "1.1.0",
|
|
27
27
|
"@types/json-stable-stringify": "^1.1.0",
|
|
28
28
|
"axios": "^1.6.0",
|