@aaronsb/jira-cloud-mcp 0.2.5 → 0.2.6
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.
|
@@ -176,8 +176,8 @@ export class JiraClient {
|
|
|
176
176
|
fields.parent = params.parentKey ? { key: params.parentKey } : null;
|
|
177
177
|
}
|
|
178
178
|
if (params.assignee !== undefined) {
|
|
179
|
-
// null unassigns, string assigns by account ID
|
|
180
|
-
fields.assignee = params.assignee ? {
|
|
179
|
+
// null unassigns, string assigns by account ID
|
|
180
|
+
fields.assignee = params.assignee ? { accountId: params.assignee } : null;
|
|
181
181
|
}
|
|
182
182
|
if (params.priority)
|
|
183
183
|
fields.priority = { id: params.priority };
|
|
@@ -696,7 +696,7 @@ export class JiraClient {
|
|
|
696
696
|
if (params.priority)
|
|
697
697
|
fields.priority = { id: params.priority };
|
|
698
698
|
if (params.assignee)
|
|
699
|
-
fields.assignee = {
|
|
699
|
+
fields.assignee = { accountId: params.assignee };
|
|
700
700
|
if (params.labels)
|
|
701
701
|
fields.labels = params.labels;
|
|
702
702
|
if (params.customFields) {
|