@mondaydotcomorg/agent-toolkit 2.20.0 → 2.20.2

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/README.md CHANGED
@@ -42,7 +42,6 @@ The toolkit includes several pre-built tools for common monday.com operations, o
42
42
  - `FormQuestionsEditorTool` - Create, update, or delete a question in a monday.com form
43
43
 
44
44
  ### Account Operations
45
- - `GetUsersTool` - Get users, can be filtered by name or partial name
46
45
  - `ListUsersAndTeams` - Get users or teams, either by ids, names or by searching the account
47
46
 
48
47
  ### Dynamic API Tools
@@ -61,6 +61,8 @@ declare abstract class BaseMondayApiTool<Input extends ZodRawShape | undefined,
61
61
 
62
62
  declare const allMondayAppsTools: (new (...args: any[]) => Tool<any, any>)[];
63
63
 
64
+ declare const allMondayDevTools: BaseMondayApiToolConstructor[];
65
+
64
66
  declare const allGraphqlApiTools: BaseMondayApiToolConstructor[];
65
67
 
66
68
  declare const allTools: ((new (...args: any[]) => Tool<any, any>) | BaseMondayApiToolConstructor)[];
@@ -84,4 +86,4 @@ type MondayAgentToolkitConfig = {
84
86
  toolsConfiguration?: ToolsConfiguration;
85
87
  };
86
88
 
87
- export { Executable, MondayAgentToolkitConfig, Tool, ToolInputType, ToolMode, ToolOutputType, ToolType, ToolsConfiguration, allGraphqlApiTools, allMondayAppsTools, allTools };
89
+ export { Executable, MondayAgentToolkitConfig, Tool, ToolInputType, ToolMode, ToolOutputType, ToolType, ToolsConfiguration, allGraphqlApiTools, allMondayAppsTools, allMondayDevTools, allTools };