@receptron/graphai_express 0.0.25 → 0.0.26

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 (2) hide show
  1. package/lib/index.js +0 -1
  2. package/package.json +9 -9
package/lib/index.js CHANGED
@@ -134,7 +134,6 @@ const agentDispatcherInternal = (agentDictionary, agentFilters = [], isDispatch
134
134
  return async (req, res) => {
135
135
  const { params } = req;
136
136
  const { agentId } = isDispatch ? params : req.body;
137
- console.log(agentId);
138
137
  const { nodeId, retry, params: agentParams, inputs, namedInputs } = req.body;
139
138
  const agent = agentDictionary[agentId];
140
139
  if (agent === undefined) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@receptron/graphai_express",
3
- "version": "0.0.25",
3
+ "version": "0.0.26",
4
4
  "description": "GraphAI express web server middleware.",
5
5
  "main": "lib/index.js",
6
6
  "files": [
@@ -13,7 +13,7 @@
13
13
  "test_stream": "ts-node -r tsconfig-paths/register test/stream_client.ts",
14
14
  "test": "ts-node -r tsconfig-paths/register test/client.ts",
15
15
  "format": "prettier --write '{src,test}/**/*.{yaml,ts,json}'",
16
- "b": "yarn run format && yarn run eslint && yarn run build"
16
+ "ci": "yarn run format && yarn run eslint && yarn run build"
17
17
  },
18
18
  "repository": {
19
19
  "type": "git",
@@ -26,22 +26,22 @@
26
26
  },
27
27
  "homepage": "https://github.com/receptron/graphai_utils/tree/main/packages/express#readme",
28
28
  "devDependencies": {
29
- "@graphai/agents": "^0.0.14",
29
+ "@graphai/agents": "^0.0.21",
30
30
  "@types/express": "^4.17.21",
31
- "@types/node": "^20.8.7",
32
- "eslint": "^9.3.0",
33
- "prettier": "^3.2.5",
31
+ "@types/node": "^20.14.12",
32
+ "eslint": "^9.7.0",
33
+ "prettier": "^3.3.3",
34
34
  "ts-node": "^10.9.2",
35
35
  "tsc-alias": "^1.8.8",
36
36
  "tsconfig-paths": "^4.2.0",
37
- "typescript": "^5.4.5",
38
- "typescript-eslint": "^7.9.0"
37
+ "typescript": "^5.5.4",
38
+ "typescript-eslint": "^7.17.0"
39
39
  },
40
40
  "dependencies": {
41
41
  "@graphai/agent_filters": "^0.0.6",
42
42
  "dotenv": "^16.4.5",
43
43
  "express": "^4.19.2",
44
- "graphai": "^0.5.3"
44
+ "graphai": "^0.5.5"
45
45
  },
46
46
  "types": "./lib/index.d.ts",
47
47
  "directories": {