@codebolt/codeboltjs 2.2.1 → 2.2.3

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 (72) hide show
  1. package/Readme.md +3 -0
  2. package/dist/core/Codebolt.d.ts +212 -165
  3. package/dist/core/Codebolt.js +267 -6
  4. package/dist/core/websocket.js +9 -11
  5. package/dist/index.d.ts +1 -1
  6. package/dist/modules/agent.d.ts +2 -16
  7. package/dist/modules/agent.js +15 -33
  8. package/dist/modules/browser.d.ts +1 -1
  9. package/dist/modules/browser.js +52 -51
  10. package/dist/modules/chat.d.ts +2 -2
  11. package/dist/modules/chat.js +20 -18
  12. package/dist/modules/codeutils.d.ts +1 -9
  13. package/dist/modules/codeutils.js +13 -111
  14. package/dist/modules/dbmemory.d.ts +3 -3
  15. package/dist/modules/dbmemory.js +8 -7
  16. package/dist/modules/debug.d.ts +1 -1
  17. package/dist/modules/fs.d.ts +59 -28
  18. package/dist/modules/fs.js +86 -45
  19. package/dist/modules/git.d.ts +1 -1
  20. package/dist/modules/git.js +31 -30
  21. package/dist/modules/history.d.ts +1 -1
  22. package/dist/modules/history.js +7 -6
  23. package/dist/modules/llm.d.ts +13 -20
  24. package/dist/modules/llm.js +16 -15
  25. package/dist/modules/mcp.d.ts +4 -4
  26. package/dist/modules/mcp.js +25 -25
  27. package/dist/modules/outputparsers.d.ts +22 -22
  28. package/dist/modules/outputparsers.js +7 -5
  29. package/dist/modules/project.d.ts +1 -1
  30. package/dist/modules/project.js +15 -13
  31. package/dist/modules/state.d.ts +1 -1
  32. package/dist/modules/state.js +16 -15
  33. package/dist/modules/task.d.ts +136 -92
  34. package/dist/modules/task.js +354 -205
  35. package/dist/modules/terminal.d.ts +1 -1
  36. package/dist/modules/terminal.js +12 -11
  37. package/dist/modules/tokenizer.d.ts +1 -1
  38. package/dist/modules/tokenizer.js +7 -6
  39. package/dist/modules/user-message-manager.d.ts +165 -0
  40. package/dist/modules/user-message-manager.js +308 -0
  41. package/dist/modules/user-message-utilities.d.ts +111 -0
  42. package/dist/modules/user-message-utilities.js +115 -0
  43. package/dist/modules/utils.d.ts +1 -1
  44. package/dist/modules/utils.js +4 -3
  45. package/dist/modules/vectordb.d.ts +1 -1
  46. package/dist/modules/vectordb.js +13 -12
  47. package/dist/notificationfunctions/agent.js +7 -6
  48. package/dist/notificationfunctions/browser.js +9 -8
  49. package/dist/notificationfunctions/chat.js +9 -8
  50. package/dist/notificationfunctions/codeutils.js +9 -8
  51. package/dist/notificationfunctions/crawler.js +9 -8
  52. package/dist/notificationfunctions/dbmemory.js +9 -8
  53. package/dist/notificationfunctions/fs.js +45 -44
  54. package/dist/notificationfunctions/git.d.ts +2 -2
  55. package/dist/notificationfunctions/git.js +111 -51
  56. package/dist/notificationfunctions/history.js +9 -8
  57. package/dist/notificationfunctions/llm.js +9 -8
  58. package/dist/notificationfunctions/mcp.js +17 -16
  59. package/dist/notificationfunctions/search.js +13 -12
  60. package/dist/notificationfunctions/system.js +5 -4
  61. package/dist/notificationfunctions/terminal.js +5 -4
  62. package/dist/notificationfunctions/todo.js +13 -12
  63. package/dist/types/commonTypes.d.ts +4 -0
  64. package/dist/types/index.d.ts +1 -1
  65. package/dist/types/libFunctionTypes.d.ts +918 -29
  66. package/dist/types/libFunctionTypes.js +33 -0
  67. package/dist/types/notificationFunctions/git.d.ts +40 -1
  68. package/dist/types/notificationFunctions/index.d.ts +1 -0
  69. package/dist/types/notificationFunctions/index.js +1 -0
  70. package/package.json +17 -25
  71. package/dist/modules/codeparsers.d.ts +0 -37
  72. package/dist/modules/codeparsers.js +0 -329
