dart-tools 0.3.11 → 0.4.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.
Files changed (42) hide show
  1. package/dist/index.d.ts +5 -0
  2. package/dist/index.js +5 -1
  3. package/dist/index.js.map +1 -1
  4. package/dist/index.mjs +51 -8
  5. package/dist/index.umd.js +52 -7
  6. package/dist/models/ConciseTask.d.ts +1 -1
  7. package/dist/models/Dartboard.d.ts +0 -5
  8. package/dist/models/Folder.d.ts +0 -5
  9. package/dist/models/Skill.d.ts +14 -0
  10. package/dist/models/Skill.js +3 -0
  11. package/dist/models/Skill.js.map +1 -0
  12. package/dist/models/Task.d.ts +1 -1
  13. package/dist/models/TaskCreate.d.ts +1 -1
  14. package/dist/models/TaskRelationships.d.ts +5 -5
  15. package/dist/models/TaskUpdate.d.ts +1 -1
  16. package/dist/models/User.d.ts +1 -1
  17. package/dist/models/UserSpaceConfiguration.d.ts +1 -0
  18. package/dist/models/View.d.ts +0 -5
  19. package/dist/models/WrappedHelpCenterArticles.d.ts +3 -0
  20. package/dist/models/WrappedHelpCenterArticles.js +3 -0
  21. package/dist/models/WrappedHelpCenterArticles.js.map +1 -0
  22. package/dist/models/WrappedSkill.d.ts +4 -0
  23. package/dist/models/WrappedSkill.js +3 -0
  24. package/dist/models/WrappedSkill.js.map +1 -0
  25. package/dist/services/CommentService.d.ts +2 -2
  26. package/dist/services/CommentService.js +1 -1
  27. package/dist/services/DartboardService.d.ts +1 -1
  28. package/dist/services/DartboardService.js +1 -1
  29. package/dist/services/DocService.d.ts +1 -1
  30. package/dist/services/DocService.js +1 -1
  31. package/dist/services/HelpCenterArticleService.d.ts +12 -0
  32. package/dist/services/HelpCenterArticleService.js +25 -0
  33. package/dist/services/HelpCenterArticleService.js.map +1 -0
  34. package/dist/services/SkillService.d.ts +12 -0
  35. package/dist/services/SkillService.js +28 -0
  36. package/dist/services/SkillService.js.map +1 -0
  37. package/dist/services/TaskService.d.ts +5 -3
  38. package/dist/services/TaskService.js +5 -3
  39. package/dist/services/TaskService.js.map +1 -1
  40. package/dist/services/ViewService.d.ts +1 -1
  41. package/dist/services/ViewService.js +1 -1
  42. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -17,6 +17,7 @@ export type { PaginatedCommentList } from "./models/PaginatedCommentList";
17
17
  export type { PaginatedConciseDocList } from "./models/PaginatedConciseDocList";
18
18
  export type { PaginatedConciseTaskList } from "./models/PaginatedConciseTaskList";
19
19
  export { Priority } from "./models/Priority";
20
+ export type { Skill } from "./models/Skill";
20
21
  export type { Task } from "./models/Task";
21
22
  export type { TaskCreate } from "./models/TaskCreate";
22
23
  export type { TaskRelationships } from "./models/TaskRelationships";
@@ -33,6 +34,8 @@ export type { WrappedDoc } from "./models/WrappedDoc";
33
34
  export type { WrappedDocCreate } from "./models/WrappedDocCreate";
34
35
  export type { WrappedDocUpdate } from "./models/WrappedDocUpdate";
35
36
  export type { WrappedFolder } from "./models/WrappedFolder";
37
+ export type { WrappedHelpCenterArticles } from "./models/WrappedHelpCenterArticles";
38
+ export type { WrappedSkill } from "./models/WrappedSkill";
36
39
  export type { WrappedTask } from "./models/WrappedTask";
37
40
  export type { WrappedTaskCreate } from "./models/WrappedTaskCreate";
38
41
  export type { WrappedTaskUpdate } from "./models/WrappedTaskUpdate";
@@ -42,5 +45,7 @@ export { ConfigService } from "./services/ConfigService";
42
45
  export { DartboardService } from "./services/DartboardService";
43
46
  export { DocService } from "./services/DocService";
44
47
  export { FolderService } from "./services/FolderService";
48
+ export { HelpCenterArticleService } from "./services/HelpCenterArticleService";
49
+ export { SkillService } from "./services/SkillService";
45
50
  export { TaskService } from "./services/TaskService";
46
51
  export { ViewService } from "./services/ViewService";
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ViewService = exports.TaskService = exports.FolderService = exports.DocService = exports.DartboardService = exports.ConfigService = exports.CommentService = exports.Priority = exports.OpenAPI = exports.CancelError = exports.CancelablePromise = exports.ApiError = void 0;
3
+ exports.ViewService = exports.TaskService = exports.SkillService = exports.HelpCenterArticleService = exports.FolderService = exports.DocService = exports.DartboardService = exports.ConfigService = exports.CommentService = exports.Priority = exports.OpenAPI = exports.CancelError = exports.CancelablePromise = exports.ApiError = void 0;
4
4
  /* generated using openapi-typescript-codegen -- do not edit */
