@hipnation-truth/sdk 0.21.0 → 0.23.0

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.mjs CHANGED
@@ -301,12 +301,12 @@ var ConversationTasksSubresource = class {
301
301
  return __async(this, null, function* () {
302
302
  return this.patch(
303
303
  `/conversations/tasks/${encodeURIComponent(input.taskId)}`,
304
- __spreadValues(__spreadValues(__spreadValues(__spreadValues({
304
+ __spreadValues(__spreadValues(__spreadValues(__spreadValues(__spreadValues({
305
305
  id: input.taskId,
306
306
  conversationId: input.conversationId,
307
307
  author: input.author,
308
308
  description: input.description
309
- }, input.priority ? { priority: input.priority } : {}), input.status ? { status: input.status } : {}), input.assignee !== void 0 ? { assignee: input.assignee } : {}), input.type !== void 0 ? { type: input.type } : {})
309
+ }, input.title !== void 0 ? { title: input.title } : {}), input.priority ? { priority: input.priority } : {}), input.status ? { status: input.status } : {}), input.assignee !== void 0 ? { assignee: input.assignee } : {}), input.type !== void 0 ? { type: input.type } : {})
310
310
  );
311
311
  });
312
312
  }