@mondaydotcomorg/agent-toolkit 2.0.6 → 2.0.8

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.
@@ -350,9 +350,12 @@ declare const allMondayApiToolSchema: {
350
350
  declare class AllMondayApiTool extends BaseMondayApiTool<typeof allMondayApiToolSchema> {
351
351
  name: string;
352
352
  type: ToolType;
353
+ private static schemaCache;
353
354
  constructor(mondayApi: ApiClient, context?: MondayApiToolContext);
354
355
  getDescription(): string;
355
356
  getInputSchema(): typeof allMondayApiToolSchema;
357
+ private loadSchema;
358
+ private validateOperation;
356
359
  execute(input: ToolInputType<typeof allMondayApiToolSchema>): Promise<ToolOutputType<never>>;
357
360
  }
358
361