Skip to content

Commit 749feb4

Browse files
yoshi-automationsofisl
authored andcommitted
fix(tasks): update the API
#### tasks:v1 The following keys were changed: - resources.tasks.methods.move.parameters.parent.description - resources.tasks.methods.move.parameters.previous.description
1 parent e359783 commit 749feb4

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

‎discovery/tasks-v1.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -475,12 +475,12 @@
475475
"type": "string"
476476
},
477477
"parent": {
478-
"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.",
478+
"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.",
479479
"location": "query",
480480
"type": "string"
481481
},
482482
"previous": {
483-
"description": "New previous sibling task identifier. If the task is moved to the first position among its siblings, this parameter is omitted. Optional.",
483+
"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.",
484484
"location": "query",
485485
"type": "string"
486486
},
@@ -576,7 +576,7 @@
576576
}
577577
}
578578
},
579-
"revision": "20240630",
579+
"revision": "20250105",
580580
"rootUrl": "https://tasks.googleapis.com/",
581581
"schemas": {
582582
"AssignmentInfo": {

‎src/apis/tasks/v1.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1679,11 +1679,11 @@ export namespace tasks_v1 {
16791679
*/
16801680
destinationTasklist?: string;
16811681
/**
1682-
* 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.
1682+
* 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.
16831683
*/
16841684
parent?: string;
16851685
/**
1686-
* New previous sibling task identifier. If the task is moved to the first position among its siblings, this parameter is omitted. Optional.
1686+
* 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.
16871687
*/
16881688
previous?: string;
16891689
/**

0 commit comments

Comments
 (0)