@fsai-flow/core 0.1.0 → 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 +1 -1
- package/dist/index.js +1 -1
- package/dist/lib/NodeExecuteFunctions.js +6 -0
- package/package.json +17 -23
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
|
|
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.
|
|
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,16 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fsai-flow/core",
|
|
3
|
-
"version": "0.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.
|
|
12
|
+
"file-type": "^21.3.2",
|
|
11
13
|
"form-data": "4.0.5",
|
|
12
|
-
"https-proxy-agent": "^
|
|
13
|
-
"ioredis": "^5.
|
|
14
|
+
"https-proxy-agent": "^8.0.0",
|
|
15
|
+
"ioredis": "^5.10.0",
|
|
14
16
|
"lodash": "^4.17.23",
|
|
15
17
|
"mime-types": "^3.0.2",
|
|
16
18
|
"oauth-1.0a": "^2.2.6",
|
|
@@ -21,28 +23,21 @@
|
|
|
21
23
|
"uuid": "^13.0.0"
|
|
22
24
|
},
|
|
23
25
|
"devDependencies": {
|
|
24
|
-
"@biomejs/biome": "^2.4.
|
|
26
|
+
"@biomejs/biome": "^2.4.7",
|
|
25
27
|
"@types/crypto-js": "^4.2.2",
|
|
26
28
|
"@types/express": "^5.0.6",
|
|
27
|
-
"@types/lodash": "^4.17.
|
|
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.
|
|
31
|
-
"@types/qs": "^6.
|
|
32
|
+
"@types/node": "^25.5.0",
|
|
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
|
|
35
|
-
"axios": "^1.13.
|
|
36
|
-
"ioredis": "^5.
|
|
36
|
+
"@vitest/coverage-v8": "^4.1.0",
|
|
37
|
+
"axios": "^1.13.6",
|
|
38
|
+
"ioredis": "^5.10.0",
|
|
37
39
|
"typescript": "~5.9.3",
|
|
38
|
-
"vitest": "^4.0
|
|
39
|
-
},
|
|
40
|
-
"overrides": {
|
|
41
|
-
"tough-cookie": "^4.1.3",
|
|
42
|
-
"minimatch": "^10.2.1",
|
|
43
|
-
"form-data": "$form-data",
|
|
44
|
-
"ajv": "^8.18.0",
|
|
45
|
-
"qs": "$qs"
|
|
40
|
+
"vitest": "^4.1.0"
|
|
46
41
|
},
|
|
47
42
|
"scripts": {
|
|
48
43
|
"build": "tsc -p tsconfig.lib.json",
|
|
@@ -51,11 +46,10 @@
|
|
|
51
46
|
"prepublishOnly": "npm run check && npm run build && npm run test"
|
|
52
47
|
},
|
|
53
48
|
"type": "commonjs",
|
|
54
|
-
"main": "dist/
|
|
55
|
-
"types": "dist/
|
|
49
|
+
"main": "dist/index",
|
|
50
|
+
"types": "dist/index.d.ts",
|
|
56
51
|
"files": [
|
|
57
52
|
"dist",
|
|
58
|
-
"README.md"
|
|
59
|
-
"LICENSE"
|
|
53
|
+
"README.md"
|
|
60
54
|
]
|
|
61
55
|
}
|