graphai 2.0.5 → 2.0.6

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/lib/type.d.ts CHANGED
@@ -129,6 +129,7 @@ export type AgentFunctionInfoSample = {
129
129
  params: DefaultParamsType;
130
130
  result: any;
131
131
  graph?: GraphData;
132
+ description?: string;
132
133
  };
133
134
  export type AgentFunctionInfo = {
134
135
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphai",
3
- "version": "2.0.5",
3
+ "version": "2.0.6",
4
4
  "description": "Asynchronous data flow execution engine for agentic AI apps.",
5
5
  "main": "lib/bundle.cjs.js",
6
6
  "module": "lib/bundle.esm.js",
@@ -29,8 +29,8 @@
29
29
  },
30
30
  "homepage": "https://github.com/receptron/graphai#readme",
31
31
  "devDependencies": {
32
- "typedoc": "^0.28.4",
33
- "typedoc-plugin-markdown": "^4.6.3"
32
+ "typedoc": "^0.28.5",
33
+ "typedoc-plugin-markdown": "^4.6.4"
34
34
  },
35
35
  "types": "./lib/index.d.ts",
36
36
  "directories": {