dart-tools 0.3.9 → 0.3.10

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/dist/index.d.ts CHANGED
@@ -18,6 +18,7 @@ export type { PaginatedConciseTaskList } from "./models/PaginatedConciseTaskList
18
18
  export { Priority } from "./models/Priority";
19
19
  export type { Task } from "./models/Task";
20
20
  export type { TaskCreate } from "./models/TaskCreate";
21
+ export type { TaskRelationships } from "./models/TaskRelationships";
21
22
  export type { TaskUpdate } from "./models/TaskUpdate";
22
23
  export type { User } from "./models/User";
23
24
  export type { UserSpaceConfiguration } from "./models/UserSpaceConfiguration";
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../dart/generated/index.ts"],"names":[],"mappings":";;;AAAA,+DAA+D;AAC/D,0BAA0B;AAC1B,oBAAoB;AACpB,oBAAoB;AACpB,4CAA2C;AAAlC,oGAAA,QAAQ,OAAA;AACjB,8DAA0E;AAAjE,sHAAA,iBAAiB,OAAA;AAAE,gHAAA,WAAW,OAAA;AACvC,0CAAyC;AAAhC,kGAAA,OAAO,OAAA;AAgBhB,8CAA6C;AAApC,oGAAA,QAAQ,OAAA;AAmBjB,4DAA2D;AAAlD,gHAAA,cAAc,OAAA;AACvB,0DAAyD;AAAhD,8GAAA,aAAa,OAAA;AACtB,gEAA+D;AAAtD,oHAAA,gBAAgB,OAAA;AACzB,oDAAmD;AAA1C,wGAAA,UAAU,OAAA;AACnB,0DAAyD;AAAhD,8GAAA,aAAa,OAAA;AACtB,sDAAqD;AAA5C,0GAAA,WAAW,OAAA;AACpB,sDAAqD;AAA5C,0GAAA,WAAW,OAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../dart/generated/index.ts"],"names":[],"mappings":";;;AAAA,+DAA+D;AAC/D,0BAA0B;AAC1B,oBAAoB;AACpB,oBAAoB;AACpB,4CAA2C;AAAlC,oGAAA,QAAQ,OAAA;AACjB,8DAA0E;AAAjE,sHAAA,iBAAiB,OAAA;AAAE,gHAAA,WAAW,OAAA;AACvC,0CAAyC;AAAhC,kGAAA,OAAO,OAAA;AAgBhB,8CAA6C;AAApC,oGAAA,QAAQ,OAAA;AAoBjB,4DAA2D;AAAlD,gHAAA,cAAc,OAAA;AACvB,0DAAyD;AAAhD,8GAAA,aAAa,OAAA;AACtB,gEAA+D;AAAtD,oHAAA,gBAAgB,OAAA;AACzB,oDAAmD;AAA1C,wGAAA,UAAU,OAAA;AACnB,0DAAyD;AAAhD,8GAAA,aAAa,OAAA;AACtB,sDAAqD;AAA5C,0GAAA,WAAW,OAAA;AACpB,sDAAqD;AAA5C,0GAAA,WAAW,OAAA"}
@@ -1,5 +1,6 @@
1
1
  import type { CustomProperties } from "./CustomProperties";
2
2
  import type { Priority } from "./Priority";
3
+ import type { TaskRelationships } from "./TaskRelationships";
3
4
  export type Task = {
4
5
  /**
5
6
  * The universal, unique ID of the task.
@@ -69,4 +70,8 @@ export type Task = {
69
70
  * The custom properties, which is a dict of custom properties that are associated with the task.
70
71
  */
71
72
  customProperties?: CustomProperties | null;
73
+ /**
74
+ * The relationships associated with the task.
75
+ */
76
+ taskRelationships?: TaskRelationships | null;
72
77
  };
@@ -1,5 +1,6 @@
1
1
  import type { CustomProperties } from "./CustomProperties";
2
2
  import type { Priority } from "./Priority";
3
+ import type { TaskRelationships } from "./TaskRelationships";
3
4
  export type TaskCreate = {
4
5
  /**
5
6
  * The title, which is a short description of what needs to be done.
@@ -57,4 +58,8 @@ export type TaskCreate = {
57
58
  * The custom properties, which is a dict of custom properties that are associated with the task.
58
59
  */
59
60
  customProperties?: CustomProperties | null;
61
+ /**
62
+ * The relationships associated with the task.
63
+ */
64
+ taskRelationships?: TaskRelationships | null;
60
65
  };
@@ -0,0 +1,22 @@
1
+ export type TaskRelationships = {
2
+ /**
3
+ * List of task IDs that are subtasks of this task
4
+ */
5
+ subtaskIds?: Array<string>;
6
+ /**
7
+ * List of task IDs that block this task
8
+ */
9
+ blockerIds?: Array<string>;
10
+ /**
11
+ * List of task IDs that this task blocks
12
+ */
13
+ blockingIds?: Array<string>;
14
+ /**
15
+ * List of task IDs that are duplicates of this task
16
+ */
17
+ duplicateIds?: Array<string>;
18
+ /**
19
+ * List of task IDs that are related to this task
20
+ */
21
+ relatedIds?: Array<string>;
22
+ };
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=TaskRelationships.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TaskRelationships.js","sourceRoot":"","sources":["../../dart/generated/models/TaskRelationships.ts"],"names":[],"mappings":""}
@@ -1,5 +1,6 @@
1
1
  import type { CustomProperties } from "./CustomProperties";
2
2
  import type { Priority } from "./Priority";
3
+ import type { TaskRelationships } from "./TaskRelationships";
3
4
  export type TaskUpdate = {
4
5
  /**
5
6
  * The universal, unique ID of the task.
@@ -61,4 +62,8 @@ export type TaskUpdate = {
61
62
  * The custom properties, which is a dict of custom properties that are associated with the task.
62
63
  */
63
64
  customProperties?: CustomProperties | null;
65
+ /**
66
+ * The relationships associated with the task.
67
+ */
68
+ taskRelationships?: TaskRelationships | null;
64
69
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dart-tools",
3
- "version": "0.3.9",
3
+ "version": "0.3.10",
4
4
  "description": "The Dart TypeScript/JavaScript client",
5
5
  "keywords": [
6
6
  "dart",