mrvn-cli 0.5.8 → 0.5.9

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.
@@ -19060,11 +19060,11 @@ var JiraClient = class {
19060
19060
  return response.json();
19061
19061
  }
19062
19062
  async searchIssues(jql, maxResults = 50) {
19063
- const params = new URLSearchParams({
19063
+ return this.searchIssuesV3(
19064
19064
  jql,
19065
- maxResults: String(maxResults)
19066
- });
19067
- return this.request(`/search?${params}`);
19065
+ ["summary", "description", "status", "issuetype", "priority", "assignee", "labels", "created", "updated"],
19066
+ maxResults
19067
+ );
19068
19068
  }
19069
19069
  async searchIssuesV3(jql, fields = ["summary", "status", "issuetype", "priority", "assignee", "labels"], maxResults = 50) {
19070
19070
  const params = new URLSearchParams({