psadk 1.3.1 → 1.3.3

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 (33) hide show
  1. package/build/main/lib/PSAI.d.ts +2 -2
  2. package/build/main/lib/PSAI.js +5 -3
  3. package/build/main/lib/PSAgent.d.ts +5 -5
  4. package/build/main/lib/PSAgent.js +1 -2
  5. package/build/main/lib/PSAgentLogger.d.ts +9 -1
  6. package/build/main/lib/PSAgentLogger.js +1 -1
  7. package/build/main/lib/PSAgentTool.d.ts +4 -4
  8. package/build/main/lib/tools/BraveWebSearchTool.d.ts +2 -2
  9. package/build/main/lib/tools/PSClarifyTool.d.ts +2 -2
  10. package/build/main/lib/tools/PSClarifyTool.js +1 -3
  11. package/build/main/lib/tools/PSCommandLineTool.d.ts +2 -2
  12. package/build/main/lib/tools/PSMemoryTool.d.ts +2 -2
  13. package/build/main/lib/tools/PSReadFileTool.d.ts +2 -2
  14. package/build/main/lib/tools/PSSubAgentTool.d.ts +2 -2
  15. package/build/main/lib/tools/PSWriteFileTool.d.ts +2 -2
  16. package/build/main/lib/tools/TodoTool.d.ts +3 -3
  17. package/build/module/lib/PSAI.d.ts +2 -2
  18. package/build/module/lib/PSAI.js +5 -1
  19. package/build/module/lib/PSAgent.d.ts +5 -5
  20. package/build/module/lib/PSAgent.js +1 -2
  21. package/build/module/lib/PSAgentLogger.d.ts +9 -1
  22. package/build/module/lib/PSAgentLogger.js +1 -1
  23. package/build/module/lib/PSAgentTool.d.ts +4 -4
  24. package/build/module/lib/tools/BraveWebSearchTool.d.ts +2 -2
  25. package/build/module/lib/tools/PSClarifyTool.d.ts +2 -2
  26. package/build/module/lib/tools/PSClarifyTool.js +1 -3
  27. package/build/module/lib/tools/PSCommandLineTool.d.ts +2 -2
  28. package/build/module/lib/tools/PSMemoryTool.d.ts +2 -2
  29. package/build/module/lib/tools/PSReadFileTool.d.ts +2 -2
  30. package/build/module/lib/tools/PSSubAgentTool.d.ts +2 -2
  31. package/build/module/lib/tools/PSWriteFileTool.d.ts +2 -2
  32. package/build/module/lib/tools/TodoTool.d.ts +3 -3
  33. package/package.json +1 -1
@@ -1,4 +1,4 @@
1
- import { PSAgentLogger } from '../PSAgentLogger';
1
+ import { IStreamLogger } from '../PSAgentLogger';
2
2
  import { PSAgentTool } from '../PSAgentTool';
3
3
  export declare enum TodoStatus {
4
4
  PENDING = "pending",
@@ -44,7 +44,7 @@ export declare class PSTodoReadTool extends PSAgentTool {
44
44
  constructor(options: {
45
45
  store: TaskStore;
46
46
  });
47
- run(_input: Record<string, any>, log?: PSAgentLogger): Promise<Record<string, any>>;
47
+ run(_input: Record<string, any>, log?: IStreamLogger): Promise<Record<string, any>>;
48
48
  }
49
49
  export declare class PSTodoWriteTool extends PSAgentTool {
50
50
  static readonly toolName = "write_todo";
@@ -53,5 +53,5 @@ export declare class PSTodoWriteTool extends PSAgentTool {
53
53
  store: TaskStore;
54
54
  });
55
55
  get Todos(): Todo[];
56
- run(input: Record<string, any>, log?: PSAgentLogger): Promise<Record<string, any>>;
56
+ run(input: Record<string, any>, log?: IStreamLogger): Promise<Record<string, any>>;
57
57
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "psadk",
3
3
  "email": "rakesh.ravuri@publicissapient.com",
4
- "version": "1.3.1",
4
+ "version": "1.3.3",
5
5
  "description": "ps adk adapter",
6
6
  "main": "build/main/index.js",
7
7
  "typings": "build/main/index.d.ts",