jira-ai 0.5.39 → 0.5.40
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/lib/jira-client.js +1 -1
- package/package.json +1 -1
package/dist/lib/jira-client.js
CHANGED
|
@@ -261,7 +261,7 @@ export async function getProjectStatuses(projectIdOrKey) {
|
|
|
261
261
|
export async function searchIssuesByJql(jqlQuery, maxResults) {
|
|
262
262
|
const client = getJiraClient();
|
|
263
263
|
const filteredJql = applyGlobalFilters(jqlQuery);
|
|
264
|
-
const response = await client.issueSearch.
|
|
264
|
+
const response = await client.issueSearch.searchForIssuesUsingJqlEnhancedSearch({
|
|
265
265
|
jql: filteredJql,
|
|
266
266
|
maxResults,
|
|
267
267
|
fields: ['summary', 'status', 'assignee', 'priority'],
|