Skip to content

Commit 0813b80

Browse files
fix(tasks): update the API
#### tasks:v1 The following keys were changed: - schemas.Task.properties.due.description
1 parent 469ed8e commit 0813b80

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

discovery/tasks-v1.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,7 @@
576576
}
577577
}
578578
},
579-
"revision": "20250518",
579+
"revision": "20251102",
580580
"rootUrl": "https://tasks.googleapis.com/",
581581
"schemas": {
582582
"AssignmentInfo": {
@@ -664,7 +664,7 @@
664664
"type": "boolean"
665665
},
666666
"due": {
667-
"description": "Due date of the task (as a RFC 3339 timestamp). Optional. The due date only records date information; the time portion of the timestamp is discarded when setting the due date. It isn't possible to read or write the time that a task is due via the API.",
667+
"description": "Scheduled date for the task (as an RFC 3339 timestamp). Optional. This represents the day that the task should be done, or that the task is visible on the calendar grid. It doesn't represent the deadline of the task. Only date information is recorded; the time portion of the timestamp is discarded when setting this field. It isn't possible to read or write the time that a task is scheduled for using the API.",
668668
"type": "string"
669669
},
670670
"etag": {

src/apis/tasks/v1.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ export namespace tasks_v1 {
183183
*/
184184
deleted?: boolean | null;
185185
/**
186-
* Due date of the task (as a RFC 3339 timestamp). Optional. The due date only records date information; the time portion of the timestamp is discarded when setting the due date. It isn't possible to read or write the time that a task is due via the API.
186+
* Scheduled date for the task (as an RFC 3339 timestamp). Optional. This represents the day that the task should be done, or that the task is visible on the calendar grid. It doesn't represent the deadline of the task. Only date information is recorded; the time portion of the timestamp is discarded when setting this field. It isn't possible to read or write the time that a task is scheduled for using the API.
187187
*/
188188
due?: string | null;
189189
/**

0 commit comments

Comments
 (0)