@googleapis/tasks 6.0.0 → 7.0.1

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,29 @@
1
1
  # Changelog
2
2
 
3
+ ## [7.0.1](https://github.com/googleapis/google-api-nodejs-client/compare/tasks-v7.0.0...tasks-v7.0.1) (2025-02-04)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **tasks:** update the API ([749feb4](https://github.com/googleapis/google-api-nodejs-client/commit/749feb49e9626a4bf5def467d9e1e49ed403fc99))
9
+
10
+ ## [7.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/tasks-v6.0.0...tasks-v7.0.0) (2024-08-16)
11
+
12
+
13
+ ### ⚠ BREAKING CHANGES
14
+
15
+ * This release has breaking changes.
16
+
17
+ ### Features
18
+
19
+ * run the generator ([#3511](https://github.com/googleapis/google-api-nodejs-client/issues/3511)) ([957bc85](https://github.com/googleapis/google-api-nodejs-client/commit/957bc850439a639c5534957333b09598944952c3))
20
+ * **tasks:** update the API ([a493ffb](https://github.com/googleapis/google-api-nodejs-client/commit/a493ffbefaa6b7cd934ddc801e36dc9db4188dc5))
21
+
22
+
23
+ ### Bug Fixes
24
+
25
+ * **tasks:** update the API ([4203139](https://github.com/googleapis/google-api-nodejs-client/commit/4203139d06bd3b8487d1d0e2d29b92ba7d9a6975))
26
+
3
27
  ## [6.0.0](https://github.com/googleapis/google-api-nodejs-client/compare/tasks-v5.0.0...tasks-v6.0.0) (2024-08-16)
4
28
 
5
29
 
package/build/v1.d.ts CHANGED
@@ -603,11 +603,11 @@ export declare namespace tasks_v1 {
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. Assigned tasks can not be set as parent task (have subtasks) or be moved under a parent task (become subtasks). Optional.
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.
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. Optional.
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.
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": "6.0.0",
3
+ "version": "7.0.1",
4
4
  "description": "tasks",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
package/v1.ts CHANGED
@@ -1679,11 +1679,11 @@ export namespace tasks_v1 {
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. Assigned tasks can not be set as parent task (have subtasks) or be moved under a parent task (become subtasks). Optional.
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.
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. Optional.
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.
1687
1687
  */
1688
1688
  previous?: string;
1689
1689
  /**