Skip to content

Commit 7d32cd5

Browse files
committed
fix(google-tasks): rename list-task-lists to list_task_lists for doc generator
1 parent e48561c commit 7d32cd5

File tree

3 files changed

+7
-17
lines changed

3 files changed

+7
-17
lines changed

apps/docs/content/docs/en/tools/google_tasks.mdx

Lines changed: 6 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -158,30 +158,20 @@ Delete a task from a Google Tasks list
158158

159159
### `google_tasks_list_task_lists`
160160

161+
Retrieve all task lists for the authenticated user
162+
161163
#### Input
162164

163165
| Parameter | Type | Required | Description |
164166
| --------- | ---- | -------- | ----------- |
167+
| `maxResults` | number | No | Maximum number of task lists to return \(default 1000, max 1000\) |
168+
| `pageToken` | string | No | Token for pagination |
165169

166170
#### Output
167171

168172
| Parameter | Type | Description |
169173
| --------- | ---- | ----------- |
170-
| `id` | string | Task ID |
171-
| `title` | string | Task title |
172-
| `notes` | string | Task notes |
173-
| `status` | string | Task status |
174-
| `due` | string | Due date |
175-
| `updated` | string | Last modification time |
176-
| `selfLink` | string | URL for the task |
177-
| `webViewLink` | string | Link to task in Google Tasks UI |
178-
| `parent` | string | Parent task ID |
179-
| `position` | string | Position among sibling tasks |
180-
| `completed` | string | Completion date |
181-
| `deleted` | boolean | Whether the task is deleted |
182-
| `tasks` | json | Array of tasks \(list operation\) |
183-
| `taskLists` | json | Array of task lists \(list_task_lists operation\) |
184-
| `taskId` | string | Deleted task ID \(delete operation\) |
185-
| `nextPageToken` | string | Token for next page of results |
174+
| `taskLists` | json | Array of task lists with id, title, updated, and selfLink |
175+
| `nextPageToken` | string | Token for retrieving the next page of results |
186176

187177

apps/sim/tools/google_tasks/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ export { createTool as googleTasksCreateTool } from '@/tools/google_tasks/create
22
export { deleteTool as googleTasksDeleteTool } from '@/tools/google_tasks/delete'
33
export { getTool as googleTasksGetTool } from '@/tools/google_tasks/get'
44
export { listTool as googleTasksListTool } from '@/tools/google_tasks/list'
5-
export { listTaskListsTool as googleTasksListTaskListsTool } from '@/tools/google_tasks/list-task-lists'
5+
export { listTaskListsTool as googleTasksListTaskListsTool } from '@/tools/google_tasks/list_task_lists'
66
export { updateTool as googleTasksUpdateTool } from '@/tools/google_tasks/update'
File renamed without changes.

0 commit comments

Comments
 (0)