@mondaydotcomorg/agent-toolkit 2.29.15 → 2.31.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.
@@ -29,6 +29,7 @@ interface Tool<Input extends ZodRawShape | undefined, Output extends Record<stri
29
29
 
30
30
  type MondayApiToolContext = {
31
31
  boardId?: number;
32
+ apiVersion?: string;
32
33
  agentType?: string;
33
34
  agentClientName?: string;
34
35
  clientRedirectUris?: string[];
@@ -50,6 +51,7 @@ type ToolsConfiguration = {
50
51
  type MondayAgentToolkitConfig = {
51
52
  mondayApiToken: ApiClientConfig['token'];
52
53
  mondayApiVersion?: ApiClientConfig['apiVersion'];
54
+ mondayApiEndpoint?: ApiClientConfig['endpoint'];
53
55
  mondayApiRequestConfig?: ApiClientConfig['requestConfig'];
54
56
  toolsConfiguration?: ToolsConfiguration;
55
57
  context?: MondayApiToolContext;