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.
package/dist/marvin.js CHANGED
@@ -25178,11 +25178,11 @@ var JiraClient = class {
25178
25178
  return response.json();
25179
25179
  }
25180
25180
  async searchIssues(jql, maxResults = 50) {
25181
- const params = new URLSearchParams({
25181
+ return this.searchIssuesV3(
25182
25182
  jql,
25183
- maxResults: String(maxResults)
25184
- });
25185
- return this.request(`/search?${params}`);
25183
+ ["summary", "description", "status", "issuetype", "priority", "assignee", "labels", "created", "updated"],
25184
+ maxResults
25185
+ );
25186
25186
  }
25187
25187
  async searchIssuesV3(jql, fields = ["summary", "status", "issuetype", "priority", "assignee", "labels"], maxResults = 50) {
25188
25188
  const params = new URLSearchParams({
@@ -31906,7 +31906,7 @@ function createProgram() {
31906
31906
  const program2 = new Command();
31907
31907
  program2.name("marvin").description(
31908
31908
  "AI-powered product development assistant with Product Owner, Delivery Manager, and Technical Lead personas"
31909
- ).version("0.5.8");
31909
+ ).version("0.5.9");
31910
31910
  program2.command("init").description("Initialize a new Marvin project in the current directory").action(async () => {
31911
31911
  await initCommand();
31912
31912
  });