@mondaydotcomorg/agent-toolkit 2.30.0 → 2.32.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.
@@ -28,6 +28,7 @@ interface Tool<Input extends ZodRawShape | undefined, Output extends Record<stri
28
28
 
29
29
  type MondayApiToolContext = {
30
30
  boardId?: number;
31
+ apiVersion?: string;
31
32
  agentType?: string;
32
33
  agentClientName?: string;
33
34
  clientRedirectUris?: string[];
@@ -137,6 +138,7 @@ type ToolsConfiguration = {
137
138
  type MondayAgentToolkitConfig = {
138
139
  mondayApiToken: ApiClientConfig['token'];
139
140
  mondayApiVersion?: ApiClientConfig['apiVersion'];
141
+ mondayApiEndpoint?: ApiClientConfig['endpoint'];
140
142
  mondayApiRequestConfig?: ApiClientConfig['requestConfig'];
141
143
  toolsConfiguration?: ToolsConfiguration;
142
144
  context?: MondayApiToolContext;