5
5
  /* istanbul ignore file */
6
6
  /* tslint:disable */
@@ -24,6 +24,10 @@ var DocService_1 = require("./services/DocService");
24
24
  Object.defineProperty(exports, "DocService", { enumerable: true, get: function () { return DocService_1.DocService; } });
25
25
  var FolderService_1 = require("./services/FolderService");
26
26
  Object.defineProperty(exports, "FolderService", { enumerable: true, get: function () { return FolderService_1.FolderService; } });
27
+ var HelpCenterArticleService_1 = require("./services/HelpCenterArticleService");
28
+ Object.defineProperty(exports, "HelpCenterArticleService", { enumerable: true, get: function () { return HelpCenterArticleService_1.HelpCenterArticleService; } });
29
+ var SkillService_1 = require("./services/SkillService");
30
+ Object.defineProperty(exports, "SkillService", { enumerable: true, get: function () { return SkillService_1.SkillService; } });
27
31
  var TaskService_1 = require("./services/TaskService");
28
32
  Object.defineProperty(exports, "TaskService", { enumerable: true, get: function () { return TaskService_1.TaskService; } });
29
33
  var ViewService_1 = require("./services/ViewService");
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;AAiBhB,8CAA6C;AAApC,oGAAA,QAAQ,OAAA;AAsBjB,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;AAiBhB,8CAA6C;AAApC,oGAAA,QAAQ,OAAA;AAyBjB,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,gFAA+E;AAAtE,oIAAA,wBAAwB,OAAA;AACjC,wDAAuD;AAA9C,4GAAA,YAAY,OAAA;AACrB,sDAAqD;AAA5C,0GAAA,WAAW,OAAA;AACpB,sDAAqD;AAA5C,0GAAA,WAAW,OAAA"}
package/dist/index.mjs CHANGED
@@ -468,7 +468,7 @@ class CommentService {
468
468
  });
469
469
  }
470
470
  /**
471
- * List all comments that the user has access to. This will return a list of comments, including the text, associated task ID, and others. Comments are ordered by thread and then by when they were written.
471
+ * List comments for a task with filtering options. Filter by author, text content, or date range. Sort by date or hierarchical thread order. Task ID required. Supports pagination.
472
472
  * @returns PaginatedCommentList
473
473
  * @throws ApiError
474
474
  */
