@mondaydotcomorg/agent-toolkit 2.0.9 → 2.0.10
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.
- package/dist/cjs/core/index.d.ts +13 -12
- package/dist/cjs/core/index.js +2 -2
- package/dist/cjs/core/index.js.map +1 -1
- package/dist/cjs/mcp/index.js +17 -17
- package/dist/cjs/mcp/index.js.map +1 -1
- package/dist/cjs/openai/index.js +4 -4
- package/dist/cjs/openai/index.js.map +1 -1
- package/dist/esm/core/index.d.ts +13 -12
- package/dist/esm/core/index.js +3 -3
- package/dist/esm/core/index.js.map +1 -1
- package/dist/esm/mcp/index.js +4 -4
- package/dist/esm/mcp/index.js.map +1 -1
- package/dist/esm/openai/index.js +1 -1
- package/dist/esm/openai/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/core/index.d.ts
CHANGED
|
@@ -47,6 +47,18 @@ declare class GetBoardSchemaTool extends BaseMondayApiTool<typeof getBoardSchema
|
|
|
47
47
|
execute(input: ToolInputType<typeof getBoardSchemaToolSchema | undefined>): Promise<ToolOutputType<never>>;
|
|
48
48
|
}
|
|
49
49
|
|
|
50
|
+
declare const getGraphQLSchemaToolSchema: {
|
|
51
|
+
random_string: z.ZodOptional<z.ZodString>;
|
|
52
|
+
operationType: z.ZodOptional<z.ZodEnum<["read", "write"]>>;
|
|
53
|
+
};
|
|
54
|
+
declare class GetGraphQLSchemaTool extends BaseMondayApiTool<typeof getGraphQLSchemaToolSchema> {
|
|
55
|
+
name: string;
|
|
56
|
+
type: ToolType;
|
|
57
|
+
getDescription(): string;
|
|
58
|
+
getInputSchema(): typeof getGraphQLSchemaToolSchema;
|
|
59
|
+
execute(input?: ToolInputType<typeof getGraphQLSchemaToolSchema>): Promise<ToolOutputType<never>>;
|
|
60
|
+
}
|
|
61
|
+
|
|
50
62
|
declare const fetchCustomActivityToolSchema: {};
|
|
51
63
|
declare class FetchCustomActivityTool extends BaseMondayApiTool<typeof fetchCustomActivityToolSchema> {
|
|
52
64
|
name: string;
|
|
@@ -359,17 +371,6 @@ declare class AllMondayApiTool extends BaseMondayApiTool<typeof allMondayApiTool
|
|
|
359
371
|
execute(input: ToolInputType<typeof allMondayApiToolSchema>): Promise<ToolOutputType<never>>;
|
|
360
372
|
}
|
|
361
373
|
|
|
362
|
-
declare const getGraphQLSchemaToolSchema: {
|
|
363
|
-
random_string: z.ZodOptional<z.ZodString>;
|
|
364
|
-
};
|
|
365
|
-
declare class GetGraphQLSchemaTool extends BaseMondayApiTool<typeof getGraphQLSchemaToolSchema> {
|
|
366
|
-
name: string;
|
|
367
|
-
type: ToolType;
|
|
368
|
-
getDescription(): string;
|
|
369
|
-
getInputSchema(): typeof getGraphQLSchemaToolSchema;
|
|
370
|
-
execute(): Promise<ToolOutputType<never>>;
|
|
371
|
-
}
|
|
372
|
-
|
|
373
374
|
declare const getTypeDetailsToolSchema: {
|
|
374
375
|
typeName: z.ZodString;
|
|
375
376
|
};
|
|
@@ -415,6 +416,6 @@ declare class CreateTimelineItemTool extends BaseMondayApiTool<typeof createTime
|
|
|
415
416
|
execute(input: ToolInputType<typeof createTimelineItemToolSchema>): Promise<ToolOutputType<never>>;
|
|
416
417
|
}
|
|
417
418
|
|
|
418
|
-
declare const allTools: (typeof GetBoardSchemaTool | typeof FetchCustomActivityTool)[];
|
|
419
|
+
declare const allTools: (typeof GetBoardSchemaTool | typeof GetGraphQLSchemaTool | typeof FetchCustomActivityTool)[];
|
|
419
420
|
|
|
420
421
|
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 };
|