Skip to content

Commit 4879105

Browse files
1 parent 386ae59 commit 4879105

File tree

4 files changed

+21
-16
lines changed

4 files changed

+21
-16
lines changed

clients/google-api-services-tasks/v1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-tasks</artifactId>
25-
<version>v1-rev20240630-2.0.0</version>
25+
<version>v1-rev20250105-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-tasks:v1-rev20240630-2.0.0'
38+
implementation 'com.google.apis:google-api-services-tasks:v1-rev20250105-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-tasks/v1/2.0.0/com/google/api/services/tasks/Tasks.java

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2007,24 +2007,26 @@ public Move setDestinationTasklist(java.lang.String destinationTasklist) {
20072007

20082008
/**
20092009
* New parent task identifier. If the task is moved to the top level, this parameter is
2010-
* omitted. Assigned tasks can not be set as parent task (have subtasks) or be moved under a
2011-
* parent task (become subtasks). Optional.
2010+
* omitted. The task set as parent must exist in the task list and can not be hidden. Assigned
2011+
* tasks can not be set as parent task (have subtasks) or be moved under a parent task (become
2012+
* subtasks). Optional.
20122013
*/
20132014
@com.google.api.client.util.Key
20142015
private java.lang.String parent;
20152016

2016-
/** New parent task identifier. If the task is moved to the top level, this parameter is omitted.
2017-
Assigned tasks can not be set as parent task (have subtasks) or be moved under a parent task
2018-
(become subtasks). Optional.
2017+
/** New parent task identifier. If the task is moved to the top level, this parameter is omitted. The
2018+
task set as parent must exist in the task list and can not be hidden. Assigned tasks can not be set
2019+
as parent task (have subtasks) or be moved under a parent task (become subtasks). Optional.
20192020
*/
20202021
public java.lang.String getParent() {
20212022
return parent;
20222023
}
20232024

20242025
/**
20252026
* New parent task identifier. If the task is moved to the top level, this parameter is
2026-
* omitted. Assigned tasks can not be set as parent task (have subtasks) or be moved under a
2027-
* parent task (become subtasks). Optional.
2027+
* omitted. The task set as parent must exist in the task list and can not be hidden. Assigned
2028+
* tasks can not be set as parent task (have subtasks) or be moved under a parent task (become
2029+
* subtasks). Optional.
20282030
*/
20292031
public Move setParent(java.lang.String parent) {
20302032
this.parent = parent;
@@ -2033,21 +2035,24 @@ public Move setParent(java.lang.String parent) {
20332035

20342036
/**
20352037
* New previous sibling task identifier. If the task is moved to the first position among its
2036-
* siblings, this parameter is omitted. Optional.
2038+
* siblings, this parameter is omitted. The task set as previous must exist in the task list
2039+
* and can not be hidden. Optional.
20372040
*/
20382041
@com.google.api.client.util.Key
20392042
private java.lang.String previous;
20402043

20412044
/** New previous sibling task identifier. If the task is moved to the first position among its
2042-
siblings, this parameter is omitted. Optional.
2045+
siblings, this parameter is omitted. The task set as previous must exist in the task list and can
2046+
not be hidden. Optional.
20432047
*/
20442048
public java.lang.String getPrevious() {
20452049
return previous;
20462050
}
20472051

20482052
/**
20492053
* New previous sibling task identifier. If the task is moved to the first position among its
2050-
* siblings, this parameter is omitted. Optional.
2054+
* siblings, this parameter is omitted. The task set as previous must exist in the task list
2055+
* and can not be hidden. Optional.
20512056
*/
20522057
public Move setPrevious(java.lang.String previous) {
20532058
this.previous = previous;

clients/google-api-services-tasks/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-tasks</artifactId>
11-
<version>v1-rev20240630-2.0.0</version>
12-
<name>Google Tasks API v1-rev20240630-2.0.0</name>
11+
<version>v1-rev20250105-2.0.0</version>
12+
<name>Google Tasks API v1-rev20250105-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-tasks/v1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-tasks</artifactId>
25-
<version>v1-rev20240630-2.0.0</version>
25+
<version>v1-rev20250105-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-tasks:v1-rev20240630-2.0.0'
38+
implementation 'com.google.apis:google-api-services-tasks:v1-rev20250105-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)