Skip to content

Commit

Permalink
fix(tasks): update the API
Browse files Browse the repository at this point in the history
#### tasks:v1

The following keys were changed:
- resources.tasks.methods.move.parameters.parent.description
- resources.tasks.methods.move.parameters.previous.description
  • Loading branch information
yoshi-automation authored and sofisl committed Jan 29, 2025
1 parent e359783 commit 749feb4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions discovery/tasks-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -475,12 +475,12 @@
"type": "string"
},
"parent": {
"description": "New parent task identifier. If the task is moved to the top level, this parameter is omitted. Assigned tasks can not be set as parent task (have subtasks) or be moved under a parent task (become subtasks). Optional.",
"description": "New parent task identifier. If the task is moved to the top level, this parameter is omitted. The task set as parent must exist in the task list and can not be hidden. Assigned tasks can not be set as parent task (have subtasks) or be moved under a parent task (become subtasks). Optional.",
"location": "query",
"type": "string"
},
"previous": {
"description": "New previous sibling task identifier. If the task is moved to the first position among its siblings, this parameter is omitted. Optional.",
"description": "New previous sibling task identifier. If the task is moved to the first position among its siblings, this parameter is omitted. The task set as previous must exist in the task list and can not be hidden. Optional.",
"location": "query",
"type": "string"
},
Expand Down Expand Up @@ -576,7 +576,7 @@
}
}
},
"revision": "20240630",
"revision": "20250105",
"rootUrl": "https://tasks.googleapis.com/",
"schemas": {
"AssignmentInfo": {
Expand Down
4 changes: 2 additions & 2 deletions src/apis/tasks/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1679,11 +1679,11 @@ export namespace tasks_v1 {
*/
destinationTasklist?: string;
/**
* New parent task identifier. If the task is moved to the top level, this parameter is omitted. Assigned tasks can not be set as parent task (have subtasks) or be moved under a parent task (become subtasks). Optional.
* New parent task identifier. If the task is moved to the top level, this parameter is omitted. The task set as parent must exist in the task list and can not be hidden. Assigned tasks can not be set as parent task (have subtasks) or be moved under a parent task (become subtasks). Optional.
*/
parent?: string;
/**
* New previous sibling task identifier. If the task is moved to the first position among its siblings, this parameter is omitted. Optional.
* New previous sibling task identifier. If the task is moved to the first position among its siblings, this parameter is omitted. The task set as previous must exist in the task list and can not be hidden. Optional.
*/
previous?: string;
/**
Expand Down

0 comments on commit 749feb4

Please sign in to comment.