@fsai-flow/core 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -14,4 +14,4 @@ export * from "./lib/NodesLoader";
14
14
  export * from "./lib/RedisLeaderElectionManager";
15
15
  export * from "./lib/RequestTypes";
16
16
  export * from "./lib/WorkflowExecute";
17
- export { NodeExecuteFunctions, UserSettings, getInputConnectionDataLegacy };
17
+ export { getInputConnectionDataLegacy, NodeExecuteFunctions, UserSettings };
package/dist/index.js CHANGED
@@ -36,7 +36,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
36
36
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
37
37
  };
38
38
  Object.defineProperty(exports, "__esModule", { value: true });
39
- exports.getInputConnectionDataLegacy = exports.UserSettings = exports.NodeExecuteFunctions = void 0;
39
+ exports.UserSettings = exports.NodeExecuteFunctions = exports.getInputConnectionDataLegacy = void 0;
40
40
  const getInputConnectionDataLegacy = __importStar(require("./lib/InputConnectionDataLegacy"));
41
41
  exports.getInputConnectionDataLegacy = getInputConnectionDataLegacy;
42
42
  /* eslint-disable import/no-cycle */
@@ -1732,6 +1732,9 @@ function getExecuteFunctions(workflow, runExecutionData, runIndex, connectionInp
1732
1732
  getExecutionCancelSignal: () => {
1733
1733
  return undefined;
1734
1734
  },
1735
+ logAiEvent: (_event, _data) => {
1736
+ return;
1737
+ },
1735
1738
  };
1736
1739
  })(workflow, runExecutionData, connectionInputData, inputData, node, nodeTypeData, closeFunctions);
1737
1740
  }
@@ -2353,6 +2356,9 @@ function getSupplyDataFunctions(workflow, runExecutionData, runIndex, connection
2353
2356
  };
2354
2357
  return { outputExecutionData };
2355
2358
  },
2359
+ logAiEvent: (_event, _data) => {
2360
+ return;
2361
+ },
2356
2362
  async getInputConnectionData(connectionType, itemIndex) {
2357
2363
  return await getInputConnectionData.call(this, workflow, runExecutionData, runIndex, connectionInputData, inputData, additionalData, connectionType, mode, itemIndex, nodeTypeData, closeFunctions);
2358
2364
  },
package/package.json CHANGED
@@ -1,15 +1,17 @@
1
1
  {
2
2
  "name": "@fsai-flow/core",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
+ "author": "FSAI",
5
+ "license": "UNLICENSED",
4
6
  "dependencies": {
5
7
  "@fsai-flow/workflow": "0.1.0",
6
8
  "client-oauth2": "^4.3.3",
7
9
  "cron": "~4.4.0",
8
10
  "crypto-js": "~4.2.0",
9
11
  "fast-glob": "3.3.3",
10
- "file-type": "^21.3.1",
12
+ "file-type": "^21.3.2",
11
13
  "form-data": "4.0.5",
12
- "https-proxy-agent": "^7.0.6",
14
+ "https-proxy-agent": "^8.0.0",
13
15
  "ioredis": "^5.10.0",
14
16
  "lodash": "^4.17.23",
15
17
  "mime-types": "^3.0.2",
@@ -21,21 +23,21 @@
21
23
  "uuid": "^13.0.0"
22
24
  },
23
25
  "devDependencies": {
24
- "@biomejs/biome": "^2.4.6",
26
+ "@biomejs/biome": "^2.4.7",
25
27
  "@types/crypto-js": "^4.2.2",
26
28
  "@types/express": "^5.0.6",
27
29
  "@types/lodash": "^4.17.24",
28
30
  "@types/lodash.get": "^4.4.9",
29
31
  "@types/mime-types": "^3.0.1",
30
- "@types/node": "^25.4.0",
32
+ "@types/node": "^25.5.0",
31
33
  "@types/qs": "^6.15.0",
32
34
  "@types/simple-oauth2": "^5.0.8",
33
35
  "@types/uuid": "^11.0.0",
34
- "@vitest/coverage-v8": "^4.0.18",
36
+ "@vitest/coverage-v8": "^4.1.0",
35
37
  "axios": "^1.13.6",
36
38
  "ioredis": "^5.10.0",
37
39
  "typescript": "~5.9.3",
38
- "vitest": "^4.0.18"
40
+ "vitest": "^4.1.0"
39
41
  },
40
42
  "scripts": {
41
43
  "build": "tsc -p tsconfig.lib.json",
@@ -48,7 +50,6 @@
48
50
  "types": "dist/index.d.ts",
49
51
  "files": [
50
52
  "dist",
51
- "README.md",
52
- "LICENSE"
53
+ "README.md"
53
54
  ]
54
55
  }