@mondaydotcomorg/agent-toolkit 2.29.0 → 2.29.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.
@@ -28,6 +28,9 @@ interface Tool<Input extends ZodRawShape | undefined, Output extends Record<stri
28
28
 
29
29
  type MondayApiToolContext = {
30
30
  boardId?: number;
31
+ agentType?: string;
32
+ agentClientName?: string;
33
+ clientRedirectUris?: string[];
31
34
  };
32
35
  type BaseMondayApiToolConstructor = new (api: ApiClient, token?: string) => BaseMondayApiTool<any>;
33
36
  declare abstract class BaseMondayApiTool<Input extends ZodRawShape | undefined, Output extends Record<string, unknown> = never> implements Tool<Input, Output> {
@@ -134,6 +137,7 @@ type MondayAgentToolkitConfig = {
134
137
  mondayApiVersion?: ApiClientConfig['apiVersion'];
135
138
  mondayApiRequestConfig?: ApiClientConfig['requestConfig'];
136
139
  toolsConfiguration?: ToolsConfiguration;
140
+ context?: MondayApiToolContext;
137
141
  };
138
142
 
139
143
  export { Executable, MondayAgentToolkitConfig, Tool, ToolInputType, ToolMode, ToolOutputType, ToolType, ToolsConfiguration, allGraphqlApiTools, allMondayAppsTools, allMondayDevTools, allTools };