n8n-core 0.138.0 → 0.140.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.
Files changed (39) hide show
  1. package/LICENSE.md +4 -2
  2. package/README.md +2 -2
  3. package/dist/src/ActiveWorkflows.js +2 -2
  4. package/dist/src/LoadNodeDetails.js +51 -0
  5. package/dist/src/LoadNodeListSearch.js +8 -50
  6. package/dist/src/LoadNodeParameterOptions.js +12 -54
  7. package/dist/src/NodeExecuteFunctions.js +6 -5
  8. package/dist/src/OAuth2Helper.js +20 -0
  9. package/dist/src/UserSettings.js +2 -1
  10. package/dist/tsconfig.tsbuildinfo +1 -1
  11. package/package.json +2 -22
  12. package/dist/src/ActiveWebhooks.d.ts +0 -13
  13. package/dist/src/ActiveWebhooks.js.map +0 -1
  14. package/dist/src/ActiveWorkflows.d.ts +0 -11
  15. package/dist/src/ActiveWorkflows.js.map +0 -1
  16. package/dist/src/BinaryDataManager/FileSystem.d.ts +0 -27
  17. package/dist/src/BinaryDataManager/FileSystem.js.map +0 -1
  18. package/dist/src/BinaryDataManager/index.d.ts +0 -22
  19. package/dist/src/BinaryDataManager/index.js.map +0 -1
  20. package/dist/src/Constants.d.ts +0 -15
  21. package/dist/src/Constants.js.map +0 -1
  22. package/dist/src/Credentials.d.ts +0 -9
  23. package/dist/src/Credentials.js.map +0 -1
  24. package/dist/src/ExtractValue.d.ts +0 -2
  25. package/dist/src/ExtractValue.js.map +0 -1
  26. package/dist/src/Interfaces.d.ts +0 -145
  27. package/dist/src/Interfaces.js.map +0 -1
  28. package/dist/src/LoadNodeListSearch.d.ts +0 -16
  29. package/dist/src/LoadNodeListSearch.js.map +0 -1
  30. package/dist/src/LoadNodeParameterOptions.d.ts +0 -17
  31. package/dist/src/LoadNodeParameterOptions.js.map +0 -1
  32. package/dist/src/NodeExecuteFunctions.d.ts +0 -34
  33. package/dist/src/NodeExecuteFunctions.js.map +0 -1
  34. package/dist/src/UserSettings.d.ts +0 -12
  35. package/dist/src/UserSettings.js.map +0 -1
  36. package/dist/src/WorkflowExecute.d.ts +0 -16
  37. package/dist/src/WorkflowExecute.js.map +0 -1
  38. package/dist/src/index.d.ts +0 -13
  39. package/dist/src/index.js.map +0 -1
package/LICENSE.md CHANGED
@@ -2,10 +2,12 @@
2
2
 
3
3
  Portions of this software are licensed as follows:
4
4
 
5
- - All source code files of this repository that contain ".ee." in their filename are licensed under the n8n Enterprise License defined in "LICENSE_EE.md".
5
+ - Content of branches other than the main branch (i.e. "master") are not licensed.
6
+ - All source code files that contain ".ee." in their filename are licensed under the
7
+ "n8n Enterprise License" defined in "LICENSE_EE.md".
6
8
  - All third party components incorporated into the n8n Software are licensed under the original license
7
9
  provided by the owner of the applicable component.
8
- - Content outside of the above mentioned files or restrictions above is available under the "Sustainable Use
10
+ - Content outside of the above mentioned files or restrictions is available under the "Sustainable Use
9
11
  License" as defined below.
10
12
 
11
13
  ## Sustainable Use License
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
- # n8n-core
1
+ ![n8n.io - Workflow Automation](https://user-images.githubusercontent.com/65276001/173571060-9f2f6d7b-bac0-43b6-bdb2-001da9694058.png)
2
2
 
3
- ![n8n.io - Workflow Automation](https://raw.githubusercontent.com/n8n-io/n8n/master/assets/n8n-logo.png)
3
+ # n8n-core
4
4
 
5
5
  Core components for n8n
6
6
 
@@ -29,7 +29,7 @@ class ActiveWorkflows {
29
29
  }
30
30
  }
31
31
  catch (error) {
32
- throw new n8n_workflow_1.WorkflowActivationError(`There was a problem activating the workflow: "${error.message}"`, error, triggerNode);
32
+ throw new n8n_workflow_1.WorkflowActivationError(`There was a problem activating the workflow: "${error.message}"`, { cause: error, node: triggerNode });
33
33
  }
34
34
  }
35
35
  const pollNodes = workflow.getPollNodes();
@@ -40,7 +40,7 @@ class ActiveWorkflows {
40
40
  this.workflowData[id].pollResponses.push(await this.activatePolling(pollNode, workflow, additionalData, getPollFunctions, mode, activation));
41
41
  }
42
42
  catch (error) {
43
- throw new n8n_workflow_1.WorkflowActivationError(`There was a problem activating the workflow: "${error.message}"`, error, pollNode);
43
+ throw new n8n_workflow_1.WorkflowActivationError(`There was a problem activating the workflow: "${error.message}"`, { cause: error, node: pollNode });
44
44
  }
45
45
  }
46
46
  }
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.LoadNodeDetails = void 0;
4
+ const n8n_workflow_1 = require("n8n-workflow");
5
+ const TEMP_NODE_NAME = 'Temp-Node';
6
+ const TEMP_WORKFLOW_NAME = 'Temp-Workflow';
7
+ class LoadNodeDetails {
8
+ constructor(nodeTypeNameAndVersion, nodeTypes, path, currentNodeParameters, credentials) {
9
+ const nodeType = nodeTypes.getByNameAndVersion(nodeTypeNameAndVersion.name, nodeTypeNameAndVersion.version);
10
+ this.path = path;
11
+ if (nodeType === undefined) {
12
+ throw new Error(`The node-type "${nodeTypeNameAndVersion.name} v${nodeTypeNameAndVersion.version}" is not known!`);
13
+ }
14
+ const nodeData = {
15
+ parameters: currentNodeParameters,
16
+ id: 'uuid-1234',
17
+ name: TEMP_NODE_NAME,
18
+ type: nodeTypeNameAndVersion.name,
19
+ typeVersion: nodeTypeNameAndVersion.version,
20
+ position: [0, 0],
21
+ };
22
+ if (credentials) {
23
+ nodeData.credentials = credentials;
24
+ }
25
+ const workflowData = {
26
+ nodes: [nodeData],
27
+ connections: {},
28
+ };
29
+ this.workflow = new n8n_workflow_1.Workflow({
30
+ nodes: workflowData.nodes,
31
+ connections: workflowData.connections,
32
+ active: false,
33
+ nodeTypes,
34
+ });
35
+ }
36
+ getWorkflowData() {
37
+ return {
38
+ name: TEMP_WORKFLOW_NAME,
39
+ active: false,
40
+ connections: {},
41
+ nodes: Object.values(this.workflow.nodes),
42
+ createdAt: new Date(),
43
+ updatedAt: new Date(),
44
+ };
45
+ }
46
+ getTempNode() {
47
+ return this.workflow.getNode(TEMP_NODE_NAME);
48
+ }
49
+ }
50
+ exports.LoadNodeDetails = LoadNodeDetails;
51
+ //# sourceMappingURL=LoadNodeDetails.js.map
@@ -1,61 +1,19 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.LoadNodeListSearch = void 0;
4
- const n8n_workflow_1 = require("n8n-workflow");
5
4
  const _1 = require(".");
