@lucern/sdk 0.3.0-alpha.13 → 0.3.0-alpha.15

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.
@@ -229,6 +229,8 @@ type TaskUpdateInput = {
229
229
  description?: string;
230
230
  priority?: string;
231
231
  status?: string;
232
+ assigneeId?: string;
233
+ blockedReason?: string;
232
234
  linkedBeliefId?: string;
233
235
  linkedQuestionId?: string;
234
236
  linkedWorktreeId?: string;
@@ -2194,6 +2194,8 @@ function createTasksFacade(config = {}) {
2194
2194
  description: input.description,
2195
2195
  priority: input.priority,
2196
2196
  status: input.status,
2197
+ assigneeId: input.assigneeId,
2198
+ blockedReason: input.blockedReason,
2197
2199
  linkedBeliefId: input.linkedBeliefId,
2198
2200
  linkedQuestionId: input.linkedQuestionId,
2199
2201
  linkedWorktreeId: input.linkedWorktreeId,