n8nac 1.1.0-next.59 → 1.1.0
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.
|
@@ -212,6 +212,16 @@ declare module '@n8n-as-code/transformer' {
|
|
|
212
212
|
credentials?: Record<string, { id: string; name: string }>;
|
|
213
213
|
/** Error handling mode */
|
|
214
214
|
onError?: 'continueErrorOutput' | 'continueRegularOutput' | 'stopWorkflow';
|
|
215
|
+
/** Always output data even when the node has no results */
|
|
216
|
+
alwaysOutputData?: boolean;
|
|
217
|
+
/** Execute this node only once, for the first item */
|
|
218
|
+
executeOnce?: boolean;
|
|
219
|
+
/** Retry on failure */
|
|
220
|
+
retryOnFail?: boolean;
|
|
221
|
+
/** Maximum number of retry attempts (used with retryOnFail) */
|
|
222
|
+
maxTries?: number;
|
|
223
|
+
/** Milliseconds to wait between retries (used with retryOnFail) */
|
|
224
|
+
waitBetweenTries?: number;
|
|
215
225
|
}
|
|
216
226
|
|
|
217
227
|
// =========================================================================
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8nac",
|
|
3
|
-
"version": "1.1.0
|
|
3
|
+
"version": "1.1.0",
|
|
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",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"test:coverage": "vitest run --coverage"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@n8n-as-code/skills": "1.1.0
|
|
25
|
-
"@n8n-as-code/transformer": "1.0.
|
|
24
|
+
"@n8n-as-code/skills": "1.1.0",
|
|
25
|
+
"@n8n-as-code/transformer": "1.0.1",
|
|
26
26
|
"@types/json-stable-stringify": "^1.1.0",
|
|
27
27
|
"axios": "^1.6.0",
|
|
28
28
|
"chalk": "^5.3.0",
|