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.
@@ -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.searchForIssuesUsingJqlPost({
264
+ const response = await client.issueSearch.searchForIssuesUsingJqlEnhancedSearch({
265
265
  jql: filteredJql,
266
266
  maxResults,
267
267
  fields: ['summary', 'status', 'assignee', 'priority'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jira-ai",
3
- "version": "0.5.39",
3
+ "version": "0.5.40",
4
4
  "description": "AI friendly Jira CLI to save context",
5
5
  "type": "module",
6
6
  "main": "dist/cli.js",