@mondaydotcomorg/agent-toolkit 2.3.0 → 2.4.0

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.
@@ -21,6 +21,8 @@ interface Tool<Input extends ZodRawShape | undefined, Output extends Record<stri
21
21
  name: string;
22
22
  type: ToolType;
23
23
  annotations: ToolAnnotations;
24
+ /** Whether the tool is enabled by default. Defaults to true if not specified. */
25
+ enabledByDefault?: boolean;
24
26
  getDescription(): string;
25
27
  getInputSchema(): Input;
26
28
  }
@@ -35,6 +37,7 @@ type ToolsConfiguration = {
35
37
  readOnlyMode?: boolean;
36
38
  mode?: ToolMode;
37
39
  enableDynamicApiTools?: boolean | 'only';
40
+ enableToolManager?: boolean;
38
41
  };
39
42
  type MondayAgentToolkitConfig = {
40
43
  mondayApiToken: ApiClientConfig['token'];