@@ -1,138 +1,182 @@
1
- import type { Task, SubTask, TaskResponse, TaskCreateOptions, TaskUpdateOptions, AddSubTaskOptions, UpdateSubTaskOptions, TaskFilterOptions, TaskMarkdownImportOptions, TaskMarkdownExportOptions } from '../types';
1
+ import type { CreateTaskOptions, UpdateTaskOptions, GetTaskListOptions, AddStepToTaskOptions, GetTaskDetailOptions, GetTaskMessagesOptions, SendSteeringMessageOptions, GetAllStepsOptions, GetActiveStepOptions, UpdateStepStatusOptions, CompleteStepOptions, DeleteTaskOptions, CompleteTaskOptions, StartTaskOptions, CanTaskStartOptions, GetTasksDependentOnOptions, GetTasksReadyToStartOptions, GetTaskDependencyChainOptions, GetTaskStatsOptions, MessageData, Position, FlowData, Step } from '@codebolt/types/agent-to-app-ws-schema';
2
+ import type { TaskResponse, TaskListResponse, StepResponse, StepListResponse, TaskMessagesResponse, ActiveStepResponse, SendSteeringMessageResponse, DeleteTaskResponse, CanTaskStartResponse, TaskStatsResponse, CreateTaskResponse, GetTaskListResponse, AddStepToTaskResponse, GetTaskDetailResponse, GetTaskMessagesResponse, GetAllStepsResponse, GetCurrentRunningStepResponse, UpdateStepStatusResponse, CompleteStepResponse, UpdateTaskResponse, CompleteTaskResponse, StartTaskResponse, GetTasksDependentOnResponse, GetTasksReadyToStartResponse, GetTaskDependencyChainResponse, GetTaskStatsResponse, Task, ExtendedTask, ExtendedStep, TaskMessage, TaskStats, TaskResponseMessageData as ResponseMessageData } from '@codebolt/types/app-to-agent-ws-schema';
3
+ import type { Task as LegacyTask, SubTask as LegacySubTask, TaskResponse as LegacyTaskResponse, TaskCreateOptions as LegacyTaskCreateOptions, TaskUpdateOptions as LegacyTaskUpdateOptions, AddSubTaskOptions, UpdateSubTaskOptions, TaskFilterOptions, TaskMarkdownImportOptions, TaskMarkdownExportOptions } from '../types';
2
4
  /**
3
- * Enhanced task planner with agent-based organization and comprehensive task management.
5
+ * Enhanced task service with comprehensive task and step management.
6
+ * This module provides a modern API for task management based on the new task service schemas.
4
7
  */
