@maxim_mazurok/gapi.client.tasks-v1 0.0.20250121 → 0.0.20250128
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 +8 -8
- package/package.json +1 -1
- package/readme.md +2 -2
package/index.d.ts
CHANGED
|
@@ -9,14 +9,14 @@
|
|
|
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: 20250128
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
16
16
|
declare namespace gapi.client {
|
|
17
17
|
/** Load Google Tasks API v1 */
|
|
18
18
|
function load(
|
|
19
|
-
urlOrObject: 'https://tasks.googleapis.com/$discovery/rest?version=v1'
|
|
19
|
+
urlOrObject: 'https://tasks.googleapis.com/$discovery/rest?version=v1',
|
|
20
20
|
): Promise<void>;
|
|
21
21
|
/** @deprecated Please load APIs with discovery documents. */
|
|
22
22
|
function load(name: 'tasks', version: 'v1'): Promise<void>;
|
|
@@ -228,7 +228,7 @@ declare namespace gapi.client {
|
|
|
228
228
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
229
229
|
uploadType?: string;
|
|
230
230
|
},
|
|
231
|
-
body: TaskList
|
|
231
|
+
body: TaskList,
|
|
232
232
|
): Request<TaskList>;
|
|
233
233
|
/** Returns all the authenticated user's task lists. A user can have up to 2000 lists at a time. */
|
|
234
234
|
list(request?: {
|
|
@@ -315,7 +315,7 @@ declare namespace gapi.client {
|
|
|
315
315
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
316
316
|
uploadType?: string;
|
|
317
317
|
},
|
|
318
|
-
body: TaskList
|
|
318
|
+
body: TaskList,
|
|
319
319
|
): Request<TaskList>;
|
|
320
320
|
/** Updates the authenticated user's specified task list. */
|
|
321
321
|
update(request: {
|
|
@@ -373,7 +373,7 @@ declare namespace gapi.client {
|
|
|
373
373
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
374
374
|
uploadType?: string;
|
|
375
375
|
},
|
|
376
|
-
body: TaskList
|
|
376
|
+
body: TaskList,
|
|
377
377
|
): Request<TaskList>;
|
|
378
378
|
}
|
|
379
379
|
interface TasksResource {
|
|
@@ -526,7 +526,7 @@ declare namespace gapi.client {
|
|
|
526
526
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
527
527
|
uploadType?: string;
|
|
528
528
|
},
|
|
529
|
-
body: Task
|
|
529
|
+
body: Task,
|
|
530
530
|
): Request<Task>;
|
|
531
531
|
/** Returns all tasks in the specified task list. Does not return assigned tasks be default (from Docs, Chat Spaces). A user can have up to 20,000 non-hidden tasks per list and up to 100,000 tasks in total at a time. */
|
|
532
532
|
list(request?: {
|
|
@@ -672,7 +672,7 @@ declare namespace gapi.client {
|
|
|
672
672
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
673
673
|
uploadType?: string;
|
|
674
674
|
},
|
|
675
|
-
body: Task
|
|
675
|
+
body: Task,
|
|
676
676
|
): Request<Task>;
|
|
677
677
|
/** Updates the specified task. */
|
|
678
678
|
update(request: {
|
|
@@ -734,7 +734,7 @@ declare namespace gapi.client {
|
|
|
734
734
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
735
735
|
uploadType?: string;
|
|
736
736
|
},
|
|
737
|
-
body: Task
|
|
737
|
+
body: Task,
|
|
738
738
|
): Request<Task>;
|
|
739
739
|
}
|
|
740
740
|
|
package/package.json
CHANGED
package/readme.md
CHANGED