@mondaydotcomorg/agent-toolkit 2.0.3 → 2.0.5

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.
@@ -356,11 +356,14 @@ declare class AllMondayApiTool extends BaseMondayApiTool<typeof allMondayApiTool
356
356
  execute(input: ToolInputType<typeof allMondayApiToolSchema>): Promise<ToolOutputType<never>>;
357
357
  }
358
358
 
359
- declare class GetGraphQLSchemaTool extends BaseMondayApiTool<undefined> {
359
+ declare const getGraphQLSchemaToolSchema: {
360
+ random_string: z.ZodOptional<z.ZodString>;
361
+ };
362
+ declare class GetGraphQLSchemaTool extends BaseMondayApiTool<typeof getGraphQLSchemaToolSchema> {
360
363
  name: string;
361
364
  type: ToolType;
362
365
  getDescription(): string;
363
- getInputSchema(): undefined;
366
+ getInputSchema(): typeof getGraphQLSchemaToolSchema;
364
367
  execute(): Promise<ToolOutputType<never>>;
365
368
  }
366
369
 
@@ -411,4 +414,4 @@ declare class CreateTimelineItemTool extends BaseMondayApiTool<typeof createTime
411
414
 
412
415
  declare const allTools: (typeof GetBoardSchemaTool | typeof FetchCustomActivityTool)[];
413
416
 
414
- export { AllMondayApiTool, ChangeItemColumnValuesTool, ChangeItemColumnValuesToolInput, CreateBoardTool, CreateColumnTool, CreateColumnToolInput, CreateCustomActivityTool, CreateItemTool, CreateItemToolInput, CreateTimelineItemTool, CreateUpdateTool, DeleteColumnTool, DeleteColumnToolInput, DeleteItemTool, Executable, FetchCustomActivityTool, GetBoardItemsTool, GetBoardSchemaTool, GetGraphQLSchemaTool, GetItemsToolInput, GetTypeDetailsTool, GetUsersTool, MoveItemToGroupTool, Tool, ToolInputType, ToolOutputType, ToolType, allMondayApiToolSchema, allTools, changeItemColumnValuesInBoardToolSchema, changeItemColumnValuesToolSchema, createBoardToolSchema, createColumnInBoardToolSchema, createColumnToolSchema, createCustomActivityToolSchema, createItemInBoardToolSchema, createItemToolSchema, createTimelineItemToolSchema, createUpdateToolSchema, deleteColumnInBoardToolSchema, deleteColumnToolSchema, deleteItemToolSchema, fetchCustomActivityToolSchema, getBoardSchemaToolSchema, getItemsInBoardToolSchema, getItemsToolSchema, getTypeDetailsToolSchema, getUsersToolSchema, moveItemToGroupToolSchema };
417
+ export { AllMondayApiTool, ChangeItemColumnValuesTool, ChangeItemColumnValuesToolInput, CreateBoardTool, CreateColumnTool, CreateColumnToolInput, CreateCustomActivityTool, CreateItemTool, CreateItemToolInput, CreateTimelineItemTool, CreateUpdateTool, DeleteColumnTool, DeleteColumnToolInput, DeleteItemTool, Executable, FetchCustomActivityTool, GetBoardItemsTool, GetBoardSchemaTool, GetGraphQLSchemaTool, GetItemsToolInput, GetTypeDetailsTool, GetUsersTool, MoveItemToGroupTool, Tool, ToolInputType, ToolOutputType, ToolType, allMondayApiToolSchema, allTools, changeItemColumnValuesInBoardToolSchema, changeItemColumnValuesToolSchema, createBoardToolSchema, createColumnInBoardToolSchema, createColumnToolSchema, createCustomActivityToolSchema, createItemInBoardToolSchema, createItemToolSchema, createTimelineItemToolSchema, createUpdateToolSchema, deleteColumnInBoardToolSchema, deleteColumnToolSchema, deleteItemToolSchema, fetchCustomActivityToolSchema, getBoardSchemaToolSchema, getGraphQLSchemaToolSchema, getItemsInBoardToolSchema, getItemsToolSchema, getTypeDetailsToolSchema, getUsersToolSchema, moveItemToGroupToolSchema };