@hipnation-truth/sdk 0.20.0 → 0.22.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.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/dist/react.d.ts +22 -0
- package/dist/react.js +2 -2
- package/dist/react.js.map +1 -1
- package/package.json +1 -1
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
|
}
|