@googleapis/tasks 4.0.0 → 4.1.0
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/CHANGELOG.md +7 -0
- package/build/v1.d.ts +10 -10
- package/package.json +1 -1
- package/v1.ts +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [4.1.0](https://github.com/googleapis/google-api-nodejs-client/compare/tasks-v4.0.0...tasks-v4.1.0) (2024-06-03)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **tasks:** update the API ([a493ffb](https://github.com/googleapis/google-api-nodejs-client/commit/a493ffbefaa6b7cd934ddc801e36dc9db4188dc5))
|
|
9
|
+
|
|
3
10
|
## [4.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/tasks-v3.0.1...tasks-v4.0.0) (2024-05-02)
|
|
4
11
|
|
|
5
12
|
|
package/build/v1.d.ts
CHANGED
|
@@ -98,11 +98,11 @@ export declare namespace tasks_v1 {
|
|
|
98
98
|
*/
|
|
99
99
|
id?: string | null;
|
|
100
100
|
/**
|
|
101
|
-
* Type of the resource. This is always "tasks#task".
|
|
101
|
+
* Output only. Type of the resource. This is always "tasks#task".
|
|
102
102
|
*/
|
|
103
103
|
kind?: string | null;
|
|
104
104
|
/**
|
|
105
|
-
* Collection of links. This collection is read-only.
|
|
105
|
+
* Output only. Collection of links. This collection is read-only.
|
|
106
106
|
*/
|
|
107
107
|
links?: Array<{
|
|
108
108
|
description?: string;
|
|
@@ -114,15 +114,15 @@ export declare namespace tasks_v1 {
|
|
|
114
114
|
*/
|
|
115
115
|
notes?: string | null;
|
|
116
116
|
/**
|
|
117
|
-
* 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.
|
|
117
|
+
* 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.
|
|
118
118
|
*/
|
|
119
119
|
parent?: string | null;
|
|
120
120
|
/**
|
|
121
|
-
* 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).
|
|
121
|
+
* 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.
|
|
122
122
|
*/
|
|
123
123
|
position?: string | null;
|
|
124
124
|
/**
|
|
125
|
-
* URL pointing to this task. Used to retrieve, update, or delete this task.
|
|
125
|
+
* Output only. URL pointing to this task. Used to retrieve, update, or delete this task.
|
|
126
126
|
*/
|
|
127
127
|
selfLink?: string | null;
|
|
128
128
|
/**
|
|
@@ -134,11 +134,11 @@ export declare namespace tasks_v1 {
|
|
|
134
134
|
*/
|
|
135
135
|
title?: string | null;
|
|
136
136
|
/**
|
|
137
|
-
* Last modification time of the task (as a RFC 3339 timestamp).
|
|
137
|
+
* Output only. Last modification time of the task (as a RFC 3339 timestamp).
|
|
138
138
|
*/
|
|
139
139
|
updated?: string | null;
|
|
140
140
|
/**
|
|
141
|
-
* An absolute link to the task in the Google Tasks Web UI.
|
|
141
|
+
* Output only. An absolute link to the task in the Google Tasks Web UI.
|
|
142
142
|
*/
|
|
143
143
|
webViewLink?: string | null;
|
|
144
144
|
}
|
|
@@ -152,11 +152,11 @@ export declare namespace tasks_v1 {
|
|
|
152
152
|
*/
|
|
153
153
|
id?: string | null;
|
|
154
154
|
/**
|
|
155
|
-
* Type of the resource. This is always "tasks#taskList".
|
|
155
|
+
* Output only. Type of the resource. This is always "tasks#taskList".
|
|
156
156
|
*/
|
|
157
157
|
kind?: string | null;
|
|
158
158
|
/**
|
|
159
|
-
* URL pointing to this task list. Used to retrieve, update, or delete this task list.
|
|
159
|
+
* Output only. URL pointing to this task list. Used to retrieve, update, or delete this task list.
|
|
160
160
|
*/
|
|
161
161
|
selfLink?: string | null;
|
|
162
162
|
/**
|
|
@@ -164,7 +164,7 @@ export declare namespace tasks_v1 {
|
|
|
164
164
|
*/
|
|
165
165
|
title?: string | null;
|
|
166
166
|
/**
|
|
167
|
-
* Last modification time of the task list (as a RFC 3339 timestamp).
|
|
167
|
+
* Output only. Last modification time of the task list (as a RFC 3339 timestamp).
|
|
168
168
|
*/
|
|
169
169
|
updated?: string | null;
|
|
170
170
|
}
|
package/package.json
CHANGED
package/v1.ts
CHANGED
|
@@ -152,11 +152,11 @@ export namespace tasks_v1 {
|
|
|
152
152
|
*/
|
|
153
153
|
id?: string | null;
|
|
154
154
|
/**
|
|
155
|
-
* Type of the resource. This is always "tasks#task".
|
|
155
|
+
* Output only. Type of the resource. This is always "tasks#task".
|
|
156
156
|
*/
|
|
157
157
|
kind?: string | null;
|
|
158
158
|
/**
|
|
159
|
-
* Collection of links. This collection is read-only.
|
|
159
|
+
* Output only. Collection of links. This collection is read-only.
|
|
160
160
|
*/
|
|
161
161
|
links?: Array<{description?: string; link?: string; type?: string}> | null;
|
|
162
162
|
/**
|
|
@@ -164,15 +164,15 @@ export namespace tasks_v1 {
|
|
|
164
164
|
*/
|
|
165
165
|
notes?: string | null;
|
|
166
166
|
/**
|
|
167
|
-
* 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.
|
|
167
|
+
* 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.
|
|
168
168
|
*/
|
|
169
169
|
parent?: string | null;
|
|
170
170
|
/**
|
|
171
|
-
* 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).
|
|
171
|
+
* 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.
|
|
172
172
|
*/
|
|
173
173
|
position?: string | null;
|
|
174
174
|
/**
|
|
175
|
-
* URL pointing to this task. Used to retrieve, update, or delete this task.
|
|
175
|
+
* Output only. URL pointing to this task. Used to retrieve, update, or delete this task.
|
|
176
176
|
*/
|
|
177
177
|
selfLink?: string | null;
|
|
178
178
|
/**
|
|
@@ -184,11 +184,11 @@ export namespace tasks_v1 {
|
|
|
184
184
|
*/
|
|
185
185
|
title?: string | null;
|
|
186
186
|
/**
|
|
187
|
-
* Last modification time of the task (as a RFC 3339 timestamp).
|
|
187
|
+
* Output only. Last modification time of the task (as a RFC 3339 timestamp).
|
|
188
188
|
*/
|
|
189
189
|
updated?: string | null;
|
|
190
190
|
/**
|
|
191
|
-
* An absolute link to the task in the Google Tasks Web UI.
|
|
191
|
+
* Output only. An absolute link to the task in the Google Tasks Web UI.
|
|
192
192
|
*/
|
|
193
193
|
webViewLink?: string | null;
|
|
194
194
|
}
|
|
@@ -202,11 +202,11 @@ export namespace tasks_v1 {
|
|
|
202
202
|
*/
|
|
203
203
|
id?: string | null;
|
|
204
204
|
/**
|
|
205
|
-
* Type of the resource. This is always "tasks#taskList".
|
|
205
|
+
* Output only. Type of the resource. This is always "tasks#taskList".
|
|
206
206
|
*/
|
|
207
207
|
kind?: string | null;
|
|
208
208
|
/**
|
|
209
|
-
* URL pointing to this task list. Used to retrieve, update, or delete this task list.
|
|
209
|
+
* Output only. URL pointing to this task list. Used to retrieve, update, or delete this task list.
|
|
210
210
|
*/
|
|
211
211
|
selfLink?: string | null;
|
|
212
212
|
/**
|
|
@@ -214,7 +214,7 @@ export namespace tasks_v1 {
|
|
|
214
214
|
*/
|
|
215
215
|
title?: string | null;
|
|
216
216
|
/**
|
|
217
|
-
* Last modification time of the task list (as a RFC 3339 timestamp).
|
|
217
|
+
* Output only. Last modification time of the task list (as a RFC 3339 timestamp).
|
|
218
218
|
*/
|
|
219
219
|
updated?: string | null;
|
|
220
220
|
}
|