File tree Expand file tree Collapse file tree 8 files changed +19
-19
lines changed
Expand file tree Collapse file tree 8 files changed +19
-19
lines changed Original file line number Diff line number Diff line change @@ -49,8 +49,8 @@ import { GoogleDocsBlock } from '@/blocks/blocks/google_docs'
4949import { GoogleDriveBlock } from '@/blocks/blocks/google_drive'
5050import { GoogleFormsBlock } from '@/blocks/blocks/google_forms'
5151import { GoogleGroupsBlock } from '@/blocks/blocks/google_groups'
52- import { GoogleTasksBlock } from '@/blocks/blocks/google_tasks'
5352import { GoogleMapsBlock } from '@/blocks/blocks/google_maps'
53+ import { GoogleTasksBlock } from '@/blocks/blocks/google_tasks'
5454import { GoogleSheetsBlock , GoogleSheetsV2Block } from '@/blocks/blocks/google_sheets'
5555import { GoogleSlidesBlock , GoogleSlidesV2Block } from '@/blocks/blocks/google_slides'
5656import { GoogleVaultBlock } from '@/blocks/blocks/google_vault'
Original file line number Diff line number Diff line change 11import type { ToolConfig } from '@/tools/types'
2- import { TASKS_API_BASE } from '. /types'
3- import type { GoogleTasksCreateParams , GoogleTasksResponse } from '. /types'
2+ import { TASKS_API_BASE } from '@/tools/google_tasks /types'
3+ import type { GoogleTasksCreateParams , GoogleTasksResponse } from '@/tools/google_tasks /types'
44
55export const createTool : ToolConfig < GoogleTasksCreateParams , GoogleTasksResponse > = {
66 id : 'google_tasks_create' ,
Original file line number Diff line number Diff line change 11import type { ToolConfig } from '@/tools/types'
2- import { TASKS_API_BASE } from '. /types'
3- import type { GoogleTasksDeleteParams , GoogleTasksDeleteResponse } from '. /types'
2+ import { TASKS_API_BASE } from '@/tools/google_tasks /types'
3+ import type { GoogleTasksDeleteParams , GoogleTasksDeleteResponse } from '@/tools/google_tasks /types'
44
55export const deleteTool : ToolConfig < GoogleTasksDeleteParams , GoogleTasksDeleteResponse > = {
66 id : 'google_tasks_delete' ,
Original file line number Diff line number Diff line change 11import type { ToolConfig } from '@/tools/types'
2- import { TASKS_API_BASE } from '. /types'
3- import type { GoogleTasksGetParams , GoogleTasksResponse } from '. /types'
2+ import { TASKS_API_BASE } from '@/tools/google_tasks /types'
3+ import type { GoogleTasksGetParams , GoogleTasksResponse } from '@/tools/google_tasks /types'
44
55export const getTool : ToolConfig < GoogleTasksGetParams , GoogleTasksResponse > = {
66 id : 'google_tasks_get' ,
Original file line number Diff line number Diff line change 1- export { createTool as googleTasksCreateTool } from '. /create'
2- export { deleteTool as googleTasksDeleteTool } from '. /delete'
3- export { getTool as googleTasksGetTool } from '. /get'
4- export { listTool as googleTasksListTool } from '. /list'
5- export { listTaskListsTool as googleTasksListTaskListsTool } from '. /list-task-lists'
6- export { updateTool as googleTasksUpdateTool } from '. /update'
1+ export { createTool as googleTasksCreateTool } from '@/tools/google_tasks /create'
2+ export { deleteTool as googleTasksDeleteTool } from '@/tools/google_tasks /delete'
3+ export { getTool as googleTasksGetTool } from '@/tools/google_tasks /get'
4+ export { listTool as googleTasksListTool } from '@/tools/google_tasks /list'
5+ export { listTaskListsTool as googleTasksListTaskListsTool } from '@/tools/google_tasks /list-task-lists'
6+ export { updateTool as googleTasksUpdateTool } from '@/tools/google_tasks /update'
Original file line number Diff line number Diff line change 11import type { ToolConfig } from '@/tools/types'
2- import { TASKS_API_BASE } from '. /types'
3- import type { GoogleTasksListTaskListsParams , GoogleTasksListTaskListsResponse } from '. /types'
2+ import { TASKS_API_BASE } from '@/tools/google_tasks /types'
3+ import type { GoogleTasksListTaskListsParams , GoogleTasksListTaskListsResponse } from '@/tools/google_tasks /types'
44
55export const listTaskListsTool : ToolConfig <
66 GoogleTasksListTaskListsParams ,
Original file line number Diff line number Diff line change 11import type { ToolConfig } from '@/tools/types'
2- import { TASKS_API_BASE } from '. /types'
3- import type { GoogleTasksListParams , GoogleTasksListResponse } from '. /types'
2+ import { TASKS_API_BASE } from '@/tools/google_tasks /types'
3+ import type { GoogleTasksListParams , GoogleTasksListResponse } from '@/tools/google_tasks /types'
44
55export const listTool : ToolConfig < GoogleTasksListParams , GoogleTasksListResponse > = {
66 id : 'google_tasks_list' ,
Original file line number Diff line number Diff line change 11import type { ToolConfig } from '@/tools/types'
2- import { TASKS_API_BASE } from '. /types'
3- import type { GoogleTasksUpdateParams , GoogleTasksResponse } from '. /types'
2+ import { TASKS_API_BASE } from '@/tools/google_tasks /types'
3+ import type { GoogleTasksUpdateParams , GoogleTasksResponse } from '@/tools/google_tasks /types'
44
55export const updateTool : ToolConfig < GoogleTasksUpdateParams , GoogleTasksResponse > = {
66 id : 'google_tasks_update' ,
You can’t perform that action at this time.
0 commit comments