@maxim_mazurok/gapi.client.tasks-v1 0.0.20240421 → 0.0.20240423
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 +3 -3
- package/package.json +1 -1
- package/readme.md +2 -2
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: 20240423
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -440,7 +440,7 @@ declare namespace gapi.client {
|
|
|
440
440
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
441
441
|
uploadType?: string;
|
|
442
442
|
}): Request<Task>;
|
|
443
|
-
/** Creates a new task on the specified task list. A user can have up to 20,000
|
|
443
|
+
/** Creates a new task on the specified task list. A user can have up to 20,000 non-hidden tasks per list and up to 100,000 tasks in total at a time. */
|
|
444
444
|
insert(request: {
|
|
445
445
|
/** V1 error format. */
|
|
446
446
|
'$.xgafv'?: string;
|
|
@@ -506,7 +506,7 @@ declare namespace gapi.client {
|
|
|
506
506
|
},
|
|
507
507
|
body: Task
|
|
508
508
|
): Request<Task>;
|
|
509
|
-
/** Returns all tasks in the specified task list. A user can have up to 20,000
|
|
509
|
+
/** Returns all tasks in the specified task list. A user can have up to 20,000 non-hidden tasks per list and up to 100,000 tasks in total at a time. */
|
|
510
510
|
list(request?: {
|
|
511
511
|
/** V1 error format. */
|
|
512
512
|
'$.xgafv'?: string;
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -118,12 +118,12 @@ Returns the specified task.
|
|
|
118
118
|
await gapi.client.tasks.tasks.get({task: 'task', tasklist: 'tasklist'});
|
|
119
119
|
|
|
120
120
|
/*
|
|
121
|
-
Creates a new task on the specified task list. A user can have up to 20,000
|
|
121
|
+
Creates a new task on the specified task list. A user can have up to 20,000 non-hidden tasks per list and up to 100,000 tasks in total at a time.
|
|
122
122
|
*/
|
|
123
123
|
await gapi.client.tasks.tasks.insert({tasklist: 'tasklist'});
|
|
124
124
|
|
|
125
125
|
/*
|
|
126
|
-
Returns all tasks in the specified task list. A user can have up to 20,000
|
|
126
|
+
Returns all tasks in the specified task list. A user can have up to 20,000 non-hidden tasks per list and up to 100,000 tasks in total at a time.
|
|
127
127
|
*/
|
|
128
128
|
await gapi.client.tasks.tasks.list({tasklist: 'tasklist'});
|
|
129
129
|
|