n8n-core 1.15.1 → 1.16.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.
- package/dist/ActiveWorkflows.d.ts +7 -5
- package/dist/ActiveWorkflows.js +49 -53
- package/dist/ActiveWorkflows.js.map +1 -1
- package/dist/BinaryData/BinaryData.service.d.ts +1 -2
- package/dist/BinaryData/BinaryData.service.js +0 -22
- package/dist/BinaryData/BinaryData.service.js.map +1 -1
- package/dist/BinaryData/FileSystem.manager.js +8 -7
- package/dist/BinaryData/FileSystem.manager.js.map +1 -1
- package/dist/BinaryData/utils.d.ts +1 -0
- package/dist/BinaryData/utils.js +11 -1
- package/dist/BinaryData/utils.js.map +1 -1
- package/dist/Cipher.d.ts +1 -0
- package/dist/Cipher.js +27 -4
- package/dist/Cipher.js.map +1 -1
- package/dist/ExtractValue.js +2 -2
- package/dist/ExtractValue.js.map +1 -1
- package/dist/InstanceSettings.d.ts +2 -1
- package/dist/InstanceSettings.js +1 -0
- package/dist/InstanceSettings.js.map +1 -1
- package/dist/WorkflowExecute.js +2 -2
- package/dist/WorkflowExecute.js.map +1 -1
- package/dist/build.tsbuildinfo +1 -1
- package/dist/errors.d.ts +6 -0
- package/dist/errors.js +11 -1
- package/dist/errors.js.map +1 -1
- package/package.json +4 -6
- package/dist/decorators/LogCatch.decorator.d.ts +0 -1
- package/dist/decorators/LogCatch.decorator.js +0 -27
- package/dist/decorators/LogCatch.decorator.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "n8n-core",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.16.0",
|
|
4
4
|
"description": "Core functionality of n8n",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"homepage": "https://n8n.io",
|
|
@@ -26,7 +26,6 @@
|
|
|
26
26
|
"@types/aws4": "^1.5.1",
|
|
27
27
|
"@types/concat-stream": "^2.0.0",
|
|
28
28
|
"@types/cron": "~1.7.1",
|
|
29
|
-
"@types/crypto-js": "^4.1.3",
|
|
30
29
|
"@types/express": "^4.17.6",
|
|
31
30
|
"@types/lodash": "^4.14.195",
|
|
32
31
|
"@types/mime-types": "^2.1.0",
|
|
@@ -35,14 +34,13 @@
|
|
|
35
34
|
"@types/xml2js": "^0.4.11"
|
|
36
35
|
},
|
|
37
36
|
"peerDependencies": {
|
|
38
|
-
"n8n-nodes-base": "1.
|
|
37
|
+
"n8n-nodes-base": "1.16.0"
|
|
39
38
|
},
|
|
40
39
|
"dependencies": {
|
|
41
40
|
"aws4": "^1.8.0",
|
|
42
41
|
"axios": "^0.21.1",
|
|
43
42
|
"concat-stream": "^2.0.0",
|
|
44
43
|
"cron": "~1.7.2",
|
|
45
|
-
"crypto-js": "^4.2.0",
|
|
46
44
|
"fast-glob": "^3.2.5",
|
|
47
45
|
"file-type": "^16.5.4",
|
|
48
46
|
"flatted": "^3.2.4",
|
|
@@ -56,8 +54,8 @@
|
|
|
56
54
|
"typedi": "^0.10.0",
|
|
57
55
|
"uuid": "^8.3.2",
|
|
58
56
|
"xml2js": "^0.5.0",
|
|
59
|
-
"n8n-
|
|
60
|
-
"
|
|
57
|
+
"@n8n/client-oauth2": "0.8.0",
|
|
58
|
+
"n8n-workflow": "1.16.0"
|
|
61
59
|
},
|
|
62
60
|
"scripts": {
|
|
63
61
|
"clean": "rimraf dist .turbo",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const LogCatch: (logFn: (error: unknown) => void) => (target: unknown, propertyKey: string, descriptor: PropertyDescriptor) => PropertyDescriptor;
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.LogCatch = void 0;
|
|
4
|
-
const LogCatch = (logFn) => {
|
|
5
|
-
return (target, propertyKey, descriptor) => {
|
|
6
|
-
const originalMethod = descriptor.value;
|
|
7
|
-
descriptor.value = function (...args) {
|
|
8
|
-
try {
|
|
9
|
-
const result = originalMethod.apply(this, args);
|
|
10
|
-
if (result && result instanceof Promise) {
|
|
11
|
-
return result.catch((error) => {
|
|
12
|
-
logFn(error);
|
|
13
|
-
throw error;
|
|
14
|
-
});
|
|
15
|
-
}
|
|
16
|
-
return result;
|
|
17
|
-
}
|
|
18
|
-
catch (error) {
|
|
19
|
-
logFn(error);
|
|
20
|
-
throw error;
|
|
21
|
-
}
|
|
22
|
-
};
|
|
23
|
-
return descriptor;
|
|
24
|
-
};
|
|
25
|
-
};
|
|
26
|
-
exports.LogCatch = LogCatch;
|
|
27
|
-
//# sourceMappingURL=LogCatch.decorator.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"LogCatch.decorator.js","sourceRoot":"","sources":["../../src/decorators/LogCatch.decorator.ts"],"names":[],"mappings":";;;AAIO,MAAM,QAAQ,GAAG,CAAC,KAA+B,EAAE,EAAE;IAC3D,OAAO,CAAC,MAAe,EAAE,WAAmB,EAAE,UAA8B,EAAE,EAAE;QAC/E,MAAM,cAAc,GAAG,UAAU,CAAC,KAAK,CAAC;QAExC,UAAU,CAAC,KAAK,GAAG,UAAU,GAAG,IAAe;YAC9C,IAAI;gBACH,MAAM,MAAM,GAAY,cAAc,CAAC,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;gBAEzD,IAAI,MAAM,IAAI,MAAM,YAAY,OAAO,EAAE;oBACxC,OAAO,MAAM,CAAC,KAAK,CAAC,CAAC,KAAc,EAAE,EAAE;wBACtC,KAAK,CAAC,KAAK,CAAC,CAAC;wBACb,MAAM,KAAK,CAAC;oBACb,CAAC,CAAC,CAAC;iBACH;gBAED,OAAO,MAAM,CAAC;aACd;YAAC,OAAO,KAAK,EAAE;gBACf,KAAK,CAAC,KAAK,CAAC,CAAC;gBACb,MAAM,KAAK,CAAC;aACZ;QACF,CAAC,CAAC;QAEF,OAAO,UAAU,CAAC;IACnB,CAAC,CAAC;AACH,CAAC,CAAC;AAxBW,QAAA,QAAQ,YAwBnB"}
|