@maxim_mazurok/gapi.client.tasks-v1 0.0.20240521 → 0.0.20240526
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +11 -11
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://tasks.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240526
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -37,9 +37,9 @@ declare namespace gapi.client {
|
|
|
37
37
|
hidden?: boolean;
|
|
38
38
|
/** Task identifier. */
|
|
39
39
|
id?: string;
|
|
40
|
-
/** Type of the resource. This is always "tasks#task". */
|
|
40
|
+
/** Output only. Type of the resource. This is always "tasks#task". */
|
|
41
41
|
kind?: string;
|
|
42
|
-
/** Collection of links. This collection is read-only. */
|
|
42
|
+
/** Output only. Collection of links. This collection is read-only. */
|
|
43
43
|
links?: Array<{
|
|
44
44
|
/** The description. In HTML speak: Everything between <a> and </a>. */
|
|
45
45
|
description?: string;
|
|
@@ -50,19 +50,19 @@ declare namespace gapi.client {
|
|
|
50
50
|
}>;
|
|
51
51
|
/** Notes describing the task. Optional. Maximum length allowed: 8192 characters. */
|
|
52
52
|
notes?: string;
|
|
53
|
-
/** Parent task identifier. This field is omitted if it is a top-level task. This field is read-only. Use the "move" method to move the task under a different parent or to the top level. */
|
|
53
|
+
/** Output only. Parent task identifier. This field is omitted if it is a top-level task. This field is read-only. Use the "move" method to move the task under a different parent or to the top level. */
|
|
54
54
|
parent?: string;
|
|
55
|
-
/** String indicating the position of the task among its sibling tasks under the same parent task or at the top level. If this string is greater than another task's corresponding position string according to lexicographical ordering, the task is positioned after the other task under the same parent task (or at the top level).
|
|
55
|
+
/** Output only. String indicating the position of the task among its sibling tasks under the same parent task or at the top level. If this string is greater than another task's corresponding position string according to lexicographical ordering, the task is positioned after the other task under the same parent task (or at the top level). Use the "move" method to move the task to another position. */
|
|
56
56
|
position?: string;
|
|
57
|
-
/** URL pointing to this task. Used to retrieve, update, or delete this task. */
|
|
57
|
+
/** Output only. URL pointing to this task. Used to retrieve, update, or delete this task. */
|
|
58
58
|
selfLink?: string;
|
|
59
59
|
/** Status of the task. This is either "needsAction" or "completed". */
|
|
60
60
|
status?: string;
|
|
61
61
|
/** Title of the task. Maximum length allowed: 1024 characters. */
|
|
62
62
|
title?: string;
|
|
63
|
-
/** Last modification time of the task (as a RFC 3339 timestamp). */
|
|
63
|
+
/** Output only. Last modification time of the task (as a RFC 3339 timestamp). */
|
|
64
64
|
updated?: string;
|
|
65
|
-
/** An absolute link to the task in the Google Tasks Web UI.
|
|
65
|
+
/** Output only. An absolute link to the task in the Google Tasks Web UI. */
|
|
66
66
|
webViewLink?: string;
|
|
67
67
|
}
|
|
68
68
|
interface TaskList {
|
|
@@ -70,13 +70,13 @@ declare namespace gapi.client {
|
|
|
70
70
|
etag?: string;
|
|
71
71
|
/** Task list identifier. */
|
|
72
72
|
id?: string;
|
|
73
|
-
/** Type of the resource. This is always "tasks#taskList". */
|
|
73
|
+
/** Output only. Type of the resource. This is always "tasks#taskList". */
|
|
74
74
|
kind?: string;
|
|
75
|
-
/** URL pointing to this task list. Used to retrieve, update, or delete this task list. */
|
|
75
|
+
/** Output only. URL pointing to this task list. Used to retrieve, update, or delete this task list. */
|
|
76
76
|
selfLink?: string;
|
|
77
77
|
/** Title of the task list. Maximum length allowed: 1024 characters. */
|
|
78
78
|
title?: string;
|
|
79
|
-
/** Last modification time of the task list (as a RFC 3339 timestamp). */
|
|
79
|
+
/** Output only. Last modification time of the task list (as a RFC 3339 timestamp). */
|
|
80
80
|
updated?: string;
|
|
81
81
|
}
|
|
82
82
|
interface TaskLists {
|