powr-sdk-api 4.3.4 → 4.3.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.
@@ -17,7 +17,7 @@ const initializeTools = async (options = {}) => {
17
17
  };
18
18
  const executeTool = async (options = {}) => {
19
19
  // Execute tool action
20
- await toolsManager.executeToolAction(options);
20
+ return await toolsManager.executeToolAction(options);
21
21
  };
22
22
  const executeTasks = async (options = {}) => {
23
23
  // Execute scheduled tasks
@@ -28,5 +28,9 @@ module.exports = {
28
28
  initializeFunctions,
29
29
  initializeTools,
30
30
  executeTasks,
31
- executeTool
31
+ executeTool,
32
+ // Export manager instances
33
+ functionsManager,
34
+ toolsManager,
35
+ scheduledTasksManager
32
36
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "powr-sdk-api",
3
- "version": "4.3.4",
3
+ "version": "4.3.6",
4
4
  "description": "Shared API core library for PowrStack projects",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",