@maxim_mazurok/gapi.client.tasks-v1 0.0.20250408 → 0.0.20250412

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.
Files changed (3) hide show
  1. package/index.d.ts +2 -2
  2. package/package.json +1 -1
  3. package/readme.md +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: 20250408
12
+ // Revision: 20250412
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -528,7 +528,7 @@ declare namespace gapi.client {
528
528
  },
529
529
  body: Task,
530
530
  ): Request<Task>;
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. */
531
+ /** Returns all tasks in the specified task list. Doesn't return assigned tasks by 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?: {
533
533
  /** V1 error format. */
534
534
  '$.xgafv'?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.tasks-v1",
3
- "version": "0.0.20250408",
3
+ "version": "0.0.20250412",
4
4
  "description": "TypeScript typings for Google Tasks API v1",
5
5
  "repository": {
6
6
  "type": "git",
package/readme.md CHANGED
@@ -123,7 +123,7 @@ Creates a new task on the specified task list. Tasks assigned from Docs or Chat
123
123
  await gapi.client.tasks.tasks.insert({tasklist: 'tasklist'});
124
124
 
125
125
  /*
126
- 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.
126
+ Returns all tasks in the specified task list. Doesn't return assigned tasks by 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.
127
127
  */
128
128
  await gapi.client.tasks.tasks.list({tasklist: 'tasklist'});
129
129