Skip to content

Commit 0ea6252

Browse files
yoshi-automationsofisl
authored andcommitted
feat(tasks): update the API
#### tasks:v1 The following keys were added: - schemas.Task.properties.webViewLink.description - schemas.Task.properties.webViewLink.type
1 parent e2ad916 commit 0ea6252

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

discovery/tasks-v1.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@
566566
}
567567
}
568568
},
569-
"revision": "20240225",
569+
"revision": "20240312",
570570
"rootUrl": "https://tasks.googleapis.com/",
571571
"schemas": {
572572
"Task": {
@@ -648,6 +648,10 @@
648648
"updated": {
649649
"description": "Last modification time of the task (as a RFC 3339 timestamp).",
650650
"type": "string"
651+
},
652+
"webViewLink": {
653+
"description": "An absolute link to the task in the Google Tasks Web UI. This field is read-only.",
654+
"type": "string"
651655
}
652656
},
653657
"type": "object"

src/apis/tasks/v1.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,10 @@ export namespace tasks_v1 {
187187
* Last modification time of the task (as a RFC 3339 timestamp).
188188
*/
189189
updated?: string | null;
190+
/**
191+
* An absolute link to the task in the Google Tasks Web UI. This field is read-only.
192+
*/
193+
webViewLink?: string | null;
190194
}
191195
export interface Schema$TaskList {
192196
/**

0 commit comments

Comments
 (0)