6
- const TEMP_NODE_NAME = 'Temp-Node';
7
- const TEMP_WORKFLOW_NAME = 'Temp-Workflow';
8
- class LoadNodeListSearch {
9
- constructor(nodeTypeNameAndVersion, nodeTypes, path, currentNodeParameters, credentials) {
10
- const nodeType = nodeTypes.getByNameAndVersion(nodeTypeNameAndVersion.name, nodeTypeNameAndVersion.version);
11
- this.currentNodeParameters = currentNodeParameters;
12
- this.path = path;
13
- if (nodeType === undefined) {
14
- throw new Error(`The node-type "${nodeTypeNameAndVersion.name} v${nodeTypeNameAndVersion.version}" is not known!`);
15
- }
16
- const nodeData = {
17
- parameters: currentNodeParameters,
18
- id: 'uuid-1234',
19
- name: TEMP_NODE_NAME,
20
- type: nodeTypeNameAndVersion.name,
21
- typeVersion: nodeTypeNameAndVersion.version,
22
- position: [0, 0],
23
- };
24
- if (credentials) {
25
- nodeData.credentials = credentials;
26
- }
27
- const workflowData = {
28
- nodes: [nodeData],
29
- connections: {},
30
- };
31
- this.workflow = new n8n_workflow_1.Workflow({
32
- nodes: workflowData.nodes,
33
- connections: workflowData.connections,
34
- active: false,
35
- nodeTypes,
36
- });
37
- }
38
- getWorkflowData() {
39
- return {
40
- name: TEMP_WORKFLOW_NAME,
41
- active: false,
42
- connections: {},
43
- nodes: Object.values(this.workflow.nodes),
44
- createdAt: new Date(),
45
- updatedAt: new Date(),
46
- };
47
- }
5
+ const LoadNodeDetails_1 = require("./LoadNodeDetails");
6
+ class LoadNodeListSearch extends LoadNodeDetails_1.LoadNodeDetails {
48
7
  async getOptionsViaMethodName(methodName, additionalData, filter, paginationToken) {
49
- const node = this.workflow.getNode(TEMP_NODE_NAME);
50
- const nodeType = this.workflow.nodeTypes.getByNameAndVersion(node.type, node === null || node === void 0 ? void 0 : node.typeVersion);
51
- if (!nodeType ||
52
- nodeType.methods === undefined ||
53
- nodeType.methods.listSearch === undefined ||
54
- nodeType.methods.listSearch[methodName] === undefined) {
8
+ var _a, _b;
9
+ const node = this.getTempNode();
10
+ const nodeType = this.workflow.nodeTypes.getByNameAndVersion(node.type, node.typeVersion);
11
+ const method = (_b = (_a = nodeType === null || nodeType === void 0 ? void 0 : nodeType.methods) === null || _a === void 0 ? void 0 : _a.listSearch) === null || _b === void 0 ? void 0 : _b[methodName];
12
+ if (typeof method !== 'function') {
55
13
  throw new Error(`The node-type "${node.type}" does not have the method "${methodName}" defined!`);
56
14
  }
57
15
  const thisArgs = _1.NodeExecuteFunctions.getLoadOptionsFunctions(this.workflow, node, this.path, additionalData);
58
- return nodeType.methods.listSearch[methodName].call(thisArgs, filter, paginationToken);
16
+ return method.call(thisArgs, filter, paginationToken);
59
17
  }
60
18
  }
61
19
  exports.LoadNodeListSearch = LoadNodeListSearch;
@@ -3,66 +3,24 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.LoadNodeParameterOptions = void 0;
4
4
  const n8n_workflow_1 = require("n8n-workflow");
5
5
  const _1 = require(".");
6
- const TEMP_NODE_NAME = 'Temp-Node';
7
- const TEMP_WORKFLOW_NAME = 'Temp-Workflow';
8
- class LoadNodeParameterOptions {
9
- constructor(nodeTypeNameAndVersion, nodeTypes, path, currentNodeParameters, credentials) {
10
- const nodeType = nodeTypes.getByNameAndVersion(nodeTypeNameAndVersion.name, nodeTypeNameAndVersion.version);
11
- this.currentNodeParameters = currentNodeParameters;
12
- this.path = path;
13
- if (nodeType === undefined) {
14
- throw new Error(`The node-type "${nodeTypeNameAndVersion.name} v${nodeTypeNameAndVersion.version}" is not known!`);
15
- }
16
- const nodeData = {
17
- parameters: currentNodeParameters,
18
- id: 'uuid-1234',
19
- name: TEMP_NODE_NAME,
20
- type: nodeTypeNameAndVersion.name,
21
- typeVersion: nodeTypeNameAndVersion.version,
22
- position: [0, 0],
23
- };
24
- if (credentials) {
25
- nodeData.credentials = credentials;
26
- }
27
- const workflowData = {
28
- nodes: [nodeData],
29
- connections: {},
30
- };
31
- this.workflow = new n8n_workflow_1.Workflow({
32
- nodes: workflowData.nodes,
33
- connections: workflowData.connections,
34
- active: false,
35
- nodeTypes,
36
- });
37
- }
38
- getWorkflowData() {
39
- return {
40
- name: TEMP_WORKFLOW_NAME,
41
- active: false,
42
- connections: {},
43
- nodes: Object.values(this.workflow.nodes),
44
- createdAt: new Date(),
45
- updatedAt: new Date(),
46
- };
47
- }
6
+ const LoadNodeDetails_1 = require("./LoadNodeDetails");
7
+ class LoadNodeParameterOptions extends LoadNodeDetails_1.LoadNodeDetails {
48
8
  async getOptionsViaMethodName(methodName, additionalData) {
49
- const node = this.workflow.getNode(TEMP_NODE_NAME);
50
- const nodeType = this.workflow.nodeTypes.getByNameAndVersion(node.type, node === null || node === void 0 ? void 0 : node.typeVersion);
51
- if (!nodeType ||
52
- nodeType.methods === undefined ||
53
- nodeType.methods.loadOptions === undefined ||
54
- nodeType.methods.loadOptions[methodName] === undefined) {
9
+ var _a, _b;
10
+ const node = this.getTempNode();
11
+ const nodeType = this.workflow.nodeTypes.getByNameAndVersion(node.type, node.typeVersion);
12
+ const method = (_b = (_a = nodeType === null || nodeType === void 0 ? void 0 : nodeType.methods) === null || _a === void 0 ? void 0 : _a.loadOptions) === null || _b === void 0 ? void 0 : _b[methodName];
13
+ if (typeof method !== 'function') {
55
14
  throw new Error(`The node-type "${node.type}" does not have the method "${methodName}" defined!`);
56
15
  }
57
16
  const thisArgs = _1.NodeExecuteFunctions.getLoadOptionsFunctions(this.workflow, node, this.path, additionalData);
58
- return nodeType.methods.loadOptions[methodName].call(thisArgs);
17
+ return method.call(thisArgs);
59
18
  }
60
19
  async getOptionsViaRequestProperty(loadOptions, additionalData) {
61
- const node = this.workflow.getNode(TEMP_NODE_NAME);
20
+ var _a, _b;
21
+ const node = this.getTempNode();
62
22
  const nodeType = this.workflow.nodeTypes.getByNameAndVersion(node.type, node === null || node === void 0 ? void 0 : node.typeVersion);
63
- if (nodeType === undefined ||
64
- !nodeType.description.requestDefaults ||
65
- !nodeType.description.requestDefaults.baseURL) {
23
+ if (!((_b = (_a = nodeType === null || nodeType === void 0 ? void 0 : nodeType.description) === null || _a === void 0 ? void 0 : _a.requestDefaults) === null || _b === void 0 ? void 0 : _b.baseURL)) {
66
24
  throw new Error(`The node-type "${node.type}" does not exist or does not have "requestDefaults.baseURL" defined!`);
67
25
  }
68
26
  const mode = 'internal';
@@ -90,7 +48,7 @@ class LoadNodeParameterOptions {
90
48
  const inputData = {
91
49
  main: [[{ json: {} }]],
92
50
  };
93
- const optionsData = await routingNode.runNode(inputData, runIndex, tempNode, { node: node, source: null, data: {} }, _1.NodeExecuteFunctions);
51
+ const optionsData = await routingNode.runNode(inputData, runIndex, tempNode, { node, source: null, data: {} }, _1.NodeExecuteFunctions);
94
52
  if ((optionsData === null || optionsData === void 0 ? void 0 : optionsData.length) === 0) {
95
53
  return [];
96
54
  }
@@ -44,6 +44,7 @@ const url_1 = __importStar(require("url"));
44
44
  const BinaryDataManager_1 = require("./BinaryDataManager");
45
45
  const _1 = require(".");
46
46
  const ExtractValue_1 = require("./ExtractValue");
47
+ const OAuth2Helper_1 = require("./OAuth2Helper");
47
48
  axios_1.default.defaults.timeout = 300000;
48
49
  axios_1.default.defaults.headers.post = {};
49
50
  axios_1.default.defaults.headers.put = {};
@@ -661,12 +662,12 @@ async function requestOAuth2(credentialsType, requestOptions, node, additionalDa
661
662
  });
662
663
  let oauthTokenData = credentials.oauthTokenData;
663
664
  if (credentials.grantType === n8n_workflow_1.OAuth2GrantType.clientCredentials && oauthTokenData === undefined) {
664
- const { data } = await oAuthClient.credentials.getToken();
665
+ const { data } = await (0, OAuth2Helper_1.getClientCredentialsToken)(oAuthClient, credentials);
665
666
  if (!((_a = node.credentials) === null || _a === void 0 ? void 0 : _a[credentialsType])) {
666
667
  throw new Error(`The node "${node.name}" does not have credentials of type "${credentialsType}"!`);
667
668
  }
668
669
  const nodeCredentials = node.credentials[credentialsType];
669
- await additionalData.credentialsHelper.updateCredentials(nodeCredentials, credentialsType, credentials);
670
+ await additionalData.credentialsHelper.updateCredentials(nodeCredentials, credentialsType, Object.assign(credentials, { oauthTokenData: data }));
670
671
  oauthTokenData = data;
671
672
  }
672
673
  const token = oAuthClient.createToken((0, lodash_1.get)(oauthTokenData, oAuth2Options === null || oAuth2Options === void 0 ? void 0 : oAuth2Options.property) || oauthTokenData.accessToken, oauthTokenData.refreshToken, (oAuth2Options === null || oAuth2Options === void 0 ? void 0 : oAuth2Options.tokenType) || oauthTokenData.tokenType, oauthTokenData);
@@ -700,7 +701,7 @@ async function requestOAuth2(credentialsType, requestOptions, node, additionalDa
700
701
  let newToken;
701
702
  n8n_workflow_1.LoggerProxy.debug(`OAuth2 token for "${credentialsType}" used by node "${node.name}" has been renewed.`);
702
703
  if (n8n_workflow_1.OAuth2GrantType.clientCredentials === credentials.grantType) {
703
- newToken = await token.client.credentials.getToken();
704
+ newToken = await (0, OAuth2Helper_1.getClientCredentialsToken)(token.client, credentials);
704
705
  }
705
706
  else {
706
707
  newToken = await token.refresh(tokenRefreshOptions);
@@ -743,7 +744,7 @@ async function requestOAuth2(credentialsType, requestOptions, node, additionalDa
743
744
  n8n_workflow_1.LoggerProxy.debug(`OAuth2 token for "${credentialsType}" used by node "${node.name}" expired. Should revalidate.`);
744
745
  let newToken;
745
746
  if (n8n_workflow_1.OAuth2GrantType.clientCredentials === credentials.grantType) {
746
- newToken = await token.client.credentials.getToken();
747
+ newToken = await (0, OAuth2Helper_1.getClientCredentialsToken)(token.client, credentials);
747
748
  }
748
749
  else {
749
750
  newToken = await token.refresh(tokenRefreshOptions);
@@ -1024,7 +1025,7 @@ async function getCredentials(workflow, node, type, additionalData, mode, runExe
1024
1025
  }
1025
1026
  exports.getCredentials = getCredentials;
1026
1027
  function getNode(node) {
1027
- return JSON.parse(JSON.stringify(node));
1028
+ return (0, n8n_workflow_1.deepCopy)(node);
1028
1029
  }
1029
1030
  exports.getNode = getNode;
1030
1031
  function cleanupParameterData(inputData) {
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getClientCredentialsToken = void 0;
4
+ const getClientCredentialsToken = async (oAuth2Client, credentials) => {
5
+ const options = {};
6
+ if (credentials.authentication === 'body') {
7
+ Object.assign(options, {
8
+ headers: {
9
+ Authorization: '',
10
+ },
11
+ body: {
12
+ client_id: credentials.clientId,
13
+ client_secret: credentials.clientSecret,
14
+ },
15
+ });
16
+ }
17
+ return oAuth2Client.credentials.getToken(options);
18
+ };
19
+ exports.getClientCredentialsToken = getClientCredentialsToken;
20
+ //# sourceMappingURL=OAuth2Helper.js.map
@@ -8,6 +8,7 @@ const fs_1 = __importDefault(require("fs"));
8
8
  const path_1 = __importDefault(require("path"));
9
9
  const crypto_1 = require("crypto");
10
10
  const _1 = require(".");
11
+ const n8n_workflow_1 = require("n8n-workflow");
11
12
  const { promisify } = require('util');
12
13
  const fsAccess = promisify(fs_1.default.access);
13
14
  const fsReadFile = promisify(fs_1.default.readFile);
@@ -100,7 +101,7 @@ async function writeUserSettings(userSettings, settingsPath) {
100
101
  delete settingsToWrite.instanceId;
101
102
  }
102
103
  await fsWriteFile(settingsPath, JSON.stringify(settingsToWrite, null, '\t'));
103
- settingsCache = JSON.parse(JSON.stringify(userSettings));
104
+ settingsCache = (0, n8n_workflow_1.deepCopy)(userSettings);
104
105
  return userSettings;
105
106
  }
106
107
  exports.writeUserSettings = writeUserSettings;
@@ -1 +1 @@
1
- {"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/@types/node/ts4.8/assert.d.ts","../../../node_modules/@types/node/ts4.8/assert/strict.d.ts","../../../node_modules/@types/node/ts4.8/globals.d.ts","../../../node_modules/@types/node/ts4.8/async_hooks.d.ts","../../../node_modules/@types/node/ts4.8/buffer.d.ts","../../../node_modules/@types/node/ts4.8/child_process.d.ts","../../../node_modules/@types/node/ts4.8/cluster.d.ts","../../../node_modules/@types/node/ts4.8/console.d.ts","../../../node_modules/@types/node/ts4.8/constants.d.ts","../../../node_modules/@types/node/ts4.8/crypto.d.ts","../../../node_modules/@types/node/ts4.8/dgram.d.ts","../../../node_modules/@types/node/ts4.8/diagnostics_channel.d.ts","../../../node_modules/@types/node/ts4.8/dns.d.ts","../../../node_modules/@types/node/ts4.8/dns/promises.d.ts","../../../node_modules/@types/node/ts4.8/domain.d.ts","../../../node_modules/@types/node/ts4.8/events.d.ts","../../../node_modules/@types/node/ts4.8/fs.d.ts","../../../node_modules/@types/node/ts4.8/fs/promises.d.ts","../../../node_modules/@types/node/ts4.8/http.d.ts","../../../node_modules/@types/node/ts4.8/http2.d.ts","../../../node_modules/@types/node/ts4.8/https.d.ts","../../../node_modules/@types/node/ts4.8/inspector.d.ts","../../../node_modules/@types/node/ts4.8/module.d.ts","../../../node_modules/@types/node/ts4.8/net.d.ts","../../../node_modules/@types/node/ts4.8/os.d.ts","../../../node_modules/@types/node/ts4.8/path.d.ts","../../../node_modules/@types/node/ts4.8/perf_hooks.d.ts","../../../node_modules/@types/node/ts4.8/process.d.ts","../../../node_modules/@types/node/ts4.8/punycode.d.ts","../../../node_modules/@types/node/ts4.8/querystring.d.ts","../../../node_modules/@types/node/ts4.8/readline.d.ts","../../../node_modules/@types/node/ts4.8/repl.d.ts","../../../node_modules/@types/node/ts4.8/stream.d.ts","../../../node_modules/@types/node/ts4.8/stream/promises.d.ts","../../../node_modules/@types/node/ts4.8/stream/consumers.d.ts","../../../node_modules/@types/node/ts4.8/stream/web.d.ts","../../../node_modules/@types/node/ts4.8/string_decoder.d.ts","../../../node_modules/@types/node/ts4.8/test.d.ts","../../../node_modules/@types/node/ts4.8/timers.d.ts","../../../node_modules/@types/node/ts4.8/timers/promises.d.ts","../../../node_modules/@types/node/ts4.8/tls.d.ts","../../../node_modules/@types/node/ts4.8/trace_events.d.ts","../../../node_modules/@types/node/ts4.8/tty.d.ts","../../../node_modules/@types/node/ts4.8/url.d.ts","../../../node_modules/@types/node/ts4.8/util.d.ts","../../../node_modules/@types/node/ts4.8/v8.d.ts","../../../node_modules/@types/node/ts4.8/vm.d.ts","../../../node_modules/@types/node/ts4.8/wasi.d.ts","../../../node_modules/@types/node/ts4.8/worker_threads.d.ts","../../../node_modules/@types/node/ts4.8/zlib.d.ts","../../../node_modules/@types/node/ts4.8/globals.global.d.ts","../../../node_modules/@types/node/ts4.8/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/form-data/index.d.ts","../../workflow/dist/src/DeferredPromise.d.ts","../../workflow/dist/src/Expression.d.ts","../../workflow/dist/src/Workflow.d.ts","../../workflow/dist/src/WorkflowHooks.d.ts","../../workflow/dist/src/NodeErrors.d.ts","../../workflow/dist/src/WorkflowActivationError.d.ts","../../workflow/dist/src/WorkflowErrors.d.ts","../../workflow/dist/src/ExpressionError.d.ts","../../workflow/dist/src/Interfaces.d.ts","../../workflow/dist/src/LoggerProxy.d.ts","../../workflow/dist/src/NodeHelpers.d.ts","../../workflow/dist/src/ObservableObject.d.ts","../../workflow/dist/src/TelemetryHelpers.d.ts","../../workflow/dist/src/Cron.d.ts","../../workflow/dist/src/RoutingNode.d.ts","../../workflow/dist/src/WorkflowDataProxy.d.ts","../../workflow/dist/src/index.d.ts","../../../node_modules/oauth-1.0a/oauth-1.0a.d.ts","../../../node_modules/client-oauth2/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/caseless/index.d.ts","../../../node_modules/@types/request/node_modules/form-data/index.d.ts","../../../node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/@types/request/index.d.ts","../../../node_modules/@types/request-promise-native/index.d.ts","../../../node_modules/@tokenizer/token/index.d.ts","../../../node_modules/strtok3/lib/types.d.ts","../../../node_modules/strtok3/lib/AbstractTokenizer.d.ts","../../../node_modules/strtok3/lib/ReadStreamTokenizer.d.ts","../../../node_modules/strtok3/lib/BufferTokenizer.d.ts","../../../node_modules/peek-readable/lib/EndOfFileStream.d.ts","../../../node_modules/peek-readable/lib/StreamReader.d.ts","../../../node_modules/peek-readable/lib/index.d.ts","../../../node_modules/strtok3/lib/core.d.ts","../../../node_modules/file-type/core.d.ts","../../../node_modules/file-type/index.d.ts","../../../node_modules/@types/mime-types/index.d.ts","../../../node_modules/axios/index.d.ts","../src/Constants.ts","../src/Interfaces.ts","../../../node_modules/@types/uuid/index.d.ts","../src/BinaryDataManager/FileSystem.ts","../src/BinaryDataManager/index.ts","../src/ExtractValue.ts","../src/NodeExecuteFunctions.ts","../src/UserSettings.ts","../../../node_modules/moment/ts3.1-typings/moment.d.ts","../../../node_modules/@types/cron/index.d.ts","../src/ActiveWorkflows.ts","../../../node_modules/@types/crypto-js/index.d.ts","../src/Credentials.ts","../src/LoadNodeParameterOptions.ts","../src/LoadNodeListSearch.ts","../../../node_modules/p-cancelable/index.d.ts","../src/WorkflowExecute.ts","../src/index.ts","../src/ActiveWebhooks.ts","../../../node_modules/jest-matcher-utils/node_modules/chalk/index.d.ts","../../../node_modules/jest-diff/build/cleanupSemantic.d.ts","../../../node_modules/jest-diff/node_modules/pretty-format/build/types.d.ts","../../../node_modules/jest-diff/node_modules/pretty-format/build/index.d.ts","../../../node_modules/jest-diff/build/types.d.ts","../../../node_modules/jest-diff/build/diffLines.d.ts","../../../node_modules/jest-diff/build/printDiffs.d.ts","../../../node_modules/jest-diff/build/index.d.ts","../../../node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/@types/jest/node_modules/pretty-format/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"f20c05dbfe50a208301d2a1da37b9931bce0466eb5a1f4fe240971b4ecc82b67","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"55f400eec64d17e888e278f4def2f254b41b89515d3b88ad75d5e05f019daddd","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"775d9c9fd150d5de79e0450f35bc8b8f94ae64e3eb5da12725ff2a649dccc777","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"2f6c9750131d5d2fdaba85c164a930dc07d2d7e7e8970b89d32864aa6c72620c","affectsGlobalScope":true},"56d13f223ab40f71840795f5bef2552a397a70666ee60878222407f3893fb8d0",{"version":"4ffef5c4698e94e49dcf150e3270bad2b24a2aeab48b24acbe7c1366edff377d","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","3a0c45fe95e8f0e2c5247d48acf3a522d2ef29f1ab0effb3c59a9c4fdd5edbcd","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","c993aac3b6d4a4620ef9651497069eb84806a131420e4f158ea9396fb8eb9b8c","76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409","0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122","06ccebc2c2db57d6bdbca63b71c4ae5e6ddc42d972fd8f122d4c1a28aa111b25",{"version":"81e8508d1e82278f5d3fee936f267e00c308af36219bfcee2631f9513c9c4017","affectsGlobalScope":true},"413a4be7f94f631235bbc83dad36c4d15e5a2ff02bca1efdbd03636d6454631b","20c468256fd68d3ef1fa53526e76d51d6aa91711e84d72c0343589b99238287e","81290114466b1a05503a1142be27f5b85b033c95eb4291359aaeeb0b8b9bdbfb","8d4c16a26d59e3ce49741a7d4a6e8206b884e226cf308667c7778a0b2c0fee7f","ee3bad055a79f188626b1a7046f04ab151fdd3581e55c51d32face175bd9d06f","d61c7c41eb1960b1285e242fd102c162b65c0522985b839fadda59874308a170",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"1dbccafbca82a60fdfb0fb3c28e2493ff76d06647a512dcf72a086022e8b6f91","d10f4929cd610c26926d6784fc3f9f4120b789c03081b5d65fb2d2670a00fa04","fb0989383c6109f20281b3d31265293daefdd76d0d30551782c1654e93704f48","a4210a84a82b3e7a8cec5b2f3616e46d523f4f10cc1576d8f2fb89d0987b341e",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","02b3239cf1b1ff8737e383ed5557f0247499d15f5bd21ab849b1a24687b6100c","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","698ab660b477b9c2cd5ccbd99e7e7df8b4a6134c1f5711fa615ed7aab51cb7f7","33eee034727baf564056b4ea719075c23d3b4767d0b5f9c6933b81f3d77774d2","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637","a4471d2bdba495b2a6a30b8765d5e0282fa7009d88345a9528f73c37869d3b93",{"version":"aee7013623e7632fba449d4df1da92925b27d9b816cb05546044dbfe54c88ef4","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","c9d70d3d7191a66a81cb554557f8ed1cf736ea8397c44a864fe52689de18865a","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4",{"version":"1aad825534c73852a1f3275e527d729a2c0640f539198fdfdfeb83b839851910","affectsGlobalScope":true},"badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"e3685a8957b4e2af64c3f04a58289ee0858a649dbcd963a2b897fe85858ae18a","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"ae3fe461989bbd951344efc1f1fe932360ce7392e6126bdb225a82a1bbaf15ee","affectsGlobalScope":true},"84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","f47887b61c6cf2f48746980390d6cb5b8013518951d912cfb37fe748071942be","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","c4299421b95e09c0fe92cf8cead37a8a9af1b8920cb185bfaee76537657f3cab","17532c1339da07d0388a56cfac9fb9eb2af3caaaf550f9bd17f1bf984517ffdf","5ca891aad691fb4cd4f6ee2c28ab9db0875d6f04e4047171176e759fca79d750","0d0d319489059ab6959d08ac6c1b013220da4dbc28dc4d2aa4919e4bed1eedc1","299e74b82a0c3d3c0c91905eab3e4ddfec190ca8b333c93ca36b77b77a55e8ae","ec00ffd7087b6e7515f2fce333051811788c718e0dae8261e1a8ba10a8adb021","a578226286a4135d9cfca08034d5dd111de6754b495ce4f618ded9f0a5866190","efa04bd59dbf54c4ce225ed7084e4e03319c1bf062af2d31c1de1463c9219036","2cb96d4a7b2a9f8538dc980925d8c7d74162b27580c6470c485736e77f9f1991","b7b3958334f8bff712551362cabd7cc0e9484c512423ba1066137361b4a11093","9dc298fb06b370955d41fa85b38451f9e9819b3bb8a55ccf6736278c88b1e11e","7e77da7fd10d9561032c8a3894f28bc8ca2cda365eda3c4ad4c6a3abab93a28a","c1c5bddcba6fe35c1541f7a00d147825e5f88ee8e400b8d7d1be1cdfe08419c4","51bf9f55b74f7493c2f8fc7d383fb7f1529825d22e02ae0fd777d4f741984c96","53c35f5166f16c0f2cc12741dd1781c1f2928916b1ad4ca95778ce6ea9c233c0","eb4abb197fcb43aedab5346fdfa687ea630c570f7b6c3c9c473401e2ce483e09","db60ade13a0fa526cd45c5258c761f08087b9e1912a55f46597cab3c7cb83b2e","a7755c2d99539fb62de0630fb339af59614846f4551daccf6cb26586a114e8ba","d5c7198f64727225ce162d9b4fa82bd14330983c0bad72e1ce06ea7beffb1a7b","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","98f9d826db9cd99d27a01a59ee5f22863df00ccf1aaf43e1d7db80ebf716f7c3","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","7a79ca84e4370ed2e1afaa99ff7d25194901916b7672e977d16f77af3b71342f","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"5343f3c160282dfbaab9af350119a0c3b59b7076ef0117bb5995a66e240dab28","e91ad231af87f864b3f07cd0e39b1cf6c133988156f087c1c3ccb0a5491c9115","cc256fd958b33576ed32c7338c64adb0d08fc0c2c6525010202fab83f32745da","bf0b1297461549a0e32cd57dffb992c63d7c7134fe0f9e15d359abcc88dbd28c","7467a3a9a7941b98dc80713e03b474a1d5e0ce25701a9f1b3c96db00aed9880a","e46cf250ea18d419593c3d20e3cab8465158dd7b891a46f30ca382a109a55131","eadec4b3993fa56d629b7c02e2cb0531eb11362fdfda2766deaa598d64906d13","2bcfd882be72fd38dd42615b3bcd986d6111f01abb7cbfcfd876e5b563855ab9","a88987c83820f32ed5d1532c6f699a0376a13ef6b8ec3e1cb1053854bac2b8ef","4a414ae11ff469c3a6c167904d55397f5d34a017fa8ca081b7a4de367bcffad5","898b727754bc306cfc39cd12b46a005f366e3074fe310ab9b802b97723f6dc54","0a4459223dc1782fcb1addf048fd99ea0f30d5d05c9fbd0d2b05e0d66bf069ba","ece28543c32d4589c7df021f32ccc7943875a87da81a3086284aecc1f7460bd2","ef1bd16c92e920fb4b6fee491c7c8494469f276e99157620da8110b60545edc8","f71ee05d30bd43468cd0653b9b6ecdf3ecdb07a8f9d8a004a0ff24985cc9fa07","d07ef1165c38c2efe0ffc9823e36c0511092061ce12d3c80607ee9c0739f802e","c757372a092924f5c16eaf11a1475b80b95bb4dae49fe3242d2ad908f97d5abe","3154a026075044aa102298fe9e6a7a14aaa26a06270680c7478a1765af8ffb09",{"version":"f97b7586f42a27d9beff810576ed3ae943e3665b7d04961fefb57ff82ca2d04d","signature":"d32a91be01c1d9fd07f7f50fbd502585b74629e9d8cf3ad7ae7c08d40f0ebcd1"},{"version":"fbd747fe3ffc7cf93b67f0693bd30ee733184ebb20bdc07842f56c978534368e","signature":"c696bd6e144c6091ca1045fb44b0eb6613bb124335ec72a7adae3ab0e7bcf959"},"fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e",{"version":"e31e4c8ddc051c599f3f4008e92772a0a7b1d3003d3a810b145e26abfa5ca3eb","signature":"1c59587a5c586940c1cfd6c96eaec55f0ad2fcae31af588a308e3f7c8a49bd4e"},{"version":"7905630c8ce3b5606b4457e96b89788509a001cdefea7d401cec3ccf4b5082b7","signature":"b6dc7b04c8ab844dc59f8bbd18384ce902015afc6709dc72a87473524616696f"},{"version":"e5984a0cde222b3e694c32719f60827cfed1d45aca37a09003f1c020371a865d","signature":"07940c740a5fd55a35a89c3836e1922aaf3c3f285dac5e3964d8fbfc30871e97"},{"version":"016770435cfad7a6f4a739929137edba2466ccd8f65ecd9f638f226fddd5569b","signature":"775e0df9d244e6b2b73a4d62d9603662fec0ef4898966b20916f7e1416c72efe"},{"version":"19f09a1b1d8109b33ee175328b1ca54dee14abfe387d3ab9d916e105a096cb92","signature":"33fba011c37b97ee61467d976b393e872fea68a78ccd12ab647e63ae9198a653"},"4051f6311deb0ce6052329eeb1cd4b1b104378fe52f882f483130bea75f92197","bbf9ee0a77a0b3e2fdd39a598561f3b0317fc8e939a878e04b2c2c19c6f23db7",{"version":"3e40bf7dda5c6874100f59616f89b1f9b1872ae2125b75b9fd5760364dcc0334","signature":"ec1515e174df2aada292a0f5c0a03421adcbe6cef090eae5c699c2aea826d53e"},{"version":"4f9362850bb427525ba05c0e861dae06d9918bd16ccb38d504cb7294f69e8496","affectsGlobalScope":true},{"version":"c008dc26431fb6cf77ad32c992cf7efe6ce83a61d162eff8d993644eac07963d","signature":"a5fcc36856b09ee8da5d0f3fd05afe27505ed095cf085697fd40da812bd76a13"},{"version":"d202184646094a1c0ff2026b3f5772253f5d2f1a406a6a11961acb54e5688a6b","signature":"bd28579d8a9fa8c54371ee388dd87f9baed5cecb33889b68db33d17f140a3aea"},{"version":"88ba5ab6bca95c971acc6b5787ad6a6855af77e76ec681298788a7b6bef0522d","signature":"402fea731bfec26e06dfcc39ede4559b3ddc8d9beb552aee6d9f17c9911893a6"},"6bc64e37d72e60ec298911f260518ad11a875b236c237a4b4319a2c8f76a6467",{"version":"735f637709ab948345d3f47751bf32ec05c83373e57003e007522e09d73b291c","signature":"d375096186dd86247adb9ae4520fc43b59ff3fdfcb61932a1f9cb5a7e9f3b664"},{"version":"34d57897145808566605b275acf467b054e991951bfcb9a799b1a2569b5eaf8a","signature":"ae1e69d844ad5ba580c368fc441cf415f28170641c77f01c2acff094d86f1a04"},{"version":"eedc41d7e3643a7ec212becfc0a18376f66adbcf8066a28b8e6a07254429f32f","signature":"2b74f2fef8c81de87e87199e1cfa135f76756a338606552224e748966a21f958"},"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","7adecb2c3238794c378d336a8182d4c3dd2c4fa6fa1785e2797a3db550edea62","dc12dc0e5aa06f4e1a7692149b78f89116af823b9e1f1e4eae140cd3e0e674e6","1bfc6565b90c8771615cd8cfcf9b36efc0275e5e83ac7d9181307e96eb495161","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","7f82ef88bdb67d9a850dd1c7cd2d690f33e0f0acd208e3c9eba086f3670d4f73","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb",{"version":"ccfd8774cd9b929f63ff7dcf657977eb0652e3547f1fcac1b3a1dc5db22d4d58","affectsGlobalScope":true}],"options":{"declaration":true,"esModuleInterop":true,"module":1,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"outDir":"./","preserveConstEnums":true,"removeComments":true,"rootDir":"..","skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"target":6,"useUnknownInCatchVariables":false},"fileIdsList":[[85],[59,85,92,98],[59,85,92],[46,85,92,160],[56,59,85,92,93,94],[85,94,95,97,99],[85,174,179],[85,173],[85,121,123,124,125,126,127,128,129,130,131,132,133],[85,121,122,124,125,126,127,128,129,130,131,132,133],[85,122,123,124,125,126,127,128,129,130,131,132,133],[85,121,122,123,125,126,127,128,129,130,131,132,133],[85,121,122,123,124,126,127,128,129,130,131,132,133],[85,121,122,123,124,125,127,128,129,130,131,132,133],[85,121,122,123,124,125,126,128,129,130,131,132,133],[85,121,122,123,124,125,126,127,129,130,131,132,133],[85,121,122,123,124,125,126,127,128,130,131,132,133],[85,121,122,123,124,125,126,127,128,129,131,132,133],[85,121,122,123,124,125,126,127,128,129,130,132,133],[85,121,122,123,124,125,126,127,128,129,130,131,133],[85,121,122,123,124,125,126,127,128,129,130,131,132],[41,85],[44,85],[45,50,76,85],[46,56,57,64,73,84,85],[46,47,56,64,85],[48,85],[49,50,57,65,85],[50,73,81,85],[51,53,56,64,85],[52,85],[53,54,85],[55,56,85],[56,85],[56,57,58,73,84,85],[56,57,58,73,85],[59,64,73,84,85],[56,57,59,60,64,73,81,84,85],[59,61,73,81,84,85],[41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91],[56,62,85],[63,84,85],[53,56,64,73,85],[65,85],[66,85],[44,67,85],[68,83,85,89],[69,85],[70,85],[56,71,85],[71,72,85,87],[56,73,74,75,85],[45,73,75,85],[73,74,85],[76,85],[77,85],[56,79,80,85],[79,80,85],[50,64,81,85],[82,85],[64,83,85],[45,59,70,84,85],[50,85],[73,85,86],[85,87],[85,88],[45,50,56,58,67,73,84,85,87,89],[73,85,90],[59,85,137],[57,59,61,64,73,84,85,92,134,135,136],[59,73,85,92],[59,85,92,96],[73,85,92,147],[73,85,92,148],[85,172,175],[85,172,175,176,177],[85,174],[85,171,178],[73,85,92,144],[85,144,145],[85,139,140],[85,140,141],[73,85,92,140,141],[73,85,92,139,140,142,143,146],[85,92,139],[85,118,169],[85,118,161,169],[57,66,85,153,154],[85,118,152,153,155],[85,118,163],[85,118],[85,118,137,138],[50,61,66,84,85,94,100,101,118,119,120,133,137,138,149,150,151,156,157,169],[50,57,66,85,169],[85,118,133,167,169],[85,152,153,156,158,159,162,164,165,166,168,170],[85,104,110],[85,106],[84,85,92,100,101,102,104,105,106,107,108,109],[85,110],[85,110,118],[85,103,110],[85,106,110],[85,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117],[118],[118,169],[153],[118,153],[118,137,138],[118,137,138,169],[169],[118,167],[152,153,156,158,159,162,164,165,166,168,170]],"referencedMap":[[139,1],[99,2],[134,1],[98,3],[161,4],[163,1],[95,5],[100,6],[181,7],[180,8],[122,9],[123,10],[121,11],[124,12],[125,13],[126,14],[127,15],[128,16],[129,17],[130,18],[131,19],[132,20],[133,21],[150,1],[96,1],[41,22],[42,22],[44,23],[45,24],[46,25],[47,26],[48,27],[49,28],[50,29],[51,30],[52,31],[53,32],[54,32],[55,33],[56,34],[57,35],[58,36],[43,1],[91,1],[59,37],[60,38],[61,39],[92,40],[62,41],[63,42],[64,43],[65,44],[66,45],[67,46],[68,47],[69,48],[70,49],[71,50],[72,51],[73,52],[75,53],[74,54],[76,55],[77,56],[78,1],[79,57],[80,58],[81,59],[82,60],[83,61],[84,62],[85,63],[86,64],[87,65],[88,66],[89,67],[90,68],[94,1],[93,1],[138,69],[137,70],[135,71],[97,72],[136,1],[154,1],[151,1],[120,1],[148,73],[149,74],[101,71],[172,1],[176,75],[178,76],[177,75],[175,77],[174,8],[173,1],[179,78],[171,1],[160,1],[119,1],[167,1],[144,1],[145,79],[146,80],[141,81],[143,82],[142,83],[147,84],[140,85],[9,1],[8,1],[2,1],[10,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[3,1],[4,1],[21,1],[18,1],[19,1],[20,1],[22,1],[23,1],[24,1],[5,1],[25,1],[26,1],[27,1],[28,1],[6,1],[29,1],[30,1],[31,1],[32,1],[7,1],[33,1],[38,1],[39,1],[34,1],[35,1],[36,1],[37,1],[1,1],[40,1],[170,86],[162,87],[155,88],[156,89],[152,1],[164,90],[157,91],[153,92],[166,86],[165,86],[158,93],[159,94],[168,95],[169,96],[115,1],[102,1],[103,97],[109,98],[110,99],[111,100],[106,100],[112,97],[113,100],[116,101],[114,100],[104,102],[107,103],[117,97],[108,100],[105,100],[118,104]],"exportedModulesMap":[[139,1],[99,2],[134,1],[98,3],[161,4],[163,1],[95,5],[100,6],[181,7],[180,8],[122,9],[123,10],[121,11],[124,12],[125,13],[126,14],[127,15],[128,16],[129,17],[130,18],[131,19],[132,20],[133,21],[150,1],[96,1],[41,22],[42,22],[44,23],[45,24],[46,25],[47,26],[48,27],[49,28],[50,29],[51,30],[52,31],[53,32],[54,32],[55,33],[56,34],[57,35],[58,36],[43,1],[91,1],[59,37],[60,38],[61,39],[92,40],[62,41],[63,42],[64,43],[65,44],[66,45],[67,46],[68,47],[69,48],[70,49],[71,50],[72,51],[73,52],[75,53],[74,54],[76,55],[77,56],[78,1],[79,57],[80,58],[81,59],[82,60],[83,61],[84,62],[85,63],[86,64],[87,65],[88,66],[89,67],[90,68],[94,1],[93,1],[138,69],[137,70],[135,71],[97,72],[136,1],[154,1],[151,1],[120,1],[148,73],[149,74],[101,71],[172,1],[176,75],[178,76],[177,75],[175,77],[174,8],[173,1],[179,78],[171,1],[160,1],[119,1],[167,1],[144,1],[145,79],[146,80],[141,81],[143,82],[142,83],[147,84],[140,85],[9,1],[8,1],[2,1],[10,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[3,1],[4,1],[21,1],[18,1],[19,1],[20,1],[22,1],[23,1],[24,1],[5,1],[25,1],[26,1],[27,1],[28,1],[6,1],[29,1],[30,1],[31,1],[32,1],[7,1],[33,1],[38,1],[39,1],[34,1],[35,1],[36,1],[37,1],[1,1],[40,1],[170,105],[162,106],[155,107],[156,108],[164,105],[157,105],[153,109],[166,105],[165,105],[158,110],[159,111],[168,112],[169,113],[115,1],[102,1],[103,97],[109,98],[110,99],[111,100],[106,100],[112,97],[113,100],[116,101],[114,100],[104,102],[107,103],[117,97],[108,100],[105,100],[118,104]],"semanticDiagnosticsPerFile":[139,99,134,98,161,163,95,100,181,180,122,123,121,124,125,126,127,128,129,130,131,132,133,150,96,41,42,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,43,91,59,60,61,92,62,63,64,65,66,67,68,69,70,71,72,73,75,74,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,94,93,138,137,135,97,136,154,151,120,148,149,101,172,176,178,177,175,174,173,179,171,160,119,167,144,145,146,141,143,142,147,140,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,29,30,31,32,7,33,38,39,34,35,36,37,1,40,170,162,155,156,152,164,157,153,166,165,158,159,168,169,115,102,103,109,110,111,106,112,113,116,114,104,107,117,108,105,118]},"version":"4.8.4"}
1
+ {"program":{"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/@types/node/ts4.8/assert.d.ts","../../../node_modules/@types/node/ts4.8/assert/strict.d.ts","../../../node_modules/@types/node/ts4.8/globals.d.ts","../../../node_modules/@types/node/ts4.8/async_hooks.d.ts","../../../node_modules/@types/node/ts4.8/buffer.d.ts","../../../node_modules/@types/node/ts4.8/child_process.d.ts","../../../node_modules/@types/node/ts4.8/cluster.d.ts","../../../node_modules/@types/node/ts4.8/console.d.ts","../../../node_modules/@types/node/ts4.8/constants.d.ts","../../../node_modules/@types/node/ts4.8/crypto.d.ts","../../../node_modules/@types/node/ts4.8/dgram.d.ts","../../../node_modules/@types/node/ts4.8/diagnostics_channel.d.ts","../../../node_modules/@types/node/ts4.8/dns.d.ts","../../../node_modules/@types/node/ts4.8/dns/promises.d.ts","../../../node_modules/@types/node/ts4.8/domain.d.ts","../../../node_modules/@types/node/ts4.8/events.d.ts","../../../node_modules/@types/node/ts4.8/fs.d.ts","../../../node_modules/@types/node/ts4.8/fs/promises.d.ts","../../../node_modules/@types/node/ts4.8/http.d.ts","../../../node_modules/@types/node/ts4.8/http2.d.ts","../../../node_modules/@types/node/ts4.8/https.d.ts","../../../node_modules/@types/node/ts4.8/inspector.d.ts","../../../node_modules/@types/node/ts4.8/module.d.ts","../../../node_modules/@types/node/ts4.8/net.d.ts","../../../node_modules/@types/node/ts4.8/os.d.ts","../../../node_modules/@types/node/ts4.8/path.d.ts","../../../node_modules/@types/node/ts4.8/perf_hooks.d.ts","../../../node_modules/@types/node/ts4.8/process.d.ts","../../../node_modules/@types/node/ts4.8/punycode.d.ts","../../../node_modules/@types/node/ts4.8/querystring.d.ts","../../../node_modules/@types/node/ts4.8/readline.d.ts","../../../node_modules/@types/node/ts4.8/repl.d.ts","../../../node_modules/@types/node/ts4.8/stream.d.ts","../../../node_modules/@types/node/ts4.8/stream/promises.d.ts","../../../node_modules/@types/node/ts4.8/stream/consumers.d.ts","../../../node_modules/@types/node/ts4.8/stream/web.d.ts","../../../node_modules/@types/node/ts4.8/string_decoder.d.ts","../../../node_modules/@types/node/ts4.8/test.d.ts","../../../node_modules/@types/node/ts4.8/timers.d.ts","../../../node_modules/@types/node/ts4.8/timers/promises.d.ts","../../../node_modules/@types/node/ts4.8/tls.d.ts","../../../node_modules/@types/node/ts4.8/trace_events.d.ts","../../../node_modules/@types/node/ts4.8/tty.d.ts","../../../node_modules/@types/node/ts4.8/url.d.ts","../../../node_modules/@types/node/ts4.8/util.d.ts","../../../node_modules/@types/node/ts4.8/v8.d.ts","../../../node_modules/@types/node/ts4.8/vm.d.ts","../../../node_modules/@types/node/ts4.8/wasi.d.ts","../../../node_modules/@types/node/ts4.8/worker_threads.d.ts","../../../node_modules/@types/node/ts4.8/zlib.d.ts","../../../node_modules/@types/node/ts4.8/globals.global.d.ts","../../../node_modules/@types/node/ts4.8/index.d.ts","../../../node_modules/@types/range-parser/index.d.ts","../../../node_modules/@types/qs/index.d.ts","../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../node_modules/@types/mime/index.d.ts","../../../node_modules/@types/serve-static/index.d.ts","../../../node_modules/@types/connect/index.d.ts","../../../node_modules/@types/body-parser/index.d.ts","../../../node_modules/@types/express/index.d.ts","../../../node_modules/form-data/index.d.ts","../../workflow/dist/src/DeferredPromise.d.ts","../../workflow/dist/src/Expression.d.ts","../../workflow/dist/src/Workflow.d.ts","../../workflow/dist/src/WorkflowHooks.d.ts","../../workflow/dist/src/NodeErrors.d.ts","../../workflow/dist/src/WorkflowActivationError.d.ts","../../workflow/dist/src/WorkflowErrors.d.ts","../../workflow/dist/src/ExpressionError.d.ts","../../workflow/dist/src/Interfaces.d.ts","../../workflow/dist/src/LoggerProxy.d.ts","../../workflow/dist/src/NodeHelpers.d.ts","../../workflow/dist/src/ObservableObject.d.ts","../../workflow/dist/src/TelemetryHelpers.d.ts","../../workflow/dist/src/Cron.d.ts","../../workflow/dist/src/RoutingNode.d.ts","../../workflow/dist/src/WorkflowDataProxy.d.ts","../../workflow/dist/src/VersionedNodeType.d.ts","../../workflow/dist/src/utils.d.ts","../../workflow/dist/src/type-guards.d.ts","../../workflow/dist/src/index.d.ts","../../../node_modules/oauth-1.0a/oauth-1.0a.d.ts","../../../node_modules/client-oauth2/index.d.ts","../../../node_modules/@types/lodash/common/common.d.ts","../../../node_modules/@types/lodash/common/array.d.ts","../../../node_modules/@types/lodash/common/collection.d.ts","../../../node_modules/@types/lodash/common/date.d.ts","../../../node_modules/@types/lodash/common/function.d.ts","../../../node_modules/@types/lodash/common/lang.d.ts","../../../node_modules/@types/lodash/common/math.d.ts","../../../node_modules/@types/lodash/common/number.d.ts","../../../node_modules/@types/lodash/common/object.d.ts","../../../node_modules/@types/lodash/common/seq.d.ts","../../../node_modules/@types/lodash/common/string.d.ts","../../../node_modules/@types/lodash/common/util.d.ts","../../../node_modules/@types/lodash/index.d.ts","../../../node_modules/@types/caseless/index.d.ts","../../../node_modules/@types/request/node_modules/form-data/index.d.ts","../../../node_modules/@types/tough-cookie/index.d.ts","../../../node_modules/@types/request/index.d.ts","../../../node_modules/@types/request-promise-native/index.d.ts","../../../node_modules/@tokenizer/token/index.d.ts","../../../node_modules/strtok3/lib/types.d.ts","../../../node_modules/strtok3/lib/AbstractTokenizer.d.ts","../../../node_modules/strtok3/lib/ReadStreamTokenizer.d.ts","../../../node_modules/strtok3/lib/BufferTokenizer.d.ts","../../../node_modules/peek-readable/lib/EndOfFileStream.d.ts","../../../node_modules/peek-readable/lib/StreamReader.d.ts","../../../node_modules/peek-readable/lib/index.d.ts","../../../node_modules/strtok3/lib/core.d.ts","../../../node_modules/file-type/core.d.ts","../../../node_modules/file-type/index.d.ts","../../../node_modules/@types/mime-types/index.d.ts","../../../node_modules/axios/index.d.ts","../src/Constants.ts","../src/Interfaces.ts","../../../node_modules/@types/uuid/index.d.ts","../src/BinaryDataManager/FileSystem.ts","../src/BinaryDataManager/index.ts","../src/ExtractValue.ts","../src/OAuth2Helper.ts","../src/NodeExecuteFunctions.ts","../src/UserSettings.ts","../../../node_modules/moment/ts3.1-typings/moment.d.ts","../../../node_modules/@types/cron/index.d.ts","../src/ActiveWorkflows.ts","../../../node_modules/@types/crypto-js/index.d.ts","../src/Credentials.ts","../src/LoadNodeDetails.ts","../src/LoadNodeParameterOptions.ts","../src/LoadNodeListSearch.ts","../../../node_modules/p-cancelable/index.d.ts","../src/WorkflowExecute.ts","../src/index.ts","../src/ActiveWebhooks.ts","../../../node_modules/@jest/expect-utils/build/index.d.ts","../../../node_modules/expect/node_modules/chalk/index.d.ts","../../../node_modules/@sinclair/typebox/typebox.d.ts","../../../node_modules/@jest/schemas/build/index.d.ts","../../../node_modules/expect/node_modules/pretty-format/build/index.d.ts","../../../node_modules/expect/node_modules/jest-diff/build/index.d.ts","../../../node_modules/expect/node_modules/jest-matcher-utils/build/index.d.ts","../../../node_modules/expect/build/index.d.ts","../../../node_modules/@types/jest/node_modules/pretty-format/build/index.d.ts","../../../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"f20c05dbfe50a208301d2a1da37b9931bce0466eb5a1f4fe240971b4ecc82b67","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"55f400eec64d17e888e278f4def2f254b41b89515d3b88ad75d5e05f019daddd","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"775d9c9fd150d5de79e0450f35bc8b8f94ae64e3eb5da12725ff2a649dccc777","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"ab7d58e6161a550ff92e5aff755dc37fe896245348332cd5f1e1203479fe0ed1","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"2f6c9750131d5d2fdaba85c164a930dc07d2d7e7e8970b89d32864aa6c72620c","affectsGlobalScope":true},"56d13f223ab40f71840795f5bef2552a397a70666ee60878222407f3893fb8d0",{"version":"4ffef5c4698e94e49dcf150e3270bad2b24a2aeab48b24acbe7c1366edff377d","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","3a0c45fe95e8f0e2c5247d48acf3a522d2ef29f1ab0effb3c59a9c4fdd5edbcd","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","c993aac3b6d4a4620ef9651497069eb84806a131420e4f158ea9396fb8eb9b8c","76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409","0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122","06ccebc2c2db57d6bdbca63b71c4ae5e6ddc42d972fd8f122d4c1a28aa111b25",{"version":"81e8508d1e82278f5d3fee936f267e00c308af36219bfcee2631f9513c9c4017","affectsGlobalScope":true},"413a4be7f94f631235bbc83dad36c4d15e5a2ff02bca1efdbd03636d6454631b","20c468256fd68d3ef1fa53526e76d51d6aa91711e84d72c0343589b99238287e","81290114466b1a05503a1142be27f5b85b033c95eb4291359aaeeb0b8b9bdbfb","8d4c16a26d59e3ce49741a7d4a6e8206b884e226cf308667c7778a0b2c0fee7f","ee3bad055a79f188626b1a7046f04ab151fdd3581e55c51d32face175bd9d06f","d61c7c41eb1960b1285e242fd102c162b65c0522985b839fadda59874308a170",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"1dbccafbca82a60fdfb0fb3c28e2493ff76d06647a512dcf72a086022e8b6f91","d10f4929cd610c26926d6784fc3f9f4120b789c03081b5d65fb2d2670a00fa04","fb0989383c6109f20281b3d31265293daefdd76d0d30551782c1654e93704f48","a4210a84a82b3e7a8cec5b2f3616e46d523f4f10cc1576d8f2fb89d0987b341e",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","02b3239cf1b1ff8737e383ed5557f0247499d15f5bd21ab849b1a24687b6100c","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","698ab660b477b9c2cd5ccbd99e7e7df8b4a6134c1f5711fa615ed7aab51cb7f7","33eee034727baf564056b4ea719075c23d3b4767d0b5f9c6933b81f3d77774d2","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637","a4471d2bdba495b2a6a30b8765d5e0282fa7009d88345a9528f73c37869d3b93",{"version":"aee7013623e7632fba449d4df1da92925b27d9b816cb05546044dbfe54c88ef4","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","c9d70d3d7191a66a81cb554557f8ed1cf736ea8397c44a864fe52689de18865a","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4",{"version":"1aad825534c73852a1f3275e527d729a2c0640f539198fdfdfeb83b839851910","affectsGlobalScope":true},"badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"e3685a8957b4e2af64c3f04a58289ee0858a649dbcd963a2b897fe85858ae18a","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"ae3fe461989bbd951344efc1f1fe932360ce7392e6126bdb225a82a1bbaf15ee","affectsGlobalScope":true},"84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","f47887b61c6cf2f48746980390d6cb5b8013518951d912cfb37fe748071942be","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","c4299421b95e09c0fe92cf8cead37a8a9af1b8920cb185bfaee76537657f3cab","17532c1339da07d0388a56cfac9fb9eb2af3caaaf550f9bd17f1bf984517ffdf","5ca891aad691fb4cd4f6ee2c28ab9db0875d6f04e4047171176e759fca79d750","0d0d319489059ab6959d08ac6c1b013220da4dbc28dc4d2aa4919e4bed1eedc1","9ceef9526bc41e9c206ed3ea7043385a455074903309b4ecfb593630baf7e3be","ce80715b3df13eb906356c80cd931b64e63ad38f7a68180acff9cc808a1e542a","98d28f891aa926233020c9f3acdb5a707aebfea4bc94c9d8339903863f68c4a3","14782d232b3fff9ee9e4c29983328bae6674922c8e10e6e68b1eff6112be1896","d62cadfb8566ca07156887d83e05e2df209b30dea6774435a666f01b478ec133","b7b3958334f8bff712551362cabd7cc0e9484c512423ba1066137361b4a11093","ef101bfa5dcd546978cd617b51766d6e25e976e73db7a826400b1cdb6eace852","7e77da7fd10d9561032c8a3894f28bc8ca2cda365eda3c4ad4c6a3abab93a28a","c1c5bddcba6fe35c1541f7a00d147825e5f88ee8e400b8d7d1be1cdfe08419c4","51bf9f55b74f7493c2f8fc7d383fb7f1529825d22e02ae0fd777d4f741984c96","53c35f5166f16c0f2cc12741dd1781c1f2928916b1ad4ca95778ce6ea9c233c0","eb4abb197fcb43aedab5346fdfa687ea630c570f7b6c3c9c473401e2ce483e09","951baa882e6e3e5026cb8a16f80a8bebec1caa35c3fa016c9a3ce6a338bd3123","2a6fdca6208cb3d653aeaba9a824bd7347d549ad15ab005bfc23e0204d644732","79d351bfe59cbb7a88340aaec7f89461775e733e97220e3d9192853a0862a3c3","ddd546a5ce96269fa5fab9d5069e22c4dd84db9b11edc3a46683c7605a1ed86c","a7755c2d99539fb62de0630fb339af59614846f4551daccf6cb26586a114e8ba","d5c7198f64727225ce162d9b4fa82bd14330983c0bad72e1ce06ea7beffb1a7b","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","98f9d826db9cd99d27a01a59ee5f22863df00ccf1aaf43e1d7db80ebf716f7c3","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","7a79ca84e4370ed2e1afaa99ff7d25194901916b7672e977d16f77af3b71342f","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"5343f3c160282dfbaab9af350119a0c3b59b7076ef0117bb5995a66e240dab28","e91ad231af87f864b3f07cd0e39b1cf6c133988156f087c1c3ccb0a5491c9115","cc256fd958b33576ed32c7338c64adb0d08fc0c2c6525010202fab83f32745da","bf0b1297461549a0e32cd57dffb992c63d7c7134fe0f9e15d359abcc88dbd28c","7467a3a9a7941b98dc80713e03b474a1d5e0ce25701a9f1b3c96db00aed9880a","e46cf250ea18d419593c3d20e3cab8465158dd7b891a46f30ca382a109a55131","eadec4b3993fa56d629b7c02e2cb0531eb11362fdfda2766deaa598d64906d13","2bcfd882be72fd38dd42615b3bcd986d6111f01abb7cbfcfd876e5b563855ab9","a88987c83820f32ed5d1532c6f699a0376a13ef6b8ec3e1cb1053854bac2b8ef","4a414ae11ff469c3a6c167904d55397f5d34a017fa8ca081b7a4de367bcffad5","898b727754bc306cfc39cd12b46a005f366e3074fe310ab9b802b97723f6dc54","0a4459223dc1782fcb1addf048fd99ea0f30d5d05c9fbd0d2b05e0d66bf069ba","ece28543c32d4589c7df021f32ccc7943875a87da81a3086284aecc1f7460bd2","ef1bd16c92e920fb4b6fee491c7c8494469f276e99157620da8110b60545edc8","f71ee05d30bd43468cd0653b9b6ecdf3ecdb07a8f9d8a004a0ff24985cc9fa07","d07ef1165c38c2efe0ffc9823e36c0511092061ce12d3c80607ee9c0739f802e","c757372a092924f5c16eaf11a1475b80b95bb4dae49fe3242d2ad908f97d5abe","3154a026075044aa102298fe9e6a7a14aaa26a06270680c7478a1765af8ffb09",{"version":"f97b7586f42a27d9beff810576ed3ae943e3665b7d04961fefb57ff82ca2d04d","signature":"d32a91be01c1d9fd07f7f50fbd502585b74629e9d8cf3ad7ae7c08d40f0ebcd1"},{"version":"73fb351d6248cd918dbbb23e7302dbad9baaa5dff483d502cfb1380ec3413b75","signature":"52ec00cb72c1976136a2f5e559932639843ef34b8ae84b543a4518400df112af"},"fab58e600970e66547644a44bc9918e3223aa2cbd9e8763cec004b2cfb48827e",{"version":"e31e4c8ddc051c599f3f4008e92772a0a7b1d3003d3a810b145e26abfa5ca3eb","signature":"1c59587a5c586940c1cfd6c96eaec55f0ad2fcae31af588a308e3f7c8a49bd4e"},{"version":"7905630c8ce3b5606b4457e96b89788509a001cdefea7d401cec3ccf4b5082b7","signature":"b6dc7b04c8ab844dc59f8bbd18384ce902015afc6709dc72a87473524616696f"},{"version":"e5984a0cde222b3e694c32719f60827cfed1d45aca37a09003f1c020371a865d","signature":"07940c740a5fd55a35a89c3836e1922aaf3c3f285dac5e3964d8fbfc30871e97"},{"version":"3cb3520c374e6bffb1a98549e113a9e589e0978575a6596033014d9fe9d9f499","signature":"59bd8596964e14624179155d8939c226a1d48c0282f59df6b8d8ac9819eee8a9"},{"version":"c13234899de4c4cc3988bad997cb9e6af68a72ef543230287e1046611dc32171","signature":"775e0df9d244e6b2b73a4d62d9603662fec0ef4898966b20916f7e1416c72efe"},{"version":"32c88c8b2c75db2af6b217f9effb36b2eeb8448b6acda2dbca0d350727f5adfa","signature":"33fba011c37b97ee61467d976b393e872fea68a78ccd12ab647e63ae9198a653"},"4051f6311deb0ce6052329eeb1cd4b1b104378fe52f882f483130bea75f92197","bbf9ee0a77a0b3e2fdd39a598561f3b0317fc8e939a878e04b2c2c19c6f23db7",{"version":"71764fba9a0700a12f0dfef47f2ff2bc7f4a8e5445cc8dcbf6c0557e2c8aafe7","signature":"ec1515e174df2aada292a0f5c0a03421adcbe6cef090eae5c699c2aea826d53e"},{"version":"4f9362850bb427525ba05c0e861dae06d9918bd16ccb38d504cb7294f69e8496","affectsGlobalScope":true},{"version":"c008dc26431fb6cf77ad32c992cf7efe6ce83a61d162eff8d993644eac07963d","signature":"a5fcc36856b09ee8da5d0f3fd05afe27505ed095cf085697fd40da812bd76a13"},{"version":"572f58083c37de4bfa805d823072ee0509c11c0dec5a25cc3ac2de412bf8eb17","signature":"3d8165bbdd508d694e864a499ac6eb359b4476fc030c52af4679ed585bc76831"},{"version":"1f488887c09332d6b432c3b48b5ab0cc8ea33e799851f63e4a2dda93c25ff2a5","signature":"f14dabf60c92d6764e1d24f99a306dc375d118d9b15c1ceec175246a1e47e852"},{"version":"44720169e309a105e1efbe14eba4dd5d98530249a2caa268c4dbd1ec62373a72","signature":"2ce321f1ae14b928877d9ed07c4bdcb4da3910d367f7f7088ac78c7234816123"},"6bc64e37d72e60ec298911f260518ad11a875b236c237a4b4319a2c8f76a6467",{"version":"735f637709ab948345d3f47751bf32ec05c83373e57003e007522e09d73b291c","signature":"d375096186dd86247adb9ae4520fc43b59ff3fdfcb61932a1f9cb5a7e9f3b664"},{"version":"34d57897145808566605b275acf467b054e991951bfcb9a799b1a2569b5eaf8a","signature":"ae1e69d844ad5ba580c368fc441cf415f28170641c77f01c2acff094d86f1a04"},{"version":"eedc41d7e3643a7ec212becfc0a18376f66adbcf8066a28b8e6a07254429f32f","signature":"2b74f2fef8c81de87e87199e1cfa135f76756a338606552224e748966a21f958"},"763e521cf114b80e0dd0e21ca49b9f8ae62e8999555a5e7bade8ce36b33001c2","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","776bb20d045af25df4f1b85a5e0c8bcc19d5ec1d653594b297e52e89ee7924e4","ffcc5500e77223169833fc6eb59b3a507944a1f89574e0a1276b0ea7fc22c4a4","22f13de9e2fe5f0f4724797abd3d34a1cdd6e47ef81fc4933fea3b8bf4ad524b","e3ba509d3dce019b3190ceb2f3fc88e2610ab717122dabd91a9efaa37804040d","cda0cb09b995489b7f4c57f168cd31b83dcbaa7aad49612734fb3c9c73f6e4f2","f72f8428f3c1caa22e9c247d046603b85b442c0dae7b77a7a0bc092c18867cb7","22f13de9e2fe5f0f4724797abd3d34a1cdd6e47ef81fc4933fea3b8bf4ad524b",{"version":"195f63105abc03e72b6a176e3e34dfb5ac932b55db378fdc7874b1617e24b465","affectsGlobalScope":true}],"options":{"declaration":true,"esModuleInterop":true,"module":1,"noImplicitAny":true,"noImplicitReturns":true,"noUnusedLocals":true,"outDir":"./","preserveConstEnums":true,"removeComments":true,"rootDir":"..","skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"target":6,"useUnknownInCatchVariables":false},"fileIdsList":[[86],[86,179],[60,86,93,99],[60,86,93],[47,86,93,165],[57,60,86,93,94,95],[86,95,96,98,100],[86,181,184],[86,180],[86,125,127,128,129,130,131,132,133,134,135,136,137],[86,125,126,128,129,130,131,132,133,134,135,136,137],[86,126,127,128,129,130,131,132,133,134,135,136,137],[86,125,126,127,129,130,131,132,133,134,135,136,137],[86,125,126,127,128,130,131,132,133,134,135,136,137],[86,125,126,127,128,129,131,132,133,134,135,136,137],[86,125,126,127,128,129,130,132,133,134,135,136,137],[86,125,126,127,128,129,130,131,133,134,135,136,137],[86,125,126,127,128,129,130,131,132,134,135,136,137],[86,125,126,127,128,129,130,131,132,133,135,136,137],[86,125,126,127,128,129,130,131,132,133,134,136,137],[86,125,126,127,128,129,130,131,132,133,134,135,137],[86,125,126,127,128,129,130,131,132,133,134,135,136],[42,86],[45,86],[46,51,77,86],[47,57,58,65,74,85,86],[47,48,57,65,86],[49,86],[50,51,58,66,86],[51,74,82,86],[52,54,57,65,86],[53,86],[54,55,86],[56,57,86],[57,86],[57,58,59,74,85,86],[57,58,59,74,86],[60,65,74,85,86],[57,58,60,61,65,74,82,85,86],[60,62,74,82,85,86],[42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92],[57,63,86],[64,85,86],[54,57,65,74,86],[66,86],[67,86],[45,68,86],[69,84,86,90],[70,86],[71,86],[57,72,86],[72,73,86,88],[57,74,75,76,86],[46,74,76,86],[74,75,86],[77,86],[78,86],[57,80,81,86],[80,81,86],[51,65,82,86],[83,86],[65,84,86],[46,60,71,85,86],[51,86],[74,86,87],[86,88],[86,89],[46,51,57,59,68,74,85,86,88,90],[74,86,91],[60,86,141],[58,60,62,65,74,85,86,93,138,139,140],[60,74,86,93],[60,86,93,97],[86,177,183],[86,181],[86,178,182],[74,86,93,151],[74,86,93,152],[74,86,93,148],[86,148,149],[86,143,144],[86,144,145],[74,86,93,144,145],[74,86,93,143,144,146,147,150],[86,93,143],[86,122,175],[86,122,166,175],[58,67,86,157,158],[86,122,156,157,159],[86,122,168],[86,122],[86,122,141,142],[86,122,170,175],[51,62,67,85,86,95,101,102,122,123,124,137,141,142,153,154,155,160,161,162,175],[86,122,124],[51,58,67,86,122,175],[86,122,137,173,175],[86,156,157,160,163,164,167,169,171,172,174,176],[86,105,111],[86,107],[85,86,93,101,102,103,105,106,107,108,109,110],[86,111],[86,111,122],[86,104,111],[86,107,111],[86,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121],[122],[122,175],[157],[122,157],[122,141,142],[122,170],[122,141,142,175],[122,124],[175],[122,173],[156,157,160,163,164,167,169,171,172,174,176]],"referencedMap":[[177,1],[180,2],[179,1],[143,1],[100,3],[138,1],[99,4],[166,5],[168,1],[96,6],[101,7],[186,8],[185,9],[126,10],[127,11],[125,12],[128,13],[129,14],[130,15],[131,16],[132,17],[133,18],[134,19],[135,20],[136,21],[137,22],[154,1],[97,1],[42,23],[43,23],[45,24],[46,25],[47,26],[48,27],[49,28],[50,29],[51,30],[52,31],[53,32],[54,33],[55,33],[56,34],[57,35],[58,36],[59,37],[44,1],[92,1],[60,38],[61,39],[62,40],[93,41],[63,42],[64,43],[65,44],[66,45],[67,46],[68,47],[69,48],[70,49],[71,50],[72,51],[73,52],[74,53],[76,54],[75,55],[77,56],[78,57],[79,1],[80,58],[81,59],[82,60],[83,61],[84,62],[85,63],[86,64],[87,65],[88,66],[89,67],[90,68],[91,69],[95,1],[94,1],[142,70],[141,71],[139,72],[98,73],[140,1],[158,1],[155,1],[124,1],[184,74],[178,1],[182,75],[183,76],[181,9],[152,77],[153,78],[102,72],[165,1],[123,1],[173,1],[148,1],[149,79],[150,80],[145,81],[147,82],[146,83],[151,84],[144,85],[9,1],[8,1],[2,1],[10,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[3,1],[4,1],[21,1],[18,1],[19,1],[20,1],[22,1],[23,1],[24,1],[5,1],[25,1],[26,1],[27,1],[28,1],[6,1],[29,1],[30,1],[31,1],[32,1],[7,1],[33,1],[38,1],[39,1],[34,1],[35,1],[36,1],[37,1],[40,1],[1,1],[41,1],[176,86],[167,87],[159,88],[160,89],[156,1],[169,90],[161,91],[157,92],[170,91],[172,93],[171,93],[163,94],[162,95],[164,96],[174,97],[175,98],[116,1],[103,1],[104,99],[110,100],[111,101],[112,102],[107,102],[113,99],[114,102],[117,103],[115,102],[119,102],[105,104],[108,105],[118,99],[109,102],[106,102],[122,106],[121,102],[120,1]],"exportedModulesMap":[[177,1],[180,2],[179,1],[143,1],[100,3],[138,1],[99,4],[166,5],[168,1],[96,6],[101,7],[186,8],[185,9],[126,10],[127,11],[125,12],[128,13],[129,14],[130,15],[131,16],[132,17],[133,18],[134,19],[135,20],[136,21],[137,22],[154,1],[97,1],[42,23],[43,23],[45,24],[46,25],[47,26],[48,27],[49,28],[50,29],[51,30],[52,31],[53,32],[54,33],[55,33],[56,34],[57,35],[58,36],[59,37],[44,1],[92,1],[60,38],[61,39],[62,40],[93,41],[63,42],[64,43],[65,44],[66,45],[67,46],[68,47],[69,48],[70,49],[71,50],[72,51],[73,52],[74,53],[76,54],[75,55],[77,56],[78,57],[79,1],[80,58],[81,59],[82,60],[83,61],[84,62],[85,63],[86,64],[87,65],[88,66],[89,67],[90,68],[91,69],[95,1],[94,1],[142,70],[141,71],[139,72],[98,73],[140,1],[158,1],[155,1],[124,1],[184,74],[178,1],[182,75],[183,76],[181,9],[152,77],[153,78],[102,72],[165,1],[123,1],[173,1],[148,1],[149,79],[150,80],[145,81],[147,82],[146,83],[151,84],[144,85],[9,1],[8,1],[2,1],[10,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[3,1],[4,1],[21,1],[18,1],[19,1],[20,1],[22,1],[23,1],[24,1],[5,1],[25,1],[26,1],[27,1],[28,1],[6,1],[29,1],[30,1],[31,1],[32,1],[7,1],[33,1],[38,1],[39,1],[34,1],[35,1],[36,1],[37,1],[40,1],[1,1],[41,1],[176,107],[167,108],[159,109],[160,110],[169,107],[161,107],[157,111],[170,107],[172,112],[171,112],[163,113],[162,114],[164,115],[174,116],[175,117],[116,1],[103,1],[104,99],[110,100],[111,101],[112,102],[107,102],[113,99],[114,102],[117,103],[115,102],[119,102],[105,104],[108,105],[118,99],[109,102],[106,102],[122,106],[121,102],[120,1]],"semanticDiagnosticsPerFile":[177,180,179,143,100,138,99,166,168,96,101,186,185,126,127,125,128,129,130,131,132,133,134,135,136,137,154,97,42,43,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,44,92,60,61,62,93,63,64,65,66,67,68,69,70,71,72,73,74,76,75,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,95,94,142,141,139,98,140,158,155,124,184,178,182,183,181,152,153,102,165,123,173,148,149,150,145,147,146,151,144,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,29,30,31,32,7,33,38,39,34,35,36,37,40,1,41,176,167,159,160,156,169,161,157,170,172,171,163,162,164,174,175,116,103,104,110,111,112,107,113,114,117,115,119,105,108,118,109,106,122,121,120]},"version":"4.8.4"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-core",
3
- "version": "0.138.0",
3
+ "version": "0.140.0",
4
4
  "description": "Core functionality of n8n",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "homepage": "https://n8n.io",
@@ -31,15 +31,12 @@
31
31
  "@types/cron": "~1.7.1",
32
32
  "@types/crypto-js": "^4.0.1",
33
33
  "@types/express": "^4.17.6",
34
- "@types/jest": "^27.4.0",
35
34
  "@types/lodash.get": "^4.4.6",
36
35
  "@types/mime-types": "^2.1.0",
37
36
  "@types/node": "^16.11.22",
38
37
  "@types/request-promise-native": "~1.0.15",
39
38
  "@types/uuid": "^8.3.2",
40
- "jest": "^27.4.7",
41
39
  "source-map-support": "^0.5.9",
42
- "ts-jest": "^27.1.3",
43
40
  "typescript": "~4.8.0"
44
41
  },
45
42
  "dependencies": {
@@ -52,29 +49,12 @@
52
49
  "form-data": "^4.0.0",
53
50
  "lodash.get": "^4.4.2",
54
51
  "mime-types": "^2.1.27",
55
- "n8n-workflow": "~0.120.0",
52
+ "n8n-workflow": "~0.122.0",
56
53
  "oauth-1.0a": "^2.2.6",
57
54
  "p-cancelable": "^2.0.0",
58
55
  "qs": "^6.10.1",
59
56
  "request": "^2.88.2",
60
57
  "request-promise-native": "^1.0.7",
61
58
  "uuid": "^8.3.2"
62
- },
63
- "jest": {
64
- "transform": {
65
- "^.+\\.ts$": "ts-jest"
66
- },
67
- "testURL": "http://localhost/",
68
- "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js|ts)$",
69
- "testPathIgnorePatterns": [
70
- "/dist/",
71
- "/node_modules/"
72
- ],
73
- "moduleFileExtensions": [
74
- "ts",
75
- "js",
76
- "json",
77
- "node"
78
- ]
79
59
  }
80
60
  }
@@ -1,13 +0,0 @@
1
- import { IWebhookData, WebhookHttpMethod, Workflow, WorkflowActivateMode, WorkflowExecuteMode } from 'n8n-workflow';
2
- export declare class ActiveWebhooks {
3
- private workflowWebhooks;
4
- private webhookUrls;
5
- testWebhooks: boolean;
6
- add(workflow: Workflow, webhookData: IWebhookData, mode: WorkflowExecuteMode, activation: WorkflowActivateMode): Promise<void>;
7
- get(httpMethod: WebhookHttpMethod, path: string, webhookId?: string): IWebhookData | undefined;
8
- getWebhookMethods(path: string): string[];
9
- getWorkflowIds(): string[];
10
- getWebhookKey(httpMethod: WebhookHttpMethod, path: string, webhookId?: string): string;
11
- removeWorkflow(workflow: Workflow): Promise<boolean>;
12
- removeAll(workflows: Workflow[]): Promise<void>;
13
- }
@@ -1 +0,0 @@
1
- {"version":3,"file":"ActiveWebhooks.js","sourceRoot":"","sources":["../../src/ActiveWebhooks.ts"],"names":[],"mappings":";;;AASA,wBAAyC;AAEzC,MAAa,cAAc;IAA3B;QACS,qBAAgB,GAEpB,EAAE,CAAC;QAEC,gBAAW,GAEf,EAAE,CAAC;QAEP,iBAAY,GAAG,KAAK,CAAC;IA8MtB,CAAC;IAxMA,KAAK,CAAC,GAAG,CACR,QAAkB,EAClB,WAAyB,EACzB,IAAyB,EACzB,UAAgC;QAEhC,IAAI,QAAQ,CAAC,EAAE,KAAK,SAAS,EAAE;YAC9B,MAAM,IAAI,KAAK,CAAC,oEAAoE,CAAC,CAAC;SACtF;QACD,IAAI,WAAW,CAAC,IAAI,CAAC,QAAQ,CAAC,GAAG,CAAC,EAAE;YAEnC,WAAW,CAAC,IAAI,GAAG,WAAW,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;SACjD;QAED,MAAM,UAAU,GAAG,IAAI,CAAC,aAAa,CACpC,WAAW,CAAC,UAAU,EACtB,WAAW,CAAC,IAAI,EAChB,WAAW,CAAC,SAAS,CACrB,CAAC;QAGF,IAAI,IAAI,CAAC,WAAW,CAAC,UAAU,CAAC,IAAI,CAAC,WAAW,CAAC,SAAS,EAAE;YAC3D,MAAM,IAAI,KAAK,CACd,0BAA0B,WAAW,CAAC,IAAI,mEAAmE,CAC7G,CAAC;SACF;QAED,IAAI,IAAI,CAAC,gBAAgB,CAAC,WAAW,CAAC,UAAU,CAAC,KAAK,SAAS,EAAE;YAChE,IAAI,CAAC,gBAAgB,CAAC,WAAW,CAAC,UAAU,CAAC,GAAG,EAAE,CAAC;SACnD;QAID,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,UAAU,CAAC,EAAE;YAClC,IAAI,CAAC,WAAW,CAAC,UAAU,CAAC,GAAG,EAAE,CAAC;SAClC;QACD,IAAI,CAAC,WAAW,CAAC,UAAU,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;QAE/C,IAAI;YACH,MAAM,aAAa,GAAG,MAAM,QAAQ,CAAC,gBAAgB,CACpD,aAAa,EACb,WAAW,EACX,uBAAoB,EACpB,IAAI,EACJ,UAAU,EACV,IAAI,CAAC,YAAY,CACjB,CAAC;YACF,IAAI,aAAa,KAAK,IAAI,EAAE;gBAE3B,MAAM,QAAQ,CAAC,gBAAgB,CAC9B,QAAQ,EACR,WAAW,EACX,uBAAoB,EACpB,IAAI,EACJ,UAAU,EACV,IAAI,CAAC,YAAY,CACjB,CAAC;aACF;SACD;QAAC,OAAO,KAAK,EAAE;YAEf,IAAI,IAAI,CAAC,WAAW,CAAC,UAAU,CAAC,CAAC,MAAM,IAAI,CAAC,EAAE;gBAC7C,OAAO,IAAI,CAAC,WAAW,CAAC,UAAU,CAAC,CAAC;aACpC;iBAAM;gBACN,IAAI,CAAC,WAAW,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,WAAW,CAAC,UAAU,CAAC,CAAC,MAAM,CACjE,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,IAAI,KAAK,WAAW,CAAC,IAAI,CAC9C,CAAC;aACF;YAED,MAAM,KAAK,CAAC;SACZ;QACD,IAAI,CAAC,gBAAgB,CAAC,WAAW,CAAC,UAAU,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC;IACjE,CAAC;IAOD,GAAG,CAAC,UAA6B,EAAE,IAAY,EAAE,SAAkB;QAClE,MAAM,UAAU,GAAG,IAAI,CAAC,aAAa,CAAC,UAAU,EAAE,IAAI,EAAE,SAAS,CAAC,CAAC;QACnE,IAAI,IAAI,CAAC,WAAW,CAAC,UAAU,CAAC,KAAK,SAAS,EAAE;YAC/C,OAAO,SAAS,CAAC;SACjB;QAED,IAAI,OAAiC,CAAC;QACtC,IAAI,UAAU,GAAG,CAAC,CAAC;QACnB,MAAM,eAAe,GAAG,IAAI,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC;QAGjD,IAAI,CAAC,WAAW,CAAC,UAAU,CAAC,CAAC,OAAO,CAAC,CAAC,cAAc,EAAE,EAAE;YACvD,MAAM,cAAc,GAAG,cAAc,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC;YAC5F,MAAM,cAAc,GAAG,cAAc,CAAC,KAAK,CAAC,CAAC,SAAS,EAAE,EAAE,CAAC,eAAe,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC,CAAC;YAE3F,IAAI,cAAc,IAAI,cAAc,CAAC,MAAM,GAAG,UAAU,EAAE;gBACzD,UAAU,GAAG,cAAc,CAAC,MAAM,CAAC;gBACnC,OAAO,GAAG,cAAc,CAAC;aACzB;iBAEI,IAAI,cAAc,CAAC,MAAM,KAAK,CAAC,IAAI,CAAC,OAAO,EAAE;gBACjD,OAAO,GAAG,cAAc,CAAC;aACzB;QACF,CAAC,CAAC,CAAC;QAEH,OAAO,OAAO,CAAC;IAChB,CAAC;IAKD,iBAAiB,CAAC,IAAY;QAC7B,MAAM,OAAO,GAAa,EAAE,CAAC;QAE7B,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC;aAC3B,MAAM,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC;aAEnC,GAAG,CAAC,CAAC,GAAG,EAAE,EAAE;YACZ,OAAO,CAAC,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QACjC,CAAC,CAAC,CAAC;QAEJ,OAAO,OAAO,CAAC;IAChB,CAAC;IAMD,cAAc;QACb,OAAO,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC;IAC3C,CAAC;IAOD,aAAa,CAAC,UAA6B,EAAE,IAAY,EAAE,SAAkB;QAC5E,IAAI,SAAS,EAAE;YACd,IAAI,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC,EAAE;gBAC/B,MAAM,YAAY,GAAG,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;gBAE3C,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC;aAChC;YACD,OAAO,GAAG,UAAU,IAAI,SAAS,IAAI,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,MAAM,EAAE,CAAC;SAC9D;QACD,OAAO,GAAG,UAAU,IAAI,IAAI,EAAE,CAAC;IAChC,CAAC;IAMD,KAAK,CAAC,cAAc,CAAC,QAAkB;QAEtC,MAAM,UAAU,GAAG,QAAQ,CAAC,EAAG,CAAC,QAAQ,EAAE,CAAC;QAE3C,IAAI,IAAI,CAAC,gBAAgB,CAAC,UAAU,CAAC,KAAK,SAAS,EAAE;YAEpD,OAAO,KAAK,CAAC;SACb;QAED,MAAM,QAAQ,GAAG,IAAI,CAAC,gBAAgB,CAAC,UAAU,CAAC,CAAC;QAEnD,MAAM,IAAI,GAAG,UAAU,CAAC;QAIxB,KAAK,MAAM,WAAW,IAAI,QAAQ,EAAE;YAEnC,MAAM,QAAQ,CAAC,gBAAgB,CAC9B,QAAQ,EACR,WAAW,EACX,uBAAoB,EACpB,IAAI,EACJ,QAAQ,EACR,IAAI,CAAC,YAAY,CACjB,CAAC;YAEF,OAAO,IAAI,CAAC,WAAW,CACtB,IAAI,CAAC,aAAa,CAAC,WAAW,CAAC,UAAU,EAAE,WAAW,CAAC,IAAI,EAAE,WAAW,CAAC,SAAS,CAAC,CACnF,CAAC;SACF;QAGD,OAAO,IAAI,CAAC,gBAAgB,CAAC,UAAU,CAAC,CAAC;QAEzC,OAAO,IAAI,CAAC;IACb,CAAC;IAKD,KAAK,CAAC,SAAS,CAAC,SAAqB;QACpC,MAAM,cAAc,GAAG,EAAE,CAAC;QAE1B,KAAK,MAAM,QAAQ,IAAI,SAAS,EAAE;YACjC,cAAc,CAAC,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC,CAAC;SACnD;QAED,MAAM,OAAO,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC;IACnC,CAAC;CACD;AAvND,wCAuNC"}