* Creates a new task with the given creation parameters. * The implementation generates a unique taskId and createdAt timestamp. * * @param taskParams - The task creation parameters from the request * @returns The created task object
(taskParams: CreateTaskOptions)
| 186 | * @returns The created task object |
| 187 | */ |
| 188 | createTask(taskParams: CreateTaskOptions): Promise<Task>; |
| 189 | |
| 190 | /** |
| 191 | * Gets the current status of a task. |
no outgoing calls