@googleapis/tasks 7.0.1 → 7.0.4

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 CHANGED
@@ -1,5 +1,27 @@
1
1
  # Changelog
2
2
 
3
+ ## [7.0.4](https://github.com/googleapis/google-api-nodejs-client/compare/tasks-v7.0.3...tasks-v7.0.4) (2025-05-05)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **tasks:** update the API ([a68eb91](https://github.com/googleapis/google-api-nodejs-client/commit/a68eb91724df65681d2b65d8f73844b98264cd6a))
9
+
10
+ ## [7.0.3](https://github.com/googleapis/google-api-nodejs-client/compare/tasks-v7.0.2...tasks-v7.0.3) (2025-03-18)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * **tasks:** update the API ([fa7e976](https://github.com/googleapis/google-api-nodejs-client/commit/fa7e976a82e99666719f1b3596b8953a93dacbf2))
16
+ * **tasks:** update the API ([749feb4](https://github.com/googleapis/google-api-nodejs-client/commit/749feb49e9626a4bf5def467d9e1e49ed403fc99))
17
+
18
+ ## [7.0.2](https://github.com/googleapis/google-api-nodejs-client/compare/tasks-v7.0.1...tasks-v7.0.2) (2025-03-18)
19
+
20
+
21
+ ### Bug Fixes
22
+
23
+ * **tasks:** update the API ([fa7e976](https://github.com/googleapis/google-api-nodejs-client/commit/fa7e976a82e99666719f1b3596b8953a93dacbf2))
24
+
3
25
  ## [7.0.1](https://github.com/googleapis/google-api-nodejs-client/compare/tasks-v7.0.0...tasks-v7.0.1) (2025-02-04)
4
26
 
5
27
 
package/build/v1.d.ts CHANGED
@@ -359,7 +359,7 @@ export declare namespace tasks_v1 {
359
359
  }
360
360
  export interface Params$Resource$Tasklists$List extends StandardParameters {
361
361
  /**
362
- * Maximum number of task lists returned on one page. Optional. The default is 20 (max allowed: 100).
362
+ * Maximum number of task lists returned on one page. Optional. The default is 1000 (max allowed: 1000).
363
363
  */
364
364
  maxResults?: number;
365
365
  /**
@@ -447,7 +447,7 @@ export declare namespace tasks_v1 {
447
447
  insert(params: Params$Resource$Tasks$Insert, callback: BodyResponseCallback<Schema$Task>): void;
448
448
  insert(callback: BodyResponseCallback<Schema$Task>): void;
449
449
  /**
450
- * 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.
450
+ * 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.
451
451
  *
452
452
  * @param params - Parameters for request
453
453
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
@@ -599,15 +599,15 @@ export declare namespace tasks_v1 {
599
599
  }
600
600
  export interface Params$Resource$Tasks$Move extends StandardParameters {
601
601
  /**
602
- * Optional. Destination task list identifier. If set, the task is moved from tasklist to the destinationTasklist list. Otherwise the task is moved within its current list. Recurrent tasks cannot currently be moved between lists. Optional.
602
+ * Optional. Destination task list identifier. If set, the task is moved from tasklist to the destinationTasklist list. Otherwise the task is moved within its current list. Recurrent tasks cannot currently be moved between lists.
603
603
  */
604
604
  destinationTasklist?: string;
605
605
  /**
606
- * New parent task identifier. If the task is moved to the top level, this parameter is omitted. The task set as parent must exist in the task list and can not be hidden. Assigned tasks can not be set as parent task (have subtasks) or be moved under a parent task (become subtasks). Optional.
606
+ * Optional. New parent task identifier. If the task is moved to the top level, this parameter is omitted. The task set as parent must exist in the task list and can not be hidden. Exceptions: 1. Assigned tasks can not be set as parent task (have subtasks) or be moved under a parent task (become subtasks). 2. Tasks that are both completed and hidden cannot be nested, so the parent field must be empty.
607
607
  */
608
608
  parent?: string;
609
609
  /**
610
- * New previous sibling task identifier. If the task is moved to the first position among its siblings, this parameter is omitted. The task set as previous must exist in the task list and can not be hidden. Optional.
610
+ * Optional. New previous sibling task identifier. If the task is moved to the first position among its siblings, this parameter is omitted. The task set as previous must exist in the task list and can not be hidden. Exceptions: 1. Tasks that are both completed and hidden can only be moved to position 0, so the previous field must be empty.
611
611
  */
612
612
  previous?: string;
613
613
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@googleapis/tasks",
3
- "version": "7.0.1",
3
+ "version": "7.0.4",
4
4
  "description": "tasks",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
package/v1.ts CHANGED
@@ -849,7 +849,7 @@ export namespace tasks_v1 {
849
849
  }
850
850
  export interface Params$Resource$Tasklists$List extends StandardParameters {
851
851
  /**
852
- * Maximum number of task lists returned on one page. Optional. The default is 20 (max allowed: 100).
852
+ * Maximum number of task lists returned on one page. Optional. The default is 1000 (max allowed: 1000).
853
853
  */
854
854
  maxResults?: number;
855
855
  /**
@@ -1231,7 +1231,7 @@ export namespace tasks_v1 {
1231
1231
  }
1232
1232
 
1233
1233
  /**
1234
- * 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.
1234
+ * 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.
1235
1235
  *
1236
1236
  * @param params - Parameters for request
1237
1237
  * @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
@@ -1675,15 +1675,15 @@ export namespace tasks_v1 {
1675
1675
  }
1676
1676
  export interface Params$Resource$Tasks$Move extends StandardParameters {
1677
1677
  /**
1678
- * Optional. Destination task list identifier. If set, the task is moved from tasklist to the destinationTasklist list. Otherwise the task is moved within its current list. Recurrent tasks cannot currently be moved between lists. Optional.
1678
+ * Optional. Destination task list identifier. If set, the task is moved from tasklist to the destinationTasklist list. Otherwise the task is moved within its current list. Recurrent tasks cannot currently be moved between lists.
1679
1679
  */
1680
1680
  destinationTasklist?: string;
1681
1681
  /**
1682
- * New parent task identifier. If the task is moved to the top level, this parameter is omitted. The task set as parent must exist in the task list and can not be hidden. Assigned tasks can not be set as parent task (have subtasks) or be moved under a parent task (become subtasks). Optional.
1682
+ * Optional. New parent task identifier. If the task is moved to the top level, this parameter is omitted. The task set as parent must exist in the task list and can not be hidden. Exceptions: 1. Assigned tasks can not be set as parent task (have subtasks) or be moved under a parent task (become subtasks). 2. Tasks that are both completed and hidden cannot be nested, so the parent field must be empty.
1683
1683
  */
1684
1684
  parent?: string;
1685
1685
  /**
1686
- * New previous sibling task identifier. If the task is moved to the first position among its siblings, this parameter is omitted. The task set as previous must exist in the task list and can not be hidden. Optional.
1686
+ * Optional. New previous sibling task identifier. If the task is moved to the first position among its siblings, this parameter is omitted. The task set as previous must exist in the task list and can not be hidden. Exceptions: 1. Tasks that are both completed and hidden can only be moved to position 0, so the previous field must be empty.
1687
1687
  */
1688
1688
  previous?: string;
1689
1689
  /**