graphai 0.6.6 → 0.6.8

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
@@ -23,8 +23,8 @@ export type DataSource = {
23
23
  value?: any;
24
24
  propIds?: string[];
25
25
  };
26
- type ConsoleAttribute = true | string | Record<string, any>;
27
- export type ConsoleElement = true | {
26
+ type ConsoleAttribute = boolean | string | Record<string, any>;
27
+ export type ConsoleElement = boolean | {
28
28
  before?: ConsoleAttribute;
29
29
  after?: ConsoleAttribute;
30
30
  };
@@ -101,7 +101,6 @@ export type AgentFunctionContext<ParamsType = DefaultParamsType, NamedInputDataT
101
101
  onLogCallback?: (log: TransactionLog, isUpdate: boolean) => void;
102
102
  };
103
103
  cacheType?: CacheTypes;
104
- onLogCallback?: (log: TransactionLog, isUpdate: boolean) => void;
105
104
  filterParams: AgentFilterParams;
106
105
  agentFilters?: AgentFilterInfo[];
107
106
  log?: TransactionLog[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphai",
3
- "version": "0.6.6",
3
+ "version": "0.6.8",
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",