@@ -512,7 +512,7 @@ class ConfigService {
512
512
  class DartboardService {
513
513
  /**
514
514
  * Retrieve an existing dartboard
515
- * Retrieve an existing dartboard. This will return the dartboard's information, including the title, description, all tasks within it, and others.
515
+ * Retrieve an existing dartboard. This will return the dartboard's information, including the title and description.
516
516
  * @param id
517
517
  * @returns WrappedDartboard Success, including the retrieved dartboard
518
518
  * @throws ApiError
@@ -615,7 +615,7 @@ class DocService {
615
615
  });
616
616
  }
617
617
  /**
618
- * List all docs that the user has access to. This will return a list of docs, including the title, folder, text and others.
618
+ * List docs with filtering and search capabilities. Filter by folder, title, text content, or use full-text search. Sort by creation/update date or title. Supports pagination.
619
619
  * @returns PaginatedConciseDocList
620
620
  * @throws ApiError
621
621
  */
@@ -662,10 +662,51 @@ class FolderService {
662
662
  }
663
663
  }
664
664
 
665
+ class HelpCenterArticleService {
666
+ /**
667
+ * List help center articles by query
668
+ * Search for up to two help center articles by their semantic similarity to a short (1-5 word) query.
669
+ * @param query The search query (1-5 words) to find relevant help articles
670
+ * @returns WrappedHelpCenterArticles
671
+ * @throws ApiError
672
+ */
673
+ static listHelpCenterArticles(query) {
674
+ return request(OpenAPI, {
675
+ method: "GET",
676
+ url: "/help-center-articles/list",
677
+ query: {
678
+ query: query,
679
+ },
680
+ });
681
+ }
682
+ }
683
+
684
+ class SkillService {
685
+ /**
686
+ * Retrieve a skill by title
687
+ * Retrieve a skill by its title. Skills are user-defined instructions or templates for performing specific task types in the workspace. Returns the skill's title and instructions if found.
688
+ * @param title The title of the skill to retrieve
689
+ * @returns WrappedSkill Success, including the retrieved skill
690
+ * @throws ApiError
691
+ */
692
+ static retrieveSkillByTitle(title) {
693
+ return request(OpenAPI, {
694
+ method: "GET",
695
+ url: "/skills/by-title",
696
+ query: {
697
+ title: title,
698
+ },
699
+ errors: {
700
+ 404: `Skill not found`,
701
+ },
702
+ });
703
+ }
704
+ }
705
+
665
706
  class TaskService {
666
707
  /**
667
708
  * Create a new task
668
- * Record a new task that the user intends to do. This will save the task in Dart for later access, search, etc. By default the created task will be assigned to the user, with a status of to-do, with no parent, in the Active dartboard. More information can be included in the description.
709
+ * Record a new task that the user intends to do. By default the task will be assigned to the current user, have an unstarted status, have no parent, and be in the default dartboard. More information can be included in the description.
669
710
  * @param requestBody
670
711
  * @returns WrappedTask
671
712
  * @throws ApiError
@@ -742,11 +783,11 @@ class TaskService {
742
783
  });
743
784
  }
744
785
  /**
745
- * List all tasks that the user has access to. This will return a list of tasks, including the title, dartboard, status, description and others.
786
+ * List tasks with powerful filtering options. Filter by dartboard, status, assignee, tags, priority, dates, completion state, view, and more. Supports pagination with limit/offset.
746
787
  * @returns PaginatedConciseTaskList
747
788
  * @throws ApiError
748
789
  */
749
- static listTasks({ assignee, assigneeId, dartboard, dartboardId, description, dueAtAfter, dueAtBefore, ids, inTrash, isCompleted, limit, offset, parentId, priority, size, startAtAfter, startAtBefore, status, statusId, tag, tagId, title, type, typeId, }) {
790
+ static listTasks({ assignee, assigneeId, dartboard, dartboardId, description, dueAtAfter, dueAtBefore, ids, inTrash, isCompleted, limit, offset, parentId, priority, size, startAtAfter, startAtBefore, status, statusId, tag, tagId, title, type, typeId, view, viewId, }) {
750
791
  return request(OpenAPI, {
751
792
  method: "GET",
752
793
  url: "/tasks/list",
@@ -775,6 +816,8 @@ class TaskService {
775
816
  title: title,
776
817
  type: type,
777
818
  type_id: typeId,
819
+ view: view,
820
+ view_id: viewId,
778
821
  },
779
822
  });
780
823
  }
@@ -783,7 +826,7 @@ class TaskService {
783
826
  class ViewService {
784
827
  /**
785
828
  * Retrieve an existing view
786
- * Retrieve an existing view. This will return the view's information, including the title, description, all tasks within it, and others.
829
+ * Retrieve an existing view. This will return the view's information, including the title, description, and others.
787
830
  * @param id
788
831
  * @returns WrappedView Success, including the retrieved view
789
832
  * @throws ApiError
@@ -803,4 +846,4 @@ class ViewService {
803
846
  }
804
847
  }
805
848
 
806
- export { ApiError, CancelError, CancelablePromise, CommentService, ConfigService, DartboardService, DocService, FolderService, OpenAPI, Priority, TaskService, ViewService };
849
+ export { ApiError, CancelError, CancelablePromise, CommentService, ConfigService, DartboardService, DocService, FolderService, HelpCenterArticleService, OpenAPI, Priority, SkillService, TaskService, ViewService };
package/dist/index.umd.js CHANGED
@@ -471,7 +471,7 @@
471
471
  });
472
472
  }
473
473
  /**
474
- * List all comments that the user has access to. This will return a list of comments, including the text, associated task ID, and others. Comments are ordered by thread and then by when they were written.
474
+ * List comments for a task with filtering options. Filter by author, text content, or date range. Sort by date or hierarchical thread order. Task ID required. Supports pagination.
475
475
  * @returns PaginatedCommentList
476
476
  * @throws ApiError
477
477
  */
@@ -515,7 +515,7 @@
515
515
  class DartboardService {
516
516
  /**
517
517
  * Retrieve an existing dartboard
518
- * Retrieve an existing dartboard. This will return the dartboard's information, including the title, description, all tasks within it, and others.
518
+ * Retrieve an existing dartboard. This will return the dartboard's information, including the title and description.
519
519
  * @param id
520
520
  * @returns WrappedDartboard Success, including the retrieved dartboard
521
521
  * @throws ApiError
@@ -618,7 +618,7 @@
618
618
  });
619
619
  }
620
620
  /**
621
- * List all docs that the user has access to. This will return a list of docs, including the title, folder, text and others.
621
+ * List docs with filtering and search capabilities. Filter by folder, title, text content, or use full-text search. Sort by creation/update date or title. Supports pagination.
622
622
  * @returns PaginatedConciseDocList
623
623
  * @throws ApiError
624
624
  */
@@ -665,10 +665,51 @@
665
665
  }
666
666
  }
667
667
 
668
+ class HelpCenterArticleService {
669
+ /**
670
+ * List help center articles by query
671
+ * Search for up to two help center articles by their semantic similarity to a short (1-5 word) query.
672
+ * @param query The search query (1-5 words) to find relevant help articles
673
+ * @returns WrappedHelpCenterArticles
674
+ * @throws ApiError
675
+ */
676
+ static listHelpCenterArticles(query) {
677
+ return request(OpenAPI, {
678
+ method: "GET",
679
+ url: "/help-center-articles/list",
680
+ query: {
681
+ query: query,
682
+ },
683
+ });
684
+ }
685
+ }
686
+
687
+ class SkillService {
688
+ /**
689
+ * Retrieve a skill by title
690
+ * Retrieve a skill by its title. Skills are user-defined instructions or templates for performing specific task types in the workspace. Returns the skill's title and instructions if found.
691
+ * @param title The title of the skill to retrieve
692
+ * @returns WrappedSkill Success, including the retrieved skill
693
+ * @throws ApiError
694
+ */
695
+ static retrieveSkillByTitle(title) {
696
+ return request(OpenAPI, {
697
+ method: "GET",
698
+ url: "/skills/by-title",
699
+ query: {
700
+ title: title,
701
+ },
702
+ errors: {
703
+ 404: `Skill not found`,
704
+ },
705
+ });
706
+ }
707
+ }
708
+
668
709
  class TaskService {
669
710
  /**
670
711
  * Create a new task
671
- * Record a new task that the user intends to do. This will save the task in Dart for later access, search, etc. By default the created task will be assigned to the user, with a status of to-do, with no parent, in the Active dartboard. More information can be included in the description.
712
+ * Record a new task that the user intends to do. By default the task will be assigned to the current user, have an unstarted status, have no parent, and be in the default dartboard. More information can be included in the description.
672
713
  * @param requestBody
673
714
  * @returns WrappedTask
674
715
  * @throws ApiError
@@ -745,11 +786,11 @@
745
786
  });
746
787
  }
747
788
  /**
748
- * List all tasks that the user has access to. This will return a list of tasks, including the title, dartboard, status, description and others.
789
+ * List tasks with powerful filtering options. Filter by dartboard, status, assignee, tags, priority, dates, completion state, view, and more. Supports pagination with limit/offset.
749
790
  * @returns PaginatedConciseTaskList
750
791
  * @throws ApiError
751
792
  */
752
- static listTasks({ assignee, assigneeId, dartboard, dartboardId, description, dueAtAfter, dueAtBefore, ids, inTrash, isCompleted, limit, offset, parentId, priority, size, startAtAfter, startAtBefore, status, statusId, tag, tagId, title, type, typeId, }) {
793
+ static listTasks({ assignee, assigneeId, dartboard, dartboardId, description, dueAtAfter, dueAtBefore, ids, inTrash, isCompleted, limit, offset, parentId, priority, size, startAtAfter, startAtBefore, status, statusId, tag, tagId, title, type, typeId, view, viewId, }) {
753
794
  return request(OpenAPI, {
754
795
  method: "GET",
755
796
  url: "/tasks/list",
@@ -778,6 +819,8 @@
778
819
  title: title,
779
820
  type: type,
780
821
  type_id: typeId,
822
+ view: view,
823
+ view_id: viewId,
781
824
  },
782
825
  });
783
826
  }
@@ -786,7 +829,7 @@
786
829
  class ViewService {
787
830
  /**
788
831
  * Retrieve an existing view
789
- * Retrieve an existing view. This will return the view's information, including the title, description, all tasks within it, and others.
832
+ * Retrieve an existing view. This will return the view's information, including the title, description, and others.
790
833
  * @param id
791
834
  * @returns WrappedView Success, including the retrieved view
792
835
  * @throws ApiError
@@ -814,7 +857,9 @@
814
857
  exports.DartboardService = DartboardService;
815
858
  exports.DocService = DocService;
816
859
  exports.FolderService = FolderService;
860
+ exports.HelpCenterArticleService = HelpCenterArticleService;
817
861
  exports.OpenAPI = OpenAPI;
862
+ exports.SkillService = SkillService;
818
863
  exports.TaskService = TaskService;
819
864
  exports.ViewService = ViewService;
820
865
 
@@ -17,7 +17,7 @@ export type ConciseTask = {
17
17
  */
18
18
  title: string;
19
19
  /**
20
- * The universal, unique ID of the parent task. This can be null.
20
+ * The universal, unique ID of the parent task. This can be null. These tasks have a parent-child relationship where the current task is the child and this task ID corresponds to the parent. Subtasks inherit context from their parent and are typically smaller units of work.
21
21
  */
22
22
  parentId: string | null;
23
23
  /**
@@ -1,4 +1,3 @@
1
- import type { Task } from "./Task";
2
1
  export type Dartboard = {
3
2
  /**
4
3
  * The universal, unique ID of the dartboard.
@@ -16,8 +15,4 @@ export type Dartboard = {
16
15
  * The description, which is a longer description of the dartboard.
17
16
  */
18
17
  description: string;
19
- /**
20
- * The list of all of the tasks in the dartboard.
21
- */
22
- tasks: Array<Task>;
23
18
  };
@@ -1,4 +1,3 @@
1
- import type { Doc } from "./Doc";
2
1
  export type Folder = {
3
2
  /**
4
3
  * The universal, unique ID of the folder.
@@ -16,8 +15,4 @@ export type Folder = {
16
15
  * The description, which is a longer description of the folder.
17
16
  */
18
17
  description: string;
19
- /**
20
- * The list of all of the docs in the folder.
21
- */
22
- docs: Array<Doc>;
23
18
  };
@@ -0,0 +1,14 @@
1
+ export type Skill = {
2
+ /**
3
+ * The universal, unique ID of the skill.
4
+ */
5
+ id: string;
6
+ /**
7
+ * The title of the skill, describing the task type.
8
+ */
9
+ title: string;
10
+ /**
11
+ * User-defined instructions for performing this skill in markdown format.
12
+ */
13
+ promptMarkdown: string;
14
+ };
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=Skill.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Skill.js","sourceRoot":"","sources":["../../dart/generated/models/Skill.ts"],"names":[],"mappings":""}
@@ -15,7 +15,7 @@ export type Task = {
15
15
  */
16
16
  title: string;
17
17
  /**
18
- * The universal, unique ID of the parent task. This can be null.
18
+ * The universal, unique ID of the parent task. This can be null. These tasks have a parent-child relationship where the current task is the child and this task ID corresponds to the parent. Subtasks inherit context from their parent and are typically smaller units of work.
19
19
  */
20
20
  parentId: string | null;
21
21
  /**
@@ -7,7 +7,7 @@ export type TaskCreate = {
7
7
  */
8
8
  title: string;
9
9
  /**
10
- * The universal, unique ID of the parent task. This can be null.
10
+ * The universal, unique ID of the parent task. This can be null. These tasks have a parent-child relationship where the current task is the child and this task ID corresponds to the parent. Subtasks inherit context from their parent and are typically smaller units of work.
11
11
  */
12
12
  parentId?: string | null;
13
13
  /**
@@ -1,22 +1,22 @@
1
1
  export type TaskRelationships = {
2
2
  /**
3
- * List of task IDs that are subtasks of this task
3
+ * Array of task IDs that are subtasks of this task. These tasks have a parent-child relationship where this task is the parent. Subtasks inherit context from their parent and are typically smaller units of work.
4
4
  */
5
5
  subtaskIds?: Array<string>;
6
6
  /**
7
- * List of task IDs that block this task
7
+ * Array of task IDs that block this task from being completed. These are dependencies that must be resolved/completed before this task can proceed. The blocking tasks have priority over this task.
8
8
  */
9
9
  blockerIds?: Array<string>;
10
10
  /**
11
- * List of task IDs that this task blocks
11
+ * Array of task IDs that are blocked by this task. This task must be completed before the blocked tasks can proceed. This task is a dependency for the blocked tasks and has priority over them.
12
12
  */
13
13
  blockingIds?: Array<string>;
14
14
  /**
15
- * List of task IDs that are duplicates of this task
15
+ * Array of task IDs that are duplicates of this task. These represent the same work item and should typically be consolidated to avoid duplicate effort. Only one of the duplicates should be completed.
16
16
  */
17
17
  duplicateIds?: Array<string>;
18
18
  /**
19
- * List of task IDs that are related to this task
19
+ * Array of task IDs that are related to this task. These tasks have some contextual relationship but no direct dependency. They may share similar goals, components, or be part of the same feature/epic.
20
20
  */
21
21
  relatedIds?: Array<string>;
22
22
  };
@@ -11,7 +11,7 @@ export type TaskUpdate = {
11
11
  */
12
12
  title?: string;
13
13
  /**
14
- * The universal, unique ID of the parent task. This can be null.
14
+ * The universal, unique ID of the parent task. This can be null. These tasks have a parent-child relationship where the current task is the child and this task ID corresponds to the parent. Subtasks inherit context from their parent and are typically smaller units of work.
15
15
  */
16
16
  parentId?: string | null;
17
17
  /**
@@ -1,4 +1,4 @@
1
1
  export type User = {
2
2
  name: string;
3
- email: string;
3
+ email?: string;
4
4
  };
@@ -10,6 +10,7 @@ export type UserSpaceConfiguration = {
10
10
  tags: Array<string>;
11
11
  priorities: Array<string>;
12
12
  readonly sizes: string;
13
+ skills: Array<string>;
13
14
  readonly customProperties: Array<{
14
15
  name: string;
15
16
  type: string;
@@ -1,4 +1,3 @@
1
- import type { Task } from "./Task";
2
1
  export type View = {
3
2
  /**
4
3
  * The universal, unique ID of the view.
@@ -16,8 +15,4 @@ export type View = {
16
15
  * The description, which is a longer description of the view.
17
16
  */
18
17
  description: string;
19
- /**
20
- * The list of all of the tasks in the view.
21
- */
22
- tasks: Array<Task>;
23
18
  };
@@ -0,0 +1,3 @@
1
+ export type WrappedHelpCenterArticles = {
2
+ items: Array<string>;
3
+ };
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=WrappedHelpCenterArticles.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"WrappedHelpCenterArticles.js","sourceRoot":"","sources":["../../dart/generated/models/WrappedHelpCenterArticles.ts"],"names":[],"mappings":""}
@@ -0,0 +1,4 @@
1
+ import type { Skill } from "./Skill";
2
+ export type WrappedSkill = {
3
+ item: Skill;
4
+ };
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=WrappedSkill.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"WrappedSkill.js","sourceRoot":"","sources":["../../dart/generated/models/WrappedSkill.ts"],"names":[],"mappings":""}
@@ -12,7 +12,7 @@ export declare class CommentService {
12
12
  */
13
13
  static createComment(requestBody: WrappedCommentCreate): CancelablePromise<WrappedComment>;
14
14
  /**
15
- * List all comments that the user has access to. This will return a list of comments, including the text, associated task ID, and others. Comments are ordered by thread and then by when they were written.
15
+ * List comments for a task with filtering options. Filter by author, text content, or date range. Sort by date or hierarchical thread order. Task ID required. Supports pagination.
16
16
  * @returns PaginatedCommentList
17
17
  * @throws ApiError
18
18
  */
@@ -40,7 +40,7 @@ export declare class CommentService {
40
40
  * The initial index from which to return the results.
41
41
  */
42
42
  offset?: number;
43
- parentId?: string | null;
43
+ parentId?: string;
44
44
  publishedAtAfter?: string;
45
45
  publishedAtBefore?: string;
46
46
  task?: string;
@@ -23,7 +23,7 @@ class CommentService {
23
23
  });
24
24
  }
25
25
  /**
26
- * List all comments that the user has access to. This will return a list of comments, including the text, associated task ID, and others. Comments are ordered by thread and then by when they were written.
26
+ * List comments for a task with filtering options. Filter by author, text content, or date range. Sort by date or hierarchical thread order. Task ID required. Supports pagination.
27
27
  * @returns PaginatedCommentList
28
28
  * @throws ApiError
29
29
  */
@@ -3,7 +3,7 @@ import type { CancelablePromise } from "../core/CancelablePromise";
3
3
  export declare class DartboardService {
4
4
  /**
5
5
  * Retrieve an existing dartboard
6
- * Retrieve an existing dartboard. This will return the dartboard's information, including the title, description, all tasks within it, and others.
6
+ * Retrieve an existing dartboard. This will return the dartboard's information, including the title and description.
7
7
  * @param id
8
8
  * @returns WrappedDartboard Success, including the retrieved dartboard
9
9
  * @throws ApiError
@@ -6,7 +6,7 @@ const request_1 = require("../core/request");
6
6
  class DartboardService {
7
7
  /**
8
8
  * Retrieve an existing dartboard
9
- * Retrieve an existing dartboard. This will return the dartboard's information, including the title, description, all tasks within it, and others.
9
+ * Retrieve an existing dartboard. This will return the dartboard's information, including the title and description.
10
10
  * @param id
11
11
  * @returns WrappedDartboard Success, including the retrieved dartboard
12
12
  * @throws ApiError
@@ -38,7 +38,7 @@ export declare class DocService {
38
38
  */
39
39
  static deleteDoc(id: string): CancelablePromise<WrappedDoc>;
40
40
  /**
41
- * List all docs that the user has access to. This will return a list of docs, including the title, folder, text and others.
41
+ * List docs with filtering and search capabilities. Filter by folder, title, text content, or use full-text search. Sort by creation/update date or title. Supports pagination.
42
42
  * @returns PaginatedConciseDocList
43
43
  * @throws ApiError
44
44
  */
@@ -86,7 +86,7 @@ class DocService {
86
86
  });
87
87
  }
88
88
  /**
89
- * List all docs that the user has access to. This will return a list of docs, including the title, folder, text and others.
89
+ * List docs with filtering and search capabilities. Filter by folder, title, text content, or use full-text search. Sort by creation/update date or title. Supports pagination.
90
90
  * @returns PaginatedConciseDocList
91
91
  * @throws ApiError
92
92
  */
@@ -0,0 +1,12 @@
1
+ import type { WrappedHelpCenterArticles } from "../models/WrappedHelpCenterArticles";
2
+ import type { CancelablePromise } from "../core/CancelablePromise";
3
+ export declare class HelpCenterArticleService {
4
+ /**
5
+ * List help center articles by query
6
+ * Search for up to two help center articles by their semantic similarity to a short (1-5 word) query.
7
+ * @param query The search query (1-5 words) to find relevant help articles
8
+ * @returns WrappedHelpCenterArticles
9
+ * @throws ApiError
10
+ */
11
+ static listHelpCenterArticles(query?: string): CancelablePromise<WrappedHelpCenterArticles>;
12
+ }
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.HelpCenterArticleService = void 0;
4
+ const OpenAPI_1 = require("../core/OpenAPI");
5
+ const request_1 = require("../core/request");
6
+ class HelpCenterArticleService {
7
+ /**
8
+ * List help center articles by query
9
+ * Search for up to two help center articles by their semantic similarity to a short (1-5 word) query.
10
+ * @param query The search query (1-5 words) to find relevant help articles
11
+ * @returns WrappedHelpCenterArticles
12
+ * @throws ApiError
13
+ */
14
+ static listHelpCenterArticles(query) {
15
+ return (0, request_1.request)(OpenAPI_1.OpenAPI, {
16
+ method: "GET",
17
+ url: "/help-center-articles/list",
18
+ query: {
19
+ query: query,
20
+ },
21
+ });
22
+ }
23
+ }
24
+ exports.HelpCenterArticleService = HelpCenterArticleService;
25
+ //# sourceMappingURL=HelpCenterArticleService.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"HelpCenterArticleService.js","sourceRoot":"","sources":["../../dart/generated/services/HelpCenterArticleService.ts"],"names":[],"mappings":";;;AAMA,6CAA0C;AAC1C,6CAAuD;AACvD,MAAa,wBAAwB;IACnC;;;;;;OAMG;IACI,MAAM,CAAC,sBAAsB,CAAC,KAAc;QACjD,OAAO,IAAA,iBAAS,EAAC,iBAAO,EAAE;YACxB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,4BAA4B;YACjC,KAAK,EAAE;gBACL,KAAK,EAAE,KAAK;aACb;SACF,CAAC,CAAC;IACL,CAAC;CACF;AAjBD,4DAiBC"}
@@ -0,0 +1,12 @@
1
+ import type { WrappedSkill } from "../models/WrappedSkill";
2
+ import type { CancelablePromise } from "../core/CancelablePromise";
3
+ export declare class SkillService {
4
+ /**
5
+ * Retrieve a skill by title
6
+ * Retrieve a skill by its title. Skills are user-defined instructions or templates for performing specific task types in the workspace. Returns the skill's title and instructions if found.
7
+ * @param title The title of the skill to retrieve
8
+ * @returns WrappedSkill Success, including the retrieved skill
9
+ * @throws ApiError
10
+ */
11
+ static retrieveSkillByTitle(title: string): CancelablePromise<WrappedSkill>;
12
+ }
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SkillService = void 0;
4
+ const OpenAPI_1 = require("../core/OpenAPI");
5
+ const request_1 = require("../core/request");
6
+ class SkillService {
7
+ /**
8
+ * Retrieve a skill by title
9
+ * Retrieve a skill by its title. Skills are user-defined instructions or templates for performing specific task types in the workspace. Returns the skill's title and instructions if found.
10
+ * @param title The title of the skill to retrieve
11
+ * @returns WrappedSkill Success, including the retrieved skill
12
+ * @throws ApiError
13
+ */
14
+ static retrieveSkillByTitle(title) {
15
+ return (0, request_1.request)(OpenAPI_1.OpenAPI, {
16
+ method: "GET",
17
+ url: "/skills/by-title",
18
+ query: {
19
+ title: title,
20
+ },
21
+ errors: {
22
+ 404: `Skill not found`,
23
+ },
24
+ });
25
+ }
26
+ }
27
+ exports.SkillService = SkillService;
28
+ //# sourceMappingURL=SkillService.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SkillService.js","sourceRoot":"","sources":["../../dart/generated/services/SkillService.ts"],"names":[],"mappings":";;;AAMA,6CAA0C;AAC1C,6CAAuD;AACvD,MAAa,YAAY;IACvB;;;;;;OAMG;IACI,MAAM,CAAC,oBAAoB,CAAC,KAAa;QAC9C,OAAO,IAAA,iBAAS,EAAC,iBAAO,EAAE;YACxB,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,kBAAkB;YACvB,KAAK,EAAE;gBACL,KAAK,EAAE,KAAK;aACb;YACD,MAAM,EAAE;gBACN,GAAG,EAAE,iBAAiB;aACvB;SACF,CAAC,CAAC;IACL,CAAC;CACF;AApBD,oCAoBC"}
@@ -6,7 +6,7 @@ import type { CancelablePromise } from "../core/CancelablePromise";
6
6
  export declare class TaskService {
7
7
  /**
8
8
  * Create a new task
9
- * Record a new task that the user intends to do. This will save the task in Dart for later access, search, etc. By default the created task will be assigned to the user, with a status of to-do, with no parent, in the Active dartboard. More information can be included in the description.
9
+ * Record a new task that the user intends to do. By default the task will be assigned to the current user, have an unstarted status, have no parent, and be in the default dartboard. More information can be included in the description.
10
10
  * @param requestBody
11
11
  * @returns WrappedTask
12
12
  * @throws ApiError
@@ -38,11 +38,11 @@ export declare class TaskService {
38
38
  */
39
39
  static deleteTask(id: string): CancelablePromise<WrappedTask>;
40
40
  /**
41
- * List all tasks that the user has access to. This will return a list of tasks, including the title, dartboard, status, description and others.
41
+ * List tasks with powerful filtering options. Filter by dartboard, status, assignee, tags, priority, dates, completion state, view, and more. Supports pagination with limit/offset.
42
42
  * @returns PaginatedConciseTaskList
43
43
  * @throws ApiError
44
44
  */
45
- static listTasks({ assignee, assigneeId, dartboard, dartboardId, description, dueAtAfter, dueAtBefore, ids, inTrash, isCompleted, limit, offset, parentId, priority, size, startAtAfter, startAtBefore, status, statusId, tag, tagId, title, type, typeId, }: {
45
+ static listTasks({ assignee, assigneeId, dartboard, dartboardId, description, dueAtAfter, dueAtBefore, ids, inTrash, isCompleted, limit, offset, parentId, priority, size, startAtAfter, startAtBefore, status, statusId, tag, tagId, title, type, typeId, view, viewId, }: {
46
46
  assignee?: string;
47
47
  assigneeId?: string;
48
48
  dartboard?: string;
@@ -76,5 +76,7 @@ export declare class TaskService {
76
76
  title?: string;
77
77
  type?: string;
78
78
  typeId?: string;
79
+ view?: string;
80
+ viewId?: string;
79
81
  }): CancelablePromise<PaginatedConciseTaskList>;
80
82
  }
@@ -6,7 +6,7 @@ const request_1 = require("../core/request");
6
6
  class TaskService {
7
7
  /**
8
8
  * Create a new task
9
- * Record a new task that the user intends to do. This will save the task in Dart for later access, search, etc. By default the created task will be assigned to the user, with a status of to-do, with no parent, in the Active dartboard. More information can be included in the description.
9
+ * Record a new task that the user intends to do. By default the task will be assigned to the current user, have an unstarted status, have no parent, and be in the default dartboard. More information can be included in the description.
10
10
  * @param requestBody
11
11
  * @returns WrappedTask
12
12
  * @throws ApiError
@@ -83,11 +83,11 @@ class TaskService {
83
83
  });
84
84
  }
85
85
  /**
86
- * List all tasks that the user has access to. This will return a list of tasks, including the title, dartboard, status, description and others.
86
+ * List tasks with powerful filtering options. Filter by dartboard, status, assignee, tags, priority, dates, completion state, view, and more. Supports pagination with limit/offset.
87
87
  * @returns PaginatedConciseTaskList
88
88
  * @throws ApiError
89
89
  */
90
- static listTasks({ assignee, assigneeId, dartboard, dartboardId, description, dueAtAfter, dueAtBefore, ids, inTrash, isCompleted, limit, offset, parentId, priority, size, startAtAfter, startAtBefore, status, statusId, tag, tagId, title, type, typeId, }) {
90
+ static listTasks({ assignee, assigneeId, dartboard, dartboardId, description, dueAtAfter, dueAtBefore, ids, inTrash, isCompleted, limit, offset, parentId, priority, size, startAtAfter, startAtBefore, status, statusId, tag, tagId, title, type, typeId, view, viewId, }) {
91
91
  return (0, request_1.request)(OpenAPI_1.OpenAPI, {
92
92
  method: "GET",
93
93
  url: "/tasks/list",
@@ -116,6 +116,8 @@ class TaskService {
116
116
  title: title,
117
117
  type: type,
118
118
  type_id: typeId,
119
+ view: view,
120
+ view_id: viewId,
119
121
  },
120
122
  });
121
123
  }
@@ -1 +1 @@
1
- {"version":3,"file":"TaskService.js","sourceRoot":"","sources":["../../dart/generated/services/TaskService.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"TaskService.js","sourceRoot":"","sources":["../../dart/generated/services/TaskService.ts"],"names":[],"mappings":"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"}
@@ -3,7 +3,7 @@ import type { CancelablePromise } from "../core/CancelablePromise";
3
3
  export declare class ViewService {
4
4
  /**
5
5
  * Retrieve an existing view
6
- * Retrieve an existing view. This will return the view's information, including the title, description, all tasks within it, and others.
6
+ * Retrieve an existing view. This will return the view's information, including the title, description, and others.
7
7
  * @param id
8
8
  * @returns WrappedView Success, including the retrieved view
9
9
  * @throws ApiError
@@ -6,7 +6,7 @@ const request_1 = require("../core/request");
6
6
  class ViewService {
7
7
  /**
8
8
  * Retrieve an existing view
9
- * Retrieve an existing view. This will return the view's information, including the title, description, all tasks within it, and others.
9
+ * Retrieve an existing view. This will return the view's information, including the title, description, and others.
10
10
  * @param id
11
11
  * @returns WrappedView Success, including the retrieved view
12
12
  * @throws ApiError
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dart-tools",
3
- "version": "0.3.11",
3
+ "version": "0.4.1",
4
4
  "description": "The Dart TypeScript/JavaScript client",
5
5
  "keywords": [
6
6
  "dart",