5
- declare const taskplaner: {
8
+ declare const taskService: {
6
9
  /**
7
- * Adds a new task with enhanced parameters.
8
- * @param {TaskCreateOptions} params - The task parameters including title, agentId, description, etc.
9
- * @returns {Promise<TaskResponse>} A promise that resolves with the response from the add task event.
10
+ * Creates a new task with comprehensive options.
11
+ * @param {CreateTaskOptions} options - The task creation parameters
12
+ * @returns {Promise<CreateTaskResponse>} A promise that resolves with the task creation response
10
13
  */
11
- addTask: (params: TaskCreateOptions) => Promise<TaskResponse>;
14
+ createTask: (options: CreateTaskOptions) => Promise<CreateTaskResponse>;
12
15
  /**
13
- * Adds a task using simple string parameter (legacy support).
14
- * @param {string} task - The task title.
15
- * @param {string} agentId - The agent ID (optional, defaults to 'default-agent').
16
- * @returns {Promise<TaskResponse>} A promise that resolves with the response from the add task event.
16
+ * Creates a simple task with minimal parameters (legacy compatibility).
17
+ * @param {string} taskName - The task name
18
+ * @param {string} threadId - The thread ID (defaults to 'default-thread')
19
+ * @returns {Promise<CreateTaskResponse>} A promise that resolves with the task creation response
17
20
  */
18
- addSimpleTask: (task: string, agentId?: string) => Promise<TaskResponse>;
21
+ createSimpleTask: (taskName: string, threadId?: string) => Promise<CreateTaskResponse>;
19
22
  /**
20
- * Retrieves all tasks with optional filtering.
21
- * @param {TaskFilterOptions} filters - Optional filters for agentId, category, phase, etc.
22
- * @returns {Promise<TaskResponse>} A promise that resolves with the response from the get tasks event.
23
+ * Retrieves a list of tasks with optional filtering.
24
+ * @param {GetTaskListOptions} options - Optional filters for tasks
25
+ * @returns {Promise<GetTaskListResponse>} A promise that resolves with the task list response
23
26
  */
24
- getTasks: (filters?: TaskFilterOptions) => Promise<TaskResponse>;
27
+ getTaskList: (options?: GetTaskListOptions) => Promise<GetTaskListResponse>;
25
28
  /**
26
- * Retrieves tasks for a specific agent.
27
- * @param {string} agentId - The agent ID.
28
- * @returns {Promise<TaskResponse>} A promise that resolves with tasks for the specified agent.
29
+ * Retrieves detailed information about a specific task.
30
+ * @param {GetTaskDetailOptions} options - The task detail options
31
+ * @returns {Promise<GetTaskDetailResponse>} A promise that resolves with the task detail response
29
32
  */
30
- getTasksByAgent: (agentId: string) => Promise<TaskResponse>;
33
+ getTaskDetail: (options: GetTaskDetailOptions) => Promise<GetTaskDetailResponse>;
31
34
  /**
32
- * Retrieves tasks by category.
33
- * @param {string} category - The category name.
34
- * @returns {Promise<TaskResponse>} A promise that resolves with tasks in the specified category.
35
+ * Adds a step to an existing task.
36
+ * @param {AddStepToTaskOptions} options - The step addition options
37
+ * @returns {Promise<AddStepToTaskResponse>} A promise that resolves with the step addition response
35
38
  */
36
- getTasksByCategory: (category: string) => Promise<TaskResponse>;
39
+ addStepToTask: (options: AddStepToTaskOptions) => Promise<AddStepToTaskResponse>;
37
40
  /**
38
- * Retrieves all available agents.
39
- * @returns {Promise<TaskResponse>} A promise that resolves with the list of all agents.
41
+ * Retrieves messages for a specific task.
42
+ * @param {GetTaskMessagesOptions} options - The task messages options
43
+ * @returns {Promise<GetTaskMessagesResponse>} A promise that resolves with the task messages response
40
44
  */
41
- getAllAgents: () => Promise<TaskResponse>;
45
+ getTaskMessages: (options: GetTaskMessagesOptions) => Promise<GetTaskMessagesResponse>;
42
46
  /**
43
47
  * Updates an existing task.
44
- * @param {TaskUpdateOptions} params - The task update parameters.
45
- * @returns {Promise<TaskResponse>} A promise that resolves with the response from the update task event.
48
+ * @param {string} taskId - The task ID to update
49
+ * @param {UpdateTaskOptions} updates - The task update parameters
50
+ * @returns {Promise<UpdateTaskResponse>} A promise that resolves with the task update response
46
51
  */
47
- updateTask: (params: TaskUpdateOptions) => Promise<TaskResponse>;
52
+ updateTask: (taskId: string, updates: UpdateTaskOptions) => Promise<UpdateTaskResponse>;
48
53
  /**
49
- * Updates an existing task using legacy string parameter.
50
- * @param {string} taskId - The task ID.
51
- * @param {string} task - The updated task information.
52
- * @returns {Promise<TaskResponse>} A promise that resolves with the response from the update task event.
54
+ * Updates a task with simple name change (legacy compatibility).
55
+ * @param {string} taskId - The task ID
56
+ * @param {string} taskName - The new task name
57
+ * @returns {Promise<UpdateTaskResponse>} A promise that resolves with the task update response
53
58
  */
54
- updateSimpleTask: (taskId: string, task: string) => Promise<TaskResponse>;
59
+ updateSimpleTask: (taskId: string, taskName: string) => Promise<UpdateTaskResponse>;
55
60
  /**
56
61
  * Deletes a task.
57
- * @param {string} taskId - The task ID to delete.
58
- * @returns {Promise<TaskResponse>} A promise that resolves with the response from the delete task event.
62
+ * @param {string} taskId - The task ID to delete
63
+ * @returns {Promise<DeleteTaskResponse>} A promise that resolves with the task deletion response
59
64
  */
60
- deleteTask: (taskId: string) => Promise<TaskResponse>;
65
+ deleteTask: (taskId: string) => Promise<DeleteTaskResponse>;
61
66
  /**
62
- * Adds a subtask to an existing task.
63
- * @param {AddSubTaskOptions} params - The subtask parameters.
64
- * @returns {Promise<TaskResponse>} A promise that resolves with the response from the add subtask event.
67
+ * Completes a task.
68
+ * @param {string} taskId - The task ID to complete
69
+ * @returns {Promise<CompleteTaskResponse>} A promise that resolves with the task completion response
65
70
  */
66
- addSubTask: (params: AddSubTaskOptions) => Promise<TaskResponse>;
71
+ completeTask: (taskId: string) => Promise<CompleteTaskResponse>;
67
72
  /**
68
- * Updates an existing subtask.
69
- * @param {UpdateSubTaskOptions} params - The subtask update parameters.
70
- * @returns {Promise<TaskResponse>} A promise that resolves with the response from the update subtask event.
73
+ * Starts a task.
74
+ * @param {string} taskId - The task ID to start
75
+ * @returns {Promise<StartTaskResponse>} A promise that resolves with the task start response
71
76
  */
72
- updateSubTask: (params: UpdateSubTaskOptions) => Promise<TaskResponse>;
77
+ startTask: (taskId: string) => Promise<StartTaskResponse>;
73
78
  /**
74
- * Deletes a subtask.
75
- * @param {string} taskId - The parent task ID.
76
- * @param {string} subtaskId - The subtask ID to delete.
77
- * @returns {Promise<TaskResponse>} A promise that resolves with the response from the delete subtask event.
79
+ * Retrieves all steps with optional filtering.
80
+ * @param {GetAllStepsOptions} options - Optional filters for steps
81
+ * @returns {Promise<GetAllStepsResponse>} A promise that resolves with the steps response
78
82
  */
79
- deleteSubTask: (taskId: string, subtaskId: string) => Promise<TaskResponse>;
83
+ getAllSteps: (options?: GetAllStepsOptions) => Promise<GetAllStepsResponse>;
80
84
  /**
81
- * Creates tasks from markdown content.
82
- * @param {TaskMarkdownImportOptions} params - The markdown parameters including content, agentId, phase, and category.
83
- * @returns {Promise<TaskResponse>} A promise that resolves with the response from the create tasks from markdown event.
85
+ * Gets the currently running step for a task or agent.
86
+ * @param {GetActiveStepOptions} options - Options for getting active step
87
+ * @returns {Promise<GetCurrentRunningStepResponse>} A promise that resolves with the active step response
84
88
  */
85
- createTasksFromMarkdown: (params: TaskMarkdownImportOptions) => Promise<TaskResponse>;
89
+ getCurrentRunningStep: (options?: GetActiveStepOptions) => Promise<GetCurrentRunningStepResponse>;
86
90
  /**
87
- * Exports tasks to markdown format.
88
- * @param {TaskMarkdownExportOptions} params - The export parameters including optional phase, agentId, and category filters.
89
- * @returns {Promise<TaskResponse>} A promise that resolves with the markdown content.
91
+ * Updates the status of a specific step.
92
+ * @param {UpdateStepStatusOptions} options - The step status update options
93
+ * @returns {Promise<UpdateStepStatusResponse>} A promise that resolves with the step update response
90
94
  */
91
- exportTasksToMarkdown: (params?: TaskMarkdownExportOptions) => Promise<TaskResponse>;
95
+ updateStepStatus: (options: UpdateStepStatusOptions) => Promise<UpdateStepStatusResponse>;
92
96
  /**
93
- * Utility function to toggle task completion status.
94
- * @param {string} taskId - The task ID.
95
- * @param {boolean} completed - The new completion status.
96
- * @returns {Promise<TaskResponse>} A promise that resolves with the response from the update task event.
97
+ * Completes a specific step.
98
+ * @param {CompleteStepOptions} options - The step completion options
99
+ * @returns {Promise<CompleteStepResponse>} A promise that resolves with the step completion response
100
+ */
101
+ completeStep: (options: CompleteStepOptions) => Promise<CompleteStepResponse>;
102
+ /**
103
+ * Sends a steering message to a running step.
104
+ * @param {SendSteeringMessageOptions} options - The steering message options
105
+ * @returns {Promise<SendSteeringMessageResponse>} A promise that resolves with the steering message response
106
+ */
107
+ sendSteeringMessage: (options: SendSteeringMessageOptions) => Promise<SendSteeringMessageResponse>;
108
+ /**
109
+ * Checks if a task can start based on its dependencies.
110
+ * @param {string} taskId - The task ID to check
111
+ * @returns {Promise<CanTaskStartResponse>} A promise that resolves with the task start capability response
97
112
  */
98
- toggleTaskCompletion: (taskId: string, completed: boolean) => Promise<TaskResponse>;
113
+ canTaskStart: (taskId: string) => Promise<CanTaskStartResponse>;
99
114
  /**
100
- * Utility function to toggle subtask completion status.
101
- * @param {string} taskId - The parent task ID.
102
- * @param {string} subtaskId - The subtask ID.
103
- * @param {boolean} completed - The new completion status.
104
- * @returns {Promise<TaskResponse>} A promise that resolves with the response from the update subtask event.
115
+ * Gets tasks that depend on a specific task.
116
+ * @param {string} taskId - The task ID to check dependencies for
117
+ * @returns {Promise<GetTasksDependentOnResponse>} A promise that resolves with the dependent tasks response
105
118
  */
106
- toggleSubTaskCompletion: (taskId: string, subtaskId: string, completed: boolean) => Promise<TaskResponse>;
119
+ getTasksDependentOn: (taskId: string) => Promise<GetTasksDependentOnResponse>;
107
120
  /**
108
- * Utility function to move a task to a different agent.
109
- * @param {string} taskId - The task ID.
110
- * @param {string} newAgentId - The new agent ID.
111
- * @returns {Promise<TaskResponse>} A promise that resolves with the response from the update task event.
121
+ * Gets tasks that are ready to start.
122
+ * @param {GetTasksReadyToStartOptions} options - Optional filters for ready tasks
123
+ * @returns {Promise<GetTasksReadyToStartResponse>} A promise that resolves with the ready tasks response
112
124
  */
113
- moveTaskToAgent: (taskId: string, newAgentId: string) => Promise<TaskResponse>;
125
+ getTasksReadyToStart: (options?: GetTasksReadyToStartOptions) => Promise<GetTasksReadyToStartResponse>;
114
126
  /**
115
- * Utility function to set task priority.
116
- * @param {string} taskId - The task ID.
117
- * @param {'low' | 'medium' | 'high'} priority - The priority level.
118
- * @returns {Promise<TaskResponse>} A promise that resolves with the response from the update task event.
127
+ * Gets the dependency chain for a specific task.
128
+ * @param {string} taskId - The task ID to get dependency chain for
129
+ * @returns {Promise<GetTaskDependencyChainResponse>} A promise that resolves with the dependency chain response
119
130
  */
120
- setTaskPriority: (taskId: string, priority: "low" | "medium" | "high") => Promise<TaskResponse>;
131
+ getTaskDependencyChain: (taskId: string) => Promise<GetTaskDependencyChainResponse>;
121
132
  /**
122
- * Utility function to add tags to a task.
123
- * @param {string} taskId - The task ID.
124
- * @param {string[]} tags - The tags to add.
125
- * @returns {Promise<TaskResponse>} A promise that resolves with the response from the update task event.
133
+ * Gets task statistics.
134
+ * @param {GetTaskStatsOptions} options - Optional filters for task stats
135
+ * @returns {Promise<GetTaskStatsResponse>} A promise that resolves with the task stats response
126
136
  */
127
- addTaskTags: (taskId: string, tags: string[]) => Promise<TaskResponse>;
137
+ getTaskStats: (options?: GetTaskStatsOptions) => Promise<GetTaskStatsResponse>;
138
+ /**
139
+ * Utility function to toggle task completion status.
140
+ * @param {string} taskId - The task ID
141
+ * @param {boolean} completed - The new completion status
142
+ * @returns {Promise<UpdateTaskResponse>} A promise that resolves with the task update response
143
+ */
144
+ toggleTaskCompletion: (taskId: string, completed: boolean) => Promise<UpdateTaskResponse>;
128
145
  /**
129
146
  * Utility function to create a quick task with minimal parameters.
130
- * @param {string} title - The task title.
131
- * @param {string} agentId - The agent ID (optional, defaults to 'default-agent').
132
- * @param {string} category - The category (optional).
133
- * @returns {Promise<TaskResponse>} A promise that resolves with the response from the add task event.
147
+ * @param {string} name - The task name
148
+ * @param {string} threadId - The thread ID (defaults to 'default-thread')
149
+ * @returns {Promise<CreateTaskResponse>} A promise that resolves with the task creation response
150
+ */
151
+ createQuickTask: (name: string, threadId?: string) => Promise<CreateTaskResponse>;
152
+ /**
153
+ * Gets tasks started by a specific user
154
+ * @param {string} userId - The user ID
155
+ * @param {GetTaskListOptions} options - Optional filters for tasks
156
+ * @returns {Promise<GetTaskListResponse>} A promise that resolves with the task list response
157
+ */
158
+ getTasksStartedByMe: (userId: string, options?: GetTaskListOptions) => Promise<GetTaskListResponse>;
159
+ /**
160
+ * Legacy function: Adds a task (mapped to createTask)
161
+ * @deprecated Use createTask instead
162
+ */
163
+ addTask: (params: LegacyTaskCreateOptions) => Promise<CreateTaskResponse>;
164
+ /**
165
+ * Legacy function: Gets tasks (mapped to getTaskList)
166
+ * @deprecated Use getTaskList instead
167
+ */
168
+ getTasks: (filters?: TaskFilterOptions) => Promise<GetTaskListResponse>;
169
+ /**
170
+ * Legacy function: Gets tasks by agent (mapped to getTaskList with threadId filter)
171
+ * @deprecated Use getTaskList with threadId filter instead
172
+ */
173
+ getTasksByAgent: (agentId: string) => Promise<GetTaskListResponse>;
174
+ /**
175
+ * Legacy function: Gets tasks by category (use getTaskList with custom filtering)
176
+ * @deprecated Use getTaskList instead
134
177
  */
135
- createQuickTask: (title: string, agentId?: string, category?: string) => Promise<TaskResponse>;
178
+ getTasksByCategory: (category: string) => Promise<GetTaskListResponse>;
136
179
  };
137
- export type { Task, SubTask, TaskResponse, TaskCreateOptions, TaskUpdateOptions, AddSubTaskOptions, UpdateSubTaskOptions, TaskFilterOptions, TaskMarkdownImportOptions, TaskMarkdownExportOptions };
138
- export default taskplaner;
180
+ export type { Task, ExtendedTask, Step, ExtendedStep, TaskMessage, MessageData, ResponseMessageData, TaskStats, CreateTaskOptions, UpdateTaskOptions, GetTaskListOptions, AddStepToTaskOptions, GetTaskDetailOptions, GetTaskMessagesOptions, UpdateStepStatusOptions, CompleteStepOptions, SendSteeringMessageOptions, GetAllStepsOptions, GetActiveStepOptions, DeleteTaskOptions, CompleteTaskOptions, StartTaskOptions, CanTaskStartOptions, GetTasksDependentOnOptions, GetTasksReadyToStartOptions, GetTaskDependencyChainOptions, GetTaskStatsOptions, TaskResponse, TaskListResponse, StepResponse, StepListResponse, TaskMessagesResponse, ActiveStepResponse, SendSteeringMessageResponse, DeleteTaskResponse, CanTaskStartResponse, TaskStatsResponse, CreateTaskResponse, GetTaskListResponse, AddStepToTaskResponse, GetTaskDetailResponse, GetTaskMessagesResponse, GetAllStepsResponse, GetCurrentRunningStepResponse, UpdateStepStatusResponse, CompleteStepResponse, UpdateTaskResponse, CompleteTaskResponse, StartTaskResponse, GetTasksDependentOnResponse, GetTasksReadyToStartResponse, GetTaskDependencyChainResponse, GetTaskStatsResponse, Position, FlowData };
181
+ export type { LegacyTask as Task_Legacy, LegacySubTask as SubTask, LegacyTaskResponse as TaskResponse_Legacy, LegacyTaskCreateOptions as TaskCreateOptions_Legacy, LegacyTaskUpdateOptions as TaskUpdateOptions_Legacy, AddSubTaskOptions, UpdateSubTaskOptions, TaskFilterOptions, TaskMarkdownImportOptions, TaskMarkdownExportOptions };
182
+ export default taskService;